@muibook/components 1.3.0 → 1.3.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/package.json +5 -2
  2. package/readme.md +5 -5
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@muibook/components",
3
- "version": "1.3.0",
3
+ "version": "1.3.2",
4
4
  "description": "A library of MUI-based design system components.",
5
5
  "author": "Michael Trilford",
6
6
  "homepage": "https://muibook.com",
@@ -334,7 +334,10 @@
334
334
  "./agent/keywords": {
335
335
  "import": "./dist/esm/agent/keywords/index.js",
336
336
  "types": "./dist/types/agent/keywords/index.d.ts"
337
- }
337
+ },
338
+ "./css/mui-tokens.css": "./dist/esm/css/mui-tokens.css",
339
+ "./css/mui-reset.css": "./dist/esm/css/mui-reset.css",
340
+ "./css/mui-base.css": "./dist/esm/css/mui-base.css"
338
341
  },
339
342
  "scripts": {
340
343
  "dev": "vite",
package/readme.md CHANGED
@@ -16,16 +16,16 @@ import "@muibook/components/mui-body"; // Individual
16
16
  #### CSS Usage
17
17
 
18
18
  ```javascript
19
- import "@muibook/components/dist/esm/css/mui-tokens.css";
20
- import "@muibook/components/dist/esm/css/mui-reset.css";
21
- import "@muibook/components/dist/esm/css/mui-base.css";
19
+ import "@muibook/components/css/mui-tokens.css";
20
+ import "@muibook/components/css/mui-base.css";
21
+ import "@muibook/components/css/mui-reset.css";
22
22
  ```
23
23
 
24
24
  #### Agent Usage
25
25
 
26
26
  ```javascript
27
- import "@muibook/components/dist/esm/agent/prompts";
28
- import "@muibook/components/dist/esm/agent/keywords";
27
+ import "@muibook/components/agent/prompts";
28
+ import "@muibook/components/agent/keywords";
29
29
  ```
30
30
 
31
31
  Links •