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/lib/store/combo.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
1
|
import { SnapshotIn, Instance } from 'mobx-state-tree';
|
|
3
2
|
import type { IFormStore, IFormItemStore } from './form';
|
|
4
3
|
export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
@@ -85,6 +84,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
85
84
|
readonly lastSelectValue: string;
|
|
86
85
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
87
86
|
splitExtraValue(value: any): any[];
|
|
87
|
+
getMergedData(data: any): any;
|
|
88
88
|
} & {
|
|
89
89
|
focus: () => void;
|
|
90
90
|
blur: () => void;
|
|
@@ -228,6 +228,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
228
228
|
readonly lastSelectValue: string;
|
|
229
229
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
230
230
|
splitExtraValue(value: any): any[];
|
|
231
|
+
getMergedData(data: any): any;
|
|
231
232
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
232
233
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
233
234
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -305,6 +306,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
305
306
|
readonly lastSelectValue: string;
|
|
306
307
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
307
308
|
splitExtraValue(value: any): any[];
|
|
309
|
+
getMergedData(data: any): any;
|
|
308
310
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
309
311
|
removeSubFormItem: (item: {
|
|
310
312
|
id: string;
|
|
@@ -386,6 +388,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
386
388
|
readonly lastSelectValue: string;
|
|
387
389
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
388
390
|
splitExtraValue(value: any): any[];
|
|
391
|
+
getMergedData(data: any): any;
|
|
389
392
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
390
393
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
391
394
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -463,6 +466,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
463
466
|
readonly lastSelectValue: string;
|
|
464
467
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
465
468
|
splitExtraValue(value: any): any[];
|
|
469
|
+
getMergedData(data: any): any;
|
|
466
470
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
467
471
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
468
472
|
setIsControlled: (value: any) => void;
|
|
@@ -543,6 +547,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
543
547
|
readonly lastSelectValue: string;
|
|
544
548
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
545
549
|
splitExtraValue(value: any): any[];
|
|
550
|
+
getMergedData(data: any): any;
|
|
546
551
|
} & {
|
|
547
552
|
focus: () => void;
|
|
548
553
|
blur: () => void;
|
|
@@ -686,6 +691,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
686
691
|
readonly lastSelectValue: string;
|
|
687
692
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
688
693
|
splitExtraValue(value: any): any[];
|
|
694
|
+
getMergedData(data: any): any;
|
|
689
695
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
690
696
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
691
697
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -763,6 +769,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
763
769
|
readonly lastSelectValue: string;
|
|
764
770
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
765
771
|
splitExtraValue(value: any): any[];
|
|
772
|
+
getMergedData(data: any): any;
|
|
766
773
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
767
774
|
removeSubFormItem: (item: {
|
|
768
775
|
id: string;
|
|
@@ -844,6 +851,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
844
851
|
readonly lastSelectValue: string;
|
|
845
852
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
846
853
|
splitExtraValue(value: any): any[];
|
|
854
|
+
getMergedData(data: any): any;
|
|
847
855
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
848
856
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
849
857
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -921,6 +929,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
921
929
|
readonly lastSelectValue: string;
|
|
922
930
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
923
931
|
splitExtraValue(value: any): any[];
|
|
932
|
+
getMergedData(data: any): any;
|
|
924
933
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
925
934
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
926
935
|
setIsControlled: (value: any) => void;
|
|
@@ -1033,6 +1042,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1033
1042
|
readonly lastSelectValue: string;
|
|
1034
1043
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1035
1044
|
splitExtraValue(value: any): any[];
|
|
1045
|
+
getMergedData(data: any): any;
|
|
1036
1046
|
} & {
|
|
1037
1047
|
focus: () => void;
|
|
1038
1048
|
blur: () => void;
|
|
@@ -1176,6 +1186,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1176
1186
|
readonly lastSelectValue: string;
|
|
1177
1187
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1178
1188
|
splitExtraValue(value: any): any[];
|
|
1189
|
+
getMergedData(data: any): any;
|
|
1179
1190
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1180
1191
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1181
1192
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1253,6 +1264,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1253
1264
|
readonly lastSelectValue: string;
|
|
1254
1265
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1255
1266
|
splitExtraValue(value: any): any[];
|
|
1267
|
+
getMergedData(data: any): any;
|
|
1256
1268
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1257
1269
|
removeSubFormItem: (item: {
|
|
1258
1270
|
id: string;
|
|
@@ -1334,6 +1346,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1334
1346
|
readonly lastSelectValue: string;
|
|
1335
1347
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1336
1348
|
splitExtraValue(value: any): any[];
|
|
1349
|
+
getMergedData(data: any): any;
|
|
1337
1350
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1338
1351
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1339
1352
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1411,6 +1424,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1411
1424
|
readonly lastSelectValue: string;
|
|
1412
1425
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1413
1426
|
splitExtraValue(value: any): any[];
|
|
1427
|
+
getMergedData(data: any): any;
|
|
1414
1428
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1415
1429
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
1416
1430
|
setIsControlled: (value: any) => void;
|
|
@@ -1491,6 +1505,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1491
1505
|
readonly lastSelectValue: string;
|
|
1492
1506
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1493
1507
|
splitExtraValue(value: any): any[];
|
|
1508
|
+
getMergedData(data: any): any;
|
|
1494
1509
|
} & {
|
|
1495
1510
|
focus: () => void;
|
|
1496
1511
|
blur: () => void;
|
|
@@ -1634,6 +1649,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1634
1649
|
readonly lastSelectValue: string;
|
|
1635
1650
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1636
1651
|
splitExtraValue(value: any): any[];
|
|
1652
|
+
getMergedData(data: any): any;
|
|
1637
1653
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1638
1654
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1639
1655
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1711,6 +1727,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1711
1727
|
readonly lastSelectValue: string;
|
|
1712
1728
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1713
1729
|
splitExtraValue(value: any): any[];
|
|
1730
|
+
getMergedData(data: any): any;
|
|
1714
1731
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1715
1732
|
removeSubFormItem: (item: {
|
|
1716
1733
|
id: string;
|
|
@@ -1792,6 +1809,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1792
1809
|
readonly lastSelectValue: string;
|
|
1793
1810
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1794
1811
|
splitExtraValue(value: any): any[];
|
|
1812
|
+
getMergedData(data: any): any;
|
|
1795
1813
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
1796
1814
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
1797
1815
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -1869,6 +1887,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1869
1887
|
readonly lastSelectValue: string;
|
|
1870
1888
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
1871
1889
|
splitExtraValue(value: any): any[];
|
|
1890
|
+
getMergedData(data: any): any;
|
|
1872
1891
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
1873
1892
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
1874
1893
|
setIsControlled: (value: any) => void;
|
|
@@ -2069,6 +2088,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2069
2088
|
readonly lastSelectValue: string;
|
|
2070
2089
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2071
2090
|
splitExtraValue(value: any): any[];
|
|
2091
|
+
getMergedData(data: any): any;
|
|
2072
2092
|
} & {
|
|
2073
2093
|
focus: () => void;
|
|
2074
2094
|
blur: () => void;
|
|
@@ -2212,6 +2232,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2212
2232
|
readonly lastSelectValue: string;
|
|
2213
2233
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2214
2234
|
splitExtraValue(value: any): any[];
|
|
2235
|
+
getMergedData(data: any): any;
|
|
2215
2236
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2216
2237
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2217
2238
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2289,6 +2310,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2289
2310
|
readonly lastSelectValue: string;
|
|
2290
2311
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2291
2312
|
splitExtraValue(value: any): any[];
|
|
2313
|
+
getMergedData(data: any): any;
|
|
2292
2314
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2293
2315
|
removeSubFormItem: (item: {
|
|
2294
2316
|
id: string;
|
|
@@ -2370,6 +2392,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2370
2392
|
readonly lastSelectValue: string;
|
|
2371
2393
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2372
2394
|
splitExtraValue(value: any): any[];
|
|
2395
|
+
getMergedData(data: any): any;
|
|
2373
2396
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2374
2397
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2375
2398
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2447,6 +2470,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2447
2470
|
readonly lastSelectValue: string;
|
|
2448
2471
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2449
2472
|
splitExtraValue(value: any): any[];
|
|
2473
|
+
getMergedData(data: any): any;
|
|
2450
2474
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2451
2475
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
2452
2476
|
setIsControlled: (value: any) => void;
|
|
@@ -2527,6 +2551,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2527
2551
|
readonly lastSelectValue: string;
|
|
2528
2552
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2529
2553
|
splitExtraValue(value: any): any[];
|
|
2554
|
+
getMergedData(data: any): any;
|
|
2530
2555
|
} & {
|
|
2531
2556
|
focus: () => void;
|
|
2532
2557
|
blur: () => void;
|
|
@@ -2670,6 +2695,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2670
2695
|
readonly lastSelectValue: string;
|
|
2671
2696
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2672
2697
|
splitExtraValue(value: any): any[];
|
|
2698
|
+
getMergedData(data: any): any;
|
|
2673
2699
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2674
2700
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2675
2701
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2747,6 +2773,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2747
2773
|
readonly lastSelectValue: string;
|
|
2748
2774
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2749
2775
|
splitExtraValue(value: any): any[];
|
|
2776
|
+
getMergedData(data: any): any;
|
|
2750
2777
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2751
2778
|
removeSubFormItem: (item: {
|
|
2752
2779
|
id: string;
|
|
@@ -2828,6 +2855,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2828
2855
|
readonly lastSelectValue: string;
|
|
2829
2856
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2830
2857
|
splitExtraValue(value: any): any[];
|
|
2858
|
+
getMergedData(data: any): any;
|
|
2831
2859
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
2832
2860
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
2833
2861
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -2905,6 +2933,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2905
2933
|
readonly lastSelectValue: string;
|
|
2906
2934
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2907
2935
|
splitExtraValue(value: any): any[];
|
|
2936
|
+
getMergedData(data: any): any;
|
|
2908
2937
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
2909
2938
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
2910
2939
|
setIsControlled: (value: any) => void;
|
|
@@ -2989,6 +3018,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2989
3018
|
readonly lastSelectValue: string;
|
|
2990
3019
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
2991
3020
|
splitExtraValue(value: any): any[];
|
|
3021
|
+
getMergedData(data: any): any;
|
|
2992
3022
|
} & {
|
|
2993
3023
|
focus: () => void;
|
|
2994
3024
|
blur: () => void;
|
|
@@ -3132,6 +3162,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3132
3162
|
readonly lastSelectValue: string;
|
|
3133
3163
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3134
3164
|
splitExtraValue(value: any): any[];
|
|
3165
|
+
getMergedData(data: any): any;
|
|
3135
3166
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3136
3167
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3137
3168
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3209,6 +3240,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3209
3240
|
readonly lastSelectValue: string;
|
|
3210
3241
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3211
3242
|
splitExtraValue(value: any): any[];
|
|
3243
|
+
getMergedData(data: any): any;
|
|
3212
3244
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3213
3245
|
removeSubFormItem: (item: {
|
|
3214
3246
|
id: string;
|
|
@@ -3290,6 +3322,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3290
3322
|
readonly lastSelectValue: string;
|
|
3291
3323
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3292
3324
|
splitExtraValue(value: any): any[];
|
|
3325
|
+
getMergedData(data: any): any;
|
|
3293
3326
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3294
3327
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3295
3328
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3367,6 +3400,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3367
3400
|
readonly lastSelectValue: string;
|
|
3368
3401
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3369
3402
|
splitExtraValue(value: any): any[];
|
|
3403
|
+
getMergedData(data: any): any;
|
|
3370
3404
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3371
3405
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
3372
3406
|
setIsControlled: (value: any) => void;
|
|
@@ -3447,6 +3481,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3447
3481
|
readonly lastSelectValue: string;
|
|
3448
3482
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3449
3483
|
splitExtraValue(value: any): any[];
|
|
3484
|
+
getMergedData(data: any): any;
|
|
3450
3485
|
} & {
|
|
3451
3486
|
focus: () => void;
|
|
3452
3487
|
blur: () => void;
|
|
@@ -3590,6 +3625,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3590
3625
|
readonly lastSelectValue: string;
|
|
3591
3626
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3592
3627
|
splitExtraValue(value: any): any[];
|
|
3628
|
+
getMergedData(data: any): any;
|
|
3593
3629
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3594
3630
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3595
3631
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3667,6 +3703,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3667
3703
|
readonly lastSelectValue: string;
|
|
3668
3704
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3669
3705
|
splitExtraValue(value: any): any[];
|
|
3706
|
+
getMergedData(data: any): any;
|
|
3670
3707
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3671
3708
|
removeSubFormItem: (item: {
|
|
3672
3709
|
id: string;
|
|
@@ -3748,6 +3785,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3748
3785
|
readonly lastSelectValue: string;
|
|
3749
3786
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3750
3787
|
splitExtraValue(value: any): any[];
|
|
3788
|
+
getMergedData(data: any): any;
|
|
3751
3789
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
3752
3790
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
3753
3791
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -3825,6 +3863,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3825
3863
|
readonly lastSelectValue: string;
|
|
3826
3864
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3827
3865
|
splitExtraValue(value: any): any[];
|
|
3866
|
+
getMergedData(data: any): any;
|
|
3828
3867
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
3829
3868
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
3830
3869
|
setIsControlled: (value: any) => void;
|
|
@@ -3914,6 +3953,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3914
3953
|
readonly lastSelectValue: string;
|
|
3915
3954
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
3916
3955
|
splitExtraValue(value: any): any[];
|
|
3956
|
+
getMergedData(data: any): any;
|
|
3917
3957
|
} & {
|
|
3918
3958
|
focus: () => void;
|
|
3919
3959
|
blur: () => void;
|
|
@@ -4057,6 +4097,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4057
4097
|
readonly lastSelectValue: string;
|
|
4058
4098
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4059
4099
|
splitExtraValue(value: any): any[];
|
|
4100
|
+
getMergedData(data: any): any;
|
|
4060
4101
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4061
4102
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4062
4103
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4134,6 +4175,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4134
4175
|
readonly lastSelectValue: string;
|
|
4135
4176
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4136
4177
|
splitExtraValue(value: any): any[];
|
|
4178
|
+
getMergedData(data: any): any;
|
|
4137
4179
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4138
4180
|
removeSubFormItem: (item: {
|
|
4139
4181
|
id: string;
|
|
@@ -4215,6 +4257,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4215
4257
|
readonly lastSelectValue: string;
|
|
4216
4258
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4217
4259
|
splitExtraValue(value: any): any[];
|
|
4260
|
+
getMergedData(data: any): any;
|
|
4218
4261
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4219
4262
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4220
4263
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4292,6 +4335,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4292
4335
|
readonly lastSelectValue: string;
|
|
4293
4336
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4294
4337
|
splitExtraValue(value: any): any[];
|
|
4338
|
+
getMergedData(data: any): any;
|
|
4295
4339
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4296
4340
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
4297
4341
|
setIsControlled: (value: any) => void;
|
|
@@ -4372,6 +4416,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4372
4416
|
readonly lastSelectValue: string;
|
|
4373
4417
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4374
4418
|
splitExtraValue(value: any): any[];
|
|
4419
|
+
getMergedData(data: any): any;
|
|
4375
4420
|
} & {
|
|
4376
4421
|
focus: () => void;
|
|
4377
4422
|
blur: () => void;
|
|
@@ -4515,6 +4560,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4515
4560
|
readonly lastSelectValue: string;
|
|
4516
4561
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4517
4562
|
splitExtraValue(value: any): any[];
|
|
4563
|
+
getMergedData(data: any): any;
|
|
4518
4564
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4519
4565
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4520
4566
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4592,6 +4638,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4592
4638
|
readonly lastSelectValue: string;
|
|
4593
4639
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4594
4640
|
splitExtraValue(value: any): any[];
|
|
4641
|
+
getMergedData(data: any): any;
|
|
4595
4642
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4596
4643
|
removeSubFormItem: (item: {
|
|
4597
4644
|
id: string;
|
|
@@ -4673,6 +4720,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4673
4720
|
readonly lastSelectValue: string;
|
|
4674
4721
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4675
4722
|
splitExtraValue(value: any): any[];
|
|
4723
|
+
getMergedData(data: any): any;
|
|
4676
4724
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4677
4725
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4678
4726
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -4750,6 +4798,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4750
4798
|
readonly lastSelectValue: string;
|
|
4751
4799
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4752
4800
|
splitExtraValue(value: any): any[];
|
|
4801
|
+
getMergedData(data: any): any;
|
|
4753
4802
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
4754
4803
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
4755
4804
|
setIsControlled: (value: any) => void;
|
|
@@ -4834,6 +4883,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4834
4883
|
readonly lastSelectValue: string;
|
|
4835
4884
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4836
4885
|
splitExtraValue(value: any): any[];
|
|
4886
|
+
getMergedData(data: any): any;
|
|
4837
4887
|
} & {
|
|
4838
4888
|
focus: () => void;
|
|
4839
4889
|
blur: () => void;
|
|
@@ -4977,6 +5027,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4977
5027
|
readonly lastSelectValue: string;
|
|
4978
5028
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
4979
5029
|
splitExtraValue(value: any): any[];
|
|
5030
|
+
getMergedData(data: any): any;
|
|
4980
5031
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
4981
5032
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
4982
5033
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5054,6 +5105,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5054
5105
|
readonly lastSelectValue: string;
|
|
5055
5106
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5056
5107
|
splitExtraValue(value: any): any[];
|
|
5108
|
+
getMergedData(data: any): any;
|
|
5057
5109
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5058
5110
|
removeSubFormItem: (item: {
|
|
5059
5111
|
id: string;
|
|
@@ -5135,6 +5187,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5135
5187
|
readonly lastSelectValue: string;
|
|
5136
5188
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5137
5189
|
splitExtraValue(value: any): any[];
|
|
5190
|
+
getMergedData(data: any): any;
|
|
5138
5191
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5139
5192
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5140
5193
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5212,6 +5265,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5212
5265
|
readonly lastSelectValue: string;
|
|
5213
5266
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5214
5267
|
splitExtraValue(value: any): any[];
|
|
5268
|
+
getMergedData(data: any): any;
|
|
5215
5269
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5216
5270
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
5217
5271
|
setIsControlled: (value: any) => void;
|
|
@@ -5292,6 +5346,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5292
5346
|
readonly lastSelectValue: string;
|
|
5293
5347
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5294
5348
|
splitExtraValue(value: any): any[];
|
|
5349
|
+
getMergedData(data: any): any;
|
|
5295
5350
|
} & {
|
|
5296
5351
|
focus: () => void;
|
|
5297
5352
|
blur: () => void;
|
|
@@ -5435,6 +5490,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5435
5490
|
readonly lastSelectValue: string;
|
|
5436
5491
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5437
5492
|
splitExtraValue(value: any): any[];
|
|
5493
|
+
getMergedData(data: any): any;
|
|
5438
5494
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5439
5495
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5440
5496
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5512,6 +5568,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5512
5568
|
readonly lastSelectValue: string;
|
|
5513
5569
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5514
5570
|
splitExtraValue(value: any): any[];
|
|
5571
|
+
getMergedData(data: any): any;
|
|
5515
5572
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5516
5573
|
removeSubFormItem: (item: {
|
|
5517
5574
|
id: string;
|
|
@@ -5593,6 +5650,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5593
5650
|
readonly lastSelectValue: string;
|
|
5594
5651
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5595
5652
|
splitExtraValue(value: any): any[];
|
|
5653
|
+
getMergedData(data: any): any;
|
|
5596
5654
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5597
5655
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5598
5656
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5670,6 +5728,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5670
5728
|
readonly lastSelectValue: string;
|
|
5671
5729
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5672
5730
|
splitExtraValue(value: any): any[];
|
|
5731
|
+
getMergedData(data: any): any;
|
|
5673
5732
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5674
5733
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
5675
5734
|
setIsControlled: (value: any) => void;
|
|
@@ -5754,6 +5813,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5754
5813
|
readonly lastSelectValue: string;
|
|
5755
5814
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5756
5815
|
splitExtraValue(value: any): any[];
|
|
5816
|
+
getMergedData(data: any): any;
|
|
5757
5817
|
} & {
|
|
5758
5818
|
focus: () => void;
|
|
5759
5819
|
blur: () => void;
|
|
@@ -5897,6 +5957,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5897
5957
|
readonly lastSelectValue: string;
|
|
5898
5958
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5899
5959
|
splitExtraValue(value: any): any[];
|
|
5960
|
+
getMergedData(data: any): any;
|
|
5900
5961
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
5901
5962
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
5902
5963
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -5974,6 +6035,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5974
6035
|
readonly lastSelectValue: string;
|
|
5975
6036
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
5976
6037
|
splitExtraValue(value: any): any[];
|
|
6038
|
+
getMergedData(data: any): any;
|
|
5977
6039
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
5978
6040
|
removeSubFormItem: (item: {
|
|
5979
6041
|
id: string;
|
|
@@ -6055,6 +6117,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6055
6117
|
readonly lastSelectValue: string;
|
|
6056
6118
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6057
6119
|
splitExtraValue(value: any): any[];
|
|
6120
|
+
getMergedData(data: any): any;
|
|
6058
6121
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6059
6122
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6060
6123
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -6132,6 +6195,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6132
6195
|
readonly lastSelectValue: string;
|
|
6133
6196
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6134
6197
|
splitExtraValue(value: any): any[];
|
|
6198
|
+
getMergedData(data: any): any;
|
|
6135
6199
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
6136
6200
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
6137
6201
|
setIsControlled: (value: any) => void;
|
|
@@ -6212,6 +6276,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6212
6276
|
readonly lastSelectValue: string;
|
|
6213
6277
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6214
6278
|
splitExtraValue(value: any): any[];
|
|
6279
|
+
getMergedData(data: any): any;
|
|
6215
6280
|
} & {
|
|
6216
6281
|
focus: () => void;
|
|
6217
6282
|
blur: () => void;
|
|
@@ -6355,6 +6420,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6355
6420
|
readonly lastSelectValue: string;
|
|
6356
6421
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6357
6422
|
splitExtraValue(value: any): any[];
|
|
6423
|
+
getMergedData(data: any): any;
|
|
6358
6424
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6359
6425
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6360
6426
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -6432,6 +6498,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6432
6498
|
readonly lastSelectValue: string;
|
|
6433
6499
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6434
6500
|
splitExtraValue(value: any): any[];
|
|
6501
|
+
getMergedData(data: any): any;
|
|
6435
6502
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
6436
6503
|
removeSubFormItem: (item: {
|
|
6437
6504
|
id: string;
|
|
@@ -6513,6 +6580,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6513
6580
|
readonly lastSelectValue: string;
|
|
6514
6581
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6515
6582
|
splitExtraValue(value: any): any[];
|
|
6583
|
+
getMergedData(data: any): any;
|
|
6516
6584
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6517
6585
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6518
6586
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -6590,6 +6658,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6590
6658
|
readonly lastSelectValue: string;
|
|
6591
6659
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6592
6660
|
splitExtraValue(value: any): any[];
|
|
6661
|
+
getMergedData(data: any): any;
|
|
6593
6662
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
6594
6663
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
6595
6664
|
setIsControlled: (value: any) => void;
|
|
@@ -6793,6 +6862,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6793
6862
|
readonly lastSelectValue: string;
|
|
6794
6863
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6795
6864
|
splitExtraValue(value: any): any[];
|
|
6865
|
+
getMergedData(data: any): any;
|
|
6796
6866
|
} & {
|
|
6797
6867
|
focus: () => void;
|
|
6798
6868
|
blur: () => void;
|
|
@@ -6936,6 +7006,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6936
7006
|
readonly lastSelectValue: string;
|
|
6937
7007
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
6938
7008
|
splitExtraValue(value: any): any[];
|
|
7009
|
+
getMergedData(data: any): any;
|
|
6939
7010
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
6940
7011
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
6941
7012
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7013,6 +7084,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7013
7084
|
readonly lastSelectValue: string;
|
|
7014
7085
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7015
7086
|
splitExtraValue(value: any): any[];
|
|
7087
|
+
getMergedData(data: any): any;
|
|
7016
7088
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7017
7089
|
removeSubFormItem: (item: {
|
|
7018
7090
|
id: string;
|
|
@@ -7094,6 +7166,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7094
7166
|
readonly lastSelectValue: string;
|
|
7095
7167
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7096
7168
|
splitExtraValue(value: any): any[];
|
|
7169
|
+
getMergedData(data: any): any;
|
|
7097
7170
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7098
7171
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7099
7172
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7171,6 +7244,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7171
7244
|
readonly lastSelectValue: string;
|
|
7172
7245
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7173
7246
|
splitExtraValue(value: any): any[];
|
|
7247
|
+
getMergedData(data: any): any;
|
|
7174
7248
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7175
7249
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
7176
7250
|
setIsControlled: (value: any) => void;
|
|
@@ -7251,6 +7325,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7251
7325
|
readonly lastSelectValue: string;
|
|
7252
7326
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7253
7327
|
splitExtraValue(value: any): any[];
|
|
7328
|
+
getMergedData(data: any): any;
|
|
7254
7329
|
} & {
|
|
7255
7330
|
focus: () => void;
|
|
7256
7331
|
blur: () => void;
|
|
@@ -7394,6 +7469,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7394
7469
|
readonly lastSelectValue: string;
|
|
7395
7470
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7396
7471
|
splitExtraValue(value: any): any[];
|
|
7472
|
+
getMergedData(data: any): any;
|
|
7397
7473
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7398
7474
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7399
7475
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7471,6 +7547,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7471
7547
|
readonly lastSelectValue: string;
|
|
7472
7548
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7473
7549
|
splitExtraValue(value: any): any[];
|
|
7550
|
+
getMergedData(data: any): any;
|
|
7474
7551
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7475
7552
|
removeSubFormItem: (item: {
|
|
7476
7553
|
id: string;
|
|
@@ -7552,6 +7629,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7552
7629
|
readonly lastSelectValue: string;
|
|
7553
7630
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7554
7631
|
splitExtraValue(value: any): any[];
|
|
7632
|
+
getMergedData(data: any): any;
|
|
7555
7633
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7556
7634
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7557
7635
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7629,6 +7707,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7629
7707
|
readonly lastSelectValue: string;
|
|
7630
7708
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7631
7709
|
splitExtraValue(value: any): any[];
|
|
7710
|
+
getMergedData(data: any): any;
|
|
7632
7711
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7633
7712
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
7634
7713
|
setIsControlled: (value: any) => void;
|
|
@@ -7713,6 +7792,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7713
7792
|
readonly lastSelectValue: string;
|
|
7714
7793
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7715
7794
|
splitExtraValue(value: any): any[];
|
|
7795
|
+
getMergedData(data: any): any;
|
|
7716
7796
|
} & {
|
|
7717
7797
|
focus: () => void;
|
|
7718
7798
|
blur: () => void;
|
|
@@ -7856,6 +7936,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7856
7936
|
readonly lastSelectValue: string;
|
|
7857
7937
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7858
7938
|
splitExtraValue(value: any): any[];
|
|
7939
|
+
getMergedData(data: any): any;
|
|
7859
7940
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
7860
7941
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
7861
7942
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -7933,6 +8014,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7933
8014
|
readonly lastSelectValue: string;
|
|
7934
8015
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
7935
8016
|
splitExtraValue(value: any): any[];
|
|
8017
|
+
getMergedData(data: any): any;
|
|
7936
8018
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
7937
8019
|
removeSubFormItem: (item: {
|
|
7938
8020
|
id: string;
|
|
@@ -8014,6 +8096,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8014
8096
|
readonly lastSelectValue: string;
|
|
8015
8097
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8016
8098
|
splitExtraValue(value: any): any[];
|
|
8099
|
+
getMergedData(data: any): any;
|
|
8017
8100
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8018
8101
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8019
8102
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8091,6 +8174,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8091
8174
|
readonly lastSelectValue: string;
|
|
8092
8175
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8093
8176
|
splitExtraValue(value: any): any[];
|
|
8177
|
+
getMergedData(data: any): any;
|
|
8094
8178
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8095
8179
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
8096
8180
|
setIsControlled: (value: any) => void;
|
|
@@ -8171,6 +8255,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8171
8255
|
readonly lastSelectValue: string;
|
|
8172
8256
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8173
8257
|
splitExtraValue(value: any): any[];
|
|
8258
|
+
getMergedData(data: any): any;
|
|
8174
8259
|
} & {
|
|
8175
8260
|
focus: () => void;
|
|
8176
8261
|
blur: () => void;
|
|
@@ -8314,6 +8399,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8314
8399
|
readonly lastSelectValue: string;
|
|
8315
8400
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8316
8401
|
splitExtraValue(value: any): any[];
|
|
8402
|
+
getMergedData(data: any): any;
|
|
8317
8403
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8318
8404
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8319
8405
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8391,6 +8477,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8391
8477
|
readonly lastSelectValue: string;
|
|
8392
8478
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8393
8479
|
splitExtraValue(value: any): any[];
|
|
8480
|
+
getMergedData(data: any): any;
|
|
8394
8481
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8395
8482
|
removeSubFormItem: (item: {
|
|
8396
8483
|
id: string;
|
|
@@ -8472,6 +8559,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8472
8559
|
readonly lastSelectValue: string;
|
|
8473
8560
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8474
8561
|
splitExtraValue(value: any): any[];
|
|
8562
|
+
getMergedData(data: any): any;
|
|
8475
8563
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8476
8564
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8477
8565
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8549,6 +8637,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8549
8637
|
readonly lastSelectValue: string;
|
|
8550
8638
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8551
8639
|
splitExtraValue(value: any): any[];
|
|
8640
|
+
getMergedData(data: any): any;
|
|
8552
8641
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8553
8642
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
8554
8643
|
setIsControlled: (value: any) => void;
|
|
@@ -8638,6 +8727,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8638
8727
|
readonly lastSelectValue: string;
|
|
8639
8728
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8640
8729
|
splitExtraValue(value: any): any[];
|
|
8730
|
+
getMergedData(data: any): any;
|
|
8641
8731
|
} & {
|
|
8642
8732
|
focus: () => void;
|
|
8643
8733
|
blur: () => void;
|
|
@@ -8781,6 +8871,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8781
8871
|
readonly lastSelectValue: string;
|
|
8782
8872
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8783
8873
|
splitExtraValue(value: any): any[];
|
|
8874
|
+
getMergedData(data: any): any;
|
|
8784
8875
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8785
8876
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8786
8877
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -8858,6 +8949,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8858
8949
|
readonly lastSelectValue: string;
|
|
8859
8950
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8860
8951
|
splitExtraValue(value: any): any[];
|
|
8952
|
+
getMergedData(data: any): any;
|
|
8861
8953
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
8862
8954
|
removeSubFormItem: (item: {
|
|
8863
8955
|
id: string;
|
|
@@ -8939,6 +9031,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8939
9031
|
readonly lastSelectValue: string;
|
|
8940
9032
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
8941
9033
|
splitExtraValue(value: any): any[];
|
|
9034
|
+
getMergedData(data: any): any;
|
|
8942
9035
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
8943
9036
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
8944
9037
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9016,6 +9109,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9016
9109
|
readonly lastSelectValue: string;
|
|
9017
9110
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9018
9111
|
splitExtraValue(value: any): any[];
|
|
9112
|
+
getMergedData(data: any): any;
|
|
9019
9113
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9020
9114
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
9021
9115
|
setIsControlled: (value: any) => void;
|
|
@@ -9096,6 +9190,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9096
9190
|
readonly lastSelectValue: string;
|
|
9097
9191
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9098
9192
|
splitExtraValue(value: any): any[];
|
|
9193
|
+
getMergedData(data: any): any;
|
|
9099
9194
|
} & {
|
|
9100
9195
|
focus: () => void;
|
|
9101
9196
|
blur: () => void;
|
|
@@ -9239,6 +9334,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9239
9334
|
readonly lastSelectValue: string;
|
|
9240
9335
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9241
9336
|
splitExtraValue(value: any): any[];
|
|
9337
|
+
getMergedData(data: any): any;
|
|
9242
9338
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9243
9339
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9244
9340
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9316,6 +9412,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9316
9412
|
readonly lastSelectValue: string;
|
|
9317
9413
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9318
9414
|
splitExtraValue(value: any): any[];
|
|
9415
|
+
getMergedData(data: any): any;
|
|
9319
9416
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9320
9417
|
removeSubFormItem: (item: {
|
|
9321
9418
|
id: string;
|
|
@@ -9397,6 +9494,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9397
9494
|
readonly lastSelectValue: string;
|
|
9398
9495
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9399
9496
|
splitExtraValue(value: any): any[];
|
|
9497
|
+
getMergedData(data: any): any;
|
|
9400
9498
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9401
9499
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9402
9500
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9474,6 +9572,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9474
9572
|
readonly lastSelectValue: string;
|
|
9475
9573
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9476
9574
|
splitExtraValue(value: any): any[];
|
|
9575
|
+
getMergedData(data: any): any;
|
|
9477
9576
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9478
9577
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
9479
9578
|
setIsControlled: (value: any) => void;
|
|
@@ -9558,6 +9657,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9558
9657
|
readonly lastSelectValue: string;
|
|
9559
9658
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9560
9659
|
splitExtraValue(value: any): any[];
|
|
9660
|
+
getMergedData(data: any): any;
|
|
9561
9661
|
} & {
|
|
9562
9662
|
focus: () => void;
|
|
9563
9663
|
blur: () => void;
|
|
@@ -9701,6 +9801,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9701
9801
|
readonly lastSelectValue: string;
|
|
9702
9802
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9703
9803
|
splitExtraValue(value: any): any[];
|
|
9804
|
+
getMergedData(data: any): any;
|
|
9704
9805
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9705
9806
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9706
9807
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9778,6 +9879,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9778
9879
|
readonly lastSelectValue: string;
|
|
9779
9880
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9780
9881
|
splitExtraValue(value: any): any[];
|
|
9882
|
+
getMergedData(data: any): any;
|
|
9781
9883
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9782
9884
|
removeSubFormItem: (item: {
|
|
9783
9885
|
id: string;
|
|
@@ -9859,6 +9961,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9859
9961
|
readonly lastSelectValue: string;
|
|
9860
9962
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9861
9963
|
splitExtraValue(value: any): any[];
|
|
9964
|
+
getMergedData(data: any): any;
|
|
9862
9965
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
9863
9966
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
9864
9967
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -9936,6 +10039,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9936
10039
|
readonly lastSelectValue: string;
|
|
9937
10040
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
9938
10041
|
splitExtraValue(value: any): any[];
|
|
10042
|
+
getMergedData(data: any): any;
|
|
9939
10043
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
9940
10044
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
9941
10045
|
setIsControlled: (value: any) => void;
|
|
@@ -10016,6 +10120,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10016
10120
|
readonly lastSelectValue: string;
|
|
10017
10121
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10018
10122
|
splitExtraValue(value: any): any[];
|
|
10123
|
+
getMergedData(data: any): any;
|
|
10019
10124
|
} & {
|
|
10020
10125
|
focus: () => void;
|
|
10021
10126
|
blur: () => void;
|
|
@@ -10159,6 +10264,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10159
10264
|
readonly lastSelectValue: string;
|
|
10160
10265
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10161
10266
|
splitExtraValue(value: any): any[];
|
|
10267
|
+
getMergedData(data: any): any;
|
|
10162
10268
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10163
10269
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10164
10270
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10236,6 +10342,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10236
10342
|
readonly lastSelectValue: string;
|
|
10237
10343
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10238
10344
|
splitExtraValue(value: any): any[];
|
|
10345
|
+
getMergedData(data: any): any;
|
|
10239
10346
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10240
10347
|
removeSubFormItem: (item: {
|
|
10241
10348
|
id: string;
|
|
@@ -10317,6 +10424,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10317
10424
|
readonly lastSelectValue: string;
|
|
10318
10425
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10319
10426
|
splitExtraValue(value: any): any[];
|
|
10427
|
+
getMergedData(data: any): any;
|
|
10320
10428
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10321
10429
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10322
10430
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10394,6 +10502,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10394
10502
|
readonly lastSelectValue: string;
|
|
10395
10503
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10396
10504
|
splitExtraValue(value: any): any[];
|
|
10505
|
+
getMergedData(data: any): any;
|
|
10397
10506
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10398
10507
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
10399
10508
|
setIsControlled: (value: any) => void;
|
|
@@ -10478,6 +10587,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10478
10587
|
readonly lastSelectValue: string;
|
|
10479
10588
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10480
10589
|
splitExtraValue(value: any): any[];
|
|
10590
|
+
getMergedData(data: any): any;
|
|
10481
10591
|
} & {
|
|
10482
10592
|
focus: () => void;
|
|
10483
10593
|
blur: () => void;
|
|
@@ -10621,6 +10731,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10621
10731
|
readonly lastSelectValue: string;
|
|
10622
10732
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10623
10733
|
splitExtraValue(value: any): any[];
|
|
10734
|
+
getMergedData(data: any): any;
|
|
10624
10735
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10625
10736
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10626
10737
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10698,6 +10809,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10698
10809
|
readonly lastSelectValue: string;
|
|
10699
10810
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10700
10811
|
splitExtraValue(value: any): any[];
|
|
10812
|
+
getMergedData(data: any): any;
|
|
10701
10813
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10702
10814
|
removeSubFormItem: (item: {
|
|
10703
10815
|
id: string;
|
|
@@ -10779,6 +10891,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10779
10891
|
readonly lastSelectValue: string;
|
|
10780
10892
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10781
10893
|
splitExtraValue(value: any): any[];
|
|
10894
|
+
getMergedData(data: any): any;
|
|
10782
10895
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
10783
10896
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
10784
10897
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -10856,6 +10969,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10856
10969
|
readonly lastSelectValue: string;
|
|
10857
10970
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10858
10971
|
splitExtraValue(value: any): any[];
|
|
10972
|
+
getMergedData(data: any): any;
|
|
10859
10973
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
10860
10974
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
10861
10975
|
setIsControlled: (value: any) => void;
|
|
@@ -10936,6 +11050,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10936
11050
|
readonly lastSelectValue: string;
|
|
10937
11051
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
10938
11052
|
splitExtraValue(value: any): any[];
|
|
11053
|
+
getMergedData(data: any): any;
|
|
10939
11054
|
} & {
|
|
10940
11055
|
focus: () => void;
|
|
10941
11056
|
blur: () => void;
|
|
@@ -11079,6 +11194,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11079
11194
|
readonly lastSelectValue: string;
|
|
11080
11195
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11081
11196
|
splitExtraValue(value: any): any[];
|
|
11197
|
+
getMergedData(data: any): any;
|
|
11082
11198
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11083
11199
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
11084
11200
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -11156,6 +11272,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11156
11272
|
readonly lastSelectValue: string;
|
|
11157
11273
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11158
11274
|
splitExtraValue(value: any): any[];
|
|
11275
|
+
getMergedData(data: any): any;
|
|
11159
11276
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
11160
11277
|
removeSubFormItem: (item: {
|
|
11161
11278
|
id: string;
|
|
@@ -11237,6 +11354,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11237
11354
|
readonly lastSelectValue: string;
|
|
11238
11355
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11239
11356
|
splitExtraValue(value: any): any[];
|
|
11357
|
+
getMergedData(data: any): any;
|
|
11240
11358
|
} & any & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11241
11359
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
11242
11360
|
path: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -11314,6 +11432,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11314
11432
|
readonly lastSelectValue: string;
|
|
11315
11433
|
getSelectedOptions: (value?: any, nodeValueArray?: any[] | undefined) => any;
|
|
11316
11434
|
splitExtraValue(value: any): any[];
|
|
11435
|
+
getMergedData(data: any): any;
|
|
11317
11436
|
} & any, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) => void;
|
|
11318
11437
|
loadAutoUpdateData: (api: import("..").Api, data?: object | undefined, silent?: boolean | undefined) => Promise<import("..").Payload>;
|
|
11319
11438
|
setIsControlled: (value: any) => void;
|