amis-core 6.7.0 → 6.9.0-rc.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/Root.js +1 -1
- package/esm/RootRenderer.d.ts +1 -1
- package/esm/RootRenderer.js +24 -2
- package/esm/SchemaRenderer.d.ts +0 -1
- package/esm/SchemaRenderer.js +43 -20
- 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 +2 -1
- package/esm/actions/AjaxAction.js +1 -1
- package/esm/actions/BreakAction.js +1 -1
- package/esm/actions/BroadcastAction.js +1 -1
- package/esm/actions/CmptAction.js +1 -1
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +2 -1
- 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.d.ts +40 -2
- package/esm/components/LazyComponent.js +13 -7
- package/esm/components/Overlay.js +2 -1
- package/esm/components/PopOver.d.ts +1 -1
- package/esm/components/PopOver.js +2 -1
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.d.ts +13 -2
- package/esm/factory.js +157 -45
- package/esm/index.d.ts +4 -4
- package/esm/index.js +5 -5
- package/esm/locale.js +2 -1
- package/esm/polyfills.js +1 -1
- package/esm/renderers/Form.js +44 -18
- package/esm/renderers/Item.d.ts +97 -12
- package/esm/renderers/Item.js +164 -125
- package/esm/renderers/Options.d.ts +3 -3
- package/esm/renderers/Options.js +43 -19
- 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.js +2 -1
- package/esm/store/combo.d.ts +408 -0
- package/esm/store/combo.js +1 -1
- package/esm/store/crud.js +2 -1
- package/esm/store/form.d.ts +170 -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.js +2 -1
- package/esm/store/index.d.ts +1 -0
- package/esm/store/index.js +3 -2
- package/esm/store/list.js +1 -1
- package/esm/store/manager.js +1 -1
- package/esm/store/modal.js +1 -1
- package/esm/store/node.js +1 -1
- package/esm/store/pagination.js +2 -1
- package/esm/store/root.d.ts +2 -0
- package/esm/store/root.js +46 -21
- package/esm/store/service.js +2 -1
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +379 -21
- package/esm/store/table.js +84 -54
- package/esm/store/table2.js +1 -1
- package/esm/theme.js +1 -1
- package/esm/types.d.ts +4 -2
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.js +1 -1
- package/esm/utils/DataScope.js +1 -1
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.d.ts +21 -1
- package/esm/utils/api.js +133 -41
- 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 +4 -1
- package/esm/utils/helper.js +20 -4
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/isPureVariable.js +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 +1 -1
- 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.js +1 -1
- 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 +1 -1
- 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 +1 -1
- package/lib/RootRenderer.js +23 -1
- package/lib/SchemaRenderer.d.ts +0 -1
- package/lib/SchemaRenderer.js +41 -18
- 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 +2 -1
- package/lib/actions/AjaxAction.js +1 -1
- package/lib/actions/BreakAction.js +1 -1
- package/lib/actions/BroadcastAction.js +1 -1
- package/lib/actions/CmptAction.js +1 -1
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +2 -1
- 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.d.ts +40 -2
- package/lib/components/LazyComponent.js +14 -7
- package/lib/components/Overlay.js +2 -1
- package/lib/components/PopOver.d.ts +1 -1
- package/lib/components/PopOver.js +2 -1
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.d.ts +13 -2
- package/lib/factory.js +161 -44
- package/lib/index.d.ts +4 -4
- package/lib/index.js +10 -2
- package/lib/locale.js +2 -1
- package/lib/polyfills.js +1 -1
- package/lib/renderers/Form.js +41 -15
- package/lib/renderers/Item.d.ts +98 -13
- package/lib/renderers/Item.js +163 -124
- package/lib/renderers/Options.d.ts +3 -3
- package/lib/renderers/Options.js +43 -19
- 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.js +2 -1
- package/lib/store/combo.d.ts +432 -25
- package/lib/store/combo.js +1 -1
- package/lib/store/crud.js +3 -2
- package/lib/store/form.d.ts +180 -11
- 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.js +2 -1
- package/lib/store/index.d.ts +1 -0
- package/lib/store/index.js +3 -1
- package/lib/store/list.js +1 -1
- package/lib/store/manager.js +1 -1
- package/lib/store/modal.js +1 -1
- package/lib/store/node.js +1 -1
- package/lib/store/pagination.js +2 -1
- package/lib/store/root.d.ts +2 -0
- package/lib/store/root.js +44 -19
- package/lib/store/service.js +2 -1
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +399 -42
- package/lib/store/table.js +84 -54
- package/lib/store/table2.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.d.ts +4 -2
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.js +1 -1
- package/lib/utils/DataScope.js +1 -1
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.d.ts +21 -1
- package/lib/utils/api.js +136 -40
- 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 +18 -4
- 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 +4 -1
- package/lib/utils/helper.js +19 -3
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/isPureVariable.js +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 +1 -1
- 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.js +1 -1
- 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 +1 -1
- 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/lib/store/combo.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
1
|
import { SnapshotIn, Instance } from 'mobx-state-tree';
|
|
3
2
|
import type { IFormStore, IFormItemStore } from './form';
|
|
4
3
|
export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
@@ -67,6 +66,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
67
66
|
rowIndex: any;
|
|
68
67
|
pagination: any;
|
|
69
68
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
69
|
+
popOverOpen: boolean;
|
|
70
|
+
popOverData: any;
|
|
71
|
+
popOverSchema: any;
|
|
70
72
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
71
73
|
readonly parentStore: any;
|
|
72
74
|
readonly __: any;
|
|
@@ -167,7 +169,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
167
169
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
168
170
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
169
171
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
170
|
-
|
|
172
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
173
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
174
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
171
175
|
changeEmitedValue: (value: any) => void;
|
|
172
176
|
addSubFormItem: (item: {
|
|
173
177
|
id: string;
|
|
@@ -231,6 +235,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
231
235
|
rowIndex: any;
|
|
232
236
|
pagination: any;
|
|
233
237
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
238
|
+
popOverOpen: boolean;
|
|
239
|
+
popOverData: any;
|
|
240
|
+
popOverSchema: any;
|
|
234
241
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
235
242
|
readonly parentStore: any;
|
|
236
243
|
readonly __: any;
|
|
@@ -317,6 +324,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
317
324
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
318
325
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
319
326
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
327
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
328
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
329
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
320
330
|
}, {
|
|
321
331
|
readonly parentStore: any;
|
|
322
332
|
readonly __: any;
|
|
@@ -407,6 +417,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
407
417
|
rowIndex: any;
|
|
408
418
|
pagination: any;
|
|
409
419
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
420
|
+
popOverOpen: boolean;
|
|
421
|
+
popOverData: any;
|
|
422
|
+
popOverSchema: any;
|
|
410
423
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
411
424
|
readonly parentStore: any;
|
|
412
425
|
readonly __: any;
|
|
@@ -493,6 +506,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
493
506
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
494
507
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
495
508
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
509
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
510
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
511
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
496
512
|
}, {
|
|
497
513
|
readonly parentStore: any;
|
|
498
514
|
readonly __: any;
|
|
@@ -585,6 +601,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
585
601
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
586
602
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
587
603
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
604
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
605
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
606
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
588
607
|
}, {
|
|
589
608
|
readonly parentStore: any;
|
|
590
609
|
readonly __: any;
|
|
@@ -685,7 +704,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
685
704
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
686
705
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
687
706
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
688
|
-
|
|
707
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
708
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
709
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
689
710
|
changeEmitedValue: (value: any) => void;
|
|
690
711
|
addSubFormItem: (item: {
|
|
691
712
|
id: string;
|
|
@@ -749,6 +770,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
749
770
|
rowIndex: any;
|
|
750
771
|
pagination: any;
|
|
751
772
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
773
|
+
popOverOpen: boolean;
|
|
774
|
+
popOverData: any;
|
|
775
|
+
popOverSchema: any;
|
|
752
776
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
753
777
|
readonly parentStore: any;
|
|
754
778
|
readonly __: any;
|
|
@@ -835,6 +859,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
835
859
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
836
860
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
837
861
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
862
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
863
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
864
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
838
865
|
}, {
|
|
839
866
|
readonly parentStore: any;
|
|
840
867
|
readonly __: any;
|
|
@@ -925,6 +952,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
925
952
|
rowIndex: any;
|
|
926
953
|
pagination: any;
|
|
927
954
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
955
|
+
popOverOpen: boolean;
|
|
956
|
+
popOverData: any;
|
|
957
|
+
popOverSchema: any;
|
|
928
958
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
929
959
|
readonly parentStore: any;
|
|
930
960
|
readonly __: any;
|
|
@@ -1011,6 +1041,9 @@ export declare const UniqueGroup: import("mobx-state-tree").IModelType<{
|
|
|
1011
1041
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1012
1042
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1013
1043
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1044
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1045
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1046
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1014
1047
|
}, {
|
|
1015
1048
|
readonly parentStore: any;
|
|
1016
1049
|
readonly __: any;
|
|
@@ -1137,6 +1170,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1137
1170
|
rowIndex: any;
|
|
1138
1171
|
pagination: any;
|
|
1139
1172
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1173
|
+
popOverOpen: boolean;
|
|
1174
|
+
popOverData: any;
|
|
1175
|
+
popOverSchema: any;
|
|
1140
1176
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1141
1177
|
readonly parentStore: any;
|
|
1142
1178
|
readonly __: any;
|
|
@@ -1237,7 +1273,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1237
1273
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1238
1274
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1239
1275
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1240
|
-
|
|
1276
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1277
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1278
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1241
1279
|
changeEmitedValue: (value: any) => void;
|
|
1242
1280
|
addSubFormItem: (item: {
|
|
1243
1281
|
id: string;
|
|
@@ -1301,6 +1339,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1301
1339
|
rowIndex: any;
|
|
1302
1340
|
pagination: any;
|
|
1303
1341
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1342
|
+
popOverOpen: boolean;
|
|
1343
|
+
popOverData: any;
|
|
1344
|
+
popOverSchema: any;
|
|
1304
1345
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1305
1346
|
readonly parentStore: any;
|
|
1306
1347
|
readonly __: any;
|
|
@@ -1387,6 +1428,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1387
1428
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1388
1429
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1389
1430
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1431
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1432
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1433
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1390
1434
|
}, {
|
|
1391
1435
|
readonly parentStore: any;
|
|
1392
1436
|
readonly __: any;
|
|
@@ -1477,6 +1521,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1477
1521
|
rowIndex: any;
|
|
1478
1522
|
pagination: any;
|
|
1479
1523
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1524
|
+
popOverOpen: boolean;
|
|
1525
|
+
popOverData: any;
|
|
1526
|
+
popOverSchema: any;
|
|
1480
1527
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1481
1528
|
readonly parentStore: any;
|
|
1482
1529
|
readonly __: any;
|
|
@@ -1563,6 +1610,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1563
1610
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1564
1611
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1565
1612
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1613
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1614
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1615
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1566
1616
|
}, {
|
|
1567
1617
|
readonly parentStore: any;
|
|
1568
1618
|
readonly __: any;
|
|
@@ -1655,6 +1705,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1655
1705
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1656
1706
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1657
1707
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1708
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1709
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1710
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1658
1711
|
}, {
|
|
1659
1712
|
readonly parentStore: any;
|
|
1660
1713
|
readonly __: any;
|
|
@@ -1755,7 +1808,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1755
1808
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1756
1809
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1757
1810
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1758
|
-
|
|
1811
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1812
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1813
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1759
1814
|
changeEmitedValue: (value: any) => void;
|
|
1760
1815
|
addSubFormItem: (item: {
|
|
1761
1816
|
id: string;
|
|
@@ -1819,6 +1874,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1819
1874
|
rowIndex: any;
|
|
1820
1875
|
pagination: any;
|
|
1821
1876
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1877
|
+
popOverOpen: boolean;
|
|
1878
|
+
popOverData: any;
|
|
1879
|
+
popOverSchema: any;
|
|
1822
1880
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1823
1881
|
readonly parentStore: any;
|
|
1824
1882
|
readonly __: any;
|
|
@@ -1905,6 +1963,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1905
1963
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1906
1964
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1907
1965
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1966
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1967
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1968
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1908
1969
|
}, {
|
|
1909
1970
|
readonly parentStore: any;
|
|
1910
1971
|
readonly __: any;
|
|
@@ -1995,6 +2056,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
1995
2056
|
rowIndex: any;
|
|
1996
2057
|
pagination: any;
|
|
1997
2058
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2059
|
+
popOverOpen: boolean;
|
|
2060
|
+
popOverData: any;
|
|
2061
|
+
popOverSchema: any;
|
|
1998
2062
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1999
2063
|
readonly parentStore: any;
|
|
2000
2064
|
readonly __: any;
|
|
@@ -2081,6 +2145,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2081
2145
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2082
2146
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2083
2147
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2148
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2149
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2150
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2084
2151
|
}, {
|
|
2085
2152
|
readonly parentStore: any;
|
|
2086
2153
|
readonly __: any;
|
|
@@ -2298,6 +2365,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2298
2365
|
rowIndex: any;
|
|
2299
2366
|
pagination: any;
|
|
2300
2367
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2368
|
+
popOverOpen: boolean;
|
|
2369
|
+
popOverData: any;
|
|
2370
|
+
popOverSchema: any;
|
|
2301
2371
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2302
2372
|
readonly parentStore: any;
|
|
2303
2373
|
readonly __: any;
|
|
@@ -2398,7 +2468,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2398
2468
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2399
2469
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2400
2470
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2401
|
-
|
|
2471
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2472
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2473
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
2402
2474
|
changeEmitedValue: (value: any) => void;
|
|
2403
2475
|
addSubFormItem: (item: {
|
|
2404
2476
|
id: string;
|
|
@@ -2462,6 +2534,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2462
2534
|
rowIndex: any;
|
|
2463
2535
|
pagination: any;
|
|
2464
2536
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2537
|
+
popOverOpen: boolean;
|
|
2538
|
+
popOverData: any;
|
|
2539
|
+
popOverSchema: any;
|
|
2465
2540
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2466
2541
|
readonly parentStore: any;
|
|
2467
2542
|
readonly __: any;
|
|
@@ -2548,6 +2623,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2548
2623
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2549
2624
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2550
2625
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2626
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2627
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2628
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2551
2629
|
}, {
|
|
2552
2630
|
readonly parentStore: any;
|
|
2553
2631
|
readonly __: any;
|
|
@@ -2638,6 +2716,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2638
2716
|
rowIndex: any;
|
|
2639
2717
|
pagination: any;
|
|
2640
2718
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2719
|
+
popOverOpen: boolean;
|
|
2720
|
+
popOverData: any;
|
|
2721
|
+
popOverSchema: any;
|
|
2641
2722
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2642
2723
|
readonly parentStore: any;
|
|
2643
2724
|
readonly __: any;
|
|
@@ -2724,6 +2805,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2724
2805
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2725
2806
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2726
2807
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2808
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2809
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2810
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2727
2811
|
}, {
|
|
2728
2812
|
readonly parentStore: any;
|
|
2729
2813
|
readonly __: any;
|
|
@@ -2816,6 +2900,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2816
2900
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2817
2901
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2818
2902
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2903
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2904
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2905
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2819
2906
|
}, {
|
|
2820
2907
|
readonly parentStore: any;
|
|
2821
2908
|
readonly __: any;
|
|
@@ -2916,7 +3003,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2916
3003
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2917
3004
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2918
3005
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2919
|
-
|
|
3006
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3007
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3008
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
2920
3009
|
changeEmitedValue: (value: any) => void;
|
|
2921
3010
|
addSubFormItem: (item: {
|
|
2922
3011
|
id: string;
|
|
@@ -2980,6 +3069,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
2980
3069
|
rowIndex: any;
|
|
2981
3070
|
pagination: any;
|
|
2982
3071
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3072
|
+
popOverOpen: boolean;
|
|
3073
|
+
popOverData: any;
|
|
3074
|
+
popOverSchema: any;
|
|
2983
3075
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2984
3076
|
readonly parentStore: any;
|
|
2985
3077
|
readonly __: any;
|
|
@@ -3066,6 +3158,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3066
3158
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3067
3159
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3068
3160
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3161
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3162
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3163
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3069
3164
|
}, {
|
|
3070
3165
|
readonly parentStore: any;
|
|
3071
3166
|
readonly __: any;
|
|
@@ -3156,6 +3251,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3156
3251
|
rowIndex: any;
|
|
3157
3252
|
pagination: any;
|
|
3158
3253
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3254
|
+
popOverOpen: boolean;
|
|
3255
|
+
popOverData: any;
|
|
3256
|
+
popOverSchema: any;
|
|
3159
3257
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3160
3258
|
readonly parentStore: any;
|
|
3161
3259
|
readonly __: any;
|
|
@@ -3242,6 +3340,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3242
3340
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3243
3341
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3244
3342
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3343
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3344
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3345
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3245
3346
|
}, {
|
|
3246
3347
|
readonly parentStore: any;
|
|
3247
3348
|
readonly __: any;
|
|
@@ -3338,6 +3439,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3338
3439
|
rowIndex: any;
|
|
3339
3440
|
pagination: any;
|
|
3340
3441
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3442
|
+
popOverOpen: boolean;
|
|
3443
|
+
popOverData: any;
|
|
3444
|
+
popOverSchema: any;
|
|
3341
3445
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3342
3446
|
readonly parentStore: any;
|
|
3343
3447
|
readonly __: any;
|
|
@@ -3438,7 +3542,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3438
3542
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3439
3543
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3440
3544
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3441
|
-
|
|
3545
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3546
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3547
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
3442
3548
|
changeEmitedValue: (value: any) => void;
|
|
3443
3549
|
addSubFormItem: (item: {
|
|
3444
3550
|
id: string;
|
|
@@ -3502,6 +3608,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3502
3608
|
rowIndex: any;
|
|
3503
3609
|
pagination: any;
|
|
3504
3610
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3611
|
+
popOverOpen: boolean;
|
|
3612
|
+
popOverData: any;
|
|
3613
|
+
popOverSchema: any;
|
|
3505
3614
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3506
3615
|
readonly parentStore: any;
|
|
3507
3616
|
readonly __: any;
|
|
@@ -3588,6 +3697,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3588
3697
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3589
3698
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3590
3699
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3700
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3701
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3702
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3591
3703
|
}, {
|
|
3592
3704
|
readonly parentStore: any;
|
|
3593
3705
|
readonly __: any;
|
|
@@ -3678,6 +3790,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3678
3790
|
rowIndex: any;
|
|
3679
3791
|
pagination: any;
|
|
3680
3792
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3793
|
+
popOverOpen: boolean;
|
|
3794
|
+
popOverData: any;
|
|
3795
|
+
popOverSchema: any;
|
|
3681
3796
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3682
3797
|
readonly parentStore: any;
|
|
3683
3798
|
readonly __: any;
|
|
@@ -3764,6 +3879,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3764
3879
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3765
3880
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3766
3881
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3882
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3883
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3884
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3767
3885
|
}, {
|
|
3768
3886
|
readonly parentStore: any;
|
|
3769
3887
|
readonly __: any;
|
|
@@ -3856,6 +3974,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3856
3974
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3857
3975
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3858
3976
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3977
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3978
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3979
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3859
3980
|
}, {
|
|
3860
3981
|
readonly parentStore: any;
|
|
3861
3982
|
readonly __: any;
|
|
@@ -3956,7 +4077,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
3956
4077
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3957
4078
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3958
4079
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3959
|
-
|
|
4080
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4081
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4082
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
3960
4083
|
changeEmitedValue: (value: any) => void;
|
|
3961
4084
|
addSubFormItem: (item: {
|
|
3962
4085
|
id: string;
|
|
@@ -4020,6 +4143,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4020
4143
|
rowIndex: any;
|
|
4021
4144
|
pagination: any;
|
|
4022
4145
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4146
|
+
popOverOpen: boolean;
|
|
4147
|
+
popOverData: any;
|
|
4148
|
+
popOverSchema: any;
|
|
4023
4149
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4024
4150
|
readonly parentStore: any;
|
|
4025
4151
|
readonly __: any;
|
|
@@ -4106,6 +4232,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4106
4232
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4107
4233
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4108
4234
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4235
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4236
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4237
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4109
4238
|
}, {
|
|
4110
4239
|
readonly parentStore: any;
|
|
4111
4240
|
readonly __: any;
|
|
@@ -4196,6 +4325,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4196
4325
|
rowIndex: any;
|
|
4197
4326
|
pagination: any;
|
|
4198
4327
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4328
|
+
popOverOpen: boolean;
|
|
4329
|
+
popOverData: any;
|
|
4330
|
+
popOverSchema: any;
|
|
4199
4331
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4200
4332
|
readonly parentStore: any;
|
|
4201
4333
|
readonly __: any;
|
|
@@ -4282,6 +4414,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4282
4414
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4283
4415
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4284
4416
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4417
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4418
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4419
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4285
4420
|
}, {
|
|
4286
4421
|
readonly parentStore: any;
|
|
4287
4422
|
readonly __: any;
|
|
@@ -4383,6 +4518,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4383
4518
|
rowIndex: any;
|
|
4384
4519
|
pagination: any;
|
|
4385
4520
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4521
|
+
popOverOpen: boolean;
|
|
4522
|
+
popOverData: any;
|
|
4523
|
+
popOverSchema: any;
|
|
4386
4524
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4387
4525
|
readonly parentStore: any;
|
|
4388
4526
|
readonly __: any;
|
|
@@ -4483,7 +4621,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4483
4621
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4484
4622
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4485
4623
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4486
|
-
|
|
4624
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4625
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4626
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
4487
4627
|
changeEmitedValue: (value: any) => void;
|
|
4488
4628
|
addSubFormItem: (item: {
|
|
4489
4629
|
id: string;
|
|
@@ -4547,6 +4687,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4547
4687
|
rowIndex: any;
|
|
4548
4688
|
pagination: any;
|
|
4549
4689
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4690
|
+
popOverOpen: boolean;
|
|
4691
|
+
popOverData: any;
|
|
4692
|
+
popOverSchema: any;
|
|
4550
4693
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4551
4694
|
readonly parentStore: any;
|
|
4552
4695
|
readonly __: any;
|
|
@@ -4633,6 +4776,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4633
4776
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4634
4777
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4635
4778
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4779
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4780
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4781
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4636
4782
|
}, {
|
|
4637
4783
|
readonly parentStore: any;
|
|
4638
4784
|
readonly __: any;
|
|
@@ -4723,6 +4869,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4723
4869
|
rowIndex: any;
|
|
4724
4870
|
pagination: any;
|
|
4725
4871
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4872
|
+
popOverOpen: boolean;
|
|
4873
|
+
popOverData: any;
|
|
4874
|
+
popOverSchema: any;
|
|
4726
4875
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4727
4876
|
readonly parentStore: any;
|
|
4728
4877
|
readonly __: any;
|
|
@@ -4809,6 +4958,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4809
4958
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4810
4959
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4811
4960
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4961
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4962
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4963
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4812
4964
|
}, {
|
|
4813
4965
|
readonly parentStore: any;
|
|
4814
4966
|
readonly __: any;
|
|
@@ -4901,6 +5053,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
4901
5053
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4902
5054
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4903
5055
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5056
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5057
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5058
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4904
5059
|
}, {
|
|
4905
5060
|
readonly parentStore: any;
|
|
4906
5061
|
readonly __: any;
|
|
@@ -5001,7 +5156,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5001
5156
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5002
5157
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5003
5158
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
5004
|
-
|
|
5159
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5160
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
5161
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
5005
5162
|
changeEmitedValue: (value: any) => void;
|
|
5006
5163
|
addSubFormItem: (item: {
|
|
5007
5164
|
id: string;
|
|
@@ -5065,6 +5222,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5065
5222
|
rowIndex: any;
|
|
5066
5223
|
pagination: any;
|
|
5067
5224
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5225
|
+
popOverOpen: boolean;
|
|
5226
|
+
popOverData: any;
|
|
5227
|
+
popOverSchema: any;
|
|
5068
5228
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5069
5229
|
readonly parentStore: any;
|
|
5070
5230
|
readonly __: any;
|
|
@@ -5151,6 +5311,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5151
5311
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5152
5312
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5153
5313
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5314
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5315
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5316
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5154
5317
|
}, {
|
|
5155
5318
|
readonly parentStore: any;
|
|
5156
5319
|
readonly __: any;
|
|
@@ -5241,6 +5404,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5241
5404
|
rowIndex: any;
|
|
5242
5405
|
pagination: any;
|
|
5243
5406
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5407
|
+
popOverOpen: boolean;
|
|
5408
|
+
popOverData: any;
|
|
5409
|
+
popOverSchema: any;
|
|
5244
5410
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5245
5411
|
readonly parentStore: any;
|
|
5246
5412
|
readonly __: any;
|
|
@@ -5327,6 +5493,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5327
5493
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5328
5494
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5329
5495
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5496
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5497
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5498
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5330
5499
|
}, {
|
|
5331
5500
|
readonly parentStore: any;
|
|
5332
5501
|
readonly __: any;
|
|
@@ -5423,6 +5592,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5423
5592
|
rowIndex: any;
|
|
5424
5593
|
pagination: any;
|
|
5425
5594
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5595
|
+
popOverOpen: boolean;
|
|
5596
|
+
popOverData: any;
|
|
5597
|
+
popOverSchema: any;
|
|
5426
5598
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5427
5599
|
readonly parentStore: any;
|
|
5428
5600
|
readonly __: any;
|
|
@@ -5523,7 +5695,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5523
5695
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5524
5696
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5525
5697
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
5526
|
-
|
|
5698
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5699
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
5700
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
5527
5701
|
changeEmitedValue: (value: any) => void;
|
|
5528
5702
|
addSubFormItem: (item: {
|
|
5529
5703
|
id: string;
|
|
@@ -5587,6 +5761,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5587
5761
|
rowIndex: any;
|
|
5588
5762
|
pagination: any;
|
|
5589
5763
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5764
|
+
popOverOpen: boolean;
|
|
5765
|
+
popOverData: any;
|
|
5766
|
+
popOverSchema: any;
|
|
5590
5767
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5591
5768
|
readonly parentStore: any;
|
|
5592
5769
|
readonly __: any;
|
|
@@ -5673,6 +5850,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5673
5850
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5674
5851
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5675
5852
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5853
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5854
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5855
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5676
5856
|
}, {
|
|
5677
5857
|
readonly parentStore: any;
|
|
5678
5858
|
readonly __: any;
|
|
@@ -5763,6 +5943,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5763
5943
|
rowIndex: any;
|
|
5764
5944
|
pagination: any;
|
|
5765
5945
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5946
|
+
popOverOpen: boolean;
|
|
5947
|
+
popOverData: any;
|
|
5948
|
+
popOverSchema: any;
|
|
5766
5949
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5767
5950
|
readonly parentStore: any;
|
|
5768
5951
|
readonly __: any;
|
|
@@ -5849,6 +6032,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5849
6032
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5850
6033
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5851
6034
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6035
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6036
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6037
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5852
6038
|
}, {
|
|
5853
6039
|
readonly parentStore: any;
|
|
5854
6040
|
readonly __: any;
|
|
@@ -5941,6 +6127,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
5941
6127
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5942
6128
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5943
6129
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6130
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6131
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6132
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5944
6133
|
}, {
|
|
5945
6134
|
readonly parentStore: any;
|
|
5946
6135
|
readonly __: any;
|
|
@@ -6041,7 +6230,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6041
6230
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6042
6231
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6043
6232
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
6044
|
-
|
|
6233
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6234
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
6235
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
6045
6236
|
changeEmitedValue: (value: any) => void;
|
|
6046
6237
|
addSubFormItem: (item: {
|
|
6047
6238
|
id: string;
|
|
@@ -6105,6 +6296,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6105
6296
|
rowIndex: any;
|
|
6106
6297
|
pagination: any;
|
|
6107
6298
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6299
|
+
popOverOpen: boolean;
|
|
6300
|
+
popOverData: any;
|
|
6301
|
+
popOverSchema: any;
|
|
6108
6302
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6109
6303
|
readonly parentStore: any;
|
|
6110
6304
|
readonly __: any;
|
|
@@ -6191,6 +6385,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6191
6385
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6192
6386
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6193
6387
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6388
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6389
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6390
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6194
6391
|
}, {
|
|
6195
6392
|
readonly parentStore: any;
|
|
6196
6393
|
readonly __: any;
|
|
@@ -6281,6 +6478,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6281
6478
|
rowIndex: any;
|
|
6282
6479
|
pagination: any;
|
|
6283
6480
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6481
|
+
popOverOpen: boolean;
|
|
6482
|
+
popOverData: any;
|
|
6483
|
+
popOverSchema: any;
|
|
6284
6484
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6285
6485
|
readonly parentStore: any;
|
|
6286
6486
|
readonly __: any;
|
|
@@ -6367,6 +6567,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6367
6567
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6368
6568
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6369
6569
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6570
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6571
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6572
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6370
6573
|
}, {
|
|
6371
6574
|
readonly parentStore: any;
|
|
6372
6575
|
readonly __: any;
|
|
@@ -6463,6 +6666,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6463
6666
|
rowIndex: any;
|
|
6464
6667
|
pagination: any;
|
|
6465
6668
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6669
|
+
popOverOpen: boolean;
|
|
6670
|
+
popOverData: any;
|
|
6671
|
+
popOverSchema: any;
|
|
6466
6672
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6467
6673
|
readonly parentStore: any;
|
|
6468
6674
|
readonly __: any;
|
|
@@ -6563,7 +6769,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6563
6769
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6564
6770
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6565
6771
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
6566
|
-
|
|
6772
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6773
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
6774
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
6567
6775
|
changeEmitedValue: (value: any) => void;
|
|
6568
6776
|
addSubFormItem: (item: {
|
|
6569
6777
|
id: string;
|
|
@@ -6627,6 +6835,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6627
6835
|
rowIndex: any;
|
|
6628
6836
|
pagination: any;
|
|
6629
6837
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6838
|
+
popOverOpen: boolean;
|
|
6839
|
+
popOverData: any;
|
|
6840
|
+
popOverSchema: any;
|
|
6630
6841
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6631
6842
|
readonly parentStore: any;
|
|
6632
6843
|
readonly __: any;
|
|
@@ -6713,6 +6924,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6713
6924
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6714
6925
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6715
6926
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6927
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6928
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6929
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6716
6930
|
}, {
|
|
6717
6931
|
readonly parentStore: any;
|
|
6718
6932
|
readonly __: any;
|
|
@@ -6803,6 +7017,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6803
7017
|
rowIndex: any;
|
|
6804
7018
|
pagination: any;
|
|
6805
7019
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7020
|
+
popOverOpen: boolean;
|
|
7021
|
+
popOverData: any;
|
|
7022
|
+
popOverSchema: any;
|
|
6806
7023
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6807
7024
|
readonly parentStore: any;
|
|
6808
7025
|
readonly __: any;
|
|
@@ -6889,6 +7106,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6889
7106
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6890
7107
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6891
7108
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7109
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7110
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7111
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6892
7112
|
}, {
|
|
6893
7113
|
readonly parentStore: any;
|
|
6894
7114
|
readonly __: any;
|
|
@@ -6981,6 +7201,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
6981
7201
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6982
7202
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6983
7203
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7204
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7205
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7206
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6984
7207
|
}, {
|
|
6985
7208
|
readonly parentStore: any;
|
|
6986
7209
|
readonly __: any;
|
|
@@ -7081,7 +7304,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7081
7304
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7082
7305
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7083
7306
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
7084
|
-
|
|
7307
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7308
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
7309
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
7085
7310
|
changeEmitedValue: (value: any) => void;
|
|
7086
7311
|
addSubFormItem: (item: {
|
|
7087
7312
|
id: string;
|
|
@@ -7145,6 +7370,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7145
7370
|
rowIndex: any;
|
|
7146
7371
|
pagination: any;
|
|
7147
7372
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7373
|
+
popOverOpen: boolean;
|
|
7374
|
+
popOverData: any;
|
|
7375
|
+
popOverSchema: any;
|
|
7148
7376
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7149
7377
|
readonly parentStore: any;
|
|
7150
7378
|
readonly __: any;
|
|
@@ -7231,6 +7459,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7231
7459
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7232
7460
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7233
7461
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7462
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7463
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7464
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7234
7465
|
}, {
|
|
7235
7466
|
readonly parentStore: any;
|
|
7236
7467
|
readonly __: any;
|
|
@@ -7321,6 +7552,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7321
7552
|
rowIndex: any;
|
|
7322
7553
|
pagination: any;
|
|
7323
7554
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7555
|
+
popOverOpen: boolean;
|
|
7556
|
+
popOverData: any;
|
|
7557
|
+
popOverSchema: any;
|
|
7324
7558
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7325
7559
|
readonly parentStore: any;
|
|
7326
7560
|
readonly __: any;
|
|
@@ -7407,6 +7641,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7407
7641
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7408
7642
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7409
7643
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7644
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7645
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7646
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7410
7647
|
}, {
|
|
7411
7648
|
readonly parentStore: any;
|
|
7412
7649
|
readonly __: any;
|
|
@@ -7625,6 +7862,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7625
7862
|
rowIndex: any;
|
|
7626
7863
|
pagination: any;
|
|
7627
7864
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7865
|
+
popOverOpen: boolean;
|
|
7866
|
+
popOverData: any;
|
|
7867
|
+
popOverSchema: any;
|
|
7628
7868
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7629
7869
|
readonly parentStore: any;
|
|
7630
7870
|
readonly __: any;
|
|
@@ -7725,7 +7965,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7725
7965
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7726
7966
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7727
7967
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
7728
|
-
|
|
7968
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7969
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
7970
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
7729
7971
|
changeEmitedValue: (value: any) => void;
|
|
7730
7972
|
addSubFormItem: (item: {
|
|
7731
7973
|
id: string;
|
|
@@ -7789,6 +8031,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7789
8031
|
rowIndex: any;
|
|
7790
8032
|
pagination: any;
|
|
7791
8033
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8034
|
+
popOverOpen: boolean;
|
|
8035
|
+
popOverData: any;
|
|
8036
|
+
popOverSchema: any;
|
|
7792
8037
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7793
8038
|
readonly parentStore: any;
|
|
7794
8039
|
readonly __: any;
|
|
@@ -7875,6 +8120,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7875
8120
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7876
8121
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7877
8122
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8123
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8124
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8125
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7878
8126
|
}, {
|
|
7879
8127
|
readonly parentStore: any;
|
|
7880
8128
|
readonly __: any;
|
|
@@ -7965,6 +8213,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
7965
8213
|
rowIndex: any;
|
|
7966
8214
|
pagination: any;
|
|
7967
8215
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8216
|
+
popOverOpen: boolean;
|
|
8217
|
+
popOverData: any;
|
|
8218
|
+
popOverSchema: any;
|
|
7968
8219
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7969
8220
|
readonly parentStore: any;
|
|
7970
8221
|
readonly __: any;
|
|
@@ -8051,6 +8302,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8051
8302
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8052
8303
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8053
8304
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8305
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8306
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8307
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8054
8308
|
}, {
|
|
8055
8309
|
readonly parentStore: any;
|
|
8056
8310
|
readonly __: any;
|
|
@@ -8143,6 +8397,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8143
8397
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8144
8398
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8145
8399
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8400
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8401
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8402
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8146
8403
|
}, {
|
|
8147
8404
|
readonly parentStore: any;
|
|
8148
8405
|
readonly __: any;
|
|
@@ -8243,7 +8500,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8243
8500
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8244
8501
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8245
8502
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
8246
|
-
|
|
8503
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8504
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
8505
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8247
8506
|
changeEmitedValue: (value: any) => void;
|
|
8248
8507
|
addSubFormItem: (item: {
|
|
8249
8508
|
id: string;
|
|
@@ -8307,6 +8566,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8307
8566
|
rowIndex: any;
|
|
8308
8567
|
pagination: any;
|
|
8309
8568
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8569
|
+
popOverOpen: boolean;
|
|
8570
|
+
popOverData: any;
|
|
8571
|
+
popOverSchema: any;
|
|
8310
8572
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8311
8573
|
readonly parentStore: any;
|
|
8312
8574
|
readonly __: any;
|
|
@@ -8393,6 +8655,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8393
8655
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8394
8656
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8395
8657
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8658
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8659
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8660
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8396
8661
|
}, {
|
|
8397
8662
|
readonly parentStore: any;
|
|
8398
8663
|
readonly __: any;
|
|
@@ -8483,6 +8748,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8483
8748
|
rowIndex: any;
|
|
8484
8749
|
pagination: any;
|
|
8485
8750
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8751
|
+
popOverOpen: boolean;
|
|
8752
|
+
popOverData: any;
|
|
8753
|
+
popOverSchema: any;
|
|
8486
8754
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8487
8755
|
readonly parentStore: any;
|
|
8488
8756
|
readonly __: any;
|
|
@@ -8569,6 +8837,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8569
8837
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8570
8838
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8571
8839
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8840
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8841
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8842
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8572
8843
|
}, {
|
|
8573
8844
|
readonly parentStore: any;
|
|
8574
8845
|
readonly __: any;
|
|
@@ -8665,6 +8936,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8665
8936
|
rowIndex: any;
|
|
8666
8937
|
pagination: any;
|
|
8667
8938
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8939
|
+
popOverOpen: boolean;
|
|
8940
|
+
popOverData: any;
|
|
8941
|
+
popOverSchema: any;
|
|
8668
8942
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8669
8943
|
readonly parentStore: any;
|
|
8670
8944
|
readonly __: any;
|
|
@@ -8765,7 +9039,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8765
9039
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8766
9040
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8767
9041
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
8768
|
-
|
|
9042
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9043
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
9044
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8769
9045
|
changeEmitedValue: (value: any) => void;
|
|
8770
9046
|
addSubFormItem: (item: {
|
|
8771
9047
|
id: string;
|
|
@@ -8829,6 +9105,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8829
9105
|
rowIndex: any;
|
|
8830
9106
|
pagination: any;
|
|
8831
9107
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9108
|
+
popOverOpen: boolean;
|
|
9109
|
+
popOverData: any;
|
|
9110
|
+
popOverSchema: any;
|
|
8832
9111
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8833
9112
|
readonly parentStore: any;
|
|
8834
9113
|
readonly __: any;
|
|
@@ -8915,6 +9194,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
8915
9194
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8916
9195
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8917
9196
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9197
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9198
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9199
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8918
9200
|
}, {
|
|
8919
9201
|
readonly parentStore: any;
|
|
8920
9202
|
readonly __: any;
|
|
@@ -9005,6 +9287,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9005
9287
|
rowIndex: any;
|
|
9006
9288
|
pagination: any;
|
|
9007
9289
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9290
|
+
popOverOpen: boolean;
|
|
9291
|
+
popOverData: any;
|
|
9292
|
+
popOverSchema: any;
|
|
9008
9293
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9009
9294
|
readonly parentStore: any;
|
|
9010
9295
|
readonly __: any;
|
|
@@ -9091,6 +9376,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9091
9376
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9092
9377
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9093
9378
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9379
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9380
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9381
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9094
9382
|
}, {
|
|
9095
9383
|
readonly parentStore: any;
|
|
9096
9384
|
readonly __: any;
|
|
@@ -9183,6 +9471,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9183
9471
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9184
9472
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9185
9473
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9474
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9475
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9476
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9186
9477
|
}, {
|
|
9187
9478
|
readonly parentStore: any;
|
|
9188
9479
|
readonly __: any;
|
|
@@ -9283,7 +9574,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9283
9574
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9284
9575
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9285
9576
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
9286
|
-
|
|
9577
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9578
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
9579
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
9287
9580
|
changeEmitedValue: (value: any) => void;
|
|
9288
9581
|
addSubFormItem: (item: {
|
|
9289
9582
|
id: string;
|
|
@@ -9347,6 +9640,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9347
9640
|
rowIndex: any;
|
|
9348
9641
|
pagination: any;
|
|
9349
9642
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9643
|
+
popOverOpen: boolean;
|
|
9644
|
+
popOverData: any;
|
|
9645
|
+
popOverSchema: any;
|
|
9350
9646
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9351
9647
|
readonly parentStore: any;
|
|
9352
9648
|
readonly __: any;
|
|
@@ -9433,6 +9729,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9433
9729
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9434
9730
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9435
9731
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9732
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9733
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9734
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9436
9735
|
}, {
|
|
9437
9736
|
readonly parentStore: any;
|
|
9438
9737
|
readonly __: any;
|
|
@@ -9523,6 +9822,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9523
9822
|
rowIndex: any;
|
|
9524
9823
|
pagination: any;
|
|
9525
9824
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9825
|
+
popOverOpen: boolean;
|
|
9826
|
+
popOverData: any;
|
|
9827
|
+
popOverSchema: any;
|
|
9526
9828
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9527
9829
|
readonly parentStore: any;
|
|
9528
9830
|
readonly __: any;
|
|
@@ -9609,6 +9911,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9609
9911
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9610
9912
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9611
9913
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9914
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9915
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9916
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9612
9917
|
}, {
|
|
9613
9918
|
readonly parentStore: any;
|
|
9614
9919
|
readonly __: any;
|
|
@@ -9710,6 +10015,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9710
10015
|
rowIndex: any;
|
|
9711
10016
|
pagination: any;
|
|
9712
10017
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10018
|
+
popOverOpen: boolean;
|
|
10019
|
+
popOverData: any;
|
|
10020
|
+
popOverSchema: any;
|
|
9713
10021
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9714
10022
|
readonly parentStore: any;
|
|
9715
10023
|
readonly __: any;
|
|
@@ -9810,7 +10118,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9810
10118
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9811
10119
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9812
10120
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
9813
|
-
|
|
10121
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10122
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
10123
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
9814
10124
|
changeEmitedValue: (value: any) => void;
|
|
9815
10125
|
addSubFormItem: (item: {
|
|
9816
10126
|
id: string;
|
|
@@ -9874,6 +10184,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9874
10184
|
rowIndex: any;
|
|
9875
10185
|
pagination: any;
|
|
9876
10186
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10187
|
+
popOverOpen: boolean;
|
|
10188
|
+
popOverData: any;
|
|
10189
|
+
popOverSchema: any;
|
|
9877
10190
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9878
10191
|
readonly parentStore: any;
|
|
9879
10192
|
readonly __: any;
|
|
@@ -9960,6 +10273,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
9960
10273
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9961
10274
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9962
10275
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10276
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10277
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10278
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9963
10279
|
}, {
|
|
9964
10280
|
readonly parentStore: any;
|
|
9965
10281
|
readonly __: any;
|
|
@@ -10050,6 +10366,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10050
10366
|
rowIndex: any;
|
|
10051
10367
|
pagination: any;
|
|
10052
10368
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10369
|
+
popOverOpen: boolean;
|
|
10370
|
+
popOverData: any;
|
|
10371
|
+
popOverSchema: any;
|
|
10053
10372
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10054
10373
|
readonly parentStore: any;
|
|
10055
10374
|
readonly __: any;
|
|
@@ -10136,6 +10455,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10136
10455
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10137
10456
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10138
10457
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10458
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10459
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10460
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10139
10461
|
}, {
|
|
10140
10462
|
readonly parentStore: any;
|
|
10141
10463
|
readonly __: any;
|
|
@@ -10228,6 +10550,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10228
10550
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10229
10551
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10230
10552
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10553
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10554
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10555
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10231
10556
|
}, {
|
|
10232
10557
|
readonly parentStore: any;
|
|
10233
10558
|
readonly __: any;
|
|
@@ -10328,7 +10653,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10328
10653
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10329
10654
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10330
10655
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
10331
|
-
|
|
10656
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10657
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
10658
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
10332
10659
|
changeEmitedValue: (value: any) => void;
|
|
10333
10660
|
addSubFormItem: (item: {
|
|
10334
10661
|
id: string;
|
|
@@ -10392,6 +10719,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10392
10719
|
rowIndex: any;
|
|
10393
10720
|
pagination: any;
|
|
10394
10721
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10722
|
+
popOverOpen: boolean;
|
|
10723
|
+
popOverData: any;
|
|
10724
|
+
popOverSchema: any;
|
|
10395
10725
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10396
10726
|
readonly parentStore: any;
|
|
10397
10727
|
readonly __: any;
|
|
@@ -10478,6 +10808,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10478
10808
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10479
10809
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10480
10810
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10811
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10812
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10813
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10481
10814
|
}, {
|
|
10482
10815
|
readonly parentStore: any;
|
|
10483
10816
|
readonly __: any;
|
|
@@ -10568,6 +10901,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10568
10901
|
rowIndex: any;
|
|
10569
10902
|
pagination: any;
|
|
10570
10903
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10904
|
+
popOverOpen: boolean;
|
|
10905
|
+
popOverData: any;
|
|
10906
|
+
popOverSchema: any;
|
|
10571
10907
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10572
10908
|
readonly parentStore: any;
|
|
10573
10909
|
readonly __: any;
|
|
@@ -10654,6 +10990,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10654
10990
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10655
10991
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10656
10992
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10993
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10994
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10995
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10657
10996
|
}, {
|
|
10658
10997
|
readonly parentStore: any;
|
|
10659
10998
|
readonly __: any;
|
|
@@ -10750,6 +11089,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10750
11089
|
rowIndex: any;
|
|
10751
11090
|
pagination: any;
|
|
10752
11091
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11092
|
+
popOverOpen: boolean;
|
|
11093
|
+
popOverData: any;
|
|
11094
|
+
popOverSchema: any;
|
|
10753
11095
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10754
11096
|
readonly parentStore: any;
|
|
10755
11097
|
readonly __: any;
|
|
@@ -10850,7 +11192,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10850
11192
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10851
11193
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10852
11194
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
10853
|
-
|
|
11195
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11196
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
11197
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
10854
11198
|
changeEmitedValue: (value: any) => void;
|
|
10855
11199
|
addSubFormItem: (item: {
|
|
10856
11200
|
id: string;
|
|
@@ -10914,6 +11258,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
10914
11258
|
rowIndex: any;
|
|
10915
11259
|
pagination: any;
|
|
10916
11260
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11261
|
+
popOverOpen: boolean;
|
|
11262
|
+
popOverData: any;
|
|
11263
|
+
popOverSchema: any;
|
|
10917
11264
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10918
11265
|
readonly parentStore: any;
|
|
10919
11266
|
readonly __: any;
|
|
@@ -11000,6 +11347,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11000
11347
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11001
11348
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11002
11349
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11350
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11351
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11352
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11003
11353
|
}, {
|
|
11004
11354
|
readonly parentStore: any;
|
|
11005
11355
|
readonly __: any;
|
|
@@ -11090,6 +11440,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11090
11440
|
rowIndex: any;
|
|
11091
11441
|
pagination: any;
|
|
11092
11442
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11443
|
+
popOverOpen: boolean;
|
|
11444
|
+
popOverData: any;
|
|
11445
|
+
popOverSchema: any;
|
|
11093
11446
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11094
11447
|
readonly parentStore: any;
|
|
11095
11448
|
readonly __: any;
|
|
@@ -11176,6 +11529,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11176
11529
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11177
11530
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11178
11531
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11532
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11533
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11534
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11179
11535
|
}, {
|
|
11180
11536
|
readonly parentStore: any;
|
|
11181
11537
|
readonly __: any;
|
|
@@ -11268,6 +11624,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11268
11624
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11269
11625
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11270
11626
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11627
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11628
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11629
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11271
11630
|
}, {
|
|
11272
11631
|
readonly parentStore: any;
|
|
11273
11632
|
readonly __: any;
|
|
@@ -11368,7 +11727,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11368
11727
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11369
11728
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11370
11729
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
11371
|
-
|
|
11730
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11731
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
11732
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
11372
11733
|
changeEmitedValue: (value: any) => void;
|
|
11373
11734
|
addSubFormItem: (item: {
|
|
11374
11735
|
id: string;
|
|
@@ -11432,6 +11793,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11432
11793
|
rowIndex: any;
|
|
11433
11794
|
pagination: any;
|
|
11434
11795
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11796
|
+
popOverOpen: boolean;
|
|
11797
|
+
popOverData: any;
|
|
11798
|
+
popOverSchema: any;
|
|
11435
11799
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11436
11800
|
readonly parentStore: any;
|
|
11437
11801
|
readonly __: any;
|
|
@@ -11518,6 +11882,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11518
11882
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11519
11883
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11520
11884
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11885
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11886
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11887
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11521
11888
|
}, {
|
|
11522
11889
|
readonly parentStore: any;
|
|
11523
11890
|
readonly __: any;
|
|
@@ -11608,6 +11975,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11608
11975
|
rowIndex: any;
|
|
11609
11976
|
pagination: any;
|
|
11610
11977
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11978
|
+
popOverOpen: boolean;
|
|
11979
|
+
popOverData: any;
|
|
11980
|
+
popOverSchema: any;
|
|
11611
11981
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11612
11982
|
readonly parentStore: any;
|
|
11613
11983
|
readonly __: any;
|
|
@@ -11694,6 +12064,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11694
12064
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
11695
12065
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
11696
12066
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12067
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12068
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12069
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
11697
12070
|
}, {
|
|
11698
12071
|
readonly parentStore: any;
|
|
11699
12072
|
readonly __: any;
|
|
@@ -11790,6 +12163,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11790
12163
|
rowIndex: any;
|
|
11791
12164
|
pagination: any;
|
|
11792
12165
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12166
|
+
popOverOpen: boolean;
|
|
12167
|
+
popOverData: any;
|
|
12168
|
+
popOverSchema: any;
|
|
11793
12169
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11794
12170
|
readonly parentStore: any;
|
|
11795
12171
|
readonly __: any;
|
|
@@ -11890,7 +12266,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11890
12266
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
11891
12267
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11892
12268
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
11893
|
-
|
|
12269
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
12270
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
12271
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
11894
12272
|
changeEmitedValue: (value: any) => void;
|
|
11895
12273
|
addSubFormItem: (item: {
|
|
11896
12274
|
id: string;
|
|
@@ -11954,6 +12332,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
11954
12332
|
rowIndex: any;
|
|
11955
12333
|
pagination: any;
|
|
11956
12334
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12335
|
+
popOverOpen: boolean;
|
|
12336
|
+
popOverData: any;
|
|
12337
|
+
popOverSchema: any;
|
|
11957
12338
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11958
12339
|
readonly parentStore: any;
|
|
11959
12340
|
readonly __: any;
|
|
@@ -12040,6 +12421,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12040
12421
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12041
12422
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12042
12423
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12424
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12425
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12426
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12043
12427
|
}, {
|
|
12044
12428
|
readonly parentStore: any;
|
|
12045
12429
|
readonly __: any;
|
|
@@ -12130,6 +12514,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12130
12514
|
rowIndex: any;
|
|
12131
12515
|
pagination: any;
|
|
12132
12516
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12517
|
+
popOverOpen: boolean;
|
|
12518
|
+
popOverData: any;
|
|
12519
|
+
popOverSchema: any;
|
|
12133
12520
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12134
12521
|
readonly parentStore: any;
|
|
12135
12522
|
readonly __: any;
|
|
@@ -12216,6 +12603,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12216
12603
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12217
12604
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12218
12605
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12606
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12607
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12608
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12219
12609
|
}, {
|
|
12220
12610
|
readonly parentStore: any;
|
|
12221
12611
|
readonly __: any;
|
|
@@ -12308,6 +12698,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12308
12698
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12309
12699
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12310
12700
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12701
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12702
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12703
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12311
12704
|
}, {
|
|
12312
12705
|
readonly parentStore: any;
|
|
12313
12706
|
readonly __: any;
|
|
@@ -12408,7 +12801,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12408
12801
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
12409
12802
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
12410
12803
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
12411
|
-
|
|
12804
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
12805
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
12806
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
12412
12807
|
changeEmitedValue: (value: any) => void;
|
|
12413
12808
|
addSubFormItem: (item: {
|
|
12414
12809
|
id: string;
|
|
@@ -12472,6 +12867,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12472
12867
|
rowIndex: any;
|
|
12473
12868
|
pagination: any;
|
|
12474
12869
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
12870
|
+
popOverOpen: boolean;
|
|
12871
|
+
popOverData: any;
|
|
12872
|
+
popOverSchema: any;
|
|
12475
12873
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12476
12874
|
readonly parentStore: any;
|
|
12477
12875
|
readonly __: any;
|
|
@@ -12558,6 +12956,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12558
12956
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12559
12957
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12560
12958
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
12959
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
12960
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
12961
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12561
12962
|
}, {
|
|
12562
12963
|
readonly parentStore: any;
|
|
12563
12964
|
readonly __: any;
|
|
@@ -12648,6 +13049,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12648
13049
|
rowIndex: any;
|
|
12649
13050
|
pagination: any;
|
|
12650
13051
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
13052
|
+
popOverOpen: boolean;
|
|
13053
|
+
popOverData: any;
|
|
13054
|
+
popOverSchema: any;
|
|
12651
13055
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
12652
13056
|
readonly parentStore: any;
|
|
12653
13057
|
readonly __: any;
|
|
@@ -12734,6 +13138,9 @@ export declare const ComboStore: import("mobx-state-tree").IModelType<{
|
|
|
12734
13138
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
12735
13139
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
12736
13140
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
13141
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
13142
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
13143
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
12737
13144
|
}, {
|
|
12738
13145
|
readonly parentStore: any;
|
|
12739
13146
|
readonly __: any;
|