@things-factory/board-ui 6.1.39 → 6.1.40

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.
@@ -1,8 +1,8 @@
1
1
  import '@operato/data-grist';
2
2
  import { LitElement } from 'lit';
3
- export declare class ThemeImporter extends LitElement {
3
+ export declare class ShareImporter extends LitElement {
4
4
  static styles: import("lit").CSSResult[];
5
- themes: any[];
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 { ThemeImporter } from './theme-importer';
5
- declare const ThemeListPage_base: (new (...args: any[]) => {
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 ThemeListPage extends ThemeListPage_base {
12
+ export declare class ShareListPage extends ShareListPage_base {
13
13
  static styles: import("lit").CSSResult[];
14
14
  static get scopedElements(): {
15
- 'theme-importer': typeof ThemeImporter;
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
- _deleteTheme(): Promise<void>;
58
- _updateTheme(): Promise<void>;
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 | import("lit-html").TemplateResult<1 | 2>;
3
+ renderer: (value: any, column: any, record: any, rowIndex: any, field: any) => string | void | import("lit-html").TemplateResult<2 | 1> | import("@operato/data-grist/dist/src/renderers/ox-grist-renderer").OxGristRenderer;
4
4
  editable: boolean;
5
5
  };