@nimbus-ds/styles 9.4.0-rc.8 → 9.5.0-rc.1
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 +13 -1
- package/package.json +6 -6
- package/dist/index.css +0 -1
- package/dist/index.d.ts +0 -4889
- package/dist/index.js +0 -1
- package/dist/styles.css +0 -1
- package/dist/themes/dark.css +0 -1
- package/dist/themes/dark.d.ts +0 -9
- package/dist/themes/dark.js +0 -1
- package/dist/themes/next-dark.css +0 -1
- package/dist/themes/next-dark.js +0 -1
- package/dist/themes/next.css +0 -1
- package/dist/themes/next.js +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,11 +2,23 @@
|
|
|
2
2
|
|
|
3
3
|
Nimbus Styles deprive all styles needed to build nimbus components.
|
|
4
4
|
|
|
5
|
+
## 2023-09-26 `9.5.0`
|
|
6
|
+
|
|
7
|
+
#### 🎉 New features
|
|
8
|
+
|
|
9
|
+
- Updated vanilla extract to new version. ([#193](https://github.com/TiendaNube/nimbus-design-system/pull/#193) by [@juniorconquista](https://github.com/juniorconquista))
|
|
10
|
+
|
|
11
|
+
#### 📚 3rd party library updates
|
|
12
|
+
|
|
13
|
+
- Updated `@vanilla-extract/css"@.13.0`. ([#193](https://github.com/TiendaNube/nimbus-design-system/pull/#193) by [@juniorconquista](https://github.com/juniorconquista))
|
|
14
|
+
- Updated `@vanilla-extract/recipes@0.5.0`. ([#193](https://github.com/TiendaNube/nimbus-design-system/pull/#193) by [@juniorconquista](https://github.com/juniorconquista))
|
|
15
|
+
- Updated `@vanilla-extract/sprinkles@1.6.1`. ([#193](https://github.com/TiendaNube/nimbus-design-system/pull/#193) by [@juniorconquista](https://github.com/juniorconquista))
|
|
16
|
+
|
|
5
17
|
## 2023-09-25 `9.4.0`
|
|
6
18
|
|
|
7
19
|
#### 🎉 New features
|
|
8
20
|
|
|
9
|
-
- Added new style pack for `Calendar` pattern. ([#
|
|
21
|
+
- Added new style pack for `Calendar` pattern. ([#191](https://github.com/TiendaNube/nimbus-design-system/pull/191) by [@juanchigallego](https://github.com/juanchigallego))
|
|
10
22
|
|
|
11
23
|
## 2023-09-04 `9.3.0`
|
|
12
24
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/styles",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.5.0-rc.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"files": [
|
|
@@ -23,15 +23,15 @@
|
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"@nimbus-ds/tokens": "^8.1.0",
|
|
26
|
-
"@nimbus-ds/webpack": "^1.
|
|
26
|
+
"@nimbus-ds/webpack": "^1.4.0-rc.1",
|
|
27
27
|
"@types/glob": "^8",
|
|
28
|
-
"@vanilla-extract/css": "^1.
|
|
29
|
-
"@vanilla-extract/recipes": "^0.
|
|
30
|
-
"@vanilla-extract/sprinkles": "^1.
|
|
28
|
+
"@vanilla-extract/css": "^1.13.0",
|
|
29
|
+
"@vanilla-extract/recipes": "^0.5.0",
|
|
30
|
+
"@vanilla-extract/sprinkles": "^1.6.1",
|
|
31
31
|
"css-loader": "^6.7.3",
|
|
32
32
|
"glob": "^8.0.3",
|
|
33
33
|
"rainbow-sprinkles": "^0.14.0",
|
|
34
34
|
"ts-node": "^10.9.1"
|
|
35
35
|
},
|
|
36
|
-
"stableVersion": "9.
|
|
36
|
+
"stableVersion": "9.4.0"
|
|
37
37
|
}
|