amis-core 6.11.0-beta.0 → 6.11.0-beta.2

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.d.ts +3 -0
  2. package/esm/Root.js +1 -1
  3. package/esm/RootRenderer.js +14 -8
  4. package/esm/SchemaRenderer.d.ts +2 -13
  5. package/esm/SchemaRenderer.js +36 -72
  6. package/esm/Scoped.js +1 -1
  7. package/esm/StatusScoped.js +1 -1
  8. package/esm/StyleManager.js +1 -1
  9. package/esm/WithRootStore.d.ts +1 -1
  10. package/esm/WithRootStore.js +1 -1
  11. package/esm/WithStore.js +1 -1
  12. package/esm/actions/Action.js +1 -1
  13. package/esm/actions/AjaxAction.js +1 -1
  14. package/esm/actions/BreakAction.js +1 -1
  15. package/esm/actions/BroadcastAction.js +1 -1
  16. package/esm/actions/CmptAction.js +6 -2
  17. package/esm/actions/ContinueAction.js +1 -1
  18. package/esm/actions/CopyAction.js +1 -1
  19. package/esm/actions/CustomAction.js +1 -1
  20. package/esm/actions/DialogAction.js +1 -1
  21. package/esm/actions/DrawerAction.js +1 -1
  22. package/esm/actions/EmailAction.js +1 -1
  23. package/esm/actions/EventAction.js +1 -1
  24. package/esm/actions/LinkAction.js +1 -1
  25. package/esm/actions/LoopAction.js +1 -1
  26. package/esm/actions/PageAction.js +1 -1
  27. package/esm/actions/ParallelAction.js +1 -1
  28. package/esm/actions/PrintAction.js +1 -1
  29. package/esm/actions/StatusAction.js +1 -1
  30. package/esm/actions/SwitchAction.js +1 -1
  31. package/esm/actions/ToastAction.js +1 -1
  32. package/esm/actions/WaitAction.js +1 -1
  33. package/esm/components/Animations.d.ts +8 -0
  34. package/esm/components/Animations.js +158 -0
  35. package/esm/components/CustomStyle.js +1 -1
  36. package/esm/components/ErrorBoundary.js +1 -1
  37. package/esm/components/LazyComponent.d.ts +1 -1
  38. package/esm/components/LazyComponent.js +1 -1
  39. package/esm/components/Overlay.js +1 -1
  40. package/esm/components/PopOver.d.ts +1 -1
  41. package/esm/components/PopOver.js +1 -1
  42. package/esm/env.d.ts +1 -1
  43. package/esm/env.js +1 -1
  44. package/esm/envOverwrite.js +1 -1
  45. package/esm/factory.d.ts +1 -0
  46. package/esm/factory.js +1 -1
  47. package/esm/globalVar.d.ts +173 -0
  48. package/esm/globalVar.js +122 -0
  49. package/esm/globalVarClientHandler.d.ts +1 -0
  50. package/esm/globalVarClientHandler.js +65 -0
  51. package/esm/globalVarDefaultValueHandler.d.ts +1 -0
  52. package/esm/globalVarDefaultValueHandler.js +28 -0
  53. package/esm/index.d.ts +3 -0
  54. package/esm/index.js +8 -5
  55. package/esm/locale.d.ts +1 -1
  56. package/esm/locale.js +1 -1
  57. package/esm/polyfills.js +1 -1
  58. package/esm/renderers/Form.d.ts +3 -1
  59. package/esm/renderers/Form.js +39 -24
  60. package/esm/renderers/Item.d.ts +11 -17
  61. package/esm/renderers/Item.js +17 -2
  62. package/esm/renderers/Options.js +1 -1
  63. package/esm/renderers/Placeholder.js +1 -1
  64. package/esm/renderers/builtin.js +1 -1
  65. package/esm/renderers/register.js +1 -1
  66. package/esm/renderers/wrapControl.d.ts +1 -1
  67. package/esm/renderers/wrapControl.js +1 -1
  68. package/esm/store/app.js +1 -1
  69. package/esm/store/combo.js +1 -1
  70. package/esm/store/crud.d.ts +8 -0
  71. package/esm/store/crud.js +24 -17
  72. package/esm/store/form.js +14 -5
  73. package/esm/store/formItem.js +1 -1
  74. package/esm/store/iRenderer.js +1 -1
  75. package/esm/store/index.js +1 -1
  76. package/esm/store/list.d.ts +14 -1
  77. package/esm/store/list.js +45 -17
  78. package/esm/store/manager.js +1 -1
  79. package/esm/store/modal.js +1 -1
  80. package/esm/store/node.js +1 -1
  81. package/esm/store/pagination.js +1 -1
  82. package/esm/store/root.d.ts +14 -0
  83. package/esm/store/root.js +483 -12
  84. package/esm/store/service.js +1 -1
  85. package/esm/store/status.js +1 -1
  86. package/esm/store/table.d.ts +16 -2
  87. package/esm/store/table.js +83 -26
  88. package/esm/store/table2.js +1 -1
  89. package/esm/theme.d.ts +1 -1
  90. package/esm/theme.js +1 -1
  91. package/esm/types.d.ts +3 -2
  92. package/esm/utils/Animation.js +1 -1
  93. package/esm/utils/ColorScale.js +1 -1
  94. package/esm/utils/DataSchema.js +1 -1
  95. package/esm/utils/DataScope.js +1 -1
  96. package/esm/utils/RootClose.js +1 -1
  97. package/esm/utils/SimpleMap.js +1 -1
  98. package/esm/utils/animations.d.ts +4 -0
  99. package/esm/utils/animations.js +1 -1
  100. package/esm/utils/api.d.ts +1 -0
  101. package/esm/utils/api.js +18 -6
  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 +1 -1
  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 +1 -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 +5 -0
  123. package/esm/utils/helper.js +6 -2
  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 +1 -1
  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 +1 -1
  131. package/esm/utils/loopTooMuch.js +1 -1
  132. package/esm/utils/makeSorter.js +1 -1
  133. package/esm/utils/math.js +1 -1
  134. package/esm/utils/memoryParse.js +1 -1
  135. package/esm/utils/normalizeLink.js +1 -1
  136. package/esm/utils/normalizeOptions.js +1 -1
  137. package/esm/utils/object.js +1 -1
  138. package/esm/utils/offset.js +1 -1
  139. package/esm/utils/offsetParent.js +1 -1
  140. package/esm/utils/optionValueCompare.js +1 -1
  141. package/esm/utils/position.js +1 -1
  142. package/esm/utils/prettyBytes.js +1 -1
  143. package/esm/utils/printElement.js +1 -1
  144. package/esm/utils/renderer-event.js +1 -1
  145. package/esm/utils/replaceText.js +1 -1
  146. package/esm/utils/resize-sensor.js +1 -1
  147. package/esm/utils/resolveCondition.js +1 -1
  148. package/esm/utils/resolveVariable.js +1 -1
  149. package/esm/utils/resolveVariableAndFilter.js +1 -1
  150. package/esm/utils/resolveVariableAndFilterForAsync.js +1 -1
  151. package/esm/utils/scrollPosition.js +1 -1
  152. package/esm/utils/string2regExp.js +1 -1
  153. package/esm/utils/stripNumber.js +1 -1
  154. package/esm/utils/style-helper.js +1 -1
  155. package/esm/utils/style.js +1 -1
  156. package/esm/utils/toNumber.js +1 -1
  157. package/esm/utils/tokenize.js +1 -1
  158. package/esm/utils/tpl-builtin.js +1 -1
  159. package/esm/utils/tpl-lodash.js +1 -1
  160. package/esm/utils/tpl.js +1 -1
  161. package/esm/utils/uncontrollable.js +1 -1
  162. package/esm/utils/validateId.js +1 -1
  163. package/esm/utils/validations.js +1 -1
  164. package/esm/utils/visitedCache.js +1 -1
  165. package/lib/Root.d.ts +3 -0
  166. package/lib/Root.js +1 -1
  167. package/lib/RootRenderer.d.ts +1 -1
  168. package/lib/RootRenderer.js +13 -7
  169. package/lib/SchemaRenderer.d.ts +2 -13
  170. package/lib/SchemaRenderer.js +35 -71
  171. package/lib/Scoped.js +1 -1
  172. package/lib/StatusScoped.js +1 -1
  173. package/lib/StyleManager.js +1 -1
  174. package/lib/WithRootStore.d.ts +1 -1
  175. package/lib/WithRootStore.js +1 -1
  176. package/lib/WithStore.js +1 -1
  177. package/lib/actions/Action.js +1 -1
  178. package/lib/actions/AjaxAction.js +1 -1
  179. package/lib/actions/BreakAction.js +1 -1
  180. package/lib/actions/BroadcastAction.js +1 -1
  181. package/lib/actions/CmptAction.js +6 -2
  182. package/lib/actions/ContinueAction.js +1 -1
  183. package/lib/actions/CopyAction.js +1 -1
  184. package/lib/actions/CustomAction.js +1 -1
  185. package/lib/actions/DialogAction.js +1 -1
  186. package/lib/actions/DrawerAction.js +1 -1
  187. package/lib/actions/EmailAction.js +1 -1
  188. package/lib/actions/EventAction.js +1 -1
  189. package/lib/actions/LinkAction.js +1 -1
  190. package/lib/actions/LoopAction.js +1 -1
  191. package/lib/actions/PageAction.js +1 -1
  192. package/lib/actions/ParallelAction.js +1 -1
  193. package/lib/actions/PrintAction.js +1 -1
  194. package/lib/actions/StatusAction.js +1 -1
  195. package/lib/actions/SwitchAction.js +1 -1
  196. package/lib/actions/ToastAction.js +1 -1
  197. package/lib/actions/WaitAction.js +1 -1
  198. package/lib/components/Animations.d.ts +8 -0
  199. package/lib/components/Animations.js +172 -0
  200. package/lib/components/CustomStyle.js +1 -1
  201. package/lib/components/ErrorBoundary.js +1 -1
  202. package/lib/components/LazyComponent.d.ts +1 -1
  203. package/lib/components/LazyComponent.js +1 -1
  204. package/lib/components/Overlay.js +1 -1
  205. package/lib/components/PopOver.d.ts +1 -1
  206. package/lib/components/PopOver.js +1 -1
  207. package/lib/env.d.ts +1 -1
  208. package/lib/env.js +1 -1
  209. package/lib/envOverwrite.js +1 -1
  210. package/lib/factory.d.ts +1 -0
  211. package/lib/factory.js +1 -1
  212. package/lib/globalVar.d.ts +173 -0
  213. package/lib/globalVar.js +130 -0
  214. package/lib/globalVarClientHandler.d.ts +1 -0
  215. package/lib/globalVarClientHandler.js +67 -0
  216. package/lib/globalVarDefaultValueHandler.d.ts +1 -0
  217. package/lib/globalVarDefaultValueHandler.js +30 -0
  218. package/lib/index.d.ts +3 -0
  219. package/lib/index.js +13 -4
  220. package/lib/locale.d.ts +1 -1
  221. package/lib/locale.js +1 -1
  222. package/lib/polyfills.js +1 -1
  223. package/lib/renderers/Form.d.ts +3 -1
  224. package/lib/renderers/Form.js +37 -21
  225. package/lib/renderers/Item.d.ts +11 -17
  226. package/lib/renderers/Item.js +17 -2
  227. package/lib/renderers/Options.js +1 -1
  228. package/lib/renderers/Placeholder.js +1 -1
  229. package/lib/renderers/builtin.js +1 -1
  230. package/lib/renderers/register.js +1 -1
  231. package/lib/renderers/wrapControl.d.ts +1 -1
  232. package/lib/renderers/wrapControl.js +1 -1
  233. package/lib/store/app.js +1 -1
  234. package/lib/store/combo.d.ts +24 -25
  235. package/lib/store/combo.js +1 -1
  236. package/lib/store/crud.d.ts +8 -0
  237. package/lib/store/crud.js +23 -16
  238. package/lib/store/form.d.ts +10 -11
  239. package/lib/store/form.js +14 -5
  240. package/lib/store/formItem.js +1 -1
  241. package/lib/store/iRenderer.js +1 -1
  242. package/lib/store/index.js +1 -1
  243. package/lib/store/list.d.ts +14 -1
  244. package/lib/store/list.js +44 -16
  245. package/lib/store/manager.js +1 -1
  246. package/lib/store/modal.js +1 -1
  247. package/lib/store/node.js +1 -1
  248. package/lib/store/pagination.js +1 -1
  249. package/lib/store/root.d.ts +13 -0
  250. package/lib/store/root.js +487 -11
  251. package/lib/store/service.js +1 -1
  252. package/lib/store/status.js +1 -1
  253. package/lib/store/table.d.ts +36 -23
  254. package/lib/store/table.js +82 -25
  255. package/lib/store/table2.js +1 -1
  256. package/lib/theme.d.ts +1 -1
  257. package/lib/theme.js +1 -1
  258. package/lib/types.d.ts +3 -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/animations.d.ts +4 -0
  266. package/lib/utils/animations.js +1 -1
  267. package/lib/utils/api.d.ts +1 -0
  268. package/lib/utils/api.js +18 -5
  269. package/lib/utils/arraySlice.js +1 -1
  270. package/lib/utils/attachmentAdpator.js +1 -1
  271. package/lib/utils/autobind.js +1 -1
  272. package/lib/utils/browser.js +1 -1
  273. package/lib/utils/columnsSplit.js +1 -1
  274. package/lib/utils/concatData.js +1 -1
  275. package/lib/utils/dataMapping.js +1 -1
  276. package/lib/utils/date.js +1 -1
  277. package/lib/utils/debug.js +1 -1
  278. package/lib/utils/decodeEntity.js +1 -1
  279. package/lib/utils/dom.js +1 -1
  280. package/lib/utils/errors.js +1 -1
  281. package/lib/utils/escapeHtml.js +1 -1
  282. package/lib/utils/filter-schema.js +1 -1
  283. package/lib/utils/filter.js +1 -1
  284. package/lib/utils/formatDuration.js +1 -1
  285. package/lib/utils/formula.js +1 -1
  286. package/lib/utils/getVariable.js +1 -1
  287. package/lib/utils/grammar.js +1 -1
  288. package/lib/utils/handleAction.js +1 -1
  289. package/lib/utils/helper.d.ts +5 -0
  290. package/lib/utils/helper.js +6 -2
  291. package/lib/utils/highlight.js +1 -1
  292. package/lib/utils/icon.js +1 -1
  293. package/lib/utils/image.js +1 -1
  294. package/lib/utils/isPureVariable.js +1 -1
  295. package/lib/utils/json-schema-2-amis-schema.js +1 -1
  296. package/lib/utils/keyToPath.js +1 -1
  297. package/lib/utils/labelToString.js +1 -1
  298. package/lib/utils/loopTooMuch.js +1 -1
  299. package/lib/utils/makeSorter.js +1 -1
  300. package/lib/utils/math.js +1 -1
  301. package/lib/utils/memoryParse.js +1 -1
  302. package/lib/utils/normalizeLink.js +1 -1
  303. package/lib/utils/normalizeOptions.js +1 -1
  304. package/lib/utils/object.js +1 -1
  305. package/lib/utils/offset.js +1 -1
  306. package/lib/utils/offsetParent.js +1 -1
  307. package/lib/utils/optionValueCompare.js +1 -1
  308. package/lib/utils/position.js +1 -1
  309. package/lib/utils/prettyBytes.js +1 -1
  310. package/lib/utils/printElement.js +1 -1
  311. package/lib/utils/renderer-event.js +1 -1
  312. package/lib/utils/replaceText.js +1 -1
  313. package/lib/utils/resize-sensor.js +1 -1
  314. package/lib/utils/resolveCondition.js +1 -1
  315. package/lib/utils/resolveVariable.js +1 -1
  316. package/lib/utils/resolveVariableAndFilter.js +1 -1
  317. package/lib/utils/resolveVariableAndFilterForAsync.js +1 -1
  318. package/lib/utils/scrollPosition.js +1 -1
  319. package/lib/utils/string2regExp.js +1 -1
  320. package/lib/utils/stripNumber.js +1 -1
  321. package/lib/utils/style-helper.js +1 -1
  322. package/lib/utils/style.js +1 -1
  323. package/lib/utils/toNumber.js +1 -1
  324. package/lib/utils/tokenize.js +1 -1
  325. package/lib/utils/tpl-builtin.js +1 -1
  326. package/lib/utils/tpl-lodash.js +1 -1
  327. package/lib/utils/tpl.js +1 -1
  328. package/lib/utils/uncontrollable.js +1 -1
  329. package/lib/utils/validateId.js +1 -1
  330. package/lib/utils/validations.js +1 -1
  331. package/lib/utils/visitedCache.js +1 -1
  332. package/package.json +2 -2
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -25,17 +25,17 @@ var mobxStateTree = require('mobx-state-tree');
25
25
  var mobx = require('mobx');
