@steedos-widgets/amis-lib 6.3.0-beta.21 → 6.3.0-beta.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/tsconfig.tsbuildinfo +1 -1
- package/dist/index.cjs.js +3 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +3 -1
- package/dist/index.esm.js.map +1 -1
- package/dist/index.umd.js +3 -3
- package/dist/index.umd.js.map +1 -1
- package/package.json +2 -2
package/dist/index.esm.js
CHANGED
|
@@ -14161,7 +14161,7 @@ function uuidv4() {
|
|
|
14161
14161
|
* @Author: 殷亮辉 yinlianghui@hotoa.com
|
|
14162
14162
|
* @Date: 2023-11-15 09:50:22
|
|
14163
14163
|
* @LastEditors: 殷亮辉 yinlianghui@hotoa.com
|
|
14164
|
-
* @LastEditTime: 2024-
|
|
14164
|
+
* @LastEditTime: 2024-06-11 15:38:16
|
|
14165
14165
|
*/
|
|
14166
14166
|
|
|
14167
14167
|
/**
|
|
@@ -15231,6 +15231,7 @@ async function getButtonActions(props, mode) {
|
|
|
15231
15231
|
"__parentForm": mode == "new" ? "$$" : parentFormData,
|
|
15232
15232
|
"_master": "${_master}",
|
|
15233
15233
|
"global": "${global}",
|
|
15234
|
+
"context": "${context}",
|
|
15234
15235
|
"uiSchema": "${uiSchema}",
|
|
15235
15236
|
"index": "${index}",//amis组件自带行索引,在节点嵌套情况下,当前节点如果是children属性下的子节点时,这里的index是当前节点在children中的索引,而不是外层父节点的index
|
|
15236
15237
|
"parent": "${__super.parent}",//amis组件自带父节点数据域数据,即节点嵌套情况下,当前节点为某个节点(比如A节点)的children属性下的子节点时,当前节点的父节点(即A节点)的数据域数据
|
|
@@ -15355,6 +15356,7 @@ async function getButtonActions(props, mode) {
|
|
|
15355
15356
|
"__parentForm": parentFormData,
|
|
15356
15357
|
"_master": "${_master}",
|
|
15357
15358
|
"global": "${global}",
|
|
15359
|
+
"context": "${context}",
|
|
15358
15360
|
"uiSchema": "${uiSchema}",
|
|
15359
15361
|
"index": "${index}",
|
|
15360
15362
|
"parent": "${__super.parent}",//amis组件自带父节点数据域数据,即节点嵌套情况下,当前节点为某个节点(比如A节点)的children属性下的子节点时,当前节点的父节点(即A节点)的数据域数据
|