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.
Files changed (307) hide show
  1. package/esm/Root.js +2 -2
  2. package/esm/RootRenderer.js +4 -3
  3. package/esm/SchemaRenderer.js +5 -2
  4. package/esm/Scoped.d.ts +6 -0
  5. package/esm/Scoped.js +47 -8
  6. package/esm/StatusScoped.js +2 -2
  7. package/esm/WithRootStore.js +2 -2
  8. package/esm/WithStore.js +4 -6
  9. package/esm/actions/Action.js +2 -2
  10. package/esm/actions/AjaxAction.js +2 -2
  11. package/esm/actions/BreakAction.js +2 -2
  12. package/esm/actions/BroadcastAction.js +2 -2
  13. package/esm/actions/CmptAction.js +2 -2
  14. package/esm/actions/ContinueAction.js +2 -2
  15. package/esm/actions/CopyAction.js +2 -2
  16. package/esm/actions/CustomAction.js +3 -3
  17. package/esm/actions/DialogAction.js +2 -2
  18. package/esm/actions/DrawerAction.js +2 -2
  19. package/esm/actions/EmailAction.js +2 -2
  20. package/esm/actions/LinkAction.js +10 -5
  21. package/esm/actions/LoopAction.js +2 -2
  22. package/esm/actions/PageAction.js +2 -2
  23. package/esm/actions/ParallelAction.js +2 -2
  24. package/esm/actions/PrintAction.d.ts +19 -0
  25. package/esm/actions/PrintAction.js +49 -0
  26. package/esm/actions/StatusAction.js +2 -2
  27. package/esm/actions/SwitchAction.js +2 -2
  28. package/esm/actions/ToastAction.js +2 -2
  29. package/esm/actions/index.d.ts +1 -0
  30. package/esm/components/CustomStyle.d.ts +1 -2
  31. package/esm/components/CustomStyle.js +20 -7
  32. package/esm/components/ErrorBoundary.js +2 -2
  33. package/esm/components/LazyComponent.js +2 -2
  34. package/esm/components/Overlay.js +11 -9
  35. package/esm/components/PopOver.js +7 -5
  36. package/esm/env.d.ts +4 -0
  37. package/esm/env.js +2 -2
  38. package/esm/envOverwrite.js +2 -2
  39. package/esm/factory.js +15 -2
  40. package/esm/index.d.ts +3 -2
  41. package/esm/index.js +16 -9
  42. package/esm/locale.js +2 -2
  43. package/esm/polyfills.js +2 -2
  44. package/esm/renderers/Form.d.ts +4 -3
  45. package/esm/renderers/Form.js +97 -45
  46. package/esm/renderers/Item.d.ts +1 -0
  47. package/esm/renderers/Item.js +15 -16
  48. package/esm/renderers/Options.d.ts +5 -0
  49. package/esm/renderers/Options.js +27 -10
  50. package/esm/renderers/Placeholder.js +2 -2
  51. package/esm/renderers/builtin.js +2 -2
  52. package/esm/renderers/register.js +2 -2
  53. package/esm/renderers/wrapControl.js +37 -29
  54. package/esm/store/app.js +3 -3
  55. package/esm/store/combo.d.ts +48 -24
  56. package/esm/store/combo.js +2 -2
  57. package/esm/store/crud.js +2 -2
  58. package/esm/store/form.d.ts +20 -10
  59. package/esm/store/form.js +2 -2
  60. package/esm/store/formItem.d.ts +2 -1
  61. package/esm/store/formItem.js +4 -3
  62. package/esm/store/iRenderer.js +5 -3
  63. package/esm/store/index.js +2 -2
  64. package/esm/store/list.d.ts +11 -0
  65. package/esm/store/list.js +9 -2
  66. package/esm/store/manager.js +2 -2
  67. package/esm/store/modal.js +2 -2
  68. package/esm/store/node.js +2 -2
  69. package/esm/store/pagination.js +2 -2
  70. package/esm/store/root.js +3 -3
  71. package/esm/store/service.js +6 -3
  72. package/esm/store/status.js +2 -2
  73. package/esm/store/table.d.ts +70 -47
  74. package/esm/store/table.js +40 -24
  75. package/esm/store/table2.js +2 -2
  76. package/esm/theme.js +2 -2
  77. package/esm/utils/Animation.js +2 -2
  78. package/esm/utils/ColorScale.js +2 -2
  79. package/esm/utils/DataSchema.js +2 -2
  80. package/esm/utils/DataScope.js +2 -2
  81. package/esm/utils/RootClose.js +2 -2
  82. package/esm/utils/SimpleMap.js +2 -2
  83. package/esm/utils/api.js +4 -3
  84. package/esm/utils/arraySlice.js +2 -2
  85. package/esm/utils/attachmentAdpator.js +4 -3
  86. package/esm/utils/autobind.js +2 -2
  87. package/esm/utils/browser.d.ts +1 -0
  88. package/esm/utils/browser.js +8 -3
  89. package/esm/utils/columnsSplit.js +2 -2
  90. package/esm/utils/concatData.js +2 -2
  91. package/esm/utils/dataMapping.js +2 -2
  92. package/esm/utils/date.js +2 -2
  93. package/esm/utils/debug.js +2 -2
  94. package/esm/utils/decodeEntity.js +2 -2
  95. package/esm/utils/dom.js +8 -3
  96. package/esm/utils/errors.js +2 -2
  97. package/esm/utils/escapeHtml.js +2 -2
  98. package/esm/utils/filter-schema.js +2 -2
  99. package/esm/utils/filter.js +2 -2
  100. package/esm/utils/formatDuration.js +2 -2
  101. package/esm/utils/formula.js +2 -2
  102. package/esm/utils/getVariable.js +2 -2
  103. package/esm/utils/grammar.js +2 -2
  104. package/esm/utils/handleAction.js +2 -2
  105. package/esm/utils/helper.d.ts +8 -1
  106. package/esm/utils/helper.js +28 -10
  107. package/esm/utils/highlight.js +4 -3
  108. package/esm/utils/icon.js +2 -2
  109. package/esm/utils/image.js +2 -2
  110. package/esm/utils/index.d.ts +1 -0
  111. package/esm/utils/isPureVariable.js +2 -2
  112. package/esm/utils/json-schema-2-amis-schema.js +2 -2
  113. package/esm/utils/keyToPath.js +2 -2
  114. package/esm/utils/labelToString.d.ts +1 -0
  115. package/esm/utils/labelToString.js +38 -0
  116. package/esm/utils/makeSorter.js +2 -2
  117. package/esm/utils/math.js +2 -2
  118. package/esm/utils/memoryParse.js +2 -2
  119. package/esm/utils/normalizeLink.js +2 -2
  120. package/esm/utils/normalizeOptions.js +2 -2
  121. package/esm/utils/object.js +2 -2
  122. package/esm/utils/offset.js +2 -2
  123. package/esm/utils/offsetParent.js +2 -2
  124. package/esm/utils/optionValueCompare.js +2 -2
  125. package/esm/utils/position.js +2 -2
  126. package/esm/utils/prettyBytes.js +2 -2
  127. package/esm/utils/printElement.d.ts +6 -0
  128. package/esm/utils/printElement.js +71 -0
  129. package/esm/utils/renderer-event.js +2 -2
  130. package/esm/utils/replaceText.js +10 -12
  131. package/esm/utils/resize-sensor.js +2 -2
  132. package/esm/utils/resolveCondition.js +2 -2
  133. package/esm/utils/resolveVariable.js +2 -2
  134. package/esm/utils/resolveVariableAndFilter.js +2 -2
  135. package/esm/utils/resolveVariableAndFilterForAsync.js +2 -2
  136. package/esm/utils/scrollPosition.js +2 -2
  137. package/esm/utils/string2regExp.d.ts +1 -1
  138. package/esm/utils/string2regExp.js +5 -4
  139. package/esm/utils/stripNumber.js +2 -2
  140. package/esm/utils/style-helper.d.ts +24 -5
  141. package/esm/utils/style-helper.js +47 -17
  142. package/esm/utils/style.js +2 -2
  143. package/esm/utils/toNumber.js +2 -2
  144. package/esm/utils/tokenize.d.ts +1 -0
  145. package/esm/utils/tokenize.js +11 -4
  146. package/esm/utils/tpl-builtin.js +2 -2
  147. package/esm/utils/tpl-lodash.js +2 -2
  148. package/esm/utils/tpl.js +7 -9
  149. package/esm/utils/uncontrollable.js +2 -2
  150. package/esm/utils/validateId.d.ts +16 -0
  151. package/esm/utils/validateId.js +154 -0
  152. package/esm/utils/validations.js +17 -9
  153. package/lib/Root.js +2 -2
  154. package/lib/RootRenderer.d.ts +1 -1
  155. package/lib/RootRenderer.js +4 -3
  156. package/lib/SchemaRenderer.js +5 -2
  157. package/lib/Scoped.d.ts +6 -0
  158. package/lib/Scoped.js +47 -7
  159. package/lib/StatusScoped.js +2 -2
  160. package/lib/WithRootStore.js +2 -2
  161. package/lib/WithStore.js +4 -6
  162. package/lib/actions/Action.js +2 -2
  163. package/lib/actions/AjaxAction.js +2 -2
  164. package/lib/actions/BreakAction.js +2 -2
  165. package/lib/actions/BroadcastAction.js +2 -2
  166. package/lib/actions/CmptAction.js +2 -2
  167. package/lib/actions/ContinueAction.js +2 -2
  168. package/lib/actions/CopyAction.js +2 -2
  169. package/lib/actions/CustomAction.js +3 -3
  170. package/lib/actions/DialogAction.js +2 -2
  171. package/lib/actions/DrawerAction.js +2 -2
  172. package/lib/actions/EmailAction.js +2 -2
  173. package/lib/actions/LinkAction.js +10 -5
  174. package/lib/actions/LoopAction.js +2 -2
  175. package/lib/actions/PageAction.js +2 -2
  176. package/lib/actions/ParallelAction.js +2 -2
  177. package/lib/actions/PrintAction.d.ts +19 -0
  178. package/lib/actions/PrintAction.js +53 -0
  179. package/lib/actions/StatusAction.js +2 -2
  180. package/lib/actions/SwitchAction.js +2 -2
  181. package/lib/actions/ToastAction.js +2 -2
  182. package/lib/actions/index.d.ts +1 -0
  183. package/lib/components/CustomStyle.d.ts +1 -2
  184. package/lib/components/CustomStyle.js +20 -7
  185. package/lib/components/ErrorBoundary.js +2 -2
  186. package/lib/components/LazyComponent.js +2 -2
  187. package/lib/components/Overlay.js +10 -8
  188. package/lib/components/PopOver.js +7 -5
  189. package/lib/env.d.ts +4 -0
  190. package/lib/env.js +2 -2
  191. package/lib/envOverwrite.js +2 -2
  192. package/lib/factory.js +15 -2
  193. package/lib/index.d.ts +3 -2
  194. package/lib/index.js +19 -5
  195. package/lib/locale.js +2 -2
  196. package/lib/polyfills.js +2 -2
  197. package/lib/renderers/Form.d.ts +4 -3
  198. package/lib/renderers/Form.js +96 -44
  199. package/lib/renderers/Item.d.ts +1 -0
  200. package/lib/renderers/Item.js +15 -16
  201. package/lib/renderers/Options.d.ts +5 -0
  202. package/lib/renderers/Options.js +27 -10
  203. package/lib/renderers/Placeholder.js +2 -2
  204. package/lib/renderers/builtin.js +2 -2
  205. package/lib/renderers/register.js +2 -2
  206. package/lib/renderers/wrapControl.js +36 -28
  207. package/lib/store/app.js +3 -3
  208. package/lib/store/combo.d.ts +72 -48
  209. package/lib/store/combo.js +2 -2
  210. package/lib/store/crud.js +2 -2
  211. package/lib/store/form.d.ts +30 -20
  212. package/lib/store/form.js +2 -2
  213. package/lib/store/formItem.d.ts +2 -1
  214. package/lib/store/formItem.js +4 -3
  215. package/lib/store/iRenderer.js +5 -3
  216. package/lib/store/index.js +2 -2
  217. package/lib/store/list.d.ts +11 -0
  218. package/lib/store/list.js +9 -2
  219. package/lib/store/manager.js +2 -2
  220. package/lib/store/modal.js +2 -2
  221. package/lib/store/node.js +2 -2
  222. package/lib/store/pagination.js +2 -2
  223. package/lib/store/root.js +3 -3
  224. package/lib/store/service.js +6 -3
  225. package/lib/store/status.js +2 -2
  226. package/lib/store/table.d.ts +90 -68
  227. package/lib/store/table.js +40 -24
  228. package/lib/store/table2.js +2 -2
  229. package/lib/theme.js +2 -2
  230. package/lib/utils/Animation.js +2 -2
  231. package/lib/utils/ColorScale.js +2 -2
  232. package/lib/utils/DataSchema.js +2 -2
  233. package/lib/utils/DataScope.js +2 -2
  234. package/lib/utils/RootClose.js +2 -2
  235. package/lib/utils/SimpleMap.js +2 -2
  236. package/lib/utils/api.js +4 -3
  237. package/lib/utils/arraySlice.js +2 -2
  238. package/lib/utils/attachmentAdpator.js +4 -3
  239. package/lib/utils/autobind.js +2 -2
  240. package/lib/utils/browser.d.ts +1 -0
  241. package/lib/utils/browser.js +8 -2
  242. package/lib/utils/columnsSplit.js +2 -2
  243. package/lib/utils/concatData.js +2 -2
  244. package/lib/utils/dataMapping.js +2 -2
  245. package/lib/utils/date.js +2 -2
  246. package/lib/utils/debug.js +2 -2
  247. package/lib/utils/decodeEntity.js +2 -2
  248. package/lib/utils/dom.js +8 -3
  249. package/lib/utils/errors.js +2 -2
  250. package/lib/utils/escapeHtml.js +2 -2
  251. package/lib/utils/filter-schema.js +2 -2
  252. package/lib/utils/filter.js +2 -2
  253. package/lib/utils/formatDuration.js +2 -2
  254. package/lib/utils/formula.js +2 -2
  255. package/lib/utils/getVariable.js +2 -2
  256. package/lib/utils/grammar.js +2 -2
  257. package/lib/utils/handleAction.js +2 -2
  258. package/lib/utils/helper.d.ts +8 -1
  259. package/lib/utils/helper.js +29 -8
  260. package/lib/utils/highlight.js +4 -3
  261. package/lib/utils/icon.js +2 -2
  262. package/lib/utils/image.js +2 -2
  263. package/lib/utils/index.d.ts +1 -0
  264. package/lib/utils/isPureVariable.js +2 -2
  265. package/lib/utils/json-schema-2-amis-schema.js +2 -2
  266. package/lib/utils/keyToPath.js +2 -2
  267. package/lib/utils/labelToString.d.ts +1 -0
  268. package/lib/utils/labelToString.js +46 -0
  269. package/lib/utils/makeSorter.js +2 -2
  270. package/lib/utils/math.js +2 -2
  271. package/lib/utils/memoryParse.js +2 -2
  272. package/lib/utils/normalizeLink.js +2 -2
  273. package/lib/utils/normalizeOptions.js +2 -2
  274. package/lib/utils/object.js +2 -2
  275. package/lib/utils/offset.js +2 -2
  276. package/lib/utils/offsetParent.js +2 -2
  277. package/lib/utils/optionValueCompare.js +2 -2
  278. package/lib/utils/position.js +2 -2
  279. package/lib/utils/prettyBytes.js +2 -2
  280. package/lib/utils/printElement.d.ts +6 -0
  281. package/lib/utils/printElement.js +75 -0
  282. package/lib/utils/renderer-event.js +2 -2
  283. package/lib/utils/replaceText.js +9 -15
  284. package/lib/utils/resize-sensor.js +2 -2
  285. package/lib/utils/resolveCondition.js +2 -2
  286. package/lib/utils/resolveVariable.js +2 -2
  287. package/lib/utils/resolveVariableAndFilter.js +2 -2
  288. package/lib/utils/resolveVariableAndFilterForAsync.js +2 -2
  289. package/lib/utils/scrollPosition.js +2 -2
  290. package/lib/utils/string2regExp.d.ts +1 -1
  291. package/lib/utils/string2regExp.js +5 -4
  292. package/lib/utils/stripNumber.js +2 -2
  293. package/lib/utils/style-helper.d.ts +24 -5
  294. package/lib/utils/style-helper.js +47 -17
  295. package/lib/utils/style.js +2 -2
  296. package/lib/utils/toNumber.js +2 -2
  297. package/lib/utils/tokenize.d.ts +1 -0
  298. package/lib/utils/tokenize.js +11 -3
  299. package/lib/utils/tpl-builtin.js +2 -2
  300. package/lib/utils/tpl-lodash.js +2 -2
  301. package/lib/utils/tpl.js +6 -8
  302. package/lib/utils/uncontrollable.js +2 -2
  303. package/lib/utils/validateId.d.ts +16 -0
  304. package/lib/utils/validateId.js +160 -0
  305. package/lib/utils/validations.js +17 -9
  306. package/package.json +4 -9
  307. package/LICENSE +0 -201
