amis-core 6.0.0 → 6.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/Root.js +2 -2
- package/esm/RootRenderer.js +4 -3
- package/esm/SchemaRenderer.js +5 -2
- package/esm/Scoped.d.ts +6 -0
- package/esm/Scoped.js +47 -8
- package/esm/StatusScoped.js +2 -2
- package/esm/WithRootStore.js +2 -2
- package/esm/WithStore.js +4 -6
- package/esm/actions/Action.js +2 -2
- package/esm/actions/AjaxAction.js +2 -2
- package/esm/actions/BreakAction.js +2 -2
- package/esm/actions/BroadcastAction.js +2 -2
- package/esm/actions/CmptAction.js +2 -2
- package/esm/actions/ContinueAction.js +2 -2
- package/esm/actions/CopyAction.js +2 -2
- package/esm/actions/CustomAction.js +3 -3
- package/esm/actions/DialogAction.js +2 -2
- package/esm/actions/DrawerAction.js +2 -2
- package/esm/actions/EmailAction.js +2 -2
- package/esm/actions/LinkAction.js +10 -5
- package/esm/actions/LoopAction.js +2 -2
- package/esm/actions/PageAction.js +2 -2
- package/esm/actions/ParallelAction.js +2 -2
- package/esm/actions/PrintAction.d.ts +19 -0
- package/esm/actions/PrintAction.js +49 -0
- package/esm/actions/StatusAction.js +2 -2
- package/esm/actions/SwitchAction.js +2 -2
- package/esm/actions/ToastAction.js +2 -2
- package/esm/actions/index.d.ts +1 -0
- package/esm/components/CustomStyle.d.ts +1 -2
- package/esm/components/CustomStyle.js +20 -7
- package/esm/components/ErrorBoundary.js +2 -2
- package/esm/components/LazyComponent.js +2 -2
- package/esm/components/Overlay.js +11 -9
- package/esm/components/PopOver.js +7 -5
- package/esm/env.d.ts +4 -0
- package/esm/env.js +2 -2
- package/esm/envOverwrite.js +2 -2
- package/esm/factory.js +15 -2
- package/esm/index.d.ts +3 -2
- package/esm/index.js +16 -9
- package/esm/locale.js +2 -2
- package/esm/polyfills.js +2 -2
- package/esm/renderers/Form.d.ts +4 -3
- package/esm/renderers/Form.js +97 -45
- package/esm/renderers/Item.d.ts +1 -0
- package/esm/renderers/Item.js +15 -16
- package/esm/renderers/Options.d.ts +5 -0
- package/esm/renderers/Options.js +27 -10
- package/esm/renderers/Placeholder.js +2 -2
- package/esm/renderers/builtin.js +2 -2
- package/esm/renderers/register.js +2 -2
- package/esm/renderers/wrapControl.js +37 -29
- package/esm/store/app.js +3 -3
- package/esm/store/combo.d.ts +48 -24
- package/esm/store/combo.js +2 -2
- package/esm/store/crud.js +2 -2
- package/esm/store/form.d.ts +20 -10
- package/esm/store/form.js +2 -2
- package/esm/store/formItem.d.ts +2 -1
- package/esm/store/formItem.js +4 -3
- package/esm/store/iRenderer.js +5 -3
- package/esm/store/index.js +2 -2
- package/esm/store/list.d.ts +11 -0
- package/esm/store/list.js +9 -2
- package/esm/store/manager.js +2 -2
- package/esm/store/modal.js +2 -2
- package/esm/store/node.js +2 -2
- package/esm/store/pagination.js +2 -2
- package/esm/store/root.js +3 -3
- package/esm/store/service.js +6 -3
- package/esm/store/status.js +2 -2
- package/esm/store/table.d.ts +70 -47
- package/esm/store/table.js +40 -24
- package/esm/store/table2.js +2 -2
- package/esm/theme.js +2 -2
- package/esm/utils/Animation.js +2 -2
- package/esm/utils/ColorScale.js +2 -2
- package/esm/utils/DataSchema.js +2 -2
- package/esm/utils/DataScope.js +2 -2
- package/esm/utils/RootClose.js +2 -2
- package/esm/utils/SimpleMap.js +2 -2
- package/esm/utils/api.js +4 -3
- package/esm/utils/arraySlice.js +2 -2
- package/esm/utils/attachmentAdpator.js +4 -3
- package/esm/utils/autobind.js +2 -2
- package/esm/utils/browser.d.ts +1 -0
- package/esm/utils/browser.js +8 -3
- package/esm/utils/columnsSplit.js +2 -2
- package/esm/utils/concatData.js +2 -2
- package/esm/utils/dataMapping.js +2 -2
- package/esm/utils/date.js +2 -2
- package/esm/utils/debug.js +2 -2
- package/esm/utils/decodeEntity.js +2 -2
- package/esm/utils/dom.js +8 -3
- package/esm/utils/errors.js +2 -2
- package/esm/utils/escapeHtml.js +2 -2
- package/esm/utils/filter-schema.js +2 -2
- package/esm/utils/filter.js +2 -2
- package/esm/utils/formatDuration.js +2 -2
- package/esm/utils/formula.js +2 -2
- package/esm/utils/getVariable.js +2 -2
- package/esm/utils/grammar.js +2 -2
- package/esm/utils/handleAction.js +2 -2
- package/esm/utils/helper.d.ts +8 -1
- package/esm/utils/helper.js +28 -10
- package/esm/utils/highlight.js +4 -3
- package/esm/utils/icon.js +2 -2
- package/esm/utils/image.js +2 -2
- package/esm/utils/index.d.ts +1 -0
- package/esm/utils/isPureVariable.js +2 -2
- package/esm/utils/json-schema-2-amis-schema.js +2 -2
- package/esm/utils/keyToPath.js +2 -2
- package/esm/utils/labelToString.d.ts +1 -0
- package/esm/utils/labelToString.js +38 -0
- package/esm/utils/makeSorter.js +2 -2
- package/esm/utils/math.js +2 -2
- package/esm/utils/memoryParse.js +2 -2
- package/esm/utils/normalizeLink.js +2 -2
- package/esm/utils/normalizeOptions.js +2 -2
- package/esm/utils/object.js +2 -2
- package/esm/utils/offset.js +2 -2
- package/esm/utils/offsetParent.js +2 -2
- package/esm/utils/optionValueCompare.js +2 -2
- package/esm/utils/position.js +2 -2
- package/esm/utils/prettyBytes.js +2 -2
- package/esm/utils/printElement.d.ts +6 -0
- package/esm/utils/printElement.js +71 -0
- package/esm/utils/renderer-event.js +2 -2
- package/esm/utils/replaceText.js +10 -12
- package/esm/utils/resize-sensor.js +2 -2
- package/esm/utils/resolveCondition.js +2 -2
- package/esm/utils/resolveVariable.js +2 -2
- package/esm/utils/resolveVariableAndFilter.js +2 -2
- package/esm/utils/resolveVariableAndFilterForAsync.js +2 -2
- package/esm/utils/scrollPosition.js +2 -2
- package/esm/utils/string2regExp.d.ts +1 -1
- package/esm/utils/string2regExp.js +5 -4
- package/esm/utils/stripNumber.js +2 -2
- package/esm/utils/style-helper.d.ts +24 -5
- package/esm/utils/style-helper.js +47 -17
- package/esm/utils/style.js +2 -2
- package/esm/utils/toNumber.js +2 -2
- package/esm/utils/tokenize.d.ts +1 -0
- package/esm/utils/tokenize.js +11 -4
- package/esm/utils/tpl-builtin.js +2 -2
- package/esm/utils/tpl-lodash.js +2 -2
- package/esm/utils/tpl.js +7 -9
- package/esm/utils/uncontrollable.js +2 -2
- package/esm/utils/validateId.d.ts +16 -0
- package/esm/utils/validateId.js +154 -0
- package/esm/utils/validations.js +17 -9
- package/lib/Root.js +2 -2
- package/lib/RootRenderer.d.ts +1 -1
- package/lib/RootRenderer.js +4 -3
- package/lib/SchemaRenderer.js +5 -2
- package/lib/Scoped.d.ts +6 -0
- package/lib/Scoped.js +47 -7
- package/lib/StatusScoped.js +2 -2
- package/lib/WithRootStore.js +2 -2
- package/lib/WithStore.js +4 -6
- package/lib/actions/Action.js +2 -2
- package/lib/actions/AjaxAction.js +2 -2
- package/lib/actions/BreakAction.js +2 -2
- package/lib/actions/BroadcastAction.js +2 -2
- package/lib/actions/CmptAction.js +2 -2
- package/lib/actions/ContinueAction.js +2 -2
- package/lib/actions/CopyAction.js +2 -2
- package/lib/actions/CustomAction.js +3 -3
- package/lib/actions/DialogAction.js +2 -2
- package/lib/actions/DrawerAction.js +2 -2
- package/lib/actions/EmailAction.js +2 -2
- package/lib/actions/LinkAction.js +10 -5
- package/lib/actions/LoopAction.js +2 -2
- package/lib/actions/PageAction.js +2 -2
- package/lib/actions/ParallelAction.js +2 -2
- package/lib/actions/PrintAction.d.ts +19 -0
- package/lib/actions/PrintAction.js +53 -0
- package/lib/actions/StatusAction.js +2 -2
- package/lib/actions/SwitchAction.js +2 -2
- package/lib/actions/ToastAction.js +2 -2
- package/lib/actions/index.d.ts +1 -0
- package/lib/components/CustomStyle.d.ts +1 -2
- package/lib/components/CustomStyle.js +20 -7
- package/lib/components/ErrorBoundary.js +2 -2
- package/lib/components/LazyComponent.js +2 -2
- package/lib/components/Overlay.js +10 -8
- package/lib/components/PopOver.js +7 -5
- package/lib/env.d.ts +4 -0
- package/lib/env.js +2 -2
- package/lib/envOverwrite.js +2 -2
- package/lib/factory.js +15 -2
- package/lib/index.d.ts +3 -2
- package/lib/index.js +19 -5
- package/lib/locale.js +2 -2
- package/lib/polyfills.js +2 -2
- package/lib/renderers/Form.d.ts +4 -3
- package/lib/renderers/Form.js +96 -44
- package/lib/renderers/Item.d.ts +1 -0
- package/lib/renderers/Item.js +15 -16
- package/lib/renderers/Options.d.ts +5 -0
- package/lib/renderers/Options.js +27 -10
- package/lib/renderers/Placeholder.js +2 -2
- package/lib/renderers/builtin.js +2 -2
- package/lib/renderers/register.js +2 -2
- package/lib/renderers/wrapControl.js +36 -28
- package/lib/store/app.js +3 -3
- package/lib/store/combo.d.ts +72 -48
- package/lib/store/combo.js +2 -2
- package/lib/store/crud.js +2 -2
- package/lib/store/form.d.ts +30 -20
- package/lib/store/form.js +2 -2
- package/lib/store/formItem.d.ts +2 -1
- package/lib/store/formItem.js +4 -3
- package/lib/store/iRenderer.js +5 -3
- package/lib/store/index.js +2 -2
- package/lib/store/list.d.ts +11 -0
- package/lib/store/list.js +9 -2
- package/lib/store/manager.js +2 -2
- package/lib/store/modal.js +2 -2
- package/lib/store/node.js +2 -2
- package/lib/store/pagination.js +2 -2
- package/lib/store/root.js +3 -3
- package/lib/store/service.js +6 -3
- package/lib/store/status.js +2 -2
- package/lib/store/table.d.ts +90 -68
- package/lib/store/table.js +40 -24
- package/lib/store/table2.js +2 -2
- package/lib/theme.js +2 -2
- package/lib/utils/Animation.js +2 -2
- package/lib/utils/ColorScale.js +2 -2
- package/lib/utils/DataSchema.js +2 -2
- package/lib/utils/DataScope.js +2 -2
- package/lib/utils/RootClose.js +2 -2
- package/lib/utils/SimpleMap.js +2 -2
- package/lib/utils/api.js +4 -3
- package/lib/utils/arraySlice.js +2 -2
- package/lib/utils/attachmentAdpator.js +4 -3
- package/lib/utils/autobind.js +2 -2
- package/lib/utils/browser.d.ts +1 -0
- package/lib/utils/browser.js +8 -2
- package/lib/utils/columnsSplit.js +2 -2
- package/lib/utils/concatData.js +2 -2
- package/lib/utils/dataMapping.js +2 -2
- package/lib/utils/date.js +2 -2
- package/lib/utils/debug.js +2 -2
- package/lib/utils/decodeEntity.js +2 -2
- package/lib/utils/dom.js +8 -3
- package/lib/utils/errors.js +2 -2
- package/lib/utils/escapeHtml.js +2 -2
- package/lib/utils/filter-schema.js +2 -2
- package/lib/utils/filter.js +2 -2
- package/lib/utils/formatDuration.js +2 -2
- package/lib/utils/formula.js +2 -2
- package/lib/utils/getVariable.js +2 -2
- package/lib/utils/grammar.js +2 -2
- package/lib/utils/handleAction.js +2 -2
- package/lib/utils/helper.d.ts +8 -1
- package/lib/utils/helper.js +29 -8
- package/lib/utils/highlight.js +4 -3
- package/lib/utils/icon.js +2 -2
- package/lib/utils/image.js +2 -2
- package/lib/utils/index.d.ts +1 -0
- package/lib/utils/isPureVariable.js +2 -2
- package/lib/utils/json-schema-2-amis-schema.js +2 -2
- package/lib/utils/keyToPath.js +2 -2
- package/lib/utils/labelToString.d.ts +1 -0
- package/lib/utils/labelToString.js +46 -0
- package/lib/utils/makeSorter.js +2 -2
- package/lib/utils/math.js +2 -2
- package/lib/utils/memoryParse.js +2 -2
- package/lib/utils/normalizeLink.js +2 -2
- package/lib/utils/normalizeOptions.js +2 -2
- package/lib/utils/object.js +2 -2
- package/lib/utils/offset.js +2 -2
- package/lib/utils/offsetParent.js +2 -2
- package/lib/utils/optionValueCompare.js +2 -2
- package/lib/utils/position.js +2 -2
- package/lib/utils/prettyBytes.js +2 -2
- package/lib/utils/printElement.d.ts +6 -0
- package/lib/utils/printElement.js +75 -0
- package/lib/utils/renderer-event.js +2 -2
- package/lib/utils/replaceText.js +9 -15
- package/lib/utils/resize-sensor.js +2 -2
- package/lib/utils/resolveCondition.js +2 -2
- package/lib/utils/resolveVariable.js +2 -2
- package/lib/utils/resolveVariableAndFilter.js +2 -2
- package/lib/utils/resolveVariableAndFilterForAsync.js +2 -2
- package/lib/utils/scrollPosition.js +2 -2
- package/lib/utils/string2regExp.d.ts +1 -1
- package/lib/utils/string2regExp.js +5 -4
- package/lib/utils/stripNumber.js +2 -2
- package/lib/utils/style-helper.d.ts +24 -5
- package/lib/utils/style-helper.js +47 -17
- package/lib/utils/style.js +2 -2
- package/lib/utils/toNumber.js +2 -2
- package/lib/utils/tokenize.d.ts +1 -0
- package/lib/utils/tokenize.js +11 -3
- package/lib/utils/tpl-builtin.js +2 -2
- package/lib/utils/tpl-lodash.js +2 -2
- package/lib/utils/tpl.js +6 -8
- package/lib/utils/uncontrollable.js +2 -2
- package/lib/utils/validateId.d.ts +16 -0
- package/lib/utils/validateId.js +160 -0
- package/lib/utils/validations.js +17 -9
- package/package.json +4 -9
- package/LICENSE +0 -201
package/lib/store/table.d.ts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
/// <reference types="lodash" />
|
|
2
1
|
import { SnapshotIn, IAnyModelType, Instance } from 'mobx-state-tree';
|
|
3
2
|
import { IFormStore } from './form';
|
|
4
3
|
export declare enum SELECTED_STATUS {
|
|
@@ -101,7 +100,7 @@ export declare const Row: import("mobx-state-tree").IModelType<{
|
|
|
101
100
|
markLoaded(value: any): void;
|
|
102
101
|
setError(value: any): void;
|
|
103
102
|
resetDefered(): void;
|
|
104
|
-
|
|
103
|
+
updateData({ children, ...rest }: any): void;
|
|
105
104
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
|
|
106
105
|
export type IRow = Instance<typeof Row>;
|
|
107
106
|
export type SRow = SnapshotIn<typeof Row>;
|
|
@@ -159,6 +158,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
159
158
|
setWidth(value: number): void;
|
|
160
159
|
setRealWidth(value: number): void;
|
|
161
160
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
161
|
+
columnsKey: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
162
162
|
rows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
|
|
163
163
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
164
164
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -217,7 +217,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
217
217
|
markLoaded(value: any): void;
|
|
218
218
|
setError(value: any): void;
|
|
219
219
|
resetDefered(): void;
|
|
220
|
-
|
|
220
|
+
updateData({ children, ...rest }: any): void;
|
|
221
221
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
|
|
222
222
|
selectedRows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IModelType<{
|
|
223
223
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -277,7 +277,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
277
277
|
markLoaded(value: any): void;
|
|
278
278
|
setError(value: any): void;
|
|
279
279
|
resetDefered(): void;
|
|
280
|
-
|
|
280
|
+
updateData({ children, ...rest }: any): void;
|
|
281
281
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
|
|
282
282
|
expandedRows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>;
|
|
283
283
|
primaryField: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
@@ -301,6 +301,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
301
301
|
formsRef: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<any, any, any>>, [undefined]>;
|
|
302
302
|
maxKeepItemSelectionLength: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
303
303
|
keepItemSelectionOnPageChange: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
304
|
+
maxItemSelectionLength: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
304
305
|
exportExcelLoading: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
305
306
|
searchFormExpanded: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
|
|
306
307
|
lazyRenderAfter: import("mobx-state-tree").IType<number | undefined, number, number>;
|
|
@@ -334,6 +335,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
334
335
|
getDialogScoped(): import("..").IScopedContext | null;
|
|
335
336
|
getDrawerScoped(): import("..").IScopedContext | null;
|
|
336
337
|
} & {
|
|
338
|
+
getSelectionUpperLimit: () => number;
|
|
337
339
|
readonly columnsData: ({
|
|
338
340
|
label: any;
|
|
339
341
|
type: string;
|
|
@@ -573,7 +575,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
573
575
|
} & {
|
|
574
576
|
focus: () => void;
|
|
575
577
|
blur: () => void;
|
|
576
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
578
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
579
|
+
name?: string | undefined;
|
|
577
580
|
extraName?: string | undefined;
|
|
578
581
|
required?: boolean | undefined;
|
|
579
582
|
unique?: boolean | undefined;
|
|
@@ -642,7 +645,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
642
645
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
643
646
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
644
647
|
closeDialog: (result?: any) => void;
|
|
645
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
648
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
646
649
|
changeEmitedValue: (value: any) => void;
|
|
647
650
|
addSubFormItem: (item: {
|
|
648
651
|
id: string;
|
|
@@ -1082,7 +1085,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1082
1085
|
} & {
|
|
1083
1086
|
focus: () => void;
|
|
1084
1087
|
blur: () => void;
|
|
1085
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
1088
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
1089
|
+
name?: string | undefined;
|
|
1086
1090
|
extraName?: string | undefined;
|
|
1087
1091
|
required?: boolean | undefined;
|
|
1088
1092
|
unique?: boolean | undefined;
|
|
@@ -1151,7 +1155,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1151
1155
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1152
1156
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
1153
1157
|
closeDialog: (result?: any) => void;
|
|
1154
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
1158
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1155
1159
|
changeEmitedValue: (value: any) => void;
|
|
1156
1160
|
addSubFormItem: (item: {
|
|
1157
1161
|
id: string;
|
|
@@ -1595,7 +1599,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1595
1599
|
} & {
|
|
1596
1600
|
focus: () => void;
|
|
1597
1601
|
blur: () => void;
|
|
1598
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
1602
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
1603
|
+
name?: string | undefined;
|
|
1599
1604
|
extraName?: string | undefined;
|
|
1600
1605
|
required?: boolean | undefined;
|
|
1601
1606
|
unique?: boolean | undefined;
|
|
@@ -1664,7 +1669,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
1664
1669
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
1665
1670
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
1666
1671
|
closeDialog: (result?: any) => void;
|
|
1667
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
1672
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
1668
1673
|
changeEmitedValue: (value: any) => void;
|
|
1669
1674
|
addSubFormItem: (item: {
|
|
1670
1675
|
id: string;
|
|
@@ -2104,7 +2109,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2104
2109
|
} & {
|
|
2105
2110
|
focus: () => void;
|
|
2106
2111
|
blur: () => void;
|
|
2107
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
2112
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
2113
|
+
name?: string | undefined;
|
|
2108
2114
|
extraName?: string | undefined;
|
|
2109
2115
|
required?: boolean | undefined;
|
|
2110
2116
|
unique?: boolean | undefined;
|
|
@@ -2173,7 +2179,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2173
2179
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2174
2180
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
2175
2181
|
closeDialog: (result?: any) => void;
|
|
2176
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
2182
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
2177
2183
|
changeEmitedValue: (value: any) => void;
|
|
2178
2184
|
addSubFormItem: (item: {
|
|
2179
2185
|
id: string;
|
|
@@ -2622,7 +2628,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2622
2628
|
} & {
|
|
2623
2629
|
focus: () => void;
|
|
2624
2630
|
blur: () => void;
|
|
2625
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
2631
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
2632
|
+
name?: string | undefined;
|
|
2626
2633
|
extraName?: string | undefined;
|
|
2627
2634
|
required?: boolean | undefined;
|
|
2628
2635
|
unique?: boolean | undefined;
|
|
@@ -2691,7 +2698,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
2691
2698
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
2692
2699
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
2693
2700
|
closeDialog: (result?: any) => void;
|
|
2694
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
2701
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
2695
2702
|
changeEmitedValue: (value: any) => void;
|
|
2696
2703
|
addSubFormItem: (item: {
|
|
2697
2704
|
id: string;
|
|
@@ -3131,7 +3138,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3131
3138
|
} & {
|
|
3132
3139
|
focus: () => void;
|
|
3133
3140
|
blur: () => void;
|
|
3134
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
3141
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
3142
|
+
name?: string | undefined;
|
|
3135
3143
|
extraName?: string | undefined;
|
|
3136
3144
|
required?: boolean | undefined;
|
|
3137
3145
|
unique?: boolean | undefined;
|
|
@@ -3200,7 +3208,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3200
3208
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3201
3209
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
3202
3210
|
closeDialog: (result?: any) => void;
|
|
3203
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
3211
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
3204
3212
|
changeEmitedValue: (value: any) => void;
|
|
3205
3213
|
addSubFormItem: (item: {
|
|
3206
3214
|
id: string;
|
|
@@ -3644,7 +3652,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3644
3652
|
} & {
|
|
3645
3653
|
focus: () => void;
|
|
3646
3654
|
blur: () => void;
|
|
3647
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
3655
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
3656
|
+
name?: string | undefined;
|
|
3648
3657
|
extraName?: string | undefined;
|
|
3649
3658
|
required?: boolean | undefined;
|
|
3650
3659
|
unique?: boolean | undefined;
|
|
@@ -3713,7 +3722,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
3713
3722
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
3714
3723
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
3715
3724
|
closeDialog: (result?: any) => void;
|
|
3716
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
3725
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
3717
3726
|
changeEmitedValue: (value: any) => void;
|
|
3718
3727
|
addSubFormItem: (item: {
|
|
3719
3728
|
id: string;
|
|
@@ -4153,7 +4162,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4153
4162
|
} & {
|
|
4154
4163
|
focus: () => void;
|
|
4155
4164
|
blur: () => void;
|
|
4156
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
4165
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
4166
|
+
name?: string | undefined;
|
|
4157
4167
|
extraName?: string | undefined;
|
|
4158
4168
|
required?: boolean | undefined;
|
|
4159
4169
|
unique?: boolean | undefined;
|
|
@@ -4222,7 +4232,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4222
4232
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4223
4233
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
4224
4234
|
closeDialog: (result?: any) => void;
|
|
4225
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
4235
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
4226
4236
|
changeEmitedValue: (value: any) => void;
|
|
4227
4237
|
addSubFormItem: (item: {
|
|
4228
4238
|
id: string;
|
|
@@ -4666,7 +4676,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4666
4676
|
} & {
|
|
4667
4677
|
focus: () => void;
|
|
4668
4678
|
blur: () => void;
|
|
4669
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
4679
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
4680
|
+
name?: string | undefined;
|
|
4670
4681
|
extraName?: string | undefined;
|
|
4671
4682
|
required?: boolean | undefined;
|
|
4672
4683
|
unique?: boolean | undefined;
|
|
@@ -4735,7 +4746,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
4735
4746
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
4736
4747
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
4737
4748
|
closeDialog: (result?: any) => void;
|
|
4738
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
4749
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
4739
4750
|
changeEmitedValue: (value: any) => void;
|
|
4740
4751
|
addSubFormItem: (item: {
|
|
4741
4752
|
id: string;
|
|
@@ -5175,7 +5186,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5175
5186
|
} & {
|
|
5176
5187
|
focus: () => void;
|
|
5177
5188
|
blur: () => void;
|
|
5178
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
5189
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
5190
|
+
name?: string | undefined;
|
|
5179
5191
|
extraName?: string | undefined;
|
|
5180
5192
|
required?: boolean | undefined;
|
|
5181
5193
|
unique?: boolean | undefined;
|
|
@@ -5244,7 +5256,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5244
5256
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5245
5257
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
5246
5258
|
closeDialog: (result?: any) => void;
|
|
5247
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
5259
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
5248
5260
|
changeEmitedValue: (value: any) => void;
|
|
5249
5261
|
addSubFormItem: (item: {
|
|
5250
5262
|
id: string;
|
|
@@ -5807,7 +5819,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5807
5819
|
} & {
|
|
5808
5820
|
focus: () => void;
|
|
5809
5821
|
blur: () => void;
|
|
5810
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
5822
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
5823
|
+
name?: string | undefined;
|
|
5811
5824
|
extraName?: string | undefined;
|
|
5812
5825
|
required?: boolean | undefined;
|
|
5813
5826
|
unique?: boolean | undefined;
|
|
@@ -5876,7 +5889,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
5876
5889
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
5877
5890
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
5878
5891
|
closeDialog: (result?: any) => void;
|
|
5879
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
5892
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
5880
5893
|
changeEmitedValue: (value: any) => void;
|
|
5881
5894
|
addSubFormItem: (item: {
|
|
5882
5895
|
id: string;
|
|
@@ -6316,7 +6329,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6316
6329
|
} & {
|
|
6317
6330
|
focus: () => void;
|
|
6318
6331
|
blur: () => void;
|
|
6319
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
6332
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
6333
|
+
name?: string | undefined;
|
|
6320
6334
|
extraName?: string | undefined;
|
|
6321
6335
|
required?: boolean | undefined;
|
|
6322
6336
|
unique?: boolean | undefined;
|
|
@@ -6385,7 +6399,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6385
6399
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6386
6400
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
6387
6401
|
closeDialog: (result?: any) => void;
|
|
6388
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
6402
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
6389
6403
|
changeEmitedValue: (value: any) => void;
|
|
6390
6404
|
addSubFormItem: (item: {
|
|
6391
6405
|
id: string;
|
|
@@ -6829,7 +6843,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6829
6843
|
} & {
|
|
6830
6844
|
focus: () => void;
|
|
6831
6845
|
blur: () => void;
|
|
6832
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
6846
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
6847
|
+
name?: string | undefined;
|
|
6833
6848
|
extraName?: string | undefined;
|
|
6834
6849
|
required?: boolean | undefined;
|
|
6835
6850
|
unique?: boolean | undefined;
|
|
@@ -6898,7 +6913,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
6898
6913
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
6899
6914
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
6900
6915
|
closeDialog: (result?: any) => void;
|
|
6901
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
6916
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
6902
6917
|
changeEmitedValue: (value: any) => void;
|
|
6903
6918
|
addSubFormItem: (item: {
|
|
6904
6919
|
id: string;
|
|
@@ -7338,7 +7353,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7338
7353
|
} & {
|
|
7339
7354
|
focus: () => void;
|
|
7340
7355
|
blur: () => void;
|
|
7341
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
7356
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
7357
|
+
name?: string | undefined;
|
|
7342
7358
|
extraName?: string | undefined;
|
|
7343
7359
|
required?: boolean | undefined;
|
|
7344
7360
|
unique?: boolean | undefined;
|
|
@@ -7407,7 +7423,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7407
7423
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7408
7424
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
7409
7425
|
closeDialog: (result?: any) => void;
|
|
7410
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
7426
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
7411
7427
|
changeEmitedValue: (value: any) => void;
|
|
7412
7428
|
addSubFormItem: (item: {
|
|
7413
7429
|
id: string;
|
|
@@ -7856,7 +7872,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7856
7872
|
} & {
|
|
7857
7873
|
focus: () => void;
|
|
7858
7874
|
blur: () => void;
|
|
7859
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
7875
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
7876
|
+
name?: string | undefined;
|
|
7860
7877
|
extraName?: string | undefined;
|
|
7861
7878
|
required?: boolean | undefined;
|
|
7862
7879
|
unique?: boolean | undefined;
|
|
@@ -7925,7 +7942,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
7925
7942
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
7926
7943
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
7927
7944
|
closeDialog: (result?: any) => void;
|
|
7928
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
7945
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
7929
7946
|
changeEmitedValue: (value: any) => void;
|
|
7930
7947
|
addSubFormItem: (item: {
|
|
7931
7948
|
id: string;
|
|
@@ -8365,7 +8382,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8365
8382
|
} & {
|
|
8366
8383
|
focus: () => void;
|
|
8367
8384
|
blur: () => void;
|
|
8368
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
8385
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
8386
|
+
name?: string | undefined;
|
|
8369
8387
|
extraName?: string | undefined;
|
|
8370
8388
|
required?: boolean | undefined;
|
|
8371
8389
|
unique?: boolean | undefined;
|
|
@@ -8434,7 +8452,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8434
8452
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8435
8453
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
8436
8454
|
closeDialog: (result?: any) => void;
|
|
8437
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
8455
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8438
8456
|
changeEmitedValue: (value: any) => void;
|
|
8439
8457
|
addSubFormItem: (item: {
|
|
8440
8458
|
id: string;
|
|
@@ -8878,7 +8896,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8878
8896
|
} & {
|
|
8879
8897
|
focus: () => void;
|
|
8880
8898
|
blur: () => void;
|
|
8881
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
8899
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
8900
|
+
name?: string | undefined;
|
|
8882
8901
|
extraName?: string | undefined;
|
|
8883
8902
|
required?: boolean | undefined;
|
|
8884
8903
|
unique?: boolean | undefined;
|
|
@@ -8947,7 +8966,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
8947
8966
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
8948
8967
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
8949
8968
|
closeDialog: (result?: any) => void;
|
|
8950
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
8969
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
8951
8970
|
changeEmitedValue: (value: any) => void;
|
|
8952
8971
|
addSubFormItem: (item: {
|
|
8953
8972
|
id: string;
|
|
@@ -9387,7 +9406,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9387
9406
|
} & {
|
|
9388
9407
|
focus: () => void;
|
|
9389
9408
|
blur: () => void;
|
|
9390
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
9409
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
9410
|
+
name?: string | undefined;
|
|
9391
9411
|
extraName?: string | undefined;
|
|
9392
9412
|
required?: boolean | undefined;
|
|
9393
9413
|
unique?: boolean | undefined;
|
|
@@ -9456,7 +9476,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9456
9476
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9457
9477
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
9458
9478
|
closeDialog: (result?: any) => void;
|
|
9459
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
9479
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
9460
9480
|
changeEmitedValue: (value: any) => void;
|
|
9461
9481
|
addSubFormItem: (item: {
|
|
9462
9482
|
id: string;
|
|
@@ -9900,7 +9920,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9900
9920
|
} & {
|
|
9901
9921
|
focus: () => void;
|
|
9902
9922
|
blur: () => void;
|
|
9903
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
9923
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
9924
|
+
name?: string | undefined;
|
|
9904
9925
|
extraName?: string | undefined;
|
|
9905
9926
|
required?: boolean | undefined;
|
|
9906
9927
|
unique?: boolean | undefined;
|
|
@@ -9969,7 +9990,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
9969
9990
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
9970
9991
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
9971
9992
|
closeDialog: (result?: any) => void;
|
|
9972
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
9993
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
9973
9994
|
changeEmitedValue: (value: any) => void;
|
|
9974
9995
|
addSubFormItem: (item: {
|
|
9975
9996
|
id: string;
|
|
@@ -10409,7 +10430,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10409
10430
|
} & {
|
|
10410
10431
|
focus: () => void;
|
|
10411
10432
|
blur: () => void;
|
|
10412
|
-
config: ({ extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
10433
|
+
config: ({ name, extraName, required, unique, value, isValueSchemaExp, rules, messages, delimiter, multiple, valueField, labelField, joinValues, extractValue, type, id, selectFirst, autoFill, clearValueOnHidden, validateApi, maxLength, minLength, validateOnChange, label, inputGroupControl, pagination }: {
|
|
10434
|
+
name?: string | undefined;
|
|
10413
10435
|
extraName?: string | undefined;
|
|
10414
10436
|
required?: boolean | undefined;
|
|
10415
10437
|
unique?: boolean | undefined;
|
|
@@ -10478,7 +10500,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
10478
10500
|
resetValidationStatus: (tag?: string | undefined) => void;
|
|
10479
10501
|
openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
|
|
10480
10502
|
closeDialog: (result?: any) => void;
|
|
10481
|
-
changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" |
|
|
10503
|
+
changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
|
|
10482
10504
|
changeEmitedValue: (value: any) => void;
|
|
10483
10505
|
addSubFormItem: (item: {
|
|
10484
10506
|
id: string;
|
|
@@ -11421,7 +11443,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11421
11443
|
markLoaded(value: any): void;
|
|
11422
11444
|
setError(value: any): void;
|
|
11423
11445
|
resetDefered(): void;
|
|
11424
|
-
|
|
11446
|
+
updateData({ children, ...rest }: any): void;
|
|
11425
11447
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11426
11448
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11427
11449
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -11480,7 +11502,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11480
11502
|
markLoaded(value: any): void;
|
|
11481
11503
|
setError(value: any): void;
|
|
11482
11504
|
resetDefered(): void;
|
|
11483
|
-
|
|
11505
|
+
updateData({ children, ...rest }: any): void;
|
|
11484
11506
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
11485
11507
|
readonly unSelectedRows: ({
|
|
11486
11508
|
storeType: string;
|
|
@@ -11540,7 +11562,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11540
11562
|
markLoaded(value: any): void;
|
|
11541
11563
|
setError(value: any): void;
|
|
11542
11564
|
resetDefered(): void;
|
|
11543
|
-
|
|
11565
|
+
updateData({ children, ...rest }: any): void;
|
|
11544
11566
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11545
11567
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11546
11568
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -11599,7 +11621,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11599
11621
|
markLoaded(value: any): void;
|
|
11600
11622
|
setError(value: any): void;
|
|
11601
11623
|
resetDefered(): void;
|
|
11602
|
-
|
|
11624
|
+
updateData({ children, ...rest }: any): void;
|
|
11603
11625
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
11604
11626
|
readonly falttenedRows: ({
|
|
11605
11627
|
storeType: string;
|
|
@@ -11659,7 +11681,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11659
11681
|
markLoaded(value: any): void;
|
|
11660
11682
|
setError(value: any): void;
|
|
11661
11683
|
resetDefered(): void;
|
|
11662
|
-
|
|
11684
|
+
updateData({ children, ...rest }: any): void;
|
|
11663
11685
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11664
11686
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11665
11687
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -11718,7 +11740,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11718
11740
|
markLoaded(value: any): void;
|
|
11719
11741
|
setError(value: any): void;
|
|
11720
11742
|
resetDefered(): void;
|
|
11721
|
-
|
|
11743
|
+
updateData({ children, ...rest }: any): void;
|
|
11722
11744
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
11723
11745
|
readonly checkableRows: ({
|
|
11724
11746
|
storeType: string;
|
|
@@ -11778,7 +11800,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11778
11800
|
markLoaded(value: any): void;
|
|
11779
11801
|
setError(value: any): void;
|
|
11780
11802
|
resetDefered(): void;
|
|
11781
|
-
|
|
11803
|
+
updateData({ children, ...rest }: any): void;
|
|
11782
11804
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11783
11805
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11784
11806
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -11837,7 +11859,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11837
11859
|
markLoaded(value: any): void;
|
|
11838
11860
|
setError(value: any): void;
|
|
11839
11861
|
resetDefered(): void;
|
|
11840
|
-
|
|
11862
|
+
updateData({ children, ...rest }: any): void;
|
|
11841
11863
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
11842
11864
|
readonly expandableRows: ({
|
|
11843
11865
|
storeType: string;
|
|
@@ -11897,7 +11919,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11897
11919
|
markLoaded(value: any): void;
|
|
11898
11920
|
setError(value: any): void;
|
|
11899
11921
|
resetDefered(): void;
|
|
11900
|
-
|
|
11922
|
+
updateData({ children, ...rest }: any): void;
|
|
11901
11923
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
11902
11924
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
11903
11925
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -11956,7 +11978,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
11956
11978
|
markLoaded(value: any): void;
|
|
11957
11979
|
setError(value: any): void;
|
|
11958
11980
|
resetDefered(): void;
|
|
11959
|
-
|
|
11981
|
+
updateData({ children, ...rest }: any): void;
|
|
11960
11982
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
11961
11983
|
readonly moved: number;
|
|
11962
11984
|
readonly movedRows: (import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
|
|
@@ -12059,7 +12081,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12059
12081
|
markLoaded(value: any): void;
|
|
12060
12082
|
setError(value: any): void;
|
|
12061
12083
|
resetDefered(): void;
|
|
12062
|
-
|
|
12084
|
+
updateData({ children, ...rest }: any): void;
|
|
12063
12085
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12064
12086
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12065
12087
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12118,7 +12140,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12118
12140
|
markLoaded(value: any): void;
|
|
12119
12141
|
setError(value: any): void;
|
|
12120
12142
|
resetDefered(): void;
|
|
12121
|
-
|
|
12143
|
+
updateData({ children, ...rest }: any): void;
|
|
12122
12144
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>))[];
|
|
12123
12145
|
readonly hoverRow: ({
|
|
12124
12146
|
storeType: string;
|
|
@@ -12178,7 +12200,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12178
12200
|
markLoaded(value: any): void;
|
|
12179
12201
|
setError(value: any): void;
|
|
12180
12202
|
resetDefered(): void;
|
|
12181
|
-
|
|
12203
|
+
updateData({ children, ...rest }: any): void;
|
|
12182
12204
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12183
12205
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12184
12206
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12237,7 +12259,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12237
12259
|
markLoaded(value: any): void;
|
|
12238
12260
|
setError(value: any): void;
|
|
12239
12261
|
resetDefered(): void;
|
|
12240
|
-
|
|
12262
|
+
updateData({ children, ...rest }: any): void;
|
|
12241
12263
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
|
|
12242
12264
|
/** 已选择item是否达到数量上限 */
|
|
12243
12265
|
readonly isSelectionThresholdReached: boolean;
|
|
@@ -12355,7 +12377,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12355
12377
|
markLoaded(value: any): void;
|
|
12356
12378
|
setError(value: any): void;
|
|
12357
12379
|
resetDefered(): void;
|
|
12358
|
-
|
|
12380
|
+
updateData({ children, ...rest }: any): void;
|
|
12359
12381
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12360
12382
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12361
12383
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12414,7 +12436,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12414
12436
|
markLoaded(value: any): void;
|
|
12415
12437
|
setError(value: any): void;
|
|
12416
12438
|
resetDefered(): void;
|
|
12417
|
-
|
|
12439
|
+
updateData({ children, ...rest }: any): void;
|
|
12418
12440
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | null;
|
|
12419
12441
|
getItemsByName(name: string): any;
|
|
12420
12442
|
hasColumnHidden(): boolean;
|
|
@@ -12476,7 +12498,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12476
12498
|
markLoaded(value: any): void;
|
|
12477
12499
|
setError(value: any): void;
|
|
12478
12500
|
resetDefered(): void;
|
|
12479
|
-
|
|
12501
|
+
updateData({ children, ...rest }: any): void;
|
|
12480
12502
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12481
12503
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12482
12504
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12535,7 +12557,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12535
12557
|
markLoaded(value: any): void;
|
|
12536
12558
|
setError(value: any): void;
|
|
12537
12559
|
resetDefered(): void;
|
|
12538
|
-
|
|
12560
|
+
updateData({ children, ...rest }: any): void;
|
|
12539
12561
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
12540
12562
|
readonly columnWidthReady: boolean;
|
|
12541
12563
|
getStickyStyles(column: IColumn, columns: Array<IColumn>): any[];
|
|
@@ -12597,7 +12619,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12597
12619
|
markLoaded(value: any): void;
|
|
12598
12620
|
setError(value: any): void;
|
|
12599
12621
|
resetDefered(): void;
|
|
12600
|
-
|
|
12622
|
+
updateData({ children, ...rest }: any): void;
|
|
12601
12623
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12602
12624
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12603
12625
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12656,7 +12678,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12656
12678
|
markLoaded(value: any): void;
|
|
12657
12679
|
setError(value: any): void;
|
|
12658
12680
|
resetDefered(): void;
|
|
12659
|
-
|
|
12681
|
+
updateData({ children, ...rest }: any): void;
|
|
12660
12682
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
12661
12683
|
buildStyles(style: any): any;
|
|
12662
12684
|
} & {
|
|
@@ -12729,7 +12751,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12729
12751
|
markLoaded(value: any): void;
|
|
12730
12752
|
setError(value: any): void;
|
|
12731
12753
|
resetDefered(): void;
|
|
12732
|
-
|
|
12754
|
+
updateData({ children, ...rest }: any): void;
|
|
12733
12755
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12734
12756
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12735
12757
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12788,7 +12810,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12788
12810
|
markLoaded(value: any): void;
|
|
12789
12811
|
setError(value: any): void;
|
|
12790
12812
|
resetDefered(): void;
|
|
12791
|
-
|
|
12813
|
+
updateData({ children, ...rest }: any): void;
|
|
12792
12814
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
12793
12815
|
toggle: (row: IRow, checked: boolean) => void;
|
|
12794
12816
|
toggleAncestors: (row: IRow) => void;
|
|
@@ -12852,7 +12874,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12852
12874
|
markLoaded(value: any): void;
|
|
12853
12875
|
setError(value: any): void;
|
|
12854
12876
|
resetDefered(): void;
|
|
12855
|
-
|
|
12877
|
+
updateData({ children, ...rest }: any): void;
|
|
12856
12878
|
} & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
|
|
12857
12879
|
storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
|
|
12858
12880
|
id: import("mobx-state-tree").ISimpleType<string>;
|
|
@@ -12911,7 +12933,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
|
|
|
12911
12933
|
markLoaded(value: any): void;
|
|
12912
12934
|
setError(value: any): void;
|
|
12913
12935
|
resetDefered(): void;
|
|
12914
|
-
|
|
12936
|
+
updateData({ children, ...rest }: any): void;
|
|
12915
12937
|
}, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
|
|
12916
12938
|
toggleExpandAll: () => void;
|
|
12917
12939
|
toggleExpanded: (row: IRow) => void;
|