@nimbus-ds/patterns 1.13.0-rc.6 → 1.14.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/CHANGELOG.md +304 -0
- package/dist/CHANGELOG.md +6 -0
- package/dist/ProductDataList/index.d.ts +195 -0
- package/dist/ProductDataList/index.js +2 -0
- package/dist/Sortable/index.d.ts +11 -2
- package/dist/Sortable/index.js +1 -1
- package/dist/index.d.ts +136 -2
- package/dist/index.js +1 -1
- package/package.json +10 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/patterns",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.14.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -22,13 +22,13 @@
|
|
|
22
22
|
"react-day-picker": "^8.8.2"
|
|
23
23
|
},
|
|
24
24
|
"peerDependencies": {
|
|
25
|
+
"@dnd-kit/core": "^6.1.0",
|
|
26
|
+
"@dnd-kit/sortable": "^7.0.2",
|
|
27
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
25
28
|
"@nimbus-ds/components": "^5",
|
|
26
29
|
"@nimbus-ds/icons": "^1",
|
|
27
30
|
"react": "^16.8 || ^17.0 || ^18.0",
|
|
28
|
-
"react-dom": "^16.8 || ^17.0 || ^18.0"
|
|
29
|
-
"@dnd-kit/core": "^6.1.0",
|
|
30
|
-
"@dnd-kit/sortable": "^7.0.2",
|
|
31
|
-
"@dnd-kit/utilities": "^3.2.2"
|
|
31
|
+
"react-dom": "^16.8 || ^17.0 || ^18.0"
|
|
32
32
|
},
|
|
33
33
|
"homepage": "https://nimbus.nuvemshop.com.br/documentation",
|
|
34
34
|
"repository": {
|
|
@@ -115,6 +115,10 @@
|
|
|
115
115
|
"import": "./dist/PlanDisplay/index.js",
|
|
116
116
|
"require": "./dist/PlanDisplay/index.js"
|
|
117
117
|
},
|
|
118
|
+
"./ProductDataList": {
|
|
119
|
+
"import": "./dist/ProductDataList/index.js",
|
|
120
|
+
"require": "./dist/ProductDataList/index.js"
|
|
121
|
+
},
|
|
118
122
|
"./ProductUpdates": {
|
|
119
123
|
"import": "./dist/ProductUpdates/index.js",
|
|
120
124
|
"require": "./dist/ProductUpdates/index.js"
|
|
@@ -132,4 +136,4 @@
|
|
|
132
136
|
"require": "./dist/ThumbnailWithAction/index.js"
|
|
133
137
|
}
|
|
134
138
|
}
|
|
135
|
-
}
|
|
139
|
+
}
|