amis-core 6.6.0 → 6.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/Root.js +4 -3
- package/esm/RootRenderer.d.ts +1 -1
- package/esm/RootRenderer.js +1 -1
- package/esm/SchemaRenderer.d.ts +0 -1
- package/esm/SchemaRenderer.js +19 -10
- package/esm/Scoped.js +2 -1
- package/esm/StatusScoped.js +1 -1
- package/esm/WithRootStore.js +1 -1
- package/esm/WithStore.js +8 -8
- package/esm/actions/Action.js +33 -31
- package/esm/actions/AjaxAction.js +1 -1
- package/esm/actions/BreakAction.js +1 -1
- package/esm/actions/BroadcastAction.js +1 -1
- package/esm/actions/CmptAction.js +55 -48
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +12 -3
- package/esm/actions/DialogAction.js +3 -1
- package/esm/actions/DrawerAction.js +2 -1
- package/esm/actions/EmailAction.js +1 -1
- package/esm/actions/EventAction.js +2 -1
- package/esm/actions/LinkAction.js +1 -1
- package/esm/actions/LoopAction.js +2 -1
- package/esm/actions/PageAction.js +1 -1
- package/esm/actions/ParallelAction.js +1 -1
- package/esm/actions/PrintAction.js +1 -1
- package/esm/actions/StatusAction.js +1 -1
- package/esm/actions/SwitchAction.js +1 -1
- package/esm/actions/ToastAction.js +1 -1
- package/esm/actions/WaitAction.js +1 -1
- package/esm/components/CustomStyle.js +1 -1
- package/esm/components/ErrorBoundary.js +1 -1
- package/esm/components/LazyComponent.js +1 -1
- package/esm/components/Overlay.js +2 -1
- package/esm/components/PopOver.d.ts +2 -0
- package/esm/components/PopOver.js +5 -4
- package/esm/env.d.ts +4 -0
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.js +1 -1
- package/esm/index.js +3 -3
- package/esm/locale.js +2 -1
- package/esm/polyfills.js +1 -1
- package/esm/renderers/Form.js +123 -25
- package/esm/renderers/Item.d.ts +97 -12
- package/esm/renderers/Item.js +180 -126
- package/esm/renderers/Options.js +2 -1
- package/esm/renderers/Placeholder.js +1 -1
- package/esm/renderers/builtin.js +1 -1
- package/esm/renderers/register.js +1 -1
- package/esm/renderers/wrapControl.js +2 -1
- package/esm/store/app.d.ts +1 -0
- package/esm/store/app.js +2 -1
- package/esm/store/combo.d.ts +411 -0
- package/esm/store/combo.js +1 -1
- package/esm/store/crud.d.ts +1 -0
- package/esm/store/crud.js +2 -1
- package/esm/store/form.d.ts +171 -0
- package/esm/store/form.js +2 -1
- package/esm/store/formItem.d.ts +5 -0
- package/esm/store/formItem.js +30 -8
- package/esm/store/iRenderer.d.ts +1 -0
- package/esm/store/iRenderer.js +8 -3
- package/esm/store/index.js +1 -1
- package/esm/store/list.d.ts +1 -0
- package/esm/store/list.js +1 -1
- package/esm/store/manager.js +1 -1
- package/esm/store/modal.d.ts +1 -0
- package/esm/store/modal.js +1 -1
- package/esm/store/node.js +1 -1
- package/esm/store/pagination.d.ts +1 -0
- package/esm/store/pagination.js +2 -1
- package/esm/store/root.d.ts +1 -0
- package/esm/store/root.js +2 -1
- package/esm/store/service.d.ts +1 -0
- package/esm/store/service.js +2 -1
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +382 -21
- package/esm/store/table.js +84 -54
- package/esm/store/table2.d.ts +1 -0
- package/esm/store/table2.js +1 -1
- package/esm/theme.js +1 -1
- package/esm/types.d.ts +1 -1
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.js +1 -1
- package/esm/utils/DataScope.js +2 -2
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.js +2 -2
- package/esm/utils/arraySlice.js +1 -1
- package/esm/utils/attachmentAdpator.js +1 -1
- package/esm/utils/autobind.js +1 -1
- package/esm/utils/browser.js +1 -1
- package/esm/utils/columnsSplit.js +1 -1
- package/esm/utils/concatData.js +1 -1
- package/esm/utils/dataMapping.js +1 -1
- package/esm/utils/date.js +1 -1
- package/esm/utils/debug.js +17 -3
- package/esm/utils/decodeEntity.js +1 -1
- package/esm/utils/dom.js +1 -1
- package/esm/utils/errors.js +1 -1
- package/esm/utils/escapeHtml.js +1 -1
- package/esm/utils/filter-schema.js +1 -1
- package/esm/utils/filter.js +1 -1
- package/esm/utils/formatDuration.js +1 -1
- package/esm/utils/formula.js +2 -1
- package/esm/utils/getVariable.js +1 -1
- package/esm/utils/grammar.js +1 -1
- package/esm/utils/handleAction.js +1 -1
- package/esm/utils/helper.d.ts +5 -1
- package/esm/utils/helper.js +37 -8
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/isPureVariable.js +2 -2
- package/esm/utils/json-schema-2-amis-schema.js +1 -1
- package/esm/utils/keyToPath.js +1 -1
- package/esm/utils/labelToString.js +1 -1
- package/esm/utils/makeSorter.js +1 -1
- package/esm/utils/math.js +1 -1
- package/esm/utils/memoryParse.d.ts +2 -1
- package/esm/utils/memoryParse.js +10 -6
- package/esm/utils/normalizeLink.js +1 -1
- package/esm/utils/normalizeOptions.js +1 -1
- package/esm/utils/object.d.ts +2 -4
- package/esm/utils/object.js +1 -1
- package/esm/utils/offset.js +1 -1
- package/esm/utils/offsetParent.js +1 -1
- package/esm/utils/optionValueCompare.js +1 -1
- package/esm/utils/position.js +1 -1
- package/esm/utils/prettyBytes.js +1 -1
- package/esm/utils/printElement.js +1 -1
- package/esm/utils/renderer-event.js +5 -3
- package/esm/utils/replaceText.js +1 -1
- package/esm/utils/resize-sensor.js +30 -1
- package/esm/utils/resolveCondition.js +2 -1
- package/esm/utils/resolveVariable.js +1 -1
- package/esm/utils/resolveVariableAndFilter.js +1 -1
- package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/esm/utils/scrollPosition.js +1 -1
- package/esm/utils/string2regExp.js +1 -1
- package/esm/utils/stripNumber.js +1 -1
- package/esm/utils/style-helper.d.ts +4 -2
- package/esm/utils/style-helper.js +27 -13
- package/esm/utils/style.js +2 -1
- package/esm/utils/toNumber.js +1 -1
- package/esm/utils/tokenize.js +1 -1
- package/esm/utils/tpl-builtin.js +2 -1
- package/esm/utils/tpl-lodash.js +2 -1
- package/esm/utils/tpl.js +1 -1
- package/esm/utils/uncontrollable.js +1 -1
- package/esm/utils/validateId.js +3 -3
- package/esm/utils/validations.js +2 -1
- package/esm/utils/visitedCache.d.ts +46 -0
- package/esm/utils/visitedCache.js +124 -0
- package/lib/Root.js +4 -3
- package/lib/RootRenderer.js +1 -1
- package/lib/SchemaRenderer.d.ts +0 -1
- package/lib/SchemaRenderer.js +19 -10
- package/lib/Scoped.js +2 -1
- package/lib/StatusScoped.js +1 -1
- package/lib/WithRootStore.js +1 -1
- package/lib/WithStore.js +8 -8
- package/lib/actions/Action.js +33 -31
- package/lib/actions/AjaxAction.js +1 -1
- package/lib/actions/BreakAction.js +1 -1
- package/lib/actions/BroadcastAction.js +1 -1
- package/lib/actions/CmptAction.js +55 -48
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +12 -3
- package/lib/actions/DialogAction.js +3 -1
- package/lib/actions/DrawerAction.js +2 -1
- package/lib/actions/EmailAction.js +1 -1
- package/lib/actions/EventAction.js +2 -1
- package/lib/actions/LinkAction.js +1 -1
- package/lib/actions/LoopAction.js +2 -1
- package/lib/actions/PageAction.js +1 -1
- package/lib/actions/ParallelAction.js +1 -1
- package/lib/actions/PrintAction.js +1 -1
- package/lib/actions/StatusAction.js +1 -1
- package/lib/actions/SwitchAction.js +1 -1
- package/lib/actions/ToastAction.js +1 -1
- package/lib/actions/WaitAction.js +1 -1
- package/lib/components/CustomStyle.js +1 -1
- package/lib/components/ErrorBoundary.js +1 -1
- package/lib/components/LazyComponent.js +1 -1
- package/lib/components/Overlay.js +2 -1
- package/lib/components/PopOver.d.ts +2 -0
- package/lib/components/PopOver.js +5 -4
- package/lib/env.d.ts +4 -0
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.js +1 -1
- package/lib/index.js +3 -2
- package/lib/locale.js +2 -1
- package/lib/polyfills.js +1 -1
- package/lib/renderers/Form.js +122 -24
- package/lib/renderers/Item.d.ts +97 -12
- package/lib/renderers/Item.js +179 -125
- package/lib/renderers/Options.js +2 -1
- package/lib/renderers/Placeholder.js +1 -1
- package/lib/renderers/builtin.js +1 -1
- package/lib/renderers/register.js +1 -1
- package/lib/renderers/wrapControl.js +2 -1
- package/lib/store/app.d.ts +1 -0
- package/lib/store/app.js +2 -1
- package/lib/store/combo.d.ts +435 -24
- package/lib/store/combo.js +1 -1
- package/lib/store/crud.d.ts +1 -0
- package/lib/store/crud.js +2 -1
- package/lib/store/form.d.ts +181 -10
- package/lib/store/form.js +2 -1
- package/lib/store/formItem.d.ts +5 -0
- package/lib/store/formItem.js +30 -8
- package/lib/store/iRenderer.d.ts +1 -0
- package/lib/store/iRenderer.js +8 -3
- package/lib/store/index.js +1 -1
- package/lib/store/list.d.ts +1 -0
- package/lib/store/list.js +1 -1
- package/lib/store/manager.js +1 -1
- package/lib/store/modal.d.ts +1 -0
- package/lib/store/modal.js +1 -1
- package/lib/store/node.js +1 -1
- package/lib/store/pagination.d.ts +1 -0
- package/lib/store/pagination.js +2 -1
- package/lib/store/root.d.ts +1 -0
- package/lib/store/root.js +2 -1
- package/lib/store/service.d.ts +1 -0
- package/lib/store/service.js +2 -1
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +402 -41
- package/lib/store/table.js +84 -54
- package/lib/store/table2.d.ts +1 -0
- package/lib/store/table2.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.d.ts +1 -1
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.js +1 -1
- package/lib/utils/DataScope.js +2 -2
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.js +2 -2
- package/lib/utils/arraySlice.js +1 -1
- package/lib/utils/attachmentAdpator.js +1 -1
- package/lib/utils/autobind.js +1 -1
- package/lib/utils/browser.js +1 -1
- package/lib/utils/columnsSplit.js +1 -1
- package/lib/utils/concatData.js +1 -1
- package/lib/utils/dataMapping.js +1 -1
- package/lib/utils/date.js +1 -1
- package/lib/utils/debug.js +17 -3
- package/lib/utils/decodeEntity.js +1 -1
- package/lib/utils/dom.js +1 -1
- package/lib/utils/errors.js +1 -1
- package/lib/utils/escapeHtml.js +1 -1
- package/lib/utils/filter-schema.js +1 -1
- package/lib/utils/filter.js +1 -1
- package/lib/utils/formatDuration.js +1 -1
- package/lib/utils/formula.js +2 -1
- package/lib/utils/getVariable.js +1 -1
- package/lib/utils/grammar.js +1 -1
- package/lib/utils/handleAction.js +1 -1
- package/lib/utils/helper.d.ts +5 -1
- package/lib/utils/helper.js +36 -6
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/isPureVariable.js +2 -2
- package/lib/utils/json-schema-2-amis-schema.js +1 -1
- package/lib/utils/keyToPath.js +1 -1
- package/lib/utils/labelToString.js +1 -1
- package/lib/utils/makeSorter.js +1 -1
- package/lib/utils/math.js +1 -1
- package/lib/utils/memoryParse.d.ts +2 -1
- package/lib/utils/memoryParse.js +10 -6
- package/lib/utils/normalizeLink.js +1 -1
- package/lib/utils/normalizeOptions.js +1 -1
- package/lib/utils/object.d.ts +2 -4
- package/lib/utils/object.js +1 -1
- package/lib/utils/offset.js +1 -1
- package/lib/utils/offsetParent.js +1 -1
- package/lib/utils/optionValueCompare.js +1 -1
- package/lib/utils/position.js +1 -1
- package/lib/utils/prettyBytes.js +1 -1
- package/lib/utils/printElement.js +1 -1
- package/lib/utils/renderer-event.js +5 -3
- package/lib/utils/replaceText.js +1 -1
- package/lib/utils/resize-sensor.js +30 -1
- package/lib/utils/resolveCondition.js +2 -1
- package/lib/utils/resolveVariable.js +1 -1
- package/lib/utils/resolveVariableAndFilter.js +1 -1
- package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/lib/utils/scrollPosition.js +1 -1
- package/lib/utils/string2regExp.js +1 -1
- package/lib/utils/stripNumber.js +1 -1
- package/lib/utils/style-helper.d.ts +4 -2
- package/lib/utils/style-helper.js +27 -13
- package/lib/utils/style.js +2 -1
- package/lib/utils/toNumber.js +1 -1
- package/lib/utils/tokenize.js +1 -1
- package/lib/utils/tpl-builtin.js +2 -1
- package/lib/utils/tpl-lodash.js +2 -1
- package/lib/utils/tpl.js +1 -1
- package/lib/utils/uncontrollable.js +1 -1
- package/lib/utils/validateId.js +3 -3
- package/lib/utils/validations.js +2 -1
- package/lib/utils/visitedCache.d.ts +46 -0
- package/lib/utils/visitedCache.js +128 -0
- package/package.json +2 -2
package/esm/store/table.d.ts
CHANGED
|
@@ -33,10 +33,11 @@ export declare const Column: import("mobx-state-tree").IModelType<{
|
|
|
33
33
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
34
34
|
}, {
|
|
35
35
|
readonly isPrimary: boolean;
|
|
36
|
+
readonly columnKey: any;
|
|
36
37
|
} & {
|
|
37
38
|
toggleToggle(min?: number): void;
|
|
38
39
|
setToggled(value: boolean): void;
|
|
39
|
-
setEnableSearch(value: boolean): void;
|
|
40
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
40
41
|
setMinWidth(value: number): void;
|
|
41
42
|
setWidth(value: number): void;
|
|
42
43
|
setRealWidth(value: number): void;
|
|
@@ -119,6 +120,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
119
120
|
initedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
120
121
|
updatedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
121
122
|
pristine: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
123
|
+
pristineRaw: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
122
124
|
upStreamData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
123
125
|
action: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
124
126
|
dialogOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
@@ -153,15 +155,15 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
153
155
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
154
156
|
}, {
|
|
155
157
|
readonly isPrimary: boolean;
|
|
158
|
+
readonly columnKey: any;
|
|
156
159
|
} & {
|
|
157
160
|
toggleToggle(min?: number): void;
|
|
158
161
|
setToggled(value: boolean): void;
|
|
159
|
-
setEnableSearch(value: boolean): void;
|
|
162
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
160
163
|
setMinWidth(value: number): void;
|
|
161
164
|
setWidth(value: number): void;
|
|
162
165
|
setRealWidth(value: number): void;
|
|
163
166
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
164
|
-
columnsKey: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
165
167
|
rows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
166
168
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
167
169
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -342,6 +344,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
342
344
|
getDrawerScoped(): import("..").IScopedContext | null;
|
|
343
345
|
} & {
|
|
344
346
|
getSelectionUpperLimit: () => number;
|
|
347
|
+
readonly columnsKey: string;
|
|
345
348
|
readonly columnsData: ({
|
|
346
349
|
label: any;
|
|
347
350
|
type: string;
|
|
@@ -369,10 +372,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
369
372
|
className: any;
|
|
370
373
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
371
374
|
readonly isPrimary: boolean;
|
|
375
|
+
readonly columnKey: any;
|
|
372
376
|
} & {
|
|
373
377
|
toggleToggle(min?: number): void;
|
|
374
378
|
setToggled(value: boolean): void;
|
|
375
|
-
setEnableSearch(value: boolean): void;
|
|
379
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
376
380
|
setMinWidth(value: number): void;
|
|
377
381
|
setWidth(value: number): void;
|
|
378
382
|
setRealWidth(value: number): void;
|
|
@@ -403,10 +407,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
403
407
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
404
408
|
}, {
|
|
405
409
|
readonly isPrimary: boolean;
|
|
410
|
+
readonly columnKey: any;
|
|
406
411
|
} & {
|
|
407
412
|
toggleToggle(min?: number): void;
|
|
408
413
|
setToggled(value: boolean): void;
|
|
409
|
-
setEnableSearch(value: boolean): void;
|
|
414
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
410
415
|
setMinWidth(value: number): void;
|
|
411
416
|
setWidth(value: number): void;
|
|
412
417
|
setRealWidth(value: number): void;
|
|
@@ -424,6 +429,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
424
429
|
initedAt: number;
|
|
425
430
|
updatedAt: number;
|
|
426
431
|
pristine: any;
|
|
432
|
+
pristineRaw: any;
|
|
427
433
|
upStreamData: any;
|
|
428
434
|
action: any;
|
|
429
435
|
dialogOpen: boolean;
|
|
@@ -554,6 +560,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
554
560
|
rowIndex: any;
|
|
555
561
|
pagination: any;
|
|
556
562
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
563
|
+
popOverOpen: boolean;
|
|
564
|
+
popOverData: any;
|
|
565
|
+
popOverSchema: any;
|
|
557
566
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
558
567
|
readonly parentStore: any;
|
|
559
568
|
readonly __: any;
|
|
@@ -654,6 +663,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
654
663
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
655
664
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
656
665
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
666
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
667
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
657
668
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
658
669
|
changeEmitedValue: (value: any) => void;
|
|
659
670
|
addSubFormItem: (item: {
|
|
@@ -718,6 +729,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
718
729
|
rowIndex: any;
|
|
719
730
|
pagination: any;
|
|
720
731
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
732
|
+
popOverOpen: boolean;
|
|
733
|
+
popOverData: any;
|
|
734
|
+
popOverSchema: any;
|
|
721
735
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
722
736
|
readonly parentStore: any;
|
|
723
737
|
readonly __: any;
|
|
@@ -804,6 +818,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
804
818
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
805
819
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
806
820
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
821
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
822
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
823
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
807
824
|
}, {
|
|
808
825
|
readonly parentStore: any;
|
|
809
826
|
readonly __: any;
|
|
@@ -894,6 +911,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
894
911
|
rowIndex: any;
|
|
895
912
|
pagination: any;
|
|
896
913
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
914
|
+
popOverOpen: boolean;
|
|
915
|
+
popOverData: any;
|
|
916
|
+
popOverSchema: any;
|
|
897
917
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
898
918
|
readonly parentStore: any;
|
|
899
919
|
readonly __: any;
|
|
@@ -980,6 +1000,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
980
1000
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
981
1001
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
982
1002
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1003
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1004
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1005
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
983
1006
|
}, {
|
|
984
1007
|
readonly parentStore: any;
|
|
985
1008
|
readonly __: any;
|
|
@@ -1072,6 +1095,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1072
1095
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1073
1096
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1074
1097
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1098
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1099
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1100
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1075
1101
|
}, {
|
|
1076
1102
|
readonly parentStore: any;
|
|
1077
1103
|
readonly __: any;
|
|
@@ -1172,6 +1198,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1172
1198
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1173
1199
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1174
1200
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1201
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1202
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1175
1203
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
1176
1204
|
changeEmitedValue: (value: any) => void;
|
|
1177
1205
|
addSubFormItem: (item: {
|
|
@@ -1236,6 +1264,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1236
1264
|
rowIndex: any;
|
|
1237
1265
|
pagination: any;
|
|
1238
1266
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1267
|
+
popOverOpen: boolean;
|
|
1268
|
+
popOverData: any;
|
|
1269
|
+
popOverSchema: any;
|
|
1239
1270
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1240
1271
|
readonly parentStore: any;
|
|
1241
1272
|
readonly __: any;
|
|
@@ -1322,6 +1353,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1322
1353
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1323
1354
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1324
1355
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1356
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1357
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1358
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1325
1359
|
}, {
|
|
1326
1360
|
readonly parentStore: any;
|
|
1327
1361
|
readonly __: any;
|
|
@@ -1412,6 +1446,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1412
1446
|
rowIndex: any;
|
|
1413
1447
|
pagination: any;
|
|
1414
1448
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1449
|
+
popOverOpen: boolean;
|
|
1450
|
+
popOverData: any;
|
|
1451
|
+
popOverSchema: any;
|
|
1415
1452
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1416
1453
|
readonly parentStore: any;
|
|
1417
1454
|
readonly __: any;
|
|
@@ -1498,6 +1535,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1498
1535
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1499
1536
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1500
1537
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1538
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1539
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1540
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1501
1541
|
}, {
|
|
1502
1542
|
readonly parentStore: any;
|
|
1503
1543
|
readonly __: any;
|
|
@@ -1594,6 +1634,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1594
1634
|
rowIndex: any;
|
|
1595
1635
|
pagination: any;
|
|
1596
1636
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1637
|
+
popOverOpen: boolean;
|
|
1638
|
+
popOverData: any;
|
|
1639
|
+
popOverSchema: any;
|
|
1597
1640
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1598
1641
|
readonly parentStore: any;
|
|
1599
1642
|
readonly __: any;
|
|
@@ -1694,6 +1737,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1694
1737
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1695
1738
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1696
1739
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1740
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1741
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1697
1742
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
1698
1743
|
changeEmitedValue: (value: any) => void;
|
|
1699
1744
|
addSubFormItem: (item: {
|
|
@@ -1758,6 +1803,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1758
1803
|
rowIndex: any;
|
|
1759
1804
|
pagination: any;
|
|
1760
1805
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1806
|
+
popOverOpen: boolean;
|
|
1807
|
+
popOverData: any;
|
|
1808
|
+
popOverSchema: any;
|
|
1761
1809
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1762
1810
|
readonly parentStore: any;
|
|
1763
1811
|
readonly __: any;
|
|
@@ -1844,6 +1892,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1844
1892
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1845
1893
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1846
1894
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1895
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1896
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1897
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1847
1898
|
}, {
|
|
1848
1899
|
readonly parentStore: any;
|
|
1849
1900
|
readonly __: any;
|
|
@@ -1934,6 +1985,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1934
1985
|
rowIndex: any;
|
|
1935
1986
|
pagination: any;
|
|
1936
1987
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1988
|
+
popOverOpen: boolean;
|
|
1989
|
+
popOverData: any;
|
|
1990
|
+
popOverSchema: any;
|
|
1937
1991
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1938
1992
|
readonly parentStore: any;
|
|
1939
1993
|
readonly __: any;
|
|
@@ -2020,6 +2074,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2020
2074
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2021
2075
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2022
2076
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2077
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2078
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2079
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2023
2080
|
}, {
|
|
2024
2081
|
readonly parentStore: any;
|
|
2025
2082
|
readonly __: any;
|
|
@@ -2112,6 +2169,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2112
2169
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2113
2170
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2114
2171
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2172
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2173
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2174
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2115
2175
|
}, {
|
|
2116
2176
|
readonly parentStore: any;
|
|
2117
2177
|
readonly __: any;
|
|
@@ -2212,6 +2272,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2212
2272
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2213
2273
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2214
2274
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2275
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2276
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2215
2277
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
2216
2278
|
changeEmitedValue: (value: any) => void;
|
|
2217
2279
|
addSubFormItem: (item: {
|
|
@@ -2276,6 +2338,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2276
2338
|
rowIndex: any;
|
|
2277
2339
|
pagination: any;
|
|
2278
2340
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2341
|
+
popOverOpen: boolean;
|
|
2342
|
+
popOverData: any;
|
|
2343
|
+
popOverSchema: any;
|
|
2279
2344
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2280
2345
|
readonly parentStore: any;
|
|
2281
2346
|
readonly __: any;
|
|
@@ -2362,6 +2427,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2362
2427
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2363
2428
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2364
2429
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2430
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2431
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2432
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2365
2433
|
}, {
|
|
2366
2434
|
readonly parentStore: any;
|
|
2367
2435
|
readonly __: any;
|
|
@@ -2452,6 +2520,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2452
2520
|
rowIndex: any;
|
|
2453
2521
|
pagination: any;
|
|
2454
2522
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2523
|
+
popOverOpen: boolean;
|
|
2524
|
+
popOverData: any;
|
|
2525
|
+
popOverSchema: any;
|
|
2455
2526
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2456
2527
|
readonly parentStore: any;
|
|
2457
2528
|
readonly __: any;
|
|
@@ -2538,6 +2609,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2538
2609
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2539
2610
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2540
2611
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2612
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2613
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2614
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2541
2615
|
}, {
|
|
2542
2616
|
readonly parentStore: any;
|
|
2543
2617
|
readonly __: any;
|
|
@@ -2639,6 +2713,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2639
2713
|
rowIndex: any;
|
|
2640
2714
|
pagination: any;
|
|
2641
2715
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2716
|
+
popOverOpen: boolean;
|
|
2717
|
+
popOverData: any;
|
|
2718
|
+
popOverSchema: any;
|
|
2642
2719
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2643
2720
|
readonly parentStore: any;
|
|
2644
2721
|
readonly __: any;
|
|
@@ -2739,6 +2816,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2739
2816
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2740
2817
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2741
2818
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2819
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2820
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2742
2821
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
2743
2822
|
changeEmitedValue: (value: any) => void;
|
|
2744
2823
|
addSubFormItem: (item: {
|
|
@@ -2803,6 +2882,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2803
2882
|
rowIndex: any;
|
|
2804
2883
|
pagination: any;
|
|
2805
2884
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2885
|
+
popOverOpen: boolean;
|
|
2886
|
+
popOverData: any;
|
|
2887
|
+
popOverSchema: any;
|
|
2806
2888
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2807
2889
|
readonly parentStore: any;
|
|
2808
2890
|
readonly __: any;
|
|
@@ -2889,6 +2971,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2889
2971
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2890
2972
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2891
2973
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2974
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2975
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2976
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2892
2977
|
}, {
|
|
2893
2978
|
readonly parentStore: any;
|
|
2894
2979
|
readonly __: any;
|
|
@@ -2979,6 +3064,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2979
3064
|
rowIndex: any;
|
|
2980
3065
|
pagination: any;
|
|
2981
3066
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3067
|
+
popOverOpen: boolean;
|
|
3068
|
+
popOverData: any;
|
|
3069
|
+
popOverSchema: any;
|
|
2982
3070
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2983
3071
|
readonly parentStore: any;
|
|
2984
3072
|
readonly __: any;
|
|
@@ -3065,6 +3153,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3065
3153
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3066
3154
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3067
3155
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3156
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3157
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3158
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3068
3159
|
}, {
|
|
3069
3160
|
readonly parentStore: any;
|
|
3070
3161
|
readonly __: any;
|
|
@@ -3157,6 +3248,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3157
3248
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3158
3249
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3159
3250
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3251
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3252
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3253
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3160
3254
|
}, {
|
|
3161
3255
|
readonly parentStore: any;
|
|
3162
3256
|
readonly __: any;
|
|
@@ -3257,6 +3351,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3257
3351
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3258
3352
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3259
3353
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3354
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3355
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3260
3356
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
3261
3357
|
changeEmitedValue: (value: any) => void;
|
|
3262
3358
|
addSubFormItem: (item: {
|
|
@@ -3321,6 +3417,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3321
3417
|
rowIndex: any;
|
|
3322
3418
|
pagination: any;
|
|
3323
3419
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3420
|
+
popOverOpen: boolean;
|
|
3421
|
+
popOverData: any;
|
|
3422
|
+
popOverSchema: any;
|
|
3324
3423
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3325
3424
|
readonly parentStore: any;
|
|
3326
3425
|
readonly __: any;
|
|
@@ -3407,6 +3506,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3407
3506
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3408
3507
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3409
3508
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3509
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3510
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3511
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3410
3512
|
}, {
|
|
3411
3513
|
readonly parentStore: any;
|
|
3412
3514
|
readonly __: any;
|
|
@@ -3497,6 +3599,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3497
3599
|
rowIndex: any;
|
|
3498
3600
|
pagination: any;
|
|
3499
3601
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3602
|
+
popOverOpen: boolean;
|
|
3603
|
+
popOverData: any;
|
|
3604
|
+
popOverSchema: any;
|
|
3500
3605
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3501
3606
|
readonly parentStore: any;
|
|
3502
3607
|
readonly __: any;
|
|
@@ -3583,6 +3688,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3583
3688
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3584
3689
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3585
3690
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3691
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3692
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3693
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3586
3694
|
}, {
|
|
3587
3695
|
readonly parentStore: any;
|
|
3588
3696
|
readonly __: any;
|
|
@@ -3679,6 +3787,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3679
3787
|
rowIndex: any;
|
|
3680
3788
|
pagination: any;
|
|
3681
3789
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3790
|
+
popOverOpen: boolean;
|
|
3791
|
+
popOverData: any;
|
|
3792
|
+
popOverSchema: any;
|
|
3682
3793
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3683
3794
|
readonly parentStore: any;
|
|
3684
3795
|
readonly __: any;
|
|
@@ -3779,6 +3890,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3779
3890
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3780
3891
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3781
3892
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3893
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3894
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3782
3895
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
3783
3896
|
changeEmitedValue: (value: any) => void;
|
|
3784
3897
|
addSubFormItem: (item: {
|
|
@@ -3843,6 +3956,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3843
3956
|
rowIndex: any;
|
|
3844
3957
|
pagination: any;
|
|
3845
3958
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3959
|
+
popOverOpen: boolean;
|
|
3960
|
+
popOverData: any;
|
|
3961
|
+
popOverSchema: any;
|
|
3846
3962
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3847
3963
|
readonly parentStore: any;
|
|
3848
3964
|
readonly __: any;
|
|
@@ -3929,6 +4045,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3929
4045
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3930
4046
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3931
4047
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4048
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4049
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4050
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3932
4051
|
}, {
|
|
3933
4052
|
readonly parentStore: any;
|
|
3934
4053
|
readonly __: any;
|
|
@@ -4019,6 +4138,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4019
4138
|
rowIndex: any;
|
|
4020
4139
|
pagination: any;
|
|
4021
4140
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4141
|
+
popOverOpen: boolean;
|
|
4142
|
+
popOverData: any;
|
|
4143
|
+
popOverSchema: any;
|
|
4022
4144
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4023
4145
|
readonly parentStore: any;
|
|
4024
4146
|
readonly __: any;
|
|
@@ -4105,6 +4227,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4105
4227
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4106
4228
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4107
4229
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4230
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4231
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4232
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4108
4233
|
}, {
|
|
4109
4234
|
readonly parentStore: any;
|
|
4110
4235
|
readonly __: any;
|
|
@@ -4197,6 +4322,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4197
4322
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4198
4323
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4199
4324
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4325
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4326
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4327
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4200
4328
|
}, {
|
|
4201
4329
|
readonly parentStore: any;
|
|
4202
4330
|
readonly __: any;
|
|
@@ -4297,6 +4425,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4297
4425
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4298
4426
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4299
4427
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4428
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4429
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4300
4430
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
4301
4431
|
changeEmitedValue: (value: any) => void;
|
|
4302
4432
|
addSubFormItem: (item: {
|
|
@@ -4361,6 +4491,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4361
4491
|
rowIndex: any;
|
|
4362
4492
|
pagination: any;
|
|
4363
4493
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4494
|
+
popOverOpen: boolean;
|
|
4495
|
+
popOverData: any;
|
|
4496
|
+
popOverSchema: any;
|
|
4364
4497
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4365
4498
|
readonly parentStore: any;
|
|
4366
4499
|
readonly __: any;
|
|
@@ -4447,6 +4580,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4447
4580
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4448
4581
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4449
4582
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4583
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4584
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4585
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4450
4586
|
}, {
|
|
4451
4587
|
readonly parentStore: any;
|
|
4452
4588
|
readonly __: any;
|
|
@@ -4537,6 +4673,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4537
4673
|
rowIndex: any;
|
|
4538
4674
|
pagination: any;
|
|
4539
4675
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4676
|
+
popOverOpen: boolean;
|
|
4677
|
+
popOverData: any;
|
|
4678
|
+
popOverSchema: any;
|
|
4540
4679
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4541
4680
|
readonly parentStore: any;
|
|
4542
4681
|
readonly __: any;
|
|
@@ -4623,6 +4762,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4623
4762
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4624
4763
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4625
4764
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4765
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4766
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4767
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4626
4768
|
}, {
|
|
4627
4769
|
readonly parentStore: any;
|
|
4628
4770
|
readonly __: any;
|
|
@@ -4719,6 +4861,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4719
4861
|
rowIndex: any;
|
|
4720
4862
|
pagination: any;
|
|
4721
4863
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4864
|
+
popOverOpen: boolean;
|
|
4865
|
+
popOverData: any;
|
|
4866
|
+
popOverSchema: any;
|
|
4722
4867
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4723
4868
|
readonly parentStore: any;
|
|
4724
4869
|
readonly __: any;
|
|
@@ -4819,6 +4964,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4819
4964
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4820
4965
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4821
4966
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4967
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4968
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4822
4969
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
4823
4970
|
changeEmitedValue: (value: any) => void;
|
|
4824
4971
|
addSubFormItem: (item: {
|
|
@@ -4883,6 +5030,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4883
5030
|
rowIndex: any;
|
|
4884
5031
|
pagination: any;
|
|
4885
5032
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5033
|
+
popOverOpen: boolean;
|
|
5034
|
+
popOverData: any;
|
|
5035
|
+
popOverSchema: any;
|
|
4886
5036
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4887
5037
|
readonly parentStore: any;
|
|
4888
5038
|
readonly __: any;
|
|
@@ -4969,6 +5119,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4969
5119
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4970
5120
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4971
5121
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5122
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5123
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5124
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4972
5125
|
}, {
|
|
4973
5126
|
readonly parentStore: any;
|
|
4974
5127
|
readonly __: any;
|
|
@@ -5059,6 +5212,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5059
5212
|
rowIndex: any;
|
|
5060
5213
|
pagination: any;
|
|
5061
5214
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5215
|
+
popOverOpen: boolean;
|
|
5216
|
+
popOverData: any;
|
|
5217
|
+
popOverSchema: any;
|
|
5062
5218
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5063
5219
|
readonly parentStore: any;
|
|
5064
5220
|
readonly __: any;
|
|
@@ -5145,6 +5301,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5145
5301
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5146
5302
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5147
5303
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5304
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5305
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5306
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5148
5307
|
}, {
|
|
5149
5308
|
readonly parentStore: any;
|
|
5150
5309
|
readonly __: any;
|
|
@@ -5237,6 +5396,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5237
5396
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5238
5397
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5239
5398
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5399
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5400
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5401
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5240
5402
|
}, {
|
|
5241
5403
|
readonly parentStore: any;
|
|
5242
5404
|
readonly __: any;
|
|
@@ -5337,6 +5499,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5337
5499
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5338
5500
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5339
5501
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
5502
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5503
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
5340
5504
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
5341
5505
|
changeEmitedValue: (value: any) => void;
|
|
5342
5506
|
addSubFormItem: (item: {
|
|
@@ -5401,6 +5565,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5401
5565
|
rowIndex: any;
|
|
5402
5566
|
pagination: any;
|
|
5403
5567
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5568
|
+
popOverOpen: boolean;
|
|
5569
|
+
popOverData: any;
|
|
5570
|
+
popOverSchema: any;
|
|
5404
5571
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5405
5572
|
readonly parentStore: any;
|
|
5406
5573
|
readonly __: any;
|
|
@@ -5487,6 +5654,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5487
5654
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5488
5655
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5489
5656
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5657
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5658
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5659
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5490
5660
|
}, {
|
|
5491
5661
|
readonly parentStore: any;
|
|
5492
5662
|
readonly __: any;
|
|
@@ -5577,6 +5747,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5577
5747
|
rowIndex: any;
|
|
5578
5748
|
pagination: any;
|
|
5579
5749
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5750
|
+
popOverOpen: boolean;
|
|
5751
|
+
popOverData: any;
|
|
5752
|
+
popOverSchema: any;
|
|
5580
5753
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5581
5754
|
readonly parentStore: any;
|
|
5582
5755
|
readonly __: any;
|
|
@@ -5663,6 +5836,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5663
5836
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5664
5837
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5665
5838
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5839
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5840
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5841
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5666
5842
|
}, {
|
|
5667
5843
|
readonly parentStore: any;
|
|
5668
5844
|
readonly __: any;
|
|
@@ -5748,6 +5924,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5748
5924
|
initedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
5749
5925
|
updatedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
5750
5926
|
pristine: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5927
|
+
pristineRaw: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5751
5928
|
upStreamData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5752
5929
|
action: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5753
5930
|
dialogOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
@@ -5880,6 +6057,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5880
6057
|
rowIndex: any;
|
|
5881
6058
|
pagination: any;
|
|
5882
6059
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6060
|
+
popOverOpen: boolean;
|
|
6061
|
+
popOverData: any;
|
|
6062
|
+
popOverSchema: any;
|
|
5883
6063
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5884
6064
|
readonly parentStore: any;
|
|
5885
6065
|
readonly __: any;
|
|
@@ -5980,6 +6160,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5980
6160
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5981
6161
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5982
6162
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
6163
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6164
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
5983
6165
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
5984
6166
|
changeEmitedValue: (value: any) => void;
|
|
5985
6167
|
addSubFormItem: (item: {
|
|
@@ -6044,6 +6226,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6044
6226
|
rowIndex: any;
|
|
6045
6227
|
pagination: any;
|
|
6046
6228
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6229
|
+
popOverOpen: boolean;
|
|
6230
|
+
popOverData: any;
|
|
6231
|
+
popOverSchema: any;
|
|
6047
6232
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6048
6233
|
readonly parentStore: any;
|
|
6049
6234
|
readonly __: any;
|
|
@@ -6130,6 +6315,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6130
6315
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6131
6316
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6132
6317
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6318
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6319
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6320
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6133
6321
|
}, {
|
|
6134
6322
|
readonly parentStore: any;
|
|
6135
6323
|
readonly __: any;
|
|
@@ -6220,6 +6408,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6220
6408
|
rowIndex: any;
|
|
6221
6409
|
pagination: any;
|
|
6222
6410
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6411
|
+
popOverOpen: boolean;
|
|
6412
|
+
popOverData: any;
|
|
6413
|
+
popOverSchema: any;
|
|
6223
6414
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6224
6415
|
readonly parentStore: any;
|
|
6225
6416
|
readonly __: any;
|
|
@@ -6306,6 +6497,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6306
6497
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6307
6498
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6308
6499
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6500
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6501
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6502
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6309
6503
|
}, {
|
|
6310
6504
|
readonly parentStore: any;
|
|
6311
6505
|
readonly __: any;
|
|
@@ -6398,6 +6592,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6398
6592
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6399
6593
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6400
6594
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6595
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6596
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6597
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6401
6598
|
}, {
|
|
6402
6599
|
readonly parentStore: any;
|
|
6403
6600
|
readonly __: any;
|
|
@@ -6498,6 +6695,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6498
6695
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6499
6696
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6500
6697
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
6698
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
6699
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
6501
6700
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
6502
6701
|
changeEmitedValue: (value: any) => void;
|
|
6503
6702
|
addSubFormItem: (item: {
|
|
@@ -6562,6 +6761,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6562
6761
|
rowIndex: any;
|
|
6563
6762
|
pagination: any;
|
|
6564
6763
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6764
|
+
popOverOpen: boolean;
|
|
6765
|
+
popOverData: any;
|
|
6766
|
+
popOverSchema: any;
|
|
6565
6767
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6566
6768
|
readonly parentStore: any;
|
|
6567
6769
|
readonly __: any;
|
|
@@ -6648,6 +6850,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6648
6850
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6649
6851
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6650
6852
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
6853
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
6854
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
6855
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6651
6856
|
}, {
|
|
6652
6857
|
readonly parentStore: any;
|
|
6653
6858
|
readonly __: any;
|
|
@@ -6738,6 +6943,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6738
6943
|
rowIndex: any;
|
|
6739
6944
|
pagination: any;
|
|
6740
6945
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
6946
|
+
popOverOpen: boolean;
|
|
6947
|
+
popOverData: any;
|
|
6948
|
+
popOverSchema: any;
|
|
6741
6949
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6742
6950
|
readonly parentStore: any;
|
|
6743
6951
|
readonly __: any;
|
|
@@ -6824,6 +7032,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6824
7032
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
6825
7033
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
6826
7034
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7035
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7036
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7037
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
6827
7038
|
}, {
|
|
6828
7039
|
readonly parentStore: any;
|
|
6829
7040
|
readonly __: any;
|
|
@@ -6920,6 +7131,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6920
7131
|
rowIndex: any;
|
|
6921
7132
|
pagination: any;
|
|
6922
7133
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7134
|
+
popOverOpen: boolean;
|
|
7135
|
+
popOverData: any;
|
|
7136
|
+
popOverSchema: any;
|
|
6923
7137
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
6924
7138
|
readonly parentStore: any;
|
|
6925
7139
|
readonly __: any;
|
|
@@ -7020,6 +7234,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7020
7234
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7021
7235
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7022
7236
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
7237
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7238
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
7023
7239
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
7024
7240
|
changeEmitedValue: (value: any) => void;
|
|
7025
7241
|
addSubFormItem: (item: {
|
|
@@ -7084,6 +7300,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7084
7300
|
rowIndex: any;
|
|
7085
7301
|
pagination: any;
|
|
7086
7302
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7303
|
+
popOverOpen: boolean;
|
|
7304
|
+
popOverData: any;
|
|
7305
|
+
popOverSchema: any;
|
|
7087
7306
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7088
7307
|
readonly parentStore: any;
|
|
7089
7308
|
readonly __: any;
|
|
@@ -7170,6 +7389,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7170
7389
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7171
7390
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7172
7391
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7392
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7393
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7394
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7173
7395
|
}, {
|
|
7174
7396
|
readonly parentStore: any;
|
|
7175
7397
|
readonly __: any;
|
|
@@ -7260,6 +7482,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7260
7482
|
rowIndex: any;
|
|
7261
7483
|
pagination: any;
|
|
7262
7484
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7485
|
+
popOverOpen: boolean;
|
|
7486
|
+
popOverData: any;
|
|
7487
|
+
popOverSchema: any;
|
|
7263
7488
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7264
7489
|
readonly parentStore: any;
|
|
7265
7490
|
readonly __: any;
|
|
@@ -7346,6 +7571,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7346
7571
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7347
7572
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7348
7573
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7574
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7575
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7576
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7349
7577
|
}, {
|
|
7350
7578
|
readonly parentStore: any;
|
|
7351
7579
|
readonly __: any;
|
|
@@ -7438,6 +7666,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7438
7666
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7439
7667
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7440
7668
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7669
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7670
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7671
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7441
7672
|
}, {
|
|
7442
7673
|
readonly parentStore: any;
|
|
7443
7674
|
readonly __: any;
|
|
@@ -7538,6 +7769,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7538
7769
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7539
7770
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7540
7771
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
7772
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
7773
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
7541
7774
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
7542
7775
|
changeEmitedValue: (value: any) => void;
|
|
7543
7776
|
addSubFormItem: (item: {
|
|
@@ -7602,6 +7835,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7602
7835
|
rowIndex: any;
|
|
7603
7836
|
pagination: any;
|
|
7604
7837
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
7838
|
+
popOverOpen: boolean;
|
|
7839
|
+
popOverData: any;
|
|
7840
|
+
popOverSchema: any;
|
|
7605
7841
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7606
7842
|
readonly parentStore: any;
|
|
7607
7843
|
readonly __: any;
|
|
@@ -7688,6 +7924,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7688
7924
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7689
7925
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7690
7926
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
7927
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
7928
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
7929
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7691
7930
|
}, {
|
|
7692
7931
|
readonly parentStore: any;
|
|
7693
7932
|
readonly __: any;
|
|
@@ -7778,6 +8017,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7778
8017
|
rowIndex: any;
|
|
7779
8018
|
pagination: any;
|
|
7780
8019
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8020
|
+
popOverOpen: boolean;
|
|
8021
|
+
popOverData: any;
|
|
8022
|
+
popOverSchema: any;
|
|
7781
8023
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7782
8024
|
readonly parentStore: any;
|
|
7783
8025
|
readonly __: any;
|
|
@@ -7864,6 +8106,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7864
8106
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
7865
8107
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
7866
8108
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8109
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8110
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8111
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
7867
8112
|
}, {
|
|
7868
8113
|
readonly parentStore: any;
|
|
7869
8114
|
readonly __: any;
|
|
@@ -7965,6 +8210,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7965
8210
|
rowIndex: any;
|
|
7966
8211
|
pagination: any;
|
|
7967
8212
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8213
|
+
popOverOpen: boolean;
|
|
8214
|
+
popOverData: any;
|
|
8215
|
+
popOverSchema: any;
|
|
7968
8216
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
7969
8217
|
readonly parentStore: any;
|
|
7970
8218
|
readonly __: any;
|
|
@@ -8065,6 +8313,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8065
8313
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8066
8314
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8067
8315
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
8316
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8317
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
8068
8318
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
8069
8319
|
changeEmitedValue: (value: any) => void;
|
|
8070
8320
|
addSubFormItem: (item: {
|
|
@@ -8129,6 +8379,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8129
8379
|
rowIndex: any;
|
|
8130
8380
|
pagination: any;
|
|
8131
8381
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8382
|
+
popOverOpen: boolean;
|
|
8383
|
+
popOverData: any;
|
|
8384
|
+
popOverSchema: any;
|
|
8132
8385
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8133
8386
|
readonly parentStore: any;
|
|
8134
8387
|
readonly __: any;
|
|
@@ -8215,6 +8468,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8215
8468
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8216
8469
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8217
8470
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8471
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8472
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8473
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8218
8474
|
}, {
|
|
8219
8475
|
readonly parentStore: any;
|
|
8220
8476
|
readonly __: any;
|
|
@@ -8305,6 +8561,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8305
8561
|
rowIndex: any;
|
|
8306
8562
|
pagination: any;
|
|
8307
8563
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8564
|
+
popOverOpen: boolean;
|
|
8565
|
+
popOverData: any;
|
|
8566
|
+
popOverSchema: any;
|
|
8308
8567
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8309
8568
|
readonly parentStore: any;
|
|
8310
8569
|
readonly __: any;
|
|
@@ -8391,6 +8650,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8391
8650
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8392
8651
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8393
8652
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8653
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8654
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8655
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8394
8656
|
}, {
|
|
8395
8657
|
readonly parentStore: any;
|
|
8396
8658
|
readonly __: any;
|
|
@@ -8483,6 +8745,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8483
8745
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8484
8746
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8485
8747
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
8748
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
8749
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
8750
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8486
8751
|
}, {
|
|
8487
8752
|
readonly parentStore: any;
|
|
8488
8753
|
readonly __: any;
|
|
@@ -8583,6 +8848,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8583
8848
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8584
8849
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8585
8850
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
8851
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
8852
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
8586
8853
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
8587
8854
|
changeEmitedValue: (value: any) => void;
|
|
8588
8855
|
addSubFormItem: (item: {
|
|
@@ -8647,6 +8914,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8647
8914
|
rowIndex: any;
|
|
8648
8915
|
pagination: any;
|
|
8649
8916
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
8917
|
+
popOverOpen: boolean;
|
|
8918
|
+
popOverData: any;
|
|
8919
|
+
popOverSchema: any;
|
|
8650
8920
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8651
8921
|
readonly parentStore: any;
|
|
8652
8922
|
readonly __: any;
|
|
@@ -8733,6 +9003,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8733
9003
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8734
9004
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8735
9005
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9006
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9007
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9008
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8736
9009
|
}, {
|
|
8737
9010
|
readonly parentStore: any;
|
|
8738
9011
|
readonly __: any;
|
|
@@ -8823,6 +9096,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8823
9096
|
rowIndex: any;
|
|
8824
9097
|
pagination: any;
|
|
8825
9098
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9099
|
+
popOverOpen: boolean;
|
|
9100
|
+
popOverData: any;
|
|
9101
|
+
popOverSchema: any;
|
|
8826
9102
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
8827
9103
|
readonly parentStore: any;
|
|
8828
9104
|
readonly __: any;
|
|
@@ -8909,6 +9185,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8909
9185
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
8910
9186
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
8911
9187
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9188
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9189
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9190
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
8912
9191
|
}, {
|
|
8913
9192
|
readonly parentStore: any;
|
|
8914
9193
|
readonly __: any;
|
|
@@ -9005,6 +9284,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9005
9284
|
rowIndex: any;
|
|
9006
9285
|
pagination: any;
|
|
9007
9286
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9287
|
+
popOverOpen: boolean;
|
|
9288
|
+
popOverData: any;
|
|
9289
|
+
popOverSchema: any;
|
|
9008
9290
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9009
9291
|
readonly parentStore: any;
|
|
9010
9292
|
readonly __: any;
|
|
@@ -9105,6 +9387,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9105
9387
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9106
9388
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9107
9389
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
9390
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9391
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
9108
9392
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
9109
9393
|
changeEmitedValue: (value: any) => void;
|
|
9110
9394
|
addSubFormItem: (item: {
|
|
@@ -9169,6 +9453,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9169
9453
|
rowIndex: any;
|
|
9170
9454
|
pagination: any;
|
|
9171
9455
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9456
|
+
popOverOpen: boolean;
|
|
9457
|
+
popOverData: any;
|
|
9458
|
+
popOverSchema: any;
|
|
9172
9459
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9173
9460
|
readonly parentStore: any;
|
|
9174
9461
|
readonly __: any;
|
|
@@ -9255,6 +9542,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9255
9542
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9256
9543
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9257
9544
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9545
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9546
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9547
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9258
9548
|
}, {
|
|
9259
9549
|
readonly parentStore: any;
|
|
9260
9550
|
readonly __: any;
|
|
@@ -9345,6 +9635,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9345
9635
|
rowIndex: any;
|
|
9346
9636
|
pagination: any;
|
|
9347
9637
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9638
|
+
popOverOpen: boolean;
|
|
9639
|
+
popOverData: any;
|
|
9640
|
+
popOverSchema: any;
|
|
9348
9641
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9349
9642
|
readonly parentStore: any;
|
|
9350
9643
|
readonly __: any;
|
|
@@ -9431,6 +9724,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9431
9724
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9432
9725
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9433
9726
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9727
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9728
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9729
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9434
9730
|
}, {
|
|
9435
9731
|
readonly parentStore: any;
|
|
9436
9732
|
readonly __: any;
|
|
@@ -9523,6 +9819,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9523
9819
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9524
9820
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9525
9821
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
9822
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
9823
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
9824
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9526
9825
|
}, {
|
|
9527
9826
|
readonly parentStore: any;
|
|
9528
9827
|
readonly __: any;
|
|
@@ -9623,6 +9922,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9623
9922
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9624
9923
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9625
9924
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
9925
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
9926
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
9626
9927
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
9627
9928
|
changeEmitedValue: (value: any) => void;
|
|
9628
9929
|
addSubFormItem: (item: {
|
|
@@ -9687,6 +9988,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9687
9988
|
rowIndex: any;
|
|
9688
9989
|
pagination: any;
|
|
9689
9990
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
9991
|
+
popOverOpen: boolean;
|
|
9992
|
+
popOverData: any;
|
|
9993
|
+
popOverSchema: any;
|
|
9690
9994
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9691
9995
|
readonly parentStore: any;
|
|
9692
9996
|
readonly __: any;
|
|
@@ -9773,6 +10077,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9773
10077
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9774
10078
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9775
10079
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10080
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10081
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10082
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9776
10083
|
}, {
|
|
9777
10084
|
readonly parentStore: any;
|
|
9778
10085
|
readonly __: any;
|
|
@@ -9863,6 +10170,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9863
10170
|
rowIndex: any;
|
|
9864
10171
|
pagination: any;
|
|
9865
10172
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10173
|
+
popOverOpen: boolean;
|
|
10174
|
+
popOverData: any;
|
|
10175
|
+
popOverSchema: any;
|
|
9866
10176
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
9867
10177
|
readonly parentStore: any;
|
|
9868
10178
|
readonly __: any;
|
|
@@ -9949,6 +10259,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9949
10259
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
9950
10260
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
9951
10261
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10262
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10263
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10264
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
9952
10265
|
}, {
|
|
9953
10266
|
readonly parentStore: any;
|
|
9954
10267
|
readonly __: any;
|
|
@@ -10045,6 +10358,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10045
10358
|
rowIndex: any;
|
|
10046
10359
|
pagination: any;
|
|
10047
10360
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10361
|
+
popOverOpen: boolean;
|
|
10362
|
+
popOverData: any;
|
|
10363
|
+
popOverSchema: any;
|
|
10048
10364
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10049
10365
|
readonly parentStore: any;
|
|
10050
10366
|
readonly __: any;
|
|
@@ -10145,6 +10461,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10145
10461
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10146
10462
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10147
10463
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
10464
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10465
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
10148
10466
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
10149
10467
|
changeEmitedValue: (value: any) => void;
|
|
10150
10468
|
addSubFormItem: (item: {
|
|
@@ -10209,6 +10527,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10209
10527
|
rowIndex: any;
|
|
10210
10528
|
pagination: any;
|
|
10211
10529
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10530
|
+
popOverOpen: boolean;
|
|
10531
|
+
popOverData: any;
|
|
10532
|
+
popOverSchema: any;
|
|
10212
10533
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10213
10534
|
readonly parentStore: any;
|
|
10214
10535
|
readonly __: any;
|
|
@@ -10295,6 +10616,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10295
10616
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10296
10617
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10297
10618
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10619
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10620
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10621
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10298
10622
|
}, {
|
|
10299
10623
|
readonly parentStore: any;
|
|
10300
10624
|
readonly __: any;
|
|
@@ -10385,6 +10709,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10385
10709
|
rowIndex: any;
|
|
10386
10710
|
pagination: any;
|
|
10387
10711
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
10712
|
+
popOverOpen: boolean;
|
|
10713
|
+
popOverData: any;
|
|
10714
|
+
popOverSchema: any;
|
|
10388
10715
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10389
10716
|
readonly parentStore: any;
|
|
10390
10717
|
readonly __: any;
|
|
@@ -10471,6 +10798,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10471
10798
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10472
10799
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10473
10800
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10801
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10802
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10803
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10474
10804
|
}, {
|
|
10475
10805
|
readonly parentStore: any;
|
|
10476
10806
|
readonly __: any;
|
|
@@ -10563,6 +10893,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10563
10893
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10564
10894
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10565
10895
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
10896
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
10897
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
10898
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10566
10899
|
}, {
|
|
10567
10900
|
readonly parentStore: any;
|
|
10568
10901
|
readonly __: any;
|
|
@@ -10663,6 +10996,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10663
10996
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10664
10997
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
10665
10998
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
10999
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
11000
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
10666
11001
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
10667
11002
|
changeEmitedValue: (value: any) => void;
|
|
10668
11003
|
addSubFormItem: (item: {
|
|
@@ -10727,6 +11062,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10727
11062
|
rowIndex: any;
|
|
10728
11063
|
pagination: any;
|
|
10729
11064
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11065
|
+
popOverOpen: boolean;
|
|
11066
|
+
popOverData: any;
|
|
11067
|
+
popOverSchema: any;
|
|
10730
11068
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10731
11069
|
readonly parentStore: any;
|
|
10732
11070
|
readonly __: any;
|
|
@@ -10813,6 +11151,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10813
11151
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10814
11152
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10815
11153
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11154
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11155
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11156
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10816
11157
|
}, {
|
|
10817
11158
|
readonly parentStore: any;
|
|
10818
11159
|
readonly __: any;
|
|
@@ -10903,6 +11244,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10903
11244
|
rowIndex: any;
|
|
10904
11245
|
pagination: any;
|
|
10905
11246
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
11247
|
+
popOverOpen: boolean;
|
|
11248
|
+
popOverData: any;
|
|
11249
|
+
popOverSchema: any;
|
|
10906
11250
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
10907
11251
|
readonly parentStore: any;
|
|
10908
11252
|
readonly __: any;
|
|
@@ -10989,6 +11333,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10989
11333
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
10990
11334
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
10991
11335
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
11336
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
11337
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
11338
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
10992
11339
|
}, {
|
|
10993
11340
|
readonly parentStore: any;
|
|
10994
11341
|
readonly __: any;
|
|
@@ -11091,10 +11438,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11091
11438
|
className: any;
|
|
11092
11439
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11093
11440
|
readonly isPrimary: boolean;
|
|
11441
|
+
readonly columnKey: any;
|
|
11094
11442
|
} & {
|
|
11095
11443
|
toggleToggle(min?: number): void;
|
|
11096
11444
|
setToggled(value: boolean): void;
|
|
11097
|
-
setEnableSearch(value: boolean): void;
|
|
11445
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11098
11446
|
setMinWidth(value: number): void;
|
|
11099
11447
|
setWidth(value: number): void;
|
|
11100
11448
|
setRealWidth(value: number): void;
|
|
@@ -11125,10 +11473,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11125
11473
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11126
11474
|
}, {
|
|
11127
11475
|
readonly isPrimary: boolean;
|
|
11476
|
+
readonly columnKey: any;
|
|
11128
11477
|
} & {
|
|
11129
11478
|
toggleToggle(min?: number): void;
|
|
11130
11479
|
setToggled(value: boolean): void;
|
|
11131
|
-
setEnableSearch(value: boolean): void;
|
|
11480
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11132
11481
|
setMinWidth(value: number): void;
|
|
11133
11482
|
setWidth(value: number): void;
|
|
11134
11483
|
setRealWidth(value: number): void;
|
|
@@ -11160,10 +11509,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11160
11509
|
className: any;
|
|
11161
11510
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11162
11511
|
readonly isPrimary: boolean;
|
|
11512
|
+
readonly columnKey: any;
|
|
11163
11513
|
} & {
|
|
11164
11514
|
toggleToggle(min?: number): void;
|
|
11165
11515
|
setToggled(value: boolean): void;
|
|
11166
|
-
setEnableSearch(value: boolean): void;
|
|
11516
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11167
11517
|
setMinWidth(value: number): void;
|
|
11168
11518
|
setWidth(value: number): void;
|
|
11169
11519
|
setRealWidth(value: number): void;
|
|
@@ -11194,10 +11544,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11194
11544
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11195
11545
|
}, {
|
|
11196
11546
|
readonly isPrimary: boolean;
|
|
11547
|
+
readonly columnKey: any;
|
|
11197
11548
|
} & {
|
|
11198
11549
|
toggleToggle(min?: number): void;
|
|
11199
11550
|
setToggled(value: boolean): void;
|
|
11200
|
-
setEnableSearch(value: boolean): void;
|
|
11551
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11201
11552
|
setMinWidth(value: number): void;
|
|
11202
11553
|
setWidth(value: number): void;
|
|
11203
11554
|
setRealWidth(value: number): void;
|
|
@@ -11230,10 +11581,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11230
11581
|
className: any;
|
|
11231
11582
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11232
11583
|
readonly isPrimary: boolean;
|
|
11584
|
+
readonly columnKey: any;
|
|
11233
11585
|
} & {
|
|
11234
11586
|
toggleToggle(min?: number): void;
|
|
11235
11587
|
setToggled(value: boolean): void;
|
|
11236
|
-
setEnableSearch(value: boolean): void;
|
|
11588
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11237
11589
|
setMinWidth(value: number): void;
|
|
11238
11590
|
setWidth(value: number): void;
|
|
11239
11591
|
setRealWidth(value: number): void;
|
|
@@ -11264,10 +11616,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11264
11616
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11265
11617
|
}, {
|
|
11266
11618
|
readonly isPrimary: boolean;
|
|
11619
|
+
readonly columnKey: any;
|
|
11267
11620
|
} & {
|
|
11268
11621
|
toggleToggle(min?: number): void;
|
|
11269
11622
|
setToggled(value: boolean): void;
|
|
11270
|
-
setEnableSearch(value: boolean): void;
|
|
11623
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11271
11624
|
setMinWidth(value: number): void;
|
|
11272
11625
|
setWidth(value: number): void;
|
|
11273
11626
|
setRealWidth(value: number): void;
|
|
@@ -11299,10 +11652,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11299
11652
|
className: any;
|
|
11300
11653
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11301
11654
|
readonly isPrimary: boolean;
|
|
11655
|
+
readonly columnKey: any;
|
|
11302
11656
|
} & {
|
|
11303
11657
|
toggleToggle(min?: number): void;
|
|
11304
11658
|
setToggled(value: boolean): void;
|
|
11305
|
-
setEnableSearch(value: boolean): void;
|
|
11659
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11306
11660
|
setMinWidth(value: number): void;
|
|
11307
11661
|
setWidth(value: number): void;
|
|
11308
11662
|
setRealWidth(value: number): void;
|
|
@@ -11333,10 +11687,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11333
11687
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11334
11688
|
}, {
|
|
11335
11689
|
readonly isPrimary: boolean;
|
|
11690
|
+
readonly columnKey: any;
|
|
11336
11691
|
} & {
|
|
11337
11692
|
toggleToggle(min?: number): void;
|
|
11338
11693
|
setToggled(value: boolean): void;
|
|
11339
|
-
setEnableSearch(value: boolean): void;
|
|
11694
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11340
11695
|
setMinWidth(value: number): void;
|
|
11341
11696
|
setWidth(value: number): void;
|
|
11342
11697
|
setRealWidth(value: number): void;
|
|
@@ -11368,10 +11723,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11368
11723
|
className: any;
|
|
11369
11724
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11370
11725
|
readonly isPrimary: boolean;
|
|
11726
|
+
readonly columnKey: any;
|
|
11371
11727
|
} & {
|
|
11372
11728
|
toggleToggle(min?: number): void;
|
|
11373
11729
|
setToggled(value: boolean): void;
|
|
11374
|
-
setEnableSearch(value: boolean): void;
|
|
11730
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11375
11731
|
setMinWidth(value: number): void;
|
|
11376
11732
|
setWidth(value: number): void;
|
|
11377
11733
|
setRealWidth(value: number): void;
|
|
@@ -11402,10 +11758,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11402
11758
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11403
11759
|
}, {
|
|
11404
11760
|
readonly isPrimary: boolean;
|
|
11761
|
+
readonly columnKey: any;
|
|
11405
11762
|
} & {
|
|
11406
11763
|
toggleToggle(min?: number): void;
|
|
11407
11764
|
setToggled(value: boolean): void;
|
|
11408
|
-
setEnableSearch(value: boolean): void;
|
|
11765
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11409
11766
|
setMinWidth(value: number): void;
|
|
11410
11767
|
setWidth(value: number): void;
|
|
11411
11768
|
setRealWidth(value: number): void;
|
|
@@ -11437,10 +11794,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11437
11794
|
className: any;
|
|
11438
11795
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11439
11796
|
readonly isPrimary: boolean;
|
|
11797
|
+
readonly columnKey: any;
|
|
11440
11798
|
} & {
|
|
11441
11799
|
toggleToggle(min?: number): void;
|
|
11442
11800
|
setToggled(value: boolean): void;
|
|
11443
|
-
setEnableSearch(value: boolean): void;
|
|
11801
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11444
11802
|
setMinWidth(value: number): void;
|
|
11445
11803
|
setWidth(value: number): void;
|
|
11446
11804
|
setRealWidth(value: number): void;
|
|
@@ -11471,10 +11829,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11471
11829
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11472
11830
|
}, {
|
|
11473
11831
|
readonly isPrimary: boolean;
|
|
11832
|
+
readonly columnKey: any;
|
|
11474
11833
|
} & {
|
|
11475
11834
|
toggleToggle(min?: number): void;
|
|
11476
11835
|
setToggled(value: boolean): void;
|
|
11477
|
-
setEnableSearch(value: boolean): void;
|
|
11836
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11478
11837
|
setMinWidth(value: number): void;
|
|
11479
11838
|
setWidth(value: number): void;
|
|
11480
11839
|
setRealWidth(value: number): void;
|
|
@@ -11506,10 +11865,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11506
11865
|
className: any;
|
|
11507
11866
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
11508
11867
|
readonly isPrimary: boolean;
|
|
11868
|
+
readonly columnKey: any;
|
|
11509
11869
|
} & {
|
|
11510
11870
|
toggleToggle(min?: number): void;
|
|
11511
11871
|
setToggled(value: boolean): void;
|
|
11512
|
-
setEnableSearch(value: boolean): void;
|
|
11872
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11513
11873
|
setMinWidth(value: number): void;
|
|
11514
11874
|
setWidth(value: number): void;
|
|
11515
11875
|
setRealWidth(value: number): void;
|
|
@@ -11540,10 +11900,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11540
11900
|
className: import("mobx-state-tree").ITypeUnion<any, any, any>;
|
|
11541
11901
|
}, {
|
|
11542
11902
|
readonly isPrimary: boolean;
|
|
11903
|
+
readonly columnKey: any;
|
|
11543
11904
|
} & {
|
|
11544
11905
|
toggleToggle(min?: number): void;
|
|
11545
11906
|
setToggled(value: boolean): void;
|
|
11546
|
-
setEnableSearch(value: boolean): void;
|
|
11907
|
+
setEnableSearch(value: boolean, skipSave?: boolean): void;
|
|
11547
11908
|
setMinWidth(value: number): void;
|
|
11548
11909
|
setWidth(value: number): void;
|
|
11549
11910
|
setRealWidth(value: number): void;
|
|
@@ -12748,7 +13109,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12748
13109
|
updateData({ children, ...rest }: any): void;
|
|
12749
13110
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
12750
13111
|
readonly columnWidthReady: boolean;
|
|
12751
|
-
getStickyStyles(column: IColumn, columns: Array<IColumn
|
|
13112
|
+
getStickyStyles(column: IColumn, columns: Array<IColumn>, colSpan?: number): any[];
|
|
12752
13113
|
readonly items: ({
|
|
12753
13114
|
storeType: string;
|
|
12754
13115
|
id: string;
|
|
@@ -12880,7 +13241,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12880
13241
|
updateColumns: (columns: Array<SColumn>) => void;
|
|
12881
13242
|
initTableWidth: () => void;
|
|
12882
13243
|
syncTableWidth: () => void;
|
|
12883
|
-
initRows: (rows: Array<any>, getEntryId?: ((entry: any, index: number) => string) | undefined, reUseRow?: boolean) => void;
|
|
13244
|
+
initRows: (rows: Array<any>, getEntryId?: ((entry: any, index: number) => string) | undefined, reUseRow?: boolean | 'match') => void;
|
|
12884
13245
|
updateSelected: (selected: Array<any>, valueField?: string) => void;
|
|
12885
13246
|
toggleAll: () => void;
|
|
12886
13247
|
getSelectedRows: () => ({
|