tinybase 8.3.0-beta.1 → 8.3.0-beta.2
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/@types/_internal/ui-solid/index.d.ts +0 -0
- package/@types/_internal/ui-solid/with-schemas/index.d.ts +1104 -0
- package/@types/persisters/index.d.ts +2 -2
- package/@types/persisters/with-schemas/index.d.ts +2 -2
- package/@types/ui-react/index.d.ts +6 -6
- package/@types/ui-react/with-schemas/index.d.ts +6 -6
- package/@types/ui-solid/index.d.ts +16336 -0
- package/@types/ui-solid/with-schemas/index.d.ts +16951 -0
- package/@types/ui-svelte/index.d.ts +6123 -80
- package/@types/ui-svelte/with-schemas/index.d.ts +7348 -89
- package/agents.md +3 -3
- package/min/ui-react/index.js +1 -1
- package/min/ui-react/index.js.gz +0 -0
- package/min/ui-react/with-schemas/index.js +1 -1
- package/min/ui-react/with-schemas/index.js.gz +0 -0
- package/min/ui-solid/index.js +1 -0
- package/min/ui-solid/index.js.gz +0 -0
- package/min/ui-solid/with-schemas/index.js +1 -0
- package/min/ui-solid/with-schemas/index.js.gz +0 -0
- package/min/ui-svelte/index.js +1 -1
- package/min/ui-svelte/index.js.gz +0 -0
- package/min/ui-svelte/with-schemas/index.js +1 -1
- package/min/ui-svelte/with-schemas/index.js.gz +0 -0
- package/package.json +46 -6
- package/readme.md +2 -2
- package/ui-react/index.js +1 -1
- package/ui-react/with-schemas/index.js +1 -1
- package/ui-solid/index.js +2154 -0
- package/ui-solid/with-schemas/index.js +2154 -0
- package/ui-svelte/index.js +11 -4
- package/ui-svelte/with-schemas/index.js +11 -4
|
@@ -1489,8 +1489,8 @@ export interface Persister<Persist extends Persists = Persists.StoreOnly> {
|
|
|
1489
1489
|
* });
|
|
1490
1490
|
*
|
|
1491
1491
|
* await persister.load();
|
|
1492
|
-
* // ->
|
|
1493
|
-
* // ->
|
|
1492
|
+
* // -> 'Status changed to 1'
|
|
1493
|
+
* // -> 'Status changed to 0'
|
|
1494
1494
|
*
|
|
1495
1495
|
* persister.delListener(listenerId);
|
|
1496
1496
|
*
|
|
@@ -1597,8 +1597,8 @@ export interface Persister<
|
|
|
1597
1597
|
* });
|
|
1598
1598
|
*
|
|
1599
1599
|
* await persister.load();
|
|
1600
|
-
* // ->
|
|
1601
|
-
* // ->
|
|
1600
|
+
* // -> 'Status changed to 1'
|
|
1601
|
+
* // -> 'Status changed to 0'
|
|
1602
1602
|
*
|
|
1603
1603
|
* persister.delListener(listenerId);
|
|
1604
1604
|
*
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
*
|
|
10
10
|
* The components in this module provide a further abstraction over those hooks
|
|
11
11
|
* to ease the composition of user interfaces that use TinyBase.
|
|
12
|
-
* @see Building UIs
|
|
13
|
-
* @see Building
|
|
14
|
-
* @see Building
|
|
15
|
-
* @see Building
|
|
16
|
-
* @see Building
|
|
17
|
-
* @see Building
|
|
12
|
+
* @see Building UIs With React guide
|
|
13
|
+
* @see Building A UI With Metrics guide
|
|
14
|
+
* @see Building A UI With Indexes guide
|
|
15
|
+
* @see Building A UI With Relationships guide
|
|
16
|
+
* @see Building A UI With Queries guide
|
|
17
|
+
* @see Building A UI With Checkpoints guide
|
|
18
18
|
* @see Hello World (React) demo
|
|
19
19
|
* @see Countries (React) demo
|
|
20
20
|
* @see Todo App demos
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
*
|
|
10
10
|
* The components in this module provide a further abstraction over those hooks
|
|
11
11
|
* to ease the composition of user interfaces that use TinyBase.
|
|
12
|
-
* @see Building UIs
|
|
13
|
-
* @see Building
|
|
14
|
-
* @see Building
|
|
15
|
-
* @see Building
|
|
16
|
-
* @see Building
|
|
17
|
-
* @see Building
|
|
12
|
+
* @see Building UIs With React guide
|
|
13
|
+
* @see Building A UI With Metrics guide
|
|
14
|
+
* @see Building A UI With Indexes guide
|
|
15
|
+
* @see Building A UI With Relationships guide
|
|
16
|
+
* @see Building A UI With Queries guide
|
|
17
|
+
* @see Building A UI With Checkpoints guide
|
|
18
18
|
* @see Hello World (React) demo
|
|
19
19
|
* @see Countries (React) demo
|
|
20
20
|
* @see Todo App demos
|