@kmkf-fe-packages/basic-components 0.22.0-alpha.2 → 0.22.0
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/index.esm.js +2 -2
- package/dist/index.js +2 -2
- package/package.json +3 -3
package/dist/index.esm.js
CHANGED
|
@@ -8401,9 +8401,9 @@ var GoodsModal = function GoodsModal(props) {
|
|
|
8401
8401
|
spinning: loading
|
|
8402
8402
|
}, /*#__PURE__*/React.createElement("div", {
|
|
8403
8403
|
className: "goodsMain"
|
|
8404
|
-
}, (searchParams.type == 'select' ? selectList : goodList).map(function (good) {
|
|
8404
|
+
}, (searchParams.type == 'select' ? selectList : goodList).map(function (good, index) {
|
|
8405
8405
|
return /*#__PURE__*/React.createElement("div", {
|
|
8406
|
-
key: good.numIid,
|
|
8406
|
+
key: good.numIid + "".concat(index),
|
|
8407
8407
|
className: "goodItem ".concat(selectIds.includes(good.numIid) ? 'active' : ''),
|
|
8408
8408
|
onClick: function onClick() {
|
|
8409
8409
|
changeItem(good);
|
package/dist/index.js
CHANGED
|
@@ -8412,9 +8412,9 @@ var GoodsModal = function GoodsModal(props) {
|
|
|
8412
8412
|
spinning: loading
|
|
8413
8413
|
}, /*#__PURE__*/React__default['default'].createElement("div", {
|
|
8414
8414
|
className: "goodsMain"
|
|
8415
|
-
}, (searchParams.type == 'select' ? selectList : goodList).map(function (good) {
|
|
8415
|
+
}, (searchParams.type == 'select' ? selectList : goodList).map(function (good, index) {
|
|
8416
8416
|
return /*#__PURE__*/React__default['default'].createElement("div", {
|
|
8417
|
-
key: good.numIid,
|
|
8417
|
+
key: good.numIid + "".concat(index),
|
|
8418
8418
|
className: "goodItem ".concat(selectIds.includes(good.numIid) ? 'active' : ''),
|
|
8419
8419
|
onClick: function onClick() {
|
|
8420
8420
|
changeItem(good);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kmkf-fe-packages/basic-components",
|
|
3
|
-
"version": "0.22.0
|
|
3
|
+
"version": "0.22.0",
|
|
4
4
|
"description": "> TODO: description",
|
|
5
5
|
"homepage": "",
|
|
6
6
|
"license": "ISC",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"watch": "nodemon --ignore dist/ --ignore node_modules/ --watch src/ -C -e ts,tsx,less --debug -x 'yarn async'"
|
|
21
21
|
},
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"@kmkf-fe-packages/kmkf-utils": "^0.22.0
|
|
23
|
+
"@kmkf-fe-packages/kmkf-utils": "^0.22.0",
|
|
24
24
|
"lodash": "^4.17.21",
|
|
25
25
|
"pubsub-js": "^1.9.4",
|
|
26
26
|
"react-copy-to-clipboard": "^5.1.0",
|
|
@@ -61,5 +61,5 @@
|
|
|
61
61
|
"publishConfig": {
|
|
62
62
|
"access": "public"
|
|
63
63
|
},
|
|
64
|
-
"gitHead": "
|
|
64
|
+
"gitHead": "fc1fac5539ff277fa690815ce8f8df5827b643f8"
|
|
65
65
|
}
|