26
26
  require('amis-formula');
27
27
  require('moment');
28
- require('lodash/isPlainObject');
28
+ var object = require('./utils/object.js');
29
29
  require('./utils/memoryParse.js');
30
30
  require('@rc-component/mini-decimal');
31
31
  var resolveVariableAndFilter = require('./utils/resolveVariableAndFilter.js');
32
+ require('lodash/isPlainObject');
32
33
  require('./utils/filter.js');
33
34
  var style = require('./utils/style.js');
34
35
  var formula = require('./utils/formula.js');
35
36
  var tpl = require('./utils/tpl.js');
36
- var reactTransitionGroup = require('react-transition-group');
37
- var animations = require('./utils/animations.js');
38
- var StyleManager = require('./StyleManager.js');
37
+ var Animations = require('./components/Animations.js');
38
+ var globalVar = require('./globalVar.js');
39
39
 
40
40
  function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
41
41
 
@@ -87,64 +87,35 @@ var componentCache = new SimpleMap.SimpleMap();
87
87
  var SchemaRenderer = /** @class */ (function (_super) {
88
88
  tslib.__extends(SchemaRenderer, _super);
89
89
  function SchemaRenderer(props) {
90
- var _this = this;
91
- var _a;
92
- _this = _super.call(this, props) || this;
90
+ var _this = _super.call(this, props) || this;
93
91
  _this.rendererKey = '';
94
- _this.animationTimeout = {};
95
- _this.animationClassNames = {};
96
92
  _this.toDispose = [];
97
93
  _this.unbindEvent = undefined;
98
94
  _this.unbindGlobalEvent = undefined;
99
95
  _this.isStatic = undefined;
100
- var animations = (_a = props === null || props === void 0 ? void 0 : props.schema) === null || _a === void 0 ? void 0 : _a.animations;
101
- if (animations) {
102
- var id = props === null || props === void 0 ? void 0 : props.schema.id;
103
- id = helper.formateId(id);
104
- if (animations.enter) {
105
- _this.animationTimeout.enter =
106
- ((animations.enter.duration || 1) + (animations.enter.delay || 0)) *
107
- 1000;
108
- _this.animationClassNames.enter = "".concat(animations.enter.type, "-").concat(id, "-enter");
109
- _this.animationClassNames.appear = _this.animationClassNames.enter;
110
- }
111
- if (animations.exit) {
112
- _this.animationTimeout.exit =
113
- ((animations.exit.duration || 1) + (animations.exit.delay || 0)) *
114
- 1000;
115
- _this.animationClassNames.exit = "".concat(animations.exit.type, "-").concat(id, "-exit");
116
- }
117
- }
118
96
  _this.refFn = _this.refFn.bind(_this);
119
97
  _this.renderChild = _this.renderChild.bind(_this);
120
98
  _this.reRender = _this.reRender.bind(_this);
121
99
  _this.resolveRenderer(_this.props);
122
100
  _this.dispatchEvent = _this.dispatchEvent.bind(_this);
123
- _this.addAnimationAttention = _this.addAnimationAttention.bind(_this);
124
- _this.removeAnimationAttention = _this.removeAnimationAttention.bind(_this);
101
+ _this.handleGlobalVarChange = _this.handleGlobalVarChange.bind(_this);
102
+ var schema = props.schema;
125
103
  // 监听statusStore更新
126
104
  _this.toDispose.push(mobx.reaction(function () {
127
105
  var _a, _b, _c;
128
- var id = tpl.filter(props.schema.id, props.data);
129
- var name = tpl.filter(props.schema.name, props.data);
106
+ var id = tpl.filter(schema.id, props.data);
107
+ var name = tpl.filter(schema.name, props.data);
130
108
  return "".concat((_a = props.statusStore.visibleState[id]) !== null && _a !== void 0 ? _a : props.statusStore.visibleState[name]).concat((_b = props.statusStore.disableState[id]) !== null && _b !== void 0 ? _b : props.statusStore.disableState[name]).concat((_c = props.statusStore.staticState[id]) !== null && _c !== void 0 ? _c : props.statusStore.staticState[name]);
131
109
  }, function () { return _this.forceUpdate(); }));
110
+ _this.toDispose.push(globalVar.observeGlobalVars(schema, props.topStore, _this.handleGlobalVarChange));
132
111
  return _this;
133
112
  }
134
- SchemaRenderer.prototype.componentDidMount = function () {
135
- if (this.props.schema.animations) {
136
- var _a = this.props.schema, animations$1 = _a.animations, id = _a.id;
137
- id = helper.formateId(id);
138
- animations.createAnimationStyle(id, animations$1);
139
- }
140
- };
141
113
  SchemaRenderer.prototype.componentWillUnmount = function () {
142
114
  var _a, _b;
143
115
  this.toDispose.forEach(function (fn) { return fn(); });
144
116
  this.toDispose = [];
145
117
  (_a = this.unbindEvent) === null || _a === void 0 ? void 0 : _a.call(this);
146
118
  (_b = this.unbindGlobalEvent) === null || _b === void 0 ? void 0 : _b.call(this);
147
- this.removeAnimationStyle();
148
119
  };
149
120
  // 限制:只有 schema 除外的 props 变化,或者 schema 里面的某个成员值发生变化才更新。
150
121
  SchemaRenderer.prototype.shouldComponentUpdate = function (nextProps) {
@@ -167,12 +138,19 @@ var SchemaRenderer = /** @class */ (function (_super) {
167
138
  }
168
139
  return false;
169
140
  };
170
- SchemaRenderer.prototype.removeAnimationStyle = function () {
171
- if (this.props.schema.animations) {
172
- var id = this.props.schema.id;
173
- id = helper.formateId(id);
174
- StyleManager["default"].removeStyles(id);
141
+ SchemaRenderer.prototype.handleGlobalVarChange = function () {
142
+ var _this = this;
143
+ var _a;
144
+ var handler = (_a = this.renderer) === null || _a === void 0 ? void 0 : _a.onGlobalVarChanged;
145
+ var newData = object.cloneObject(this.props.data);
146
+ // 如果渲染器自己做了实现,且返回 false,则不再继续往下执行
147
+ if ((handler === null || handler === void 0 ? void 0 : handler(this.cRef, this.props.schema, newData)) === false) {
148
+ return;
175
149
  }
150
+ this.tmpData = newData;
151
+ this.forceUpdate(function () {
152
+ delete _this.tmpData;
153
+ });
176
154
  };
177
155
  SchemaRenderer.prototype.resolveRenderer = function (props, force) {
178
156
  if (force === void 0) { force = false; }
@@ -275,35 +253,19 @@ var SchemaRenderer = /** @class */ (function (_super) {
275
253
  ? false
276
254
  : undefined)) !== null && _b !== void 0 ? _b : this.isStatic) !== null && _c !== void 0 ? _c : (_.staticOn
277
255
  ? tpl.evalExpression(_.staticOn, rest.data)
278
- : (_d = _.static) !== null && _d !== void 0 ? _d : rest.defaultStatic) }), subProps), { data: subProps.data || rest.data, env: env }));
256
+ : (_d = _.static) !== null && _d !== void 0 ? _d : rest.defaultStatic) }), subProps), { data: this.tmpData && subProps.data === this.props.data
257
+ ? this.tmpData
258
+ : subProps.data || rest.data, env: env }));
279
259
  };
