@vchasno/ui-kit 0.2.0 → 0.2.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 CHANGED
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## [Unreleased]
9
9
 
10
+ ## [0.2.1] - 2024-01-18
11
+
12
+ ## Fixed
13
+
14
+ - description css exports in package.json
15
+
10
16
  ## [0.2.0] - 2024-01-18
11
17
 
12
18
  ## Added
package/README.md CHANGED
@@ -53,9 +53,9 @@ Suggestions:
53
53
 
54
54
  ```jsx
55
55
  // index.tsx
56
- import "@vchasno/ui-kit/dist/css/_reset.css"; // optional reset styles
57
- import "@vchasno/ui-kit/dist/css/_base.css"; // optional base styles
58
- import "@vchasno/ui-kit/dist/css/_theme.css"; // optional theme variables
56
+ import "@vchasno/ui-kit/reset.css"; // optional reset styles
57
+ import "@vchasno/ui-kit/base.css"; // optional base styles
58
+ import "@vchasno/ui-kit/theme.css"; // optional theme variables
59
59
  import "src/styles/_theme-override.css"; // yuor own css file with theme variables override
60
60
  ```
61
61
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vchasno/ui-kit",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "React UI components for Vchasno applications",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.js",
@@ -22,7 +22,10 @@
22
22
  "./SelectCreatable": {
23
23
  "types": "./dist/SelectCreatable/index.d.ts",
24
24
  "import": "./dist/SelectCreatable/index.js"
25
- }
25
+ },
26
+ "./base.css": "./dist/css/_base.css",
27
+ "./reset.css": "./dist/css/_reset.css",
28
+ "./theme.css": "./dist/css/_theme.css"
26
29
  },
27
30
  "types": "dist/index.d.ts",
28
31
  "scripts": {