tinybase 8.4.0-beta.0 → 8.4.0-beta.1
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/ui-solid-dom/index.d.ts +2013 -0
- package/@types/ui-solid-dom/with-schemas/index.d.ts +2064 -0
- package/@types/ui-solid-inspector/index.d.ts +73 -0
- package/@types/ui-solid-inspector/with-schemas/index.d.ts +73 -0
- package/min/ui-solid/index.js +1 -1
- package/min/ui-solid/index.js.gz +0 -0
- package/min/ui-solid/with-schemas/index.js +1 -1
- package/min/ui-solid/with-schemas/index.js.gz +0 -0
- package/min/ui-solid-dom/index.js +1 -0
- package/min/ui-solid-dom/index.js.gz +0 -0
- package/min/ui-solid-dom/with-schemas/index.js +1 -0
- package/min/ui-solid-dom/with-schemas/index.js.gz +0 -0
- package/min/ui-solid-inspector/index.js +1 -0
- package/min/ui-solid-inspector/index.js.gz +0 -0
- package/min/ui-solid-inspector/with-schemas/index.js +1 -0
- package/min/ui-solid-inspector/with-schemas/index.js.gz +0 -0
- package/min/ui-svelte-inspector/index.js +1 -1
- package/min/ui-svelte-inspector/index.js.gz +0 -0
- package/min/ui-svelte-inspector/with-schemas/index.js +1 -1
- package/min/ui-svelte-inspector/with-schemas/index.js.gz +0 -0
- package/package.json +73 -1
- package/readme.md +14 -14
- package/releases.md +98 -62
- package/ui-solid/index.js +208 -104
- package/ui-solid/with-schemas/index.js +208 -104
- package/ui-solid-dom/index.js +1575 -0
- package/ui-solid-dom/with-schemas/index.js +1575 -0
- package/ui-solid-inspector/index.js +5621 -0
- package/ui-solid-inspector/with-schemas/index.js +5621 -0
- package/ui-svelte-inspector/index.js +6 -2
- package/ui-svelte-inspector/with-schemas/index.js +6 -2
|
@@ -2,7 +2,6 @@ import {getContext, onDestroy, onMount} from 'svelte';
|
|
|
2
2
|
import * as $ from 'svelte/internal/client';
|
|
3
3
|
import 'svelte/internal/disclose-version';
|
|
4
4
|
import {createSubscriber} from 'svelte/reactivity';
|
|
5
|
-
import {CellView as CellView$1} from '../ui-svelte/index.js';
|
|
6
5
|
|
|
7
6
|
const getTypeOf = (thing) => typeof thing;
|
|
8
7
|
const TINYBASE = 'tinybase';
|
|
@@ -6388,6 +6387,11 @@ function TablesActions($$anchor, $$props) {
|
|
|
6388
6387
|
$.pop();
|
|
6389
6388
|
}
|
|
6390
6389
|
|
|
6390
|
+
$.from_html(`<!><!>`, 1);
|
|
6391
|
+
$.from_html(`<!><!><!>`, 1);
|
|
6392
|
+
|
|
6393
|
+
$.from_html(`<!><!><!>`, 1);
|
|
6394
|
+
|
|
6391
6395
|
function RowActions($$anchor, $$props) {
|
|
6392
6396
|
$.push($$props, true);
|
|
6393
6397
|
|
|
@@ -6649,7 +6653,7 @@ function TableView($$anchor, $$props) {
|
|
|
6649
6653
|
const sortAndOffset = $.derived(() => jsonParse(sort.current ?? '[]'));
|
|
6650
6654
|
const title = $.derived(() => 'Table: ' + $$props.tableId);
|
|
6651
6655
|
const CellComponent = $.derived(() =>
|
|
6652
|
-
editable.current ? EditableCellViewWithActions : CellView
|
|
6656
|
+
editable.current ? EditableCellViewWithActions : CellView,
|
|
6653
6657
|
);
|
|
6654
6658
|
const customCells = $.derived(() =>
|
|
6655
6659
|
objNew(
|
|
@@ -2,7 +2,6 @@ import {getContext, onDestroy, onMount} from 'svelte';
|
|
|
2
2
|
import * as $ from 'svelte/internal/client';
|
|
3
3
|
import 'svelte/internal/disclose-version';
|
|
4
4
|
import {createSubscriber} from 'svelte/reactivity';
|
|
5
|
-
import {CellView as CellView$1} from '../../ui-svelte/with-schemas/index.js';
|
|
6
5
|
|
|
7
6
|
const getTypeOf = (thing) => typeof thing;
|
|
8
7
|
const TINYBASE = 'tinybase';
|
|
@@ -6388,6 +6387,11 @@ function TablesActions($$anchor, $$props) {
|
|
|
6388
6387
|
$.pop();
|
|
6389
6388
|
}
|
|
6390
6389
|
|
|
6390
|
+
$.from_html(`<!><!>`, 1);
|
|
6391
|
+
$.from_html(`<!><!><!>`, 1);
|
|
6392
|
+
|
|
6393
|
+
$.from_html(`<!><!><!>`, 1);
|
|
6394
|
+
|
|
6391
6395
|
function RowActions($$anchor, $$props) {
|
|
6392
6396
|
$.push($$props, true);
|
|
6393
6397
|
|
|
@@ -6649,7 +6653,7 @@ function TableView($$anchor, $$props) {
|
|
|
6649
6653
|
const sortAndOffset = $.derived(() => jsonParse(sort.current ?? '[]'));
|
|
6650
6654
|
const title = $.derived(() => 'Table: ' + $$props.tableId);
|
|
6651
6655
|
const CellComponent = $.derived(() =>
|
|
6652
|
-
editable.current ? EditableCellViewWithActions : CellView
|
|
6656
|
+
editable.current ? EditableCellViewWithActions : CellView,
|
|
6653
6657
|
);
|
|
6654
6658
|
const customCells = $.derived(() =>
|
|
6655
6659
|
objNew(
|