280
260
  SchemaRenderer.prototype.reRender = function () {
281
261
  this.resolveRenderer(this.props, true);
282
262
  this.forceUpdate();
283
263
  };
284
- SchemaRenderer.prototype.addAnimationAttention = function (node) {
285
- var schema = (this.props || {}).schema;
286
- var attention = ((schema === null || schema === void 0 ? void 0 : schema.animations) || {}).attention;
287
- if (attention) {
288
- var id = schema.id;
289
- id = helper.formateId(id);
290
- node.classList.add("".concat(attention.type, "-").concat(id, "-attention"));
291
- }
292
- };
293
- SchemaRenderer.prototype.removeAnimationAttention = function (node) {
294
- var schema = (this.props || {}).schema;
295
- var attention = ((schema === null || schema === void 0 ? void 0 : schema.animations) || {}).attention;
296
- if (attention) {
297
- var id = schema.id;
298
- id = helper.formateId(id);
299
- node.classList.remove("".concat(attention.type, "-").concat(id, "-attention"));
300
- }
301
- };
302
264
  SchemaRenderer.prototype.render = function () {
303
265
  var e_1, _a;
304
266
  var _this = this;
305
267
  var _b, _c, _d, _e, _f, _g, _h;
306
- var _j = this.props; _j.$path; var __ = _j.schema, rootStore = _j.rootStore, statusStore = _j.statusStore, render = _j.render, propKey = _j.key, rest = tslib.__rest(_j, ["$path", "schema", "rootStore", "statusStore", "render", "key"]);
268
+ var _j = this.props; _j.$path; var __ = _j.schema, rootStore = _j.rootStore, statusStore = _j.statusStore, render = _j.render, rest = tslib.__rest(_j, ["$path", "schema", "rootStore", "statusStore", "render"]);
307
269
  if (__ == null) {
308
270
  return null;
309
271
  }
@@ -353,12 +315,12 @@ var SchemaRenderer = /** @class */ (function (_super) {
353
315
  else if (schema.component && reactIs.isValidElementType(schema.component)) {
354
316
  var isSFC = !(schema.component.prototype instanceof React__default["default"].Component);
355
317
  var defaultData_1 = schema.data, defaultValue_1 = schema.value, // render时的value改放defaultValue中
356
- defaultActiveKey_1 = schema.activeKey, restSchema_1 = tslib.__rest(schema, ["data", "value", "activeKey"]);
318
+ defaultActiveKey_1 = schema.activeKey, propKey_1 = schema.key, restSchema_1 = tslib.__rest(schema, ["data", "value", "activeKey", "key"]);
357
319
  return rest.invisible
358
320
  ? null
359
321
  : _J$X_(schema.component, tslib.__assign(tslib.__assign(tslib.__assign(tslib.__assign({}, rest), restSchema_1), exprProps), {
360
322
  // value: defaultValue, // 备注: 此处并没有将value传递给渲染器
361
- defaultData: defaultData_1, defaultValue: defaultValue_1, defaultActiveKey: defaultActiveKey_1, propKey: propKey, $path: $path, $schema: schema, ref: isSFC ? undefined : this.refFn, forwardedRef: isSFC ? this.refFn : undefined, render: this.renderChild, rootStore: rootStore, statusStore: statusStore, dispatchEvent: this.dispatchEvent }));
323
+ defaultData: defaultData_1, defaultValue: defaultValue_1, defaultActiveKey: defaultActiveKey_1, propKey: propKey_1, $path: $path, $schema: schema, ref: isSFC ? undefined : this.refFn, forwardedRef: isSFC ? this.refFn : undefined, render: this.renderChild, rootStore: rootStore, statusStore: statusStore, dispatchEvent: this.dispatchEvent }));
362
324
  }
