amis-core 3.1.0 → 3.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 (281) hide show
  1. package/esm/Root.js +1 -1
  2. package/esm/RootRenderer.d.ts +1 -1
  3. package/esm/RootRenderer.js +2 -2
  4. package/esm/SchemaRenderer.js +3 -2
  5. package/esm/Scoped.js +2 -1
  6. package/esm/StatusScoped.js +1 -1
  7. package/esm/WithRootStore.d.ts +4 -24
  8. package/esm/WithRootStore.js +12 -4
  9. package/esm/WithStore.js +23 -16
  10. package/esm/actions/Action.js +14 -14
  11. package/esm/actions/AjaxAction.js +1 -1
  12. package/esm/actions/BreakAction.js +1 -1
  13. package/esm/actions/BroadcastAction.js +1 -1
  14. package/esm/actions/CmptAction.js +2 -2
  15. package/esm/actions/ContinueAction.js +1 -1
  16. package/esm/actions/CopyAction.js +1 -1
  17. package/esm/actions/CustomAction.js +2 -1
  18. package/esm/actions/DialogAction.d.ts +2 -0
  19. package/esm/actions/DialogAction.js +40 -23
  20. package/esm/actions/DrawerAction.js +4 -4
  21. package/esm/actions/EmailAction.js +1 -1
  22. package/esm/actions/LinkAction.js +1 -1
  23. package/esm/actions/LoopAction.js +1 -1
  24. package/esm/actions/PageAction.js +1 -1
  25. package/esm/actions/ParallelAction.js +1 -1
  26. package/esm/actions/SwitchAction.js +1 -1
  27. package/esm/actions/ToastAction.js +1 -1
  28. package/esm/components/CustomStyle.js +1 -1
  29. package/esm/components/LazyComponent.js +1 -1
  30. package/esm/components/Overlay.js +2 -1
  31. package/esm/components/PopOver.js +2 -1
  32. package/esm/env.js +1 -1
  33. package/esm/envOverwrite.js +1 -1
  34. package/esm/factory.js +1 -1
  35. package/esm/index.d.ts +1 -0
  36. package/esm/index.js +6 -4
  37. package/esm/locale.js +1 -1
  38. package/esm/polyfills.d.ts +3 -0
  39. package/esm/polyfills.js +18 -0
  40. package/esm/renderers/Form.d.ts +1 -1
  41. package/esm/renderers/Form.js +17 -7
  42. package/esm/renderers/Item.d.ts +88 -59
  43. package/esm/renderers/Item.js +86 -40
  44. package/esm/renderers/Options.js +1 -1
  45. package/esm/renderers/Placeholder.js +1 -1
  46. package/esm/renderers/builtin.js +1 -1
  47. package/esm/renderers/register.js +1 -1
  48. package/esm/renderers/wrapControl.d.ts +4 -24
  49. package/esm/renderers/wrapControl.js +51 -53
  50. package/esm/store/app.js +37 -3
  51. package/esm/store/combo.d.ts +168 -28
  52. package/esm/store/combo.js +1 -1
  53. package/esm/store/crud.d.ts +3 -2
  54. package/esm/store/crud.js +12 -5
  55. package/esm/store/form.d.ts +72 -12
  56. package/esm/store/form.js +4 -4
  57. package/esm/store/formItem.d.ts +2 -1
  58. package/esm/store/formItem.js +7 -2
  59. package/esm/store/iRenderer.js +2 -1
  60. package/esm/store/index.js +1 -1
  61. package/esm/store/list.d.ts +1 -0
  62. package/esm/store/list.js +8 -2
  63. package/esm/store/manager.js +1 -1
  64. package/esm/store/modal.js +1 -1
  65. package/esm/store/node.js +1 -1
  66. package/esm/store/pagination.js +1 -1
  67. package/esm/store/root.js +2 -1
  68. package/esm/store/service.js +14 -9
  69. package/esm/store/status.js +1 -1
  70. package/esm/store/table.d.ts +145 -24
  71. package/esm/store/table.js +8 -2
  72. package/esm/store/table2.js +1 -1
  73. package/esm/theme.js +1 -1
  74. package/esm/types.d.ts +5 -2
  75. package/esm/utils/Animation.js +1 -1
  76. package/esm/utils/ColorScale.js +1 -1
  77. package/esm/utils/DataSchema.d.ts +3 -2
  78. package/esm/utils/DataSchema.js +27 -7
  79. package/esm/utils/DataScope.d.ts +10 -3
  80. package/esm/utils/DataScope.js +50 -12
  81. package/esm/utils/RootClose.js +1 -1
  82. package/esm/utils/SimpleMap.js +1 -1
  83. package/esm/utils/api.js +40 -32
  84. package/esm/utils/arraySlice.d.ts +1 -0
  85. package/esm/utils/arraySlice.js +76 -0
  86. package/esm/utils/attachmentAdpator.js +1 -1
  87. package/esm/utils/autobind.js +1 -1
  88. package/esm/utils/columnsSplit.js +1 -1
  89. package/esm/utils/dataMapping.js +26 -18
  90. package/esm/utils/date.js +1 -1
  91. package/esm/utils/debug.js +1 -1
  92. package/esm/utils/decodeEntity.js +1 -1
  93. package/esm/utils/dom.js +4 -1
  94. package/esm/utils/errors.js +1 -1
  95. package/esm/utils/escapeHtml.js +1 -1
  96. package/esm/utils/filter-schema.js +1 -1
  97. package/esm/utils/filter.js +1 -1
  98. package/esm/utils/formatDuration.js +1 -1
  99. package/esm/utils/formula.js +1 -1
  100. package/esm/utils/getVariable.js +1 -1
  101. package/esm/utils/grammar.js +1 -1
  102. package/esm/utils/handleAction.js +1 -1
  103. package/esm/utils/helper.d.ts +8 -1
  104. package/esm/utils/helper.js +57 -10
  105. package/esm/utils/highlight.js +1 -1
  106. package/esm/utils/icon.js +1 -1
  107. package/esm/utils/image.js +1 -1
  108. package/esm/utils/index.d.ts +1 -0
  109. package/esm/utils/isPureVariable.js +1 -1
  110. package/esm/utils/json-schema-2-amis-schema.js +1 -1
  111. package/esm/utils/keyToPath.js +1 -1
  112. package/esm/utils/makeSorter.js +1 -1
  113. package/esm/utils/memoryParse.js +1 -1
  114. package/esm/utils/normalizeLink.js +18 -9
  115. package/esm/utils/normalizeOptions.js +1 -1
  116. package/esm/utils/object.js +1 -1
  117. package/esm/utils/offset.js +1 -1
  118. package/esm/utils/offsetParent.js +1 -1
  119. package/esm/utils/optionValueCompare.js +1 -1
  120. package/esm/utils/position.js +1 -1
  121. package/esm/utils/prettyBytes.js +1 -1
  122. package/esm/utils/renderer-event.js +1 -1
  123. package/esm/utils/replaceText.js +1 -1
  124. package/esm/utils/resize-sensor.js +1 -1
  125. package/esm/utils/resolveCondition.js +1 -1
  126. package/esm/utils/resolveVariable.js +1 -1
  127. package/esm/utils/resolveVariableAndFilter.js +1 -1
  128. package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
  129. package/esm/utils/scrollPosition.js +1 -1
  130. package/esm/utils/string2regExp.js +1 -1
  131. package/esm/utils/stripNumber.js +1 -1
  132. package/esm/utils/style-helper.js +1 -1
  133. package/esm/utils/style.js +1 -1
  134. package/esm/utils/toNumber.js +1 -1
  135. package/esm/utils/tokenize.js +1 -1
  136. package/esm/utils/tpl-builtin.js +1 -1
  137. package/esm/utils/tpl-lodash.js +1 -1
  138. package/esm/utils/tpl.js +1 -1
  139. package/esm/utils/uncontrollable.js +1 -1
  140. package/esm/utils/validations.js +1 -1
  141. package/lib/Root.js +1 -1
  142. package/lib/RootRenderer.d.ts +1 -1
  143. package/lib/RootRenderer.js +2 -2
  144. package/lib/SchemaRenderer.js +3 -2
  145. package/lib/Scoped.js +2 -1
  146. package/lib/StatusScoped.js +1 -1
  147. package/lib/WithRootStore.d.ts +4 -24
  148. package/lib/WithRootStore.js +12 -4
  149. package/lib/WithStore.js +23 -16
  150. package/lib/actions/Action.js +14 -14
  151. package/lib/actions/AjaxAction.js +1 -1
  152. package/lib/actions/BreakAction.js +1 -1
  153. package/lib/actions/BroadcastAction.js +1 -1
  154. package/lib/actions/CmptAction.js +2 -2
  155. package/lib/actions/ContinueAction.js +1 -1
  156. package/lib/actions/CopyAction.js +1 -1
  157. package/lib/actions/CustomAction.js +2 -1
  158. package/lib/actions/DialogAction.d.ts +2 -0
  159. package/lib/actions/DialogAction.js +40 -23
  160. package/lib/actions/DrawerAction.js +4 -4
  161. package/lib/actions/EmailAction.js +1 -1
  162. package/lib/actions/LinkAction.js +1 -1
  163. package/lib/actions/LoopAction.js +1 -1
  164. package/lib/actions/PageAction.js +1 -1
  165. package/lib/actions/ParallelAction.js +1 -1
  166. package/lib/actions/SwitchAction.js +1 -1
  167. package/lib/actions/ToastAction.js +1 -1
  168. package/lib/components/CustomStyle.js +1 -1
  169. package/lib/components/LazyComponent.js +1 -1
  170. package/lib/components/Overlay.js +2 -1
  171. package/lib/components/PopOver.js +2 -1
  172. package/lib/env.js +1 -1
  173. package/lib/envOverwrite.js +1 -1
  174. package/lib/factory.js +1 -1
  175. package/lib/index.d.ts +1 -0
  176. package/lib/index.js +7 -2
  177. package/lib/locale.js +1 -1
  178. package/lib/polyfills.d.ts +3 -0
  179. package/lib/polyfills.js +20 -0
  180. package/lib/renderers/Form.d.ts +1 -1
  181. package/lib/renderers/Form.js +17 -7
  182. package/lib/renderers/Item.d.ts +88 -59
  183. package/lib/renderers/Item.js +86 -40
  184. package/lib/renderers/Options.js +1 -1
  185. package/lib/renderers/Placeholder.js +1 -1
  186. package/lib/renderers/builtin.js +1 -1
  187. package/lib/renderers/register.js +1 -1
  188. package/lib/renderers/wrapControl.d.ts +4 -24
  189. package/lib/renderers/wrapControl.js +51 -53
  190. package/lib/store/app.js +36 -2
  191. package/lib/store/combo.d.ts +168 -28
  192. package/lib/store/combo.js +1 -1
  193. package/lib/store/crud.d.ts +3 -2
  194. package/lib/store/crud.js +12 -5
  195. package/lib/store/form.d.ts +72 -12
  196. package/lib/store/form.js +4 -4
  197. package/lib/store/formItem.d.ts +2 -1
  198. package/lib/store/formItem.js +7 -2
  199. package/lib/store/iRenderer.js +2 -1
  200. package/lib/store/index.js +1 -1
  201. package/lib/store/list.d.ts +1 -0
  202. package/lib/store/list.js +8 -2
  203. package/lib/store/manager.js +1 -1
  204. package/lib/store/modal.js +1 -1
  205. package/lib/store/node.js +1 -1
  206. package/lib/store/pagination.js +1 -1
  207. package/lib/store/root.js +2 -1
  208. package/lib/store/service.js +14 -9
  209. package/lib/store/status.js +1 -1
  210. package/lib/store/table.d.ts +145 -24
  211. package/lib/store/table.js +7 -1
  212. package/lib/store/table2.js +1 -1
  213. package/lib/theme.js +1 -1
  214. package/lib/types.d.ts +5 -2
  215. package/lib/utils/Animation.js +1 -1
  216. package/lib/utils/ColorScale.js +1 -1
  217. package/lib/utils/DataSchema.d.ts +3 -2
  218. package/lib/utils/DataSchema.js +27 -7
  219. package/lib/utils/DataScope.d.ts +10 -3
  220. package/lib/utils/DataScope.js +50 -11
  221. package/lib/utils/RootClose.js +1 -1
  222. package/lib/utils/SimpleMap.js +1 -1
  223. package/lib/utils/api.js +39 -31
  224. package/lib/utils/arraySlice.d.ts +1 -0
  225. package/lib/utils/arraySlice.js +80 -0
  226. package/lib/utils/attachmentAdpator.js +1 -1
  227. package/lib/utils/autobind.js +1 -1
  228. package/lib/utils/columnsSplit.js +1 -1
  229. package/lib/utils/dataMapping.js +26 -18
  230. package/lib/utils/date.js +1 -1
  231. package/lib/utils/debug.js +1 -1
  232. package/lib/utils/decodeEntity.js +1 -1
  233. package/lib/utils/dom.js +4 -1
  234. package/lib/utils/errors.js +1 -1
  235. package/lib/utils/escapeHtml.js +1 -1
  236. package/lib/utils/filter-schema.js +1 -1
  237. package/lib/utils/filter.js +1 -1
  238. package/lib/utils/formatDuration.js +1 -1
  239. package/lib/utils/formula.js +1 -1
  240. package/lib/utils/getVariable.js +1 -1
  241. package/lib/utils/grammar.js +1 -1
  242. package/lib/utils/handleAction.js +1 -1
  243. package/lib/utils/helper.d.ts +8 -1
  244. package/lib/utils/helper.js +57 -9
  245. package/lib/utils/highlight.js +1 -1
  246. package/lib/utils/icon.js +1 -1
  247. package/lib/utils/image.js +1 -1
  248. package/lib/utils/index.d.ts +1 -0
  249. package/lib/utils/isPureVariable.js +1 -1
  250. package/lib/utils/json-schema-2-amis-schema.js +1 -1
  251. package/lib/utils/keyToPath.js +1 -1
  252. package/lib/utils/makeSorter.js +1 -1
  253. package/lib/utils/memoryParse.js +1 -1
  254. package/lib/utils/normalizeLink.js +18 -9
  255. package/lib/utils/normalizeOptions.js +1 -1
  256. package/lib/utils/object.js +1 -1
  257. package/lib/utils/offset.js +1 -1
  258. package/lib/utils/offsetParent.js +1 -1
  259. package/lib/utils/optionValueCompare.js +1 -1
  260. package/lib/utils/position.js +1 -1
  261. package/lib/utils/prettyBytes.js +1 -1
  262. package/lib/utils/renderer-event.js +1 -1
  263. package/lib/utils/replaceText.js +1 -1
  264. package/lib/utils/resize-sensor.js +1 -1
  265. package/lib/utils/resolveCondition.js +1 -1
  266. package/lib/utils/resolveVariable.js +1 -1
  267. package/lib/utils/resolveVariableAndFilter.js +1 -1
  268. package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
  269. package/lib/utils/scrollPosition.js +1 -1
  270. package/lib/utils/string2regExp.js +1 -1
  271. package/lib/utils/stripNumber.js +1 -1
  272. package/lib/utils/style-helper.js +1 -1
  273. package/lib/utils/style.js +1 -1
  274. package/lib/utils/toNumber.js +1 -1
  275. package/lib/utils/tokenize.js +1 -1
  276. package/lib/utils/tpl-builtin.js +1 -1
  277. package/lib/utils/tpl-lodash.js +1 -1
  278. package/lib/utils/tpl.js +1 -1
  279. package/lib/utils/uncontrollable.js +1 -1
  280. package/lib/utils/validations.js +1 -1
  281. package/package.json +8 -3
