@nimbus-ds/styles 4.0.0-rc.1 → 4.1.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 +6 -0
- package/dist/index.css +36 -11
- package/dist/index.css.map +1 -1
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -1
- package/dist/index.js.LICENSE.txt +40 -22
- package/dist/index.js.map +1 -1
- package/dist/packages/badge/index.css +2 -2
- package/dist/packages/badge/index.js +1 -1
- package/dist/packages/badge/index.js.LICENSE.txt +4 -4
- package/dist/packages/badge/index.js.map +1 -1
- package/dist/packages/button/index.css +2 -2
- package/dist/packages/button/index.js +1 -1
- package/dist/packages/button/index.js.LICENSE.txt +4 -4
- package/dist/packages/button/index.js.map +1 -1
- package/dist/packages/checkbox/index.css +3 -3
- package/dist/packages/checkbox/index.js +1 -1
- package/dist/packages/checkbox/index.js.LICENSE.txt +6 -6
- package/dist/packages/checkbox/index.js.map +1 -1
- package/dist/packages/chip/index.css +2 -2
- package/dist/packages/chip/index.js +1 -1
- package/dist/packages/chip/index.js.LICENSE.txt +4 -4
- package/dist/packages/chip/index.js.map +1 -1
- package/dist/packages/icon/index.css +3 -3
- package/dist/packages/icon/index.js +1 -1
- package/dist/packages/icon/index.js.LICENSE.txt +6 -6
- package/dist/packages/icon/index.js.map +1 -1
- package/dist/packages/iconButton/index.css +1 -1
- package/dist/packages/iconButton/index.js +1 -1
- package/dist/packages/iconButton/index.js.LICENSE.txt +2 -2
- package/dist/packages/iconButton/index.js.map +1 -1
- package/dist/packages/label/index.css +1 -1
- package/dist/packages/label/index.js +1 -1
- package/dist/packages/label/index.js.LICENSE.txt +2 -2
- package/dist/packages/label/index.js.map +1 -1
- package/dist/packages/list/index.css +129 -0
- package/dist/packages/list/index.css.map +1 -0
- package/dist/packages/list/index.d.ts +4 -0
- package/dist/packages/list/index.js +3 -0
- package/dist/packages/list/index.js.LICENSE.txt +21 -0
- package/dist/packages/list/index.js.map +1 -0
- package/dist/packages/list/list.style.css.d.ts +3 -0
- package/dist/packages/skeleton/index.css +1 -1
- package/dist/packages/skeleton/index.js +1 -1
- package/dist/packages/skeleton/index.js.LICENSE.txt +2 -2
- package/dist/packages/skeleton/index.js.map +1 -1
- package/dist/packages/spinner/index.css +2 -2
- package/dist/packages/spinner/index.js +1 -1
- package/dist/packages/spinner/index.js.LICENSE.txt +4 -4
- package/dist/packages/spinner/index.js.map +1 -1
- package/dist/packages/tag/index.css +2 -2
- package/dist/packages/tag/index.js +1 -1
- package/dist/packages/tag/index.js.LICENSE.txt +4 -4
- package/dist/packages/tag/index.js.map +1 -1
- package/dist/packages/text/index.css +3 -3
- package/dist/packages/text/index.d.ts +5 -5
- package/dist/packages/text/index.js +1 -1
- package/dist/packages/text/index.js.LICENSE.txt +6 -6
- package/dist/packages/text/index.js.map +1 -1
- package/dist/packages/text/text.sprinkle.css.d.ts +5 -5
- package/dist/packages/title/index.css +2 -2
- package/dist/packages/title/index.js +1 -1
- package/dist/packages/title/index.js.LICENSE.txt +4 -4
- package/dist/packages/title/index.js.map +1 -1
- package/dist/packages/toast/index.css +2 -2
- package/dist/packages/toast/index.d.ts +1 -1
- package/dist/packages/toast/index.js +1 -1
- package/dist/packages/toast/index.js.LICENSE.txt +4 -4
- package/dist/packages/toast/index.js.map +1 -1
- package/dist/packages/toast/toast.style.css.d.ts +1 -1
- package/dist/packages/toggle/index.css +2 -2
- package/dist/packages/toggle/index.js +1 -1
- package/dist/packages/toggle/index.js.LICENSE.txt +4 -4
- package/dist/packages/toggle/index.js.map +1 -1
- package/dist/themes/base.css +1 -1
- package/dist/themes/base.js +1 -1
- package/dist/themes/base.js.LICENSE.txt +2 -2
- package/dist/themes/base.js.map +1 -1
- package/dist/themes/dark.css +2 -2
- package/dist/themes/dark.js +1 -1
- package/dist/themes/dark.js.LICENSE.txt +4 -4
- package/dist/themes/dark.js.map +1 -1
- package/package.json +3 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nimbus-ds/styles",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.1.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"source": "src/index.ts",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"version": "yarn version"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@nimbus-ds/tokens": "5.0.0
|
|
20
|
+
"@nimbus-ds/tokens": "5.0.0"
|
|
21
21
|
},
|
|
22
22
|
"homepage": "https://nimbus.nuvemshop.com.br/documentation",
|
|
23
23
|
"repository": {
|
|
@@ -37,6 +37,5 @@
|
|
|
37
37
|
"ts-loader": "^9.3.1",
|
|
38
38
|
"webpack": "^5.74.0",
|
|
39
39
|
"webpack-cli": "^4.10.0"
|
|
40
|
-
}
|
|
41
|
-
"stableVersion": "3.2.0"
|
|
40
|
+
}
|
|
42
41
|
}
|