363
325
  else if (Object.keys(schema).length === 0) {
364
326
  return null;
@@ -399,9 +361,9 @@ var SchemaRenderer = /** @class */ (function (_super) {
399
361
  }
400
362
  var renderer = this.renderer;
401
363
  schema = factory.filterSchema(schema, renderer, rest);
402
- var defaultData = schema.data, defaultValue = schema.value, defaultActiveKey = schema.activeKey, restSchema = tslib.__rest(schema, ["data", "value", "activeKey"]);
364
+ var defaultData = schema.data, defaultValue = schema.value, defaultActiveKey = schema.activeKey, propKey = schema.key, restSchema = tslib.__rest(schema, ["data", "value", "activeKey", "key"]);
403
365
  var Component = renderer.component;
404
- var animationIn = true;
366
+ var animationShow = true;
405
367
  // 原来表单项的 visible: false 和 hidden: true 表单项的值和验证是有效的
406
368
  // 而 visibleOn 和 hiddenOn 是无效的,
407
369
  // 这个本来就是个bug,但是已经被广泛使用了
@@ -412,7 +374,7 @@ var SchemaRenderer = /** @class */ (function (_super) {
412
374
  !renderer.isFormItem ||
413
375
  (schema.visible !== false && !schema.hidden))) {
414
376
  if (schema.animations) {
415
- animationIn = false;
377
+ animationShow = false;
416
378
  }
417
379
  else {
418
380
  return null;
@@ -428,6 +390,8 @@ var SchemaRenderer = /** @class */ (function (_super) {
428
390
  var props = tslib.__assign(tslib.__assign(tslib.__assign(tslib.__assign(tslib.__assign(tslib.__assign({}, (_f = renderer.defaultProps) === null || _f === void 0 ? void 0 : _f.call(renderer, schema.type, schema)), theme.getRendererConfig(renderer.name)), restSchema), helper.chainEvents(rest, restSchema)), exprProps), {
429
391
  // value: defaultValue, // 备注: 此处并没有将value传递给渲染器
430
392
  defaultData: (_g = restSchema.defaultData) !== null && _g !== void 0 ? _g : defaultData, defaultValue: (_h = restSchema.defaultValue) !== null && _h !== void 0 ? _h : defaultValue, defaultActiveKey: defaultActiveKey, propKey: propKey, $path: $path, $schema: schema, render: this.renderChild, rootStore: rootStore, statusStore: statusStore, dispatchEvent: this.dispatchEvent, mobileUI: schema.useMobileUI === false ? false : rest.mobileUI });
393
+ // 用于全局变量刷新
394
+ props.data = this.tmpData || props.data;
431
395
  // style 支持公式
432
396
  if (schema.style) {
433
397
  props.style = style.buildStyle(schema.style, detectData);
@@ -467,7 +431,7 @@ var SchemaRenderer = /** @class */ (function (_super) {
467
431
  }
468
432
  var component = supportRef ? (_J$X_(Component, tslib.__assign({}, props, { ref: this.childRef }))) : (_J$X_(Component, tslib.__assign({}, props, { forwardedRef: this.childRef })));
469
433
  if (schema.animations) {
470
- component = (_J$X_(reactTransitionGroup.CSSTransition, { in: animationIn, timeout: this.animationTimeout, classNames: this.animationClassNames, onEntered: this.addAnimationAttention, onExit: this.removeAnimationAttention, appear: true, unmountOnExit: true }, component));
434
+ component = (_J$X_(Animations["default"], { schema: schema, component: component, show: animationShow }));
471
435
  }
472
436
  return this.props.env.enableAMISDebug ? (_J$X_(debug.DebugWrapper, { renderer: renderer }, component)) : (component);
473
437
  };
package/lib/Scoped.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -359,7 +359,7 @@ export declare function withRootStore<T extends React.ComponentType<React.Compon
359
359
  componentWillUpdate?(nextProps: Readonly<JSX.LibraryManagedAttributes<T, Omit<React.ComponentProps<T>, "rootStore">>>, nextState: Readonly<{}>, nextContext: any): void;
360
360
  UNSAFE_componentWillUpdate?(nextProps: Readonly<JSX.LibraryManagedAttributes<T, Omit<React.ComponentProps<T>, "rootStore">>>, nextState: Readonly<{}>, nextContext: any): void;
361
361
  };
362
- displayName: any;
362
+ displayName: string;
363
363
  contextType: React.Context<{
364
364
  storeType: string;
365
365
  } & import("mobx-state-tree/dist/internal").NonEmptyObject & {
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
package/lib/WithStore.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -26,7 +26,7 @@ var CmptAction = /** @class */ (function () {
26
26
  CmptAction.prototype.run = function (action, renderer, event) {
27
27
  var _a, _b, _c, _d, _e, _f, _g, _h, _j, _k, _l, _m, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _0, _1, _2, _3, _4, _5, _6, _7;
28
28
  return tslib.__awaiter(this, void 0, void 0, function () {
29
- var key, dataMergeMode, path, beforeSetData, res, component, msg, result, _8, dispatchEvent_1, data, valid, _9, e_1, result, e_2;
29
+ var key, dataMergeMode, path, topStore, beforeSetData, res, component, msg, result, _8, dispatchEvent_1, data, valid, _9, e_1, result, e_2;
30
30
  var _10, _11, _12, _13, _14, _15;
31
31
  return tslib.__generator(this, function (_16) {
32
32
  switch (_16.label) {
@@ -35,6 +35,10 @@ var CmptAction = /** @class */ (function () {
35
35
  dataMergeMode = action.dataMergeMode || 'merge';
36
36
  path = (_a = action.args) === null || _a === void 0 ? void 0 : _a.path;
37
37
  if (!(action.actionType === 'setValue' && path && typeof path === 'string')) return [3 /*break*/, 2];
38
+ if (path.startsWith('global.')) {
39
+ topStore = renderer.props.topStore;
40
+ topStore === null || topStore === void 0 ? void 0 : topStore.updateGlobalVarValue(path.substring(7), action.args.value);
41
+ }
38
42
  beforeSetData = (_c = (_b = event === null || event === void 0 ? void 0 : event.context) === null || _b === void 0 ? void 0 : _b.env) === null || _c === void 0 ? void 0 : _c.beforeSetData;
39
43
  if (!(beforeSetData && typeof beforeSetData === 'function')) return [3 /*break*/, 2];
40
44
  return [4 /*yield*/, beforeSetData(renderer, action, event)];
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5
 
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { Schema } from '../types';
3
+ declare function Animations({ schema, component, show }: {
4
+ schema: Schema;
5
+ component: any;
6
+ show: boolean;
7
+ }): React.JSX.Element;
8
+ export default Animations;
@@ -0,0 +1,172 @@
1
+ /**
2
+ * amis-core v6.11.0-beta.2
3
+ * Copyright 2018-2024 fex
4
+ */
5
+
6
+ 'use strict';
7
+
8
+ Object.defineProperty(exports, '__esModule', { value: true });
9
+
10
+ var tslib = require('tslib');
11
+ var React = require('react');
12
+ var reactTransitionGroup = require('react-transition-group');
13
+ require('../utils/api.js');
14
+ require('../utils/browser.js');
15
+ require('../utils/ColorScale.js');
16
+ require('../utils/columnsSplit.js');
17
+ require('lodash/isPlainObject');
18
+ require('amis-formula');
19
+ require('../utils/memoryParse.js');
20
+ require('../utils/DataSchema.js');
21
+ require('../utils/DataScope.js');
22
+ require('moment');
23
+ require('../utils/debug.js');
24
+ require('../utils/dom.js');
25
+ require('../utils/errors.js');
26
+ require('../utils/tpl.js');
27
+ var helper = require('../utils/helper.js');
28
+ require('../utils/filter.js');
29
+ require('lodash/isObject');
30
+ require('lodash/isString');
31
+ require('lodash/isBoolean');
32
+ require('@rc-component/mini-decimal');
33
+ require('../utils/highlight.js');
34
+ require('../utils/icon.js');
35
+ require('../utils/image.js');
36
+ require('lodash/isEqual');
37
+ require('../actions/Action.js');
38
+ require('lodash/debounce');
39
+ require('../utils/resize-sensor.js');
40
+ require('react-overlays/useRootClose');
41
+ require('react-dom');
42
+ require('../utils/SimpleMap.js');
43
+ require('lodash/mapValues');
44
+ require('lodash/camelCase');
45
+ require('lodash/cloneDeep');
46
+ require('lodash/map');
47
+ require('lodash/isEmpty');
48
+ require('lodash/kebabCase');
49
+ require('uncontrollable');
50
+ require('hoist-non-react-statics');
51
+ require('../utils/validations.js');
52
+ require('../utils/resolveCondition.js');
53
+ require('mobx');
54
+ require('../utils/Animation.js');
55
+ var animations = require('../utils/animations.js');
56
+ var StyleManager = require('../StyleManager.js');
57
+
58
+ function _interopDefaultLegacy (e) { return e && typeof e === 'object' && 'default' in e ? e : { 'default': e }; }
59
+
60
+ var React__default = /*#__PURE__*/_interopDefaultLegacy(React);
61
+
62
+ var __react_jsx__ = require('react');
63
+ var _J$X_ = (__react_jsx__["default"] || __react_jsx__).createElement;
64
+ (__react_jsx__["default"] || __react_jsx__).Fragment;
65
+ function Animations(_a) {
66
+ var schema = _a.schema, component = _a.component, show = _a.show;
67
+ var enter = (schema.animations || {}).enter;
68
+ var _b = tslib.__read(React.useState(!(enter === null || enter === void 0 ? void 0 : enter.inView)), 2), animationShow = _b[0], setAnimationShow = _b[1];
69
+ var _c = tslib.__read(React.useState(!!(enter === null || enter === void 0 ? void 0 : enter.inView)), 2), placeholderShow = _c[0], setPlaceholderShow = _c[1];
70
+ var id = React.useMemo(function () { return helper.formateId(schema.id); }, []);
71
+ var observer = React.useMemo(newObserver, []);
72
+ var animationClassNames = React.useMemo(initAnimationClassNames, []);
73
+ var animationTimeout = React.useMemo(initAnimationTimeout, []);
74
+ React.useEffect(function () {
75
+ animations.createAnimationStyle(id, schema.animations);
76
+ return function () {
77
+ if (schema.animations) {
78
+ StyleManager["default"].removeStyles(id);
79
+ }
80
+ observer.disconnect();
81
+ };
82
+ }, []);
83
+ function newObserver() {
84
+ return new IntersectionObserver(function (entries, observer) {
85
+ entries.forEach(function (entry) {
86
+ if (entry.target.getAttribute('data-role') === 'animation-placeholder') {
87
+ if (entry.isIntersecting) {
88
+ setAnimationShow(true);
89
+ setPlaceholderShow(false);
90
+ observer.unobserve(entry.target);
91
+ }
92
+ }
93
+ else {
94
+ if (!entry.isIntersecting) {
95
+ setAnimationShow(false);
96
+ observer.unobserve(entry.target);
97
+ }
98
+ }
99
+ });
100
+ }, {
101
+ root: null,
102
+ rootMargin: '0px',
103
+ threshold: 0.1
104
+ });
105
+ }
106
+ function initAnimationClassNames() {
107
+ var animations = schema === null || schema === void 0 ? void 0 : schema.animations;
108
+ var animationClassNames = {
109
+ appear: '',
110
+ enter: '',
111
+ exit: ''
112
+ };
113
+ if (animations) {
114
+ if (animations.enter) {
115
+ animationClassNames.enter = "".concat(animations.enter.type, "-").concat(id, "-enter");
116
+ animationClassNames.appear = animationClassNames.enter;
117
+ }
118
+ if (animations.exit) {
119
+ animationClassNames.exit = "".concat(animations.exit.type, "-").concat(id, "-exit");
120
+ }
121
+ }
122
+ return animationClassNames;
123
+ }
124
+ function initAnimationTimeout() {
125
+ var animations = schema === null || schema === void 0 ? void 0 : schema.animations;
126
+ var animationTimeout = {
127
+ enter: 0,
128
+ exit: 0
129
+ };
130
+ if (animations) {
131
+ if (animations.enter) {
132
+ animationTimeout.enter =
133
+ ((animations.enter.duration || 1) + (animations.enter.delay || 0)) *
134
+ 1000;
135
+ }
136
+ if (animations.exit) {
137
+ animationTimeout.exit =
138
+ ((animations.exit.duration || 1) + (animations.exit.delay || 0)) *
139
+ 1000;
140
+ }
141
+ }
142
+ return animationTimeout;
143
+ }
144
+ function refFn(ref) {
145
+ if (ref) {
146
+ observer.observe(ref);
147
+ }
148
+ }
149
+ var handleEntered = React.useCallback(function (node) {
150
+ var _a = schema.animations || {}, attention = _a.attention, exit = _a.exit, enter = _a.enter;
151
+ if (attention) {
152
+ node.classList.add("".concat(attention.type, "-").concat(id, "-attention"));
153
+ }
154
+ if ((exit === null || exit === void 0 ? void 0 : exit.outView) || (enter === null || enter === void 0 ? void 0 : enter.repeat)) {
155
+ observer.observe(node);
156
+ }
157
+ }, []);
158
+ var handleExit = React.useCallback(function (node) {
159
+ var attention = (schema.animations || {}).attention;
160
+ if (attention) {
161
+ node.classList.remove("".concat(attention.type, "-").concat(id, "-attention"));
162
+ }
163
+ }, []);
164
+ var handleExited = React.useCallback(function () {
165
+ setPlaceholderShow(true);
166
+ }, []);
167
+ return (_J$X_(React__default["default"].Fragment, null,
168
+ !animationShow && show && placeholderShow && (_J$X_("div", { ref: refFn, className: "amis-animation-placeholder", "data-role": "animation-placeholder" }, component)),
169
+ _J$X_(reactTransitionGroup.CSSTransition, { in: animationShow && show, timeout: animationTimeout, classNames: animationClassNames, onEntered: handleEntered, onExit: handleExit, onExited: handleExited, appear: true, unmountOnExit: true }, component)));
170
+ }
171
+
172
+ exports["default"] = Animations;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * amis-core v6.11.0-beta.0
2
+ * amis-core v6.11.0-beta.2
3
3
  * Copyright 2018-2024 fex
4
4
  */
5
5