@lobb-js/studio 0.38.0 → 0.39.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/dist/actions.d.ts CHANGED
@@ -19,6 +19,7 @@ export interface OpenDataTablePopupProps {
19
19
  title?: string;
20
20
  showHeader?: boolean;
21
21
  showFooter?: boolean;
22
+ showFilter?: boolean;
22
23
  tabs?: CollectionTab[];
23
24
  view?: {
24
25
  id: string;
@@ -44,6 +44,7 @@
44
44
  showImport?: boolean;
45
45
  showDelete?: boolean;
46
46
  showEdit?: boolean;
47
+ showFilter?: boolean;
47
48
  onDataLoad?: (total: number) => void;
48
49
  tableProps?: Partial<TableProps>;
49
50
  tabs?: CollectionTab[];
@@ -63,6 +64,7 @@
63
64
  showImport = true,
64
65
  showDelete = false,
65
66
  showEdit = true,
67
+ showFilter = true,
66
68
  onDataLoad,
67
69
  tableProps,
68
70
  tabs,
@@ -299,6 +301,7 @@
299
301
  {collectionName}
300
302
  bind:selectedRecords
301
303
  {showImport}
304
+ {showFilter}
302
305
  {loading}
303
306
  {parentContext}
304
307
  onLink={isRecordingMode ? handleLink : undefined}
@@ -18,6 +18,7 @@ interface Props {
18
18
  showImport?: boolean;
19
19
  showDelete?: boolean;
20
20
  showEdit?: boolean;
21
+ showFilter?: boolean;
21
22
  onDataLoad?: (total: number) => void;
22
23
  tableProps?: Partial<TableProps>;
23
24
  tabs?: CollectionTab[];