reso-ui 1.11.1 → 1.11.2

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.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -15,7 +15,7 @@ npm install reso-ui
15
15
  1. Import the styles in your `index.ts` or `index.ts`. Import it BEFORE importing Application-spcific styles:
16
16
 
17
17
  ```js
18
- import "reso-ui/styles.css";
18
+ import "reso-ui/styles";
19
19
 
20
20
  // your application-specific styles will override reso-ui styles
21
21
  import "./index.css";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "reso-ui",
3
- "version": "1.11.1",
3
+ "version": "1.11.2",
4
4
  "description": "Reusable React components in Typescript",
5
5
  "types": "types/index",
6
6
  "main": "dist/lib.js",
@@ -9,7 +9,8 @@
9
9
  "types"
10
10
  ],
11
11
  "exports": {
12
- ".": "./dist"
12
+ ".": "./dist/lib.js",
13
+ "./styles": "./dist/styles.css"
13
14
  },
14
15
  "scripts": {
15
16
  "setup-commitlint": "husky install && npx husky add .husky/commit-msg \"npx --no-install commitlint --edit \"$1\"\"",