@nimbus-ds/components 2.0.0-rc.2 → 2.0.0-rc.3
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 +6 -0
- package/dist/index.d.ts +2 -2
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
This package is intended for internal use in generating builds of each design system package. It contains all the necessary settings and dependencies to optimize the creation of our builds.
|
|
4
4
|
|
|
5
|
+
## 2022-12-22 `2.0.0`
|
|
6
|
+
|
|
7
|
+
### 💡 Others
|
|
8
|
+
|
|
9
|
+
- Removed direct dependency on package 'nimbus-ds/styles' from compilation of all components. ([#69](https://github.com/TiendaNube/nimbus-design-system/pull/69) by [@juniorconquista](https://github.com/juniorconquista))
|
|
10
|
+
|
|
5
11
|
## 2022-12-20 `1.1.0`
|
|
6
12
|
|
|
7
13
|
### 🎉 New features
|
package/dist/index.d.ts
CHANGED
|
@@ -151,7 +151,7 @@ export interface BoxSprinkle {
|
|
|
151
151
|
declare const fileUploader: {
|
|
152
152
|
sprinkle: ((props: {
|
|
153
153
|
aspectRatio?: "none" | AspectRatio | undefined;
|
|
154
|
-
flexDirection?: "
|
|
154
|
+
flexDirection?: "row" | "column" | undefined;
|
|
155
155
|
cursor?: Cursor | undefined;
|
|
156
156
|
}) => string) & {
|
|
157
157
|
properties: Set<"aspectRatio" | "cursor" | "flexDirection">;
|
|
@@ -366,7 +366,7 @@ declare const popover: {
|
|
|
366
366
|
color?: "primary" | "success" | "warning" | "danger" | "neutral" | "light" | undefined;
|
|
367
367
|
padding?: "base" | "none" | undefined;
|
|
368
368
|
}) => string) & {
|
|
369
|
-
properties: Set<"
|
|
369
|
+
properties: Set<"color" | "backgroundColor" | "padding">;
|
|
370
370
|
};
|
|
371
371
|
properties: {
|
|
372
372
|
backgroundColor: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/components",
|
|
3
|
-
"version": "2.0.0-rc.
|
|
3
|
+
"version": "2.0.0-rc.3",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -14,7 +14,8 @@
|
|
|
14
14
|
"version": "yarn version"
|
|
15
15
|
},
|
|
16
16
|
"dependencies": {
|
|
17
|
-
"@floating-ui/react-dom-interactions": "^0.10.1"
|
|
17
|
+
"@floating-ui/react-dom-interactions": "^0.10.1",
|
|
18
|
+
"@tiendanube/icons": "^0.3.1"
|
|
18
19
|
},
|
|
19
20
|
"peerDependencies": {
|
|
20
21
|
"react": "^16.8 || ^17.0 || ^18.0",
|