@duetds/css 2.0.11 → 2.0.13

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 CHANGED
@@ -16,7 +16,7 @@ This package uses SCSS for authoring, npm for building, and dart-sass/sass-lint
16
16
  The package consists of the following:
17
17
 
18
18
  * `_breakpoints.scss` offers a helper class to display the currently-matched media query.
19
- * `_components.scss` hides all Duet components until they are loaded. It is auto-generated as part of the `components` package's build
19
+ * `_components.scss` hides all Duet components until they are loaded. It is auto-generated in build
20
20
  * `_tokens.scss` exposes Duet design tokens as CSS classes
21
21
  * `_utilities.scss` offers a number of utility classes for common scenarios
22
22
 
package/lib/duet.css CHANGED
@@ -1496,7 +1496,7 @@ duet-paragraph + duet-button {
1496
1496
  box-shadow: 0 2px 10px 0 rgba(0, 41, 77, 0.1);
1497
1497
  }
1498
1498
 
1499
- /* this file is auto-generated as part of the components build */
1499
+ /* this file is auto-generated as part of the build */
1500
1500
  duet-action-button:not(.hydrated),
1501
1501
  duet-alert:not(.hydrated),
1502
1502
  duet-badge:not(.hydrated),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@duetds/css",
3
- "version": "2.0.11",
3
+ "version": "2.0.13",
4
4
  "description": "This package includes Duet CSS Framework and related utilities.",
5
5
  "bugs": {
6
6
  "email": "duetdesignsystem@lahitapiola.fi"
@@ -21,13 +21,13 @@
21
21
  "test:ci": "npm run test:scss:ci",
22
22
  "precommit": "npm run test",
23
23
  "start": "sass --watch --no-source-map --style=compressed ./src/duet.scss:./lib/duet.min.css",
24
- "build": "run-p build:*",
24
+ "build": "node generate.js && run-p build:*",
25
25
  "build:css": "sass --no-source-map ./src/duet.scss:./lib/duet.css",
26
26
  "build:min": "sass --no-source-map --style=compressed ./src/duet.scss:./lib/duet.min.css"
27
27
  },
28
28
  "dependencies": {
29
- "@duetds/components": "6.2.2",
30
- "@duetds/tokens": "3.0.11"
29
+ "@duetds/components": "6.2.5",
30
+ "@duetds/tokens": "3.0.13"
31
31
  },
32
32
  "devDependencies": {
33
33
  "npm-run-all": "4.1.5",
@@ -39,5 +39,5 @@
39
39
  "publishConfig": {
40
40
  "access": "public"
41
41
  },
42
- "gitHead": "043976dbc62d67a74cc4765f2a9c3ad1299afe58"
42
+ "gitHead": "6427b58e3366830afdc243827cad628712975f0f"
43
43
  }