@things-factory/board-ui 6.1.39 → 6.1.46
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/dist-client/pages/share/share-importer.d.ts +2 -2
- package/dist-client/pages/share/share-list-page.d.ts +6 -6
- package/dist-client/pages/theme/theme-editors.d.ts +1 -1
- package/dist-client/tsconfig.tsbuildinfo +1 -1
- package/dist-server/tsconfig.tsbuildinfo +1 -1
- package/package.json +3 -3
- package/client/data-grist/legend-editor.ts +0 -111
- package/dist-client/data-grist/legend-editor.d.ts +0 -14
- package/dist-client/data-grist/legend-editor.js +0 -108
- package/dist-client/data-grist/legend-editor.js.map +0 -1
- package/dist-client/pages/theme/theme-importer.d.ts +0 -22
- package/dist-client/pages/theme/theme-importer.js +0 -100
- package/dist-client/pages/theme/theme-importer.js.map +0 -1
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
import '@operato/data-grist';
|
|
2
2
|
import { LitElement } from 'lit';
|
|
3
|
-
export declare class
|
|
3
|
+
export declare class ShareImporter extends LitElement {
|
|
4
4
|
static styles: import("lit").CSSResult[];
|
|
5
|
-
|
|
5
|
+
shares: any[];
|
|
6
6
|
columns: {
|
|
7
7
|
list: {
|
|
8
8
|
fields: string[];
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import '@operato/data-grist';
|
|
2
2
|
import { PageView } from '@operato/shell';
|
|
3
3
|
import { FetchOption } from '@operato/data-grist';
|
|
4
|
-
import {
|
|
5
|
-
declare const
|
|
4
|
+
import { ShareImporter } from './share-importer';
|
|
5
|
+
declare const ShareListPage_base: (new (...args: any[]) => {
|
|
6
6
|
_storeUnsubscribe: import("redux").Unsubscribe;
|
|
7
7
|
connectedCallback(): void;
|
|
8
8
|
disconnectedCallback(): void;
|
|
9
9
|
stateChanged(_state: unknown): void;
|
|
10
10
|
readonly isConnected: boolean;
|
|
11
11
|
}) & (new (...args: any[]) => import("lit").LitElement) & typeof PageView & import("@open-wc/dedupe-mixin").Constructor<import("@open-wc/scoped-elements/types/src/types").ScopedElementsHost>;
|
|
12
|
-
export declare class
|
|
12
|
+
export declare class ShareListPage extends ShareListPage_base {
|
|
13
13
|
static styles: import("lit").CSSResult[];
|
|
14
14
|
static get scopedElements(): {
|
|
15
|
-
'
|
|
15
|
+
'share-importer': typeof ShareImporter;
|
|
16
16
|
};
|
|
17
17
|
gristConfig: any;
|
|
18
18
|
mode: 'CARD' | 'GRID' | 'LIST';
|
|
@@ -54,8 +54,8 @@ export declare class ThemeListPage extends ThemeListPage_base {
|
|
|
54
54
|
total: any;
|
|
55
55
|
records: any;
|
|
56
56
|
}>;
|
|
57
|
-
|
|
58
|
-
|
|
57
|
+
_deleteShare(): Promise<void>;
|
|
58
|
+
_updateShare(): Promise<void>;
|
|
59
59
|
exportHandler(): Promise<{}[]>;
|
|
60
60
|
importHandler(records: any): Promise<void>;
|
|
61
61
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export declare function buildThemeValueRecordConfig(): {
|
|
2
2
|
editor: (value: any, column: any, record: any, rowIndex: any, field: any) => import("@operato/data-grist").OxGristEditor;
|
|
3
|
-
renderer: (value: any, column: any, record: any, rowIndex: any, field: any) => string | void | import("@operato/data-grist/dist/src/renderers/ox-grist-renderer").OxGristRenderer
|
|
3
|
+
renderer: (value: any, column: any, record: any, rowIndex: any, field: any) => string | void | import("lit-html").TemplateResult<1 | 2> | import("@operato/data-grist/dist/src/renderers/ox-grist-renderer").OxGristRenderer;
|
|
4
4
|
editable: boolean;
|
|
5
5
|
};
|