@devtable/dashboard 13.31.1 → 13.32.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/components/plugins/common-echarts-fields/stats-around-viz/index.d.ts +1 -0
- package/dist/components/plugins/common-echarts-fields/stats-around-viz/stats-around-viz.d.ts +8 -0
- package/dist/components/plugins/viz-components/cartesian/editors/stats/index.d.ts +3 -3
- package/dist/components/plugins/viz-components/cartesian/index.d.ts +1 -1
- package/dist/components/plugins/viz-components/cartesian/migrators/index.d.ts +2 -0
- package/dist/components/plugins/viz-components/cartesian/type.d.ts +2 -4
- package/dist/components/plugins/viz-components/cartesian/viz-cartesian-chart.d.ts +3 -1
- package/dist/components/plugins/viz-components/cartesian/viz-cartesian-editor.d.ts +1 -1
- package/dist/components/plugins/viz-components/scatter-chart/editors/stats/index.d.ts +3 -3
- package/dist/components/plugins/viz-components/scatter-chart/migrators/index.d.ts +5 -0
- package/dist/components/plugins/viz-components/scatter-chart/type.d.ts +2 -4
- package/dist/components/plugins/viz-components/scatter-chart/viz-scatter-chart-editor.d.ts +1 -1
- package/dist/components/widgets/rich-text-editor/readonly-rich-text-editor.d.ts +2 -1
- package/dist/dashboard.es.js +5970 -5987
- package/dist/dashboard.umd.js +78 -79
- package/dist/model/meta-model/dashboard/content/filter/widgets/date-range.d.ts +3 -3
- package/dist/stats.html +1 -1
- package/dist/utils/template/render/render-jsx.d.ts +1 -4
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -25,7 +25,7 @@ export declare const FilterDateRangeConfigMeta: import("mobx-state-tree").ISnaps
|
|
|
25
25
|
default_shortcut: string;
|
|
26
26
|
allowSingleDateInRange: boolean;
|
|
27
27
|
};
|
|
28
|
-
truthy(
|
|
28
|
+
truthy(fullValue: DateRangeValue): boolean;
|
|
29
29
|
readonly filter: any;
|
|
30
30
|
readonly dateStringsValue: [string, string];
|
|
31
31
|
} & {
|
|
@@ -70,7 +70,7 @@ export declare const createFilterDateRangeConfig: () => {
|
|
|
70
70
|
default_shortcut: string;
|
|
71
71
|
allowSingleDateInRange: boolean;
|
|
72
72
|
};
|
|
73
|
-
truthy(
|
|
73
|
+
truthy(fullValue: DateRangeValue): boolean;
|
|
74
74
|
readonly filter: any;
|
|
75
75
|
readonly dateStringsValue: [string, string];
|
|
76
76
|
} & {
|
|
@@ -103,7 +103,7 @@ export declare const createFilterDateRangeConfig: () => {
|
|
|
103
103
|
default_shortcut: string;
|
|
104
104
|
allowSingleDateInRange: boolean;
|
|
105
105
|
};
|
|
106
|
-
truthy(
|
|
106
|
+
truthy(fullValue: DateRangeValue): boolean;
|
|
107
107
|
readonly filter: any;
|
|
108
108
|
readonly dateStringsValue: [string, string];
|
|
109
109
|
} & {
|