@@ -1,6 +1,6 @@
1
1
  /**
2
- * amis-core v6.0.0
3
- * Copyright 2018-2023 fex
2
+ * amis-core v6.2.0
3
+ * Copyright 2018-2024 fex
4
4
  */
5
5
 
6
6
  import { __generator, __assign } from 'tslib';
@@ -11,6 +11,8 @@ import { ServerError } from '../utils/errors.js';
11
11
  import { normalizeApiResponseData } from '../utils/api.js';
12
12
  import { replaceText } from '../utils/replaceText.js';
13
13
  import { concatData } from '../utils/concatData.js';
14
+ import { envOverwrite } from '../envOverwrite.js';
15
+ import { filter } from 'amis-core';
14
16
  import { isObject, extendObject } from '../utils/object.js';
15
17
 
16
18
  var ServiceStore = iRendererStore
@@ -56,7 +58,7 @@ var ServiceStore = iRendererStore
56
58
  }
57
59
  function updateMessage(msg, error) {
58
60
  if (error === void 0) { error = false; }
59
- self.msg = (msg && String(msg)) || '';
61
+ self.msg = (msg && filter(msg, self.data)) || '';
60
62
  self.error = error;
61
63
  }
62
64
  function clearMessage() {
@@ -336,6 +338,7 @@ var ServiceStore = iRendererStore
336
338
  else {
337
339
  if (json.data) {
338
340
  env = getEnv(self);
341
+ json.data = envOverwrite(json.data, env.locale);
339
342
  json.data = replaceText(json.data, env.replaceText, env.replaceTextIgnoreKeys);
340
343
  self.schema = Array.isArray(json.data)
341
344
  ? json.data
@@ -1,6 +1,6 @@
1
1
  /**
2
- * amis-core v6.0.0
3
- * Copyright 2018-2023 fex
2
+ * amis-core v6.2.0
3
+ * Copyright 2018-2024 fex
4
4
  */
5
5
 
6
6
  import { __assign } from 'tslib';
@@ -101,7 +101,7 @@ export declare const Row: import("mobx-state-tree").IModelType<{
101
101
  markLoaded(value: any): void;
102
102
  setError(value: any): void;
103
103
  resetDefered(): void;
104
- setDeferData({ children, ...rest }: any): void;
104
+ updateData({ children, ...rest }: any): void;
105
105
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>;
106
106
  export type IRow = Instance<typeof Row>;
107
107
  export type SRow = SnapshotIn<typeof Row>;
@@ -159,6 +159,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
159
159
  setWidth(value: number): void;
160
160
  setRealWidth(value: number): void;
161
161
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
162
+ columnsKey: import("mobx-state-tree").IType<string | undefined, string, string>;
162
163
  rows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
163
164
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
164
165
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -217,7 +218,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
217
218
  markLoaded(value: any): void;
218
219
  setError(value: any): void;
219
220
  resetDefered(): void;
220
- setDeferData({ children, ...rest }: any): void;
221
+ updateData({ children, ...rest }: any): void;
221
222
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
222
223
  selectedRows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IReferenceType<import("mobx-state-tree").IModelType<{
223
224
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -277,7 +278,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
277
278
  markLoaded(value: any): void;
278
279
  setError(value: any): void;
279
280
  resetDefered(): void;
280
- setDeferData({ children, ...rest }: any): void;
281
+ updateData({ children, ...rest }: any): void;
281
282
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>>;
282
283
  expandedRows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").ISimpleType<string>>;
283
284
  primaryField: import("mobx-state-tree").IType<string | undefined, string, string>;
@@ -301,6 +302,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
301
302
  formsRef: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IType<any, any, any>>, [undefined]>;
302
303
  maxKeepItemSelectionLength: import("mobx-state-tree").IType<number | undefined, number, number>;
303
304
  keepItemSelectionOnPageChange: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
305
+ maxItemSelectionLength: import("mobx-state-tree").IType<number | undefined, number, number>;
304
306
  exportExcelLoading: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
305
307
  searchFormExpanded: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
306
308
  lazyRenderAfter: import("mobx-state-tree").IType<number | undefined, number, number>;
@@ -334,6 +336,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
334
336
  getDialogScoped(): import("..").IScopedContext | null;
335
337
  getDrawerScoped(): import("..").IScopedContext | null;
336
338
  } & {
339
+ getSelectionUpperLimit: () => number;
337
340
  readonly columnsData: ({
338
341
  label: any;
339
342
  type: string;
@@ -573,7 +576,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
573
576
  } & {
574
577
  focus: () => void;
575
578
  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 }: {
579
+ 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 }: {
580
+ name?: string | undefined;
577
581
  extraName?: string | undefined;
578
582
  required?: boolean | undefined;
579
583
  unique?: boolean | undefined;
@@ -1082,7 +1086,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1082
1086
  } & {
1083
1087
  focus: () => void;
1084
1088
  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 }: {
1089
+ 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 }: {
1090
+ name?: string | undefined;
1086
1091
  extraName?: string | undefined;
1087
1092
  required?: boolean | undefined;
1088
1093
  unique?: boolean | undefined;
@@ -1595,7 +1600,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1595
1600
  } & {
1596
1601
  focus: () => void;
1597
1602
  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 }: {
1603
+ 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 }: {
1604
+ name?: string | undefined;
1599
1605
  extraName?: string | undefined;
1600
1606
  required?: boolean | undefined;
1601
1607
  unique?: boolean | undefined;
@@ -2104,7 +2110,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2104
2110
  } & {
2105
2111
  focus: () => void;
2106
2112
  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 }: {
2113
+ 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 }: {
2114
+ name?: string | undefined;
2108
2115
  extraName?: string | undefined;
2109
2116
  required?: boolean | undefined;
2110
2117
  unique?: boolean | undefined;
@@ -2622,7 +2629,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2622
2629
  } & {
2623
2630
  focus: () => void;
2624
2631
  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 }: {
2632
+ 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 }: {
2633
+ name?: string | undefined;
2626
2634
  extraName?: string | undefined;
2627
2635
  required?: boolean | undefined;
2628
2636
  unique?: boolean | undefined;
@@ -3131,7 +3139,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3131
3139
  } & {
3132
3140
  focus: () => void;
3133
3141
  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 }: {
3142
+ 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 }: {
3143
+ name?: string | undefined;
3135
3144
  extraName?: string | undefined;
3136
3145
  required?: boolean | undefined;
3137
3146
  unique?: boolean | undefined;
@@ -3644,7 +3653,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3644
3653
  } & {
3645
3654
  focus: () => void;
3646
3655
  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 }: {
3656
+ 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 }: {
3657
+ name?: string | undefined;
3648
3658
  extraName?: string | undefined;
3649
3659
  required?: boolean | undefined;
3650
3660
  unique?: boolean | undefined;
@@ -4153,7 +4163,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4153
4163
  } & {
4154
4164
  focus: () => void;
4155
4165
  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 }: {
4166
+ 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 }: {
4167
+ name?: string | undefined;
4157
4168
  extraName?: string | undefined;
4158
4169
  required?: boolean | undefined;
4159
4170
  unique?: boolean | undefined;
@@ -4666,7 +4677,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4666
4677
  } & {
4667
4678
  focus: () => void;
4668
4679
  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 }: {
4680
+ 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 }: {
4681
+ name?: string | undefined;
4670
4682
  extraName?: string | undefined;
4671
4683
  required?: boolean | undefined;
4672
4684
  unique?: boolean | undefined;
@@ -5175,7 +5187,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5175
5187
  } & {
5176
5188
  focus: () => void;
5177
5189
  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 }: {
5190
+ 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 }: {
5191
+ name?: string | undefined;
5179
5192
  extraName?: string | undefined;
5180
5193
  required?: boolean | undefined;
5181
5194
  unique?: boolean | undefined;
@@ -5807,7 +5820,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5807
5820
  } & {
5808
5821
  focus: () => void;
5809
5822
  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 }: {
5823
+ 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 }: {
5824
+ name?: string | undefined;
5811
5825
  extraName?: string | undefined;
5812
5826
  required?: boolean | undefined;
5813
5827
  unique?: boolean | undefined;
@@ -6316,7 +6330,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6316
6330
  } & {
6317
6331
  focus: () => void;
6318
6332
  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 }: {
6333
+ 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 }: {
6334
+ name?: string | undefined;
6320
6335
  extraName?: string | undefined;
6321
6336
  required?: boolean | undefined;
6322
6337
  unique?: boolean | undefined;
@@ -6829,7 +6844,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6829
6844
  } & {
6830
6845
  focus: () => void;
6831
6846
  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 }: {
6847
+ 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 }: {
6848
+ name?: string | undefined;
6833
6849
  extraName?: string | undefined;
6834
6850
  required?: boolean | undefined;
6835
6851
  unique?: boolean | undefined;
@@ -7338,7 +7354,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7338
7354
  } & {
7339
7355
  focus: () => void;
7340
7356
  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 }: {
7357
+ 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 }: {
7358
+ name?: string | undefined;
7342
7359
  extraName?: string | undefined;
7343
7360
  required?: boolean | undefined;
7344
7361
  unique?: boolean | undefined;
@@ -7856,7 +7873,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7856
7873
  } & {
7857
7874
  focus: () => void;
7858
7875
  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 }: {
7876
+ 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 }: {
7877
+ name?: string | undefined;
7860
7878
  extraName?: string | undefined;
7861
7879
  required?: boolean | undefined;
7862
7880
  unique?: boolean | undefined;
@@ -8365,7 +8383,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8365
8383
  } & {
8366
8384
  focus: () => void;
8367
8385
  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 }: {
8386
+ 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 }: {
8387
+ name?: string | undefined;
8369
8388
  extraName?: string | undefined;
8370
8389
  required?: boolean | undefined;
8371
8390
  unique?: boolean | undefined;
@@ -8878,7 +8897,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8878
8897
  } & {
8879
8898
  focus: () => void;
8880
8899
  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 }: {
8900
+ 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 }: {
8901
+ name?: string | undefined;
8882
8902
  extraName?: string | undefined;
8883
8903
  required?: boolean | undefined;
8884
8904
  unique?: boolean | undefined;
@@ -9387,7 +9407,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9387
9407
  } & {
9388
9408
  focus: () => void;
9389
9409
  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 }: {
9410
+ 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 }: {
9411
+ name?: string | undefined;
9391
9412
  extraName?: string | undefined;
9392
9413
  required?: boolean | undefined;
9393
9414
  unique?: boolean | undefined;
@@ -9900,7 +9921,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9900
9921
  } & {
9901
9922
  focus: () => void;
9902
9923
  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 }: {
9924
+ 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 }: {
9925
+ name?: string | undefined;
9904
9926
  extraName?: string | undefined;
9905
9927
  required?: boolean | undefined;
9906
9928
  unique?: boolean | undefined;
@@ -10409,7 +10431,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10409
10431
  } & {
10410
10432
  focus: () => void;
10411
10433
  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 }: {
10434
+ 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 }: {
10435
+ name?: string | undefined;
10413
10436
  extraName?: string | undefined;
10414
10437
  required?: boolean | undefined;
10415
10438
  unique?: boolean | undefined;
@@ -11421,7 +11444,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11421
11444
  markLoaded(value: any): void;
11422
11445
  setError(value: any): void;
11423
11446
  resetDefered(): void;
11424
- setDeferData({ children, ...rest }: any): void;
11447
+ updateData({ children, ...rest }: any): void;
11425
11448
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
11426
11449
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
11427
11450
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -11480,7 +11503,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11480
11503
  markLoaded(value: any): void;
11481
11504
  setError(value: any): void;
11482
11505
  resetDefered(): void;
11483
- setDeferData({ children, ...rest }: any): void;
11506
+ updateData({ children, ...rest }: any): void;
11484
11507
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
11485
11508
  readonly unSelectedRows: ({
11486
11509
  storeType: string;
@@ -11540,7 +11563,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11540
11563
  markLoaded(value: any): void;
11541
11564
  setError(value: any): void;
11542
11565
  resetDefered(): void;
11543
- setDeferData({ children, ...rest }: any): void;
11566
+ updateData({ children, ...rest }: any): void;
11544
11567
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
11545
11568
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
11546
11569
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -11599,7 +11622,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11599
11622
  markLoaded(value: any): void;
11600
11623
  setError(value: any): void;
11601
11624
  resetDefered(): void;
11602
- setDeferData({ children, ...rest }: any): void;
11625
+ updateData({ children, ...rest }: any): void;
11603
11626
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
11604
11627
  readonly falttenedRows: ({
11605
11628
  storeType: string;
@@ -11659,7 +11682,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11659
11682
  markLoaded(value: any): void;
11660
11683
  setError(value: any): void;
11661
11684
  resetDefered(): void;
11662
- setDeferData({ children, ...rest }: any): void;
11685
+ updateData({ children, ...rest }: any): void;
11663
11686
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
11664
11687
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
11665
11688
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -11718,7 +11741,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11718
11741
  markLoaded(value: any): void;
11719
11742
  setError(value: any): void;
11720
11743
  resetDefered(): void;
11721
- setDeferData({ children, ...rest }: any): void;
11744
+ updateData({ children, ...rest }: any): void;
11722
11745
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
11723
11746
  readonly checkableRows: ({
11724
11747
  storeType: string;
@@ -11778,7 +11801,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11778
11801
  markLoaded(value: any): void;
11779
11802
  setError(value: any): void;
11780
11803
  resetDefered(): void;
11781
- setDeferData({ children, ...rest }: any): void;
11804
+ updateData({ children, ...rest }: any): void;
11782
11805
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
11783
11806
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
11784
11807
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -11837,7 +11860,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11837
11860
  markLoaded(value: any): void;
11838
11861
  setError(value: any): void;
11839
11862
  resetDefered(): void;
11840
- setDeferData({ children, ...rest }: any): void;
11863
+ updateData({ children, ...rest }: any): void;
11841
11864
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
11842
11865
  readonly expandableRows: ({
11843
11866
  storeType: string;
@@ -11897,7 +11920,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11897
11920
  markLoaded(value: any): void;
11898
11921
  setError(value: any): void;
11899
11922
  resetDefered(): void;
11900
- setDeferData({ children, ...rest }: any): void;
11923
+ updateData({ children, ...rest }: any): void;
11901
11924
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
11902
11925
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
11903
11926
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -11956,7 +11979,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11956
11979
  markLoaded(value: any): void;
11957
11980
  setError(value: any): void;
11958
11981
  resetDefered(): void;
11959
- setDeferData({ children, ...rest }: any): void;
11982
+ updateData({ children, ...rest }: any): void;
11960
11983
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
11961
11984
  readonly moved: number;
11962
11985
  readonly movedRows: (import("mobx-state-tree").ModelCreationType<import("mobx-state-tree/dist/internal").ExtractCFromProps<{
@@ -12059,7 +12082,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12059
12082
  markLoaded(value: any): void;
12060
12083
  setError(value: any): void;
12061
12084
  resetDefered(): void;
12062
- setDeferData({ children, ...rest }: any): void;
12085
+ updateData({ children, ...rest }: any): void;
12063
12086
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12064
12087
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12065
12088
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12118,7 +12141,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12118
12141
  markLoaded(value: any): void;
12119
12142
  setError(value: any): void;
12120
12143
  resetDefered(): void;
12121
- setDeferData({ children, ...rest }: any): void;
12144
+ updateData({ children, ...rest }: any): void;
12122
12145
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>))[];
12123
12146
  readonly hoverRow: ({
12124
12147
  storeType: string;
@@ -12178,7 +12201,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12178
12201
  markLoaded(value: any): void;
12179
12202
  setError(value: any): void;
12180
12203
  resetDefered(): void;
12181
- setDeferData({ children, ...rest }: any): void;
12204
+ updateData({ children, ...rest }: any): void;
12182
12205
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12183
12206
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12184
12207
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12237,7 +12260,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12237
12260
  markLoaded(value: any): void;
12238
12261
  setError(value: any): void;
12239
12262
  resetDefered(): void;
12240
- setDeferData({ children, ...rest }: any): void;
12263
+ updateData({ children, ...rest }: any): void;
12241
12264
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | undefined;
12242
12265
  /** 已选择item是否达到数量上限 */
12243
12266
  readonly isSelectionThresholdReached: boolean;
@@ -12355,7 +12378,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12355
12378
  markLoaded(value: any): void;
12356
12379
  setError(value: any): void;
12357
12380
  resetDefered(): void;
12358
- setDeferData({ children, ...rest }: any): void;
12381
+ updateData({ children, ...rest }: any): void;
12359
12382
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12360
12383
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12361
12384
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12414,7 +12437,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12414
12437
  markLoaded(value: any): void;
12415
12438
  setError(value: any): void;
12416
12439
  resetDefered(): void;
12417
- setDeferData({ children, ...rest }: any): void;
12440
+ updateData({ children, ...rest }: any): void;
12418
12441
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>) | null;
12419
12442
  getItemsByName(name: string): any;
12420
12443
  hasColumnHidden(): boolean;
@@ -12476,7 +12499,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12476
12499
  markLoaded(value: any): void;
12477
12500
  setError(value: any): void;
12478
12501
  resetDefered(): void;
12479
- setDeferData({ children, ...rest }: any): void;
12502
+ updateData({ children, ...rest }: any): void;
12480
12503
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12481
12504
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12482
12505
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12535,7 +12558,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12535
12558
  markLoaded(value: any): void;
12536
12559
  setError(value: any): void;
12537
12560
  resetDefered(): void;
12538
- setDeferData({ children, ...rest }: any): void;
12561
+ updateData({ children, ...rest }: any): void;
12539
12562
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
12540
12563
  readonly columnWidthReady: boolean;
12541
12564
  getStickyStyles(column: IColumn, columns: Array<IColumn>): any[];
@@ -12597,7 +12620,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12597
12620
  markLoaded(value: any): void;
12598
12621
  setError(value: any): void;
12599
12622
  resetDefered(): void;
12600
- setDeferData({ children, ...rest }: any): void;
12623
+ updateData({ children, ...rest }: any): void;
12601
12624
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12602
12625
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12603
12626
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12656,7 +12679,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12656
12679
  markLoaded(value: any): void;
12657
12680
  setError(value: any): void;
12658
12681
  resetDefered(): void;
12659
- setDeferData({ children, ...rest }: any): void;
12682
+ updateData({ children, ...rest }: any): void;
12660
12683
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
12661
12684
  buildStyles(style: any): any;
12662
12685
  } & {
@@ -12729,7 +12752,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12729
12752
  markLoaded(value: any): void;
12730
12753
  setError(value: any): void;
12731
12754
  resetDefered(): void;
12732
- setDeferData({ children, ...rest }: any): void;
12755
+ updateData({ children, ...rest }: any): void;
12733
12756
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12734
12757
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12735
12758
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12788,7 +12811,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12788
12811
  markLoaded(value: any): void;
12789
12812
  setError(value: any): void;
12790
12813
  resetDefered(): void;
12791
- setDeferData({ children, ...rest }: any): void;
12814
+ updateData({ children, ...rest }: any): void;
12792
12815
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
12793
12816
  toggle: (row: IRow, checked: boolean) => void;
12794
12817
  toggleAncestors: (row: IRow) => void;
@@ -12852,7 +12875,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12852
12875
  markLoaded(value: any): void;
12853
12876
  setError(value: any): void;
12854
12877
  resetDefered(): void;
12855
- setDeferData({ children, ...rest }: any): void;
12878
+ updateData({ children, ...rest }: any): void;
12856
12879
  } & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IModelType<{
12857
12880
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
12858
12881
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -12911,7 +12934,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12911
12934
  markLoaded(value: any): void;
12912
12935
  setError(value: any): void;
12913
12936
  resetDefered(): void;
12914
- setDeferData({ children, ...rest }: any): void;
12937
+ updateData({ children, ...rest }: any): void;
12915
12938
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
12916
12939
  toggleExpandAll: () => void;
12917
12940
  toggleExpanded: (row: IRow) => void;