amis-core 6.7.0 → 6.9.0-beta.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 (332) hide show
  1. package/esm/Root.js +1 -1
  2. package/esm/RootRenderer.d.ts +1 -1
  3. package/esm/RootRenderer.js +24 -2
  4. package/esm/SchemaRenderer.d.ts +0 -1
  5. package/esm/SchemaRenderer.js +44 -20
  6. package/esm/Scoped.d.ts +1 -1
  7. package/esm/Scoped.js +2 -1
  8. package/esm/StatusScoped.js +1 -1
  9. package/esm/WithRootStore.js +1 -1
  10. package/esm/WithStore.js +14 -14
  11. package/esm/actions/Action.js +2 -1
  12. package/esm/actions/AjaxAction.js +1 -1
  13. package/esm/actions/BreakAction.js +1 -1
  14. package/esm/actions/BroadcastAction.js +1 -1
  15. package/esm/actions/CmptAction.js +57 -50
  16. package/esm/actions/ContinueAction.js +1 -1
  17. package/esm/actions/CopyAction.js +1 -1
  18. package/esm/actions/CustomAction.js +2 -1
  19. package/esm/actions/DialogAction.js +3 -1
  20. package/esm/actions/DrawerAction.js +2 -1
  21. package/esm/actions/EmailAction.js +1 -1
  22. package/esm/actions/EventAction.js +2 -1
  23. package/esm/actions/LinkAction.js +1 -1
  24. package/esm/actions/LoopAction.js +2 -1
  25. package/esm/actions/PageAction.js +1 -1
  26. package/esm/actions/ParallelAction.js +1 -1
  27. package/esm/actions/PrintAction.js +1 -1
  28. package/esm/actions/StatusAction.js +1 -1
  29. package/esm/actions/SwitchAction.js +1 -1
  30. package/esm/actions/ToastAction.js +3 -3
  31. package/esm/actions/WaitAction.js +1 -1
  32. package/esm/components/CustomStyle.js +1 -1
  33. package/esm/components/ErrorBoundary.js +1 -1
  34. package/esm/components/LazyComponent.d.ts +40 -2
  35. package/esm/components/LazyComponent.js +13 -7
  36. package/esm/components/Overlay.js +2 -1
  37. package/esm/components/PopOver.d.ts +1 -1
  38. package/esm/components/PopOver.js +2 -1
  39. package/esm/env.d.ts +0 -4
  40. package/esm/env.js +1 -1
  41. package/esm/envOverwrite.js +1 -1
  42. package/esm/factory.d.ts +19 -2
  43. package/esm/factory.js +205 -45
  44. package/esm/index.d.ts +4 -4
  45. package/esm/index.js +9 -5
  46. package/esm/locale.d.ts +1 -1
  47. package/esm/locale.js +14 -2
  48. package/esm/polyfills.js +1 -1
  49. package/esm/renderers/Form.d.ts +5 -5
  50. package/esm/renderers/Form.js +68 -29
  51. package/esm/renderers/Item.d.ts +109 -18
  52. package/esm/renderers/Item.js +164 -126
  53. package/esm/renderers/Options.d.ts +3 -3
  54. package/esm/renderers/Options.js +43 -19
  55. package/esm/renderers/Placeholder.js +1 -1
  56. package/esm/renderers/builtin.js +1 -1
  57. package/esm/renderers/register.js +1 -1
  58. package/esm/renderers/wrapControl.d.ts +3 -3
  59. package/esm/renderers/wrapControl.js +25 -10
  60. package/esm/store/app.d.ts +3 -3
  61. package/esm/store/app.js +2 -1
  62. package/esm/store/combo.d.ts +425 -15
  63. package/esm/store/combo.js +1 -1
  64. package/esm/store/crud.d.ts +3 -3
  65. package/esm/store/crud.js +2 -1
  66. package/esm/store/form.d.ts +178 -7
  67. package/esm/store/form.js +29 -6
  68. package/esm/store/formItem.d.ts +5 -0
  69. package/esm/store/formItem.js +32 -10
  70. package/esm/store/iRenderer.d.ts +4 -3
  71. package/esm/store/iRenderer.js +29 -4
  72. package/esm/store/index.d.ts +1 -0
  73. package/esm/store/index.js +3 -2
  74. package/esm/store/list.d.ts +3 -3
  75. package/esm/store/list.js +1 -1
  76. package/esm/store/manager.js +1 -1
  77. package/esm/store/modal.d.ts +3 -3
  78. package/esm/store/modal.js +1 -1
  79. package/esm/store/node.js +1 -1
  80. package/esm/store/pagination.d.ts +3 -3
  81. package/esm/store/pagination.js +2 -1
  82. package/esm/store/root.d.ts +5 -3
  83. package/esm/store/root.js +46 -21
  84. package/esm/store/service.d.ts +3 -3
  85. package/esm/store/service.js +11 -4
  86. package/esm/store/status.js +1 -1
  87. package/esm/store/table.d.ts +396 -36
  88. package/esm/store/table.js +84 -54
  89. package/esm/store/table2.d.ts +3 -3
  90. package/esm/store/table2.js +1 -1
  91. package/esm/theme.d.ts +1 -1
  92. package/esm/theme.js +13 -2
  93. package/esm/types.d.ts +19 -2
  94. package/esm/utils/Animation.js +1 -1
  95. package/esm/utils/ColorScale.js +1 -1
  96. package/esm/utils/DataSchema.js +1 -1
  97. package/esm/utils/DataScope.js +1 -1
  98. package/esm/utils/RootClose.js +1 -1
  99. package/esm/utils/SimpleMap.js +1 -1
  100. package/esm/utils/api.d.ts +21 -1
  101. package/esm/utils/api.js +138 -41
  102. package/esm/utils/arraySlice.js +1 -1
  103. package/esm/utils/attachmentAdpator.js +1 -1
  104. package/esm/utils/autobind.js +1 -1
  105. package/esm/utils/browser.js +1 -1
  106. package/esm/utils/columnsSplit.js +1 -1
  107. package/esm/utils/concatData.js +1 -1
  108. package/esm/utils/dataMapping.js +1 -1
  109. package/esm/utils/date.js +1 -1
  110. package/esm/utils/debug.js +17 -3
  111. package/esm/utils/decodeEntity.js +1 -1
  112. package/esm/utils/dom.js +1 -1
  113. package/esm/utils/errors.js +1 -1
  114. package/esm/utils/escapeHtml.js +1 -1
  115. package/esm/utils/filter-schema.js +1 -1
  116. package/esm/utils/filter.js +1 -1
  117. package/esm/utils/formatDuration.js +1 -1
  118. package/esm/utils/formula.js +2 -1
  119. package/esm/utils/getVariable.js +1 -1
  120. package/esm/utils/grammar.js +1 -1
  121. package/esm/utils/handleAction.js +1 -1
  122. package/esm/utils/helper.d.ts +4 -1
  123. package/esm/utils/helper.js +20 -4
  124. package/esm/utils/highlight.js +1 -1
  125. package/esm/utils/icon.js +1 -1
  126. package/esm/utils/image.js +1 -1
  127. package/esm/utils/isPureVariable.js +2 -2
  128. package/esm/utils/json-schema-2-amis-schema.js +1 -1
  129. package/esm/utils/keyToPath.js +1 -1
  130. package/esm/utils/labelToString.js +4 -1
  131. package/esm/utils/makeSorter.js +1 -1
  132. package/esm/utils/math.js +1 -1
  133. package/esm/utils/memoryParse.d.ts +2 -1
  134. package/esm/utils/memoryParse.js +10 -6
  135. package/esm/utils/normalizeLink.js +1 -1
  136. package/esm/utils/normalizeOptions.js +1 -1
  137. package/esm/utils/object.d.ts +2 -4
  138. package/esm/utils/object.js +1 -1
  139. package/esm/utils/offset.js +1 -1
  140. package/esm/utils/offsetParent.js +1 -1
  141. package/esm/utils/optionValueCompare.js +1 -1
  142. package/esm/utils/position.js +1 -1
  143. package/esm/utils/prettyBytes.js +1 -1
  144. package/esm/utils/printElement.js +1 -1
  145. package/esm/utils/renderer-event.js +1 -1
  146. package/esm/utils/replaceText.js +1 -1
  147. package/esm/utils/resize-sensor.js +30 -1
  148. package/esm/utils/resolveCondition.js +2 -1
  149. package/esm/utils/resolveVariable.js +1 -1
  150. package/esm/utils/resolveVariableAndFilter.js +1 -1
  151. package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
  152. package/esm/utils/scrollPosition.js +1 -1
  153. package/esm/utils/string2regExp.js +1 -1
  154. package/esm/utils/stripNumber.js +1 -1
  155. package/esm/utils/style-helper.js +1 -1
  156. package/esm/utils/style.js +2 -1
  157. package/esm/utils/toNumber.js +1 -1
  158. package/esm/utils/tokenize.js +1 -1
  159. package/esm/utils/tpl-builtin.js +2 -1
  160. package/esm/utils/tpl-lodash.js +2 -1
  161. package/esm/utils/tpl.js +1 -1
  162. package/esm/utils/uncontrollable.js +1 -1
  163. package/esm/utils/validateId.js +1 -1
  164. package/esm/utils/validations.js +2 -1
  165. package/esm/utils/visitedCache.d.ts +46 -0
  166. package/esm/utils/visitedCache.js +124 -0
  167. package/lib/Root.js +1 -1
  168. package/lib/RootRenderer.js +23 -1
  169. package/lib/SchemaRenderer.d.ts +0 -1
  170. package/lib/SchemaRenderer.js +42 -18
  171. package/lib/Scoped.d.ts +1 -1
  172. package/lib/Scoped.js +2 -1
  173. package/lib/StatusScoped.js +1 -1
  174. package/lib/WithRootStore.js +1 -1
  175. package/lib/WithStore.js +14 -14
  176. package/lib/actions/Action.js +2 -1
  177. package/lib/actions/AjaxAction.js +1 -1
  178. package/lib/actions/BreakAction.js +1 -1
  179. package/lib/actions/BroadcastAction.js +1 -1
  180. package/lib/actions/CmptAction.js +56 -49
  181. package/lib/actions/ContinueAction.js +1 -1
  182. package/lib/actions/CopyAction.js +1 -1
  183. package/lib/actions/CustomAction.js +2 -1
  184. package/lib/actions/DialogAction.js +3 -1
  185. package/lib/actions/DrawerAction.js +2 -1
  186. package/lib/actions/EmailAction.js +1 -1
  187. package/lib/actions/EventAction.js +2 -1
  188. package/lib/actions/LinkAction.js +1 -1
  189. package/lib/actions/LoopAction.js +2 -1
  190. package/lib/actions/PageAction.js +1 -1
  191. package/lib/actions/ParallelAction.js +1 -1
  192. package/lib/actions/PrintAction.js +1 -1
  193. package/lib/actions/StatusAction.js +1 -1
  194. package/lib/actions/SwitchAction.js +1 -1
  195. package/lib/actions/ToastAction.js +2 -2
  196. package/lib/actions/WaitAction.js +1 -1
  197. package/lib/components/CustomStyle.js +1 -1
  198. package/lib/components/ErrorBoundary.js +1 -1
  199. package/lib/components/LazyComponent.d.ts +40 -2
  200. package/lib/components/LazyComponent.js +14 -7
  201. package/lib/components/Overlay.js +2 -1
  202. package/lib/components/PopOver.d.ts +1 -1
  203. package/lib/components/PopOver.js +2 -1
  204. package/lib/env.d.ts +0 -4
  205. package/lib/env.js +1 -1
  206. package/lib/envOverwrite.js +1 -1
  207. package/lib/factory.d.ts +19 -2
  208. package/lib/factory.js +211 -44
  209. package/lib/index.d.ts +4 -4
  210. package/lib/index.js +16 -2
  211. package/lib/locale.d.ts +1 -1
  212. package/lib/locale.js +14 -2
  213. package/lib/polyfills.js +1 -1
  214. package/lib/renderers/Form.d.ts +5 -5
  215. package/lib/renderers/Form.js +65 -26
  216. package/lib/renderers/Item.d.ts +110 -19
  217. package/lib/renderers/Item.js +163 -125
  218. package/lib/renderers/Options.d.ts +3 -3
  219. package/lib/renderers/Options.js +43 -19
  220. package/lib/renderers/Placeholder.js +1 -1
  221. package/lib/renderers/builtin.js +1 -1
  222. package/lib/renderers/register.js +1 -1
  223. package/lib/renderers/wrapControl.d.ts +3 -3
  224. package/lib/renderers/wrapControl.js +25 -10
  225. package/lib/store/app.d.ts +3 -3
  226. package/lib/store/app.js +2 -1
  227. package/lib/store/combo.d.ts +449 -40
  228. package/lib/store/combo.js +1 -1
  229. package/lib/store/crud.d.ts +3 -3
  230. package/lib/store/crud.js +3 -2
  231. package/lib/store/form.d.ts +188 -18
  232. package/lib/store/form.js +29 -6
  233. package/lib/store/formItem.d.ts +5 -0
  234. package/lib/store/formItem.js +32 -10
  235. package/lib/store/iRenderer.d.ts +4 -3
  236. package/lib/store/iRenderer.js +29 -4
  237. package/lib/store/index.d.ts +1 -0
  238. package/lib/store/index.js +3 -1
  239. package/lib/store/list.d.ts +3 -3
  240. package/lib/store/list.js +1 -1
  241. package/lib/store/manager.js +1 -1
  242. package/lib/store/modal.d.ts +3 -3
  243. package/lib/store/modal.js +1 -1
  244. package/lib/store/node.js +1 -1
  245. package/lib/store/pagination.d.ts +3 -3
  246. package/lib/store/pagination.js +2 -1
  247. package/lib/store/root.d.ts +5 -3
  248. package/lib/store/root.js +44 -19
  249. package/lib/store/service.d.ts +3 -3
  250. package/lib/store/service.js +11 -4
  251. package/lib/store/status.js +1 -1
  252. package/lib/store/table.d.ts +416 -57
  253. package/lib/store/table.js +84 -54
  254. package/lib/store/table2.d.ts +3 -3
  255. package/lib/store/table2.js +1 -1
  256. package/lib/theme.d.ts +1 -1
  257. package/lib/theme.js +13 -2
  258. package/lib/types.d.ts +19 -2
  259. package/lib/utils/Animation.js +1 -1
  260. package/lib/utils/ColorScale.js +1 -1
  261. package/lib/utils/DataSchema.js +1 -1
  262. package/lib/utils/DataScope.js +1 -1
  263. package/lib/utils/RootClose.js +1 -1
  264. package/lib/utils/SimpleMap.js +1 -1
  265. package/lib/utils/api.d.ts +21 -1
  266. package/lib/utils/api.js +141 -40
  267. package/lib/utils/arraySlice.js +1 -1
  268. package/lib/utils/attachmentAdpator.js +1 -1
  269. package/lib/utils/autobind.js +1 -1
  270. package/lib/utils/browser.js +1 -1
  271. package/lib/utils/columnsSplit.js +1 -1
  272. package/lib/utils/concatData.js +1 -1
  273. package/lib/utils/dataMapping.js +1 -1
  274. package/lib/utils/date.js +1 -1
  275. package/lib/utils/debug.js +18 -4
  276. package/lib/utils/decodeEntity.js +1 -1
  277. package/lib/utils/dom.js +1 -1
  278. package/lib/utils/errors.js +1 -1
  279. package/lib/utils/escapeHtml.js +1 -1
  280. package/lib/utils/filter-schema.js +1 -1
  281. package/lib/utils/filter.js +1 -1
  282. package/lib/utils/formatDuration.js +1 -1
  283. package/lib/utils/formula.js +2 -1
  284. package/lib/utils/getVariable.js +1 -1
  285. package/lib/utils/grammar.js +1 -1
  286. package/lib/utils/handleAction.js +1 -1
  287. package/lib/utils/helper.d.ts +4 -1
  288. package/lib/utils/helper.js +19 -3
  289. package/lib/utils/highlight.js +1 -1
  290. package/lib/utils/icon.js +1 -1
  291. package/lib/utils/image.js +1 -1
  292. package/lib/utils/isPureVariable.js +2 -2
  293. package/lib/utils/json-schema-2-amis-schema.js +1 -1
  294. package/lib/utils/keyToPath.js +1 -1
  295. package/lib/utils/labelToString.js +4 -1
  296. package/lib/utils/makeSorter.js +1 -1
  297. package/lib/utils/math.js +1 -1
  298. package/lib/utils/memoryParse.d.ts +2 -1
  299. package/lib/utils/memoryParse.js +10 -6
  300. package/lib/utils/normalizeLink.js +1 -1
  301. package/lib/utils/normalizeOptions.js +1 -1
  302. package/lib/utils/object.d.ts +2 -4
  303. package/lib/utils/object.js +1 -1
  304. package/lib/utils/offset.js +1 -1
  305. package/lib/utils/offsetParent.js +1 -1
  306. package/lib/utils/optionValueCompare.js +1 -1
  307. package/lib/utils/position.js +1 -1
  308. package/lib/utils/prettyBytes.js +1 -1
  309. package/lib/utils/printElement.js +1 -1
  310. package/lib/utils/renderer-event.js +1 -1
  311. package/lib/utils/replaceText.js +1 -1
  312. package/lib/utils/resize-sensor.js +30 -1
  313. package/lib/utils/resolveCondition.js +2 -1
  314. package/lib/utils/resolveVariable.js +1 -1
  315. package/lib/utils/resolveVariableAndFilter.js +1 -1
  316. package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
  317. package/lib/utils/scrollPosition.js +1 -1
  318. package/lib/utils/string2regExp.js +1 -1
  319. package/lib/utils/stripNumber.js +1 -1
  320. package/lib/utils/style-helper.js +1 -1
  321. package/lib/utils/style.js +2 -1
  322. package/lib/utils/toNumber.js +1 -1
  323. package/lib/utils/tokenize.js +1 -1
  324. package/lib/utils/tpl-builtin.js +2 -1
  325. package/lib/utils/tpl-lodash.js +2 -1
  326. package/lib/utils/tpl.js +1 -1
  327. package/lib/utils/uncontrollable.js +1 -1
  328. package/lib/utils/validateId.js +1 -1
  329. package/lib/utils/validations.js +2 -1
  330. package/lib/utils/visitedCache.d.ts +46 -0
  331. package/lib/utils/visitedCache.js +128 -0
  332. package/package.json +2 -2
