amis-core 3.1.1 → 3.2.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.d.ts +1 -1
- package/esm/RootRenderer.js +2 -2
- package/esm/SchemaRenderer.js +3 -2
- package/esm/Scoped.js +2 -1
- package/esm/StatusScoped.js +1 -1
- package/esm/WithRootStore.d.ts +4 -24
- package/esm/WithRootStore.js +12 -4
- package/esm/WithStore.js +23 -16
- package/esm/actions/Action.js +14 -14
- 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 +2 -2
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +2 -1
- package/esm/actions/DialogAction.d.ts +2 -0
- package/esm/actions/DialogAction.js +40 -23
- package/esm/actions/DrawerAction.js +4 -4
- 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/SwitchAction.js +1 -1
- package/esm/actions/ToastAction.js +1 -1
- package/esm/components/CustomStyle.js +1 -1
- package/esm/components/LazyComponent.js +1 -1
- package/esm/components/Overlay.js +2 -1
- package/esm/components/PopOver.js +2 -1
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.js +1 -1
- package/esm/index.d.ts +1 -0
- package/esm/index.js +6 -4
- package/esm/locale.js +1 -1
- package/esm/polyfills.d.ts +3 -0
- package/esm/polyfills.js +18 -0
- package/esm/renderers/Form.d.ts +1 -1
- package/esm/renderers/Form.js +17 -7
- package/esm/renderers/Item.d.ts +88 -59
- package/esm/renderers/Item.js +86 -40
- 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.d.ts +4 -24
- package/esm/renderers/wrapControl.js +51 -53
- package/esm/store/app.js +37 -3
- package/esm/store/combo.d.ts +168 -28
- package/esm/store/combo.js +1 -1
- package/esm/store/crud.d.ts +3 -2
- package/esm/store/crud.js +12 -5
- package/esm/store/form.d.ts +72 -12
- package/esm/store/form.js +4 -4
- package/esm/store/formItem.d.ts +2 -1
- package/esm/store/formItem.js +7 -2
- package/esm/store/iRenderer.js +2 -1
- package/esm/store/index.js +1 -1
- package/esm/store/list.d.ts +1 -0
- package/esm/store/list.js +8 -2
- 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 +2 -1
- package/esm/store/service.js +14 -9
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +145 -24
- package/esm/store/table.js +8 -2
- package/esm/store/table2.js +1 -1
- package/esm/theme.js +1 -1
- package/esm/types.d.ts +5 -2
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.d.ts +3 -2
- package/esm/utils/DataSchema.js +27 -7
- package/esm/utils/DataScope.d.ts +10 -3
- package/esm/utils/DataScope.js +50 -12
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.js +40 -32
- package/esm/utils/arraySlice.d.ts +1 -0
- package/esm/utils/arraySlice.js +76 -0
- package/esm/utils/attachmentAdpator.js +1 -1
- package/esm/utils/autobind.js +1 -1
- package/esm/utils/columnsSplit.js +1 -1
- package/esm/utils/dataMapping.js +26 -18
- 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 +4 -1
- package/esm/utils/errors.js +1 -1
- package/esm/utils/escapeHtml.js +1 -1
- package/esm/utils/filter-schema.js +1 -1
- 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 +1 -1
- package/esm/utils/helper.d.ts +8 -1
- package/esm/utils/helper.js +57 -10
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/index.d.ts +1 -0
- 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/memoryParse.js +1 -1
- package/esm/utils/normalizeLink.js +18 -9
- 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.js +1 -1
- 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 +1 -1
- 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.d.ts +1 -1
- package/lib/RootRenderer.js +2 -2
- package/lib/SchemaRenderer.js +3 -2
- package/lib/Scoped.js +2 -1
- package/lib/StatusScoped.js +1 -1
- package/lib/WithRootStore.d.ts +4 -24
- package/lib/WithRootStore.js +12 -4
- package/lib/WithStore.js +23 -16
- package/lib/actions/Action.js +14 -14
- 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 +2 -2
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +2 -1
- package/lib/actions/DialogAction.d.ts +2 -0
- package/lib/actions/DialogAction.js +40 -23
- package/lib/actions/DrawerAction.js +4 -4
- 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/SwitchAction.js +1 -1
- package/lib/actions/ToastAction.js +1 -1
- package/lib/components/CustomStyle.js +1 -1
- package/lib/components/LazyComponent.js +1 -1
- package/lib/components/Overlay.js +2 -1
- package/lib/components/PopOver.js +2 -1
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +7 -2
- package/lib/locale.js +1 -1
- package/lib/polyfills.d.ts +3 -0
- package/lib/polyfills.js +20 -0
- package/lib/renderers/Form.d.ts +1 -1
- package/lib/renderers/Form.js +17 -7
- package/lib/renderers/Item.d.ts +88 -59
- package/lib/renderers/Item.js +86 -40
- 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.d.ts +4 -24
- package/lib/renderers/wrapControl.js +51 -53
- package/lib/store/app.js +36 -2
- package/lib/store/combo.d.ts +168 -28
- package/lib/store/combo.js +1 -1
- package/lib/store/crud.d.ts +3 -2
- package/lib/store/crud.js +12 -5
- package/lib/store/form.d.ts +72 -12
- package/lib/store/form.js +4 -4
- package/lib/store/formItem.d.ts +2 -1
- package/lib/store/formItem.js +7 -2
- package/lib/store/iRenderer.js +2 -1
- package/lib/store/index.js +1 -1
- package/lib/store/list.d.ts +1 -0
- package/lib/store/list.js +8 -2
- 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 +2 -1
- package/lib/store/service.js +14 -9
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +145 -24
- package/lib/store/table.js +7 -1
- package/lib/store/table2.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.d.ts +5 -2
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.d.ts +3 -2
- package/lib/utils/DataSchema.js +27 -7
- package/lib/utils/DataScope.d.ts +10 -3
- package/lib/utils/DataScope.js +50 -11
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.js +39 -31
- package/lib/utils/arraySlice.d.ts +1 -0
- package/lib/utils/arraySlice.js +80 -0
- package/lib/utils/attachmentAdpator.js +1 -1
- package/lib/utils/autobind.js +1 -1
- package/lib/utils/columnsSplit.js +1 -1
- package/lib/utils/dataMapping.js +26 -18
- 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 +4 -1
- package/lib/utils/errors.js +1 -1
- package/lib/utils/escapeHtml.js +1 -1
- package/lib/utils/filter-schema.js +1 -1
- 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 +1 -1
- package/lib/utils/helper.d.ts +8 -1
- package/lib/utils/helper.js +57 -9
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/index.d.ts +1 -0
- 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/memoryParse.js +1 -1
- package/lib/utils/normalizeLink.js +18 -9
- 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.js +1 -1
- 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 +1 -1
- 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 +8 -3
package/esm/store/combo.d.ts
CHANGED
|
@@ -21,6 +21,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
21
21
|
isValueSchemaExp: boolean;
|
|
22
22
|
tmpValue: any;
|
|
23
23
|
emitedValue: any;
|
|
24
|
+
changeMotivation: string;
|
|
24
25
|
rules: any;
|
|
25
26
|
messages: any;
|
|
26
27
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -139,7 +140,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
139
140
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
140
141
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
141
142
|
closeDialog: (result?: any) => void;
|
|
142
|
-
changeTmpValue: (value: any) => void;
|
|
143
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
143
144
|
changeEmitedValue: (value: any) => void;
|
|
144
145
|
addSubFormItem: (item: {
|
|
145
146
|
id: string;
|
|
@@ -157,6 +158,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
157
158
|
isValueSchemaExp: boolean;
|
|
158
159
|
tmpValue: any;
|
|
159
160
|
emitedValue: any;
|
|
161
|
+
changeMotivation: string;
|
|
160
162
|
rules: any;
|
|
161
163
|
messages: any;
|
|
162
164
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -232,6 +234,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
232
234
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
233
235
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
234
236
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
237
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
235
238
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
236
239
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
237
240
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -303,6 +306,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
303
306
|
isValueSchemaExp: boolean;
|
|
304
307
|
tmpValue: any;
|
|
305
308
|
emitedValue: any;
|
|
309
|
+
changeMotivation: string;
|
|
306
310
|
rules: any;
|
|
307
311
|
messages: any;
|
|
308
312
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -378,6 +382,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
378
382
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
379
383
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
380
384
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
385
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
381
386
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
382
387
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
383
388
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -451,6 +456,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
451
456
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
452
457
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
453
458
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
459
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
454
460
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
455
461
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
456
462
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -565,7 +571,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
565
571
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
566
572
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
567
573
|
closeDialog: (result?: any) => void;
|
|
568
|
-
changeTmpValue: (value: any) => void;
|
|
574
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
569
575
|
changeEmitedValue: (value: any) => void;
|
|
570
576
|
addSubFormItem: (item: {
|
|
571
577
|
id: string;
|
|
@@ -583,6 +589,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
583
589
|
isValueSchemaExp: boolean;
|
|
584
590
|
tmpValue: any;
|
|
585
591
|
emitedValue: any;
|
|
592
|
+
changeMotivation: string;
|
|
586
593
|
rules: any;
|
|
587
594
|
messages: any;
|
|
588
595
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -658,6 +665,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
658
665
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
659
666
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
660
667
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
668
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
661
669
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
662
670
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
663
671
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -729,6 +737,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
729
737
|
isValueSchemaExp: boolean;
|
|
730
738
|
tmpValue: any;
|
|
731
739
|
emitedValue: any;
|
|
740
|
+
changeMotivation: string;
|
|
732
741
|
rules: any;
|
|
733
742
|
messages: any;
|
|
734
743
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -804,6 +813,7 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
804
813
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
805
814
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
806
815
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
816
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
807
817
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
808
818
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
809
819
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -905,6 +915,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
905
915
|
isValueSchemaExp: boolean;
|
|
906
916
|
tmpValue: any;
|
|
907
917
|
emitedValue: any;
|
|
918
|
+
changeMotivation: string;
|
|
908
919
|
rules: any;
|
|
909
920
|
messages: any;
|
|
910
921
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -1023,7 +1034,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1023
1034
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1024
1035
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
1025
1036
|
closeDialog: (result?: any) => void;
|
|
1026
|
-
changeTmpValue: (value: any) => void;
|
|
1037
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1027
1038
|
changeEmitedValue: (value: any) => void;
|
|
1028
1039
|
addSubFormItem: (item: {
|
|
1029
1040
|
id: string;
|
|
@@ -1041,6 +1052,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1041
1052
|
isValueSchemaExp: boolean;
|
|
1042
1053
|
tmpValue: any;
|
|
1043
1054
|
emitedValue: any;
|
|
1055
|
+
changeMotivation: string;
|
|
1044
1056
|
rules: any;
|
|
1045
1057
|
messages: any;
|
|
1046
1058
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -1116,6 +1128,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1116
1128
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1117
1129
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1118
1130
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1131
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1119
1132
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1120
1133
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1121
1134
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -1187,6 +1200,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1187
1200
|
isValueSchemaExp: boolean;
|
|
1188
1201
|
tmpValue: any;
|
|
1189
1202
|
emitedValue: any;
|
|
1203
|
+
changeMotivation: string;
|
|
1190
1204
|
rules: any;
|
|
1191
1205
|
messages: any;
|
|
1192
1206
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -1262,6 +1276,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1262
1276
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1263
1277
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1264
1278
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1279
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1265
1280
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1266
1281
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1267
1282
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -1335,6 +1350,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1335
1350
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1336
1351
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1337
1352
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1353
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1338
1354
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1339
1355
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1340
1356
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -1449,7 +1465,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1449
1465
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1450
1466
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
1451
1467
|
closeDialog: (result?: any) => void;
|
|
1452
|
-
changeTmpValue: (value: any) => void;
|
|
1468
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1453
1469
|
changeEmitedValue: (value: any) => void;
|
|
1454
1470
|
addSubFormItem: (item: {
|
|
1455
1471
|
id: string;
|
|
@@ -1467,6 +1483,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1467
1483
|
isValueSchemaExp: boolean;
|
|
1468
1484
|
tmpValue: any;
|
|
1469
1485
|
emitedValue: any;
|
|
1486
|
+
changeMotivation: string;
|
|
1470
1487
|
rules: any;
|
|
1471
1488
|
messages: any;
|
|
1472
1489
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -1542,6 +1559,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1542
1559
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1543
1560
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1544
1561
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1562
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1545
1563
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1546
1564
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1547
1565
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -1613,6 +1631,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1613
1631
|
isValueSchemaExp: boolean;
|
|
1614
1632
|
tmpValue: any;
|
|
1615
1633
|
emitedValue: any;
|
|
1634
|
+
changeMotivation: string;
|
|
1616
1635
|
rules: any;
|
|
1617
1636
|
messages: any;
|
|
1618
1637
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -1688,6 +1707,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1688
1707
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
1689
1708
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1690
1709
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
1710
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
1691
1711
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1692
1712
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1693
1713
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -1877,6 +1897,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1877
1897
|
isValueSchemaExp: boolean;
|
|
1878
1898
|
tmpValue: any;
|
|
1879
1899
|
emitedValue: any;
|
|
1900
|
+
changeMotivation: string;
|
|
1880
1901
|
rules: any;
|
|
1881
1902
|
messages: any;
|
|
1882
1903
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -1995,7 +2016,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1995
2016
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1996
2017
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
1997
2018
|
closeDialog: (result?: any) => void;
|
|
1998
|
-
changeTmpValue: (value: any) => void;
|
|
2019
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1999
2020
|
changeEmitedValue: (value: any) => void;
|
|
2000
2021
|
addSubFormItem: (item: {
|
|
2001
2022
|
id: string;
|
|
@@ -2013,6 +2034,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2013
2034
|
isValueSchemaExp: boolean;
|
|
2014
2035
|
tmpValue: any;
|
|
2015
2036
|
emitedValue: any;
|
|
2037
|
+
changeMotivation: string;
|
|
2016
2038
|
rules: any;
|
|
2017
2039
|
messages: any;
|
|
2018
2040
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -2088,6 +2110,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2088
2110
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2089
2111
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2090
2112
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2113
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2091
2114
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2092
2115
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2093
2116
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -2159,6 +2182,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2159
2182
|
isValueSchemaExp: boolean;
|
|
2160
2183
|
tmpValue: any;
|
|
2161
2184
|
emitedValue: any;
|
|
2185
|
+
changeMotivation: string;
|
|
2162
2186
|
rules: any;
|
|
2163
2187
|
messages: any;
|
|
2164
2188
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -2234,6 +2258,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2234
2258
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2235
2259
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2236
2260
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2261
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2237
2262
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2238
2263
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2239
2264
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -2307,6 +2332,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2307
2332
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2308
2333
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2309
2334
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2335
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2310
2336
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2311
2337
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2312
2338
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -2421,7 +2447,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2421
2447
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2422
2448
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
2423
2449
|
closeDialog: (result?: any) => void;
|
|
2424
|
-
changeTmpValue: (value: any) => void;
|
|
2450
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
2425
2451
|
changeEmitedValue: (value: any) => void;
|
|
2426
2452
|
addSubFormItem: (item: {
|
|
2427
2453
|
id: string;
|
|
@@ -2439,6 +2465,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2439
2465
|
isValueSchemaExp: boolean;
|
|
2440
2466
|
tmpValue: any;
|
|
2441
2467
|
emitedValue: any;
|
|
2468
|
+
changeMotivation: string;
|
|
2442
2469
|
rules: any;
|
|
2443
2470
|
messages: any;
|
|
2444
2471
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -2514,6 +2541,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2514
2541
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2515
2542
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2516
2543
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2544
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2517
2545
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2518
2546
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2519
2547
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -2585,6 +2613,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2585
2613
|
isValueSchemaExp: boolean;
|
|
2586
2614
|
tmpValue: any;
|
|
2587
2615
|
emitedValue: any;
|
|
2616
|
+
changeMotivation: string;
|
|
2588
2617
|
rules: any;
|
|
2589
2618
|
messages: any;
|
|
2590
2619
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -2660,6 +2689,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2660
2689
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2661
2690
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2662
2691
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2692
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2663
2693
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2664
2694
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2665
2695
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -2733,6 +2763,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2733
2763
|
isValueSchemaExp: boolean;
|
|
2734
2764
|
tmpValue: any;
|
|
2735
2765
|
emitedValue: any;
|
|
2766
|
+
changeMotivation: string;
|
|
2736
2767
|
rules: any;
|
|
2737
2768
|
messages: any;
|
|
2738
2769
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -2851,7 +2882,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2851
2882
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2852
2883
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
2853
2884
|
closeDialog: (result?: any) => void;
|
|
2854
|
-
changeTmpValue: (value: any) => void;
|
|
2885
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
2855
2886
|
changeEmitedValue: (value: any) => void;
|
|
2856
2887
|
addSubFormItem: (item: {
|
|
2857
2888
|
id: string;
|
|
@@ -2869,6 +2900,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2869
2900
|
isValueSchemaExp: boolean;
|
|
2870
2901
|
tmpValue: any;
|
|
2871
2902
|
emitedValue: any;
|
|
2903
|
+
changeMotivation: string;
|
|
2872
2904
|
rules: any;
|
|
2873
2905
|
messages: any;
|
|
2874
2906
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -2944,6 +2976,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2944
2976
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
2945
2977
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2946
2978
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
2979
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
2947
2980
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2948
2981
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2949
2982
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -3015,6 +3048,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3015
3048
|
isValueSchemaExp: boolean;
|
|
3016
3049
|
tmpValue: any;
|
|
3017
3050
|
emitedValue: any;
|
|
3051
|
+
changeMotivation: string;
|
|
3018
3052
|
rules: any;
|
|
3019
3053
|
messages: any;
|
|
3020
3054
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -3090,6 +3124,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3090
3124
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3091
3125
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3092
3126
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3127
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3093
3128
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3094
3129
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3095
3130
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -3163,6 +3198,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3163
3198
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3164
3199
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3165
3200
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3201
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3166
3202
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3167
3203
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3168
3204
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -3277,7 +3313,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3277
3313
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3278
3314
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
3279
3315
|
closeDialog: (result?: any) => void;
|
|
3280
|
-
changeTmpValue: (value: any) => void;
|
|
3316
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
3281
3317
|
changeEmitedValue: (value: any) => void;
|
|
3282
3318
|
addSubFormItem: (item: {
|
|
3283
3319
|
id: string;
|
|
@@ -3295,6 +3331,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3295
3331
|
isValueSchemaExp: boolean;
|
|
3296
3332
|
tmpValue: any;
|
|
3297
3333
|
emitedValue: any;
|
|
3334
|
+
changeMotivation: string;
|
|
3298
3335
|
rules: any;
|
|
3299
3336
|
messages: any;
|
|
3300
3337
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -3370,6 +3407,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3370
3407
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3371
3408
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3372
3409
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3410
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3373
3411
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3374
3412
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3375
3413
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -3441,6 +3479,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3441
3479
|
isValueSchemaExp: boolean;
|
|
3442
3480
|
tmpValue: any;
|
|
3443
3481
|
emitedValue: any;
|
|
3482
|
+
changeMotivation: string;
|
|
3444
3483
|
rules: any;
|
|
3445
3484
|
messages: any;
|
|
3446
3485
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -3516,6 +3555,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3516
3555
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3517
3556
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3518
3557
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3558
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3519
3559
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3520
3560
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3521
3561
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -3589,6 +3629,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3589
3629
|
isValueSchemaExp: boolean;
|
|
3590
3630
|
tmpValue: any;
|
|
3591
3631
|
emitedValue: any;
|
|
3632
|
+
changeMotivation: string;
|
|
3592
3633
|
rules: any;
|
|
3593
3634
|
messages: any;
|
|
3594
3635
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -3707,7 +3748,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3707
3748
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3708
3749
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
3709
3750
|
closeDialog: (result?: any) => void;
|
|
3710
|
-
changeTmpValue: (value: any) => void;
|
|
3751
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
3711
3752
|
changeEmitedValue: (value: any) => void;
|
|
3712
3753
|
addSubFormItem: (item: {
|
|
3713
3754
|
id: string;
|
|
@@ -3725,6 +3766,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3725
3766
|
isValueSchemaExp: boolean;
|
|
3726
3767
|
tmpValue: any;
|
|
3727
3768
|
emitedValue: any;
|
|
3769
|
+
changeMotivation: string;
|
|
3728
3770
|
rules: any;
|
|
3729
3771
|
messages: any;
|
|
3730
3772
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -3800,6 +3842,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3800
3842
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3801
3843
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3802
3844
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3845
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3803
3846
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3804
3847
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3805
3848
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -3871,6 +3914,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3871
3914
|
isValueSchemaExp: boolean;
|
|
3872
3915
|
tmpValue: any;
|
|
3873
3916
|
emitedValue: any;
|
|
3917
|
+
changeMotivation: string;
|
|
3874
3918
|
rules: any;
|
|
3875
3919
|
messages: any;
|
|
3876
3920
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -3946,6 +3990,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3946
3990
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
3947
3991
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3948
3992
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
3993
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
3949
3994
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3950
3995
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3951
3996
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4019,6 +4064,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4019
4064
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4020
4065
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4021
4066
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4067
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
4022
4068
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4023
4069
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4024
4070
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4133,7 +4179,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4133
4179
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4134
4180
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
4135
4181
|
closeDialog: (result?: any) => void;
|
|
4136
|
-
changeTmpValue: (value: any) => void;
|
|
4182
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
4137
4183
|
changeEmitedValue: (value: any) => void;
|
|
4138
4184
|
addSubFormItem: (item: {
|
|
4139
4185
|
id: string;
|
|
@@ -4151,6 +4197,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4151
4197
|
isValueSchemaExp: boolean;
|
|
4152
4198
|
tmpValue: any;
|
|
4153
4199
|
emitedValue: any;
|
|
4200
|
+
changeMotivation: string;
|
|
4154
4201
|
rules: any;
|
|
4155
4202
|
messages: any;
|
|
4156
4203
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -4226,6 +4273,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4226
4273
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4227
4274
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4228
4275
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4276
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
4229
4277
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4230
4278
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4231
4279
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4297,6 +4345,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4297
4345
|
isValueSchemaExp: boolean;
|
|
4298
4346
|
tmpValue: any;
|
|
4299
4347
|
emitedValue: any;
|
|
4348
|
+
changeMotivation: string;
|
|
4300
4349
|
rules: any;
|
|
4301
4350
|
messages: any;
|
|
4302
4351
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -4372,6 +4421,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4372
4421
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4373
4422
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4374
4423
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4424
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
4375
4425
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4376
4426
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4377
4427
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4450,6 +4500,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4450
4500
|
isValueSchemaExp: boolean;
|
|
4451
4501
|
tmpValue: any;
|
|
4452
4502
|
emitedValue: any;
|
|
4503
|
+
changeMotivation: string;
|
|
4453
4504
|
rules: any;
|
|
4454
4505
|
messages: any;
|
|
4455
4506
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -4568,7 +4619,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4568
4619
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4569
4620
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
4570
4621
|
closeDialog: (result?: any) => void;
|
|
4571
|
-
changeTmpValue: (value: any) => void;
|
|
4622
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
4572
4623
|
changeEmitedValue: (value: any) => void;
|
|
4573
4624
|
addSubFormItem: (item: {
|
|
4574
4625
|
id: string;
|
|
@@ -4586,6 +4637,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4586
4637
|
isValueSchemaExp: boolean;
|
|
4587
4638
|
tmpValue: any;
|
|
4588
4639
|
emitedValue: any;
|
|
4640
|
+
changeMotivation: string;
|
|
4589
4641
|
rules: any;
|
|
4590
4642
|
messages: any;
|
|
4591
4643
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -4661,6 +4713,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4661
4713
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4662
4714
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4663
4715
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4716
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
4664
4717
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4665
4718
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4666
4719
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4732,6 +4785,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4732
4785
|
isValueSchemaExp: boolean;
|
|
4733
4786
|
tmpValue: any;
|
|
4734
4787
|
emitedValue: any;
|
|
4788
|
+
changeMotivation: string;
|
|
4735
4789
|
rules: any;
|
|
4736
4790
|
messages: any;
|
|
4737
4791
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -4807,6 +4861,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4807
4861
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4808
4862
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4809
4863
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4864
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
4810
4865
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4811
4866
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4812
4867
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4880,6 +4935,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4880
4935
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
4881
4936
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4882
4937
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
4938
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
4883
4939
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4884
4940
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4885
4941
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -4994,7 +5050,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4994
5050
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4995
5051
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
4996
5052
|
closeDialog: (result?: any) => void;
|
|
4997
|
-
changeTmpValue: (value: any) => void;
|
|
5053
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
4998
5054
|
changeEmitedValue: (value: any) => void;
|
|
4999
5055
|
addSubFormItem: (item: {
|
|
5000
5056
|
id: string;
|
|
@@ -5012,6 +5068,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5012
5068
|
isValueSchemaExp: boolean;
|
|
5013
5069
|
tmpValue: any;
|
|
5014
5070
|
emitedValue: any;
|
|
5071
|
+
changeMotivation: string;
|
|
5015
5072
|
rules: any;
|
|
5016
5073
|
messages: any;
|
|
5017
5074
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -5087,6 +5144,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5087
5144
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5088
5145
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5089
5146
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5147
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
5090
5148
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5091
5149
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5092
5150
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -5158,6 +5216,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5158
5216
|
isValueSchemaExp: boolean;
|
|
5159
5217
|
tmpValue: any;
|
|
5160
5218
|
emitedValue: any;
|
|
5219
|
+
changeMotivation: string;
|
|
5161
5220
|
rules: any;
|
|
5162
5221
|
messages: any;
|
|
5163
5222
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -5233,6 +5292,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5233
5292
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5234
5293
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5235
5294
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5295
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
5236
5296
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5237
5297
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5238
5298
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -5306,6 +5366,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5306
5366
|
isValueSchemaExp: boolean;
|
|
5307
5367
|
tmpValue: any;
|
|
5308
5368
|
emitedValue: any;
|
|
5369
|
+
changeMotivation: string;
|
|
5309
5370
|
rules: any;
|
|
5310
5371
|
messages: any;
|
|
5311
5372
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -5424,7 +5485,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5424
5485
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5425
5486
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
5426
5487
|
closeDialog: (result?: any) => void;
|
|
5427
|
-
changeTmpValue: (value: any) => void;
|
|
5488
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
5428
5489
|
changeEmitedValue: (value: any) => void;
|
|
5429
5490
|
addSubFormItem: (item: {
|
|
5430
5491
|
id: string;
|
|
@@ -5442,6 +5503,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5442
5503
|
isValueSchemaExp: boolean;
|
|
5443
5504
|
tmpValue: any;
|
|
5444
5505
|
emitedValue: any;
|
|
5506
|
+
changeMotivation: string;
|
|
5445
5507
|
rules: any;
|
|
5446
5508
|
messages: any;
|
|
5447
5509
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -5517,6 +5579,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5517
5579
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5518
5580
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5519
5581
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5582
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
5520
5583
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5521
5584
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5522
5585
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -5588,6 +5651,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5588
5651
|
isValueSchemaExp: boolean;
|
|
5589
5652
|
tmpValue: any;
|
|
5590
5653
|
emitedValue: any;
|
|
5654
|
+
changeMotivation: string;
|
|
5591
5655
|
rules: any;
|
|
5592
5656
|
messages: any;
|
|
5593
5657
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -5663,6 +5727,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5663
5727
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5664
5728
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5665
5729
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5730
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
5666
5731
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5667
5732
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5668
5733
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -5736,6 +5801,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5736
5801
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5737
5802
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5738
5803
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5804
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
5739
5805
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5740
5806
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5741
5807
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -5850,7 +5916,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5850
5916
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5851
5917
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
5852
5918
|
closeDialog: (result?: any) => void;
|
|
5853
|
-
changeTmpValue: (value: any) => void;
|
|
5919
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
5854
5920
|
changeEmitedValue: (value: any) => void;
|
|
5855
5921
|
addSubFormItem: (item: {
|
|
5856
5922
|
id: string;
|
|
@@ -5868,6 +5934,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5868
5934
|
isValueSchemaExp: boolean;
|
|
5869
5935
|
tmpValue: any;
|
|
5870
5936
|
emitedValue: any;
|
|
5937
|
+
changeMotivation: string;
|
|
5871
5938
|
rules: any;
|
|
5872
5939
|
messages: any;
|
|
5873
5940
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -5943,6 +6010,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5943
6010
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
5944
6011
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
5945
6012
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6013
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
5946
6014
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5947
6015
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5948
6016
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -6014,6 +6082,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6014
6082
|
isValueSchemaExp: boolean;
|
|
6015
6083
|
tmpValue: any;
|
|
6016
6084
|
emitedValue: any;
|
|
6085
|
+
changeMotivation: string;
|
|
6017
6086
|
rules: any;
|
|
6018
6087
|
messages: any;
|
|
6019
6088
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -6089,6 +6158,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6089
6158
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6090
6159
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6091
6160
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6161
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
6092
6162
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6093
6163
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6094
6164
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -6162,6 +6232,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6162
6232
|
isValueSchemaExp: boolean;
|
|
6163
6233
|
tmpValue: any;
|
|
6164
6234
|
emitedValue: any;
|
|
6235
|
+
changeMotivation: string;
|
|
6165
6236
|
rules: any;
|
|
6166
6237
|
messages: any;
|
|
6167
6238
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -6280,7 +6351,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6280
6351
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6281
6352
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
6282
6353
|
closeDialog: (result?: any) => void;
|
|
6283
|
-
changeTmpValue: (value: any) => void;
|
|
6354
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
6284
6355
|
changeEmitedValue: (value: any) => void;
|
|
6285
6356
|
addSubFormItem: (item: {
|
|
6286
6357
|
id: string;
|
|
@@ -6298,6 +6369,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6298
6369
|
isValueSchemaExp: boolean;
|
|
6299
6370
|
tmpValue: any;
|
|
6300
6371
|
emitedValue: any;
|
|
6372
|
+
changeMotivation: string;
|
|
6301
6373
|
rules: any;
|
|
6302
6374
|
messages: any;
|
|
6303
6375
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -6373,6 +6445,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6373
6445
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6374
6446
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6375
6447
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6448
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
6376
6449
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6377
6450
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6378
6451
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -6444,6 +6517,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6444
6517
|
isValueSchemaExp: boolean;
|
|
6445
6518
|
tmpValue: any;
|
|
6446
6519
|
emitedValue: any;
|
|
6520
|
+
changeMotivation: string;
|
|
6447
6521
|
rules: any;
|
|
6448
6522
|
messages: any;
|
|
6449
6523
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -6519,6 +6593,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6519
6593
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6520
6594
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6521
6595
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6596
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
6522
6597
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6523
6598
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6524
6599
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -6592,6 +6667,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6592
6667
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6593
6668
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6594
6669
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6670
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
6595
6671
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6596
6672
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6597
6673
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -6706,7 +6782,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6706
6782
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6707
6783
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
6708
6784
|
closeDialog: (result?: any) => void;
|
|
6709
|
-
changeTmpValue: (value: any) => void;
|
|
6785
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
6710
6786
|
changeEmitedValue: (value: any) => void;
|
|
6711
6787
|
addSubFormItem: (item: {
|
|
6712
6788
|
id: string;
|
|
@@ -6724,6 +6800,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6724
6800
|
isValueSchemaExp: boolean;
|
|
6725
6801
|
tmpValue: any;
|
|
6726
6802
|
emitedValue: any;
|
|
6803
|
+
changeMotivation: string;
|
|
6727
6804
|
rules: any;
|
|
6728
6805
|
messages: any;
|
|
6729
6806
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -6799,6 +6876,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6799
6876
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6800
6877
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6801
6878
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6879
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
6802
6880
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6803
6881
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6804
6882
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -6870,6 +6948,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6870
6948
|
isValueSchemaExp: boolean;
|
|
6871
6949
|
tmpValue: any;
|
|
6872
6950
|
emitedValue: any;
|
|
6951
|
+
changeMotivation: string;
|
|
6873
6952
|
rules: any;
|
|
6874
6953
|
messages: any;
|
|
6875
6954
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -6945,6 +7024,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6945
7024
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
6946
7025
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
6947
7026
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7027
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
6948
7028
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6949
7029
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6950
7030
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -7137,6 +7217,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7137
7217
|
isValueSchemaExp: boolean;
|
|
7138
7218
|
tmpValue: any;
|
|
7139
7219
|
emitedValue: any;
|
|
7220
|
+
changeMotivation: string;
|
|
7140
7221
|
rules: any;
|
|
7141
7222
|
messages: any;
|
|
7142
7223
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -7255,7 +7336,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7255
7336
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7256
7337
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
7257
7338
|
closeDialog: (result?: any) => void;
|
|
7258
|
-
changeTmpValue: (value: any) => void;
|
|
7339
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
7259
7340
|
changeEmitedValue: (value: any) => void;
|
|
7260
7341
|
addSubFormItem: (item: {
|
|
7261
7342
|
id: string;
|
|
@@ -7273,6 +7354,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7273
7354
|
isValueSchemaExp: boolean;
|
|
7274
7355
|
tmpValue: any;
|
|
7275
7356
|
emitedValue: any;
|
|
7357
|
+
changeMotivation: string;
|
|
7276
7358
|
rules: any;
|
|
7277
7359
|
messages: any;
|
|
7278
7360
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -7348,6 +7430,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7348
7430
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7349
7431
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7350
7432
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7433
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7351
7434
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7352
7435
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7353
7436
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -7419,6 +7502,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7419
7502
|
isValueSchemaExp: boolean;
|
|
7420
7503
|
tmpValue: any;
|
|
7421
7504
|
emitedValue: any;
|
|
7505
|
+
changeMotivation: string;
|
|
7422
7506
|
rules: any;
|
|
7423
7507
|
messages: any;
|
|
7424
7508
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -7494,6 +7578,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7494
7578
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7495
7579
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7496
7580
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7581
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7497
7582
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7498
7583
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7499
7584
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -7567,6 +7652,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7567
7652
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7568
7653
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7569
7654
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7655
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7570
7656
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7571
7657
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7572
7658
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -7681,7 +7767,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7681
7767
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7682
7768
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
7683
7769
|
closeDialog: (result?: any) => void;
|
|
7684
|
-
changeTmpValue: (value: any) => void;
|
|
7770
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
7685
7771
|
changeEmitedValue: (value: any) => void;
|
|
7686
7772
|
addSubFormItem: (item: {
|
|
7687
7773
|
id: string;
|
|
@@ -7699,6 +7785,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7699
7785
|
isValueSchemaExp: boolean;
|
|
7700
7786
|
tmpValue: any;
|
|
7701
7787
|
emitedValue: any;
|
|
7788
|
+
changeMotivation: string;
|
|
7702
7789
|
rules: any;
|
|
7703
7790
|
messages: any;
|
|
7704
7791
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -7774,6 +7861,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7774
7861
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7775
7862
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7776
7863
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7864
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7777
7865
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7778
7866
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7779
7867
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -7845,6 +7933,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7845
7933
|
isValueSchemaExp: boolean;
|
|
7846
7934
|
tmpValue: any;
|
|
7847
7935
|
emitedValue: any;
|
|
7936
|
+
changeMotivation: string;
|
|
7848
7937
|
rules: any;
|
|
7849
7938
|
messages: any;
|
|
7850
7939
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -7920,6 +8009,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7920
8009
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
7921
8010
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
7922
8011
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8012
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
7923
8013
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7924
8014
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7925
8015
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -7993,6 +8083,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7993
8083
|
isValueSchemaExp: boolean;
|
|
7994
8084
|
tmpValue: any;
|
|
7995
8085
|
emitedValue: any;
|
|
8086
|
+
changeMotivation: string;
|
|
7996
8087
|
rules: any;
|
|
7997
8088
|
messages: any;
|
|
7998
8089
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -8111,7 +8202,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8111
8202
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8112
8203
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
8113
8204
|
closeDialog: (result?: any) => void;
|
|
8114
|
-
changeTmpValue: (value: any) => void;
|
|
8205
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8115
8206
|
changeEmitedValue: (value: any) => void;
|
|
8116
8207
|
addSubFormItem: (item: {
|
|
8117
8208
|
id: string;
|
|
@@ -8129,6 +8220,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8129
8220
|
isValueSchemaExp: boolean;
|
|
8130
8221
|
tmpValue: any;
|
|
8131
8222
|
emitedValue: any;
|
|
8223
|
+
changeMotivation: string;
|
|
8132
8224
|
rules: any;
|
|
8133
8225
|
messages: any;
|
|
8134
8226
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -8204,6 +8296,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8204
8296
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8205
8297
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8206
8298
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8299
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
8207
8300
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8208
8301
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8209
8302
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -8275,6 +8368,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8275
8368
|
isValueSchemaExp: boolean;
|
|
8276
8369
|
tmpValue: any;
|
|
8277
8370
|
emitedValue: any;
|
|
8371
|
+
changeMotivation: string;
|
|
8278
8372
|
rules: any;
|
|
8279
8373
|
messages: any;
|
|
8280
8374
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -8350,6 +8444,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8350
8444
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8351
8445
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8352
8446
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8447
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
8353
8448
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8354
8449
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8355
8450
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -8423,6 +8518,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8423
8518
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8424
8519
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8425
8520
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8521
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
8426
8522
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8427
8523
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8428
8524
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -8537,7 +8633,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8537
8633
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8538
8634
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
8539
8635
|
closeDialog: (result?: any) => void;
|
|
8540
|
-
changeTmpValue: (value: any) => void;
|
|
8636
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8541
8637
|
changeEmitedValue: (value: any) => void;
|
|
8542
8638
|
addSubFormItem: (item: {
|
|
8543
8639
|
id: string;
|
|
@@ -8555,6 +8651,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8555
8651
|
isValueSchemaExp: boolean;
|
|
8556
8652
|
tmpValue: any;
|
|
8557
8653
|
emitedValue: any;
|
|
8654
|
+
changeMotivation: string;
|
|
8558
8655
|
rules: any;
|
|
8559
8656
|
messages: any;
|
|
8560
8657
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -8630,6 +8727,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8630
8727
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8631
8728
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8632
8729
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8730
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
8633
8731
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8634
8732
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8635
8733
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -8701,6 +8799,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8701
8799
|
isValueSchemaExp: boolean;
|
|
8702
8800
|
tmpValue: any;
|
|
8703
8801
|
emitedValue: any;
|
|
8802
|
+
changeMotivation: string;
|
|
8704
8803
|
rules: any;
|
|
8705
8804
|
messages: any;
|
|
8706
8805
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -8776,6 +8875,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8776
8875
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
8777
8876
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8778
8877
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
8878
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
8779
8879
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8780
8880
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8781
8881
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -8849,6 +8949,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8849
8949
|
isValueSchemaExp: boolean;
|
|
8850
8950
|
tmpValue: any;
|
|
8851
8951
|
emitedValue: any;
|
|
8952
|
+
changeMotivation: string;
|
|
8852
8953
|
rules: any;
|
|
8853
8954
|
messages: any;
|
|
8854
8955
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -8967,7 +9068,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8967
9068
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8968
9069
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
8969
9070
|
closeDialog: (result?: any) => void;
|
|
8970
|
-
changeTmpValue: (value: any) => void;
|
|
9071
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8971
9072
|
changeEmitedValue: (value: any) => void;
|
|
8972
9073
|
addSubFormItem: (item: {
|
|
8973
9074
|
id: string;
|
|
@@ -8985,6 +9086,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8985
9086
|
isValueSchemaExp: boolean;
|
|
8986
9087
|
tmpValue: any;
|
|
8987
9088
|
emitedValue: any;
|
|
9089
|
+
changeMotivation: string;
|
|
8988
9090
|
rules: any;
|
|
8989
9091
|
messages: any;
|
|
8990
9092
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -9060,6 +9162,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9060
9162
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9061
9163
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9062
9164
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9165
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
9063
9166
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9064
9167
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9065
9168
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -9131,6 +9234,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9131
9234
|
isValueSchemaExp: boolean;
|
|
9132
9235
|
tmpValue: any;
|
|
9133
9236
|
emitedValue: any;
|
|
9237
|
+
changeMotivation: string;
|
|
9134
9238
|
rules: any;
|
|
9135
9239
|
messages: any;
|
|
9136
9240
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -9206,6 +9310,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9206
9310
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9207
9311
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9208
9312
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9313
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
9209
9314
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9210
9315
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9211
9316
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -9279,6 +9384,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9279
9384
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9280
9385
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9281
9386
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9387
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
9282
9388
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9283
9389
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9284
9390
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -9393,7 +9499,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9393
9499
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9394
9500
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
9395
9501
|
closeDialog: (result?: any) => void;
|
|
9396
|
-
changeTmpValue: (value: any) => void;
|
|
9502
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
9397
9503
|
changeEmitedValue: (value: any) => void;
|
|
9398
9504
|
addSubFormItem: (item: {
|
|
9399
9505
|
id: string;
|
|
@@ -9411,6 +9517,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9411
9517
|
isValueSchemaExp: boolean;
|
|
9412
9518
|
tmpValue: any;
|
|
9413
9519
|
emitedValue: any;
|
|
9520
|
+
changeMotivation: string;
|
|
9414
9521
|
rules: any;
|
|
9415
9522
|
messages: any;
|
|
9416
9523
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -9486,6 +9593,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9486
9593
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9487
9594
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9488
9595
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9596
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
9489
9597
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9490
9598
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9491
9599
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -9557,6 +9665,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9557
9665
|
isValueSchemaExp: boolean;
|
|
9558
9666
|
tmpValue: any;
|
|
9559
9667
|
emitedValue: any;
|
|
9668
|
+
changeMotivation: string;
|
|
9560
9669
|
rules: any;
|
|
9561
9670
|
messages: any;
|
|
9562
9671
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -9632,6 +9741,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9632
9741
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9633
9742
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9634
9743
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9744
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
9635
9745
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9636
9746
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9637
9747
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -9710,6 +9820,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9710
9820
|
isValueSchemaExp: boolean;
|
|
9711
9821
|
tmpValue: any;
|
|
9712
9822
|
emitedValue: any;
|
|
9823
|
+
changeMotivation: string;
|
|
9713
9824
|
rules: any;
|
|
9714
9825
|
messages: any;
|
|
9715
9826
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -9828,7 +9939,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9828
9939
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9829
9940
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
9830
9941
|
closeDialog: (result?: any) => void;
|
|
9831
|
-
changeTmpValue: (value: any) => void;
|
|
9942
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
9832
9943
|
changeEmitedValue: (value: any) => void;
|
|
9833
9944
|
addSubFormItem: (item: {
|
|
9834
9945
|
id: string;
|
|
@@ -9846,6 +9957,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9846
9957
|
isValueSchemaExp: boolean;
|
|
9847
9958
|
tmpValue: any;
|
|
9848
9959
|
emitedValue: any;
|
|
9960
|
+
changeMotivation: string;
|
|
9849
9961
|
rules: any;
|
|
9850
9962
|
messages: any;
|
|
9851
9963
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -9921,6 +10033,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9921
10033
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
9922
10034
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
9923
10035
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10036
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
9924
10037
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9925
10038
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9926
10039
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -9992,6 +10105,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9992
10105
|
isValueSchemaExp: boolean;
|
|
9993
10106
|
tmpValue: any;
|
|
9994
10107
|
emitedValue: any;
|
|
10108
|
+
changeMotivation: string;
|
|
9995
10109
|
rules: any;
|
|
9996
10110
|
messages: any;
|
|
9997
10111
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -10067,6 +10181,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10067
10181
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10068
10182
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10069
10183
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10184
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10070
10185
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10071
10186
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10072
10187
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -10140,6 +10255,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10140
10255
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10141
10256
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10142
10257
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10258
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10143
10259
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10144
10260
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10145
10261
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -10254,7 +10370,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10254
10370
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10255
10371
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
10256
10372
|
closeDialog: (result?: any) => void;
|
|
10257
|
-
changeTmpValue: (value: any) => void;
|
|
10373
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
10258
10374
|
changeEmitedValue: (value: any) => void;
|
|
10259
10375
|
addSubFormItem: (item: {
|
|
10260
10376
|
id: string;
|
|
@@ -10272,6 +10388,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10272
10388
|
isValueSchemaExp: boolean;
|
|
10273
10389
|
tmpValue: any;
|
|
10274
10390
|
emitedValue: any;
|
|
10391
|
+
changeMotivation: string;
|
|
10275
10392
|
rules: any;
|
|
10276
10393
|
messages: any;
|
|
10277
10394
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -10347,6 +10464,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10347
10464
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10348
10465
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10349
10466
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10467
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10350
10468
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10351
10469
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10352
10470
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -10418,6 +10536,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10418
10536
|
isValueSchemaExp: boolean;
|
|
10419
10537
|
tmpValue: any;
|
|
10420
10538
|
emitedValue: any;
|
|
10539
|
+
changeMotivation: string;
|
|
10421
10540
|
rules: any;
|
|
10422
10541
|
messages: any;
|
|
10423
10542
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -10493,6 +10612,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10493
10612
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10494
10613
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10495
10614
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10615
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10496
10616
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10497
10617
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10498
10618
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -10566,6 +10686,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10566
10686
|
isValueSchemaExp: boolean;
|
|
10567
10687
|
tmpValue: any;
|
|
10568
10688
|
emitedValue: any;
|
|
10689
|
+
changeMotivation: string;
|
|
10569
10690
|
rules: any;
|
|
10570
10691
|
messages: any;
|
|
10571
10692
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -10684,7 +10805,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10684
10805
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10685
10806
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
10686
10807
|
closeDialog: (result?: any) => void;
|
|
10687
|
-
changeTmpValue: (value: any) => void;
|
|
10808
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
10688
10809
|
changeEmitedValue: (value: any) => void;
|
|
10689
10810
|
addSubFormItem: (item: {
|
|
10690
10811
|
id: string;
|
|
@@ -10702,6 +10823,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10702
10823
|
isValueSchemaExp: boolean;
|
|
10703
10824
|
tmpValue: any;
|
|
10704
10825
|
emitedValue: any;
|
|
10826
|
+
changeMotivation: string;
|
|
10705
10827
|
rules: any;
|
|
10706
10828
|
messages: any;
|
|
10707
10829
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -10777,6 +10899,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10777
10899
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10778
10900
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10779
10901
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10902
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10780
10903
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10781
10904
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10782
10905
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -10848,6 +10971,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10848
10971
|
isValueSchemaExp: boolean;
|
|
10849
10972
|
tmpValue: any;
|
|
10850
10973
|
emitedValue: any;
|
|
10974
|
+
changeMotivation: string;
|
|
10851
10975
|
rules: any;
|
|
10852
10976
|
messages: any;
|
|
10853
10977
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -10923,6 +11047,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10923
11047
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10924
11048
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10925
11049
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11050
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10926
11051
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10927
11052
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10928
11053
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -10996,6 +11121,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10996
11121
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
10997
11122
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
10998
11123
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11124
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
10999
11125
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11000
11126
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11001
11127
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -11110,7 +11236,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11110
11236
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11111
11237
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
11112
11238
|
closeDialog: (result?: any) => void;
|
|
11113
|
-
changeTmpValue: (value: any) => void;
|
|
11239
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
11114
11240
|
changeEmitedValue: (value: any) => void;
|
|
11115
11241
|
addSubFormItem: (item: {
|
|
11116
11242
|
id: string;
|
|
@@ -11128,6 +11254,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11128
11254
|
isValueSchemaExp: boolean;
|
|
11129
11255
|
tmpValue: any;
|
|
11130
11256
|
emitedValue: any;
|
|
11257
|
+
changeMotivation: string;
|
|
11131
11258
|
rules: any;
|
|
11132
11259
|
messages: any;
|
|
11133
11260
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -11203,6 +11330,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11203
11330
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
11204
11331
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11205
11332
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11333
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11206
11334
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11207
11335
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11208
11336
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -11274,6 +11402,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11274
11402
|
isValueSchemaExp: boolean;
|
|
11275
11403
|
tmpValue: any;
|
|
11276
11404
|
emitedValue: any;
|
|
11405
|
+
changeMotivation: string;
|
|
11277
11406
|
rules: any;
|
|
11278
11407
|
messages: any;
|
|
11279
11408
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -11349,6 +11478,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11349
11478
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
11350
11479
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11351
11480
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11481
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11352
11482
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11353
11483
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11354
11484
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -11422,6 +11552,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11422
11552
|
isValueSchemaExp: boolean;
|
|
11423
11553
|
tmpValue: any;
|
|
11424
11554
|
emitedValue: any;
|
|
11555
|
+
changeMotivation: string;
|
|
11425
11556
|
rules: any;
|
|
11426
11557
|
messages: any;
|
|
11427
11558
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -11540,7 +11671,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11540
11671
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11541
11672
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
11542
11673
|
closeDialog: (result?: any) => void;
|
|
11543
|
-
changeTmpValue: (value: any) => void;
|
|
11674
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
11544
11675
|
changeEmitedValue: (value: any) => void;
|
|
11545
11676
|
addSubFormItem: (item: {
|
|
11546
11677
|
id: string;
|
|
@@ -11558,6 +11689,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11558
11689
|
isValueSchemaExp: boolean;
|
|
11559
11690
|
tmpValue: any;
|
|
11560
11691
|
emitedValue: any;
|
|
11692
|
+
changeMotivation: string;
|
|
11561
11693
|
rules: any;
|
|
11562
11694
|
messages: any;
|
|
11563
11695
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -11633,6 +11765,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11633
11765
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
11634
11766
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11635
11767
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11768
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11636
11769
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11637
11770
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11638
11771
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -11704,6 +11837,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11704
11837
|
isValueSchemaExp: boolean;
|
|
11705
11838
|
tmpValue: any;
|
|
11706
11839
|
emitedValue: any;
|
|
11840
|
+
changeMotivation: string;
|
|
11707
11841
|
rules: any;
|
|
11708
11842
|
messages: any;
|
|
11709
11843
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -11779,6 +11913,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11779
11913
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
11780
11914
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11781
11915
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11916
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11782
11917
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11783
11918
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11784
11919
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -11852,6 +11987,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11852
11987
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
11853
11988
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11854
11989
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
11990
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11855
11991
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11856
11992
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11857
11993
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -11966,7 +12102,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11966
12102
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11967
12103
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
11968
12104
|
closeDialog: (result?: any) => void;
|
|
11969
|
-
changeTmpValue: (value: any) => void;
|
|
12105
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
11970
12106
|
changeEmitedValue: (value: any) => void;
|
|
11971
12107
|
addSubFormItem: (item: {
|
|
11972
12108
|
id: string;
|
|
@@ -11984,6 +12120,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11984
12120
|
isValueSchemaExp: boolean;
|
|
11985
12121
|
tmpValue: any;
|
|
11986
12122
|
emitedValue: any;
|
|
12123
|
+
changeMotivation: string;
|
|
11987
12124
|
rules: any;
|
|
11988
12125
|
messages: any;
|
|
11989
12126
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -12059,6 +12196,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12059
12196
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
12060
12197
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
12061
12198
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
12199
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12062
12200
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12063
12201
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12064
12202
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
@@ -12130,6 +12268,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12130
12268
|
isValueSchemaExp: boolean;
|
|
12131
12269
|
tmpValue: any;
|
|
12132
12270
|
emitedValue: any;
|
|
12271
|
+
changeMotivation: string;
|
|
12133
12272
|
rules: any;
|
|
12134
12273
|
messages: any;
|
|
12135
12274
|
errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
|
|
@@ -12205,6 +12344,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12205
12344
|
isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
|
|
12206
12345
|
tmpValue: import("mobx-state-tree").IType<any, any, any>;
|
|
12207
12346
|
emitedValue: import("mobx-state-tree").IType<any, any, any>;
|
|
12347
|
+
changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12208
12348
|
rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12209
12349
|
messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12210
12350
|
errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|