amis-core 3.4.3 → 3.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.
- package/esm/Root.js +1 -1
- package/esm/RootRenderer.js +12 -2
- package/esm/SchemaRenderer.js +1 -1
- package/esm/Scoped.js +1 -1
- package/esm/StatusScoped.js +1 -1
- package/esm/WithRootStore.js +1 -1
- package/esm/WithStore.js +1 -1
- package/esm/actions/Action.js +1 -1
- package/esm/actions/AjaxAction.js +1 -1
- package/esm/actions/BreakAction.js +1 -1
- package/esm/actions/BroadcastAction.js +1 -1
- package/esm/actions/CmptAction.js +1 -1
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +1 -1
- package/esm/actions/DialogAction.js +1 -1
- package/esm/actions/DrawerAction.js +1 -1
- package/esm/actions/EmailAction.js +1 -1
- package/esm/actions/LinkAction.js +1 -1
- package/esm/actions/LoopAction.js +1 -1
- package/esm/actions/PageAction.js +1 -1
- package/esm/actions/ParallelAction.js +1 -1
- package/esm/actions/StatusAction.js +1 -1
- package/esm/actions/SwitchAction.js +1 -1
- package/esm/actions/ToastAction.js +1 -1
- package/esm/components/CustomStyle.js +9 -9
- package/esm/components/LazyComponent.js +1 -1
- package/esm/components/Overlay.js +1 -1
- package/esm/components/PopOver.js +1 -1
- package/esm/env.d.ts +11 -3
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.js +1 -3
- package/esm/index.js +4 -4
- package/esm/locale.js +1 -1
- package/esm/polyfills.js +1 -1
- package/esm/renderers/Form.js +3 -3
- package/esm/renderers/Item.d.ts +2 -6
- package/esm/renderers/Item.js +10 -16
- package/esm/renderers/Options.js +1 -1
- package/esm/renderers/Placeholder.js +1 -1
- package/esm/renderers/builtin.js +1 -1
- package/esm/renderers/register.js +1 -1
- package/esm/renderers/wrapControl.js +40 -21
- package/esm/store/app.js +6 -4
- package/esm/store/combo.d.ts +120 -0
- package/esm/store/combo.js +3 -2
- package/esm/store/crud.d.ts +13 -1
- package/esm/store/crud.js +94 -36
- package/esm/store/form.d.ts +50 -0
- package/esm/store/form.js +1 -1
- package/esm/store/formItem.d.ts +1 -0
- package/esm/store/formItem.js +17 -5
- package/esm/store/iRenderer.js +1 -1
- package/esm/store/index.js +1 -1
- package/esm/store/list.js +1 -1
- package/esm/store/manager.js +1 -1
- package/esm/store/modal.js +1 -1
- package/esm/store/node.js +1 -1
- package/esm/store/pagination.js +1 -1
- package/esm/store/root.js +1 -1
- package/esm/store/service.js +1 -1
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +418 -65
- package/esm/store/table.js +106 -72
- package/esm/store/table2.js +1 -1
- package/esm/theme.js +1 -1
- package/esm/types.d.ts +6 -0
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.js +1 -1
- package/esm/utils/DataScope.js +1 -1
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.js +2 -1
- package/esm/utils/arraySlice.js +1 -1
- package/esm/utils/attachmentAdpator.d.ts +2 -1
- package/esm/utils/attachmentAdpator.js +17 -11
- package/esm/utils/autobind.js +1 -1
- package/esm/utils/columnsSplit.js +1 -1
- package/esm/utils/dataMapping.js +1 -1
- package/esm/utils/date.js +1 -1
- package/esm/utils/debug.js +1 -1
- package/esm/utils/decodeEntity.js +1 -1
- package/esm/utils/dom.js +1 -1
- package/esm/utils/errors.js +1 -1
- package/esm/utils/escapeHtml.js +1 -1
- package/esm/utils/filter-schema.d.ts +8 -0
- package/esm/utils/filter-schema.js +23 -9
- package/esm/utils/filter.js +1 -1
- package/esm/utils/formatDuration.js +1 -1
- package/esm/utils/formula.js +1 -1
- package/esm/utils/getVariable.js +1 -1
- package/esm/utils/grammar.js +1 -1
- package/esm/utils/handleAction.js +2 -1
- package/esm/utils/helper.d.ts +13 -0
- package/esm/utils/helper.js +46 -4
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/isPureVariable.js +1 -1
- package/esm/utils/json-schema-2-amis-schema.js +1 -1
- package/esm/utils/keyToPath.js +1 -1
- package/esm/utils/makeSorter.js +1 -1
- package/esm/utils/math.js +1 -1
- package/esm/utils/memoryParse.js +1 -1
- package/esm/utils/normalizeLink.js +1 -1
- package/esm/utils/normalizeOptions.js +1 -1
- package/esm/utils/object.js +1 -1
- package/esm/utils/offset.js +1 -1
- package/esm/utils/offsetParent.js +1 -1
- package/esm/utils/optionValueCompare.js +1 -1
- package/esm/utils/position.js +1 -1
- package/esm/utils/prettyBytes.js +1 -1
- package/esm/utils/renderer-event.js +1 -1
- package/esm/utils/replaceText.d.ts +1 -1
- package/esm/utils/replaceText.js +9 -4
- package/esm/utils/resize-sensor.js +1 -1
- package/esm/utils/resolveCondition.js +1 -1
- package/esm/utils/resolveVariable.js +1 -1
- package/esm/utils/resolveVariableAndFilter.js +1 -1
- package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/esm/utils/scrollPosition.js +1 -1
- package/esm/utils/string2regExp.js +1 -1
- package/esm/utils/stripNumber.js +1 -1
- package/esm/utils/style-helper.js +3 -3
- package/esm/utils/style.js +1 -1
- package/esm/utils/toNumber.js +1 -1
- package/esm/utils/tokenize.js +1 -1
- package/esm/utils/tpl-builtin.js +1 -1
- package/esm/utils/tpl-lodash.js +1 -1
- package/esm/utils/tpl.js +1 -1
- package/esm/utils/uncontrollable.js +1 -1
- package/esm/utils/validations.js +1 -1
- package/lib/Root.js +1 -1
- package/lib/RootRenderer.js +12 -2
- package/lib/SchemaRenderer.js +1 -1
- package/lib/Scoped.js +1 -1
- package/lib/StatusScoped.js +1 -1
- package/lib/WithRootStore.js +1 -1
- package/lib/WithStore.js +1 -1
- package/lib/actions/Action.js +1 -1
- package/lib/actions/AjaxAction.js +1 -1
- package/lib/actions/BreakAction.js +1 -1
- package/lib/actions/BroadcastAction.js +1 -1
- package/lib/actions/CmptAction.js +1 -1
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +1 -1
- package/lib/actions/DialogAction.js +1 -1
- package/lib/actions/DrawerAction.js +1 -1
- package/lib/actions/EmailAction.js +1 -1
- package/lib/actions/LinkAction.js +1 -1
- package/lib/actions/LoopAction.js +1 -1
- package/lib/actions/PageAction.js +1 -1
- package/lib/actions/ParallelAction.js +1 -1
- package/lib/actions/StatusAction.js +1 -1
- package/lib/actions/SwitchAction.js +1 -1
- package/lib/actions/ToastAction.js +1 -1
- package/lib/components/CustomStyle.js +9 -9
- package/lib/components/LazyComponent.js +1 -1
- package/lib/components/Overlay.js +1 -1
- package/lib/components/PopOver.js +1 -1
- package/lib/env.d.ts +11 -3
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.js +1 -3
- package/lib/index.js +6 -2
- package/lib/locale.js +1 -1
- package/lib/polyfills.js +1 -1
- package/lib/renderers/Form.js +3 -3
- package/lib/renderers/Item.d.ts +3 -7
- package/lib/renderers/Item.js +10 -16
- package/lib/renderers/Options.js +1 -1
- package/lib/renderers/Placeholder.js +1 -1
- package/lib/renderers/builtin.js +1 -1
- package/lib/renderers/register.js +1 -1
- package/lib/renderers/wrapControl.js +40 -21
- package/lib/store/app.js +5 -3
- package/lib/store/combo.d.ts +120 -1
- package/lib/store/combo.js +3 -2
- package/lib/store/crud.d.ts +13 -1
- package/lib/store/crud.js +94 -36
- package/lib/store/form.d.ts +50 -0
- package/lib/store/form.js +1 -1
- package/lib/store/formItem.d.ts +1 -0
- package/lib/store/formItem.js +15 -3
- package/lib/store/iRenderer.js +1 -1
- package/lib/store/index.js +1 -1
- package/lib/store/list.js +1 -1
- package/lib/store/manager.js +1 -1
- package/lib/store/modal.js +1 -1
- package/lib/store/node.js +1 -1
- package/lib/store/pagination.js +1 -1
- package/lib/store/root.js +1 -1
- package/lib/store/service.js +1 -1
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +418 -66
- package/lib/store/table.js +104 -70
- package/lib/store/table2.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.d.ts +6 -0
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.js +1 -1
- package/lib/utils/DataScope.js +1 -1
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.js +2 -1
- package/lib/utils/arraySlice.js +1 -1
- package/lib/utils/attachmentAdpator.d.ts +2 -1
- package/lib/utils/attachmentAdpator.js +17 -11
- package/lib/utils/autobind.js +1 -1
- package/lib/utils/columnsSplit.js +1 -1
- package/lib/utils/dataMapping.js +1 -1
- package/lib/utils/date.js +1 -1
- package/lib/utils/debug.js +1 -1
- package/lib/utils/decodeEntity.js +1 -1
- package/lib/utils/dom.js +1 -1
- package/lib/utils/errors.js +1 -1
- package/lib/utils/escapeHtml.js +1 -1
- package/lib/utils/filter-schema.d.ts +8 -0
- package/lib/utils/filter-schema.js +22 -7
- package/lib/utils/filter.js +1 -1
- package/lib/utils/formatDuration.js +1 -1
- package/lib/utils/formula.js +1 -1
- package/lib/utils/getVariable.js +1 -1
- package/lib/utils/grammar.js +1 -1
- package/lib/utils/handleAction.js +2 -1
- package/lib/utils/helper.d.ts +13 -0
- package/lib/utils/helper.js +48 -3
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/isPureVariable.js +1 -1
- package/lib/utils/json-schema-2-amis-schema.js +1 -1
- package/lib/utils/keyToPath.js +1 -1
- package/lib/utils/makeSorter.js +1 -1
- package/lib/utils/math.js +1 -1
- package/lib/utils/memoryParse.js +1 -1
- package/lib/utils/normalizeLink.js +1 -1
- package/lib/utils/normalizeOptions.js +1 -1
- package/lib/utils/object.js +1 -1
- package/lib/utils/offset.js +1 -1
- package/lib/utils/offsetParent.js +1 -1
- package/lib/utils/optionValueCompare.js +1 -1
- package/lib/utils/position.js +1 -1
- package/lib/utils/prettyBytes.js +1 -1
- package/lib/utils/renderer-event.js +1 -1
- package/lib/utils/replaceText.d.ts +1 -1
- package/lib/utils/replaceText.js +9 -4
- package/lib/utils/resize-sensor.js +1 -1
- package/lib/utils/resolveCondition.js +1 -1
- package/lib/utils/resolveVariable.js +1 -1
- package/lib/utils/resolveVariableAndFilter.js +1 -1
- package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/lib/utils/scrollPosition.js +1 -1
- package/lib/utils/string2regExp.js +1 -1
- package/lib/utils/stripNumber.js +1 -1
- package/lib/utils/style-helper.js +3 -3
- package/lib/utils/style.js +1 -1
- package/lib/utils/toNumber.js +1 -1
- package/lib/utils/tokenize.js +1 -1
- package/lib/utils/tpl-builtin.js +1 -1
- package/lib/utils/tpl-lodash.js +1 -1
- package/lib/utils/tpl.js +1 -1
- package/lib/utils/uncontrollable.js +1 -1
- package/lib/utils/validations.js +1 -1
- package/package.json +4 -3
package/esm/store/combo.d.ts
CHANGED
|
@@ -85,6 +85,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
85
85
|
readonly lastSelectValue: string;
|
|
86
86
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
87
87
|
splitExtraValue(value: any): any[];
|
|
88
|
+
getMergedData(data: any): any;
|
|
88
89
|
} & {
|
|
89
90
|
focus: () => void;
|
|
90
91
|
blur: () => void;
|
|
@@ -228,6 +229,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
228
229
|
readonly lastSelectValue: string;
|
|
229
230
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
230
231
|
splitExtraValue(value: any): any[];
|
|
232
|
+
getMergedData(data: any): any;
|
|
231
233
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
232
234
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
233
235
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -305,6 +307,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
305
307
|
readonly lastSelectValue: string;
|
|
306
308
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
307
309
|
splitExtraValue(value: any): any[];
|
|
310
|
+
getMergedData(data: any): any;
|
|
308
311
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
309
312
|
removeSubFormItem: (item: {
|
|
310
313
|
id: string;
|
|
@@ -386,6 +389,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
386
389
|
readonly lastSelectValue: string;
|
|
387
390
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
388
391
|
splitExtraValue(value: any): any[];
|
|
392
|
+
getMergedData(data: any): any;
|
|
389
393
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
390
394
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
391
395
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -463,6 +467,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
463
467
|
readonly lastSelectValue: string;
|
|
464
468
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
465
469
|
splitExtraValue(value: any): any[];
|
|
470
|
+
getMergedData(data: any): any;
|
|
466
471
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
467
472
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
468
473
|
setIsControlled: (value: any) => void;
|
|
@@ -543,6 +548,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
543
548
|
readonly lastSelectValue: string;
|
|
544
549
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
545
550
|
splitExtraValue(value: any): any[];
|
|
551
|
+
getMergedData(data: any): any;
|
|
546
552
|
} & {
|
|
547
553
|
focus: () => void;
|
|
548
554
|
blur: () => void;
|
|
@@ -686,6 +692,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
686
692
|
readonly lastSelectValue: string;
|
|
687
693
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
688
694
|
splitExtraValue(value: any): any[];
|
|
695
|
+
getMergedData(data: any): any;
|
|
689
696
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
690
697
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
691
698
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -763,6 +770,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
763
770
|
readonly lastSelectValue: string;
|
|
764
771
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
765
772
|
splitExtraValue(value: any): any[];
|
|
773
|
+
getMergedData(data: any): any;
|
|
766
774
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
767
775
|
removeSubFormItem: (item: {
|
|
768
776
|
id: string;
|
|
@@ -844,6 +852,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
844
852
|
readonly lastSelectValue: string;
|
|
845
853
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
846
854
|
splitExtraValue(value: any): any[];
|
|
855
|
+
getMergedData(data: any): any;
|
|
847
856
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
848
857
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
849
858
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -921,6 +930,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
921
930
|
readonly lastSelectValue: string;
|
|
922
931
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
923
932
|
splitExtraValue(value: any): any[];
|
|
933
|
+
getMergedData(data: any): any;
|
|
924
934
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
925
935
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
926
936
|
setIsControlled: (value: any) => void;
|
|
@@ -1033,6 +1043,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1033
1043
|
readonly lastSelectValue: string;
|
|
1034
1044
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1035
1045
|
splitExtraValue(value: any): any[];
|
|
1046
|
+
getMergedData(data: any): any;
|
|
1036
1047
|
} & {
|
|
1037
1048
|
focus: () => void;
|
|
1038
1049
|
blur: () => void;
|
|
@@ -1176,6 +1187,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1176
1187
|
readonly lastSelectValue: string;
|
|
1177
1188
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1178
1189
|
splitExtraValue(value: any): any[];
|
|
1190
|
+
getMergedData(data: any): any;
|
|
1179
1191
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1180
1192
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1181
1193
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1253,6 +1265,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1253
1265
|
readonly lastSelectValue: string;
|
|
1254
1266
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1255
1267
|
splitExtraValue(value: any): any[];
|
|
1268
|
+
getMergedData(data: any): any;
|
|
1256
1269
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1257
1270
|
removeSubFormItem: (item: {
|
|
1258
1271
|
id: string;
|
|
@@ -1334,6 +1347,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1334
1347
|
readonly lastSelectValue: string;
|
|
1335
1348
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1336
1349
|
splitExtraValue(value: any): any[];
|
|
1350
|
+
getMergedData(data: any): any;
|
|
1337
1351
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1338
1352
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1339
1353
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1411,6 +1425,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1411
1425
|
readonly lastSelectValue: string;
|
|
1412
1426
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1413
1427
|
splitExtraValue(value: any): any[];
|
|
1428
|
+
getMergedData(data: any): any;
|
|
1414
1429
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1415
1430
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
1416
1431
|
setIsControlled: (value: any) => void;
|
|
@@ -1491,6 +1506,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1491
1506
|
readonly lastSelectValue: string;
|
|
1492
1507
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1493
1508
|
splitExtraValue(value: any): any[];
|
|
1509
|
+
getMergedData(data: any): any;
|
|
1494
1510
|
} & {
|
|
1495
1511
|
focus: () => void;
|
|
1496
1512
|
blur: () => void;
|
|
@@ -1634,6 +1650,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1634
1650
|
readonly lastSelectValue: string;
|
|
1635
1651
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1636
1652
|
splitExtraValue(value: any): any[];
|
|
1653
|
+
getMergedData(data: any): any;
|
|
1637
1654
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1638
1655
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1639
1656
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1711,6 +1728,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1711
1728
|
readonly lastSelectValue: string;
|
|
1712
1729
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1713
1730
|
splitExtraValue(value: any): any[];
|
|
1731
|
+
getMergedData(data: any): any;
|
|
1714
1732
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1715
1733
|
removeSubFormItem: (item: {
|
|
1716
1734
|
id: string;
|
|
@@ -1792,6 +1810,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1792
1810
|
readonly lastSelectValue: string;
|
|
1793
1811
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1794
1812
|
splitExtraValue(value: any): any[];
|
|
1813
|
+
getMergedData(data: any): any;
|
|
1795
1814
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1796
1815
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1797
1816
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1869,6 +1888,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1869
1888
|
readonly lastSelectValue: string;
|
|
1870
1889
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1871
1890
|
splitExtraValue(value: any): any[];
|
|
1891
|
+
getMergedData(data: any): any;
|
|
1872
1892
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1873
1893
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
1874
1894
|
setIsControlled: (value: any) => void;
|
|
@@ -2069,6 +2089,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2069
2089
|
readonly lastSelectValue: string;
|
|
2070
2090
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2071
2091
|
splitExtraValue(value: any): any[];
|
|
2092
|
+
getMergedData(data: any): any;
|
|
2072
2093
|
} & {
|
|
2073
2094
|
focus: () => void;
|
|
2074
2095
|
blur: () => void;
|
|
@@ -2212,6 +2233,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2212
2233
|
readonly lastSelectValue: string;
|
|
2213
2234
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2214
2235
|
splitExtraValue(value: any): any[];
|
|
2236
|
+
getMergedData(data: any): any;
|
|
2215
2237
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2216
2238
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2217
2239
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2289,6 +2311,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2289
2311
|
readonly lastSelectValue: string;
|
|
2290
2312
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2291
2313
|
splitExtraValue(value: any): any[];
|
|
2314
|
+
getMergedData(data: any): any;
|
|
2292
2315
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2293
2316
|
removeSubFormItem: (item: {
|
|
2294
2317
|
id: string;
|
|
@@ -2370,6 +2393,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2370
2393
|
readonly lastSelectValue: string;
|
|
2371
2394
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2372
2395
|
splitExtraValue(value: any): any[];
|
|
2396
|
+
getMergedData(data: any): any;
|
|
2373
2397
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2374
2398
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2375
2399
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2447,6 +2471,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2447
2471
|
readonly lastSelectValue: string;
|
|
2448
2472
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2449
2473
|
splitExtraValue(value: any): any[];
|
|
2474
|
+
getMergedData(data: any): any;
|
|
2450
2475
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2451
2476
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
2452
2477
|
setIsControlled: (value: any) => void;
|
|
@@ -2527,6 +2552,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2527
2552
|
readonly lastSelectValue: string;
|
|
2528
2553
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2529
2554
|
splitExtraValue(value: any): any[];
|
|
2555
|
+
getMergedData(data: any): any;
|
|
2530
2556
|
} & {
|
|
2531
2557
|
focus: () => void;
|
|
2532
2558
|
blur: () => void;
|
|
@@ -2670,6 +2696,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2670
2696
|
readonly lastSelectValue: string;
|
|
2671
2697
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2672
2698
|
splitExtraValue(value: any): any[];
|
|
2699
|
+
getMergedData(data: any): any;
|
|
2673
2700
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2674
2701
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2675
2702
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2747,6 +2774,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2747
2774
|
readonly lastSelectValue: string;
|
|
2748
2775
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2749
2776
|
splitExtraValue(value: any): any[];
|
|
2777
|
+
getMergedData(data: any): any;
|
|
2750
2778
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2751
2779
|
removeSubFormItem: (item: {
|
|
2752
2780
|
id: string;
|
|
@@ -2828,6 +2856,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2828
2856
|
readonly lastSelectValue: string;
|
|
2829
2857
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2830
2858
|
splitExtraValue(value: any): any[];
|
|
2859
|
+
getMergedData(data: any): any;
|
|
2831
2860
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2832
2861
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2833
2862
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2905,6 +2934,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2905
2934
|
readonly lastSelectValue: string;
|
|
2906
2935
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2907
2936
|
splitExtraValue(value: any): any[];
|
|
2937
|
+
getMergedData(data: any): any;
|
|
2908
2938
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2909
2939
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
2910
2940
|
setIsControlled: (value: any) => void;
|
|
@@ -2989,6 +3019,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2989
3019
|
readonly lastSelectValue: string;
|
|
2990
3020
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2991
3021
|
splitExtraValue(value: any): any[];
|
|
3022
|
+
getMergedData(data: any): any;
|
|
2992
3023
|
} & {
|
|
2993
3024
|
focus: () => void;
|
|
2994
3025
|
blur: () => void;
|
|
@@ -3132,6 +3163,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3132
3163
|
readonly lastSelectValue: string;
|
|
3133
3164
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3134
3165
|
splitExtraValue(value: any): any[];
|
|
3166
|
+
getMergedData(data: any): any;
|
|
3135
3167
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3136
3168
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3137
3169
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3209,6 +3241,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3209
3241
|
readonly lastSelectValue: string;
|
|
3210
3242
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3211
3243
|
splitExtraValue(value: any): any[];
|
|
3244
|
+
getMergedData(data: any): any;
|
|
3212
3245
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3213
3246
|
removeSubFormItem: (item: {
|
|
3214
3247
|
id: string;
|
|
@@ -3290,6 +3323,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3290
3323
|
readonly lastSelectValue: string;
|
|
3291
3324
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3292
3325
|
splitExtraValue(value: any): any[];
|
|
3326
|
+
getMergedData(data: any): any;
|
|
3293
3327
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3294
3328
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3295
3329
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3367,6 +3401,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3367
3401
|
readonly lastSelectValue: string;
|
|
3368
3402
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3369
3403
|
splitExtraValue(value: any): any[];
|
|
3404
|
+
getMergedData(data: any): any;
|
|
3370
3405
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3371
3406
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
3372
3407
|
setIsControlled: (value: any) => void;
|
|
@@ -3447,6 +3482,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3447
3482
|
readonly lastSelectValue: string;
|
|
3448
3483
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3449
3484
|
splitExtraValue(value: any): any[];
|
|
3485
|
+
getMergedData(data: any): any;
|
|
3450
3486
|
} & {
|
|
3451
3487
|
focus: () => void;
|
|
3452
3488
|
blur: () => void;
|
|
@@ -3590,6 +3626,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3590
3626
|
readonly lastSelectValue: string;
|
|
3591
3627
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3592
3628
|
splitExtraValue(value: any): any[];
|
|
3629
|
+
getMergedData(data: any): any;
|
|
3593
3630
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3594
3631
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3595
3632
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3667,6 +3704,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3667
3704
|
readonly lastSelectValue: string;
|
|
3668
3705
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3669
3706
|
splitExtraValue(value: any): any[];
|
|
3707
|
+
getMergedData(data: any): any;
|
|
3670
3708
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3671
3709
|
removeSubFormItem: (item: {
|
|
3672
3710
|
id: string;
|
|
@@ -3748,6 +3786,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3748
3786
|
readonly lastSelectValue: string;
|
|
3749
3787
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3750
3788
|
splitExtraValue(value: any): any[];
|
|
3789
|
+
getMergedData(data: any): any;
|
|
3751
3790
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3752
3791
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3753
3792
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3825,6 +3864,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3825
3864
|
readonly lastSelectValue: string;
|
|
3826
3865
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3827
3866
|
splitExtraValue(value: any): any[];
|
|
3867
|
+
getMergedData(data: any): any;
|
|
3828
3868
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3829
3869
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
3830
3870
|
setIsControlled: (value: any) => void;
|
|
@@ -3914,6 +3954,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3914
3954
|
readonly lastSelectValue: string;
|
|
3915
3955
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3916
3956
|
splitExtraValue(value: any): any[];
|
|
3957
|
+
getMergedData(data: any): any;
|
|
3917
3958
|
} & {
|
|
3918
3959
|
focus: () => void;
|
|
3919
3960
|
blur: () => void;
|
|
@@ -4057,6 +4098,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4057
4098
|
readonly lastSelectValue: string;
|
|
4058
4099
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4059
4100
|
splitExtraValue(value: any): any[];
|
|
4101
|
+
getMergedData(data: any): any;
|
|
4060
4102
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4061
4103
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4062
4104
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4134,6 +4176,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4134
4176
|
readonly lastSelectValue: string;
|
|
4135
4177
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4136
4178
|
splitExtraValue(value: any): any[];
|
|
4179
|
+
getMergedData(data: any): any;
|
|
4137
4180
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4138
4181
|
removeSubFormItem: (item: {
|
|
4139
4182
|
id: string;
|
|
@@ -4215,6 +4258,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4215
4258
|
readonly lastSelectValue: string;
|
|
4216
4259
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4217
4260
|
splitExtraValue(value: any): any[];
|
|
4261
|
+
getMergedData(data: any): any;
|
|
4218
4262
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4219
4263
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4220
4264
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4292,6 +4336,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4292
4336
|
readonly lastSelectValue: string;
|
|
4293
4337
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4294
4338
|
splitExtraValue(value: any): any[];
|
|
4339
|
+
getMergedData(data: any): any;
|
|
4295
4340
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4296
4341
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
4297
4342
|
setIsControlled: (value: any) => void;
|
|
@@ -4372,6 +4417,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4372
4417
|
readonly lastSelectValue: string;
|
|
4373
4418
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4374
4419
|
splitExtraValue(value: any): any[];
|
|
4420
|
+
getMergedData(data: any): any;
|
|
4375
4421
|
} & {
|
|
4376
4422
|
focus: () => void;
|
|
4377
4423
|
blur: () => void;
|
|
@@ -4515,6 +4561,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4515
4561
|
readonly lastSelectValue: string;
|
|
4516
4562
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4517
4563
|
splitExtraValue(value: any): any[];
|
|
4564
|
+
getMergedData(data: any): any;
|
|
4518
4565
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4519
4566
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4520
4567
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4592,6 +4639,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4592
4639
|
readonly lastSelectValue: string;
|
|
4593
4640
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4594
4641
|
splitExtraValue(value: any): any[];
|
|
4642
|
+
getMergedData(data: any): any;
|
|
4595
4643
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4596
4644
|
removeSubFormItem: (item: {
|
|
4597
4645
|
id: string;
|
|
@@ -4673,6 +4721,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4673
4721
|
readonly lastSelectValue: string;
|
|
4674
4722
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4675
4723
|
splitExtraValue(value: any): any[];
|
|
4724
|
+
getMergedData(data: any): any;
|
|
4676
4725
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4677
4726
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4678
4727
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4750,6 +4799,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4750
4799
|
readonly lastSelectValue: string;
|
|
4751
4800
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4752
4801
|
splitExtraValue(value: any): any[];
|
|
4802
|
+
getMergedData(data: any): any;
|
|
4753
4803
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4754
4804
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
4755
4805
|
setIsControlled: (value: any) => void;
|
|
@@ -4834,6 +4884,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4834
4884
|
readonly lastSelectValue: string;
|
|
4835
4885
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4836
4886
|
splitExtraValue(value: any): any[];
|
|
4887
|
+
getMergedData(data: any): any;
|
|
4837
4888
|
} & {
|
|
4838
4889
|
focus: () => void;
|
|
4839
4890
|
blur: () => void;
|
|
@@ -4977,6 +5028,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4977
5028
|
readonly lastSelectValue: string;
|
|
4978
5029
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4979
5030
|
splitExtraValue(value: any): any[];
|
|
5031
|
+
getMergedData(data: any): any;
|
|
4980
5032
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4981
5033
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4982
5034
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5054,6 +5106,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5054
5106
|
readonly lastSelectValue: string;
|
|
5055
5107
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5056
5108
|
splitExtraValue(value: any): any[];
|
|
5109
|
+
getMergedData(data: any): any;
|
|
5057
5110
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5058
5111
|
removeSubFormItem: (item: {
|
|
5059
5112
|
id: string;
|
|
@@ -5135,6 +5188,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5135
5188
|
readonly lastSelectValue: string;
|
|
5136
5189
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5137
5190
|
splitExtraValue(value: any): any[];
|
|
5191
|
+
getMergedData(data: any): any;
|
|
5138
5192
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5139
5193
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5140
5194
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5212,6 +5266,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5212
5266
|
readonly lastSelectValue: string;
|
|
5213
5267
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5214
5268
|
splitExtraValue(value: any): any[];
|
|
5269
|
+
getMergedData(data: any): any;
|
|
5215
5270
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5216
5271
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
5217
5272
|
setIsControlled: (value: any) => void;
|
|
@@ -5292,6 +5347,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5292
5347
|
readonly lastSelectValue: string;
|
|
5293
5348
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5294
5349
|
splitExtraValue(value: any): any[];
|
|
5350
|
+
getMergedData(data: any): any;
|
|
5295
5351
|
} & {
|
|
5296
5352
|
focus: () => void;
|
|
5297
5353
|
blur: () => void;
|
|
@@ -5435,6 +5491,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5435
5491
|
readonly lastSelectValue: string;
|
|
5436
5492
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5437
5493
|
splitExtraValue(value: any): any[];
|
|
5494
|
+
getMergedData(data: any): any;
|
|
5438
5495
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5439
5496
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5440
5497
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5512,6 +5569,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5512
5569
|
readonly lastSelectValue: string;
|
|
5513
5570
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5514
5571
|
splitExtraValue(value: any): any[];
|
|
5572
|
+
getMergedData(data: any): any;
|
|
5515
5573
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5516
5574
|
removeSubFormItem: (item: {
|
|
5517
5575
|
id: string;
|
|
@@ -5593,6 +5651,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5593
5651
|
readonly lastSelectValue: string;
|
|
5594
5652
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5595
5653
|
splitExtraValue(value: any): any[];
|
|
5654
|
+
getMergedData(data: any): any;
|
|
5596
5655
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5597
5656
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5598
5657
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5670,6 +5729,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5670
5729
|
readonly lastSelectValue: string;
|
|
5671
5730
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5672
5731
|
splitExtraValue(value: any): any[];
|
|
5732
|
+
getMergedData(data: any): any;
|
|
5673
5733
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5674
5734
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
5675
5735
|
setIsControlled: (value: any) => void;
|
|
@@ -5754,6 +5814,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5754
5814
|
readonly lastSelectValue: string;
|
|
5755
5815
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5756
5816
|
splitExtraValue(value: any): any[];
|
|
5817
|
+
getMergedData(data: any): any;
|
|
5757
5818
|
} & {
|
|
5758
5819
|
focus: () => void;
|
|
5759
5820
|
blur: () => void;
|
|
@@ -5897,6 +5958,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5897
5958
|
readonly lastSelectValue: string;
|
|
5898
5959
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5899
5960
|
splitExtraValue(value: any): any[];
|
|
5961
|
+
getMergedData(data: any): any;
|
|
5900
5962
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5901
5963
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5902
5964
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5974,6 +6036,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5974
6036
|
readonly lastSelectValue: string;
|
|
5975
6037
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5976
6038
|
splitExtraValue(value: any): any[];
|
|
6039
|
+
getMergedData(data: any): any;
|
|
5977
6040
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5978
6041
|
removeSubFormItem: (item: {
|
|
5979
6042
|
id: string;
|
|
@@ -6055,6 +6118,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6055
6118
|
readonly lastSelectValue: string;
|
|
6056
6119
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6057
6120
|
splitExtraValue(value: any): any[];
|
|
6121
|
+
getMergedData(data: any): any;
|
|
6058
6122
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6059
6123
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6060
6124
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -6132,6 +6196,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6132
6196
|
readonly lastSelectValue: string;
|
|
6133
6197
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6134
6198
|
splitExtraValue(value: any): any[];
|
|
6199
|
+
getMergedData(data: any): any;
|
|
6135
6200
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
6136
6201
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
6137
6202
|
setIsControlled: (value: any) => void;
|
|
@@ -6212,6 +6277,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6212
6277
|
readonly lastSelectValue: string;
|
|
6213
6278
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6214
6279
|
splitExtraValue(value: any): any[];
|
|
6280
|
+
getMergedData(data: any): any;
|
|
6215
6281
|
} & {
|
|
6216
6282
|
focus: () => void;
|
|
6217
6283
|
blur: () => void;
|
|
@@ -6355,6 +6421,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6355
6421
|
readonly lastSelectValue: string;
|
|
6356
6422
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6357
6423
|
splitExtraValue(value: any): any[];
|
|
6424
|
+
getMergedData(data: any): any;
|
|
6358
6425
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6359
6426
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6360
6427
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -6432,6 +6499,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6432
6499
|
readonly lastSelectValue: string;
|
|
6433
6500
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6434
6501
|
splitExtraValue(value: any): any[];
|
|
6502
|
+
getMergedData(data: any): any;
|
|
6435
6503
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
6436
6504
|
removeSubFormItem: (item: {
|
|
6437
6505
|
id: string;
|
|
@@ -6513,6 +6581,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6513
6581
|
readonly lastSelectValue: string;
|
|
6514
6582
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6515
6583
|
splitExtraValue(value: any): any[];
|
|
6584
|
+
getMergedData(data: any): any;
|
|
6516
6585
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6517
6586
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6518
6587
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -6590,6 +6659,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6590
6659
|
readonly lastSelectValue: string;
|
|
6591
6660
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6592
6661
|
splitExtraValue(value: any): any[];
|
|
6662
|
+
getMergedData(data: any): any;
|
|
6593
6663
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
6594
6664
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
6595
6665
|
setIsControlled: (value: any) => void;
|
|
@@ -6793,6 +6863,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6793
6863
|
readonly lastSelectValue: string;
|
|
6794
6864
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6795
6865
|
splitExtraValue(value: any): any[];
|
|
6866
|
+
getMergedData(data: any): any;
|
|
6796
6867
|
} & {
|
|
6797
6868
|
focus: () => void;
|
|
6798
6869
|
blur: () => void;
|
|
@@ -6936,6 +7007,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6936
7007
|
readonly lastSelectValue: string;
|
|
6937
7008
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6938
7009
|
splitExtraValue(value: any): any[];
|
|
7010
|
+
getMergedData(data: any): any;
|
|
6939
7011
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6940
7012
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6941
7013
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7013,6 +7085,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7013
7085
|
readonly lastSelectValue: string;
|
|
7014
7086
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7015
7087
|
splitExtraValue(value: any): any[];
|
|
7088
|
+
getMergedData(data: any): any;
|
|
7016
7089
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7017
7090
|
removeSubFormItem: (item: {
|
|
7018
7091
|
id: string;
|
|
@@ -7094,6 +7167,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7094
7167
|
readonly lastSelectValue: string;
|
|
7095
7168
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7096
7169
|
splitExtraValue(value: any): any[];
|
|
7170
|
+
getMergedData(data: any): any;
|
|
7097
7171
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7098
7172
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7099
7173
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7171,6 +7245,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7171
7245
|
readonly lastSelectValue: string;
|
|
7172
7246
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7173
7247
|
splitExtraValue(value: any): any[];
|
|
7248
|
+
getMergedData(data: any): any;
|
|
7174
7249
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7175
7250
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
7176
7251
|
setIsControlled: (value: any) => void;
|
|
@@ -7251,6 +7326,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7251
7326
|
readonly lastSelectValue: string;
|
|
7252
7327
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7253
7328
|
splitExtraValue(value: any): any[];
|
|
7329
|
+
getMergedData(data: any): any;
|
|
7254
7330
|
} & {
|
|
7255
7331
|
focus: () => void;
|
|
7256
7332
|
blur: () => void;
|
|
@@ -7394,6 +7470,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7394
7470
|
readonly lastSelectValue: string;
|
|
7395
7471
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7396
7472
|
splitExtraValue(value: any): any[];
|
|
7473
|
+
getMergedData(data: any): any;
|
|
7397
7474
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7398
7475
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7399
7476
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7471,6 +7548,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7471
7548
|
readonly lastSelectValue: string;
|
|
7472
7549
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7473
7550
|
splitExtraValue(value: any): any[];
|
|
7551
|
+
getMergedData(data: any): any;
|
|
7474
7552
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7475
7553
|
removeSubFormItem: (item: {
|
|
7476
7554
|
id: string;
|
|
@@ -7552,6 +7630,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7552
7630
|
readonly lastSelectValue: string;
|
|
7553
7631
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7554
7632
|
splitExtraValue(value: any): any[];
|
|
7633
|
+
getMergedData(data: any): any;
|
|
7555
7634
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7556
7635
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7557
7636
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7629,6 +7708,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7629
7708
|
readonly lastSelectValue: string;
|
|
7630
7709
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7631
7710
|
splitExtraValue(value: any): any[];
|
|
7711
|
+
getMergedData(data: any): any;
|
|
7632
7712
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7633
7713
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
7634
7714
|
setIsControlled: (value: any) => void;
|
|
@@ -7713,6 +7793,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7713
7793
|
readonly lastSelectValue: string;
|
|
7714
7794
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7715
7795
|
splitExtraValue(value: any): any[];
|
|
7796
|
+
getMergedData(data: any): any;
|
|
7716
7797
|
} & {
|
|
7717
7798
|
focus: () => void;
|
|
7718
7799
|
blur: () => void;
|
|
@@ -7856,6 +7937,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7856
7937
|
readonly lastSelectValue: string;
|
|
7857
7938
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7858
7939
|
splitExtraValue(value: any): any[];
|
|
7940
|
+
getMergedData(data: any): any;
|
|
7859
7941
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7860
7942
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7861
7943
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7933,6 +8015,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7933
8015
|
readonly lastSelectValue: string;
|
|
7934
8016
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7935
8017
|
splitExtraValue(value: any): any[];
|
|
8018
|
+
getMergedData(data: any): any;
|
|
7936
8019
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7937
8020
|
removeSubFormItem: (item: {
|
|
7938
8021
|
id: string;
|
|
@@ -8014,6 +8097,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8014
8097
|
readonly lastSelectValue: string;
|
|
8015
8098
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8016
8099
|
splitExtraValue(value: any): any[];
|
|
8100
|
+
getMergedData(data: any): any;
|
|
8017
8101
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8018
8102
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8019
8103
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8091,6 +8175,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8091
8175
|
readonly lastSelectValue: string;
|
|
8092
8176
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8093
8177
|
splitExtraValue(value: any): any[];
|
|
8178
|
+
getMergedData(data: any): any;
|
|
8094
8179
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8095
8180
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
8096
8181
|
setIsControlled: (value: any) => void;
|
|
@@ -8171,6 +8256,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8171
8256
|
readonly lastSelectValue: string;
|
|
8172
8257
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8173
8258
|
splitExtraValue(value: any): any[];
|
|
8259
|
+
getMergedData(data: any): any;
|
|
8174
8260
|
} & {
|
|
8175
8261
|
focus: () => void;
|
|
8176
8262
|
blur: () => void;
|
|
@@ -8314,6 +8400,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8314
8400
|
readonly lastSelectValue: string;
|
|
8315
8401
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8316
8402
|
splitExtraValue(value: any): any[];
|
|
8403
|
+
getMergedData(data: any): any;
|
|
8317
8404
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8318
8405
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8319
8406
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8391,6 +8478,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8391
8478
|
readonly lastSelectValue: string;
|
|
8392
8479
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8393
8480
|
splitExtraValue(value: any): any[];
|
|
8481
|
+
getMergedData(data: any): any;
|
|
8394
8482
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8395
8483
|
removeSubFormItem: (item: {
|
|
8396
8484
|
id: string;
|
|
@@ -8472,6 +8560,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8472
8560
|
readonly lastSelectValue: string;
|
|
8473
8561
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8474
8562
|
splitExtraValue(value: any): any[];
|
|
8563
|
+
getMergedData(data: any): any;
|
|
8475
8564
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8476
8565
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8477
8566
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8549,6 +8638,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8549
8638
|
readonly lastSelectValue: string;
|
|
8550
8639
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8551
8640
|
splitExtraValue(value: any): any[];
|
|
8641
|
+
getMergedData(data: any): any;
|
|
8552
8642
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8553
8643
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
8554
8644
|
setIsControlled: (value: any) => void;
|
|
@@ -8638,6 +8728,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8638
8728
|
readonly lastSelectValue: string;
|
|
8639
8729
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8640
8730
|
splitExtraValue(value: any): any[];
|
|
8731
|
+
getMergedData(data: any): any;
|
|
8641
8732
|
} & {
|
|
8642
8733
|
focus: () => void;
|
|
8643
8734
|
blur: () => void;
|
|
@@ -8781,6 +8872,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8781
8872
|
readonly lastSelectValue: string;
|
|
8782
8873
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8783
8874
|
splitExtraValue(value: any): any[];
|
|
8875
|
+
getMergedData(data: any): any;
|
|
8784
8876
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8785
8877
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8786
8878
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8858,6 +8950,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8858
8950
|
readonly lastSelectValue: string;
|
|
8859
8951
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8860
8952
|
splitExtraValue(value: any): any[];
|
|
8953
|
+
getMergedData(data: any): any;
|
|
8861
8954
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8862
8955
|
removeSubFormItem: (item: {
|
|
8863
8956
|
id: string;
|
|
@@ -8939,6 +9032,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8939
9032
|
readonly lastSelectValue: string;
|
|
8940
9033
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8941
9034
|
splitExtraValue(value: any): any[];
|
|
9035
|
+
getMergedData(data: any): any;
|
|
8942
9036
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8943
9037
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8944
9038
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9016,6 +9110,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9016
9110
|
readonly lastSelectValue: string;
|
|
9017
9111
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9018
9112
|
splitExtraValue(value: any): any[];
|
|
9113
|
+
getMergedData(data: any): any;
|
|
9019
9114
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9020
9115
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
9021
9116
|
setIsControlled: (value: any) => void;
|
|
@@ -9096,6 +9191,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9096
9191
|
readonly lastSelectValue: string;
|
|
9097
9192
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9098
9193
|
splitExtraValue(value: any): any[];
|
|
9194
|
+
getMergedData(data: any): any;
|
|
9099
9195
|
} & {
|
|
9100
9196
|
focus: () => void;
|
|
9101
9197
|
blur: () => void;
|
|
@@ -9239,6 +9335,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9239
9335
|
readonly lastSelectValue: string;
|
|
9240
9336
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9241
9337
|
splitExtraValue(value: any): any[];
|
|
9338
|
+
getMergedData(data: any): any;
|
|
9242
9339
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9243
9340
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9244
9341
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9316,6 +9413,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9316
9413
|
readonly lastSelectValue: string;
|
|
9317
9414
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9318
9415
|
splitExtraValue(value: any): any[];
|
|
9416
|
+
getMergedData(data: any): any;
|
|
9319
9417
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9320
9418
|
removeSubFormItem: (item: {
|
|
9321
9419
|
id: string;
|
|
@@ -9397,6 +9495,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9397
9495
|
readonly lastSelectValue: string;
|
|
9398
9496
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9399
9497
|
splitExtraValue(value: any): any[];
|
|
9498
|
+
getMergedData(data: any): any;
|
|
9400
9499
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9401
9500
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9402
9501
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9474,6 +9573,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9474
9573
|
readonly lastSelectValue: string;
|
|
9475
9574
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9476
9575
|
splitExtraValue(value: any): any[];
|
|
9576
|
+
getMergedData(data: any): any;
|
|
9477
9577
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9478
9578
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
9479
9579
|
setIsControlled: (value: any) => void;
|
|
@@ -9558,6 +9658,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9558
9658
|
readonly lastSelectValue: string;
|
|
9559
9659
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9560
9660
|
splitExtraValue(value: any): any[];
|
|
9661
|
+
getMergedData(data: any): any;
|
|
9561
9662
|
} & {
|
|
9562
9663
|
focus: () => void;
|
|
9563
9664
|
blur: () => void;
|
|
@@ -9701,6 +9802,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9701
9802
|
readonly lastSelectValue: string;
|
|
9702
9803
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9703
9804
|
splitExtraValue(value: any): any[];
|
|
9805
|
+
getMergedData(data: any): any;
|
|
9704
9806
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9705
9807
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9706
9808
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9778,6 +9880,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9778
9880
|
readonly lastSelectValue: string;
|
|
9779
9881
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9780
9882
|
splitExtraValue(value: any): any[];
|
|
9883
|
+
getMergedData(data: any): any;
|
|
9781
9884
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9782
9885
|
removeSubFormItem: (item: {
|
|
9783
9886
|
id: string;
|
|
@@ -9859,6 +9962,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9859
9962
|
readonly lastSelectValue: string;
|
|
9860
9963
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9861
9964
|
splitExtraValue(value: any): any[];
|
|
9965
|
+
getMergedData(data: any): any;
|
|
9862
9966
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9863
9967
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9864
9968
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9936,6 +10040,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9936
10040
|
readonly lastSelectValue: string;
|
|
9937
10041
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9938
10042
|
splitExtraValue(value: any): any[];
|
|
10043
|
+
getMergedData(data: any): any;
|
|
9939
10044
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9940
10045
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
9941
10046
|
setIsControlled: (value: any) => void;
|
|
@@ -10016,6 +10121,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10016
10121
|
readonly lastSelectValue: string;
|
|
10017
10122
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10018
10123
|
splitExtraValue(value: any): any[];
|
|
10124
|
+
getMergedData(data: any): any;
|
|
10019
10125
|
} & {
|
|
10020
10126
|
focus: () => void;
|
|
10021
10127
|
blur: () => void;
|
|
@@ -10159,6 +10265,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10159
10265
|
readonly lastSelectValue: string;
|
|
10160
10266
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10161
10267
|
splitExtraValue(value: any): any[];
|
|
10268
|
+
getMergedData(data: any): any;
|
|
10162
10269
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10163
10270
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10164
10271
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10236,6 +10343,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10236
10343
|
readonly lastSelectValue: string;
|
|
10237
10344
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10238
10345
|
splitExtraValue(value: any): any[];
|
|
10346
|
+
getMergedData(data: any): any;
|
|
10239
10347
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10240
10348
|
removeSubFormItem: (item: {
|
|
10241
10349
|
id: string;
|
|
@@ -10317,6 +10425,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10317
10425
|
readonly lastSelectValue: string;
|
|
10318
10426
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10319
10427
|
splitExtraValue(value: any): any[];
|
|
10428
|
+
getMergedData(data: any): any;
|
|
10320
10429
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10321
10430
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10322
10431
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10394,6 +10503,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10394
10503
|
readonly lastSelectValue: string;
|
|
10395
10504
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10396
10505
|
splitExtraValue(value: any): any[];
|
|
10506
|
+
getMergedData(data: any): any;
|
|
10397
10507
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10398
10508
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
10399
10509
|
setIsControlled: (value: any) => void;
|
|
@@ -10478,6 +10588,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10478
10588
|
readonly lastSelectValue: string;
|
|
10479
10589
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10480
10590
|
splitExtraValue(value: any): any[];
|
|
10591
|
+
getMergedData(data: any): any;
|
|
10481
10592
|
} & {
|
|
10482
10593
|
focus: () => void;
|
|
10483
10594
|
blur: () => void;
|
|
@@ -10621,6 +10732,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10621
10732
|
readonly lastSelectValue: string;
|
|
10622
10733
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10623
10734
|
splitExtraValue(value: any): any[];
|
|
10735
|
+
getMergedData(data: any): any;
|
|
10624
10736
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10625
10737
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10626
10738
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10698,6 +10810,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10698
10810
|
readonly lastSelectValue: string;
|
|
10699
10811
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10700
10812
|
splitExtraValue(value: any): any[];
|
|
10813
|
+
getMergedData(data: any): any;
|
|
10701
10814
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10702
10815
|
removeSubFormItem: (item: {
|
|
10703
10816
|
id: string;
|
|
@@ -10779,6 +10892,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10779
10892
|
readonly lastSelectValue: string;
|
|
10780
10893
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10781
10894
|
splitExtraValue(value: any): any[];
|
|
10895
|
+
getMergedData(data: any): any;
|
|
10782
10896
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10783
10897
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10784
10898
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10856,6 +10970,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10856
10970
|
readonly lastSelectValue: string;
|
|
10857
10971
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10858
10972
|
splitExtraValue(value: any): any[];
|
|
10973
|
+
getMergedData(data: any): any;
|
|
10859
10974
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10860
10975
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
10861
10976
|
setIsControlled: (value: any) => void;
|
|
@@ -10936,6 +11051,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10936
11051
|
readonly lastSelectValue: string;
|
|
10937
11052
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10938
11053
|
splitExtraValue(value: any): any[];
|
|
11054
|
+
getMergedData(data: any): any;
|
|
10939
11055
|
} & {
|
|
10940
11056
|
focus: () => void;
|
|
10941
11057
|
blur: () => void;
|
|
@@ -11079,6 +11195,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11079
11195
|
readonly lastSelectValue: string;
|
|
11080
11196
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11081
11197
|
splitExtraValue(value: any): any[];
|
|
11198
|
+
getMergedData(data: any): any;
|
|
11082
11199
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11083
11200
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
11084
11201
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -11156,6 +11273,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11156
11273
|
readonly lastSelectValue: string;
|
|
11157
11274
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11158
11275
|
splitExtraValue(value: any): any[];
|
|
11276
|
+
getMergedData(data: any): any;
|
|
11159
11277
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
11160
11278
|
removeSubFormItem: (item: {
|
|
11161
11279
|
id: string;
|
|
@@ -11237,6 +11355,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11237
11355
|
readonly lastSelectValue: string;
|
|
11238
11356
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11239
11357
|
splitExtraValue(value: any): any[];
|
|
11358
|
+
getMergedData(data: any): any;
|
|
11240
11359
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11241
11360
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
11242
11361
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -11314,6 +11433,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11314
11433
|
readonly lastSelectValue: string;
|
|
11315
11434
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11316
11435
|
splitExtraValue(value: any): any[];
|
|
11436
|
+
getMergedData(data: any): any;
|
|
11317
11437
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
11318
11438
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
11319
11439
|
setIsControlled: (value: any) => void;
|