@@ -1,4 +1,3 @@
1
- /// <reference types="lodash" />
2
1
  import { SnapshotIn, IAnyModelType, Instance } from 'mobx-state-tree';
3
2
  import { IFormStore } from './form';
4
3
  export declare enum SELECTED_STATUS {
@@ -33,10 +32,11 @@ export declare const Column: import("mobx-state-tree").IModelType<{
33
32
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
34
33
  }, {
35
34
  readonly isPrimary: boolean;
35
+ readonly columnKey: any;
36
36
  } & {
37
37
  toggleToggle(min?: number): void;
38
38
  setToggled(value: boolean): void;
39
- setEnableSearch(value: boolean): void;
39
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
40
40
  setMinWidth(value: number): void;
41
41
  setWidth(value: number): void;
42
42
  setRealWidth(value: number): void;
@@ -154,15 +154,15 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
154
154
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
155
155
  }, {
156
156
  readonly isPrimary: boolean;
157
+ readonly columnKey: any;
157
158
  } & {
158
159
  toggleToggle(min?: number): void;
159
160
  setToggled(value: boolean): void;
160
- setEnableSearch(value: boolean): void;
161
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
161
162
  setMinWidth(value: number): void;
162
163
  setWidth(value: number): void;
163
164
  setRealWidth(value: number): void;
164
165
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>;
165
- columnsKey: import("mobx-state-tree").IType<string | undefined, string, string>;
166
166
  rows: import("mobx-state-tree").IArrayType<import("mobx-state-tree").IModelType<{
167
167
  storeType: import("mobx-state-tree").IType<string | undefined, string, string>;
168
168
  id: import("mobx-state-tree").ISimpleType<string>;
@@ -330,10 +330,10 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
330
330
  readonly pristineDiff: any;
331
331
  } & {
332
332
  setTopStore(value: any): void;
333
- initData(data?: object, skipSetPristine?: boolean): void;
333
+ initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
334
334
  reset(): void;
335
- updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
336
- changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
335
+ updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
336
+ changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
337
337
  setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
338
338
  openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
339
339
  closeDialog(confirmed?: any, data?: any): void;
@@ -343,6 +343,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
343
343
  getDrawerScoped(): import("..").IScopedContext | null;
344
344
  } & {
345
345
  getSelectionUpperLimit: () => number;
346
+ readonly columnsKey: string;
346
347
  readonly columnsData: ({
347
348
  label: any;
348
349
  type: string;
@@ -370,10 +371,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
370
371
  className: any;
371
372
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
372
373
  readonly isPrimary: boolean;
374
+ readonly columnKey: any;
373
375
  } & {
374
376
  toggleToggle(min?: number): void;
375
377
  setToggled(value: boolean): void;
376
- setEnableSearch(value: boolean): void;
378
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
377
379
  setMinWidth(value: number): void;
378
380
  setWidth(value: number): void;
379
381
  setRealWidth(value: number): void;
@@ -404,10 +406,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
404
406
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
405
407
  }, {
406
408
  readonly isPrimary: boolean;
409
+ readonly columnKey: any;
407
410
  } & {
408
411
  toggleToggle(min?: number): void;
409
412
  setToggled(value: boolean): void;
410
- setEnableSearch(value: boolean): void;
413
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
411
414
  setMinWidth(value: number): void;
412
415
  setWidth(value: number): void;
413
416
  setRealWidth(value: number): void;
@@ -466,10 +469,10 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
466
469
  readonly pristineDiff: any;
467
470
  } & {
468
471
  setTopStore(value: any): void;
469
- initData(data?: object, skipSetPristine?: boolean): void;
472
+ initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
470
473
  reset(): void;
471
- updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
472
- changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
474
+ updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
475
+ changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
473
476
  setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
474
477
  openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
475
478
  closeDialog(confirmed?: any, data?: any): void;
@@ -556,6 +559,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
556
559
  rowIndex: any;
557
560
  pagination: any;
558
561
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
562
+ popOverOpen: boolean;
563
+ popOverData: any;
564
+ popOverSchema: any;
559
565
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
560
566
  readonly parentStore: any;
561
567
  readonly __: any;
@@ -656,7 +662,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
656
662
  resetValidationStatus: (tag?: string | undefined) => void;
657
663
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
658
664
  closeDialog: (confirmed?: any, result?: any) => void;
659
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
665
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
666
+ closePopOver: (confirmed?: any, result?: any) => void;
667
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
660
668
  changeEmitedValue: (value: any) => void;
661
669
  addSubFormItem: (item: {
662
670
  id: string;
@@ -720,6 +728,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
720
728
  rowIndex: any;
721
729
  pagination: any;
722
730
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
731
+ popOverOpen: boolean;
732
+ popOverData: any;
733
+ popOverSchema: any;
723
734
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
724
735
  readonly parentStore: any;
725
736
  readonly __: any;
@@ -806,6 +817,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
806
817
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
807
818
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
808
819
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
820
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
821
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
822
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
809
823
  }, {
810
824
  readonly parentStore: any;
811
825
  readonly __: any;
@@ -896,6 +910,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
896
910
  rowIndex: any;
897
911
  pagination: any;
898
912
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
913
+ popOverOpen: boolean;
914
+ popOverData: any;
915
+ popOverSchema: any;
899
916
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
900
917
  readonly parentStore: any;
901
918
  readonly __: any;
@@ -982,6 +999,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
982
999
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
983
1000
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
984
1001
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
1002
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1003
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
1004
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
985
1005
  }, {
986
1006
  readonly parentStore: any;
987
1007
  readonly __: any;
@@ -1074,6 +1094,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1074
1094
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
1075
1095
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1076
1096
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
1097
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1098
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
1099
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
1077
1100
  }, {
1078
1101
  readonly parentStore: any;
1079
1102
  readonly __: any;
@@ -1174,7 +1197,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1174
1197
  resetValidationStatus: (tag?: string | undefined) => void;
1175
1198
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
1176
1199
  closeDialog: (confirmed?: any, result?: any) => void;
1177
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
1200
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
1201
+ closePopOver: (confirmed?: any, result?: any) => void;
1202
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
1178
1203
  changeEmitedValue: (value: any) => void;
1179
1204
  addSubFormItem: (item: {
1180
1205
  id: string;
@@ -1238,6 +1263,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1238
1263
  rowIndex: any;
1239
1264
  pagination: any;
1240
1265
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
1266
+ popOverOpen: boolean;
1267
+ popOverData: any;
1268
+ popOverSchema: any;
1241
1269
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1242
1270
  readonly parentStore: any;
1243
1271
  readonly __: any;
@@ -1324,6 +1352,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1324
1352
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
1325
1353
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1326
1354
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
1355
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1356
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
1357
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
1327
1358
  }, {
1328
1359
  readonly parentStore: any;
1329
1360
  readonly __: any;
@@ -1414,6 +1445,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1414
1445
  rowIndex: any;
1415
1446
  pagination: any;
1416
1447
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
1448
+ popOverOpen: boolean;
1449
+ popOverData: any;
1450
+ popOverSchema: any;
1417
1451
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1418
1452
  readonly parentStore: any;
1419
1453
  readonly __: any;
@@ -1500,6 +1534,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1500
1534
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
1501
1535
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1502
1536
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
1537
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1538
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
1539
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
1503
1540
  }, {
1504
1541
  readonly parentStore: any;
1505
1542
  readonly __: any;
@@ -1596,6 +1633,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1596
1633
  rowIndex: any;
1597
1634
  pagination: any;
1598
1635
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
1636
+ popOverOpen: boolean;
1637
+ popOverData: any;
1638
+ popOverSchema: any;
1599
1639
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1600
1640
  readonly parentStore: any;
1601
1641
  readonly __: any;
@@ -1696,7 +1736,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1696
1736
  resetValidationStatus: (tag?: string | undefined) => void;
1697
1737
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
1698
1738
  closeDialog: (confirmed?: any, result?: any) => void;
1699
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
1739
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
1740
+ closePopOver: (confirmed?: any, result?: any) => void;
1741
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
1700
1742
  changeEmitedValue: (value: any) => void;
1701
1743
  addSubFormItem: (item: {
1702
1744
  id: string;
@@ -1760,6 +1802,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1760
1802
  rowIndex: any;
1761
1803
  pagination: any;
1762
1804
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
1805
+ popOverOpen: boolean;
1806
+ popOverData: any;
1807
+ popOverSchema: any;
1763
1808
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1764
1809
  readonly parentStore: any;
1765
1810
  readonly __: any;
@@ -1846,6 +1891,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1846
1891
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
1847
1892
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
1848
1893
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
1894
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
1895
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
1896
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
1849
1897
  }, {
1850
1898
  readonly parentStore: any;
1851
1899
  readonly __: any;
@@ -1936,6 +1984,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
1936
1984
  rowIndex: any;
1937
1985
  pagination: any;
1938
1986
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
1987
+ popOverOpen: boolean;
1988
+ popOverData: any;
1989
+ popOverSchema: any;
1939
1990
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
1940
1991
  readonly parentStore: any;
1941
1992
  readonly __: any;
@@ -2022,6 +2073,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2022
2073
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
2023
2074
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2024
2075
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
2076
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2077
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
2078
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
2025
2079
  }, {
2026
2080
  readonly parentStore: any;
2027
2081
  readonly __: any;
@@ -2114,6 +2168,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2114
2168
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
2115
2169
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2116
2170
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
2171
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2172
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
2173
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
2117
2174
  }, {
2118
2175
  readonly parentStore: any;
2119
2176
  readonly __: any;
@@ -2214,7 +2271,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2214
2271
  resetValidationStatus: (tag?: string | undefined) => void;
2215
2272
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
2216
2273
  closeDialog: (confirmed?: any, result?: any) => void;
2217
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
2274
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
2275
+ closePopOver: (confirmed?: any, result?: any) => void;
2276
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
2218
2277
  changeEmitedValue: (value: any) => void;
2219
2278
  addSubFormItem: (item: {
2220
2279
  id: string;
@@ -2278,6 +2337,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2278
2337
  rowIndex: any;
2279
2338
  pagination: any;
2280
2339
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
2340
+ popOverOpen: boolean;
2341
+ popOverData: any;
2342
+ popOverSchema: any;
2281
2343
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2282
2344
  readonly parentStore: any;
2283
2345
  readonly __: any;
@@ -2364,6 +2426,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2364
2426
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
2365
2427
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2366
2428
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
2429
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2430
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
2431
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
2367
2432
  }, {
2368
2433
  readonly parentStore: any;
2369
2434
  readonly __: any;
@@ -2454,6 +2519,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2454
2519
  rowIndex: any;
2455
2520
  pagination: any;
2456
2521
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
2522
+ popOverOpen: boolean;
2523
+ popOverData: any;
2524
+ popOverSchema: any;
2457
2525
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2458
2526
  readonly parentStore: any;
2459
2527
  readonly __: any;
@@ -2540,6 +2608,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2540
2608
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
2541
2609
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2542
2610
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
2611
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2612
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
2613
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
2543
2614
  }, {
2544
2615
  readonly parentStore: any;
2545
2616
  readonly __: any;
@@ -2641,6 +2712,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2641
2712
  rowIndex: any;
2642
2713
  pagination: any;
2643
2714
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
2715
+ popOverOpen: boolean;
2716
+ popOverData: any;
2717
+ popOverSchema: any;
2644
2718
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2645
2719
  readonly parentStore: any;
2646
2720
  readonly __: any;
@@ -2741,7 +2815,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2741
2815
  resetValidationStatus: (tag?: string | undefined) => void;
2742
2816
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
2743
2817
  closeDialog: (confirmed?: any, result?: any) => void;
2744
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
2818
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
2819
+ closePopOver: (confirmed?: any, result?: any) => void;
2820
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
2745
2821
  changeEmitedValue: (value: any) => void;
2746
2822
  addSubFormItem: (item: {
2747
2823
  id: string;
@@ -2805,6 +2881,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2805
2881
  rowIndex: any;
2806
2882
  pagination: any;
2807
2883
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
2884
+ popOverOpen: boolean;
2885
+ popOverData: any;
2886
+ popOverSchema: any;
2808
2887
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2809
2888
  readonly parentStore: any;
2810
2889
  readonly __: any;
@@ -2891,6 +2970,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2891
2970
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
2892
2971
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
2893
2972
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
2973
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
2974
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
2975
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
2894
2976
  }, {
2895
2977
  readonly parentStore: any;
2896
2978
  readonly __: any;
@@ -2981,6 +3063,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
2981
3063
  rowIndex: any;
2982
3064
  pagination: any;
2983
3065
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
3066
+ popOverOpen: boolean;
3067
+ popOverData: any;
3068
+ popOverSchema: any;
2984
3069
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
2985
3070
  readonly parentStore: any;
2986
3071
  readonly __: any;
@@ -3067,6 +3152,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3067
3152
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
3068
3153
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3069
3154
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
3155
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3156
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
3157
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
3070
3158
  }, {
3071
3159
  readonly parentStore: any;
3072
3160
  readonly __: any;
@@ -3159,6 +3247,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3159
3247
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
3160
3248
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3161
3249
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
3250
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3251
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
3252
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
3162
3253
  }, {
3163
3254
  readonly parentStore: any;
3164
3255
  readonly __: any;
@@ -3259,7 +3350,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3259
3350
  resetValidationStatus: (tag?: string | undefined) => void;
3260
3351
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
3261
3352
  closeDialog: (confirmed?: any, result?: any) => void;
3262
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
3353
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
3354
+ closePopOver: (confirmed?: any, result?: any) => void;
3355
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
3263
3356
  changeEmitedValue: (value: any) => void;
3264
3357
  addSubFormItem: (item: {
3265
3358
  id: string;
@@ -3323,6 +3416,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3323
3416
  rowIndex: any;
3324
3417
  pagination: any;
3325
3418
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
3419
+ popOverOpen: boolean;
3420
+ popOverData: any;
3421
+ popOverSchema: any;
3326
3422
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3327
3423
  readonly parentStore: any;
3328
3424
  readonly __: any;
@@ -3409,6 +3505,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3409
3505
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
3410
3506
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3411
3507
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
3508
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3509
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
3510
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
3412
3511
  }, {
3413
3512
  readonly parentStore: any;
3414
3513
  readonly __: any;
@@ -3499,6 +3598,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3499
3598
  rowIndex: any;
3500
3599
  pagination: any;
3501
3600
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
3601
+ popOverOpen: boolean;
3602
+ popOverData: any;
3603
+ popOverSchema: any;
3502
3604
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3503
3605
  readonly parentStore: any;
3504
3606
  readonly __: any;
@@ -3585,6 +3687,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3585
3687
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
3586
3688
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3587
3689
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
3690
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
3691
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
3692
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
3588
3693
  }, {
3589
3694
  readonly parentStore: any;
3590
3695
  readonly __: any;
@@ -3681,6 +3786,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3681
3786
  rowIndex: any;
3682
3787
  pagination: any;
3683
3788
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
3789
+ popOverOpen: boolean;
3790
+ popOverData: any;
3791
+ popOverSchema: any;
3684
3792
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3685
3793
  readonly parentStore: any;
3686
3794
  readonly __: any;
@@ -3781,7 +3889,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3781
3889
  resetValidationStatus: (tag?: string | undefined) => void;
3782
3890
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
3783
3891
  closeDialog: (confirmed?: any, result?: any) => void;
3784
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
3892
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
3893
+ closePopOver: (confirmed?: any, result?: any) => void;
3894
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
3785
3895
  changeEmitedValue: (value: any) => void;
3786
3896
  addSubFormItem: (item: {
3787
3897
  id: string;
@@ -3845,6 +3955,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3845
3955
  rowIndex: any;
3846
3956
  pagination: any;
3847
3957
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
3958
+ popOverOpen: boolean;
3959
+ popOverData: any;
3960
+ popOverSchema: any;
3848
3961
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
3849
3962
  readonly parentStore: any;
3850
3963
  readonly __: any;
@@ -3931,6 +4044,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
3931
4044
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
3932
4045
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
3933
4046
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
4047
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
4048
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
4049
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
3934
4050
  }, {
3935
4051
  readonly parentStore: any;
3936
4052
  readonly __: any;
@@ -4021,6 +4137,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4021
4137
  rowIndex: any;
4022
4138
  pagination: any;
4023
4139
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
4140
+ popOverOpen: boolean;
4141
+ popOverData: any;
4142
+ popOverSchema: any;
4024
4143
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4025
4144
  readonly parentStore: any;
4026
4145
  readonly __: any;
@@ -4107,6 +4226,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4107
4226
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
4108
4227
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4109
4228
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
4229
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
4230
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
4231
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
4110
4232
  }, {
4111
4233
  readonly parentStore: any;
4112
4234
  readonly __: any;
@@ -4199,6 +4321,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4199
4321
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
4200
4322
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4201
4323
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
4324
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
4325
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
4326
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
4202
4327
  }, {
4203
4328
  readonly parentStore: any;
4204
4329
  readonly __: any;
@@ -4299,7 +4424,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4299
4424
  resetValidationStatus: (tag?: string | undefined) => void;
4300
4425
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
4301
4426
  closeDialog: (confirmed?: any, result?: any) => void;
4302
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
4427
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
4428
+ closePopOver: (confirmed?: any, result?: any) => void;
4429
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
4303
4430
  changeEmitedValue: (value: any) => void;
4304
4431
  addSubFormItem: (item: {
4305
4432
  id: string;
@@ -4363,6 +4490,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4363
4490
  rowIndex: any;
4364
4491
  pagination: any;
4365
4492
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
4493
+ popOverOpen: boolean;
4494
+ popOverData: any;
4495
+ popOverSchema: any;
4366
4496
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4367
4497
  readonly parentStore: any;
4368
4498
  readonly __: any;
@@ -4449,6 +4579,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4449
4579
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
4450
4580
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4451
4581
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
4582
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
4583
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
4584
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
4452
4585
  }, {
4453
4586
  readonly parentStore: any;
4454
4587
  readonly __: any;
@@ -4539,6 +4672,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4539
4672
  rowIndex: any;
4540
4673
  pagination: any;
4541
4674
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
4675
+ popOverOpen: boolean;
4676
+ popOverData: any;
4677
+ popOverSchema: any;
4542
4678
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4543
4679
  readonly parentStore: any;
4544
4680
  readonly __: any;
@@ -4625,6 +4761,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4625
4761
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
4626
4762
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4627
4763
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
4764
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
4765
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
4766
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
4628
4767
  }, {
4629
4768
  readonly parentStore: any;
4630
4769
  readonly __: any;
@@ -4721,6 +4860,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4721
4860
  rowIndex: any;
4722
4861
  pagination: any;
4723
4862
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
4863
+ popOverOpen: boolean;
4864
+ popOverData: any;
4865
+ popOverSchema: any;
4724
4866
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4725
4867
  readonly parentStore: any;
4726
4868
  readonly __: any;
@@ -4821,7 +4963,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4821
4963
  resetValidationStatus: (tag?: string | undefined) => void;
4822
4964
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
4823
4965
  closeDialog: (confirmed?: any, result?: any) => void;
4824
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
4966
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
4967
+ closePopOver: (confirmed?: any, result?: any) => void;
4968
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
4825
4969
  changeEmitedValue: (value: any) => void;
4826
4970
  addSubFormItem: (item: {
4827
4971
  id: string;
@@ -4885,6 +5029,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4885
5029
  rowIndex: any;
4886
5030
  pagination: any;
4887
5031
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
5032
+ popOverOpen: boolean;
5033
+ popOverData: any;
5034
+ popOverSchema: any;
4888
5035
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
4889
5036
  readonly parentStore: any;
4890
5037
  readonly __: any;
@@ -4971,6 +5118,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
4971
5118
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
4972
5119
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
4973
5120
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
5121
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
5122
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
5123
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
4974
5124
  }, {
4975
5125
  readonly parentStore: any;
4976
5126
  readonly __: any;
@@ -5061,6 +5211,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5061
5211
  rowIndex: any;
5062
5212
  pagination: any;
5063
5213
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
5214
+ popOverOpen: boolean;
5215
+ popOverData: any;
5216
+ popOverSchema: any;
5064
5217
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
5065
5218
  readonly parentStore: any;
5066
5219
  readonly __: any;
@@ -5147,6 +5300,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5147
5300
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
5148
5301
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5149
5302
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
5303
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
5304
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
5305
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
5150
5306
  }, {
5151
5307
  readonly parentStore: any;
5152
5308
  readonly __: any;
@@ -5239,6 +5395,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5239
5395
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
5240
5396
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5241
5397
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
5398
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
5399
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
5400
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
5242
5401
  }, {
5243
5402
  readonly parentStore: any;
5244
5403
  readonly __: any;
@@ -5339,7 +5498,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5339
5498
  resetValidationStatus: (tag?: string | undefined) => void;
5340
5499
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
5341
5500
  closeDialog: (confirmed?: any, result?: any) => void;
5342
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
5501
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
5502
+ closePopOver: (confirmed?: any, result?: any) => void;
5503
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
5343
5504
  changeEmitedValue: (value: any) => void;
5344
5505
  addSubFormItem: (item: {
5345
5506
  id: string;
@@ -5403,6 +5564,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5403
5564
  rowIndex: any;
5404
5565
  pagination: any;
5405
5566
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
5567
+ popOverOpen: boolean;
5568
+ popOverData: any;
5569
+ popOverSchema: any;
5406
5570
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
5407
5571
  readonly parentStore: any;
5408
5572
  readonly __: any;
@@ -5489,6 +5653,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5489
5653
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
5490
5654
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5491
5655
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
5656
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
5657
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
5658
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
5492
5659
  }, {
5493
5660
  readonly parentStore: any;
5494
5661
  readonly __: any;
@@ -5579,6 +5746,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5579
5746
  rowIndex: any;
5580
5747
  pagination: any;
5581
5748
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
5749
+ popOverOpen: boolean;
5750
+ popOverData: any;
5751
+ popOverSchema: any;
5582
5752
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
5583
5753
  readonly parentStore: any;
5584
5754
  readonly __: any;
@@ -5665,6 +5835,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5665
5835
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
5666
5836
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
5667
5837
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
5838
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
5839
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
5840
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
5668
5841
  }, {
5669
5842
  readonly parentStore: any;
5670
5843
  readonly __: any;
@@ -5706,8 +5879,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5706
5879
  readonly persistKey: string;
5707
5880
  } & {
5708
5881
  setInited: (value: boolean) => void;
5709
- setValues: (values: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined) => void;
5710
- setValueByName: (name: string, value: any, isPristine?: boolean, force?: boolean) => void;
5882
+ setValues: (values: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined) => void;
5883
+ setValueByName: (name: string, value: any, isPristine?: boolean, force?: boolean, changeReason?: import("..").DataChangeReason | undefined) => void;
5711
5884
  trimValues: () => void;
5712
5885
  submit: (fn?: ((values: object) => Promise<any>) | undefined, hooks?: (() => Promise<any>)[] | undefined, failedMessage?: string | undefined, validateErrCb?: (() => void) | undefined, throwErrors?: boolean | undefined) => Promise<any>;
5713
5886
  validate: (hooks?: (() => Promise<any>)[] | undefined, forceValidate?: boolean | undefined, throwErrors?: boolean | undefined, failedMessage?: string | undefined, validateErrCb?: (() => void) | undefined) => Promise<boolean>;
@@ -5722,10 +5895,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5722
5895
  reset: (cb?: ((data: any) => void) | undefined, resetData?: boolean) => void;
5723
5896
  syncOptions: import("lodash").DebouncedFunc<() => void>;
5724
5897
  setCanAccessSuperData: (value?: boolean) => void;
5725
- deleteValueByName: (name: string) => void;
5898
+ deleteValueByName: (name: string, changeReason?: import("..").DataChangeReason | undefined) => void;
5726
5899
  getLocalPersistData: () => void;
5727
5900
  setLocalPersistData: (keys?: string[] | undefined) => void;
5728
5901
  clearLocalPersistData: () => void;
5902
+ setPristine: (data: object) => void;
5729
5903
  setPersistData: (value?: string) => void;
5730
5904
  clear: (cb?: ((data: any) => void) | undefined) => void;
5731
5905
  updateSavedData: () => void;
@@ -5793,10 +5967,10 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5793
5967
  readonly pristineDiff: any;
5794
5968
  } & {
5795
5969
  setTopStore(value: any): void;
5796
- initData(data?: object, skipSetPristine?: boolean): void;
5970
+ initData(data?: object, skipSetPristine?: boolean, changeReason?: import("..").DataChangeReason | undefined): void;
5797
5971
  reset(): void;
5798
- updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined): void;
5799
- changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined): void;
5972
+ updateData(data?: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
5973
+ changeValue(name: string, value: any, changePristine?: boolean | undefined, force?: boolean | undefined, otherModifier?: ((data: Object) => void) | undefined, changeReason?: import("..").DataChangeReason | undefined): void;
5800
5974
  setCurrentAction(action: any, resolveDefinitions?: ((schema: any) => any) | undefined): void;
5801
5975
  openDialog(ctx: any, additonal?: object | undefined, callback?: ((confirmed: boolean, values: any) => void) | undefined, scoped?: import("..").IScopedContext | undefined): void;
5802
5976
  closeDialog(confirmed?: any, data?: any): void;
@@ -5883,6 +6057,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5883
6057
  rowIndex: any;
5884
6058
  pagination: any;
5885
6059
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
6060
+ popOverOpen: boolean;
6061
+ popOverData: any;
6062
+ popOverSchema: any;
5886
6063
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
5887
6064
  readonly parentStore: any;
5888
6065
  readonly __: any;
@@ -5983,7 +6160,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
5983
6160
  resetValidationStatus: (tag?: string | undefined) => void;
5984
6161
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
5985
6162
  closeDialog: (confirmed?: any, result?: any) => void;
5986
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
6163
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
6164
+ closePopOver: (confirmed?: any, result?: any) => void;
6165
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
5987
6166
  changeEmitedValue: (value: any) => void;
5988
6167
  addSubFormItem: (item: {
5989
6168
  id: string;
@@ -6047,6 +6226,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6047
6226
  rowIndex: any;
6048
6227
  pagination: any;
6049
6228
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
6229
+ popOverOpen: boolean;
6230
+ popOverData: any;
6231
+ popOverSchema: any;
6050
6232
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6051
6233
  readonly parentStore: any;
6052
6234
  readonly __: any;
@@ -6133,6 +6315,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6133
6315
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
6134
6316
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6135
6317
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
6318
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
6319
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
6320
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
6136
6321
  }, {
6137
6322
  readonly parentStore: any;
6138
6323
  readonly __: any;
@@ -6223,6 +6408,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6223
6408
  rowIndex: any;
6224
6409
  pagination: any;
6225
6410
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
6411
+ popOverOpen: boolean;
6412
+ popOverData: any;
6413
+ popOverSchema: any;
6226
6414
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6227
6415
  readonly parentStore: any;
6228
6416
  readonly __: any;
@@ -6309,6 +6497,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6309
6497
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
6310
6498
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6311
6499
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
6500
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
6501
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
6502
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
6312
6503
  }, {
6313
6504
  readonly parentStore: any;
6314
6505
  readonly __: any;
@@ -6401,6 +6592,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6401
6592
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
6402
6593
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6403
6594
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
6595
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
6596
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
6597
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
6404
6598
  }, {
6405
6599
  readonly parentStore: any;
6406
6600
  readonly __: any;
@@ -6501,7 +6695,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6501
6695
  resetValidationStatus: (tag?: string | undefined) => void;
6502
6696
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
6503
6697
  closeDialog: (confirmed?: any, result?: any) => void;
6504
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
6698
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
6699
+ closePopOver: (confirmed?: any, result?: any) => void;
6700
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
6505
6701
  changeEmitedValue: (value: any) => void;
6506
6702
  addSubFormItem: (item: {
6507
6703
  id: string;
@@ -6565,6 +6761,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6565
6761
  rowIndex: any;
6566
6762
  pagination: any;
6567
6763
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
6764
+ popOverOpen: boolean;
6765
+ popOverData: any;
6766
+ popOverSchema: any;
6568
6767
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6569
6768
  readonly parentStore: any;
6570
6769
  readonly __: any;
@@ -6651,6 +6850,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6651
6850
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
6652
6851
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6653
6852
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
6853
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
6854
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
6855
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
6654
6856
  }, {
6655
6857
  readonly parentStore: any;
6656
6858
  readonly __: any;
@@ -6741,6 +6943,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6741
6943
  rowIndex: any;
6742
6944
  pagination: any;
6743
6945
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
6946
+ popOverOpen: boolean;
6947
+ popOverData: any;
6948
+ popOverSchema: any;
6744
6949
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6745
6950
  readonly parentStore: any;
6746
6951
  readonly __: any;
@@ -6827,6 +7032,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6827
7032
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
6828
7033
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
6829
7034
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
7035
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
7036
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
7037
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
6830
7038
  }, {
6831
7039
  readonly parentStore: any;
6832
7040
  readonly __: any;
@@ -6923,6 +7131,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
6923
7131
  rowIndex: any;
6924
7132
  pagination: any;
6925
7133
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
7134
+ popOverOpen: boolean;
7135
+ popOverData: any;
7136
+ popOverSchema: any;
6926
7137
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
6927
7138
  readonly parentStore: any;
6928
7139
  readonly __: any;
@@ -7023,7 +7234,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7023
7234
  resetValidationStatus: (tag?: string | undefined) => void;
7024
7235
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
7025
7236
  closeDialog: (confirmed?: any, result?: any) => void;
7026
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
7237
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
7238
+ closePopOver: (confirmed?: any, result?: any) => void;
7239
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
7027
7240
  changeEmitedValue: (value: any) => void;
7028
7241
  addSubFormItem: (item: {
7029
7242
  id: string;
@@ -7087,6 +7300,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7087
7300
  rowIndex: any;
7088
7301
  pagination: any;
7089
7302
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
7303
+ popOverOpen: boolean;
7304
+ popOverData: any;
7305
+ popOverSchema: any;
7090
7306
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7091
7307
  readonly parentStore: any;
7092
7308
  readonly __: any;
@@ -7173,6 +7389,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7173
7389
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
7174
7390
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7175
7391
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
7392
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
7393
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
7394
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
7176
7395
  }, {
7177
7396
  readonly parentStore: any;
7178
7397
  readonly __: any;
@@ -7263,6 +7482,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7263
7482
  rowIndex: any;
7264
7483
  pagination: any;
7265
7484
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
7485
+ popOverOpen: boolean;
7486
+ popOverData: any;
7487
+ popOverSchema: any;
7266
7488
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7267
7489
  readonly parentStore: any;
7268
7490
  readonly __: any;
@@ -7349,6 +7571,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7349
7571
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
7350
7572
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7351
7573
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
7574
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
7575
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
7576
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
7352
7577
  }, {
7353
7578
  readonly parentStore: any;
7354
7579
  readonly __: any;
@@ -7441,6 +7666,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7441
7666
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
7442
7667
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7443
7668
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
7669
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
7670
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
7671
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
7444
7672
  }, {
7445
7673
  readonly parentStore: any;
7446
7674
  readonly __: any;
@@ -7541,7 +7769,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7541
7769
  resetValidationStatus: (tag?: string | undefined) => void;
7542
7770
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
7543
7771
  closeDialog: (confirmed?: any, result?: any) => void;
7544
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
7772
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
7773
+ closePopOver: (confirmed?: any, result?: any) => void;
7774
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
7545
7775
  changeEmitedValue: (value: any) => void;
7546
7776
  addSubFormItem: (item: {
7547
7777
  id: string;
@@ -7605,6 +7835,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7605
7835
  rowIndex: any;
7606
7836
  pagination: any;
7607
7837
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
7838
+ popOverOpen: boolean;
7839
+ popOverData: any;
7840
+ popOverSchema: any;
7608
7841
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7609
7842
  readonly parentStore: any;
7610
7843
  readonly __: any;
@@ -7691,6 +7924,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7691
7924
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
7692
7925
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7693
7926
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
7927
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
7928
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
7929
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
7694
7930
  }, {
7695
7931
  readonly parentStore: any;
7696
7932
  readonly __: any;
@@ -7781,6 +8017,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7781
8017
  rowIndex: any;
7782
8018
  pagination: any;
7783
8019
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
8020
+ popOverOpen: boolean;
8021
+ popOverData: any;
8022
+ popOverSchema: any;
7784
8023
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7785
8024
  readonly parentStore: any;
7786
8025
  readonly __: any;
@@ -7867,6 +8106,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7867
8106
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
7868
8107
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
7869
8108
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
8109
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
8110
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
8111
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
7870
8112
  }, {
7871
8113
  readonly parentStore: any;
7872
8114
  readonly __: any;
@@ -7968,6 +8210,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
7968
8210
  rowIndex: any;
7969
8211
  pagination: any;
7970
8212
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
8213
+ popOverOpen: boolean;
8214
+ popOverData: any;
8215
+ popOverSchema: any;
7971
8216
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
7972
8217
  readonly parentStore: any;
7973
8218
  readonly __: any;
@@ -8068,7 +8313,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8068
8313
  resetValidationStatus: (tag?: string | undefined) => void;
8069
8314
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
8070
8315
  closeDialog: (confirmed?: any, result?: any) => void;
8071
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
8316
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
8317
+ closePopOver: (confirmed?: any, result?: any) => void;
8318
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
8072
8319
  changeEmitedValue: (value: any) => void;
8073
8320
  addSubFormItem: (item: {
8074
8321
  id: string;
@@ -8132,6 +8379,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8132
8379
  rowIndex: any;
8133
8380
  pagination: any;
8134
8381
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
8382
+ popOverOpen: boolean;
8383
+ popOverData: any;
8384
+ popOverSchema: any;
8135
8385
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
8136
8386
  readonly parentStore: any;
8137
8387
  readonly __: any;
@@ -8218,6 +8468,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8218
8468
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
8219
8469
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8220
8470
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
8471
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
8472
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
8473
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
8221
8474
  }, {
8222
8475
  readonly parentStore: any;
8223
8476
  readonly __: any;
@@ -8308,6 +8561,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8308
8561
  rowIndex: any;
8309
8562
  pagination: any;
8310
8563
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
8564
+ popOverOpen: boolean;
8565
+ popOverData: any;
8566
+ popOverSchema: any;
8311
8567
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
8312
8568
  readonly parentStore: any;
8313
8569
  readonly __: any;
@@ -8394,6 +8650,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8394
8650
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
8395
8651
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8396
8652
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
8653
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
8654
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
8655
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
8397
8656
  }, {
8398
8657
  readonly parentStore: any;
8399
8658
  readonly __: any;
@@ -8486,6 +8745,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8486
8745
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
8487
8746
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8488
8747
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
8748
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
8749
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
8750
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
8489
8751
  }, {
8490
8752
  readonly parentStore: any;
8491
8753
  readonly __: any;
@@ -8586,7 +8848,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8586
8848
  resetValidationStatus: (tag?: string | undefined) => void;
8587
8849
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
8588
8850
  closeDialog: (confirmed?: any, result?: any) => void;
8589
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
8851
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
8852
+ closePopOver: (confirmed?: any, result?: any) => void;
8853
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
8590
8854
  changeEmitedValue: (value: any) => void;
8591
8855
  addSubFormItem: (item: {
8592
8856
  id: string;
@@ -8650,6 +8914,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8650
8914
  rowIndex: any;
8651
8915
  pagination: any;
8652
8916
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
8917
+ popOverOpen: boolean;
8918
+ popOverData: any;
8919
+ popOverSchema: any;
8653
8920
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
8654
8921
  readonly parentStore: any;
8655
8922
  readonly __: any;
@@ -8736,6 +9003,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8736
9003
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
8737
9004
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8738
9005
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
9006
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
9007
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
9008
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
8739
9009
  }, {
8740
9010
  readonly parentStore: any;
8741
9011
  readonly __: any;
@@ -8826,6 +9096,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8826
9096
  rowIndex: any;
8827
9097
  pagination: any;
8828
9098
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
9099
+ popOverOpen: boolean;
9100
+ popOverData: any;
9101
+ popOverSchema: any;
8829
9102
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
8830
9103
  readonly parentStore: any;
8831
9104
  readonly __: any;
@@ -8912,6 +9185,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
8912
9185
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
8913
9186
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
8914
9187
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
9188
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
9189
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
9190
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
8915
9191
  }, {
8916
9192
  readonly parentStore: any;
8917
9193
  readonly __: any;
@@ -9008,6 +9284,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9008
9284
  rowIndex: any;
9009
9285
  pagination: any;
9010
9286
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
9287
+ popOverOpen: boolean;
9288
+ popOverData: any;
9289
+ popOverSchema: any;
9011
9290
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
9012
9291
  readonly parentStore: any;
9013
9292
  readonly __: any;
@@ -9108,7 +9387,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9108
9387
  resetValidationStatus: (tag?: string | undefined) => void;
9109
9388
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
9110
9389
  closeDialog: (confirmed?: any, result?: any) => void;
9111
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
9390
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
9391
+ closePopOver: (confirmed?: any, result?: any) => void;
9392
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
9112
9393
  changeEmitedValue: (value: any) => void;
9113
9394
  addSubFormItem: (item: {
9114
9395
  id: string;
@@ -9172,6 +9453,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9172
9453
  rowIndex: any;
9173
9454
  pagination: any;
9174
9455
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
9456
+ popOverOpen: boolean;
9457
+ popOverData: any;
9458
+ popOverSchema: any;
9175
9459
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
9176
9460
  readonly parentStore: any;
9177
9461
  readonly __: any;
@@ -9258,6 +9542,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9258
9542
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
9259
9543
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9260
9544
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
9545
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
9546
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
9547
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
9261
9548
  }, {
9262
9549
  readonly parentStore: any;
9263
9550
  readonly __: any;
@@ -9348,6 +9635,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9348
9635
  rowIndex: any;
9349
9636
  pagination: any;
9350
9637
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
9638
+ popOverOpen: boolean;
9639
+ popOverData: any;
9640
+ popOverSchema: any;
9351
9641
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
9352
9642
  readonly parentStore: any;
9353
9643
  readonly __: any;
@@ -9434,6 +9724,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9434
9724
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
9435
9725
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9436
9726
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
9727
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
9728
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
9729
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
9437
9730
  }, {
9438
9731
  readonly parentStore: any;
9439
9732
  readonly __: any;
@@ -9526,6 +9819,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9526
9819
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
9527
9820
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9528
9821
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
9822
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
9823
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
9824
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
9529
9825
  }, {
9530
9826
  readonly parentStore: any;
9531
9827
  readonly __: any;
@@ -9626,7 +9922,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9626
9922
  resetValidationStatus: (tag?: string | undefined) => void;
9627
9923
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
9628
9924
  closeDialog: (confirmed?: any, result?: any) => void;
9629
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
9925
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
9926
+ closePopOver: (confirmed?: any, result?: any) => void;
9927
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
9630
9928
  changeEmitedValue: (value: any) => void;
9631
9929
  addSubFormItem: (item: {
9632
9930
  id: string;
@@ -9690,6 +9988,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9690
9988
  rowIndex: any;
9691
9989
  pagination: any;
9692
9990
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
9991
+ popOverOpen: boolean;
9992
+ popOverData: any;
9993
+ popOverSchema: any;
9693
9994
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
9694
9995
  readonly parentStore: any;
9695
9996
  readonly __: any;
@@ -9776,6 +10077,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9776
10077
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
9777
10078
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9778
10079
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
10080
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
10081
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
10082
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
9779
10083
  }, {
9780
10084
  readonly parentStore: any;
9781
10085
  readonly __: any;
@@ -9866,6 +10170,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9866
10170
  rowIndex: any;
9867
10171
  pagination: any;
9868
10172
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
10173
+ popOverOpen: boolean;
10174
+ popOverData: any;
10175
+ popOverSchema: any;
9869
10176
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
9870
10177
  readonly parentStore: any;
9871
10178
  readonly __: any;
@@ -9952,6 +10259,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
9952
10259
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
9953
10260
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
9954
10261
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
10262
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
10263
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
10264
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
9955
10265
  }, {
9956
10266
  readonly parentStore: any;
9957
10267
  readonly __: any;
@@ -10048,6 +10358,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10048
10358
  rowIndex: any;
10049
10359
  pagination: any;
10050
10360
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
10361
+ popOverOpen: boolean;
10362
+ popOverData: any;
10363
+ popOverSchema: any;
10051
10364
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
10052
10365
  readonly parentStore: any;
10053
10366
  readonly __: any;
@@ -10148,7 +10461,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10148
10461
  resetValidationStatus: (tag?: string | undefined) => void;
10149
10462
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
10150
10463
  closeDialog: (confirmed?: any, result?: any) => void;
10151
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
10464
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
10465
+ closePopOver: (confirmed?: any, result?: any) => void;
10466
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
10152
10467
  changeEmitedValue: (value: any) => void;
10153
10468
  addSubFormItem: (item: {
10154
10469
  id: string;
@@ -10212,6 +10527,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10212
10527
  rowIndex: any;
10213
10528
  pagination: any;
10214
10529
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
10530
+ popOverOpen: boolean;
10531
+ popOverData: any;
10532
+ popOverSchema: any;
10215
10533
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
10216
10534
  readonly parentStore: any;
10217
10535
  readonly __: any;
@@ -10298,6 +10616,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10298
10616
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
10299
10617
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10300
10618
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
10619
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
10620
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
10621
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
10301
10622
  }, {
10302
10623
  readonly parentStore: any;
10303
10624
  readonly __: any;
@@ -10388,6 +10709,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10388
10709
  rowIndex: any;
10389
10710
  pagination: any;
10390
10711
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
10712
+ popOverOpen: boolean;
10713
+ popOverData: any;
10714
+ popOverSchema: any;
10391
10715
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
10392
10716
  readonly parentStore: any;
10393
10717
  readonly __: any;
@@ -10474,6 +10798,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10474
10798
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
10475
10799
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10476
10800
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
10801
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
10802
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
10803
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
10477
10804
  }, {
10478
10805
  readonly parentStore: any;
10479
10806
  readonly __: any;
@@ -10566,6 +10893,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10566
10893
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
10567
10894
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10568
10895
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
10896
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
10897
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
10898
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
10569
10899
  }, {
10570
10900
  readonly parentStore: any;
10571
10901
  readonly __: any;
@@ -10666,7 +10996,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10666
10996
  resetValidationStatus: (tag?: string | undefined) => void;
10667
10997
  openDialog: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
10668
10998
  closeDialog: (confirmed?: any, result?: any) => void;
10669
- changeTmpValue: (value: any, changeReason?: "input" | "initialValue" | "formInited" | "dataChanged" | "formulaChanged" | "controlled" | "defaultValue" | undefined) => void;
10999
+ openPopOver: (schema: any, ctx: any, callback?: ((confirmed?: any, value?: any) => void) | undefined) => void;
11000
+ closePopOver: (confirmed?: any, result?: any) => void;
11001
+ changeTmpValue: (value: any, changeReason?: "input" | "defaultValue" | "formInited" | "initialValue" | "dataChanged" | "formulaChanged" | "controlled" | undefined) => void;
10670
11002
  changeEmitedValue: (value: any) => void;
10671
11003
  addSubFormItem: (item: {
10672
11004
  id: string;
@@ -10730,6 +11062,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10730
11062
  rowIndex: any;
10731
11063
  pagination: any;
10732
11064
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
11065
+ popOverOpen: boolean;
11066
+ popOverData: any;
11067
+ popOverSchema: any;
10733
11068
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
10734
11069
  readonly parentStore: any;
10735
11070
  readonly __: any;
@@ -10816,6 +11151,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10816
11151
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
10817
11152
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10818
11153
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
11154
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
11155
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
11156
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
10819
11157
  }, {
10820
11158
  readonly parentStore: any;
10821
11159
  readonly __: any;
@@ -10906,6 +11244,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10906
11244
  rowIndex: any;
10907
11245
  pagination: any;
10908
11246
  accumulatedOptions: any[] & import("mobx-state-tree").IStateTreeNode<import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>>;
11247
+ popOverOpen: boolean;
11248
+ popOverData: any;
11249
+ popOverSchema: any;
10909
11250
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
10910
11251
  readonly parentStore: any;
10911
11252
  readonly __: any;
@@ -10992,6 +11333,9 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
10992
11333
  rowIndex: import("mobx-state-tree").IType<any, any, any>;
10993
11334
  pagination: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any, any, any>, [undefined]>;
10994
11335
  accumulatedOptions: import("mobx-state-tree").IOptionalIType<import("mobx-state-tree").IType<any[], any[], any[]>, [undefined]>;
11336
+ popOverOpen: import("mobx-state-tree").IType<boolean | undefined, boolean, boolean>;
11337
+ popOverData: import("mobx-state-tree").IType<any, any, any>;
11338
+ popOverSchema: import("mobx-state-tree").IType<any, any, any>;
10995
11339
  }, {
10996
11340
  readonly parentStore: any;
10997
11341
  readonly __: any;
@@ -11033,8 +11377,8 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11033
11377
  readonly persistKey: string;
11034
11378
  } & {
11035
11379
  setInited: (value: boolean) => void;
11036
- setValues: (values: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined) => void;
11037
- setValueByName: (name: string, value: any, isPristine?: boolean, force?: boolean) => void;
11380
+ setValues: (values: object, tag?: object | undefined, replace?: boolean | undefined, concatFields?: string | string[] | undefined, changeReason?: import("..").DataChangeReason | undefined) => void;
11381
+ setValueByName: (name: string, value: any, isPristine?: boolean, force?: boolean, changeReason?: import("..").DataChangeReason | undefined) => void;
11038
11382
  trimValues: () => void;
11039
11383
  submit: (fn?: ((values: object) => Promise<any>) | undefined, hooks?: (() => Promise<any>)[] | undefined, failedMessage?: string | undefined, validateErrCb?: (() => void) | undefined, throwErrors?: boolean | undefined) => Promise<any>;
11040
11384
  validate: (hooks?: (() => Promise<any>)[] | undefined, forceValidate?: boolean | undefined, throwErrors?: boolean | undefined, failedMessage?: string | undefined, validateErrCb?: (() => void) | undefined) => Promise<boolean>;
@@ -11049,10 +11393,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11049
11393
  reset: (cb?: ((data: any) => void) | undefined, resetData?: boolean) => void;
11050
11394
  syncOptions: import("lodash").DebouncedFunc<() => void>;
11051
11395
  setCanAccessSuperData: (value?: boolean) => void;
11052
- deleteValueByName: (name: string) => void;
11396
+ deleteValueByName: (name: string, changeReason?: import("..").DataChangeReason | undefined) => void;
11053
11397
  getLocalPersistData: () => void;
11054
11398
  setLocalPersistData: (keys?: string[] | undefined) => void;
11055
11399
  clearLocalPersistData: () => void;
11400
+ setPristine: (data: object) => void;
11056
11401
  setPersistData: (value?: string) => void;
11057
11402
  clear: (cb?: ((data: any) => void) | undefined) => void;
11058
11403
  updateSavedData: () => void;
@@ -11094,10 +11439,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11094
11439
  className: any;
11095
11440
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11096
11441
  readonly isPrimary: boolean;
11442
+ readonly columnKey: any;
11097
11443
  } & {
11098
11444
  toggleToggle(min?: number): void;
11099
11445
  setToggled(value: boolean): void;
11100
- setEnableSearch(value: boolean): void;
11446
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11101
11447
  setMinWidth(value: number): void;
11102
11448
  setWidth(value: number): void;
11103
11449
  setRealWidth(value: number): void;
@@ -11128,10 +11474,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11128
11474
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11129
11475
  }, {
11130
11476
  readonly isPrimary: boolean;
11477
+ readonly columnKey: any;
11131
11478
  } & {
11132
11479
  toggleToggle(min?: number): void;
11133
11480
  setToggled(value: boolean): void;
11134
- setEnableSearch(value: boolean): void;
11481
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11135
11482
  setMinWidth(value: number): void;
11136
11483
  setWidth(value: number): void;
11137
11484
  setRealWidth(value: number): void;
@@ -11163,10 +11510,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11163
11510
  className: any;
11164
11511
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11165
11512
  readonly isPrimary: boolean;
11513
+ readonly columnKey: any;
11166
11514
  } & {
11167
11515
  toggleToggle(min?: number): void;
11168
11516
  setToggled(value: boolean): void;
11169
- setEnableSearch(value: boolean): void;
11517
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11170
11518
  setMinWidth(value: number): void;
11171
11519
  setWidth(value: number): void;
11172
11520
  setRealWidth(value: number): void;
@@ -11197,10 +11545,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11197
11545
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11198
11546
  }, {
11199
11547
  readonly isPrimary: boolean;
11548
+ readonly columnKey: any;
11200
11549
  } & {
11201
11550
  toggleToggle(min?: number): void;
11202
11551
  setToggled(value: boolean): void;
11203
- setEnableSearch(value: boolean): void;
11552
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11204
11553
  setMinWidth(value: number): void;
11205
11554
  setWidth(value: number): void;
11206
11555
  setRealWidth(value: number): void;
@@ -11233,10 +11582,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11233
11582
  className: any;
11234
11583
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11235
11584
  readonly isPrimary: boolean;
11585
+ readonly columnKey: any;
11236
11586
  } & {
11237
11587
  toggleToggle(min?: number): void;
11238
11588
  setToggled(value: boolean): void;
11239
- setEnableSearch(value: boolean): void;
11589
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11240
11590
  setMinWidth(value: number): void;
11241
11591
  setWidth(value: number): void;
11242
11592
  setRealWidth(value: number): void;
@@ -11267,10 +11617,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11267
11617
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11268
11618
  }, {
11269
11619
  readonly isPrimary: boolean;
11620
+ readonly columnKey: any;
11270
11621
  } & {
11271
11622
  toggleToggle(min?: number): void;
11272
11623
  setToggled(value: boolean): void;
11273
- setEnableSearch(value: boolean): void;
11624
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11274
11625
  setMinWidth(value: number): void;
11275
11626
  setWidth(value: number): void;
11276
11627
  setRealWidth(value: number): void;
@@ -11302,10 +11653,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11302
11653
  className: any;
11303
11654
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11304
11655
  readonly isPrimary: boolean;
11656
+ readonly columnKey: any;
11305
11657
  } & {
11306
11658
  toggleToggle(min?: number): void;
11307
11659
  setToggled(value: boolean): void;
11308
- setEnableSearch(value: boolean): void;
11660
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11309
11661
  setMinWidth(value: number): void;
11310
11662
  setWidth(value: number): void;
11311
11663
  setRealWidth(value: number): void;
@@ -11336,10 +11688,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11336
11688
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11337
11689
  }, {
11338
11690
  readonly isPrimary: boolean;
11691
+ readonly columnKey: any;
11339
11692
  } & {
11340
11693
  toggleToggle(min?: number): void;
11341
11694
  setToggled(value: boolean): void;
11342
- setEnableSearch(value: boolean): void;
11695
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11343
11696
  setMinWidth(value: number): void;
11344
11697
  setWidth(value: number): void;
11345
11698
  setRealWidth(value: number): void;
@@ -11371,10 +11724,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11371
11724
  className: any;
11372
11725
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11373
11726
  readonly isPrimary: boolean;
11727
+ readonly columnKey: any;
11374
11728
  } & {
11375
11729
  toggleToggle(min?: number): void;
11376
11730
  setToggled(value: boolean): void;
11377
- setEnableSearch(value: boolean): void;
11731
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11378
11732
  setMinWidth(value: number): void;
11379
11733
  setWidth(value: number): void;
11380
11734
  setRealWidth(value: number): void;
@@ -11405,10 +11759,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11405
11759
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11406
11760
  }, {
11407
11761
  readonly isPrimary: boolean;
11762
+ readonly columnKey: any;
11408
11763
  } & {
11409
11764
  toggleToggle(min?: number): void;
11410
11765
  setToggled(value: boolean): void;
11411
- setEnableSearch(value: boolean): void;
11766
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11412
11767
  setMinWidth(value: number): void;
11413
11768
  setWidth(value: number): void;
11414
11769
  setRealWidth(value: number): void;
@@ -11440,10 +11795,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11440
11795
  className: any;
11441
11796
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11442
11797
  readonly isPrimary: boolean;
11798
+ readonly columnKey: any;
11443
11799
  } & {
11444
11800
  toggleToggle(min?: number): void;
11445
11801
  setToggled(value: boolean): void;
11446
- setEnableSearch(value: boolean): void;
11802
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11447
11803
  setMinWidth(value: number): void;
11448
11804
  setWidth(value: number): void;
11449
11805
  setRealWidth(value: number): void;
@@ -11474,10 +11830,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11474
11830
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11475
11831
  }, {
11476
11832
  readonly isPrimary: boolean;
11833
+ readonly columnKey: any;
11477
11834
  } & {
11478
11835
  toggleToggle(min?: number): void;
11479
11836
  setToggled(value: boolean): void;
11480
- setEnableSearch(value: boolean): void;
11837
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11481
11838
  setMinWidth(value: number): void;
11482
11839
  setWidth(value: number): void;
11483
11840
  setRealWidth(value: number): void;
@@ -11509,10 +11866,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11509
11866
  className: any;
11510
11867
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
11511
11868
  readonly isPrimary: boolean;
11869
+ readonly columnKey: any;
11512
11870
  } & {
11513
11871
  toggleToggle(min?: number): void;
11514
11872
  setToggled(value: boolean): void;
11515
- setEnableSearch(value: boolean): void;
11873
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11516
11874
  setMinWidth(value: number): void;
11517
11875
  setWidth(value: number): void;
11518
11876
  setRealWidth(value: number): void;
@@ -11543,10 +11901,11 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
11543
11901
  className: import("mobx-state-tree").ITypeUnion<any, any, any>;
11544
11902
  }, {
11545
11903
  readonly isPrimary: boolean;
11904
+ readonly columnKey: any;
11546
11905
  } & {
11547
11906
  toggleToggle(min?: number): void;
11548
11907
  setToggled(value: boolean): void;
11549
- setEnableSearch(value: boolean): void;
11908
+ setEnableSearch(value: boolean, skipSave?: boolean): void;
11550
11909
  setMinWidth(value: number): void;
11551
11910
  setWidth(value: number): void;
11552
11911
  setRealWidth(value: number): void;
@@ -12751,7 +13110,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12751
13110
  updateData({ children, ...rest }: any): void;
12752
13111
  }, import("mobx-state-tree")._NotCustomized, import("mobx-state-tree")._NotCustomized>>)[];
12753
13112
  readonly columnWidthReady: boolean;
12754
- getStickyStyles(column: IColumn, columns: Array<IColumn>): any[];
13113
+ getStickyStyles(column: IColumn, columns: Array<IColumn>, colSpan?: number): any[];
12755
13114
  readonly items: ({
12756
13115
  storeType: string;
12757
13116
  id: string;
@@ -12883,7 +13242,7 @@ export declare const TableStore: import("mobx-state-tree").IModelType<{
12883
13242
  updateColumns: (columns: Array<SColumn>) => void;
12884
13243
  initTableWidth: () => void;
12885
13244
  syncTableWidth: () => void;
12886
- initRows: (rows: Array<any>, getEntryId?: ((entry: any, index: number) => string) | undefined, reUseRow?: boolean) => void;
13245
+ initRows: (rows: Array<any>, getEntryId?: ((entry: any, index: number) => string) | undefined, reUseRow?: boolean | 'match') => void;
12887
13246
  updateSelected: (selected: Array<any>, valueField?: string) => void;
12888
13247
  toggleAll: () => void;
12889
13248
  getSelectedRows: () => ({