3h1-ui 3.0.0-next.98 → 3.0.0-next.99
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/es/index.js +12 -1
- package/lib/index.js +12 -1
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -35973,11 +35973,22 @@ const Group = /* @__PURE__ */ defineComponent({
|
|
|
35973
35973
|
const renderGroup = () => {
|
|
35974
35974
|
var _a2, _b;
|
|
35975
35975
|
const {
|
|
35976
|
+
schema,
|
|
35977
|
+
tableAction: tableAction2,
|
|
35978
|
+
formModel,
|
|
35979
|
+
formActionType
|
|
35980
|
+
} = props2;
|
|
35981
|
+
let {
|
|
35976
35982
|
componentProps,
|
|
35977
35983
|
colProps
|
|
35978
35984
|
} = props2.schema;
|
|
35979
35985
|
if (isFunction$3(componentProps)) {
|
|
35980
|
-
|
|
35986
|
+
componentProps = componentProps({
|
|
35987
|
+
schema,
|
|
35988
|
+
tableAction: tableAction2,
|
|
35989
|
+
formModel,
|
|
35990
|
+
formActionType
|
|
35991
|
+
}) ?? {};
|
|
35981
35992
|
}
|
|
35982
35993
|
switch (props2.groupType) {
|
|
35983
35994
|
case "Divider":
|
package/lib/index.js
CHANGED
|
@@ -35997,11 +35997,22 @@ const Group = /* @__PURE__ */ vue.defineComponent({
|
|
|
35997
35997
|
const renderGroup = () => {
|
|
35998
35998
|
var _a2, _b;
|
|
35999
35999
|
const {
|
|
36000
|
+
schema,
|
|
36001
|
+
tableAction: tableAction2,
|
|
36002
|
+
formModel,
|
|
36003
|
+
formActionType
|
|
36004
|
+
} = props2;
|
|
36005
|
+
let {
|
|
36000
36006
|
componentProps,
|
|
36001
36007
|
colProps
|
|
36002
36008
|
} = props2.schema;
|
|
36003
36009
|
if (isFunction$3(componentProps)) {
|
|
36004
|
-
|
|
36010
|
+
componentProps = componentProps({
|
|
36011
|
+
schema,
|
|
36012
|
+
tableAction: tableAction2,
|
|
36013
|
+
formModel,
|
|
36014
|
+
formActionType
|
|
36015
|
+
}) ?? {};
|
|
36005
36016
|
}
|
|
36006
36017
|
switch (props2.groupType) {
|
|
36007
36018
|
case "Divider":
|