@zgfe/business-lib 1.1.7-dmd2.3 → 1.1.7-dmd2.4
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.
|
@@ -149,17 +149,20 @@ var AttrListPanel = function AttrListPanel(props) {
|
|
|
149
149
|
disableItemlist === null || disableItemlist === void 0 ? void 0 : disableItemlist.forEach(function (item) {
|
|
150
150
|
if (item.key === option.key) disabled = true;
|
|
151
151
|
});
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
152
|
+
|
|
153
|
+
if (option.hidden != 1) {
|
|
154
|
+
childList.push( /*#__PURE__*/React.createElement(Option, {
|
|
155
|
+
option: option,
|
|
156
|
+
key: option === null || option === void 0 ? void 0 : option.key,
|
|
157
|
+
checked: (currentAttr === null || currentAttr === void 0 ? void 0 : currentAttr.key) === (option === null || option === void 0 ? void 0 : option.key),
|
|
158
|
+
highlight: {
|
|
159
|
+
enable: true,
|
|
160
|
+
text: searchValue
|
|
161
|
+
},
|
|
162
|
+
disabled: disabled,
|
|
163
|
+
onClick: onClick
|
|
164
|
+
}));
|
|
165
|
+
}
|
|
163
166
|
});
|
|
164
167
|
|
|
165
168
|
if (childList.length) {
|
|
@@ -68,6 +68,7 @@ export default function convertAttributeData(store) {
|
|
|
68
68
|
res.userPropList = (_store$userPropList = store.userPropList) === null || _store$userPropList === void 0 ? void 0 : _store$userPropList.map(function (prop) {
|
|
69
69
|
return {
|
|
70
70
|
id: prop.id || 0,
|
|
71
|
+
hidden: prop.hidden,
|
|
71
72
|
alias: prop.alias_name,
|
|
72
73
|
category: prop.category,
|
|
73
74
|
key: "userProp-".concat(prop.name),
|
package/es/utils/type.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@zgfe/business-lib",
|
|
3
|
-
"version": "1.1.7-dmd2.
|
|
3
|
+
"version": "1.1.7-dmd2.4",
|
|
4
4
|
"scripts": {
|
|
5
5
|
"start": "dumi dev",
|
|
6
6
|
"docs:build": "dumi build",
|
|
@@ -60,5 +60,5 @@
|
|
|
60
60
|
"react": "^16.12.0 || ^17.0.0",
|
|
61
61
|
"yorkie": "^2.0.0"
|
|
62
62
|
},
|
|
63
|
-
"gitHead": "
|
|
63
|
+
"gitHead": "cdb0d003093aea6b08d3c5e2b9ea14fc89121748"
|
|
64
64
|
}
|