amis-core 6.6.0 → 6.8.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 +4 -3
- package/esm/RootRenderer.d.ts +1 -1
- package/esm/RootRenderer.js +1 -1
- package/esm/SchemaRenderer.d.ts +0 -1
- package/esm/SchemaRenderer.js +19 -10
- package/esm/Scoped.js +2 -1
- package/esm/StatusScoped.js +1 -1
- package/esm/WithRootStore.js +1 -1
- package/esm/WithStore.js +8 -8
- package/esm/actions/Action.js +33 -31
- 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 +55 -48
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +12 -3
- package/esm/actions/DialogAction.js +3 -1
- package/esm/actions/DrawerAction.js +2 -1
- package/esm/actions/EmailAction.js +1 -1
- package/esm/actions/EventAction.js +2 -1
- package/esm/actions/LinkAction.js +1 -1
- package/esm/actions/LoopAction.js +2 -1
- package/esm/actions/PageAction.js +1 -1
- package/esm/actions/ParallelAction.js +1 -1
- package/esm/actions/PrintAction.js +1 -1
- package/esm/actions/StatusAction.js +1 -1
- package/esm/actions/SwitchAction.js +1 -1
- package/esm/actions/ToastAction.js +1 -1
- package/esm/actions/WaitAction.js +1 -1
- package/esm/components/CustomStyle.js +1 -1
- package/esm/components/ErrorBoundary.js +1 -1
- package/esm/components/LazyComponent.js +1 -1
- package/esm/components/Overlay.js +2 -1
- package/esm/components/PopOver.d.ts +2 -0
- package/esm/components/PopOver.js +5 -4
- package/esm/env.d.ts +4 -0
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.js +1 -1
- package/esm/index.js +3 -3
- package/esm/locale.js +2 -1
- package/esm/polyfills.js +1 -1
- package/esm/renderers/Form.js +123 -25
- package/esm/renderers/Item.d.ts +97 -12
- package/esm/renderers/Item.js +180 -126
- package/esm/renderers/Options.js +2 -1
- package/esm/renderers/Placeholder.js +1 -1
- package/esm/renderers/builtin.js +1 -1
- package/esm/renderers/register.js +1 -1
- package/esm/renderers/wrapControl.js +2 -1
- package/esm/store/app.d.ts +1 -0
- package/esm/store/app.js +2 -1
- package/esm/store/combo.d.ts +411 -0
- package/esm/store/combo.js +1 -1
- package/esm/store/crud.d.ts +1 -0
- package/esm/store/crud.js +2 -1
- package/esm/store/form.d.ts +171 -0
- package/esm/store/form.js +2 -1
- package/esm/store/formItem.d.ts +5 -0
- package/esm/store/formItem.js +30 -8
- package/esm/store/iRenderer.d.ts +1 -0
- package/esm/store/iRenderer.js +8 -3
- package/esm/store/index.js +1 -1
- package/esm/store/list.d.ts +1 -0
- package/esm/store/list.js +1 -1
- package/esm/store/manager.js +1 -1
- package/esm/store/modal.d.ts +1 -0
- package/esm/store/modal.js +1 -1
- package/esm/store/node.js +1 -1
- package/esm/store/pagination.d.ts +1 -0
- package/esm/store/pagination.js +2 -1
- package/esm/store/root.d.ts +1 -0
- package/esm/store/root.js +2 -1
- package/esm/store/service.d.ts +1 -0
- package/esm/store/service.js +2 -1
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +382 -21
- package/esm/store/table.js +84 -54
- package/esm/store/table2.d.ts +1 -0
- package/esm/store/table2.js +1 -1
- package/esm/theme.js +1 -1
- package/esm/types.d.ts +1 -1
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.js +1 -1
- package/esm/utils/DataScope.js +2 -2
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.js +2 -2
- package/esm/utils/arraySlice.js +1 -1
- package/esm/utils/attachmentAdpator.js +1 -1
- package/esm/utils/autobind.js +1 -1
- package/esm/utils/browser.js +1 -1
- package/esm/utils/columnsSplit.js +1 -1
- package/esm/utils/concatData.js +1 -1
- package/esm/utils/dataMapping.js +1 -1
- package/esm/utils/date.js +1 -1
- package/esm/utils/debug.js +17 -3
- package/esm/utils/decodeEntity.js +1 -1
- package/esm/utils/dom.js +1 -1
- package/esm/utils/errors.js +1 -1
- package/esm/utils/escapeHtml.js +1 -1
- package/esm/utils/filter-schema.js +1 -1
- package/esm/utils/filter.js +1 -1
- package/esm/utils/formatDuration.js +1 -1
- package/esm/utils/formula.js +2 -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 +5 -1
- package/esm/utils/helper.js +37 -8
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/isPureVariable.js +2 -2
- package/esm/utils/json-schema-2-amis-schema.js +1 -1
- package/esm/utils/keyToPath.js +1 -1
- package/esm/utils/labelToString.js +1 -1
- package/esm/utils/makeSorter.js +1 -1
- package/esm/utils/math.js +1 -1
- package/esm/utils/memoryParse.d.ts +2 -1
- package/esm/utils/memoryParse.js +10 -6
- package/esm/utils/normalizeLink.js +1 -1
- package/esm/utils/normalizeOptions.js +1 -1
- package/esm/utils/object.d.ts +2 -4
- 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/printElement.js +1 -1
- package/esm/utils/renderer-event.js +5 -3
- package/esm/utils/replaceText.js +1 -1
- package/esm/utils/resize-sensor.js +30 -1
- package/esm/utils/resolveCondition.js +2 -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.d.ts +4 -2
- package/esm/utils/style-helper.js +27 -13
- package/esm/utils/style.js +2 -1
- package/esm/utils/toNumber.js +1 -1
- package/esm/utils/tokenize.js +1 -1
- package/esm/utils/tpl-builtin.js +2 -1
- package/esm/utils/tpl-lodash.js +2 -1
- package/esm/utils/tpl.js +1 -1
- package/esm/utils/uncontrollable.js +1 -1
- package/esm/utils/validateId.js +3 -3
- package/esm/utils/validations.js +2 -1
- package/esm/utils/visitedCache.d.ts +46 -0
- package/esm/utils/visitedCache.js +124 -0
- package/lib/Root.js +4 -3
- package/lib/RootRenderer.js +1 -1
- package/lib/SchemaRenderer.d.ts +0 -1
- package/lib/SchemaRenderer.js +19 -10
- package/lib/Scoped.js +2 -1
- package/lib/StatusScoped.js +1 -1
- package/lib/WithRootStore.js +1 -1
- package/lib/WithStore.js +8 -8
- package/lib/actions/Action.js +33 -31
- 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 +55 -48
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +12 -3
- package/lib/actions/DialogAction.js +3 -1
- package/lib/actions/DrawerAction.js +2 -1
- package/lib/actions/EmailAction.js +1 -1
- package/lib/actions/EventAction.js +2 -1
- package/lib/actions/LinkAction.js +1 -1
- package/lib/actions/LoopAction.js +2 -1
- package/lib/actions/PageAction.js +1 -1
- package/lib/actions/ParallelAction.js +1 -1
- package/lib/actions/PrintAction.js +1 -1
- package/lib/actions/StatusAction.js +1 -1
- package/lib/actions/SwitchAction.js +1 -1
- package/lib/actions/ToastAction.js +1 -1
- package/lib/actions/WaitAction.js +1 -1
- package/lib/components/CustomStyle.js +1 -1
- package/lib/components/ErrorBoundary.js +1 -1
- package/lib/components/LazyComponent.js +1 -1
- package/lib/components/Overlay.js +2 -1
- package/lib/components/PopOver.d.ts +2 -0
- package/lib/components/PopOver.js +5 -4
- package/lib/env.d.ts +4 -0
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.js +1 -1
- package/lib/index.js +3 -2
- package/lib/locale.js +2 -1
- package/lib/polyfills.js +1 -1
- package/lib/renderers/Form.js +122 -24
- package/lib/renderers/Item.d.ts +97 -12
- package/lib/renderers/Item.js +179 -125
- package/lib/renderers/Options.js +2 -1
- package/lib/renderers/Placeholder.js +1 -1
- package/lib/renderers/builtin.js +1 -1
- package/lib/renderers/register.js +1 -1
- package/lib/renderers/wrapControl.js +2 -1
- package/lib/store/app.d.ts +1 -0
- package/lib/store/app.js +2 -1
- package/lib/store/combo.d.ts +435 -24
- package/lib/store/combo.js +1 -1
- package/lib/store/crud.d.ts +1 -0
- package/lib/store/crud.js +2 -1
- package/lib/store/form.d.ts +181 -10
- package/lib/store/form.js +2 -1
- package/lib/store/formItem.d.ts +5 -0
- package/lib/store/formItem.js +30 -8
- package/lib/store/iRenderer.d.ts +1 -0
- package/lib/store/iRenderer.js +8 -3
- package/lib/store/index.js +1 -1
- package/lib/store/list.d.ts +1 -0
- package/lib/store/list.js +1 -1
- package/lib/store/manager.js +1 -1
- package/lib/store/modal.d.ts +1 -0
- package/lib/store/modal.js +1 -1
- package/lib/store/node.js +1 -1
- package/lib/store/pagination.d.ts +1 -0
- package/lib/store/pagination.js +2 -1
- package/lib/store/root.d.ts +1 -0
- package/lib/store/root.js +2 -1
- package/lib/store/service.d.ts +1 -0
- package/lib/store/service.js +2 -1
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +402 -41
- package/lib/store/table.js +84 -54
- package/lib/store/table2.d.ts +1 -0
- package/lib/store/table2.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.d.ts +1 -1
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.js +1 -1
- package/lib/utils/DataScope.js +2 -2
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.js +2 -2
- package/lib/utils/arraySlice.js +1 -1
- package/lib/utils/attachmentAdpator.js +1 -1
- package/lib/utils/autobind.js +1 -1
- package/lib/utils/browser.js +1 -1
- package/lib/utils/columnsSplit.js +1 -1
- package/lib/utils/concatData.js +1 -1
- package/lib/utils/dataMapping.js +1 -1
- package/lib/utils/date.js +1 -1
- package/lib/utils/debug.js +17 -3
- package/lib/utils/decodeEntity.js +1 -1
- package/lib/utils/dom.js +1 -1
- package/lib/utils/errors.js +1 -1
- package/lib/utils/escapeHtml.js +1 -1
- package/lib/utils/filter-schema.js +1 -1
- package/lib/utils/filter.js +1 -1
- package/lib/utils/formatDuration.js +1 -1
- package/lib/utils/formula.js +2 -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 +5 -1
- package/lib/utils/helper.js +36 -6
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/isPureVariable.js +2 -2
- package/lib/utils/json-schema-2-amis-schema.js +1 -1
- package/lib/utils/keyToPath.js +1 -1
- package/lib/utils/labelToString.js +1 -1
- package/lib/utils/makeSorter.js +1 -1
- package/lib/utils/math.js +1 -1
- package/lib/utils/memoryParse.d.ts +2 -1
- package/lib/utils/memoryParse.js +10 -6
- package/lib/utils/normalizeLink.js +1 -1
- package/lib/utils/normalizeOptions.js +1 -1
- package/lib/utils/object.d.ts +2 -4
- 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/printElement.js +1 -1
- package/lib/utils/renderer-event.js +5 -3
- package/lib/utils/replaceText.js +1 -1
- package/lib/utils/resize-sensor.js +30 -1
- package/lib/utils/resolveCondition.js +2 -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.d.ts +4 -2
- package/lib/utils/style-helper.js +27 -13
- package/lib/utils/style.js +2 -1
- package/lib/utils/toNumber.js +1 -1
- package/lib/utils/tokenize.js +1 -1
- package/lib/utils/tpl-builtin.js +2 -1
- package/lib/utils/tpl-lodash.js +2 -1
- package/lib/utils/tpl.js +1 -1
- package/lib/utils/uncontrollable.js +1 -1
- package/lib/utils/validateId.js +3 -3
- package/lib/utils/validations.js +2 -1
- package/lib/utils/visitedCache.d.ts +46 -0
- package/lib/utils/visitedCache.js +128 -0
- package/package.json +2 -2
package/esm/store/combo.d.ts
CHANGED
|
@@ -67,6 +67,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
67
67
|
rowIndex: any;
|
|
68
68
|
pagination: any;
|
|
69
69
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
70
|
+
popOverOpen: boolean;
|
|
71
|
+
popOverData: any;
|
|
72
|
+
popOverSchema: any;
|
|
70
73
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
71
74
|
readonly parentStore: any;
|
|
72
75
|
readonly __: any;
|
|
@@ -167,6 +170,8 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
167
170
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
168
171
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
169
172
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
173
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
174
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
170
175
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
171
176
|
changeEmitedValue: (value: any) => void;
|
|
172
177
|
addSubFormItem: (item: {
|
|
@@ -231,6 +236,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
231
236
|
rowIndex: any;
|
|
232
237
|
pagination: any;
|
|
233
238
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
239
|
+
popOverOpen: boolean;
|
|
240
|
+
popOverData: any;
|
|
241
|
+
popOverSchema: any;
|
|
234
242
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
235
243
|
readonly parentStore: any;
|
|
236
244
|
readonly __: any;
|
|
@@ -317,6 +325,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
317
325
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
318
326
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
319
327
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
328
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
329
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
330
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
320
331
|
}, {
|
|
321
332
|
readonly parentStore: any;
|
|
322
333
|
readonly __: any;
|
|
@@ -407,6 +418,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
407
418
|
rowIndex: any;
|
|
408
419
|
pagination: any;
|
|
409
420
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
421
|
+
popOverOpen: boolean;
|
|
422
|
+
popOverData: any;
|
|
423
|
+
popOverSchema: any;
|
|
410
424
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
411
425
|
readonly parentStore: any;
|
|
412
426
|
readonly __: any;
|
|
@@ -493,6 +507,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
493
507
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
494
508
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
495
509
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
510
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
511
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
512
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
496
513
|
}, {
|
|
497
514
|
readonly parentStore: any;
|
|
498
515
|
readonly __: any;
|
|
@@ -585,6 +602,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
585
602
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
586
603
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
587
604
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
605
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
606
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
607
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
588
608
|
}, {
|
|
589
609
|
readonly parentStore: any;
|
|
590
610
|
readonly __: any;
|
|
@@ -685,6 +705,8 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
685
705
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
686
706
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
687
707
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
708
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
709
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
688
710
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
689
711
|
changeEmitedValue: (value: any) => void;
|
|
690
712
|
addSubFormItem: (item: {
|
|
@@ -749,6 +771,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
749
771
|
rowIndex: any;
|
|
750
772
|
pagination: any;
|
|
751
773
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
774
|
+
popOverOpen: boolean;
|
|
775
|
+
popOverData: any;
|
|
776
|
+
popOverSchema: any;
|
|
752
777
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
753
778
|
readonly parentStore: any;
|
|
754
779
|
readonly __: any;
|
|
@@ -835,6 +860,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
835
860
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
836
861
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
837
862
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
863
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
864
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
865
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
838
866
|
}, {
|
|
839
867
|
readonly parentStore: any;
|
|
840
868
|
readonly __: any;
|
|
@@ -925,6 +953,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
925
953
|
rowIndex: any;
|
|
926
954
|
pagination: any;
|
|
927
955
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
956
|
+
popOverOpen: boolean;
|
|
957
|
+
popOverData: any;
|
|
958
|
+
popOverSchema: any;
|
|
928
959
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
929
960
|
readonly parentStore: any;
|
|
930
961
|
readonly __: any;
|
|
@@ -1011,6 +1042,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
1011
1042
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1012
1043
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1013
1044
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1045
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1046
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1047
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1014
1048
|
}, {
|
|
1015
1049
|
readonly parentStore: any;
|
|
1016
1050
|
readonly __: any;
|
|
@@ -1063,6 +1097,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1063
1097
|
initedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
1064
1098
|
updatedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
1065
1099
|
pristine: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1100
|
+
pristineRaw: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1066
1101
|
upStreamData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1067
1102
|
action: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1068
1103
|
dialogOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
@@ -1136,6 +1171,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1136
1171
|
rowIndex: any;
|
|
1137
1172
|
pagination: any;
|
|
1138
1173
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1174
|
+
popOverOpen: boolean;
|
|
1175
|
+
popOverData: any;
|
|
1176
|
+
popOverSchema: any;
|
|
1139
1177
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1140
1178
|
readonly parentStore: any;
|
|
1141
1179
|
readonly __: any;
|
|
@@ -1236,6 +1274,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1236
1274
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1237
1275
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1238
1276
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1277
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1278
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1239
1279
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
1240
1280
|
changeEmitedValue: (value: any) => void;
|
|
1241
1281
|
addSubFormItem: (item: {
|
|
@@ -1300,6 +1340,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1300
1340
|
rowIndex: any;
|
|
1301
1341
|
pagination: any;
|
|
1302
1342
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1343
|
+
popOverOpen: boolean;
|
|
1344
|
+
popOverData: any;
|
|
1345
|
+
popOverSchema: any;
|
|
1303
1346
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1304
1347
|
readonly parentStore: any;
|
|
1305
1348
|
readonly __: any;
|
|
@@ -1386,6 +1429,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1386
1429
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1387
1430
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1388
1431
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1432
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1433
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1434
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1389
1435
|
}, {
|
|
1390
1436
|
readonly parentStore: any;
|
|
1391
1437
|
readonly __: any;
|
|
@@ -1476,6 +1522,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1476
1522
|
rowIndex: any;
|
|
1477
1523
|
pagination: any;
|
|
1478
1524
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1525
|
+
popOverOpen: boolean;
|
|
1526
|
+
popOverData: any;
|
|
1527
|
+
popOverSchema: any;
|
|
1479
1528
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1480
1529
|
readonly parentStore: any;
|
|
1481
1530
|
readonly __: any;
|
|
@@ -1562,6 +1611,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1562
1611
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1563
1612
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1564
1613
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1614
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1615
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1616
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1565
1617
|
}, {
|
|
1566
1618
|
readonly parentStore: any;
|
|
1567
1619
|
readonly __: any;
|
|
@@ -1654,6 +1706,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1654
1706
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1655
1707
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1656
1708
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1709
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1710
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1711
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1657
1712
|
}, {
|
|
1658
1713
|
readonly parentStore: any;
|
|
1659
1714
|
readonly __: any;
|
|
@@ -1754,6 +1809,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1754
1809
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1755
1810
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1756
1811
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1812
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1813
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1757
1814
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
1758
1815
|
changeEmitedValue: (value: any) => void;
|
|
1759
1816
|
addSubFormItem: (item: {
|
|
@@ -1818,6 +1875,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1818
1875
|
rowIndex: any;
|
|
1819
1876
|
pagination: any;
|
|
1820
1877
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1878
|
+
popOverOpen: boolean;
|
|
1879
|
+
popOverData: any;
|
|
1880
|
+
popOverSchema: any;
|
|
1821
1881
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1822
1882
|
readonly parentStore: any;
|
|
1823
1883
|
readonly __: any;
|
|
@@ -1904,6 +1964,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1904
1964
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1905
1965
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1906
1966
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1967
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1968
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1969
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1907
1970
|
}, {
|
|
1908
1971
|
readonly parentStore: any;
|
|
1909
1972
|
readonly __: any;
|
|
@@ -1994,6 +2057,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1994
2057
|
rowIndex: any;
|
|
1995
2058
|
pagination: any;
|
|
1996
2059
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2060
|
+
popOverOpen: boolean;
|
|
2061
|
+
popOverData: any;
|
|
2062
|
+
popOverSchema: any;
|
|
1997
2063
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1998
2064
|
readonly parentStore: any;
|
|
1999
2065
|
readonly __: any;
|
|
@@ -2080,6 +2146,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2080
2146
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2081
2147
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2082
2148
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2149
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2150
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2151
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2083
2152
|
}, {
|
|
2084
2153
|
readonly parentStore: any;
|
|
2085
2154
|
readonly __: any;
|
|
@@ -2166,6 +2235,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2166
2235
|
initedAt: number;
|
|
2167
2236
|
updatedAt: number;
|
|
2168
2237
|
pristine: any;
|
|
2238
|
+
pristineRaw: any;
|
|
2169
2239
|
upStreamData: any;
|
|
2170
2240
|
action: any;
|
|
2171
2241
|
dialogOpen: boolean;
|
|
@@ -2296,6 +2366,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2296
2366
|
rowIndex: any;
|
|
2297
2367
|
pagination: any;
|
|
2298
2368
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2369
|
+
popOverOpen: boolean;
|
|
2370
|
+
popOverData: any;
|
|
2371
|
+
popOverSchema: any;
|
|
2299
2372
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2300
2373
|
readonly parentStore: any;
|
|
2301
2374
|
readonly __: any;
|
|
@@ -2396,6 +2469,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2396
2469
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2397
2470
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2398
2471
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2472
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2473
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2399
2474
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
2400
2475
|
changeEmitedValue: (value: any) => void;
|
|
2401
2476
|
addSubFormItem: (item: {
|
|
@@ -2460,6 +2535,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2460
2535
|
rowIndex: any;
|
|
2461
2536
|
pagination: any;
|
|
2462
2537
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2538
|
+
popOverOpen: boolean;
|
|
2539
|
+
popOverData: any;
|
|
2540
|
+
popOverSchema: any;
|
|
2463
2541
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2464
2542
|
readonly parentStore: any;
|
|
2465
2543
|
readonly __: any;
|
|
@@ -2546,6 +2624,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2546
2624
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2547
2625
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2548
2626
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2627
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2628
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2629
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2549
2630
|
}, {
|
|
2550
2631
|
readonly parentStore: any;
|
|
2551
2632
|
readonly __: any;
|
|
@@ -2636,6 +2717,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2636
2717
|
rowIndex: any;
|
|
2637
2718
|
pagination: any;
|
|
2638
2719
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2720
|
+
popOverOpen: boolean;
|
|
2721
|
+
popOverData: any;
|
|
2722
|
+
popOverSchema: any;
|
|
2639
2723
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2640
2724
|
readonly parentStore: any;
|
|
2641
2725
|
readonly __: any;
|
|
@@ -2722,6 +2806,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2722
2806
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2723
2807
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2724
2808
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2809
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2810
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2811
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2725
2812
|
}, {
|
|
2726
2813
|
readonly parentStore: any;
|
|
2727
2814
|
readonly __: any;
|
|
@@ -2814,6 +2901,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2814
2901
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2815
2902
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2816
2903
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2904
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2905
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2906
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2817
2907
|
}, {
|
|
2818
2908
|
readonly parentStore: any;
|
|
2819
2909
|
readonly __: any;
|
|
@@ -2914,6 +3004,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2914
3004
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2915
3005
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2916
3006
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3007
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3008
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2917
3009
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
2918
3010
|
changeEmitedValue: (value: any) => void;
|
|
2919
3011
|
addSubFormItem: (item: {
|
|
@@ -2978,6 +3070,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2978
3070
|
rowIndex: any;
|
|
2979
3071
|
pagination: any;
|
|
2980
3072
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3073
|
+
popOverOpen: boolean;
|
|
3074
|
+
popOverData: any;
|
|
3075
|
+
popOverSchema: any;
|
|
2981
3076
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2982
3077
|
readonly parentStore: any;
|
|
2983
3078
|
readonly __: any;
|
|
@@ -3064,6 +3159,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3064
3159
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3065
3160
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3066
3161
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3162
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3163
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3164
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3067
3165
|
}, {
|
|
3068
3166
|
readonly parentStore: any;
|
|
3069
3167
|
readonly __: any;
|
|
@@ -3154,6 +3252,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3154
3252
|
rowIndex: any;
|
|
3155
3253
|
pagination: any;
|
|
3156
3254
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3255
|
+
popOverOpen: boolean;
|
|
3256
|
+
popOverData: any;
|
|
3257
|
+
popOverSchema: any;
|
|
3157
3258
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3158
3259
|
readonly parentStore: any;
|
|
3159
3260
|
readonly __: any;
|
|
@@ -3240,6 +3341,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3240
3341
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3241
3342
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3242
3343
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3344
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3345
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3346
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3243
3347
|
}, {
|
|
3244
3348
|
readonly parentStore: any;
|
|
3245
3349
|
readonly __: any;
|
|
@@ -3336,6 +3440,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3336
3440
|
rowIndex: any;
|
|
3337
3441
|
pagination: any;
|
|
3338
3442
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3443
|
+
popOverOpen: boolean;
|
|
3444
|
+
popOverData: any;
|
|
3445
|
+
popOverSchema: any;
|
|
3339
3446
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3340
3447
|
readonly parentStore: any;
|
|
3341
3448
|
readonly __: any;
|
|
@@ -3436,6 +3543,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3436
3543
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3437
3544
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3438
3545
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3546
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3547
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3439
3548
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
3440
3549
|
changeEmitedValue: (value: any) => void;
|
|
3441
3550
|
addSubFormItem: (item: {
|
|
@@ -3500,6 +3609,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3500
3609
|
rowIndex: any;
|
|
3501
3610
|
pagination: any;
|
|
3502
3611
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3612
|
+
popOverOpen: boolean;
|
|
3613
|
+
popOverData: any;
|
|
3614
|
+
popOverSchema: any;
|
|
3503
3615
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3504
3616
|
readonly parentStore: any;
|
|
3505
3617
|
readonly __: any;
|
|
@@ -3586,6 +3698,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3586
3698
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3587
3699
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3588
3700
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3701
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3702
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3703
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3589
3704
|
}, {
|
|
3590
3705
|
readonly parentStore: any;
|
|
3591
3706
|
readonly __: any;
|
|
@@ -3676,6 +3791,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3676
3791
|
rowIndex: any;
|
|
3677
3792
|
pagination: any;
|
|
3678
3793
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3794
|
+
popOverOpen: boolean;
|
|
3795
|
+
popOverData: any;
|
|
3796
|
+
popOverSchema: any;
|
|
3679
3797
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3680
3798
|
readonly parentStore: any;
|
|
3681
3799
|
readonly __: any;
|
|
@@ -3762,6 +3880,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3762
3880
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3763
3881
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3764
3882
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3883
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3884
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3885
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3765
3886
|
}, {
|
|
3766
3887
|
readonly parentStore: any;
|
|
3767
3888
|
readonly __: any;
|
|
@@ -3854,6 +3975,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3854
3975
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3855
3976
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3856
3977
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3978
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3979
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3980
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3857
3981
|
}, {
|
|
3858
3982
|
readonly parentStore: any;
|
|
3859
3983
|
readonly __: any;
|
|
@@ -3954,6 +4078,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3954
4078
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3955
4079
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3956
4080
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4081
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4082
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3957
4083
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
3958
4084
|
changeEmitedValue: (value: any) => void;
|
|
3959
4085
|
addSubFormItem: (item: {
|
|
@@ -4018,6 +4144,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4018
4144
|
rowIndex: any;
|
|
4019
4145
|
pagination: any;
|
|
4020
4146
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4147
|
+
popOverOpen: boolean;
|
|
4148
|
+
popOverData: any;
|
|
4149
|
+
popOverSchema: any;
|
|
4021
4150
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4022
4151
|
readonly parentStore: any;
|
|
4023
4152
|
readonly __: any;
|
|
@@ -4104,6 +4233,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4104
4233
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4105
4234
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4106
4235
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4236
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4237
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4238
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4107
4239
|
}, {
|
|
4108
4240
|
readonly parentStore: any;
|
|
4109
4241
|
readonly __: any;
|
|
@@ -4194,6 +4326,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4194
4326
|
rowIndex: any;
|
|
4195
4327
|
pagination: any;
|
|
4196
4328
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4329
|
+
popOverOpen: boolean;
|
|
4330
|
+
popOverData: any;
|
|
4331
|
+
popOverSchema: any;
|
|
4197
4332
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4198
4333
|
readonly parentStore: any;
|
|
4199
4334
|
readonly __: any;
|
|
@@ -4280,6 +4415,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4280
4415
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4281
4416
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4282
4417
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4418
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4419
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4420
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4283
4421
|
}, {
|
|
4284
4422
|
readonly parentStore: any;
|
|
4285
4423
|
readonly __: any;
|
|
@@ -4381,6 +4519,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4381
4519
|
rowIndex: any;
|
|
4382
4520
|
pagination: any;
|
|
4383
4521
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4522
|
+
popOverOpen: boolean;
|
|
4523
|
+
popOverData: any;
|
|
4524
|
+
popOverSchema: any;
|
|
4384
4525
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4385
4526
|
readonly parentStore: any;
|
|
4386
4527
|
readonly __: any;
|
|
@@ -4481,6 +4622,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4481
4622
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4482
4623
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4483
4624
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4625
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4626
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4484
4627
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
4485
4628
|
changeEmitedValue: (value: any) => void;
|
|
4486
4629
|
addSubFormItem: (item: {
|
|
@@ -4545,6 +4688,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4545
4688
|
rowIndex: any;
|
|
4546
4689
|
pagination: any;
|
|
4547
4690
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4691
|
+
popOverOpen: boolean;
|
|
4692
|
+
popOverData: any;
|
|
4693
|
+
popOverSchema: any;
|
|
4548
4694
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4549
4695
|
readonly parentStore: any;
|
|
4550
4696
|
readonly __: any;
|
|
@@ -4631,6 +4777,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4631
4777
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4632
4778
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4633
4779
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4780
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4781
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4782
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4634
4783
|
}, {
|
|
4635
4784
|
readonly parentStore: any;
|
|
4636
4785
|
readonly __: any;
|
|
@@ -4721,6 +4870,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4721
4870
|
rowIndex: any;
|
|
4722
4871
|
pagination: any;
|
|
4723
4872
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4873
|
+
popOverOpen: boolean;
|
|
4874
|
+
popOverData: any;
|
|
4875
|
+
popOverSchema: any;
|
|
4724
4876
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4725
4877
|
readonly parentStore: any;
|
|
4726
4878
|
readonly __: any;
|
|
@@ -4807,6 +4959,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4807
4959
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4808
4960
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4809
4961
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4962
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4963
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4964
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4810
4965
|
}, {
|
|
4811
4966
|
readonly parentStore: any;
|
|
4812
4967
|
readonly __: any;
|
|
@@ -4899,6 +5054,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4899
5054
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4900
5055
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4901
5056
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5057
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5058
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5059
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4902
5060
|
}, {
|
|
4903
5061
|
readonly parentStore: any;
|
|
4904
5062
|
readonly __: any;
|
|
@@ -4999,6 +5157,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4999
5157
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5000
5158
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5001
5159
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
5160
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5161
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
5002
5162
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
5003
5163
|
changeEmitedValue: (value: any) => void;
|
|
5004
5164
|
addSubFormItem: (item: {
|
|
@@ -5063,6 +5223,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5063
5223
|
rowIndex: any;
|
|
5064
5224
|
pagination: any;
|
|
5065
5225
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5226
|
+
popOverOpen: boolean;
|
|
5227
|
+
popOverData: any;
|
|
5228
|
+
popOverSchema: any;
|
|
5066
5229
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5067
5230
|
readonly parentStore: any;
|
|
5068
5231
|
readonly __: any;
|
|
@@ -5149,6 +5312,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5149
5312
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5150
5313
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5151
5314
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5315
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5316
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5317
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5152
5318
|
}, {
|
|
5153
5319
|
readonly parentStore: any;
|
|
5154
5320
|
readonly __: any;
|
|
@@ -5239,6 +5405,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5239
5405
|
rowIndex: any;
|
|
5240
5406
|
pagination: any;
|
|
5241
5407
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5408
|
+
popOverOpen: boolean;
|
|
5409
|
+
popOverData: any;
|
|
5410
|
+
popOverSchema: any;
|
|
5242
5411
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5243
5412
|
readonly parentStore: any;
|
|
5244
5413
|
readonly __: any;
|
|
@@ -5325,6 +5494,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5325
5494
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5326
5495
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5327
5496
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5497
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5498
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5499
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5328
5500
|
}, {
|
|
5329
5501
|
readonly parentStore: any;
|
|
5330
5502
|
readonly __: any;
|
|
@@ -5421,6 +5593,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5421
5593
|
rowIndex: any;
|
|
5422
5594
|
pagination: any;
|
|
5423
5595
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5596
|
+
popOverOpen: boolean;
|
|
5597
|
+
popOverData: any;
|
|
5598
|
+
popOverSchema: any;
|
|
5424
5599
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5425
5600
|
readonly parentStore: any;
|
|
5426
5601
|
readonly __: any;
|
|
@@ -5521,6 +5696,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5521
5696
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5522
5697
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5523
5698
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
5699
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5700
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
5524
5701
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
5525
5702
|
changeEmitedValue: (value: any) => void;
|
|
5526
5703
|
addSubFormItem: (item: {
|
|
@@ -5585,6 +5762,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5585
5762
|
rowIndex: any;
|
|
5586
5763
|
pagination: any;
|
|
5587
5764
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5765
|
+
popOverOpen: boolean;
|
|
5766
|
+
popOverData: any;
|
|
5767
|
+
popOverSchema: any;
|
|
5588
5768
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5589
5769
|
readonly parentStore: any;
|
|
5590
5770
|
readonly __: any;
|
|
@@ -5671,6 +5851,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5671
5851
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5672
5852
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5673
5853
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5854
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5855
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5856
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5674
5857
|
}, {
|
|
5675
5858
|
readonly parentStore: any;
|
|
5676
5859
|
readonly __: any;
|
|
@@ -5761,6 +5944,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5761
5944
|
rowIndex: any;
|
|
5762
5945
|
pagination: any;
|
|
5763
5946
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5947
|
+
popOverOpen: boolean;
|
|
5948
|
+
popOverData: any;
|
|
5949
|
+
popOverSchema: any;
|
|
5764
5950
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5765
5951
|
readonly parentStore: any;
|
|
5766
5952
|
readonly __: any;
|
|
@@ -5847,6 +6033,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5847
6033
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5848
6034
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5849
6035
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6036
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6037
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6038
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5850
6039
|
}, {
|
|
5851
6040
|
readonly parentStore: any;
|
|
5852
6041
|
readonly __: any;
|
|
@@ -5939,6 +6128,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5939
6128
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5940
6129
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5941
6130
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6131
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6132
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6133
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5942
6134
|
}, {
|
|
5943
6135
|
readonly parentStore: any;
|
|
5944
6136
|
readonly __: any;
|
|
@@ -6039,6 +6231,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6039
6231
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6040
6232
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6041
6233
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
6234
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6235
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
6042
6236
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
6043
6237
|
changeEmitedValue: (value: any) => void;
|
|
6044
6238
|
addSubFormItem: (item: {
|
|
@@ -6103,6 +6297,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6103
6297
|
rowIndex: any;
|
|
6104
6298
|
pagination: any;
|
|
6105
6299
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6300
|
+
popOverOpen: boolean;
|
|
6301
|
+
popOverData: any;
|
|
6302
|
+
popOverSchema: any;
|
|
6106
6303
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6107
6304
|
readonly parentStore: any;
|
|
6108
6305
|
readonly __: any;
|
|
@@ -6189,6 +6386,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6189
6386
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6190
6387
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6191
6388
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6389
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6390
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6391
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6192
6392
|
}, {
|
|
6193
6393
|
readonly parentStore: any;
|
|
6194
6394
|
readonly __: any;
|
|
@@ -6279,6 +6479,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6279
6479
|
rowIndex: any;
|
|
6280
6480
|
pagination: any;
|
|
6281
6481
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6482
|
+
popOverOpen: boolean;
|
|
6483
|
+
popOverData: any;
|
|
6484
|
+
popOverSchema: any;
|
|
6282
6485
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6283
6486
|
readonly parentStore: any;
|
|
6284
6487
|
readonly __: any;
|
|
@@ -6365,6 +6568,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6365
6568
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6366
6569
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6367
6570
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6571
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6572
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6573
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6368
6574
|
}, {
|
|
6369
6575
|
readonly parentStore: any;
|
|
6370
6576
|
readonly __: any;
|
|
@@ -6461,6 +6667,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6461
6667
|
rowIndex: any;
|
|
6462
6668
|
pagination: any;
|
|
6463
6669
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6670
|
+
popOverOpen: boolean;
|
|
6671
|
+
popOverData: any;
|
|
6672
|
+
popOverSchema: any;
|
|
6464
6673
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6465
6674
|
readonly parentStore: any;
|
|
6466
6675
|
readonly __: any;
|
|
@@ -6561,6 +6770,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6561
6770
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6562
6771
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6563
6772
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
6773
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6774
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
6564
6775
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
6565
6776
|
changeEmitedValue: (value: any) => void;
|
|
6566
6777
|
addSubFormItem: (item: {
|
|
@@ -6625,6 +6836,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6625
6836
|
rowIndex: any;
|
|
6626
6837
|
pagination: any;
|
|
6627
6838
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6839
|
+
popOverOpen: boolean;
|
|
6840
|
+
popOverData: any;
|
|
6841
|
+
popOverSchema: any;
|
|
6628
6842
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6629
6843
|
readonly parentStore: any;
|
|
6630
6844
|
readonly __: any;
|
|
@@ -6711,6 +6925,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6711
6925
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6712
6926
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6713
6927
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6928
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6929
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6930
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6714
6931
|
}, {
|
|
6715
6932
|
readonly parentStore: any;
|
|
6716
6933
|
readonly __: any;
|
|
@@ -6801,6 +7018,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6801
7018
|
rowIndex: any;
|
|
6802
7019
|
pagination: any;
|
|
6803
7020
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7021
|
+
popOverOpen: boolean;
|
|
7022
|
+
popOverData: any;
|
|
7023
|
+
popOverSchema: any;
|
|
6804
7024
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6805
7025
|
readonly parentStore: any;
|
|
6806
7026
|
readonly __: any;
|
|
@@ -6887,6 +7107,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6887
7107
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6888
7108
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6889
7109
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7110
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7111
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7112
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6890
7113
|
}, {
|
|
6891
7114
|
readonly parentStore: any;
|
|
6892
7115
|
readonly __: any;
|
|
@@ -6979,6 +7202,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6979
7202
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6980
7203
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6981
7204
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7205
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7206
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7207
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6982
7208
|
}, {
|
|
6983
7209
|
readonly parentStore: any;
|
|
6984
7210
|
readonly __: any;
|
|
@@ -7079,6 +7305,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7079
7305
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7080
7306
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7081
7307
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
7308
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7309
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
7082
7310
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
7083
7311
|
changeEmitedValue: (value: any) => void;
|
|
7084
7312
|
addSubFormItem: (item: {
|
|
@@ -7143,6 +7371,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7143
7371
|
rowIndex: any;
|
|
7144
7372
|
pagination: any;
|
|
7145
7373
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7374
|
+
popOverOpen: boolean;
|
|
7375
|
+
popOverData: any;
|
|
7376
|
+
popOverSchema: any;
|
|
7146
7377
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7147
7378
|
readonly parentStore: any;
|
|
7148
7379
|
readonly __: any;
|
|
@@ -7229,6 +7460,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7229
7460
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7230
7461
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7231
7462
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7463
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7464
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7465
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7232
7466
|
}, {
|
|
7233
7467
|
readonly parentStore: any;
|
|
7234
7468
|
readonly __: any;
|
|
@@ -7319,6 +7553,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7319
7553
|
rowIndex: any;
|
|
7320
7554
|
pagination: any;
|
|
7321
7555
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7556
|
+
popOverOpen: boolean;
|
|
7557
|
+
popOverData: any;
|
|
7558
|
+
popOverSchema: any;
|
|
7322
7559
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7323
7560
|
readonly parentStore: any;
|
|
7324
7561
|
readonly __: any;
|
|
@@ -7405,6 +7642,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7405
7642
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7406
7643
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7407
7644
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7645
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7646
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7647
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7408
7648
|
}, {
|
|
7409
7649
|
readonly parentStore: any;
|
|
7410
7650
|
readonly __: any;
|
|
@@ -7490,6 +7730,7 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7490
7730
|
initedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
7491
7731
|
updatedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
7492
7732
|
pristine: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7733
|
+
pristineRaw: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7493
7734
|
upStreamData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7494
7735
|
action: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7495
7736
|
dialogOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
@@ -7622,6 +7863,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7622
7863
|
rowIndex: any;
|
|
7623
7864
|
pagination: any;
|
|
7624
7865
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7866
|
+
popOverOpen: boolean;
|
|
7867
|
+
popOverData: any;
|
|
7868
|
+
popOverSchema: any;
|
|
7625
7869
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7626
7870
|
readonly parentStore: any;
|
|
7627
7871
|
readonly __: any;
|
|
@@ -7722,6 +7966,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7722
7966
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7723
7967
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7724
7968
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
7969
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7970
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
7725
7971
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
7726
7972
|
changeEmitedValue: (value: any) => void;
|
|
7727
7973
|
addSubFormItem: (item: {
|
|
@@ -7786,6 +8032,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7786
8032
|
rowIndex: any;
|
|
7787
8033
|
pagination: any;
|
|
7788
8034
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8035
|
+
popOverOpen: boolean;
|
|
8036
|
+
popOverData: any;
|
|
8037
|
+
popOverSchema: any;
|
|
7789
8038
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7790
8039
|
readonly parentStore: any;
|
|
7791
8040
|
readonly __: any;
|
|
@@ -7872,6 +8121,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7872
8121
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7873
8122
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7874
8123
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8124
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8125
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8126
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7875
8127
|
}, {
|
|
7876
8128
|
readonly parentStore: any;
|
|
7877
8129
|
readonly __: any;
|
|
@@ -7962,6 +8214,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7962
8214
|
rowIndex: any;
|
|
7963
8215
|
pagination: any;
|
|
7964
8216
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8217
|
+
popOverOpen: boolean;
|
|
8218
|
+
popOverData: any;
|
|
8219
|
+
popOverSchema: any;
|
|
7965
8220
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7966
8221
|
readonly parentStore: any;
|
|
7967
8222
|
readonly __: any;
|
|
@@ -8048,6 +8303,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8048
8303
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8049
8304
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8050
8305
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8306
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8307
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8308
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8051
8309
|
}, {
|
|
8052
8310
|
readonly parentStore: any;
|
|
8053
8311
|
readonly __: any;
|
|
@@ -8140,6 +8398,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8140
8398
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8141
8399
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8142
8400
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8401
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8402
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8403
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8143
8404
|
}, {
|
|
8144
8405
|
readonly parentStore: any;
|
|
8145
8406
|
readonly __: any;
|
|
@@ -8240,6 +8501,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8240
8501
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8241
8502
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8242
8503
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
8504
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8505
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
8243
8506
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
8244
8507
|
changeEmitedValue: (value: any) => void;
|
|
8245
8508
|
addSubFormItem: (item: {
|
|
@@ -8304,6 +8567,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8304
8567
|
rowIndex: any;
|
|
8305
8568
|
pagination: any;
|
|
8306
8569
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8570
|
+
popOverOpen: boolean;
|
|
8571
|
+
popOverData: any;
|
|
8572
|
+
popOverSchema: any;
|
|
8307
8573
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8308
8574
|
readonly parentStore: any;
|
|
8309
8575
|
readonly __: any;
|
|
@@ -8390,6 +8656,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8390
8656
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8391
8657
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8392
8658
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8659
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8660
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8661
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8393
8662
|
}, {
|
|
8394
8663
|
readonly parentStore: any;
|
|
8395
8664
|
readonly __: any;
|
|
@@ -8480,6 +8749,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8480
8749
|
rowIndex: any;
|
|
8481
8750
|
pagination: any;
|
|
8482
8751
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8752
|
+
popOverOpen: boolean;
|
|
8753
|
+
popOverData: any;
|
|
8754
|
+
popOverSchema: any;
|
|
8483
8755
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8484
8756
|
readonly parentStore: any;
|
|
8485
8757
|
readonly __: any;
|
|
@@ -8566,6 +8838,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8566
8838
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8567
8839
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8568
8840
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8841
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8842
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8843
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8569
8844
|
}, {
|
|
8570
8845
|
readonly parentStore: any;
|
|
8571
8846
|
readonly __: any;
|
|
@@ -8662,6 +8937,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8662
8937
|
rowIndex: any;
|
|
8663
8938
|
pagination: any;
|
|
8664
8939
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8940
|
+
popOverOpen: boolean;
|
|
8941
|
+
popOverData: any;
|
|
8942
|
+
popOverSchema: any;
|
|
8665
8943
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8666
8944
|
readonly parentStore: any;
|
|
8667
8945
|
readonly __: any;
|
|
@@ -8762,6 +9040,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8762
9040
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8763
9041
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8764
9042
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
9043
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9044
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
8765
9045
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
8766
9046
|
changeEmitedValue: (value: any) => void;
|
|
8767
9047
|
addSubFormItem: (item: {
|
|
@@ -8826,6 +9106,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8826
9106
|
rowIndex: any;
|
|
8827
9107
|
pagination: any;
|
|
8828
9108
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9109
|
+
popOverOpen: boolean;
|
|
9110
|
+
popOverData: any;
|
|
9111
|
+
popOverSchema: any;
|
|
8829
9112
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8830
9113
|
readonly parentStore: any;
|
|
8831
9114
|
readonly __: any;
|
|
@@ -8912,6 +9195,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8912
9195
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8913
9196
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8914
9197
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9198
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9199
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9200
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8915
9201
|
}, {
|
|
8916
9202
|
readonly parentStore: any;
|
|
8917
9203
|
readonly __: any;
|
|
@@ -9002,6 +9288,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9002
9288
|
rowIndex: any;
|
|
9003
9289
|
pagination: any;
|
|
9004
9290
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9291
|
+
popOverOpen: boolean;
|
|
9292
|
+
popOverData: any;
|
|
9293
|
+
popOverSchema: any;
|
|
9005
9294
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9006
9295
|
readonly parentStore: any;
|
|
9007
9296
|
readonly __: any;
|
|
@@ -9088,6 +9377,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9088
9377
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9089
9378
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9090
9379
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9380
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9381
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9382
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9091
9383
|
}, {
|
|
9092
9384
|
readonly parentStore: any;
|
|
9093
9385
|
readonly __: any;
|
|
@@ -9180,6 +9472,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9180
9472
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9181
9473
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9182
9474
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9475
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9476
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9477
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9183
9478
|
}, {
|
|
9184
9479
|
readonly parentStore: any;
|
|
9185
9480
|
readonly __: any;
|
|
@@ -9280,6 +9575,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9280
9575
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9281
9576
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9282
9577
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
9578
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9579
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
9283
9580
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
9284
9581
|
changeEmitedValue: (value: any) => void;
|
|
9285
9582
|
addSubFormItem: (item: {
|
|
@@ -9344,6 +9641,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9344
9641
|
rowIndex: any;
|
|
9345
9642
|
pagination: any;
|
|
9346
9643
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9644
|
+
popOverOpen: boolean;
|
|
9645
|
+
popOverData: any;
|
|
9646
|
+
popOverSchema: any;
|
|
9347
9647
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9348
9648
|
readonly parentStore: any;
|
|
9349
9649
|
readonly __: any;
|
|
@@ -9430,6 +9730,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9430
9730
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9431
9731
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9432
9732
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9733
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9734
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9735
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9433
9736
|
}, {
|
|
9434
9737
|
readonly parentStore: any;
|
|
9435
9738
|
readonly __: any;
|
|
@@ -9520,6 +9823,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9520
9823
|
rowIndex: any;
|
|
9521
9824
|
pagination: any;
|
|
9522
9825
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9826
|
+
popOverOpen: boolean;
|
|
9827
|
+
popOverData: any;
|
|
9828
|
+
popOverSchema: any;
|
|
9523
9829
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9524
9830
|
readonly parentStore: any;
|
|
9525
9831
|
readonly __: any;
|
|
@@ -9606,6 +9912,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9606
9912
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9607
9913
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9608
9914
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9915
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9916
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9917
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9609
9918
|
}, {
|
|
9610
9919
|
readonly parentStore: any;
|
|
9611
9920
|
readonly __: any;
|
|
@@ -9707,6 +10016,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9707
10016
|
rowIndex: any;
|
|
9708
10017
|
pagination: any;
|
|
9709
10018
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10019
|
+
popOverOpen: boolean;
|
|
10020
|
+
popOverData: any;
|
|
10021
|
+
popOverSchema: any;
|
|
9710
10022
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9711
10023
|
readonly parentStore: any;
|
|
9712
10024
|
readonly __: any;
|
|
@@ -9807,6 +10119,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9807
10119
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9808
10120
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9809
10121
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
10122
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10123
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
9810
10124
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
9811
10125
|
changeEmitedValue: (value: any) => void;
|
|
9812
10126
|
addSubFormItem: (item: {
|
|
@@ -9871,6 +10185,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9871
10185
|
rowIndex: any;
|
|
9872
10186
|
pagination: any;
|
|
9873
10187
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10188
|
+
popOverOpen: boolean;
|
|
10189
|
+
popOverData: any;
|
|
10190
|
+
popOverSchema: any;
|
|
9874
10191
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9875
10192
|
readonly parentStore: any;
|
|
9876
10193
|
readonly __: any;
|
|
@@ -9957,6 +10274,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9957
10274
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9958
10275
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9959
10276
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10277
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10278
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10279
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9960
10280
|
}, {
|
|
9961
10281
|
readonly parentStore: any;
|
|
9962
10282
|
readonly __: any;
|
|
@@ -10047,6 +10367,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10047
10367
|
rowIndex: any;
|
|
10048
10368
|
pagination: any;
|
|
10049
10369
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10370
|
+
popOverOpen: boolean;
|
|
10371
|
+
popOverData: any;
|
|
10372
|
+
popOverSchema: any;
|
|
10050
10373
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10051
10374
|
readonly parentStore: any;
|
|
10052
10375
|
readonly __: any;
|
|
@@ -10133,6 +10456,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10133
10456
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10134
10457
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10135
10458
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10459
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10460
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10461
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10136
10462
|
}, {
|
|
10137
10463
|
readonly parentStore: any;
|
|
10138
10464
|
readonly __: any;
|
|
@@ -10225,6 +10551,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10225
10551
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10226
10552
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10227
10553
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10554
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10555
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10556
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10228
10557
|
}, {
|
|
10229
10558
|
readonly parentStore: any;
|
|
10230
10559
|
readonly __: any;
|
|
@@ -10325,6 +10654,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10325
10654
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10326
10655
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10327
10656
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
10657
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10658
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
10328
10659
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
10329
10660
|
changeEmitedValue: (value: any) => void;
|
|
10330
10661
|
addSubFormItem: (item: {
|
|
@@ -10389,6 +10720,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10389
10720
|
rowIndex: any;
|
|
10390
10721
|
pagination: any;
|
|
10391
10722
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10723
|
+
popOverOpen: boolean;
|
|
10724
|
+
popOverData: any;
|
|
10725
|
+
popOverSchema: any;
|
|
10392
10726
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10393
10727
|
readonly parentStore: any;
|
|
10394
10728
|
readonly __: any;
|
|
@@ -10475,6 +10809,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10475
10809
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10476
10810
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10477
10811
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10812
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10813
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10814
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10478
10815
|
}, {
|
|
10479
10816
|
readonly parentStore: any;
|
|
10480
10817
|
readonly __: any;
|
|
@@ -10565,6 +10902,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10565
10902
|
rowIndex: any;
|
|
10566
10903
|
pagination: any;
|
|
10567
10904
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10905
|
+
popOverOpen: boolean;
|
|
10906
|
+
popOverData: any;
|
|
10907
|
+
popOverSchema: any;
|
|
10568
10908
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10569
10909
|
readonly parentStore: any;
|
|
10570
10910
|
readonly __: any;
|
|
@@ -10651,6 +10991,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10651
10991
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10652
10992
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10653
10993
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10994
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10995
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10996
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10654
10997
|
}, {
|
|
10655
10998
|
readonly parentStore: any;
|
|
10656
10999
|
readonly __: any;
|
|
@@ -10747,6 +11090,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10747
11090
|
rowIndex: any;
|
|
10748
11091
|
pagination: any;
|
|
10749
11092
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11093
|
+
popOverOpen: boolean;
|
|
11094
|
+
popOverData: any;
|
|
11095
|
+
popOverSchema: any;
|
|
10750
11096
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10751
11097
|
readonly parentStore: any;
|
|
10752
11098
|
readonly __: any;
|
|
@@ -10847,6 +11193,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10847
11193
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10848
11194
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10849
11195
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
11196
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11197
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
10850
11198
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
10851
11199
|
changeEmitedValue: (value: any) => void;
|
|
10852
11200
|
addSubFormItem: (item: {
|
|
@@ -10911,6 +11259,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10911
11259
|
rowIndex: any;
|
|
10912
11260
|
pagination: any;
|
|
10913
11261
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11262
|
+
popOverOpen: boolean;
|
|
11263
|
+
popOverData: any;
|
|
11264
|
+
popOverSchema: any;
|
|
10914
11265
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10915
11266
|
readonly parentStore: any;
|
|
10916
11267
|
readonly __: any;
|
|
@@ -10997,6 +11348,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10997
11348
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10998
11349
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10999
11350
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11351
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11352
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11353
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11000
11354
|
}, {
|
|
11001
11355
|
readonly parentStore: any;
|
|
11002
11356
|
readonly __: any;
|
|
@@ -11087,6 +11441,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11087
11441
|
rowIndex: any;
|
|
11088
11442
|
pagination: any;
|
|
11089
11443
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11444
|
+
popOverOpen: boolean;
|
|
11445
|
+
popOverData: any;
|
|
11446
|
+
popOverSchema: any;
|
|
11090
11447
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11091
11448
|
readonly parentStore: any;
|
|
11092
11449
|
readonly __: any;
|
|
@@ -11173,6 +11530,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11173
11530
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11174
11531
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11175
11532
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11533
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11534
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11535
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11176
11536
|
}, {
|
|
11177
11537
|
readonly parentStore: any;
|
|
11178
11538
|
readonly __: any;
|
|
@@ -11265,6 +11625,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11265
11625
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11266
11626
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11267
11627
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11628
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11629
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11630
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11268
11631
|
}, {
|
|
11269
11632
|
readonly parentStore: any;
|
|
11270
11633
|
readonly __: any;
|
|
@@ -11365,6 +11728,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11365
11728
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11366
11729
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11367
11730
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
11731
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11732
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
11368
11733
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
11369
11734
|
changeEmitedValue: (value: any) => void;
|
|
11370
11735
|
addSubFormItem: (item: {
|
|
@@ -11429,6 +11794,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11429
11794
|
rowIndex: any;
|
|
11430
11795
|
pagination: any;
|
|
11431
11796
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11797
|
+
popOverOpen: boolean;
|
|
11798
|
+
popOverData: any;
|
|
11799
|
+
popOverSchema: any;
|
|
11432
11800
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11433
11801
|
readonly parentStore: any;
|
|
11434
11802
|
readonly __: any;
|
|
@@ -11515,6 +11883,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11515
11883
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11516
11884
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11517
11885
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11886
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11887
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11888
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11518
11889
|
}, {
|
|
11519
11890
|
readonly parentStore: any;
|
|
11520
11891
|
readonly __: any;
|
|
@@ -11605,6 +11976,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11605
11976
|
rowIndex: any;
|
|
11606
11977
|
pagination: any;
|
|
11607
11978
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11979
|
+
popOverOpen: boolean;
|
|
11980
|
+
popOverData: any;
|
|
11981
|
+
popOverSchema: any;
|
|
11608
11982
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11609
11983
|
readonly parentStore: any;
|
|
11610
11984
|
readonly __: any;
|
|
@@ -11691,6 +12065,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11691
12065
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11692
12066
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11693
12067
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12068
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12069
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12070
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11694
12071
|
}, {
|
|
11695
12072
|
readonly parentStore: any;
|
|
11696
12073
|
readonly __: any;
|
|
@@ -11787,6 +12164,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11787
12164
|
rowIndex: any;
|
|
11788
12165
|
pagination: any;
|
|
11789
12166
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12167
|
+
popOverOpen: boolean;
|
|
12168
|
+
popOverData: any;
|
|
12169
|
+
popOverSchema: any;
|
|
11790
12170
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11791
12171
|
readonly parentStore: any;
|
|
11792
12172
|
readonly __: any;
|
|
@@ -11887,6 +12267,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11887
12267
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11888
12268
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11889
12269
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
12270
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
12271
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
11890
12272
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
11891
12273
|
changeEmitedValue: (value: any) => void;
|
|
11892
12274
|
addSubFormItem: (item: {
|
|
@@ -11951,6 +12333,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11951
12333
|
rowIndex: any;
|
|
11952
12334
|
pagination: any;
|
|
11953
12335
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12336
|
+
popOverOpen: boolean;
|
|
12337
|
+
popOverData: any;
|
|
12338
|
+
popOverSchema: any;
|
|
11954
12339
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11955
12340
|
readonly parentStore: any;
|
|
11956
12341
|
readonly __: any;
|
|
@@ -12037,6 +12422,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12037
12422
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12038
12423
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12039
12424
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12425
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12426
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12427
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12040
12428
|
}, {
|
|
12041
12429
|
readonly parentStore: any;
|
|
12042
12430
|
readonly __: any;
|
|
@@ -12127,6 +12515,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12127
12515
|
rowIndex: any;
|
|
12128
12516
|
pagination: any;
|
|
12129
12517
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12518
|
+
popOverOpen: boolean;
|
|
12519
|
+
popOverData: any;
|
|
12520
|
+
popOverSchema: any;
|
|
12130
12521
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12131
12522
|
readonly parentStore: any;
|
|
12132
12523
|
readonly __: any;
|
|
@@ -12213,6 +12604,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12213
12604
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12214
12605
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12215
12606
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12607
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12608
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12609
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12216
12610
|
}, {
|
|
12217
12611
|
readonly parentStore: any;
|
|
12218
12612
|
readonly __: any;
|
|
@@ -12305,6 +12699,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12305
12699
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12306
12700
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12307
12701
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12702
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12703
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12704
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12308
12705
|
}, {
|
|
12309
12706
|
readonly parentStore: any;
|
|
12310
12707
|
readonly __: any;
|
|
@@ -12405,6 +12802,8 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12405
12802
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
12406
12803
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
12407
12804
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
12805
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
12806
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
12408
12807
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
12409
12808
|
changeEmitedValue: (value: any) => void;
|
|
12410
12809
|
addSubFormItem: (item: {
|
|
@@ -12469,6 +12868,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12469
12868
|
rowIndex: any;
|
|
12470
12869
|
pagination: any;
|
|
12471
12870
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12871
|
+
popOverOpen: boolean;
|
|
12872
|
+
popOverData: any;
|
|
12873
|
+
popOverSchema: any;
|
|
12472
12874
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12473
12875
|
readonly parentStore: any;
|
|
12474
12876
|
readonly __: any;
|
|
@@ -12555,6 +12957,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12555
12957
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12556
12958
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12557
12959
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12960
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12961
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12962
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12558
12963
|
}, {
|
|
12559
12964
|
readonly parentStore: any;
|
|
12560
12965
|
readonly __: any;
|
|
@@ -12645,6 +13050,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12645
13050
|
rowIndex: any;
|
|
12646
13051
|
pagination: any;
|
|
12647
13052
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
13053
|
+
popOverOpen: boolean;
|
|
13054
|
+
popOverData: any;
|
|
13055
|
+
popOverSchema: any;
|
|
12648
13056
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12649
13057
|
readonly parentStore: any;
|
|
12650
13058
|
readonly __: any;
|
|
@@ -12731,6 +13139,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12731
13139
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12732
13140
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12733
13141
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
13142
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
13143
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
13144
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12734
13145
|
}, {
|
|
12735
13146
|
readonly parentStore: any;
|
|
12736
13147
|
readonly __: any;
|