amis-core 6.6.0 → 6.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/Root.js +4 -3
- package/esm/RootRenderer.d.ts +1 -1
- package/esm/RootRenderer.js +1 -1
- package/esm/SchemaRenderer.d.ts +0 -1
- package/esm/SchemaRenderer.js +19 -10
- package/esm/Scoped.js +2 -1
- package/esm/StatusScoped.js +1 -1
- package/esm/WithRootStore.js +1 -1
- package/esm/WithStore.js +8 -8
- package/esm/actions/Action.js +33 -31
- package/esm/actions/AjaxAction.js +1 -1
- package/esm/actions/BreakAction.js +1 -1
- package/esm/actions/BroadcastAction.js +1 -1
- package/esm/actions/CmptAction.js +55 -48
- package/esm/actions/ContinueAction.js +1 -1
- package/esm/actions/CopyAction.js +1 -1
- package/esm/actions/CustomAction.js +12 -3
- package/esm/actions/DialogAction.js +3 -1
- package/esm/actions/DrawerAction.js +2 -1
- package/esm/actions/EmailAction.js +1 -1
- package/esm/actions/EventAction.js +2 -1
- package/esm/actions/LinkAction.js +1 -1
- package/esm/actions/LoopAction.js +2 -1
- package/esm/actions/PageAction.js +1 -1
- package/esm/actions/ParallelAction.js +1 -1
- package/esm/actions/PrintAction.js +1 -1
- package/esm/actions/StatusAction.js +1 -1
- package/esm/actions/SwitchAction.js +1 -1
- package/esm/actions/ToastAction.js +1 -1
- package/esm/actions/WaitAction.js +1 -1
- package/esm/components/CustomStyle.js +1 -1
- package/esm/components/ErrorBoundary.js +1 -1
- package/esm/components/LazyComponent.js +1 -1
- package/esm/components/Overlay.js +2 -1
- package/esm/components/PopOver.d.ts +2 -0
- package/esm/components/PopOver.js +5 -4
- package/esm/env.d.ts +4 -0
- package/esm/env.js +1 -1
- package/esm/envOverwrite.js +1 -1
- package/esm/factory.js +1 -1
- package/esm/index.js +3 -3
- package/esm/locale.js +2 -1
- package/esm/polyfills.js +1 -1
- package/esm/renderers/Form.js +123 -25
- package/esm/renderers/Item.d.ts +97 -12
- package/esm/renderers/Item.js +180 -126
- package/esm/renderers/Options.js +2 -1
- package/esm/renderers/Placeholder.js +1 -1
- package/esm/renderers/builtin.js +1 -1
- package/esm/renderers/register.js +1 -1
- package/esm/renderers/wrapControl.js +2 -1
- package/esm/store/app.d.ts +1 -0
- package/esm/store/app.js +2 -1
- package/esm/store/combo.d.ts +411 -0
- package/esm/store/combo.js +1 -1
- package/esm/store/crud.d.ts +1 -0
- package/esm/store/crud.js +2 -1
- package/esm/store/form.d.ts +171 -0
- package/esm/store/form.js +2 -1
- package/esm/store/formItem.d.ts +5 -0
- package/esm/store/formItem.js +30 -8
- package/esm/store/iRenderer.d.ts +1 -0
- package/esm/store/iRenderer.js +8 -3
- package/esm/store/index.js +1 -1
- package/esm/store/list.d.ts +1 -0
- package/esm/store/list.js +1 -1
- package/esm/store/manager.js +1 -1
- package/esm/store/modal.d.ts +1 -0
- package/esm/store/modal.js +1 -1
- package/esm/store/node.js +1 -1
- package/esm/store/pagination.d.ts +1 -0
- package/esm/store/pagination.js +2 -1
- package/esm/store/root.d.ts +1 -0
- package/esm/store/root.js +2 -1
- package/esm/store/service.d.ts +1 -0
- package/esm/store/service.js +2 -1
- package/esm/store/status.js +1 -1
- package/esm/store/table.d.ts +382 -21
- package/esm/store/table.js +84 -54
- package/esm/store/table2.d.ts +1 -0
- package/esm/store/table2.js +1 -1
- package/esm/theme.js +1 -1
- package/esm/types.d.ts +1 -1
- package/esm/utils/Animation.js +1 -1
- package/esm/utils/ColorScale.js +1 -1
- package/esm/utils/DataSchema.js +1 -1
- package/esm/utils/DataScope.js +2 -2
- package/esm/utils/RootClose.js +1 -1
- package/esm/utils/SimpleMap.js +1 -1
- package/esm/utils/api.js +2 -2
- package/esm/utils/arraySlice.js +1 -1
- package/esm/utils/attachmentAdpator.js +1 -1
- package/esm/utils/autobind.js +1 -1
- package/esm/utils/browser.js +1 -1
- package/esm/utils/columnsSplit.js +1 -1
- package/esm/utils/concatData.js +1 -1
- package/esm/utils/dataMapping.js +1 -1
- package/esm/utils/date.js +1 -1
- package/esm/utils/debug.js +17 -3
- package/esm/utils/decodeEntity.js +1 -1
- package/esm/utils/dom.js +1 -1
- package/esm/utils/errors.js +1 -1
- package/esm/utils/escapeHtml.js +1 -1
- package/esm/utils/filter-schema.js +1 -1
- package/esm/utils/filter.js +1 -1
- package/esm/utils/formatDuration.js +1 -1
- package/esm/utils/formula.js +2 -1
- package/esm/utils/getVariable.js +1 -1
- package/esm/utils/grammar.js +1 -1
- package/esm/utils/handleAction.js +1 -1
- package/esm/utils/helper.d.ts +5 -1
- package/esm/utils/helper.js +37 -8
- package/esm/utils/highlight.js +1 -1
- package/esm/utils/icon.js +1 -1
- package/esm/utils/image.js +1 -1
- package/esm/utils/isPureVariable.js +2 -2
- package/esm/utils/json-schema-2-amis-schema.js +1 -1
- package/esm/utils/keyToPath.js +1 -1
- package/esm/utils/labelToString.js +1 -1
- package/esm/utils/makeSorter.js +1 -1
- package/esm/utils/math.js +1 -1
- package/esm/utils/memoryParse.d.ts +2 -1
- package/esm/utils/memoryParse.js +10 -6
- package/esm/utils/normalizeLink.js +1 -1
- package/esm/utils/normalizeOptions.js +1 -1
- package/esm/utils/object.d.ts +2 -4
- package/esm/utils/object.js +1 -1
- package/esm/utils/offset.js +1 -1
- package/esm/utils/offsetParent.js +1 -1
- package/esm/utils/optionValueCompare.js +1 -1
- package/esm/utils/position.js +1 -1
- package/esm/utils/prettyBytes.js +1 -1
- package/esm/utils/printElement.js +1 -1
- package/esm/utils/renderer-event.js +5 -3
- package/esm/utils/replaceText.js +1 -1
- package/esm/utils/resize-sensor.js +30 -1
- package/esm/utils/resolveCondition.js +2 -1
- package/esm/utils/resolveVariable.js +1 -1
- package/esm/utils/resolveVariableAndFilter.js +1 -1
- package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/esm/utils/scrollPosition.js +1 -1
- package/esm/utils/string2regExp.js +1 -1
- package/esm/utils/stripNumber.js +1 -1
- package/esm/utils/style-helper.d.ts +4 -2
- package/esm/utils/style-helper.js +27 -13
- package/esm/utils/style.js +2 -1
- package/esm/utils/toNumber.js +1 -1
- package/esm/utils/tokenize.js +1 -1
- package/esm/utils/tpl-builtin.js +2 -1
- package/esm/utils/tpl-lodash.js +2 -1
- package/esm/utils/tpl.js +1 -1
- package/esm/utils/uncontrollable.js +1 -1
- package/esm/utils/validateId.js +3 -3
- package/esm/utils/validations.js +2 -1
- package/esm/utils/visitedCache.d.ts +46 -0
- package/esm/utils/visitedCache.js +124 -0
- package/lib/Root.js +4 -3
- package/lib/RootRenderer.js +1 -1
- package/lib/SchemaRenderer.d.ts +0 -1
- package/lib/SchemaRenderer.js +19 -10
- package/lib/Scoped.js +2 -1
- package/lib/StatusScoped.js +1 -1
- package/lib/WithRootStore.js +1 -1
- package/lib/WithStore.js +8 -8
- package/lib/actions/Action.js +33 -31
- package/lib/actions/AjaxAction.js +1 -1
- package/lib/actions/BreakAction.js +1 -1
- package/lib/actions/BroadcastAction.js +1 -1
- package/lib/actions/CmptAction.js +55 -48
- package/lib/actions/ContinueAction.js +1 -1
- package/lib/actions/CopyAction.js +1 -1
- package/lib/actions/CustomAction.js +12 -3
- package/lib/actions/DialogAction.js +3 -1
- package/lib/actions/DrawerAction.js +2 -1
- package/lib/actions/EmailAction.js +1 -1
- package/lib/actions/EventAction.js +2 -1
- package/lib/actions/LinkAction.js +1 -1
- package/lib/actions/LoopAction.js +2 -1
- package/lib/actions/PageAction.js +1 -1
- package/lib/actions/ParallelAction.js +1 -1
- package/lib/actions/PrintAction.js +1 -1
- package/lib/actions/StatusAction.js +1 -1
- package/lib/actions/SwitchAction.js +1 -1
- package/lib/actions/ToastAction.js +1 -1
- package/lib/actions/WaitAction.js +1 -1
- package/lib/components/CustomStyle.js +1 -1
- package/lib/components/ErrorBoundary.js +1 -1
- package/lib/components/LazyComponent.js +1 -1
- package/lib/components/Overlay.js +2 -1
- package/lib/components/PopOver.d.ts +2 -0
- package/lib/components/PopOver.js +5 -4
- package/lib/env.d.ts +4 -0
- package/lib/env.js +1 -1
- package/lib/envOverwrite.js +1 -1
- package/lib/factory.js +1 -1
- package/lib/index.js +3 -2
- package/lib/locale.js +2 -1
- package/lib/polyfills.js +1 -1
- package/lib/renderers/Form.js +122 -24
- package/lib/renderers/Item.d.ts +97 -12
- package/lib/renderers/Item.js +179 -125
- package/lib/renderers/Options.js +2 -1
- package/lib/renderers/Placeholder.js +1 -1
- package/lib/renderers/builtin.js +1 -1
- package/lib/renderers/register.js +1 -1
- package/lib/renderers/wrapControl.js +2 -1
- package/lib/store/app.d.ts +1 -0
- package/lib/store/app.js +2 -1
- package/lib/store/combo.d.ts +435 -24
- package/lib/store/combo.js +1 -1
- package/lib/store/crud.d.ts +1 -0
- package/lib/store/crud.js +2 -1
- package/lib/store/form.d.ts +181 -10
- package/lib/store/form.js +2 -1
- package/lib/store/formItem.d.ts +5 -0
- package/lib/store/formItem.js +30 -8
- package/lib/store/iRenderer.d.ts +1 -0
- package/lib/store/iRenderer.js +8 -3
- package/lib/store/index.js +1 -1
- package/lib/store/list.d.ts +1 -0
- package/lib/store/list.js +1 -1
- package/lib/store/manager.js +1 -1
- package/lib/store/modal.d.ts +1 -0
- package/lib/store/modal.js +1 -1
- package/lib/store/node.js +1 -1
- package/lib/store/pagination.d.ts +1 -0
- package/lib/store/pagination.js +2 -1
- package/lib/store/root.d.ts +1 -0
- package/lib/store/root.js +2 -1
- package/lib/store/service.d.ts +1 -0
- package/lib/store/service.js +2 -1
- package/lib/store/status.js +1 -1
- package/lib/store/table.d.ts +402 -41
- package/lib/store/table.js +84 -54
- package/lib/store/table2.d.ts +1 -0
- package/lib/store/table2.js +1 -1
- package/lib/theme.js +1 -1
- package/lib/types.d.ts +1 -1
- package/lib/utils/Animation.js +1 -1
- package/lib/utils/ColorScale.js +1 -1
- package/lib/utils/DataSchema.js +1 -1
- package/lib/utils/DataScope.js +2 -2
- package/lib/utils/RootClose.js +1 -1
- package/lib/utils/SimpleMap.js +1 -1
- package/lib/utils/api.js +2 -2
- package/lib/utils/arraySlice.js +1 -1
- package/lib/utils/attachmentAdpator.js +1 -1
- package/lib/utils/autobind.js +1 -1
- package/lib/utils/browser.js +1 -1
- package/lib/utils/columnsSplit.js +1 -1
- package/lib/utils/concatData.js +1 -1
- package/lib/utils/dataMapping.js +1 -1
- package/lib/utils/date.js +1 -1
- package/lib/utils/debug.js +17 -3
- package/lib/utils/decodeEntity.js +1 -1
- package/lib/utils/dom.js +1 -1
- package/lib/utils/errors.js +1 -1
- package/lib/utils/escapeHtml.js +1 -1
- package/lib/utils/filter-schema.js +1 -1
- package/lib/utils/filter.js +1 -1
- package/lib/utils/formatDuration.js +1 -1
- package/lib/utils/formula.js +2 -1
- package/lib/utils/getVariable.js +1 -1
- package/lib/utils/grammar.js +1 -1
- package/lib/utils/handleAction.js +1 -1
- package/lib/utils/helper.d.ts +5 -1
- package/lib/utils/helper.js +36 -6
- package/lib/utils/highlight.js +1 -1
- package/lib/utils/icon.js +1 -1
- package/lib/utils/image.js +1 -1
- package/lib/utils/isPureVariable.js +2 -2
- package/lib/utils/json-schema-2-amis-schema.js +1 -1
- package/lib/utils/keyToPath.js +1 -1
- package/lib/utils/labelToString.js +1 -1
- package/lib/utils/makeSorter.js +1 -1
- package/lib/utils/math.js +1 -1
- package/lib/utils/memoryParse.d.ts +2 -1
- package/lib/utils/memoryParse.js +10 -6
- package/lib/utils/normalizeLink.js +1 -1
- package/lib/utils/normalizeOptions.js +1 -1
- package/lib/utils/object.d.ts +2 -4
- package/lib/utils/object.js +1 -1
- package/lib/utils/offset.js +1 -1
- package/lib/utils/offsetParent.js +1 -1
- package/lib/utils/optionValueCompare.js +1 -1
- package/lib/utils/position.js +1 -1
- package/lib/utils/prettyBytes.js +1 -1
- package/lib/utils/printElement.js +1 -1
- package/lib/utils/renderer-event.js +5 -3
- package/lib/utils/replaceText.js +1 -1
- package/lib/utils/resize-sensor.js +30 -1
- package/lib/utils/resolveCondition.js +2 -1
- package/lib/utils/resolveVariable.js +1 -1
- package/lib/utils/resolveVariableAndFilter.js +1 -1
- package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
- package/lib/utils/scrollPosition.js +1 -1
- package/lib/utils/string2regExp.js +1 -1
- package/lib/utils/stripNumber.js +1 -1
- package/lib/utils/style-helper.d.ts +4 -2
- package/lib/utils/style-helper.js +27 -13
- package/lib/utils/style.js +2 -1
- package/lib/utils/toNumber.js +1 -1
- package/lib/utils/tokenize.js +1 -1
- package/lib/utils/tpl-builtin.js +2 -1
- package/lib/utils/tpl-lodash.js +2 -1
- package/lib/utils/tpl.js +1 -1
- package/lib/utils/uncontrollable.js +1 -1
- package/lib/utils/validateId.js +3 -3
- package/lib/utils/validations.js +2 -1
- package/lib/utils/visitedCache.d.ts +46 -0
- package/lib/utils/visitedCache.js +128 -0
- package/package.json +2 -2
package/esm/store/combo.js
CHANGED
package/esm/store/crud.d.ts
CHANGED
|
@@ -27,6 +27,7 @@ export declare const CRUDStore: import("mobx-state-tree").IModelType<{
|
|
|
27
27
|
initedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
28
28
|
updatedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
29
29
|
pristine: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
30
|
+
pristineRaw: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
30
31
|
upStreamData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
31
32
|
action: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
32
33
|
dialogOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
package/esm/store/crud.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-core v6.
|
|
2
|
+
* amis-core v6.8.0
|
|
3
3
|
* Copyright 2018-2024 fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -12,6 +12,7 @@ import pick from 'lodash/pick';
|
|
|
12
12
|
import 'amis-formula';
|
|
13
13
|
import 'moment';
|
|
14
14
|
import { createObject, extendObject } from '../utils/object.js';
|
|
15
|
+
import '../utils/memoryParse.js';
|
|
15
16
|
import '@rc-component/mini-decimal';
|
|
16
17
|
import { getVariable } from '../utils/getVariable.js';
|
|
17
18
|
import { resolveVariableAndFilter } from '../utils/resolveVariableAndFilter.js';
|
package/esm/store/form.d.ts
CHANGED
|
@@ -15,6 +15,7 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
15
15
|
initedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
16
16
|
updatedAt: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
17
17
|
pristine: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
18
|
+
pristineRaw: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
18
19
|
upStreamData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
19
20
|
action: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
20
21
|
dialogOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
@@ -147,6 +148,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
147
148
|
rowIndex: any;
|
|
148
149
|
pagination: any;
|
|
149
150
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
151
|
+
popOverOpen: boolean;
|
|
152
|
+
popOverData: any;
|
|
153
|
+
popOverSchema: any;
|
|
150
154
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
151
155
|
readonly parentStore: any;
|
|
152
156
|
readonly __: any;
|
|
@@ -247,6 +251,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
247
251
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
248
252
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
249
253
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
254
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
255
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
250
256
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
251
257
|
changeEmitedValue: (value: any) => void;
|
|
252
258
|
addSubFormItem: (item: {
|
|
@@ -311,6 +317,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
311
317
|
rowIndex: any;
|
|
312
318
|
pagination: any;
|
|
313
319
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
320
|
+
popOverOpen: boolean;
|
|
321
|
+
popOverData: any;
|
|
322
|
+
popOverSchema: any;
|
|
314
323
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
315
324
|
readonly parentStore: any;
|
|
316
325
|
readonly __: any;
|
|
@@ -397,6 +406,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
397
406
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
398
407
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
399
408
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
409
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
410
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
411
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
400
412
|
}, {
|
|
401
413
|
readonly parentStore: any;
|
|
402
414
|
readonly __: any;
|
|
@@ -487,6 +499,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
487
499
|
rowIndex: any;
|
|
488
500
|
pagination: any;
|
|
489
501
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
502
|
+
popOverOpen: boolean;
|
|
503
|
+
popOverData: any;
|
|
504
|
+
popOverSchema: any;
|
|
490
505
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
491
506
|
readonly parentStore: any;
|
|
492
507
|
readonly __: any;
|
|
@@ -573,6 +588,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
573
588
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
574
589
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
575
590
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
591
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
592
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
593
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
576
594
|
}, {
|
|
577
595
|
readonly parentStore: any;
|
|
578
596
|
readonly __: any;
|
|
@@ -665,6 +683,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
665
683
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
666
684
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
667
685
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
686
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
687
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
688
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
668
689
|
}, {
|
|
669
690
|
readonly parentStore: any;
|
|
670
691
|
readonly __: any;
|
|
@@ -765,6 +786,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
765
786
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
766
787
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
767
788
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
789
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
790
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
768
791
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
769
792
|
changeEmitedValue: (value: any) => void;
|
|
770
793
|
addSubFormItem: (item: {
|
|
@@ -829,6 +852,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
829
852
|
rowIndex: any;
|
|
830
853
|
pagination: any;
|
|
831
854
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
855
|
+
popOverOpen: boolean;
|
|
856
|
+
popOverData: any;
|
|
857
|
+
popOverSchema: any;
|
|
832
858
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
833
859
|
readonly parentStore: any;
|
|
834
860
|
readonly __: any;
|
|
@@ -915,6 +941,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
915
941
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
916
942
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
917
943
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
944
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
945
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
946
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
918
947
|
}, {
|
|
919
948
|
readonly parentStore: any;
|
|
920
949
|
readonly __: any;
|
|
@@ -1005,6 +1034,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1005
1034
|
rowIndex: any;
|
|
1006
1035
|
pagination: any;
|
|
1007
1036
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1037
|
+
popOverOpen: boolean;
|
|
1038
|
+
popOverData: any;
|
|
1039
|
+
popOverSchema: any;
|
|
1008
1040
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1009
1041
|
readonly parentStore: any;
|
|
1010
1042
|
readonly __: any;
|
|
@@ -1091,6 +1123,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1091
1123
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1092
1124
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1093
1125
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1126
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1127
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1128
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1094
1129
|
}, {
|
|
1095
1130
|
readonly parentStore: any;
|
|
1096
1131
|
readonly __: any;
|
|
@@ -1188,6 +1223,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1188
1223
|
rowIndex: any;
|
|
1189
1224
|
pagination: any;
|
|
1190
1225
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1226
|
+
popOverOpen: boolean;
|
|
1227
|
+
popOverData: any;
|
|
1228
|
+
popOverSchema: any;
|
|
1191
1229
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1192
1230
|
readonly parentStore: any;
|
|
1193
1231
|
readonly __: any;
|
|
@@ -1288,6 +1326,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1288
1326
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1289
1327
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1290
1328
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1329
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1330
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1291
1331
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
1292
1332
|
changeEmitedValue: (value: any) => void;
|
|
1293
1333
|
addSubFormItem: (item: {
|
|
@@ -1352,6 +1392,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1352
1392
|
rowIndex: any;
|
|
1353
1393
|
pagination: any;
|
|
1354
1394
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1395
|
+
popOverOpen: boolean;
|
|
1396
|
+
popOverData: any;
|
|
1397
|
+
popOverSchema: any;
|
|
1355
1398
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1356
1399
|
readonly parentStore: any;
|
|
1357
1400
|
readonly __: any;
|
|
@@ -1438,6 +1481,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1438
1481
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1439
1482
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1440
1483
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1484
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1485
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1486
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1441
1487
|
}, {
|
|
1442
1488
|
readonly parentStore: any;
|
|
1443
1489
|
readonly __: any;
|
|
@@ -1528,6 +1574,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1528
1574
|
rowIndex: any;
|
|
1529
1575
|
pagination: any;
|
|
1530
1576
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1577
|
+
popOverOpen: boolean;
|
|
1578
|
+
popOverData: any;
|
|
1579
|
+
popOverSchema: any;
|
|
1531
1580
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1532
1581
|
readonly parentStore: any;
|
|
1533
1582
|
readonly __: any;
|
|
@@ -1614,6 +1663,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1614
1663
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1615
1664
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1616
1665
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1666
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1667
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1668
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1617
1669
|
}, {
|
|
1618
1670
|
readonly parentStore: any;
|
|
1619
1671
|
readonly __: any;
|
|
@@ -1706,6 +1758,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1706
1758
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1707
1759
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1708
1760
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
1761
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
1762
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
1763
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1709
1764
|
}, {
|
|
1710
1765
|
readonly parentStore: any;
|
|
1711
1766
|
readonly __: any;
|
|
@@ -1806,6 +1861,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1806
1861
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1807
1862
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1808
1863
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
1864
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
1865
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
1809
1866
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
1810
1867
|
changeEmitedValue: (value: any) => void;
|
|
1811
1868
|
addSubFormItem: (item: {
|
|
@@ -1870,6 +1927,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1870
1927
|
rowIndex: any;
|
|
1871
1928
|
pagination: any;
|
|
1872
1929
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
1930
|
+
popOverOpen: boolean;
|
|
1931
|
+
popOverData: any;
|
|
1932
|
+
popOverSchema: any;
|
|
1873
1933
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
1874
1934
|
readonly parentStore: any;
|
|
1875
1935
|
readonly __: any;
|
|
@@ -1956,6 +2016,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
1956
2016
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
1957
2017
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
1958
2018
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2019
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2020
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2021
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
1959
2022
|
}, {
|
|
1960
2023
|
readonly parentStore: any;
|
|
1961
2024
|
readonly __: any;
|
|
@@ -2046,6 +2109,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2046
2109
|
rowIndex: any;
|
|
2047
2110
|
pagination: any;
|
|
2048
2111
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2112
|
+
popOverOpen: boolean;
|
|
2113
|
+
popOverData: any;
|
|
2114
|
+
popOverSchema: any;
|
|
2049
2115
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2050
2116
|
readonly parentStore: any;
|
|
2051
2117
|
readonly __: any;
|
|
@@ -2132,6 +2198,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2132
2198
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2133
2199
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2134
2200
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2201
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2202
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2203
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2135
2204
|
}, {
|
|
2136
2205
|
readonly parentStore: any;
|
|
2137
2206
|
readonly __: any;
|
|
@@ -2233,6 +2302,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2233
2302
|
rowIndex: any;
|
|
2234
2303
|
pagination: any;
|
|
2235
2304
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2305
|
+
popOverOpen: boolean;
|
|
2306
|
+
popOverData: any;
|
|
2307
|
+
popOverSchema: any;
|
|
2236
2308
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2237
2309
|
readonly parentStore: any;
|
|
2238
2310
|
readonly __: any;
|
|
@@ -2333,6 +2405,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2333
2405
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2334
2406
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2335
2407
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2408
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2409
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2336
2410
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
2337
2411
|
changeEmitedValue: (value: any) => void;
|
|
2338
2412
|
addSubFormItem: (item: {
|
|
@@ -2397,6 +2471,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2397
2471
|
rowIndex: any;
|
|
2398
2472
|
pagination: any;
|
|
2399
2473
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2474
|
+
popOverOpen: boolean;
|
|
2475
|
+
popOverData: any;
|
|
2476
|
+
popOverSchema: any;
|
|
2400
2477
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2401
2478
|
readonly parentStore: any;
|
|
2402
2479
|
readonly __: any;
|
|
@@ -2483,6 +2560,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2483
2560
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2484
2561
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2485
2562
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2563
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2564
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2565
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2486
2566
|
}, {
|
|
2487
2567
|
readonly parentStore: any;
|
|
2488
2568
|
readonly __: any;
|
|
@@ -2573,6 +2653,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2573
2653
|
rowIndex: any;
|
|
2574
2654
|
pagination: any;
|
|
2575
2655
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
2656
|
+
popOverOpen: boolean;
|
|
2657
|
+
popOverData: any;
|
|
2658
|
+
popOverSchema: any;
|
|
2576
2659
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2577
2660
|
readonly parentStore: any;
|
|
2578
2661
|
readonly __: any;
|
|
@@ -2659,6 +2742,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2659
2742
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2660
2743
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2661
2744
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2745
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2746
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2747
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2662
2748
|
}, {
|
|
2663
2749
|
readonly parentStore: any;
|
|
2664
2750
|
readonly __: any;
|
|
@@ -2751,6 +2837,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2751
2837
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
2752
2838
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
2753
2839
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
2840
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
2841
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
2842
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
2754
2843
|
}, {
|
|
2755
2844
|
readonly parentStore: any;
|
|
2756
2845
|
readonly __: any;
|
|
@@ -2851,6 +2940,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2851
2940
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2852
2941
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2853
2942
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
2943
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
2944
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
2854
2945
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
2855
2946
|
changeEmitedValue: (value: any) => void;
|
|
2856
2947
|
addSubFormItem: (item: {
|
|
@@ -2915,6 +3006,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
2915
3006
|
rowIndex: any;
|
|
2916
3007
|
pagination: any;
|
|
2917
3008
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3009
|
+
popOverOpen: boolean;
|
|
3010
|
+
popOverData: any;
|
|
3011
|
+
popOverSchema: any;
|
|
2918
3012
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
2919
3013
|
readonly parentStore: any;
|
|
2920
3014
|
readonly __: any;
|
|
@@ -3001,6 +3095,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3001
3095
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3002
3096
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3003
3097
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3098
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3099
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3100
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3004
3101
|
}, {
|
|
3005
3102
|
readonly parentStore: any;
|
|
3006
3103
|
readonly __: any;
|
|
@@ -3091,6 +3188,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3091
3188
|
rowIndex: any;
|
|
3092
3189
|
pagination: any;
|
|
3093
3190
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3191
|
+
popOverOpen: boolean;
|
|
3192
|
+
popOverData: any;
|
|
3193
|
+
popOverSchema: any;
|
|
3094
3194
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3095
3195
|
readonly parentStore: any;
|
|
3096
3196
|
readonly __: any;
|
|
@@ -3177,6 +3277,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3177
3277
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3178
3278
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3179
3279
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3280
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3281
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3282
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3180
3283
|
}, {
|
|
3181
3284
|
readonly parentStore: any;
|
|
3182
3285
|
readonly __: any;
|
|
@@ -3273,6 +3376,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3273
3376
|
rowIndex: any;
|
|
3274
3377
|
pagination: any;
|
|
3275
3378
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3379
|
+
popOverOpen: boolean;
|
|
3380
|
+
popOverData: any;
|
|
3381
|
+
popOverSchema: any;
|
|
3276
3382
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3277
3383
|
readonly parentStore: any;
|
|
3278
3384
|
readonly __: any;
|
|
@@ -3373,6 +3479,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3373
3479
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3374
3480
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3375
3481
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
3482
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3483
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3376
3484
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
3377
3485
|
changeEmitedValue: (value: any) => void;
|
|
3378
3486
|
addSubFormItem: (item: {
|
|
@@ -3437,6 +3545,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3437
3545
|
rowIndex: any;
|
|
3438
3546
|
pagination: any;
|
|
3439
3547
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3548
|
+
popOverOpen: boolean;
|
|
3549
|
+
popOverData: any;
|
|
3550
|
+
popOverSchema: any;
|
|
3440
3551
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3441
3552
|
readonly parentStore: any;
|
|
3442
3553
|
readonly __: any;
|
|
@@ -3523,6 +3634,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3523
3634
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3524
3635
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3525
3636
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3637
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3638
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3639
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3526
3640
|
}, {
|
|
3527
3641
|
readonly parentStore: any;
|
|
3528
3642
|
readonly __: any;
|
|
@@ -3613,6 +3727,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3613
3727
|
rowIndex: any;
|
|
3614
3728
|
pagination: any;
|
|
3615
3729
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
3730
|
+
popOverOpen: boolean;
|
|
3731
|
+
popOverData: any;
|
|
3732
|
+
popOverSchema: any;
|
|
3616
3733
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3617
3734
|
readonly parentStore: any;
|
|
3618
3735
|
readonly __: any;
|
|
@@ -3699,6 +3816,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3699
3816
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3700
3817
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3701
3818
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3819
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3820
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3821
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3702
3822
|
}, {
|
|
3703
3823
|
readonly parentStore: any;
|
|
3704
3824
|
readonly __: any;
|
|
@@ -3791,6 +3911,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3791
3911
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
3792
3912
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
3793
3913
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
3914
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
3915
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
3916
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
3794
3917
|
}, {
|
|
3795
3918
|
readonly parentStore: any;
|
|
3796
3919
|
readonly __: any;
|
|
@@ -3891,6 +4014,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3891
4014
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3892
4015
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
3893
4016
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4017
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4018
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
3894
4019
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
3895
4020
|
changeEmitedValue: (value: any) => void;
|
|
3896
4021
|
addSubFormItem: (item: {
|
|
@@ -3955,6 +4080,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
3955
4080
|
rowIndex: any;
|
|
3956
4081
|
pagination: any;
|
|
3957
4082
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4083
|
+
popOverOpen: boolean;
|
|
4084
|
+
popOverData: any;
|
|
4085
|
+
popOverSchema: any;
|
|
3958
4086
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
3959
4087
|
readonly parentStore: any;
|
|
3960
4088
|
readonly __: any;
|
|
@@ -4041,6 +4169,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4041
4169
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4042
4170
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4043
4171
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4172
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4173
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4174
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4044
4175
|
}, {
|
|
4045
4176
|
readonly parentStore: any;
|
|
4046
4177
|
readonly __: any;
|
|
@@ -4131,6 +4262,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4131
4262
|
rowIndex: any;
|
|
4132
4263
|
pagination: any;
|
|
4133
4264
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4265
|
+
popOverOpen: boolean;
|
|
4266
|
+
popOverData: any;
|
|
4267
|
+
popOverSchema: any;
|
|
4134
4268
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4135
4269
|
readonly parentStore: any;
|
|
4136
4270
|
readonly __: any;
|
|
@@ -4217,6 +4351,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4217
4351
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4218
4352
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4219
4353
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4354
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4355
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4356
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4220
4357
|
}, {
|
|
4221
4358
|
readonly parentStore: any;
|
|
4222
4359
|
readonly __: any;
|
|
@@ -4313,6 +4450,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4313
4450
|
rowIndex: any;
|
|
4314
4451
|
pagination: any;
|
|
4315
4452
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4453
|
+
popOverOpen: boolean;
|
|
4454
|
+
popOverData: any;
|
|
4455
|
+
popOverSchema: any;
|
|
4316
4456
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4317
4457
|
readonly parentStore: any;
|
|
4318
4458
|
readonly __: any;
|
|
@@ -4413,6 +4553,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4413
4553
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4414
4554
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4415
4555
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
4556
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4557
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4416
4558
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
4417
4559
|
changeEmitedValue: (value: any) => void;
|
|
4418
4560
|
addSubFormItem: (item: {
|
|
@@ -4477,6 +4619,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4477
4619
|
rowIndex: any;
|
|
4478
4620
|
pagination: any;
|
|
4479
4621
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4622
|
+
popOverOpen: boolean;
|
|
4623
|
+
popOverData: any;
|
|
4624
|
+
popOverSchema: any;
|
|
4480
4625
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4481
4626
|
readonly parentStore: any;
|
|
4482
4627
|
readonly __: any;
|
|
@@ -4563,6 +4708,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4563
4708
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4564
4709
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4565
4710
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4711
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4712
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4713
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4566
4714
|
}, {
|
|
4567
4715
|
readonly parentStore: any;
|
|
4568
4716
|
readonly __: any;
|
|
@@ -4653,6 +4801,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4653
4801
|
rowIndex: any;
|
|
4654
4802
|
pagination: any;
|
|
4655
4803
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
4804
|
+
popOverOpen: boolean;
|
|
4805
|
+
popOverData: any;
|
|
4806
|
+
popOverSchema: any;
|
|
4656
4807
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4657
4808
|
readonly parentStore: any;
|
|
4658
4809
|
readonly __: any;
|
|
@@ -4739,6 +4890,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4739
4890
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4740
4891
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4741
4892
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4893
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4894
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4895
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4742
4896
|
}, {
|
|
4743
4897
|
readonly parentStore: any;
|
|
4744
4898
|
readonly __: any;
|
|
@@ -4831,6 +4985,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4831
4985
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
4832
4986
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
4833
4987
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
4988
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
4989
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
4990
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
4834
4991
|
}, {
|
|
4835
4992
|
readonly parentStore: any;
|
|
4836
4993
|
readonly __: any;
|
|
@@ -4931,6 +5088,8 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4931
5088
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4932
5089
|
openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
4933
5090
|
closeDialog: (confirmed?: any, result?: any) => void;
|
|
5091
|
+
openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
|
|
5092
|
+
closePopOver: (confirmed?: any, result?: any) => void;
|
|
4934
5093
|
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
|
|
4935
5094
|
changeEmitedValue: (value: any) => void;
|
|
4936
5095
|
addSubFormItem: (item: {
|
|
@@ -4995,6 +5154,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
4995
5154
|
rowIndex: any;
|
|
4996
5155
|
pagination: any;
|
|
4997
5156
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5157
|
+
popOverOpen: boolean;
|
|
5158
|
+
popOverData: any;
|
|
5159
|
+
popOverSchema: any;
|
|
4998
5160
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
4999
5161
|
readonly parentStore: any;
|
|
5000
5162
|
readonly __: any;
|
|
@@ -5081,6 +5243,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
5081
5243
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5082
5244
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5083
5245
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5246
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5247
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5248
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5084
5249
|
}, {
|
|
5085
5250
|
readonly parentStore: any;
|
|
5086
5251
|
readonly __: any;
|
|
@@ -5171,6 +5336,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
5171
5336
|
rowIndex: any;
|
|
5172
5337
|
pagination: any;
|
|
5173
5338
|
accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
|
|
5339
|
+
popOverOpen: boolean;
|
|
5340
|
+
popOverData: any;
|
|
5341
|
+
popOverSchema: any;
|
|
5174
5342
|
} & import("mobx-state-tree/dist/internal").NonEmptyObject & {
|
|
5175
5343
|
readonly parentStore: any;
|
|
5176
5344
|
readonly __: any;
|
|
@@ -5257,6 +5425,9 @@ export declare const FormStore: import("mobx-state-tree").IModelType<{
|
|
|
5257
5425
|
rowIndex: import("mobx-state-tree").IType<any, any, any>;
|
|
5258
5426
|
pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
|
|
5259
5427
|
accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
|
|
5428
|
+
popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
5429
|
+
popOverData: import("mobx-state-tree").IType<any, any, any>;
|
|
5430
|
+
popOverSchema: import("mobx-state-tree").IType<any, any, any>;
|
|
5260
5431
|
}, {
|
|
5261
5432
|
readonly parentStore: any;
|
|
5262
5433
|
readonly __: any;
|
package/esm/store/form.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* amis-core v6.
|
|
2
|
+
* amis-core v6.8.0
|
|
3
3
|
* Copyright 2018-2024 fex
|
|
4
4
|
*/
|
|
5
5
|
|
|
@@ -22,6 +22,7 @@ import { createObject, isObject, cloneObject, setVariable, deleteVariable } from
|
|
|
22
22
|
import { isPureVariable } from '../utils/isPureVariable.js';
|
|
23
23
|
import '@rc-component/mini-decimal';
|
|
24
24
|
import { getVariable } from '../utils/getVariable.js';
|
|
25
|
+
import '../utils/memoryParse.js';
|
|
25
26
|
import 'lodash/isPlainObject';
|
|
26
27
|
import '../utils/filter.js';
|
|
27
28
|
import { normalizeApiResponseData } from '../utils/api.js';
|