@@ -396,6 +396,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
396
396
  isValueSchemaExp: boolean;
397
397
  tmpValue: any;
398
398
  emitedValue: any;
399
+ changeMotivation: string;
399
400
  rules: any;
400
401
  messages: any;
401
402
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -514,7 +515,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
514
515
  resetValidationStatus: (tag?: string | undefined) => void;
515
516
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
516
517
  closeDialog: (result?: any) => void;
517
- changeTmpValue: (value: any) => void;
518
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
518
519
  changeEmitedValue: (value: any) => void;
519
520
  addSubFormItem: (item: {
520
521
  id: string;
@@ -532,6 +533,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
532
533
  isValueSchemaExp: boolean;
533
534
  tmpValue: any;
534
535
  emitedValue: any;
536
+ changeMotivation: string;
535
537
  rules: any;
536
538
  messages: any;
537
539
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -607,6 +609,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
607
609
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
608
610
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
609
611
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
612
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
610
613
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
611
614
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
612
615
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -678,6 +681,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
678
681
  isValueSchemaExp: boolean;
679
682
  tmpValue: any;
680
683
  emitedValue: any;
684
+ changeMotivation: string;
681
685
  rules: any;
682
686
  messages: any;
683
687
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -753,6 +757,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
753
757
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
754
758
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
755
759
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
760
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
756
761
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
757
762
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
758
763
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -826,6 +831,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
826
831
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
827
832
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
828
833
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
834
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
829
835
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
830
836
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
831
837
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -940,7 +946,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
940
946
  resetValidationStatus: (tag?: string | undefined) => void;
941
947
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
942
948
  closeDialog: (result?: any) => void;
943
- changeTmpValue: (value: any) => void;
949
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
944
950
  changeEmitedValue: (value: any) => void;
945
951
  addSubFormItem: (item: {
946
952
  id: string;
@@ -958,6 +964,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
958
964
  isValueSchemaExp: boolean;
959
965
  tmpValue: any;
960
966
  emitedValue: any;
967
+ changeMotivation: string;
961
968
  rules: any;
962
969
  messages: any;
963
970
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -1033,6 +1040,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1033
1040
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1034
1041
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
1035
1042
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
1043
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
1036
1044
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1037
1045
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1038
1046
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -1104,6 +1112,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1104
1112
  isValueSchemaExp: boolean;
1105
1113
  tmpValue: any;
1106
1114
  emitedValue: any;
1115
+ changeMotivation: string;
1107
1116
  rules: any;
1108
1117
  messages: any;
1109
1118
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -1179,6 +1188,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1179
1188
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1180
1189
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
1181
1190
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
1191
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
1182
1192
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1183
1193
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1184
1194
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -1252,6 +1262,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1252
1262
  isValueSchemaExp: boolean;
1253
1263
  tmpValue: any;
1254
1264
  emitedValue: any;
1265
+ changeMotivation: string;
1255
1266
  rules: any;
1256
1267
  messages: any;
1257
1268
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -1370,7 +1381,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1370
1381
  resetValidationStatus: (tag?: string | undefined) => void;
1371
1382
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
1372
1383
  closeDialog: (result?: any) => void;
1373
- changeTmpValue: (value: any) => void;
1384
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
1374
1385
  changeEmitedValue: (value: any) => void;
1375
1386
  addSubFormItem: (item: {
1376
1387
  id: string;
@@ -1388,6 +1399,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1388
1399
  isValueSchemaExp: boolean;
1389
1400
  tmpValue: any;
1390
1401
  emitedValue: any;
1402
+ changeMotivation: string;
1391
1403
  rules: any;
1392
1404
  messages: any;
1393
1405
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -1463,6 +1475,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1463
1475
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1464
1476
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
1465
1477
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
1478
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
1466
1479
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1467
1480
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1468
1481
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -1534,6 +1547,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1534
1547
  isValueSchemaExp: boolean;
1535
1548
  tmpValue: any;
1536
1549
  emitedValue: any;
1550
+ changeMotivation: string;
1537
1551
  rules: any;
1538
1552
  messages: any;
1539
1553
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -1609,6 +1623,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1609
1623
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1610
1624
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
1611
1625
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
1626
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
1612
1627
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1613
1628
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1614
1629
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -1682,6 +1697,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1682
1697
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1683
1698
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
1684
1699
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
1700
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
1685
1701
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1686
1702
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1687
1703
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -1796,7 +1812,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1796
1812
  resetValidationStatus: (tag?: string | undefined) => void;
1797
1813
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
1798
1814
  closeDialog: (result?: any) => void;
1799
- changeTmpValue: (value: any) => void;
1815
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
1800
1816
  changeEmitedValue: (value: any) => void;
1801
1817
  addSubFormItem: (item: {
1802
1818
  id: string;
@@ -1814,6 +1830,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1814
1830
  isValueSchemaExp: boolean;
1815
1831
  tmpValue: any;
1816
1832
  emitedValue: any;
1833
+ changeMotivation: string;
1817
1834
  rules: any;
1818
1835
  messages: any;
1819
1836
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -1889,6 +1906,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1889
1906
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
1890
1907
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
1891
1908
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
1909
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
1892
1910
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1893
1911
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1894
1912
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -1960,6 +1978,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1960
1978
  isValueSchemaExp: boolean;
1961
1979
  tmpValue: any;
1962
1980
  emitedValue: any;
1981
+ changeMotivation: string;
1963
1982
  rules: any;
1964
1983
  messages: any;
1965
1984
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -2035,6 +2054,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2035
2054
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2036
2055
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
2037
2056
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
2057
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
2038
2058
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2039
2059
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2040
2060
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -2108,6 +2128,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2108
2128
  isValueSchemaExp: boolean;
2109
2129
  tmpValue: any;
2110
2130
  emitedValue: any;
2131
+ changeMotivation: string;
2111
2132
  rules: any;
2112
2133
  messages: any;
2113
2134
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -2226,7 +2247,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2226
2247
  resetValidationStatus: (tag?: string | undefined) => void;
2227
2248
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
2228
2249
  closeDialog: (result?: any) => void;
2229
- changeTmpValue: (value: any) => void;
2250
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
2230
2251
  changeEmitedValue: (value: any) => void;
2231
2252
  addSubFormItem: (item: {
2232
2253
  id: string;
@@ -2244,6 +2265,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2244
2265
  isValueSchemaExp: boolean;
2245
2266
  tmpValue: any;
2246
2267
  emitedValue: any;
2268
+ changeMotivation: string;
2247
2269
  rules: any;
2248
2270
  messages: any;
2249
2271
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -2319,6 +2341,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2319
2341
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2320
2342
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
2321
2343
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
2344
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
2322
2345
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2323
2346
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2324
2347
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -2390,6 +2413,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2390
2413
  isValueSchemaExp: boolean;
2391
2414
  tmpValue: any;
2392
2415
  emitedValue: any;
2416
+ changeMotivation: string;
2393
2417
  rules: any;
2394
2418
  messages: any;
2395
2419
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -2465,6 +2489,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2465
2489
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2466
2490
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
2467
2491
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
2492
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
2468
2493
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2469
2494
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2470
2495
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -2538,6 +2563,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2538
2563
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2539
2564
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
2540
2565
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
2566
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
2541
2567
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2542
2568
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2543
2569
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -2652,7 +2678,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2652
2678
  resetValidationStatus: (tag?: string | undefined) => void;
2653
2679
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
2654
2680
  closeDialog: (result?: any) => void;
2655
- changeTmpValue: (value: any) => void;
2681
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
2656
2682
  changeEmitedValue: (value: any) => void;
2657
2683
  addSubFormItem: (item: {
2658
2684
  id: string;
@@ -2670,6 +2696,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2670
2696
  isValueSchemaExp: boolean;
2671
2697
  tmpValue: any;
2672
2698
  emitedValue: any;
2699
+ changeMotivation: string;
2673
2700
  rules: any;
2674
2701
  messages: any;
2675
2702
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -2745,6 +2772,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2745
2772
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2746
2773
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
2747
2774
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
2775
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
2748
2776
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2749
2777
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2750
2778
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -2816,6 +2844,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2816
2844
  isValueSchemaExp: boolean;
2817
2845
  tmpValue: any;
2818
2846
  emitedValue: any;
2847
+ changeMotivation: string;
2819
2848
  rules: any;
2820
2849
  messages: any;
2821
2850
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -2891,6 +2920,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2891
2920
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
2892
2921
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
2893
2922
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
2923
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
2894
2924
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2895
2925
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2896
2926
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -2969,6 +2999,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2969
2999
  isValueSchemaExp: boolean;
2970
3000
  tmpValue: any;
2971
3001
  emitedValue: any;
3002
+ changeMotivation: string;
2972
3003
  rules: any;
2973
3004
  messages: any;
2974
3005
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -3087,7 +3118,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3087
3118
  resetValidationStatus: (tag?: string | undefined) => void;
3088
3119
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
3089
3120
  closeDialog: (result?: any) => void;
3090
- changeTmpValue: (value: any) => void;
3121
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
3091
3122
  changeEmitedValue: (value: any) => void;
3092
3123
  addSubFormItem: (item: {
3093
3124
  id: string;
@@ -3105,6 +3136,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3105
3136
  isValueSchemaExp: boolean;
3106
3137
  tmpValue: any;
3107
3138
  emitedValue: any;
3139
+ changeMotivation: string;
3108
3140
  rules: any;
3109
3141
  messages: any;
3110
3142
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -3180,6 +3212,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3180
3212
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3181
3213
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
3182
3214
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
3215
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
3183
3216
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3184
3217
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3185
3218
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -3251,6 +3284,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3251
3284
  isValueSchemaExp: boolean;
3252
3285
  tmpValue: any;
3253
3286
  emitedValue: any;
3287
+ changeMotivation: string;
3254
3288
  rules: any;
3255
3289
  messages: any;
3256
3290
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -3326,6 +3360,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3326
3360
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3327
3361
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
3328
3362
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
3363
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
3329
3364
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3330
3365
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3331
3366
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -3399,6 +3434,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3399
3434
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3400
3435
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
3401
3436
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
3437
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
3402
3438
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3403
3439
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3404
3440
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -3513,7 +3549,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3513
3549
  resetValidationStatus: (tag?: string | undefined) => void;
3514
3550
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
3515
3551
  closeDialog: (result?: any) => void;
3516
- changeTmpValue: (value: any) => void;
3552
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
3517
3553
  changeEmitedValue: (value: any) => void;
3518
3554
  addSubFormItem: (item: {
3519
3555
  id: string;
@@ -3531,6 +3567,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3531
3567
  isValueSchemaExp: boolean;
3532
3568
  tmpValue: any;
3533
3569
  emitedValue: any;
3570
+ changeMotivation: string;
3534
3571
  rules: any;
3535
3572
  messages: any;
3536
3573
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -3606,6 +3643,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3606
3643
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3607
3644
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
3608
3645
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
3646
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
3609
3647
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3610
3648
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3611
3649
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -3677,6 +3715,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3677
3715
  isValueSchemaExp: boolean;
3678
3716
  tmpValue: any;
3679
3717
  emitedValue: any;
3718
+ changeMotivation: string;
3680
3719
  rules: any;
3681
3720
  messages: any;
3682
3721
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -3752,6 +3791,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3752
3791
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
3753
3792
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
3754
3793
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
3794
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
3755
3795
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3756
3796
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3757
3797
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -3825,6 +3865,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3825
3865
  isValueSchemaExp: boolean;
3826
3866
  tmpValue: any;
3827
3867
  emitedValue: any;
3868
+ changeMotivation: string;
3828
3869
  rules: any;
3829
3870
  messages: any;
3830
3871
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -3943,7 +3984,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3943
3984
  resetValidationStatus: (tag?: string | undefined) => void;
3944
3985
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
3945
3986
  closeDialog: (result?: any) => void;
3946
- changeTmpValue: (value: any) => void;
3987
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
3947
3988
  changeEmitedValue: (value: any) => void;
3948
3989
  addSubFormItem: (item: {
3949
3990
  id: string;
@@ -3961,6 +4002,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3961
4002
  isValueSchemaExp: boolean;
3962
4003
  tmpValue: any;
3963
4004
  emitedValue: any;
4005
+ changeMotivation: string;
3964
4006
  rules: any;
3965
4007
  messages: any;
3966
4008
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -4036,6 +4078,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4036
4078
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4037
4079
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
4038
4080
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
4081
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
4039
4082
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4040
4083
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4041
4084
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -4107,6 +4150,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4107
4150
  isValueSchemaExp: boolean;
4108
4151
  tmpValue: any;
4109
4152
  emitedValue: any;
4153
+ changeMotivation: string;
4110
4154
  rules: any;
4111
4155
  messages: any;
4112
4156
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -4182,6 +4226,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4182
4226
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4183
4227
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
4184
4228
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
4229
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
4185
4230
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4186
4231
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4187
4232
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -4255,6 +4300,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4255
4300
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4256
4301
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
4257
4302
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
4303
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
4258
4304
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4259
4305
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4260
4306
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -4369,7 +4415,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4369
4415
  resetValidationStatus: (tag?: string | undefined) => void;
4370
4416
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
4371
4417
  closeDialog: (result?: any) => void;
4372
- changeTmpValue: (value: any) => void;
4418
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
4373
4419
  changeEmitedValue: (value: any) => void;
4374
4420
  addSubFormItem: (item: {
4375
4421
  id: string;
@@ -4387,6 +4433,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4387
4433
  isValueSchemaExp: boolean;
4388
4434
  tmpValue: any;
4389
4435
  emitedValue: any;
4436
+ changeMotivation: string;
4390
4437
  rules: any;
4391
4438
  messages: any;
4392
4439
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -4462,6 +4509,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4462
4509
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4463
4510
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
4464
4511
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
4512
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
4465
4513
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4466
4514
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4467
4515
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -4533,6 +4581,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4533
4581
  isValueSchemaExp: boolean;
4534
4582
  tmpValue: any;
4535
4583
  emitedValue: any;
4584
+ changeMotivation: string;
4536
4585
  rules: any;
4537
4586
  messages: any;
4538
4587
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -4608,6 +4657,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4608
4657
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4609
4658
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
4610
4659
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
4660
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
4611
4661
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4612
4662
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4613
4663
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -4681,6 +4731,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4681
4731
  isValueSchemaExp: boolean;
4682
4732
  tmpValue: any;
4683
4733
  emitedValue: any;
4734
+ changeMotivation: string;
4684
4735
  rules: any;
4685
4736
  messages: any;
4686
4737
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -4799,7 +4850,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4799
4850
  resetValidationStatus: (tag?: string | undefined) => void;
4800
4851
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
4801
4852
  closeDialog: (result?: any) => void;
4802
- changeTmpValue: (value: any) => void;
4853
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
4803
4854
  changeEmitedValue: (value: any) => void;
4804
4855
  addSubFormItem: (item: {
4805
4856
  id: string;
@@ -4817,6 +4868,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4817
4868
  isValueSchemaExp: boolean;
4818
4869
  tmpValue: any;
4819
4870
  emitedValue: any;
4871
+ changeMotivation: string;
4820
4872
  rules: any;
4821
4873
  messages: any;
4822
4874
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -4892,6 +4944,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4892
4944
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
4893
4945
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
4894
4946
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
4947
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
4895
4948
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4896
4949
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4897
4950
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -4963,6 +5016,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4963
5016
  isValueSchemaExp: boolean;
4964
5017
  tmpValue: any;
4965
5018
  emitedValue: any;
5019
+ changeMotivation: string;
4966
5020
  rules: any;
4967
5021
  messages: any;
4968
5022
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -5038,6 +5092,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5038
5092
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
5039
5093
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
5040
5094
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
5095
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
5041
5096
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5042
5097
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5043
5098
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -5111,6 +5166,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5111
5166
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
5112
5167
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
5113
5168
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
5169
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
5114
5170
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5115
5171
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5116
5172
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -5225,7 +5281,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5225
5281
  resetValidationStatus: (tag?: string | undefined) => void;
5226
5282
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
5227
5283
  closeDialog: (result?: any) => void;
5228
- changeTmpValue: (value: any) => void;
5284
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
5229
5285
  changeEmitedValue: (value: any) => void;
5230
5286
  addSubFormItem: (item: {
5231
5287
  id: string;
@@ -5243,6 +5299,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5243
5299
  isValueSchemaExp: boolean;
5244
5300
  tmpValue: any;
5245
5301
  emitedValue: any;
5302
+ changeMotivation: string;
5246
5303
  rules: any;
5247
5304
  messages: any;
5248
5305
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -5318,6 +5375,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5318
5375
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
5319
5376
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
5320
5377
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
5378
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
5321
5379
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5322
5380
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5323
5381
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -5389,6 +5447,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5389
5447
  isValueSchemaExp: boolean;
5390
5448
  tmpValue: any;
5391
5449
  emitedValue: any;
5450
+ changeMotivation: string;
5392
5451
  rules: any;
5393
5452
  messages: any;
5394
5453
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -5464,6 +5523,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5464
5523
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
5465
5524
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
5466
5525
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
5526
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
5467
5527
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5468
5528
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5469
5529
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -5656,6 +5716,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5656
5716
  isValueSchemaExp: boolean;
5657
5717
  tmpValue: any;
5658
5718
  emitedValue: any;
5719
+ changeMotivation: string;
5659
5720
  rules: any;
5660
5721
  messages: any;
5661
5722
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -5774,7 +5835,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5774
5835
  resetValidationStatus: (tag?: string | undefined) => void;
5775
5836
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
5776
5837
  closeDialog: (result?: any) => void;
5777
- changeTmpValue: (value: any) => void;
5838
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
5778
5839
  changeEmitedValue: (value: any) => void;
5779
5840
  addSubFormItem: (item: {
5780
5841
  id: string;
@@ -5792,6 +5853,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5792
5853
  isValueSchemaExp: boolean;
5793
5854
  tmpValue: any;
5794
5855
  emitedValue: any;
5856
+ changeMotivation: string;
5795
5857
  rules: any;
5796
5858
  messages: any;
5797
5859
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -5867,6 +5929,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5867
5929
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
5868
5930
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
5869
5931
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
5932
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
5870
5933
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5871
5934
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5872
5935
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -5938,6 +6001,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5938
6001
  isValueSchemaExp: boolean;
5939
6002
  tmpValue: any;
5940
6003
  emitedValue: any;
6004
+ changeMotivation: string;
5941
6005
  rules: any;
5942
6006
  messages: any;
5943
6007
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -6013,6 +6077,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6013
6077
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6014
6078
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6015
6079
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
6080
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6016
6081
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6017
6082
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6018
6083
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -6086,6 +6151,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6086
6151
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6087
6152
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6088
6153
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
6154
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6089
6155
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6090
6156
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6091
6157
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -6200,7 +6266,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6200
6266
  resetValidationStatus: (tag?: string | undefined) => void;
6201
6267
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
6202
6268
  closeDialog: (result?: any) => void;
6203
- changeTmpValue: (value: any) => void;
6269
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
6204
6270
  changeEmitedValue: (value: any) => void;
6205
6271
  addSubFormItem: (item: {
6206
6272
  id: string;
@@ -6218,6 +6284,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6218
6284
  isValueSchemaExp: boolean;
6219
6285
  tmpValue: any;
6220
6286
  emitedValue: any;
6287
+ changeMotivation: string;
6221
6288
  rules: any;
6222
6289
  messages: any;
6223
6290
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -6293,6 +6360,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6293
6360
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6294
6361
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6295
6362
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
6363
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6296
6364
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6297
6365
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6298
6366
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -6364,6 +6432,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6364
6432
  isValueSchemaExp: boolean;
6365
6433
  tmpValue: any;
6366
6434
  emitedValue: any;
6435
+ changeMotivation: string;
6367
6436
  rules: any;
6368
6437
  messages: any;
6369
6438
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -6439,6 +6508,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6439
6508
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6440
6509
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6441
6510
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
6511
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6442
6512
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6443
6513
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6444
6514
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -6512,6 +6582,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6512
6582
  isValueSchemaExp: boolean;
6513
6583
  tmpValue: any;
6514
6584
  emitedValue: any;
6585
+ changeMotivation: string;
6515
6586
  rules: any;
6516
6587
  messages: any;
6517
6588
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -6630,7 +6701,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6630
6701
  resetValidationStatus: (tag?: string | undefined) => void;
6631
6702
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
6632
6703
  closeDialog: (result?: any) => void;
6633
- changeTmpValue: (value: any) => void;
6704
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
6634
6705
  changeEmitedValue: (value: any) => void;
6635
6706
  addSubFormItem: (item: {
6636
6707
  id: string;
@@ -6648,6 +6719,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6648
6719
  isValueSchemaExp: boolean;
6649
6720
  tmpValue: any;
6650
6721
  emitedValue: any;
6722
+ changeMotivation: string;
6651
6723
  rules: any;
6652
6724
  messages: any;
6653
6725
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -6723,6 +6795,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6723
6795
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6724
6796
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6725
6797
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
6798
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6726
6799
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6727
6800
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6728
6801
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -6794,6 +6867,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6794
6867
  isValueSchemaExp: boolean;
6795
6868
  tmpValue: any;
6796
6869
  emitedValue: any;
6870
+ changeMotivation: string;
6797
6871
  rules: any;
6798
6872
  messages: any;
6799
6873
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -6869,6 +6943,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6869
6943
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6870
6944
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6871
6945
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
6946
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6872
6947
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6873
6948
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6874
6949
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -6942,6 +7017,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6942
7017
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
6943
7018
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
6944
7019
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
7020
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
6945
7021
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6946
7022
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6947
7023
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -7056,7 +7132,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7056
7132
  resetValidationStatus: (tag?: string | undefined) => void;
7057
7133
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
7058
7134
  closeDialog: (result?: any) => void;
7059
- changeTmpValue: (value: any) => void;
7135
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
7060
7136
  changeEmitedValue: (value: any) => void;
7061
7137
  addSubFormItem: (item: {
7062
7138
  id: string;
@@ -7074,6 +7150,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7074
7150
  isValueSchemaExp: boolean;
7075
7151
  tmpValue: any;
7076
7152
  emitedValue: any;
7153
+ changeMotivation: string;
7077
7154
  rules: any;
7078
7155
  messages: any;
7079
7156
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -7149,6 +7226,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7149
7226
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7150
7227
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
7151
7228
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
7229
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
7152
7230
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7153
7231
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7154
7232
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -7220,6 +7298,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7220
7298
  isValueSchemaExp: boolean;
7221
7299
  tmpValue: any;
7222
7300
  emitedValue: any;
7301
+ changeMotivation: string;
7223
7302
  rules: any;
7224
7303
  messages: any;
7225
7304
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -7295,6 +7374,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7295
7374
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7296
7375
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
7297
7376
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
7377
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
7298
7378
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7299
7379
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7300
7380
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -7368,6 +7448,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7368
7448
  isValueSchemaExp: boolean;
7369
7449
  tmpValue: any;
7370
7450
  emitedValue: any;
7451
+ changeMotivation: string;
7371
7452
  rules: any;
7372
7453
  messages: any;
7373
7454
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -7486,7 +7567,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7486
7567
  resetValidationStatus: (tag?: string | undefined) => void;
7487
7568
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
7488
7569
  closeDialog: (result?: any) => void;
7489
- changeTmpValue: (value: any) => void;
7570
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
7490
7571
  changeEmitedValue: (value: any) => void;
7491
7572
  addSubFormItem: (item: {
7492
7573
  id: string;
@@ -7504,6 +7585,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7504
7585
  isValueSchemaExp: boolean;
7505
7586
  tmpValue: any;
7506
7587
  emitedValue: any;
7588
+ changeMotivation: string;
7507
7589
  rules: any;
7508
7590
  messages: any;
7509
7591
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -7579,6 +7661,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7579
7661
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7580
7662
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
7581
7663
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
7664
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
7582
7665
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7583
7666
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7584
7667
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -7650,6 +7733,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7650
7733
  isValueSchemaExp: boolean;
7651
7734
  tmpValue: any;
7652
7735
  emitedValue: any;
7736
+ changeMotivation: string;
7653
7737
  rules: any;
7654
7738
  messages: any;
7655
7739
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -7725,6 +7809,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7725
7809
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7726
7810
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
7727
7811
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
7812
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
7728
7813
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7729
7814
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7730
7815
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -7798,6 +7883,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7798
7883
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
7799
7884
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
7800
7885
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
7886
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
7801
7887
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7802
7888
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7803
7889
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -7912,7 +7998,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7912
7998
  resetValidationStatus: (tag?: string | undefined) => void;
7913
7999
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
7914
8000
  closeDialog: (result?: any) => void;
7915
- changeTmpValue: (value: any) => void;
8001
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
7916
8002
  changeEmitedValue: (value: any) => void;
7917
8003
  addSubFormItem: (item: {
7918
8004
  id: string;
@@ -7930,6 +8016,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7930
8016
  isValueSchemaExp: boolean;
7931
8017
  tmpValue: any;
7932
8018
  emitedValue: any;
8019
+ changeMotivation: string;
7933
8020
  rules: any;
7934
8021
  messages: any;
7935
8022
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -8005,6 +8092,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8005
8092
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8006
8093
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
8007
8094
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
8095
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
8008
8096
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8009
8097
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8010
8098
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -8076,6 +8164,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8076
8164
  isValueSchemaExp: boolean;
8077
8165
  tmpValue: any;
8078
8166
  emitedValue: any;
8167
+ changeMotivation: string;
8079
8168
  rules: any;
8080
8169
  messages: any;
8081
8170
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -8151,6 +8240,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8151
8240
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8152
8241
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
8153
8242
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
8243
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
8154
8244
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8155
8245
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8156
8246
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -8229,6 +8319,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8229
8319
  isValueSchemaExp: boolean;
8230
8320
  tmpValue: any;
8231
8321
  emitedValue: any;
8322
+ changeMotivation: string;
8232
8323
  rules: any;
8233
8324
  messages: any;
8234
8325
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -8347,7 +8438,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8347
8438
  resetValidationStatus: (tag?: string | undefined) => void;
8348
8439
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
8349
8440
  closeDialog: (result?: any) => void;
8350
- changeTmpValue: (value: any) => void;
8441
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
8351
8442
  changeEmitedValue: (value: any) => void;
8352
8443
  addSubFormItem: (item: {
8353
8444
  id: string;
@@ -8365,6 +8456,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8365
8456
  isValueSchemaExp: boolean;
8366
8457
  tmpValue: any;
8367
8458
  emitedValue: any;
8459
+ changeMotivation: string;
8368
8460
  rules: any;
8369
8461
  messages: any;
8370
8462
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -8440,6 +8532,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8440
8532
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8441
8533
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
8442
8534
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
8535
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
8443
8536
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8444
8537
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8445
8538
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -8511,6 +8604,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8511
8604
  isValueSchemaExp: boolean;
8512
8605
  tmpValue: any;
8513
8606
  emitedValue: any;
8607
+ changeMotivation: string;
8514
8608
  rules: any;
8515
8609
  messages: any;
8516
8610
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -8586,6 +8680,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8586
8680
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8587
8681
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
8588
8682
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
8683
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
8589
8684
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8590
8685
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8591
8686
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -8659,6 +8754,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8659
8754
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8660
8755
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
8661
8756
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
8757
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
8662
8758
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8663
8759
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8664
8760
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -8773,7 +8869,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8773
8869
  resetValidationStatus: (tag?: string | undefined) => void;
8774
8870
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
8775
8871
  closeDialog: (result?: any) => void;
8776
- changeTmpValue: (value: any) => void;
8872
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
8777
8873
  changeEmitedValue: (value: any) => void;
8778
8874
  addSubFormItem: (item: {
8779
8875
  id: string;
@@ -8791,6 +8887,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8791
8887
  isValueSchemaExp: boolean;
8792
8888
  tmpValue: any;
8793
8889
  emitedValue: any;
8890
+ changeMotivation: string;
8794
8891
  rules: any;
8795
8892
  messages: any;
8796
8893
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -8866,6 +8963,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8866
8963
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
8867
8964
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
8868
8965
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
8966
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
8869
8967
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8870
8968
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8871
8969
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -8937,6 +9035,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8937
9035
  isValueSchemaExp: boolean;
8938
9036
  tmpValue: any;
8939
9037
  emitedValue: any;
9038
+ changeMotivation: string;
8940
9039
  rules: any;
8941
9040
  messages: any;
8942
9041
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -9012,6 +9111,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9012
9111
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9013
9112
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
9014
9113
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
9114
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
9015
9115
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9016
9116
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9017
9117
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -9085,6 +9185,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9085
9185
  isValueSchemaExp: boolean;
9086
9186
  tmpValue: any;
9087
9187
  emitedValue: any;
9188
+ changeMotivation: string;
9088
9189
  rules: any;
9089
9190
  messages: any;
9090
9191
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -9203,7 +9304,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9203
9304
  resetValidationStatus: (tag?: string | undefined) => void;
9204
9305
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
9205
9306
  closeDialog: (result?: any) => void;
9206
- changeTmpValue: (value: any) => void;
9307
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
9207
9308
  changeEmitedValue: (value: any) => void;
9208
9309
  addSubFormItem: (item: {
9209
9310
  id: string;
@@ -9221,6 +9322,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9221
9322
  isValueSchemaExp: boolean;
9222
9323
  tmpValue: any;
9223
9324
  emitedValue: any;
9325
+ changeMotivation: string;
9224
9326
  rules: any;
9225
9327
  messages: any;
9226
9328
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -9296,6 +9398,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9296
9398
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9297
9399
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
9298
9400
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
9401
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
9299
9402
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9300
9403
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9301
9404
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -9367,6 +9470,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9367
9470
  isValueSchemaExp: boolean;
9368
9471
  tmpValue: any;
9369
9472
  emitedValue: any;
9473
+ changeMotivation: string;
9370
9474
  rules: any;
9371
9475
  messages: any;
9372
9476
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -9442,6 +9546,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9442
9546
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9443
9547
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
9444
9548
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
9549
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
9445
9550
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9446
9551
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9447
9552
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -9515,6 +9620,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9515
9620
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9516
9621
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
9517
9622
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
9623
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
9518
9624
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9519
9625
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9520
9626
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -9629,7 +9735,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9629
9735
  resetValidationStatus: (tag?: string | undefined) => void;
9630
9736
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
9631
9737
  closeDialog: (result?: any) => void;
9632
- changeTmpValue: (value: any) => void;
9738
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
9633
9739
  changeEmitedValue: (value: any) => void;
9634
9740
  addSubFormItem: (item: {
9635
9741
  id: string;
@@ -9647,6 +9753,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9647
9753
  isValueSchemaExp: boolean;
9648
9754
  tmpValue: any;
9649
9755
  emitedValue: any;
9756
+ changeMotivation: string;
9650
9757
  rules: any;
9651
9758
  messages: any;
9652
9759
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -9722,6 +9829,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9722
9829
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9723
9830
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
9724
9831
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
9832
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
9725
9833
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9726
9834
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9727
9835
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -9793,6 +9901,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9793
9901
  isValueSchemaExp: boolean;
9794
9902
  tmpValue: any;
9795
9903
  emitedValue: any;
9904
+ changeMotivation: string;
9796
9905
  rules: any;
9797
9906
  messages: any;
9798
9907
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -9868,6 +9977,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9868
9977
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
9869
9978
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
9870
9979
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
9980
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
9871
9981
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9872
9982
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9873
9983
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -9941,6 +10051,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9941
10051
  isValueSchemaExp: boolean;
9942
10052
  tmpValue: any;
9943
10053
  emitedValue: any;
10054
+ changeMotivation: string;
9944
10055
  rules: any;
9945
10056
  messages: any;
9946
10057
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -10059,7 +10170,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10059
10170
  resetValidationStatus: (tag?: string | undefined) => void;
10060
10171
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
10061
10172
  closeDialog: (result?: any) => void;
10062
- changeTmpValue: (value: any) => void;
10173
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
10063
10174
  changeEmitedValue: (value: any) => void;
10064
10175
  addSubFormItem: (item: {
10065
10176
  id: string;
@@ -10077,6 +10188,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10077
10188
  isValueSchemaExp: boolean;
10078
10189
  tmpValue: any;
10079
10190
  emitedValue: any;
10191
+ changeMotivation: string;
10080
10192
  rules: any;
10081
10193
  messages: any;
10082
10194
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -10152,6 +10264,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10152
10264
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10153
10265
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
10154
10266
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
10267
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
10155
10268
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10156
10269
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10157
10270
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -10223,6 +10336,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10223
10336
  isValueSchemaExp: boolean;
10224
10337
  tmpValue: any;
10225
10338
  emitedValue: any;
10339
+ changeMotivation: string;
10226
10340
  rules: any;
10227
10341
  messages: any;
10228
10342
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -10298,6 +10412,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10298
10412
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10299
10413
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
10300
10414
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
10415
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
10301
10416
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10302
10417
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10303
10418
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -10371,6 +10486,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10371
10486
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10372
10487
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
10373
10488
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
10489
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
10374
10490
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10375
10491
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10376
10492
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -10485,7 +10601,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10485
10601
  resetValidationStatus: (tag?: string | undefined) => void;
10486
10602
  openDialog: (schema: any, ctx: any, callback?: ((ret?: any) => void) | undefined) => void;
10487
10603
  closeDialog: (result?: any) => void;
10488
- changeTmpValue: (value: any) => void;
10604
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
10489
10605
  changeEmitedValue: (value: any) => void;
10490
10606
  addSubFormItem: (item: {
10491
10607
  id: string;
@@ -10503,6 +10619,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10503
10619
  isValueSchemaExp: boolean;
10504
10620
  tmpValue: any;
10505
10621
  emitedValue: any;
10622
+ changeMotivation: string;
10506
10623
  rules: any;
10507
10624
  messages: any;
10508
10625
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -10578,6 +10695,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10578
10695
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10579
10696
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
10580
10697
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
10698
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
10581
10699
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10582
10700
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10583
10701
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -10649,6 +10767,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10649
10767
  isValueSchemaExp: boolean;
10650
10768
  tmpValue: any;
10651
10769
  emitedValue: any;
10770
+ changeMotivation: string;
10652
10771
  rules: any;
10653
10772
  messages: any;
10654
10773
  errorData: import("mobx-state-tree").IMSTArray<import("mobx-state-tree").IModelType<{
@@ -10724,6 +10843,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10724
10843
  isValueSchemaExp: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").ISimpleType<boolean>, [undefined]>;
10725
10844
  tmpValue: import("mobx-state-tree").IType<any, any, any>;
10726
10845
  emitedValue: import("mobx-state-tree").IType<any, any, any>;
10846
+ changeMotivation: import("mobx-state-tree").IType<string | undefined, string, string>;
10727
10847
  rules: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10728
10848
  messages: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10729
10849
  errorData: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
@@ -12112,6 +12232,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12112
12232
  collapseAllAtDepth: (depth: number) => void;
12113
12233
  clear: () => void;
12114
12234
  setOrderByInfo: (key: string, direction: 'asc' | 'desc' | '') => void;
12235
+ changeOrder: (key: string, direction: 'asc' | 'desc' | '') => void;
12115
12236
  reset: () => void;
12116
12237
  toggleDragging: () => void;
12117
12238
  stopDragging: () => void;