amis 1.2.4-beta.10 → 1.2.4-beta.11
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/lib/components/Radios.d.ts +21 -21
- package/lib/components/Select.d.ts +239 -238
- package/lib/components/Select.js +6 -2
- package/lib/components/Select.js.map +2 -2
- package/lib/components/Tree.d.ts +352 -84
- package/lib/components/Tree.js +71 -12
- package/lib/components/Tree.js.map +2 -2
- package/lib/components/icons.js +3 -0
- package/lib/components/icons.js.map +2 -2
- package/lib/helper.css.map +1 -1
- package/lib/index.js +1 -1
- package/lib/locale/de-DE.js +2 -0
- package/lib/locale/de-DE.js.map +2 -2
- package/lib/locale/en-US.js +2 -0
- package/lib/locale/en-US.js.map +2 -2
- package/lib/locale/zh-CN.js +2 -0
- package/lib/locale/zh-CN.js.map +2 -2
- package/lib/renderers/Form/DiffEditor.d.ts +108 -90
- package/lib/renderers/Form/Editor.d.ts +108 -90
- package/lib/renderers/Form/InputImage.d.ts +1 -1
- package/lib/renderers/Form/InputImage.js +6 -5
- package/lib/renderers/Form/InputImage.js.map +2 -2
- package/lib/renderers/Form/InputTree.d.ts +14 -0
- package/lib/renderers/Form/InputTree.js +5 -3
- package/lib/renderers/Form/InputTree.js.map +2 -2
- package/lib/renderers/Form/NestedSelect.d.ts +6 -1
- package/lib/renderers/Form/NestedSelect.js +7 -3
- package/lib/renderers/Form/NestedSelect.js.map +2 -2
- package/lib/renderers/Form/Options.d.ts +1 -0
- package/lib/renderers/Form/Options.js +21 -3
- package/lib/renderers/Form/Options.js.map +2 -2
- package/lib/renderers/Form/TreeSelect.d.ts +19 -1
- package/lib/renderers/Form/TreeSelect.js +10 -4
- package/lib/renderers/Form/TreeSelect.js.map +2 -2
- package/lib/renderers/Table/index.js +24 -16
- package/lib/renderers/Table/index.js.map +2 -2
- package/lib/store/app.js +4 -7
- package/lib/store/app.js.map +2 -2
- package/lib/store/combo.d.ts +120 -100
- package/lib/store/form.d.ts +48 -40
- package/lib/store/formItem.d.ts +2 -1
- package/lib/store/formItem.js +83 -6
- package/lib/store/formItem.js.map +2 -2
- package/lib/store/table.d.ts +96 -80
- package/lib/themes/ang.css.map +1 -1
- package/lib/themes/antd.css.map +1 -1
- package/lib/themes/cxd-ie11.css +8 -2
- package/lib/themes/cxd.css +8 -2
- package/lib/themes/cxd.css.map +1 -1
- package/lib/themes/dark.css.map +1 -1
- package/lib/themes/default.css +8 -2
- package/lib/themes/default.css.map +1 -1
- package/lib/utils/helper.d.ts +15 -0
- package/lib/utils/helper.js +58 -4
- package/lib/utils/helper.js.map +2 -2
- package/lib/utils/markdown.js +3 -0
- package/lib/utils/markdown.js.map +2 -2
- package/package.json +5 -4
- package/schema.json +49 -21
- package/scss/_functions.scss +3 -1
- package/scss/components/_images.scss +4 -2
- package/scss/components/form/_form.scss +3 -2
- package/scss/components/form/_group.scss +4 -2
- package/scss/layout/_grid.scss +12 -10
- package/scss/themes/_cxd-variables.scss +8 -2
- package/sdk/charts.js +13 -13
- package/sdk/color-picker.js +67 -67
- package/sdk/cropperjs.js +2 -2
- package/sdk/cxd-ie11.css +8 -8
- package/sdk/cxd.css +8 -2
- package/sdk/exceljs.js +1 -1
- package/sdk/helper.css.map +1 -0
- package/sdk/markdown.js +70 -68
- package/sdk/papaparse.js +1 -1
- package/sdk/renderers/Form/CityDB.js +1 -1
- package/sdk/rest.js +19 -19
- package/sdk/rich-text.js +68 -68
- package/sdk/sdk-ie11.css +8 -8
- package/sdk/sdk.css +8 -2
- package/sdk/sdk.js +1132 -1130
- package/sdk/thirds/hls.js/hls.js +1 -1
- package/sdk/thirds/mpegts.js/mpegts.js +2 -2
- package/sdk/tinymce.js +59 -59
- package/src/components/Select.tsx +30 -5
- package/src/components/Tree.tsx +115 -20
- package/src/components/icons.tsx +4 -0
- package/src/locale/de-DE.ts +2 -0
- package/src/locale/en-US.ts +2 -0
- package/src/locale/zh-CN.ts +2 -0
- package/src/renderers/Form/InputImage.tsx +12 -6
- package/src/renderers/Form/InputTree.tsx +30 -2
- package/src/renderers/Form/NestedSelect.tsx +15 -3
- package/src/renderers/Form/Options.tsx +46 -4
- package/src/renderers/Form/TreeSelect.tsx +36 -3
- package/src/renderers/Table/index.tsx +48 -44
- package/src/store/app.ts +4 -7
- package/src/store/formItem.ts +107 -3
- package/src/utils/helper.ts +68 -7
- package/src/utils/markdown.ts +4 -0
@@ -292,7 +292,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
292
292
|
readonly valid: boolean;
|
293
293
|
readonly errClassNames: string;
|
294
294
|
readonly lastSelectValue: string;
|
295
|
-
getSelectedOptions: (value?: any) => any[];
|
295
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
296
296
|
} & {
|
297
297
|
focus: () => void;
|
298
298
|
blur: () => void;
|
@@ -333,6 +333,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
333
333
|
extendsOptions?: boolean | undefined;
|
334
334
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
335
335
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
336
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
336
337
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
337
338
|
setLoading: (value: boolean) => void;
|
338
339
|
setSubStore: (store: any) => void;
|
@@ -411,7 +412,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
411
412
|
readonly valid: boolean;
|
412
413
|
readonly errClassNames: string;
|
413
414
|
readonly lastSelectValue: string;
|
414
|
-
getSelectedOptions: (value?: any) => any[];
|
415
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
415
416
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
416
417
|
id: import("mobx-state-tree").ISimpleType<string>;
|
417
418
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -478,7 +479,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
478
479
|
readonly valid: boolean;
|
479
480
|
readonly errClassNames: string;
|
480
481
|
readonly lastSelectValue: string;
|
481
|
-
getSelectedOptions: (value?: any) => any[];
|
482
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
482
483
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
483
484
|
removeSubFormItem: (item: {
|
484
485
|
id: string;
|
@@ -549,7 +550,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
549
550
|
readonly valid: boolean;
|
550
551
|
readonly errClassNames: string;
|
551
552
|
readonly lastSelectValue: string;
|
552
|
-
getSelectedOptions: (value?: any) => any[];
|
553
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
553
554
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
554
555
|
id: import("mobx-state-tree").ISimpleType<string>;
|
555
556
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -616,7 +617,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
616
617
|
readonly valid: boolean;
|
617
618
|
readonly errClassNames: string;
|
618
619
|
readonly lastSelectValue: string;
|
619
|
-
getSelectedOptions: (value?: any) => any[];
|
620
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
620
621
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
621
622
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
622
623
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -684,7 +685,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
684
685
|
readonly valid: boolean;
|
685
686
|
readonly errClassNames: string;
|
686
687
|
readonly lastSelectValue: string;
|
687
|
-
getSelectedOptions: (value?: any) => any[];
|
688
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
688
689
|
} & {
|
689
690
|
focus: () => void;
|
690
691
|
blur: () => void;
|
@@ -725,6 +726,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
725
726
|
extendsOptions?: boolean | undefined;
|
726
727
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
727
728
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
729
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
728
730
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
729
731
|
setLoading: (value: boolean) => void;
|
730
732
|
setSubStore: (store: any) => void;
|
@@ -803,7 +805,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
803
805
|
readonly valid: boolean;
|
804
806
|
readonly errClassNames: string;
|
805
807
|
readonly lastSelectValue: string;
|
806
|
-
getSelectedOptions: (value?: any) => any[];
|
808
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
807
809
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
808
810
|
id: import("mobx-state-tree").ISimpleType<string>;
|
809
811
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -870,7 +872,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
870
872
|
readonly valid: boolean;
|
871
873
|
readonly errClassNames: string;
|
872
874
|
readonly lastSelectValue: string;
|
873
|
-
getSelectedOptions: (value?: any) => any[];
|
875
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
874
876
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
875
877
|
removeSubFormItem: (item: {
|
876
878
|
id: string;
|
@@ -941,7 +943,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
941
943
|
readonly valid: boolean;
|
942
944
|
readonly errClassNames: string;
|
943
945
|
readonly lastSelectValue: string;
|
944
|
-
getSelectedOptions: (value?: any) => any[];
|
946
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
945
947
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
946
948
|
id: import("mobx-state-tree").ISimpleType<string>;
|
947
949
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -1008,7 +1010,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1008
1010
|
readonly valid: boolean;
|
1009
1011
|
readonly errClassNames: string;
|
1010
1012
|
readonly lastSelectValue: string;
|
1011
|
-
getSelectedOptions: (value?: any) => any[];
|
1013
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1012
1014
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
1013
1015
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
1014
1016
|
readonly errors: {
|
@@ -1085,7 +1087,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1085
1087
|
readonly valid: boolean;
|
1086
1088
|
readonly errClassNames: string;
|
1087
1089
|
readonly lastSelectValue: string;
|
1088
|
-
getSelectedOptions: (value?: any) => any[];
|
1090
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1089
1091
|
} & {
|
1090
1092
|
focus: () => void;
|
1091
1093
|
blur: () => void;
|
@@ -1126,6 +1128,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1126
1128
|
extendsOptions?: boolean | undefined;
|
1127
1129
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
1128
1130
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
1131
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
1129
1132
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
1130
1133
|
setLoading: (value: boolean) => void;
|
1131
1134
|
setSubStore: (store: any) => void;
|
@@ -1204,7 +1207,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1204
1207
|
readonly valid: boolean;
|
1205
1208
|
readonly errClassNames: string;
|
1206
1209
|
readonly lastSelectValue: string;
|
1207
|
-
getSelectedOptions: (value?: any) => any[];
|
1210
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1208
1211
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
1209
1212
|
id: import("mobx-state-tree").ISimpleType<string>;
|
1210
1213
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -1271,7 +1274,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1271
1274
|
readonly valid: boolean;
|
1272
1275
|
readonly errClassNames: string;
|
1273
1276
|
readonly lastSelectValue: string;
|
1274
|
-
getSelectedOptions: (value?: any) => any[];
|
1277
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1275
1278
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
1276
1279
|
removeSubFormItem: (item: {
|
1277
1280
|
id: string;
|
@@ -1342,7 +1345,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1342
1345
|
readonly valid: boolean;
|
1343
1346
|
readonly errClassNames: string;
|
1344
1347
|
readonly lastSelectValue: string;
|
1345
|
-
getSelectedOptions: (value?: any) => any[];
|
1348
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1346
1349
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
1347
1350
|
id: import("mobx-state-tree").ISimpleType<string>;
|
1348
1351
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -1409,7 +1412,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1409
1412
|
readonly valid: boolean;
|
1410
1413
|
readonly errClassNames: string;
|
1411
1414
|
readonly lastSelectValue: string;
|
1412
|
-
getSelectedOptions: (value?: any) => any[];
|
1415
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1413
1416
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
1414
1417
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
1415
1418
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -1477,7 +1480,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1477
1480
|
readonly valid: boolean;
|
1478
1481
|
readonly errClassNames: string;
|
1479
1482
|
readonly lastSelectValue: string;
|
1480
|
-
getSelectedOptions: (value?: any) => any[];
|
1483
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1481
1484
|
} & {
|
1482
1485
|
focus: () => void;
|
1483
1486
|
blur: () => void;
|
@@ -1518,6 +1521,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1518
1521
|
extendsOptions?: boolean | undefined;
|
1519
1522
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
1520
1523
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
1524
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
1521
1525
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
1522
1526
|
setLoading: (value: boolean) => void;
|
1523
1527
|
setSubStore: (store: any) => void;
|
@@ -1596,7 +1600,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1596
1600
|
readonly valid: boolean;
|
1597
1601
|
readonly errClassNames: string;
|
1598
1602
|
readonly lastSelectValue: string;
|
1599
|
-
getSelectedOptions: (value?: any) => any[];
|
1603
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1600
1604
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
1601
1605
|
id: import("mobx-state-tree").ISimpleType<string>;
|
1602
1606
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -1663,7 +1667,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1663
1667
|
readonly valid: boolean;
|
1664
1668
|
readonly errClassNames: string;
|
1665
1669
|
readonly lastSelectValue: string;
|
1666
|
-
getSelectedOptions: (value?: any) => any[];
|
1670
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1667
1671
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
1668
1672
|
removeSubFormItem: (item: {
|
1669
1673
|
id: string;
|
@@ -1734,7 +1738,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1734
1738
|
readonly valid: boolean;
|
1735
1739
|
readonly errClassNames: string;
|
1736
1740
|
readonly lastSelectValue: string;
|
1737
|
-
getSelectedOptions: (value?: any) => any[];
|
1741
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1738
1742
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
1739
1743
|
id: import("mobx-state-tree").ISimpleType<string>;
|
1740
1744
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -1801,7 +1805,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1801
1805
|
readonly valid: boolean;
|
1802
1806
|
readonly errClassNames: string;
|
1803
1807
|
readonly lastSelectValue: string;
|
1804
|
-
getSelectedOptions: (value?: any) => any[];
|
1808
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1805
1809
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
1806
1810
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
1807
1811
|
getItemByName(name: string): ({
|
@@ -1873,7 +1877,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1873
1877
|
readonly valid: boolean;
|
1874
1878
|
readonly errClassNames: string;
|
1875
1879
|
readonly lastSelectValue: string;
|
1876
|
-
getSelectedOptions: (value?: any) => any[];
|
1880
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1877
1881
|
} & {
|
1878
1882
|
focus: () => void;
|
1879
1883
|
blur: () => void;
|
@@ -1914,6 +1918,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1914
1918
|
extendsOptions?: boolean | undefined;
|
1915
1919
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
1916
1920
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
1921
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
1917
1922
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
1918
1923
|
setLoading: (value: boolean) => void;
|
1919
1924
|
setSubStore: (store: any) => void;
|
@@ -1992,7 +1997,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
1992
1997
|
readonly valid: boolean;
|
1993
1998
|
readonly errClassNames: string;
|
1994
1999
|
readonly lastSelectValue: string;
|
1995
|
-
getSelectedOptions: (value?: any) => any[];
|
2000
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
1996
2001
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
1997
2002
|
id: import("mobx-state-tree").ISimpleType<string>;
|
1998
2003
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -2059,7 +2064,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2059
2064
|
readonly valid: boolean;
|
2060
2065
|
readonly errClassNames: string;
|
2061
2066
|
readonly lastSelectValue: string;
|
2062
|
-
getSelectedOptions: (value?: any) => any[];
|
2067
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2063
2068
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
2064
2069
|
removeSubFormItem: (item: {
|
2065
2070
|
id: string;
|
@@ -2130,7 +2135,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2130
2135
|
readonly valid: boolean;
|
2131
2136
|
readonly errClassNames: string;
|
2132
2137
|
readonly lastSelectValue: string;
|
2133
|
-
getSelectedOptions: (value?: any) => any[];
|
2138
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2134
2139
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2135
2140
|
id: import("mobx-state-tree").ISimpleType<string>;
|
2136
2141
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -2197,7 +2202,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2197
2202
|
readonly valid: boolean;
|
2198
2203
|
readonly errClassNames: string;
|
2199
2204
|
readonly lastSelectValue: string;
|
2200
|
-
getSelectedOptions: (value?: any) => any[];
|
2205
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2201
2206
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
2202
2207
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2203
2208
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -2265,7 +2270,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2265
2270
|
readonly valid: boolean;
|
2266
2271
|
readonly errClassNames: string;
|
2267
2272
|
readonly lastSelectValue: string;
|
2268
|
-
getSelectedOptions: (value?: any) => any[];
|
2273
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2269
2274
|
} & {
|
2270
2275
|
focus: () => void;
|
2271
2276
|
blur: () => void;
|
@@ -2306,6 +2311,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2306
2311
|
extendsOptions?: boolean | undefined;
|
2307
2312
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
2308
2313
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
2314
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
2309
2315
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
2310
2316
|
setLoading: (value: boolean) => void;
|
2311
2317
|
setSubStore: (store: any) => void;
|
@@ -2384,7 +2390,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2384
2390
|
readonly valid: boolean;
|
2385
2391
|
readonly errClassNames: string;
|
2386
2392
|
readonly lastSelectValue: string;
|
2387
|
-
getSelectedOptions: (value?: any) => any[];
|
2393
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2388
2394
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2389
2395
|
id: import("mobx-state-tree").ISimpleType<string>;
|
2390
2396
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -2451,7 +2457,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2451
2457
|
readonly valid: boolean;
|
2452
2458
|
readonly errClassNames: string;
|
2453
2459
|
readonly lastSelectValue: string;
|
2454
|
-
getSelectedOptions: (value?: any) => any[];
|
2460
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2455
2461
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
2456
2462
|
removeSubFormItem: (item: {
|
2457
2463
|
id: string;
|
@@ -2522,7 +2528,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2522
2528
|
readonly valid: boolean;
|
2523
2529
|
readonly errClassNames: string;
|
2524
2530
|
readonly lastSelectValue: string;
|
2525
|
-
getSelectedOptions: (value?: any) => any[];
|
2531
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2526
2532
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2527
2533
|
id: import("mobx-state-tree").ISimpleType<string>;
|
2528
2534
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -2589,7 +2595,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2589
2595
|
readonly valid: boolean;
|
2590
2596
|
readonly errClassNames: string;
|
2591
2597
|
readonly lastSelectValue: string;
|
2592
|
-
getSelectedOptions: (value?: any) => any[];
|
2598
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2593
2599
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
2594
2600
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
2595
2601
|
getItemsByName(name: string): ({
|
@@ -2661,7 +2667,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2661
2667
|
readonly valid: boolean;
|
2662
2668
|
readonly errClassNames: string;
|
2663
2669
|
readonly lastSelectValue: string;
|
2664
|
-
getSelectedOptions: (value?: any) => any[];
|
2670
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2665
2671
|
} & {
|
2666
2672
|
focus: () => void;
|
2667
2673
|
blur: () => void;
|
@@ -2702,6 +2708,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2702
2708
|
extendsOptions?: boolean | undefined;
|
2703
2709
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
2704
2710
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
2711
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
2705
2712
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
2706
2713
|
setLoading: (value: boolean) => void;
|
2707
2714
|
setSubStore: (store: any) => void;
|
@@ -2780,7 +2787,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2780
2787
|
readonly valid: boolean;
|
2781
2788
|
readonly errClassNames: string;
|
2782
2789
|
readonly lastSelectValue: string;
|
2783
|
-
getSelectedOptions: (value?: any) => any[];
|
2790
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2784
2791
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2785
2792
|
id: import("mobx-state-tree").ISimpleType<string>;
|
2786
2793
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -2847,7 +2854,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2847
2854
|
readonly valid: boolean;
|
2848
2855
|
readonly errClassNames: string;
|
2849
2856
|
readonly lastSelectValue: string;
|
2850
|
-
getSelectedOptions: (value?: any) => any[];
|
2857
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2851
2858
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
2852
2859
|
removeSubFormItem: (item: {
|
2853
2860
|
id: string;
|
@@ -2918,7 +2925,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2918
2925
|
readonly valid: boolean;
|
2919
2926
|
readonly errClassNames: string;
|
2920
2927
|
readonly lastSelectValue: string;
|
2921
|
-
getSelectedOptions: (value?: any) => any[];
|
2928
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2922
2929
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2923
2930
|
id: import("mobx-state-tree").ISimpleType<string>;
|
2924
2931
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -2985,7 +2992,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
2985
2992
|
readonly valid: boolean;
|
2986
2993
|
readonly errClassNames: string;
|
2987
2994
|
readonly lastSelectValue: string;
|
2988
|
-
getSelectedOptions: (value?: any) => any[];
|
2995
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
2989
2996
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
2990
2997
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
2991
2998
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -3053,7 +3060,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3053
3060
|
readonly valid: boolean;
|
3054
3061
|
readonly errClassNames: string;
|
3055
3062
|
readonly lastSelectValue: string;
|
3056
|
-
getSelectedOptions: (value?: any) => any[];
|
3063
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3057
3064
|
} & {
|
3058
3065
|
focus: () => void;
|
3059
3066
|
blur: () => void;
|
@@ -3094,6 +3101,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3094
3101
|
extendsOptions?: boolean | undefined;
|
3095
3102
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
3096
3103
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
3104
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
3097
3105
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
3098
3106
|
setLoading: (value: boolean) => void;
|
3099
3107
|
setSubStore: (store: any) => void;
|
@@ -3172,7 +3180,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3172
3180
|
readonly valid: boolean;
|
3173
3181
|
readonly errClassNames: string;
|
3174
3182
|
readonly lastSelectValue: string;
|
3175
|
-
getSelectedOptions: (value?: any) => any[];
|
3183
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3176
3184
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
3177
3185
|
id: import("mobx-state-tree").ISimpleType<string>;
|
3178
3186
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -3239,7 +3247,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3239
3247
|
readonly valid: boolean;
|
3240
3248
|
readonly errClassNames: string;
|
3241
3249
|
readonly lastSelectValue: string;
|
3242
|
-
getSelectedOptions: (value?: any) => any[];
|
3250
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3243
3251
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
3244
3252
|
removeSubFormItem: (item: {
|
3245
3253
|
id: string;
|
@@ -3310,7 +3318,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3310
3318
|
readonly valid: boolean;
|
3311
3319
|
readonly errClassNames: string;
|
3312
3320
|
readonly lastSelectValue: string;
|
3313
|
-
getSelectedOptions: (value?: any) => any[];
|
3321
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3314
3322
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
3315
3323
|
id: import("mobx-state-tree").ISimpleType<string>;
|
3316
3324
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -3377,7 +3385,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3377
3385
|
readonly valid: boolean;
|
3378
3386
|
readonly errClassNames: string;
|
3379
3387
|
readonly lastSelectValue: string;
|
3380
|
-
getSelectedOptions: (value?: any) => any[];
|
3388
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3381
3389
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
3382
3390
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
3383
3391
|
readonly valid: boolean;
|
@@ -3561,7 +3569,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3561
3569
|
readonly valid: boolean;
|
3562
3570
|
readonly errClassNames: string;
|
3563
3571
|
readonly lastSelectValue: string;
|
3564
|
-
getSelectedOptions: (value?: any) => any[];
|
3572
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3565
3573
|
} & {
|
3566
3574
|
focus: () => void;
|
3567
3575
|
blur: () => void;
|
@@ -3602,6 +3610,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3602
3610
|
extendsOptions?: boolean | undefined;
|
3603
3611
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
3604
3612
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
3613
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
3605
3614
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
3606
3615
|
setLoading: (value: boolean) => void;
|
3607
3616
|
setSubStore: (store: any) => void;
|
@@ -3680,7 +3689,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3680
3689
|
readonly valid: boolean;
|
3681
3690
|
readonly errClassNames: string;
|
3682
3691
|
readonly lastSelectValue: string;
|
3683
|
-
getSelectedOptions: (value?: any) => any[];
|
3692
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3684
3693
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
3685
3694
|
id: import("mobx-state-tree").ISimpleType<string>;
|
3686
3695
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -3747,7 +3756,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3747
3756
|
readonly valid: boolean;
|
3748
3757
|
readonly errClassNames: string;
|
3749
3758
|
readonly lastSelectValue: string;
|
3750
|
-
getSelectedOptions: (value?: any) => any[];
|
3759
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3751
3760
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
3752
3761
|
removeSubFormItem: (item: {
|
3753
3762
|
id: string;
|
@@ -3818,7 +3827,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3818
3827
|
readonly valid: boolean;
|
3819
3828
|
readonly errClassNames: string;
|
3820
3829
|
readonly lastSelectValue: string;
|
3821
|
-
getSelectedOptions: (value?: any) => any[];
|
3830
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3822
3831
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
3823
3832
|
id: import("mobx-state-tree").ISimpleType<string>;
|
3824
3833
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -3885,7 +3894,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3885
3894
|
readonly valid: boolean;
|
3886
3895
|
readonly errClassNames: string;
|
3887
3896
|
readonly lastSelectValue: string;
|
3888
|
-
getSelectedOptions: (value?: any) => any[];
|
3897
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3889
3898
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
3890
3899
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
3891
3900
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -3953,7 +3962,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3953
3962
|
readonly valid: boolean;
|
3954
3963
|
readonly errClassNames: string;
|
3955
3964
|
readonly lastSelectValue: string;
|
3956
|
-
getSelectedOptions: (value?: any) => any[];
|
3965
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
3957
3966
|
} & {
|
3958
3967
|
focus: () => void;
|
3959
3968
|
blur: () => void;
|
@@ -3994,6 +4003,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
3994
4003
|
extendsOptions?: boolean | undefined;
|
3995
4004
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
3996
4005
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
4006
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
3997
4007
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
3998
4008
|
setLoading: (value: boolean) => void;
|
3999
4009
|
setSubStore: (store: any) => void;
|
@@ -4072,7 +4082,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4072
4082
|
readonly valid: boolean;
|
4073
4083
|
readonly errClassNames: string;
|
4074
4084
|
readonly lastSelectValue: string;
|
4075
|
-
getSelectedOptions: (value?: any) => any[];
|
4085
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4076
4086
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
4077
4087
|
id: import("mobx-state-tree").ISimpleType<string>;
|
4078
4088
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -4139,7 +4149,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4139
4149
|
readonly valid: boolean;
|
4140
4150
|
readonly errClassNames: string;
|
4141
4151
|
readonly lastSelectValue: string;
|
4142
|
-
getSelectedOptions: (value?: any) => any[];
|
4152
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4143
4153
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
4144
4154
|
removeSubFormItem: (item: {
|
4145
4155
|
id: string;
|
@@ -4210,7 +4220,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4210
4220
|
readonly valid: boolean;
|
4211
4221
|
readonly errClassNames: string;
|
4212
4222
|
readonly lastSelectValue: string;
|
4213
|
-
getSelectedOptions: (value?: any) => any[];
|
4223
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4214
4224
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
4215
4225
|
id: import("mobx-state-tree").ISimpleType<string>;
|
4216
4226
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -4277,7 +4287,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4277
4287
|
readonly valid: boolean;
|
4278
4288
|
readonly errClassNames: string;
|
4279
4289
|
readonly lastSelectValue: string;
|
4280
|
-
getSelectedOptions: (value?: any) => any[];
|
4290
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4281
4291
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
4282
4292
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
4283
4293
|
readonly errors: {
|
@@ -4354,7 +4364,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4354
4364
|
readonly valid: boolean;
|
4355
4365
|
readonly errClassNames: string;
|
4356
4366
|
readonly lastSelectValue: string;
|
4357
|
-
getSelectedOptions: (value?: any) => any[];
|
4367
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4358
4368
|
} & {
|
4359
4369
|
focus: () => void;
|
4360
4370
|
blur: () => void;
|
@@ -4395,6 +4405,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4395
4405
|
extendsOptions?: boolean | undefined;
|
4396
4406
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
4397
4407
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
4408
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
4398
4409
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
4399
4410
|
setLoading: (value: boolean) => void;
|
4400
4411
|
setSubStore: (store: any) => void;
|
@@ -4473,7 +4484,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4473
4484
|
readonly valid: boolean;
|
4474
4485
|
readonly errClassNames: string;
|
4475
4486
|
readonly lastSelectValue: string;
|
4476
|
-
getSelectedOptions: (value?: any) => any[];
|
4487
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4477
4488
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
4478
4489
|
id: import("mobx-state-tree").ISimpleType<string>;
|
4479
4490
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -4540,7 +4551,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4540
4551
|
readonly valid: boolean;
|
4541
4552
|
readonly errClassNames: string;
|
4542
4553
|
readonly lastSelectValue: string;
|
4543
|
-
getSelectedOptions: (value?: any) => any[];
|
4554
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4544
4555
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
4545
4556
|
removeSubFormItem: (item: {
|
4546
4557
|
id: string;
|
@@ -4611,7 +4622,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4611
4622
|
readonly valid: boolean;
|
4612
4623
|
readonly errClassNames: string;
|
4613
4624
|
readonly lastSelectValue: string;
|
4614
|
-
getSelectedOptions: (value?: any) => any[];
|
4625
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4615
4626
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
4616
4627
|
id: import("mobx-state-tree").ISimpleType<string>;
|
4617
4628
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -4678,7 +4689,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4678
4689
|
readonly valid: boolean;
|
4679
4690
|
readonly errClassNames: string;
|
4680
4691
|
readonly lastSelectValue: string;
|
4681
|
-
getSelectedOptions: (value?: any) => any[];
|
4692
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4682
4693
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
4683
4694
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
4684
4695
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -4746,7 +4757,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4746
4757
|
readonly valid: boolean;
|
4747
4758
|
readonly errClassNames: string;
|
4748
4759
|
readonly lastSelectValue: string;
|
4749
|
-
getSelectedOptions: (value?: any) => any[];
|
4760
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4750
4761
|
} & {
|
4751
4762
|
focus: () => void;
|
4752
4763
|
blur: () => void;
|
@@ -4787,6 +4798,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4787
4798
|
extendsOptions?: boolean | undefined;
|
4788
4799
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
4789
4800
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
4801
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
4790
4802
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
4791
4803
|
setLoading: (value: boolean) => void;
|
4792
4804
|
setSubStore: (store: any) => void;
|
@@ -4865,7 +4877,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4865
4877
|
readonly valid: boolean;
|
4866
4878
|
readonly errClassNames: string;
|
4867
4879
|
readonly lastSelectValue: string;
|
4868
|
-
getSelectedOptions: (value?: any) => any[];
|
4880
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4869
4881
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
4870
4882
|
id: import("mobx-state-tree").ISimpleType<string>;
|
4871
4883
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -4932,7 +4944,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
4932
4944
|
readonly valid: boolean;
|
4933
4945
|
readonly errClassNames: string;
|
4934
4946
|
readonly lastSelectValue: string;
|
4935
|
-
getSelectedOptions: (value?: any) => any[];
|
4947
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
4936
4948
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
4937
4949
|
removeSubFormItem: (item: {
|
4938
4950
|
id: string;
|
@@ -5003,7 +5015,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5003
5015
|
readonly valid: boolean;
|
5004
5016
|
readonly errClassNames: string;
|
5005
5017
|
readonly lastSelectValue: string;
|
5006
|
-
getSelectedOptions: (value?: any) => any[];
|
5018
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5007
5019
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
5008
5020
|
id: import("mobx-state-tree").ISimpleType<string>;
|
5009
5021
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -5070,7 +5082,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5070
5082
|
readonly valid: boolean;
|
5071
5083
|
readonly errClassNames: string;
|
5072
5084
|
readonly lastSelectValue: string;
|
5073
|
-
getSelectedOptions: (value?: any) => any[];
|
5085
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5074
5086
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
5075
5087
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
5076
5088
|
getItemByName(name: string): ({
|
@@ -5142,7 +5154,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5142
5154
|
readonly valid: boolean;
|
5143
5155
|
readonly errClassNames: string;
|
5144
5156
|
readonly lastSelectValue: string;
|
5145
|
-
getSelectedOptions: (value?: any) => any[];
|
5157
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5146
5158
|
} & {
|
5147
5159
|
focus: () => void;
|
5148
5160
|
blur: () => void;
|
@@ -5183,6 +5195,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5183
5195
|
extendsOptions?: boolean | undefined;
|
5184
5196
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
5185
5197
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
5198
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
5186
5199
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
5187
5200
|
setLoading: (value: boolean) => void;
|
5188
5201
|
setSubStore: (store: any) => void;
|
@@ -5261,7 +5274,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5261
5274
|
readonly valid: boolean;
|
5262
5275
|
readonly errClassNames: string;
|
5263
5276
|
readonly lastSelectValue: string;
|
5264
|
-
getSelectedOptions: (value?: any) => any[];
|
5277
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5265
5278
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
5266
5279
|
id: import("mobx-state-tree").ISimpleType<string>;
|
5267
5280
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -5328,7 +5341,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5328
5341
|
readonly valid: boolean;
|
5329
5342
|
readonly errClassNames: string;
|
5330
5343
|
readonly lastSelectValue: string;
|
5331
|
-
getSelectedOptions: (value?: any) => any[];
|
5344
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5332
5345
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
5333
5346
|
removeSubFormItem: (item: {
|
5334
5347
|
id: string;
|
@@ -5399,7 +5412,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5399
5412
|
readonly valid: boolean;
|
5400
5413
|
readonly errClassNames: string;
|
5401
5414
|
readonly lastSelectValue: string;
|
5402
|
-
getSelectedOptions: (value?: any) => any[];
|
5415
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5403
5416
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
5404
5417
|
id: import("mobx-state-tree").ISimpleType<string>;
|
5405
5418
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -5466,7 +5479,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5466
5479
|
readonly valid: boolean;
|
5467
5480
|
readonly errClassNames: string;
|
5468
5481
|
readonly lastSelectValue: string;
|
5469
|
-
getSelectedOptions: (value?: any) => any[];
|
5482
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5470
5483
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
5471
5484
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
5472
5485
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -5534,7 +5547,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5534
5547
|
readonly valid: boolean;
|
5535
5548
|
readonly errClassNames: string;
|
5536
5549
|
readonly lastSelectValue: string;
|
5537
|
-
getSelectedOptions: (value?: any) => any[];
|
5550
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5538
5551
|
} & {
|
5539
5552
|
focus: () => void;
|
5540
5553
|
blur: () => void;
|
@@ -5575,6 +5588,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5575
5588
|
extendsOptions?: boolean | undefined;
|
5576
5589
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
5577
5590
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
5591
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
5578
5592
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
5579
5593
|
setLoading: (value: boolean) => void;
|
5580
5594
|
setSubStore: (store: any) => void;
|
@@ -5653,7 +5667,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5653
5667
|
readonly valid: boolean;
|
5654
5668
|
readonly errClassNames: string;
|
5655
5669
|
readonly lastSelectValue: string;
|
5656
|
-
getSelectedOptions: (value?: any) => any[];
|
5670
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5657
5671
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
5658
5672
|
id: import("mobx-state-tree").ISimpleType<string>;
|
5659
5673
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -5720,7 +5734,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5720
5734
|
readonly valid: boolean;
|
5721
5735
|
readonly errClassNames: string;
|
5722
5736
|
readonly lastSelectValue: string;
|
5723
|
-
getSelectedOptions: (value?: any) => any[];
|
5737
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5724
5738
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
5725
5739
|
removeSubFormItem: (item: {
|
5726
5740
|
id: string;
|
@@ -5791,7 +5805,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5791
5805
|
readonly valid: boolean;
|
5792
5806
|
readonly errClassNames: string;
|
5793
5807
|
readonly lastSelectValue: string;
|
5794
|
-
getSelectedOptions: (value?: any) => any[];
|
5808
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5795
5809
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
5796
5810
|
id: import("mobx-state-tree").ISimpleType<string>;
|
5797
5811
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -5858,7 +5872,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5858
5872
|
readonly valid: boolean;
|
5859
5873
|
readonly errClassNames: string;
|
5860
5874
|
readonly lastSelectValue: string;
|
5861
|
-
getSelectedOptions: (value?: any) => any[];
|
5875
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5862
5876
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
5863
5877
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
5864
5878
|
getItemsByName(name: string): ({
|
@@ -5930,7 +5944,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5930
5944
|
readonly valid: boolean;
|
5931
5945
|
readonly errClassNames: string;
|
5932
5946
|
readonly lastSelectValue: string;
|
5933
|
-
getSelectedOptions: (value?: any) => any[];
|
5947
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
5934
5948
|
} & {
|
5935
5949
|
focus: () => void;
|
5936
5950
|
blur: () => void;
|
@@ -5971,6 +5985,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
5971
5985
|
extendsOptions?: boolean | undefined;
|
5972
5986
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
5973
5987
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
5988
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
5974
5989
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
5975
5990
|
setLoading: (value: boolean) => void;
|
5976
5991
|
setSubStore: (store: any) => void;
|
@@ -6049,7 +6064,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6049
6064
|
readonly valid: boolean;
|
6050
6065
|
readonly errClassNames: string;
|
6051
6066
|
readonly lastSelectValue: string;
|
6052
|
-
getSelectedOptions: (value?: any) => any[];
|
6067
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6053
6068
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
6054
6069
|
id: import("mobx-state-tree").ISimpleType<string>;
|
6055
6070
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -6116,7 +6131,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6116
6131
|
readonly valid: boolean;
|
6117
6132
|
readonly errClassNames: string;
|
6118
6133
|
readonly lastSelectValue: string;
|
6119
|
-
getSelectedOptions: (value?: any) => any[];
|
6134
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6120
6135
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
6121
6136
|
removeSubFormItem: (item: {
|
6122
6137
|
id: string;
|
@@ -6187,7 +6202,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6187
6202
|
readonly valid: boolean;
|
6188
6203
|
readonly errClassNames: string;
|
6189
6204
|
readonly lastSelectValue: string;
|
6190
|
-
getSelectedOptions: (value?: any) => any[];
|
6205
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6191
6206
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
6192
6207
|
id: import("mobx-state-tree").ISimpleType<string>;
|
6193
6208
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -6254,7 +6269,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6254
6269
|
readonly valid: boolean;
|
6255
6270
|
readonly errClassNames: string;
|
6256
6271
|
readonly lastSelectValue: string;
|
6257
|
-
getSelectedOptions: (value?: any) => any[];
|
6272
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6258
6273
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
6259
6274
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
6260
6275
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -6322,7 +6337,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6322
6337
|
readonly valid: boolean;
|
6323
6338
|
readonly errClassNames: string;
|
6324
6339
|
readonly lastSelectValue: string;
|
6325
|
-
getSelectedOptions: (value?: any) => any[];
|
6340
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6326
6341
|
} & {
|
6327
6342
|
focus: () => void;
|
6328
6343
|
blur: () => void;
|
@@ -6363,6 +6378,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6363
6378
|
extendsOptions?: boolean | undefined;
|
6364
6379
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
6365
6380
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
6381
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
6366
6382
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
6367
6383
|
setLoading: (value: boolean) => void;
|
6368
6384
|
setSubStore: (store: any) => void;
|
@@ -6441,7 +6457,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6441
6457
|
readonly valid: boolean;
|
6442
6458
|
readonly errClassNames: string;
|
6443
6459
|
readonly lastSelectValue: string;
|
6444
|
-
getSelectedOptions: (value?: any) => any[];
|
6460
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6445
6461
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
6446
6462
|
id: import("mobx-state-tree").ISimpleType<string>;
|
6447
6463
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -6508,7 +6524,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6508
6524
|
readonly valid: boolean;
|
6509
6525
|
readonly errClassNames: string;
|
6510
6526
|
readonly lastSelectValue: string;
|
6511
|
-
getSelectedOptions: (value?: any) => any[];
|
6527
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6512
6528
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
6513
6529
|
removeSubFormItem: (item: {
|
6514
6530
|
id: string;
|
@@ -6579,7 +6595,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6579
6595
|
readonly valid: boolean;
|
6580
6596
|
readonly errClassNames: string;
|
6581
6597
|
readonly lastSelectValue: string;
|
6582
|
-
getSelectedOptions: (value?: any) => any[];
|
6598
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6583
6599
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
6584
6600
|
id: import("mobx-state-tree").ISimpleType<string>;
|
6585
6601
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -6646,7 +6662,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6646
6662
|
readonly valid: boolean;
|
6647
6663
|
readonly errClassNames: string;
|
6648
6664
|
readonly lastSelectValue: string;
|
6649
|
-
getSelectedOptions: (value?: any) => any[];
|
6665
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6650
6666
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
6651
6667
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
6652
6668
|
readonly valid: boolean;
|
@@ -6752,7 +6768,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6752
6768
|
readonly valid: boolean;
|
6753
6769
|
readonly errClassNames: string;
|
6754
6770
|
readonly lastSelectValue: string;
|
6755
|
-
getSelectedOptions: (value?: any) => any[];
|
6771
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6756
6772
|
} & {
|
6757
6773
|
focus: () => void;
|
6758
6774
|
blur: () => void;
|
@@ -6793,6 +6809,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6793
6809
|
extendsOptions?: boolean | undefined;
|
6794
6810
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
6795
6811
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
6812
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
6796
6813
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
6797
6814
|
setLoading: (value: boolean) => void;
|
6798
6815
|
setSubStore: (store: any) => void;
|
@@ -6871,7 +6888,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6871
6888
|
readonly valid: boolean;
|
6872
6889
|
readonly errClassNames: string;
|
6873
6890
|
readonly lastSelectValue: string;
|
6874
|
-
getSelectedOptions: (value?: any) => any[];
|
6891
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6875
6892
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
6876
6893
|
id: import("mobx-state-tree").ISimpleType<string>;
|
6877
6894
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -6938,7 +6955,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
6938
6955
|
readonly valid: boolean;
|
6939
6956
|
readonly errClassNames: string;
|
6940
6957
|
readonly lastSelectValue: string;
|
6941
|
-
getSelectedOptions: (value?: any) => any[];
|
6958
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
6942
6959
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
6943
6960
|
removeSubFormItem: (item: {
|
6944
6961
|
id: string;
|
@@ -7009,7 +7026,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7009
7026
|
readonly valid: boolean;
|
7010
7027
|
readonly errClassNames: string;
|
7011
7028
|
readonly lastSelectValue: string;
|
7012
|
-
getSelectedOptions: (value?: any) => any[];
|
7029
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7013
7030
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
7014
7031
|
id: import("mobx-state-tree").ISimpleType<string>;
|
7015
7032
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -7076,7 +7093,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7076
7093
|
readonly valid: boolean;
|
7077
7094
|
readonly errClassNames: string;
|
7078
7095
|
readonly lastSelectValue: string;
|
7079
|
-
getSelectedOptions: (value?: any) => any[];
|
7096
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7080
7097
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
7081
7098
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
7082
7099
|
id: import("mobx-state-tree").ISimpleType<string>;
|
@@ -7144,7 +7161,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7144
7161
|
readonly valid: boolean;
|
7145
7162
|
readonly errClassNames: string;
|
7146
7163
|
readonly lastSelectValue: string;
|
7147
|
-
getSelectedOptions: (value?: any) => any[];
|
7164
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7148
7165
|
} & {
|
7149
7166
|
focus: () => void;
|
7150
7167
|
blur: () => void;
|
@@ -7185,6 +7202,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7185
7202
|
extendsOptions?: boolean | undefined;
|
7186
7203
|
}) | undefined, clearValue?: boolean | undefined, onChange?: ((value: any) => void) | undefined, setErrorFlag?: boolean | undefined) => Promise<import("../../types").Payload | null>;
|
7187
7204
|
deferLoadOptions: (option: any, api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<import("../../types").Payload | null>;
|
7205
|
+
expandTreeOptions: (nodePathArr: any[], api: import("../../types").Api, data?: object | undefined, config?: import("../../types").fetchOptions | undefined) => Promise<void | import("../../types").Payload | null>;
|
7188
7206
|
syncOptions: (originOptions?: any[] | undefined, data?: Object | undefined) => void;
|
7189
7207
|
setLoading: (value: boolean) => void;
|
7190
7208
|
setSubStore: (store: any) => void;
|
@@ -7263,7 +7281,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7263
7281
|
readonly valid: boolean;
|
7264
7282
|
readonly errClassNames: string;
|
7265
7283
|
readonly lastSelectValue: string;
|
7266
|
-
getSelectedOptions: (value?: any) => any[];
|
7284
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7267
7285
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
7268
7286
|
id: import("mobx-state-tree").ISimpleType<string>;
|
7269
7287
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -7330,7 +7348,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7330
7348
|
readonly valid: boolean;
|
7331
7349
|
readonly errClassNames: string;
|
7332
7350
|
readonly lastSelectValue: string;
|
7333
|
-
getSelectedOptions: (value?: any) => any[];
|
7351
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7334
7352
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
7335
7353
|
removeSubFormItem: (item: {
|
7336
7354
|
id: string;
|
@@ -7401,7 +7419,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7401
7419
|
readonly valid: boolean;
|
7402
7420
|
readonly errClassNames: string;
|
7403
7421
|
readonly lastSelectValue: string;
|
7404
|
-
getSelectedOptions: (value?: any) => any[];
|
7422
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7405
7423
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
7406
7424
|
id: import("mobx-state-tree").ISimpleType<string>;
|
7407
7425
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
@@ -7468,7 +7486,7 @@ export declare class EditorControlRenderer extends EditorControl {
|
|
7468
7486
|
readonly valid: boolean;
|
7469
7487
|
readonly errClassNames: string;
|
7470
7488
|
readonly lastSelectValue: string;
|
7471
|
-
getSelectedOptions: (value?: any) => any[];
|
7489
|
+
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any[];
|
7472
7490
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
7473
7491
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
7474
7492
|
formInited?: boolean | undefined;
|