rozenite-sqlite 0.0.11 → 0.0.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/README.md +1 -1
- package/dist/assets/panel-BKWy6irM.js +58 -0
- package/dist/panel.html +1 -1
- package/dist/react-native.cjs +1 -1
- package/dist/react-native.d.ts +1 -1
- package/dist/react-native.js +59 -22
- package/dist/rozenite.json +1 -1
- package/package.json +2 -2
- package/rozenite.config.ts +1 -1
- package/src/components/DataTable.tsx +34 -37
- package/src/components/Dropdown.tsx +1 -4
- package/src/components/Placeholder.tsx +81 -0
- package/src/components/RowDetailPanel.tsx +81 -30
- package/src/constants.ts +4 -0
- package/src/hooks/useBridgeSync.ts +87 -16
- package/src/hooks/useExplorerState.ts +63 -7
- package/src/hooks/useRozeniteSQLite.ts +60 -1
- package/src/panel.tsx +6 -2
- package/dist/assets/panel-3I5ccfMq.js +0 -58
package/CHANGELOG.md
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
#
|
|
1
|
+
# SQLighter
|
|
2
2
|
|
|
3
3
|
A [Rozenite](https://rozenite.dev) devtools plugin that adds a live SQLite explorer panel to your React Native app. Browse your databases, inspect tables, run arbitrary SQL queries, and view row details — all from the Rozenite devtools panel without leaving your development workflow.
|
|
4
4
|
|