@devtable/dashboard 7.3.0 → 7.5.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.
@@ -4,7 +4,7 @@ import { IFilterConfig_MultiSelect } from '../../model/filters/filter/multi-sele
4
4
  interface IFilterMultiSelect extends Omit<FilterModelInstance, 'key' | 'type' | 'config'> {
5
5
  config: IFilterConfig_MultiSelect;
6
6
  value: $TSFixMe;
7
- onChange: (v: $TSFixMe) => void;
7
+ onChange: (v: string[], forceSubmit?: boolean) => void;
8
8
  }
9
9
  export declare const FilterMultiSelect: (({ label, config, value, onChange }: IFilterMultiSelect) => JSX.Element) & {
10
10
  displayName: string;
@@ -4,7 +4,7 @@ import { IFilterConfig_Select } from '../../model/filters/filter/select';
4
4
  interface IFilterSelect extends Omit<FilterModelInstance, 'key' | 'type' | 'config'> {
5
5
  config: IFilterConfig_Select;
6
6
  value: $TSFixMe;
7
- onChange: (v: $TSFixMe) => void;
7
+ onChange: (v: string, forceSubmit?: boolean) => void;
8
8
  }
9
9
  export declare const FilterSelect: (({ label, config, value, onChange }: IFilterSelect) => JSX.Element) & {
10
10
  displayName: string;
@@ -4,7 +4,7 @@ import { IFilterConfig_TreeSelect } from '../../../model/filters/filter/tree-sel
4
4
  interface IFilterTreeSelect extends Omit<FilterModelInstance, 'key' | 'type' | 'config'> {
5
5
  config: IFilterConfig_TreeSelect;
6
6
  value: $TSFixMe;
7
- onChange: (v: $TSFixMe) => void;
7
+ onChange: (v: string[], forceSubmit?: boolean) => void;
8
8
  }
9
9
  export declare const FilterTreeSelect: (({ label, config, value, onChange }: IFilterTreeSelect) => JSX.Element) & {
10
10
  displayName: string;
@@ -3,6 +3,7 @@ export declare const useTableStyles: (params: void, options?: import("@mantine/c
3
3
  classes: {
4
4
  root: string;
5
5
  thead: string;
6
+ thead_background: string;
6
7
  };
7
8
  cx: (...args: any) => string;
8
9
  theme: import("@mantine/core").MantineTheme;
package/dist/style.css CHANGED
@@ -1 +1 @@
1
- .filter-settings-tabs{width:100%;height:100%}.filter-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.filter-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.filter-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.panel-root{height:100%;width:100%;max-width:100%;background:transparent;border-radius:4px;position:relative}.panel-settings-tabs{width:100%;height:100%}.panel-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.panel-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.panel-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.viz-root{width:100%;overflow:scroll;flex-grow:1;background-color:#fff}.panel-dropdown-target{text-align:center;transition:background-color .3s ease}.panel-dropdown-target:hover{cursor:pointer;background-color:#6464640d}.react-grid-item{padding:0}.remove-panel{position:absolute;right:2px;top:0;cursor:pointer}.code-textarea textarea{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.dashboard-root{overflow:scroll;padding:0 0 10px;height:100%}.dashboard-sticky-area{z-index:100;background:white;margin:0;padding:0 10px}.mantine-RichTextEditor-root{overflow-y:scroll!important;-ms-overflow-style:initial!important}*:not(.mantine-RichTextEditor-root):not([data-enable-scrollbar])::-webkit-scrollbar{width:0!important;height:0!important}*:not([data-enable-scrollbar]){overflow:-moz-scrollbars-none;-ms-overflow-style:none}.minimal-monaco-editor{border-radius:4px;overflow:hidden;background-color:#1e1e1e;padding-top:14px}
1
+ .filter-settings-tabs{width:100%;height:100%}.filter-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.filter-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.filter-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.panel-root{height:100%;width:100%;max-width:100%;background:transparent;border-radius:4px;position:relative}.panel-settings-tabs{width:100%;height:100%}.panel-settings-tabs .mantine-Tabs-panel{height:calc(100% - 25px)}.panel-settings-tabs .mantine-Tabs-tabsListWrapper{flex:0}.panel-settings-tabs .mantine-Tabs-body{flex:1;overflow:scroll}.viz-root{width:100%;overflow:scroll;flex-grow:1;background-color:#fff}.panel-dropdown-target{text-align:center;transition:background-color .3s ease}.panel-dropdown-target:hover{cursor:pointer;background-color:#6464640d}.react-grid-item{padding:0}.remove-panel{position:absolute;right:2px;top:0;cursor:pointer}.code-textarea textarea{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.dashboard-root{overflow:scroll;overflow-x:hidden;padding:0 0 10px;height:100%}.dashboard-sticky-area{z-index:100;background:white;margin:0;padding:0 10px}.mantine-RichTextEditor-root{overflow-y:scroll!important;-ms-overflow-style:initial!important}*:not(.mantine-RichTextEditor-root):not([data-enable-scrollbar])::-webkit-scrollbar{width:0!important;height:0!important}*:not([data-enable-scrollbar]){overflow:-moz-scrollbars-none;-ms-overflow-style:none}.minimal-monaco-editor{border-radius:4px;overflow:hidden;background-color:#1e1e1e;padding-top:14px}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@devtable/dashboard",
3
- "version": "7.3.0",
3
+ "version": "7.5.0",
4
4
  "license": "Apache-2.0",
5
5
  "publishConfig": {
6
6
  "access": "public",