@devtable/dashboard 14.27.0 → 14.29.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/dashboard-editor/model/views/index.d.ts +9 -0
- package/dist/dashboard.es.js +4824 -4667
- package/dist/dashboard.umd.js +65 -65
- package/dist/i18n/en.d.ts +9 -0
- package/dist/i18n/zh.d.ts +9 -0
- package/dist/interactions/operation/operations/scroll-to-panel.d.ts +5 -0
- package/dist/interactions/operation/operations/switch-tab.d.ts +6 -0
- package/dist/stats.html +1 -1
- package/dist/version.json +2 -2
- package/package.json +1 -1
|
@@ -8816,6 +8816,15 @@ export declare const ViewsModel: import("mobx-state-tree").IModelType<{
|
|
|
8816
8816
|
value: string;
|
|
8817
8817
|
type: EViewComponentType;
|
|
8818
8818
|
}[];
|
|
8819
|
+
readonly tabViewOptions: {
|
|
8820
|
+
label: string;
|
|
8821
|
+
value: string;
|
|
8822
|
+
type: EViewComponentType;
|
|
8823
|
+
}[];
|
|
8824
|
+
tabOptions(viewID: string): {
|
|
8825
|
+
label: string;
|
|
8826
|
+
value: string;
|
|
8827
|
+
}[];
|
|
8819
8828
|
readonly editorOptions: {
|
|
8820
8829
|
readonly label: string;
|
|
8821
8830
|
readonly value: string;
|