@dictu/design-tokens 1.0.3 → 1.1.0

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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # @dictu/design-tokens
2
2
 
3
+ ## 1.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b8671fe: replace mixin @use to index for better usage.
8
+ - 30ef651: Added new token for column width for grid component. Changed html
9
+ markup of the card component. Added grid component.
10
+
3
11
  ## 1.0.3
4
12
 
5
13
  ### Patch Changes
package/dist/card.css CHANGED
@@ -45,4 +45,10 @@
45
45
  --govnl-card-accent-active-color: var(--govnl-document-inverse-color);
46
46
  --govnl-card-accent-focus-background-color: var(--govnl-focus-background-color);
47
47
  --govnl-card-accent-focus-color: var(--govnl-focus-color);
48
+ --govnl-card-accent-heading-color: var(--govnl-document-inverse-color);
49
+ --govnl-card-accent-heading-hover-color: var(--govnl-document-inverse-color);
50
+ --govnl-card-accent-heading-active-color: var(--govnl-document-inverse-color);
51
+ --govnl-card-accent-paragraph-color: var(--govnl-document-inverse-color);
52
+ --govnl-card-accent-paragraph-hover-color: var(--govnl-document-inverse-color);
53
+ --govnl-card-accent-paragraph-active-color: var(--govnl-document-inverse-color);
48
54
  }
package/dist/grid.css CHANGED
@@ -8,6 +8,7 @@
8
8
  --govnl-grid-template-columns-col-3: repeat(3, 1fr);
9
9
  --govnl-grid-template-columns-col-4: repeat(4, 1fr);
10
10
  --govnl-grid-template-rows-auto: auto;
11
+ --govnl-grid-template-columns-width: var(--govnl-dimension-size-2000);
11
12
  --govnl-grid-gap-row-min: var(--govnl-gap-content-min);
12
13
  --govnl-grid-gap-row-max: var(--govnl-gap-content-max);
13
14
  --govnl-grid-gap-column-min: var(--govnl-gap-content-min);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dictu/design-tokens",
3
- "version": "1.0.3",
3
+ "version": "1.1.0",
4
4
  "author": "Dienst ICT Uitvoering",
5
5
  "description": "Design Tokens for DICTU Design system, based on the NL Design System architecture",
6
6
  "license": "SEE LICENSE IN LICENSE.md",
@@ -213,6 +213,42 @@
213
213
  "$type": "color",
214
214
  "$value": "{govnl.focus.color}"
215
215
  }
216
+ },
217
+ "heading": {
218
+ "color": {
219
+ "$type": "color",
220
+ "$value": "{govnl.document.inverse.color}"
221
+ },
222
+ "hover": {
223
+ "color": {
224
+ "$type": "color",
225
+ "$value": "{govnl.document.inverse.color}"
226
+ }
227
+ },
228
+ "active": {
229
+ "color": {
230
+ "$type": "color",
231
+ "$value": "{govnl.document.inverse.color}"
232
+ }
233
+ }
234
+ },
235
+ "paragraph": {
236
+ "color": {
237
+ "$type": "color",
238
+ "$value": "{govnl.document.inverse.color}"
239
+ },
240
+ "hover": {
241
+ "color": {
242
+ "$type": "color",
243
+ "$value": "{govnl.document.inverse.color}"
244
+ }
245
+ },
246
+ "active": {
247
+ "color": {
248
+ "$type": "color",
249
+ "$value": "{govnl.document.inverse.color}"
250
+ }
251
+ }
216
252
  }
217
253
  }
218
254
  }
@@ -3,6 +3,10 @@
3
3
  "grid": {
4
4
  "template": {
5
5
  "columns": {
6
+ "width": {
7
+ "$type": "dimension",
8
+ "$value": "{govnl.dimension.size.2000}"
9
+ },
6
10
  "col-1": {
7
11
  "$type": "dimension",
8
12
  "$value": "repeat(1, 1fr)"
@@ -51,4 +55,4 @@
51
55
  }
52
56
  }
53
57
  }
54
- }
58
+ }