@kupola/kupola 1.9.6 → 1.9.7
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/css/dashboard.css +368 -0
- package/css/kupola.css +1 -0
- package/dist/kupola.css +368 -0
- package/dist/kupola.min.css +1 -1
- package/package.json +1 -1
- package/scripts/build-css.cjs +2 -1
package/package.json
CHANGED
package/scripts/build-css.cjs
CHANGED
|
@@ -19,10 +19,11 @@ const OUTPUT_DIR = path.resolve(__dirname, '..', 'dist');
|
|
|
19
19
|
// Import order must match kupola.css @import order
|
|
20
20
|
const IMPORT_ORDER = [
|
|
21
21
|
'colors-and-type.css',
|
|
22
|
-
'theme-light.css',
|
|
23
22
|
'theme-dark.css',
|
|
23
|
+
'theme-light.css',
|
|
24
24
|
'brand-themes.css',
|
|
25
25
|
'scaffold.css',
|
|
26
|
+
'dashboard.css',
|
|
26
27
|
'components.css',
|
|
27
28
|
'components-ext.css',
|
|
28
29
|
'states.css',
|