├── .eslintrc.js ├── .gitignore ├── .prettierrc.js ├── NOTES.md ├── README.md ├── babel.config.js ├── expo-module.config.json ├── package.json ├── src ├── hydration.ts ├── index.ts ├── types.ts └── useSyncQueries.ts ├── tsconfig.json └── webui ├── App.tsx ├── app.json ├── external-dash ├── DeviceInfo.tsx ├── DeviceSelection.tsx ├── Test.tsx ├── providers.tsx ├── shared │ ├── hydration.ts │ └── types.ts ├── tailwind.css └── useSyncQueriesWeb.ts ├── index.css ├── index.ts ├── package-lock.json ├── package.json ├── postcss.config.js ├── tailwind.config.js └── tsconfig.json /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /NOTES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/NOTES.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/babel.config.js -------------------------------------------------------------------------------- /expo-module.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/expo-module.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/package.json -------------------------------------------------------------------------------- /src/hydration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/src/hydration.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/useSyncQueries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/src/useSyncQueries.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webui/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/App.tsx -------------------------------------------------------------------------------- /webui/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/app.json -------------------------------------------------------------------------------- /webui/external-dash/DeviceInfo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/DeviceInfo.tsx -------------------------------------------------------------------------------- /webui/external-dash/DeviceSelection.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/DeviceSelection.tsx -------------------------------------------------------------------------------- /webui/external-dash/Test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/Test.tsx -------------------------------------------------------------------------------- /webui/external-dash/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/providers.tsx -------------------------------------------------------------------------------- /webui/external-dash/shared/hydration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/shared/hydration.ts -------------------------------------------------------------------------------- /webui/external-dash/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/shared/types.ts -------------------------------------------------------------------------------- /webui/external-dash/tailwind.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/tailwind.css -------------------------------------------------------------------------------- /webui/external-dash/useSyncQueriesWeb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/external-dash/useSyncQueriesWeb.ts -------------------------------------------------------------------------------- /webui/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/index.css -------------------------------------------------------------------------------- /webui/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/index.ts -------------------------------------------------------------------------------- /webui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/package-lock.json -------------------------------------------------------------------------------- /webui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/package.json -------------------------------------------------------------------------------- /webui/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/postcss.config.js -------------------------------------------------------------------------------- /webui/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/tailwind.config.js -------------------------------------------------------------------------------- /webui/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LovesWorking/tanstack-query-dev-tools-expo-plugin/HEAD/webui/tsconfig.json --------------------------------------------------------------------------------