@rozenite/sqlite-plugin 1.12.0 → 2.0.0
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 +23 -0
- package/dist/devtools/assets/panel-BarPLQ4-.css +1 -0
- package/dist/devtools/assets/{panel-DjRs5NTl.js → panel-CsA6Ejak.js} +45 -44
- package/dist/devtools/panel.html +2 -2
- package/dist/react-native/index.d.ts +2 -2
- package/dist/rozenite.json +1 -1
- package/package.json +9 -13
- package/src/react-native/useSqliteAgentTools.ts +4 -1
- package/src/ui/__tests__/sqlite-drop-mutations.test.ts +135 -0
- package/src/ui/globals.css +12 -0
- package/src/ui/panel.tsx +214 -0
- package/src/ui/sqlite-drop-modal.tsx +219 -0
- package/src/ui/sqlite-drop-mutations.ts +60 -0
- package/dist/devtools/assets/panel-CIU0JBOs.css +0 -1
- package/postcss.config.js +0 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @rozenite/sqlite-plugin
|
|
2
2
|
|
|
3
|
+
## 2.0.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#353](https://github.com/callstackincubator/rozenite/pull/353) [`7539217`](https://github.com/callstackincubator/rozenite/commit/7539217520f0c3ff28d2e943bf866b6bcc3c1fe0) Thanks [@V3RON](https://github.com/V3RON)! - Add controls to drop a single table or view from the Structure tab and to
|
|
8
|
+
drop all tables and views in a database from the sidebar. Both are gated by
|
|
9
|
+
a shared confirmation dialog that requires typing the object or database
|
|
10
|
+
name and previews the SQL that will run.
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Updated dependencies [[`a57b914`](https://github.com/callstackincubator/rozenite/commit/a57b91448e6cc9b88bd987bf462f07deef6b0d55), [`fa96bb8`](https://github.com/callstackincubator/rozenite/commit/fa96bb84d53d264b1f30aa7034ec678711a2c6b1), [`476a27f`](https://github.com/callstackincubator/rozenite/commit/476a27f5532f4e35ad66feb5c9481b9396592d14)]:
|
|
15
|
+
- @rozenite/agent-bridge@2.0.0
|
|
16
|
+
- @rozenite/plugin-bridge@2.0.0
|
|
17
|
+
|
|
18
|
+
## 1.13.0
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies []:
|
|
23
|
+
- @rozenite/agent-bridge@1.13.0
|
|
24
|
+
- @rozenite/plugin-bridge@1.13.0
|
|
25
|
+
|
|
3
26
|
## 1.12.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|