szld-libs 0.3.93 → 0.3.94
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.
|
@@ -58,9 +58,9 @@ const DynamicForm = forwardRef((props, ref) => {
|
|
|
58
58
|
return delFileListRef.current;
|
|
59
59
|
}
|
|
60
60
|
}));
|
|
61
|
-
return /* @__PURE__ */ jsx(Fragment, { children: formShowType === "table" ? /* @__PURE__ */ jsx(Form.List, { name: formListItemName || "customFormList", initialValue: [{}], children: (fields, { add, remove }) => /* @__PURE__ */
|
|
62
|
-
/* @__PURE__ */ jsxs(
|
|
63
|
-
/* @__PURE__ */ jsx(Flex, {
|
|
61
|
+
return /* @__PURE__ */ jsx(Fragment, { children: formShowType === "table" ? /* @__PURE__ */ jsx(Form.List, { name: formListItemName || "customFormList", initialValue: [{}], children: (fields, { add, remove }) => /* @__PURE__ */ jsx(Flex, { className: "custom-form-body", children: /* @__PURE__ */ jsxs("div", { className: "custom-form-list", children: [
|
|
62
|
+
/* @__PURE__ */ jsxs(Flex, { align: "center", style: { position: "relative", backgroundColor: "#004d32" }, children: [
|
|
63
|
+
/* @__PURE__ */ jsx(Flex, { className: "custom-form-list-header", align: "center", children: formConfig == null ? void 0 : formConfig.map((child, index) => {
|
|
64
64
|
var _a, _b;
|
|
65
65
|
const width = ((_a = child == null ? void 0 : child.json) == null ? void 0 : _a["input-width"]) && Number((_b = child == null ? void 0 : child.json) == null ? void 0 : _b["input-width"]) || defaultWidth;
|
|
66
66
|
return /* @__PURE__ */ jsxs(
|
|
@@ -78,8 +78,11 @@ const DynamicForm = forwardRef((props, ref) => {
|
|
|
78
78
|
},
|
|
79
79
|
index
|
|
80
80
|
);
|
|
81
|
-
}) })
|
|
82
|
-
|
|
81
|
+
}) }),
|
|
82
|
+
/* @__PURE__ */ jsx("a", { className: "custom-form-list-add-btn", onClick: () => add(), children: langId === "10001" ? "新增" : "Add" })
|
|
83
|
+
] }),
|
|
84
|
+
fields.map((field) => /* @__PURE__ */ jsxs(Flex, { align: "center", className: "custom-form-list-item-container", children: [
|
|
85
|
+
/* @__PURE__ */ jsx(Flex, { className: "custom-form-list-item", align: "center", children: formConfig == null ? void 0 : formConfig.map((child, index) => {
|
|
83
86
|
var _a, _b;
|
|
84
87
|
const width = ((_a = child == null ? void 0 : child.json) == null ? void 0 : _a["input-width"]) && Number((_b = child == null ? void 0 : child.json) == null ? void 0 : _b["input-width"]) || defaultWidth;
|
|
85
88
|
return /* @__PURE__ */ jsx(
|
|
@@ -108,52 +111,10 @@ const DynamicForm = forwardRef((props, ref) => {
|
|
|
108
111
|
},
|
|
109
112
|
child.attrid || `child-${index}`
|
|
110
113
|
);
|
|
111
|
-
}) })
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
{
|
|
116
|
-
className: "custom-form-list-right",
|
|
117
|
-
vertical: true,
|
|
118
|
-
style: {
|
|
119
|
-
position: "sticky",
|
|
120
|
-
right: 0,
|
|
121
|
-
flexShrink: 0,
|
|
122
|
-
backgroundColor: "#fff",
|
|
123
|
-
zIndex: 1
|
|
124
|
-
},
|
|
125
|
-
children: [
|
|
126
|
-
/* @__PURE__ */ jsx(
|
|
127
|
-
"a",
|
|
128
|
-
{
|
|
129
|
-
className: "custom-form-list-add-btn",
|
|
130
|
-
onClick: () => add(),
|
|
131
|
-
style: {
|
|
132
|
-
display: "block",
|
|
133
|
-
textAlign: "center",
|
|
134
|
-
minWidth: "60px"
|
|
135
|
-
},
|
|
136
|
-
children: langId === "10001" ? "新增" : "Add"
|
|
137
|
-
}
|
|
138
|
-
),
|
|
139
|
-
fields.map((field) => /* @__PURE__ */ jsx(
|
|
140
|
-
"a",
|
|
141
|
-
{
|
|
142
|
-
className: "custom-form-list-del-btn",
|
|
143
|
-
onClick: () => remove(field.key),
|
|
144
|
-
style: {
|
|
145
|
-
display: "block",
|
|
146
|
-
textAlign: "center",
|
|
147
|
-
minWidth: "60px"
|
|
148
|
-
},
|
|
149
|
-
children: langId === "10001" ? "删除" : "Delete"
|
|
150
|
-
},
|
|
151
|
-
field.key
|
|
152
|
-
))
|
|
153
|
-
]
|
|
154
|
-
}
|
|
155
|
-
)
|
|
156
|
-
] }) }) : /* @__PURE__ */ jsx(Row, { gutter: colSpace, children: formConfig.map((item, index) => /* @__PURE__ */ jsx(Fragment$1, { children: handleRenderItem({
|
|
114
|
+
}) }),
|
|
115
|
+
/* @__PURE__ */ jsx("a", { className: "custom-form-list-del-btn", onClick: () => remove(field.key), children: langId === "10001" ? "删除" : "Delete" })
|
|
116
|
+
] }, field.key))
|
|
117
|
+
] }) }) }) : /* @__PURE__ */ jsx(Row, { gutter: colSpace, children: formConfig.map((item, index) => /* @__PURE__ */ jsx(Fragment$1, { children: handleRenderItem({
|
|
157
118
|
item,
|
|
158
119
|
readonly,
|
|
159
120
|
colNum,
|
|
@@ -59,9 +59,9 @@ const DynamicForm = react.forwardRef((props, ref) => {
|
|
|
59
59
|
return delFileListRef.current;
|
|
60
60
|
}
|
|
61
61
|
}));
|
|
62
|
-
return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: formShowType === "table" ? /* @__PURE__ */ jsxRuntime.jsx(antd.Form.List, { name: formListItemName || "customFormList", initialValue: [{}], children: (fields, { add, remove }) => /* @__PURE__ */ jsxRuntime.
|
|
63
|
-
/* @__PURE__ */ jsxRuntime.jsxs(
|
|
64
|
-
/* @__PURE__ */ jsxRuntime.jsx(antd.Flex, {
|
|
62
|
+
return /* @__PURE__ */ jsxRuntime.jsx(jsxRuntime.Fragment, { children: formShowType === "table" ? /* @__PURE__ */ jsxRuntime.jsx(antd.Form.List, { name: formListItemName || "customFormList", initialValue: [{}], children: (fields, { add, remove }) => /* @__PURE__ */ jsxRuntime.jsx(antd.Flex, { className: "custom-form-body", children: /* @__PURE__ */ jsxRuntime.jsxs("div", { className: "custom-form-list", children: [
|
|
63
|
+
/* @__PURE__ */ jsxRuntime.jsxs(antd.Flex, { align: "center", style: { position: "relative", backgroundColor: "#004d32" }, children: [
|
|
64
|
+
/* @__PURE__ */ jsxRuntime.jsx(antd.Flex, { className: "custom-form-list-header", align: "center", children: formConfig == null ? void 0 : formConfig.map((child, index) => {
|
|
65
65
|
var _a, _b;
|
|
66
66
|
const width = ((_a = child == null ? void 0 : child.json) == null ? void 0 : _a["input-width"]) && Number((_b = child == null ? void 0 : child.json) == null ? void 0 : _b["input-width"]) || defaultWidth;
|
|
67
67
|
return /* @__PURE__ */ jsxRuntime.jsxs(
|
|
@@ -79,8 +79,11 @@ const DynamicForm = react.forwardRef((props, ref) => {
|
|
|
79
79
|
},
|
|
80
80
|
index
|
|
81
81
|
);
|
|
82
|
-
}) })
|
|
83
|
-
|
|
82
|
+
}) }),
|
|
83
|
+
/* @__PURE__ */ jsxRuntime.jsx("a", { className: "custom-form-list-add-btn", onClick: () => add(), children: langId === "10001" ? "新增" : "Add" })
|
|
84
|
+
] }),
|
|
85
|
+
fields.map((field) => /* @__PURE__ */ jsxRuntime.jsxs(antd.Flex, { align: "center", className: "custom-form-list-item-container", children: [
|
|
86
|
+
/* @__PURE__ */ jsxRuntime.jsx(antd.Flex, { className: "custom-form-list-item", align: "center", children: formConfig == null ? void 0 : formConfig.map((child, index) => {
|
|
84
87
|
var _a, _b;
|
|
85
88
|
const width = ((_a = child == null ? void 0 : child.json) == null ? void 0 : _a["input-width"]) && Number((_b = child == null ? void 0 : child.json) == null ? void 0 : _b["input-width"]) || defaultWidth;
|
|
86
89
|
return /* @__PURE__ */ jsxRuntime.jsx(
|
|
@@ -109,52 +112,10 @@ const DynamicForm = react.forwardRef((props, ref) => {
|
|
|
109
112
|
},
|
|
110
113
|
child.attrid || `child-${index}`
|
|
111
114
|
);
|
|
112
|
-
}) })
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
{
|
|
117
|
-
className: "custom-form-list-right",
|
|
118
|
-
vertical: true,
|
|
119
|
-
style: {
|
|
120
|
-
position: "sticky",
|
|
121
|
-
right: 0,
|
|
122
|
-
flexShrink: 0,
|
|
123
|
-
backgroundColor: "#fff",
|
|
124
|
-
zIndex: 1
|
|
125
|
-
},
|
|
126
|
-
children: [
|
|
127
|
-
/* @__PURE__ */ jsxRuntime.jsx(
|
|
128
|
-
"a",
|
|
129
|
-
{
|
|
130
|
-
className: "custom-form-list-add-btn",
|
|
131
|
-
onClick: () => add(),
|
|
132
|
-
style: {
|
|
133
|
-
display: "block",
|
|
134
|
-
textAlign: "center",
|
|
135
|
-
minWidth: "60px"
|
|
136
|
-
},
|
|
137
|
-
children: langId === "10001" ? "新增" : "Add"
|
|
138
|
-
}
|
|
139
|
-
),
|
|
140
|
-
fields.map((field) => /* @__PURE__ */ jsxRuntime.jsx(
|
|
141
|
-
"a",
|
|
142
|
-
{
|
|
143
|
-
className: "custom-form-list-del-btn",
|
|
144
|
-
onClick: () => remove(field.key),
|
|
145
|
-
style: {
|
|
146
|
-
display: "block",
|
|
147
|
-
textAlign: "center",
|
|
148
|
-
minWidth: "60px"
|
|
149
|
-
},
|
|
150
|
-
children: langId === "10001" ? "删除" : "Delete"
|
|
151
|
-
},
|
|
152
|
-
field.key
|
|
153
|
-
))
|
|
154
|
-
]
|
|
155
|
-
}
|
|
156
|
-
)
|
|
157
|
-
] }) }) : /* @__PURE__ */ jsxRuntime.jsx(antd.Row, { gutter: colSpace, children: formConfig.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx(react.Fragment, { children: handleRenderItem({
|
|
115
|
+
}) }),
|
|
116
|
+
/* @__PURE__ */ jsxRuntime.jsx("a", { className: "custom-form-list-del-btn", onClick: () => remove(field.key), children: langId === "10001" ? "删除" : "Delete" })
|
|
117
|
+
] }, field.key))
|
|
118
|
+
] }) }) }) : /* @__PURE__ */ jsxRuntime.jsx(antd.Row, { gutter: colSpace, children: formConfig.map((item, index) => /* @__PURE__ */ jsxRuntime.jsx(react.Fragment, { children: handleRenderItem({
|
|
158
119
|
item,
|
|
159
120
|
readonly,
|
|
160
121
|
colNum,
|