lux-design-system 5.0.2 → 5.1.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/README.md +9 -2
- package/dist/lux-design-system.d.ts +1 -0
- package/dist/lux-styleguidist.mjs +3237 -3149
- package/dist/lux-styleguidist.umd.js +34 -34
- package/dist/style.css +1 -1
- package/dist/styles/variables.css +5 -0
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Lux Design System
|
|
2
2
|
|
|
3
|
+
## [View the Design System](https://pulibrary.github.io/lux-design-system/)
|
|
4
|
+
|
|
5
|
+
## Adding Lux to an application or website
|
|
6
|
+
|
|
7
|
+
[Instructions for adding lux](docs/adding_lux.md)
|
|
8
|
+
|
|
3
9
|
## Project setup
|
|
4
10
|
```
|
|
5
11
|
npm install
|
|
@@ -36,7 +42,7 @@ npm run release
|
|
|
36
42
|
```
|
|
37
43
|
npm run deploy
|
|
38
44
|
```
|
|
39
|
-
This will update the docs at [https://pulibrary.github.io/lux-
|
|
45
|
+
This will update the docs at [https://pulibrary.github.io/lux-design-system/](https://pulibrary.github.io/lux-design-system/).
|
|
40
46
|
Please note: For informational purposes only. Don't do this outside of a release!
|
|
41
47
|
|
|
42
48
|
|
|
@@ -95,7 +101,8 @@ You should see a note that it's published in store
|
|
|
95
101
|
run: `yarn exec yalc add lux-design-system`
|
|
96
102
|
4. Sometimes, your application's vite will have cached the old version.
|
|
97
103
|
If you are not seeing your changes, in your application directory run:
|
|
98
|
-
`bundle exec vite clobber
|
|
104
|
+
* `bundle exec vite clobber` for ruby projects
|
|
105
|
+
* `yarn dev --force` for Vue projects
|
|
99
106
|
|
|
100
107
|
## Upgrade Instructions
|
|
101
108
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
declare module "lux-design-system";
|