@dictu/design-tokens 2.10.0 → 2.11.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,11 @@
1
1
  # @dictu/design-tokens
2
2
 
3
+ ## 2.11.0
4
+
5
+ ### Minor Changes
6
+
7
+ - de8ea47: Added design tokens for variant of Link component with icon
8
+
3
9
  ## 2.10.0
4
10
 
5
11
  ### Minor Changes
package/dist/index.css CHANGED
@@ -229,6 +229,11 @@
229
229
  --govnl-logo-title-padding-block-start: 3.125rem;
230
230
  --govnl-logo-subtitle-line-height: 1rem;
231
231
  --govnl-logo-subtitle-font-size: 0.775rem;
232
+ --govnl-link-icon-size: 1em;
233
+ --govnl-link-icon-margin-inline-start: 0.3em;
234
+ --govnl-link-active-text-decoration-thickness: max(3px, .1875rem, .12em);
235
+ --govnl-link-hover-text-decoration-thickness: max(3px, .1875rem, .12em);
236
+ --govnl-link-focus-visible-text-decoration-thickness: max(3px, .1875rem, .12em);
232
237
  --govnl-link-list-icon-inset-block-start: 0px;
233
238
  --govnl-link-list-icon-size: 1.125em;
234
239
  --govnl-link-list-link-text-decoration: None;
@@ -270,9 +275,6 @@
270
275
  --govnl-breadcrumb-nav-link-text-decoration: underline;
271
276
  --govnl-breadcrumb-nav-link-mobile-padding-inline-start: 0rem;
272
277
  --govnl-breadcrumb-nav-current-text-decoration: none;
273
- --govnl-link-active-text-decoration-thickness: max(3px, .1875rem, .12em);
274
- --govnl-link-hover-text-decoration-thickness: max(3px, .1875rem, .12em);
275
- --govnl-link-focus-visible-text-decoration-thickness: max(3px, .1875rem, .12em);
276
278
  --govnl-accordion-body-border-color: rgba(0, 0, 0, 0);
277
279
  --govnl-accordion-button-border-color: rgba(0, 0, 0, 0);
278
280
  --govnl-accordion-button-icon-size: 1.5em;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dictu/design-tokens",
3
- "version": "2.10.0",
3
+ "version": "2.11.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",
@@ -84,5 +84,19 @@
84
84
  }
85
85
  }
86
86
  }
87
+ },
88
+ "govnl": {
89
+ "link": {
90
+ "icon": {
91
+ "size": {
92
+ "$type": "sizing",
93
+ "$value": "1em"
94
+ },
95
+ "margin-inline-start": {
96
+ "$type": "dimension",
97
+ "$value": "0.3em"
98
+ }
99
+ }
100
+ }
87
101
  }
88
- }
102
+ }