lux-design-system 7.6.2 → 7.6.3
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 +2 -2
- package/dist/lux-styleguidist.iife.js +99 -99
- package/dist/lux-styleguidist.mjs +10484 -12918
- package/dist/lux-styleguidist.umd.js +99 -99
- package/dist/style.css +2 -1
- package/dist/styles/variables.css +1 -1
- package/package.json +4 -7
|
@@ -50,7 +50,6 @@
|
|
|
50
50
|
--color-sky-blue: rgb(188, 223, 241);
|
|
51
51
|
--color-cerulean-blue: rgb(49, 112, 143);
|
|
52
52
|
--color-very-dark-blue: rgb(0, 39, 80);
|
|
53
|
-
--color-light-blue: rgb(203, 221, 230);
|
|
54
53
|
--color-yellow: rgb(251, 227, 187);
|
|
55
54
|
--color-dark-yellow: rgb(124, 68, 5);
|
|
56
55
|
--font-size-large-min: 1.125em;
|
|
@@ -124,4 +123,5 @@
|
|
|
124
123
|
--lux-library-logo-width-large: 10rem;
|
|
125
124
|
--lux-library-logo-margin-small: 0.5rem 0 0.5rem 0.5rem;
|
|
126
125
|
--lux-library-logo-margin-large: 1rem 1rem 1rem 0;
|
|
126
|
+
--lux-cell-size: 3rem;
|
|
127
127
|
}
|
package/package.json
CHANGED
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
"require": "./dist/styles/style.scss"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
23
|
-
"version": "7.6.
|
|
23
|
+
"version": "7.6.3",
|
|
24
24
|
"scripts": {
|
|
25
25
|
"serve": "vue-cli-service serve",
|
|
26
26
|
"build": "vite build",
|
|
27
|
-
"test": "TZ=UTC
|
|
27
|
+
"test": "TZ=UTC vitest",
|
|
28
28
|
"lint": "vue-cli-service lint",
|
|
29
29
|
"deploy": "npm run build; npm run styleguide:build; push-dir --dir=styleguide --branch=gh-pages --cleanup",
|
|
30
30
|
"release": "npm run build && np && npm run deploy",
|
|
@@ -51,18 +51,14 @@
|
|
|
51
51
|
"@vue/cli-plugin-babel": "~5.0.0",
|
|
52
52
|
"@vue/cli-plugin-eslint": "~5.0.0",
|
|
53
53
|
"@vue/cli-plugin-pwa": "~5.0.0",
|
|
54
|
-
"@vue/cli-plugin-unit-jest": "~5.0.0",
|
|
55
54
|
"@vue/cli-service": "~5.0.0",
|
|
56
55
|
"@vue/test-utils": "^2.0.0-0",
|
|
57
|
-
"@vue/vue3-jest": "^27.0.0-alpha.1",
|
|
58
|
-
"babel-jest": "^27.0.6",
|
|
59
56
|
"eslint": "^7.32.0",
|
|
60
57
|
"eslint-config-prettier": "^8.3.0",
|
|
61
58
|
"eslint-plugin-prettier": "^4.0.0",
|
|
62
59
|
"eslint-plugin-vue": "^8.0.3",
|
|
60
|
+
"happy-dom": "^20.9.0",
|
|
63
61
|
"http-server": "^14.1.1",
|
|
64
|
-
"jest": "^27.0.5",
|
|
65
|
-
"jest-junit": "^16.0.0",
|
|
66
62
|
"lint-staged": "^15.2.7",
|
|
67
63
|
"prettier": "^2.4.1",
|
|
68
64
|
"push-dir": "^0.4.1",
|
|
@@ -72,6 +68,7 @@
|
|
|
72
68
|
"sass-loader": "^16.0.0",
|
|
73
69
|
"stylelint": "^16.8.2",
|
|
74
70
|
"stylelint-config-standard-scss": "^14.0.0",
|
|
71
|
+
"vitest": "^4.1.5",
|
|
75
72
|
"vue": "^3.5",
|
|
76
73
|
"vue-cli-plugin-styleguidist": "~4.72.4"
|
|
77
74
|
},
|