@utrecht/design-tokens 3.1.0 → 3.3.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.
Files changed (54) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/dist/_mixin-theme.scss +10 -0
  3. package/dist/_mixin.scss +10 -0
  4. package/dist/_variables.scss +10 -0
  5. package/dist/dark/_mixin-theme.scss +10 -0
  6. package/dist/dark/_mixin.scss +10 -0
  7. package/dist/dark/_variables.scss +10 -0
  8. package/dist/dark/index.cjs +10 -0
  9. package/dist/dark/index.css +10 -0
  10. package/dist/dark/index.d.ts +10 -0
  11. package/dist/dark/index.flat.json +10 -0
  12. package/dist/dark/index.json +354 -0
  13. package/dist/dark/index.mjs +10 -0
  14. package/dist/dark/index.tokens.json +89 -0
  15. package/dist/dark/list.json +354 -0
  16. package/dist/dark/list.mjs +354 -0
  17. package/dist/dark/property.css +9 -0
  18. package/dist/dark/root.css +10 -0
  19. package/dist/dark/theme-prince-xml.css +10 -0
  20. package/dist/dark/theme.css +10 -0
  21. package/dist/dark/tokens.cjs +433 -0
  22. package/dist/dark/tokens.d.ts +53 -0
  23. package/dist/dark/tokens.json +433 -0
  24. package/dist/dark/variables.cjs +10 -0
  25. package/dist/dark/variables.css +10 -0
  26. package/dist/dark/variables.d.ts +10 -0
  27. package/dist/dark/variables.json +10 -0
  28. package/dist/dark/variables.less +10 -0
  29. package/dist/dark/variables.mjs +10 -0
  30. package/dist/index.cjs +10 -0
  31. package/dist/index.css +20 -0
  32. package/dist/index.d.ts +10 -0
  33. package/dist/index.flat.json +10 -0
  34. package/dist/index.json +354 -0
  35. package/dist/index.mjs +10 -0
  36. package/dist/index.tokens.json +89 -0
  37. package/dist/list.json +354 -0
  38. package/dist/list.mjs +354 -0
  39. package/dist/property.css +9 -0
  40. package/dist/root.css +10 -0
  41. package/dist/theme-prince-xml.css +10 -0
  42. package/dist/theme.css +10 -0
  43. package/dist/tokens.cjs +433 -0
  44. package/dist/tokens.d.ts +53 -0
  45. package/dist/tokens.json +433 -0
  46. package/dist/variables.cjs +10 -0
  47. package/dist/variables.css +10 -0
  48. package/dist/variables.d.ts +10 -0
  49. package/dist/variables.json +10 -0
  50. package/dist/variables.less +10 -0
  51. package/dist/variables.mjs +10 -0
  52. package/package.json +1 -1
  53. package/src/component/utrecht/breadcrumb-nav.tokens.json +5 -0
  54. package/src/component/utrecht/tooltip.tokens.json +15 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @utrecht/design-tokens
2
2
 
3
+ ## 3.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f877f78: Initial version of the Tooltip component.
8
+
9
+ ## 3.2.0
10
+
11
+ ### Minor Changes
12
+
13
+ - cbb98e9: Add `utrecht.breadcrumb-nav.item.first.padding-inline-start` token.
14
+
15
+ Use this token to align the content of the first link with the other content, by setting it to `0`.
16
+
3
17
  ## 3.1.0
4
18
 
5
19
  ### Minor Changes
@@ -103,6 +103,8 @@
103
103
  --utrecht-toptask-link-min-inline-size: 15rem;
104
104
  --utrecht-toptask-link-min-block-size: 8.25rem;
105
105
  --utrecht-toptask-link-line-height: 1.2;
106
+ --utrecht-tooltip-border-width: 1px;
107
+ --utrecht-tooltip-border-radius: 0;
106
108
  --utrecht-textbox-border-bottom-width: 3px;
107
109
  --utrecht-textarea-border-bottom-width: 3px;
108
110
  --utrecht-textarea-border-block-end-width: 3px;
@@ -378,6 +380,7 @@
378
380
  --utrecht-breadcrumb-nav-link-text-decoration: none;
379
381
  --utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
380
382
  --utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
383
+ --utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
381
384
  --utrecht-breadcrumb-nav-min-block-size: 34px;
382
385
  --utrecht-body-line-height: 1.4;
383
386
  --utrecht-blockquote-margin-block-end: 1.6em;
@@ -503,6 +506,13 @@
503
506
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
504
507
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
505
508
  --utrecht-toptask-link-font-size: var(--utrecht-typography-scale-md-font-size);
509
+ --utrecht-tooltip-padding-inline: var(--utrecht-space-inline-md);
510
+ --utrecht-tooltip-padding-block: var(--utrecht-space-block-xs);
511
+ --utrecht-tooltip-font-size: var(--utrecht-typography-scale-md-font-size);
512
+ --utrecht-tooltip-font-family: var(--utrecht-typography-sans-serif-font-family);
513
+ --utrecht-tooltip-color: var(--utrecht-color-grey-40);
514
+ --utrecht-tooltip-border-color: var(--utrecht-color-grey-40);
515
+ --utrecht-tooltip-background-color: var(--utrecht-color-white);
506
516
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
507
517
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
508
518
  --utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
package/dist/_mixin.scss CHANGED
@@ -103,6 +103,8 @@
103
103
  --utrecht-toptask-link-min-inline-size: 15rem;
104
104
  --utrecht-toptask-link-min-block-size: 8.25rem;
105
105
  --utrecht-toptask-link-line-height: 1.2;
106
+ --utrecht-tooltip-border-width: 1px;
107
+ --utrecht-tooltip-border-radius: 0;
106
108
  --utrecht-textbox-border-bottom-width: 3px;
107
109
  --utrecht-textarea-border-bottom-width: 3px;
108
110
  --utrecht-textarea-border-block-end-width: 3px;
@@ -378,6 +380,7 @@
378
380
  --utrecht-breadcrumb-nav-link-text-decoration: none;
379
381
  --utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
380
382
  --utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
383
+ --utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
381
384
  --utrecht-breadcrumb-nav-min-block-size: 34px;
382
385
  --utrecht-body-line-height: 1.4;
383
386
  --utrecht-blockquote-margin-block-end: 1.6em;
@@ -503,6 +506,13 @@
503
506
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
504
507
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
505
508
  --utrecht-toptask-link-font-size: var(--utrecht-typography-scale-md-font-size);
509
+ --utrecht-tooltip-padding-inline: var(--utrecht-space-inline-md);
510
+ --utrecht-tooltip-padding-block: var(--utrecht-space-block-xs);
511
+ --utrecht-tooltip-font-size: var(--utrecht-typography-scale-md-font-size);
512
+ --utrecht-tooltip-font-family: var(--utrecht-typography-sans-serif-font-family);
513
+ --utrecht-tooltip-color: var(--utrecht-color-grey-40);
514
+ --utrecht-tooltip-border-color: var(--utrecht-color-grey-40);
515
+ --utrecht-tooltip-background-color: var(--utrecht-color-white);
506
516
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
507
517
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
508
518
  --utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
@@ -101,6 +101,8 @@ $utrecht-toptask-link-hover-transform-scale: 1.02;
101
101
  $utrecht-toptask-link-min-inline-size: 15rem;
102
102
  $utrecht-toptask-link-min-block-size: 8.25rem;
103
103
  $utrecht-toptask-link-line-height: 1.2;
104
+ $utrecht-tooltip-border-width: 1px;
105
+ $utrecht-tooltip-border-radius: 0;
104
106
  $utrecht-textbox-border-bottom-width: 3px;
105
107
  $utrecht-textarea-border-bottom-width: 3px;
106
108
  $utrecht-textarea-border-block-end-width: 3px;
@@ -376,6 +378,7 @@ $utrecht-breadcrumb-nav-divider-inline-size: 1px;
376
378
  $utrecht-breadcrumb-nav-link-text-decoration: none;
377
379
  $utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
378
380
  $utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
381
+ $utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
379
382
  $utrecht-breadcrumb-nav-min-block-size: 34px;
380
383
  $utrecht-body-line-height: 1.4;
381
384
  $utrecht-blockquote-margin-block-end: 1.6em;
@@ -501,6 +504,13 @@ $utrecht-toptask-link-padding-inline-end: $utrecht-space-inline-xl;
501
504
  $utrecht-toptask-link-padding-block-start: $utrecht-space-block-xl;
502
505
  $utrecht-toptask-link-padding-block-end: $utrecht-space-block-xl;
503
506
  $utrecht-toptask-link-font-size: $utrecht-typography-scale-md-font-size;
507
+ $utrecht-tooltip-padding-inline: $utrecht-space-inline-md;
508
+ $utrecht-tooltip-padding-block: $utrecht-space-block-xs;
509
+ $utrecht-tooltip-font-size: $utrecht-typography-scale-md-font-size;
510
+ $utrecht-tooltip-font-family: $utrecht-typography-sans-serif-font-family;
511
+ $utrecht-tooltip-color: $utrecht-color-grey-40;
512
+ $utrecht-tooltip-border-color: $utrecht-color-grey-40;
513
+ $utrecht-tooltip-background-color: $utrecht-color-white;
504
514
  $utrecht-textarea-line-height: $utrecht-typography-line-height-md;
505
515
  $utrecht-table-row-alternate-even-color: $utrecht-color-black;
506
516
  $utrecht-table-row-alternate-even-background-color: $utrecht-color-grey-95;
@@ -103,6 +103,8 @@
103
103
  --utrecht-toptask-link-min-inline-size: 15rem;
104
104
  --utrecht-toptask-link-min-block-size: 8.25rem;
105
105
  --utrecht-toptask-link-line-height: 1.2;
106
+ --utrecht-tooltip-border-width: 1px;
107
+ --utrecht-tooltip-border-radius: 0;
106
108
  --utrecht-textbox-border-bottom-width: 3px;
107
109
  --utrecht-textarea-border-bottom-width: 3px;
108
110
  --utrecht-textarea-border-block-end-width: 3px;
@@ -379,6 +381,7 @@
379
381
  --utrecht-breadcrumb-nav-link-text-decoration: none;
380
382
  --utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
381
383
  --utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
384
+ --utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
382
385
  --utrecht-breadcrumb-nav-min-block-size: 34px;
383
386
  --utrecht-body-line-height: 1.4;
384
387
  --utrecht-blockquote-margin-block-end: 1.6em;
@@ -505,6 +508,13 @@
505
508
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
506
509
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
507
510
  --utrecht-toptask-link-font-size: var(--utrecht-typography-scale-md-font-size);
511
+ --utrecht-tooltip-padding-inline: var(--utrecht-space-inline-md);
512
+ --utrecht-tooltip-padding-block: var(--utrecht-space-block-xs);
513
+ --utrecht-tooltip-font-size: var(--utrecht-typography-scale-md-font-size);
514
+ --utrecht-tooltip-font-family: var(--utrecht-typography-sans-serif-font-family);
515
+ --utrecht-tooltip-color: var(--utrecht-color-grey-40);
516
+ --utrecht-tooltip-border-color: var(--utrecht-color-grey-40);
517
+ --utrecht-tooltip-background-color: var(--utrecht-color-white);
508
518
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
509
519
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
510
520
  --utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
@@ -103,6 +103,8 @@
103
103
  --utrecht-toptask-link-min-inline-size: 15rem;
104
104
  --utrecht-toptask-link-min-block-size: 8.25rem;
105
105
  --utrecht-toptask-link-line-height: 1.2;
106
+ --utrecht-tooltip-border-width: 1px;
107
+ --utrecht-tooltip-border-radius: 0;
106
108
  --utrecht-textbox-border-bottom-width: 3px;
107
109
  --utrecht-textarea-border-bottom-width: 3px;
108
110
  --utrecht-textarea-border-block-end-width: 3px;
@@ -379,6 +381,7 @@
379
381
  --utrecht-breadcrumb-nav-link-text-decoration: none;
380
382
  --utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
381
383
  --utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
384
+ --utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
382
385
  --utrecht-breadcrumb-nav-min-block-size: 34px;
383
386
  --utrecht-body-line-height: 1.4;
384
387
  --utrecht-blockquote-margin-block-end: 1.6em;
@@ -505,6 +508,13 @@
505
508
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
506
509
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
507
510
  --utrecht-toptask-link-font-size: var(--utrecht-typography-scale-md-font-size);
511
+ --utrecht-tooltip-padding-inline: var(--utrecht-space-inline-md);
512
+ --utrecht-tooltip-padding-block: var(--utrecht-space-block-xs);
513
+ --utrecht-tooltip-font-size: var(--utrecht-typography-scale-md-font-size);
514
+ --utrecht-tooltip-font-family: var(--utrecht-typography-sans-serif-font-family);
515
+ --utrecht-tooltip-color: var(--utrecht-color-grey-40);
516
+ --utrecht-tooltip-border-color: var(--utrecht-color-grey-40);
517
+ --utrecht-tooltip-background-color: var(--utrecht-color-white);
508
518
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
509
519
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
510
520
  --utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
@@ -101,6 +101,8 @@ $utrecht-toptask-link-hover-transform-scale: 1.02;
101
101
  $utrecht-toptask-link-min-inline-size: 15rem;
102
102
  $utrecht-toptask-link-min-block-size: 8.25rem;
103
103
  $utrecht-toptask-link-line-height: 1.2;
104
+ $utrecht-tooltip-border-width: 1px;
105
+ $utrecht-tooltip-border-radius: 0;
104
106
  $utrecht-textbox-border-bottom-width: 3px;
105
107
  $utrecht-textarea-border-bottom-width: 3px;
106
108
  $utrecht-textarea-border-block-end-width: 3px;
@@ -377,6 +379,7 @@ $utrecht-breadcrumb-nav-divider-inline-size: 1px;
377
379
  $utrecht-breadcrumb-nav-link-text-decoration: none;
378
380
  $utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
379
381
  $utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
382
+ $utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
380
383
  $utrecht-breadcrumb-nav-min-block-size: 34px;
381
384
  $utrecht-body-line-height: 1.4;
382
385
  $utrecht-blockquote-margin-block-end: 1.6em;
@@ -503,6 +506,13 @@ $utrecht-toptask-link-padding-inline-end: $utrecht-space-inline-xl;
503
506
  $utrecht-toptask-link-padding-block-start: $utrecht-space-block-xl;
504
507
  $utrecht-toptask-link-padding-block-end: $utrecht-space-block-xl;
505
508
  $utrecht-toptask-link-font-size: $utrecht-typography-scale-md-font-size;
509
+ $utrecht-tooltip-padding-inline: $utrecht-space-inline-md;
510
+ $utrecht-tooltip-padding-block: $utrecht-space-block-xs;
511
+ $utrecht-tooltip-font-size: $utrecht-typography-scale-md-font-size;
512
+ $utrecht-tooltip-font-family: $utrecht-typography-sans-serif-font-family;
513
+ $utrecht-tooltip-color: $utrecht-color-grey-40;
514
+ $utrecht-tooltip-border-color: $utrecht-color-grey-40;
515
+ $utrecht-tooltip-background-color: $utrecht-color-white;
506
516
  $utrecht-textarea-line-height: $utrecht-typography-line-height-md;
507
517
  $utrecht-table-row-alternate-even-color: $utrecht-color-black;
508
518
  $utrecht-table-row-alternate-even-background-color: $utrecht-color-grey-95;
@@ -97,6 +97,7 @@ module.exports = {
97
97
  "utrechtBodyColor": "hsl(0 0% 0%)",
98
98
  "utrechtBreadcrumbNavMinBlockSize": "34px",
99
99
  "utrechtBreadcrumbNavFontSize": "1rem",
100
+ "utrechtBreadcrumbNavItemFirstPaddingInlineStart": "0",
100
101
  "utrechtBreadcrumbNavItemPaddingBlockStart": "8px",
101
102
  "utrechtBreadcrumbNavItemPaddingBlockEnd": "8px",
102
103
  "utrechtBreadcrumbNavItemPaddingInlineEnd": "8px",
@@ -905,6 +906,15 @@ module.exports = {
905
906
  "utrechtTextareaBorderBottomWidth": "3px",
906
907
  "utrechtTextareaLineHeight": "1.5",
907
908
  "utrechtTextboxBorderBottomWidth": "3px",
909
+ "utrechtTooltipBackgroundColor": "hsl(0 0% 100%)",
910
+ "utrechtTooltipBorderColor": "hsl(0 0% 40%)",
911
+ "utrechtTooltipBorderRadius": "0",
912
+ "utrechtTooltipBorderWidth": "1px",
913
+ "utrechtTooltipColor": "hsl(0 0% 40%)",
914
+ "utrechtTooltipFontFamily": "\"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", \"Arial\", sans-serif",
915
+ "utrechtTooltipFontSize": "1rem",
916
+ "utrechtTooltipPaddingBlock": "8px",
917
+ "utrechtTooltipPaddingInline": "16px",
908
918
  "utrechtToptaskLinkBackgroundColor": "hsl(211 60% 80%)",
909
919
  "utrechtToptaskLinkColor": "hsl(0 0% 15%)",
910
920
  "utrechtToptaskLinkFontSize": "1rem",
@@ -108,6 +108,8 @@
108
108
  --utrecht-toptask-link-min-inline-size: 15rem;
109
109
  --utrecht-toptask-link-min-block-size: 8.25rem;
110
110
  --utrecht-toptask-link-line-height: 1.2;
111
+ --utrecht-tooltip-border-width: 1px;
112
+ --utrecht-tooltip-border-radius: 0;
111
113
  --utrecht-textbox-border-bottom-width: 3px;
112
114
  --utrecht-textarea-border-bottom-width: 3px;
113
115
  --utrecht-textarea-border-block-end-width: 3px;
@@ -384,6 +386,7 @@
384
386
  --utrecht-breadcrumb-nav-link-text-decoration: none;
385
387
  --utrecht-breadcrumb-nav-link-hover-text-decoration: underline;
386
388
  --utrecht-breadcrumb-nav-link-focus-text-decoration: underline;
389
+ --utrecht-breadcrumb-nav-item-first-padding-inline-start: 0;
387
390
  --utrecht-breadcrumb-nav-min-block-size: 34px;
388
391
  --utrecht-body-line-height: 1.4;
389
392
  --utrecht-blockquote-margin-block-end: 1.6em;
@@ -510,6 +513,13 @@
510
513
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
511
514
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
512
515
  --utrecht-toptask-link-font-size: var(--utrecht-typography-scale-md-font-size);
516
+ --utrecht-tooltip-padding-inline: var(--utrecht-space-inline-md);
517
+ --utrecht-tooltip-padding-block: var(--utrecht-space-block-xs);
518
+ --utrecht-tooltip-font-size: var(--utrecht-typography-scale-md-font-size);
519
+ --utrecht-tooltip-font-family: var(--utrecht-typography-sans-serif-font-family);
520
+ --utrecht-tooltip-color: var(--utrecht-color-grey-40);
521
+ --utrecht-tooltip-border-color: var(--utrecht-color-grey-40);
522
+ --utrecht-tooltip-background-color: var(--utrecht-color-white);
513
523
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
514
524
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
515
525
  --utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
@@ -106,6 +106,7 @@ export const utrechtBodyBackgroundColor : string;
106
106
  export const utrechtBodyColor : string;
107
107
  export const utrechtBreadcrumbNavMinBlockSize : string;
108
108
  export const utrechtBreadcrumbNavFontSize : string;
109
+ export const utrechtBreadcrumbNavItemFirstPaddingInlineStart : string;
109
110
  export const utrechtBreadcrumbNavItemPaddingBlockStart : string;
110
111
  export const utrechtBreadcrumbNavItemPaddingBlockEnd : string;
111
112
  export const utrechtBreadcrumbNavItemPaddingInlineEnd : string;
@@ -971,6 +972,15 @@ export const utrechtTextareaBorderBlockEndWidth : string;
971
972
  export const utrechtTextareaBorderBottomWidth : string;
972
973
  export const utrechtTextareaLineHeight : string;
973
974
  export const utrechtTextboxBorderBottomWidth : string;
975
+ export const utrechtTooltipBackgroundColor : string;
976
+ export const utrechtTooltipBorderColor : string;
977
+ export const utrechtTooltipBorderRadius : string;
978
+ export const utrechtTooltipBorderWidth : string;
979
+ export const utrechtTooltipColor : string;
980
+ export const utrechtTooltipFontFamily : string;
981
+ export const utrechtTooltipFontSize : string;
982
+ export const utrechtTooltipPaddingBlock : string;
983
+ export const utrechtTooltipPaddingInline : string;
974
984
  export const utrechtToptaskLinkBackgroundColor : string;
975
985
  export const utrechtToptaskLinkColor : string;
976
986
  export const utrechtToptaskLinkFontSize : string;
@@ -225,6 +225,7 @@
225
225
  "utrechtBreadcrumbNavArrowsLinkFocusColor": "hsl(0 0% 0%)",
226
226
  "utrechtBreadcrumbNavDividerInlineSize": "1px",
227
227
  "utrechtBreadcrumbNavFontSize": "1rem",
228
+ "utrechtBreadcrumbNavItemFirstPaddingInlineStart": "0",
228
229
  "utrechtBreadcrumbNavItemPaddingBlockEnd": "8px",
229
230
  "utrechtBreadcrumbNavItemPaddingBlockStart": "8px",
230
231
  "utrechtBreadcrumbNavItemPaddingInlineEnd": "8px",
@@ -1070,6 +1071,15 @@
1070
1071
  "utrechtTextareaBorderBottomWidth": "3px",
1071
1072
  "utrechtTextareaLineHeight": "1.5",
1072
1073
  "utrechtTextboxBorderBottomWidth": "3px",
1074
+ "utrechtTooltipBackgroundColor": "hsl(0 0% 100%)",
1075
+ "utrechtTooltipBorderColor": "hsl(0 0% 40%)",
1076
+ "utrechtTooltipBorderRadius": "0",
1077
+ "utrechtTooltipBorderWidth": "1px",
1078
+ "utrechtTooltipColor": "hsl(0 0% 40%)",
1079
+ "utrechtTooltipFontFamily": "\"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", \"Arial\", sans-serif",
1080
+ "utrechtTooltipFontSize": "1rem",
1081
+ "utrechtTooltipPaddingBlock": "8px",
1082
+ "utrechtTooltipPaddingInline": "16px",
1073
1083
  "utrechtTopnavLinkBackgroundColor": "hsl(211 60% 40%)",
1074
1084
  "utrechtTopnavLinkColor": "hsl(0 0% 100%)",
1075
1085
  "utrechtTopnavLinkFocusBackgroundColor": "hsl(48 100% 80%)",
@@ -5840,6 +5840,45 @@
5840
5840
  "font-size"
5841
5841
  ]
5842
5842
  },
5843
+ {
5844
+ "$extensions": {
5845
+ "nl.nldesignsystem.css.property": {
5846
+ "syntax": "<length>",
5847
+ "inherits": true
5848
+ },
5849
+ "nl.nldesignsystem.figma.supports-token": false,
5850
+ "studio.tokens": {
5851
+ "originalType": "spacing"
5852
+ }
5853
+ },
5854
+ "type": "dimension",
5855
+ "value": "0",
5856
+ "filePath": "src/component/utrecht/breadcrumb-nav.tokens.json",
5857
+ "isSource": true,
5858
+ "original": {
5859
+ "$extensions": {
5860
+ "nl.nldesignsystem.css.property": {
5861
+ "syntax": "<length>",
5862
+ "inherits": true
5863
+ },
5864
+ "nl.nldesignsystem.figma.supports-token": false,
5865
+ "studio.tokens": {
5866
+ "originalType": "spacing"
5867
+ }
5868
+ },
5869
+ "type": "dimension",
5870
+ "value": "0"
5871
+ },
5872
+ "name": "utrechtBreadcrumbNavItemFirstPaddingInlineStart",
5873
+ "attributes": {},
5874
+ "path": [
5875
+ "utrecht",
5876
+ "breadcrumb-nav",
5877
+ "item",
5878
+ "first",
5879
+ "padding-inline-start"
5880
+ ]
5881
+ },
5843
5882
  {
5844
5883
  "$extensions": {
5845
5884
  "nl.nldesignsystem.css.property": {
@@ -31692,6 +31731,321 @@
31692
31731
  "border-bottom-width"
31693
31732
  ]
31694
31733
  },
31734
+ {
31735
+ "$extensions": {
31736
+ "nl.nldesignsystem.css.property": {
31737
+ "syntax": "<color>",
31738
+ "inherits": true
31739
+ },
31740
+ "nl.nldesignsystem.figma.supports-token": false
31741
+ },
31742
+ "type": "color",
31743
+ "value": "hsl(0 0% 100%)",
31744
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31745
+ "isSource": true,
31746
+ "original": {
31747
+ "$extensions": {
31748
+ "nl.nldesignsystem.css.property": {
31749
+ "syntax": "<color>",
31750
+ "inherits": true
31751
+ },
31752
+ "nl.nldesignsystem.figma.supports-token": false
31753
+ },
31754
+ "type": "color",
31755
+ "value": "{utrecht.color.white}"
31756
+ },
31757
+ "name": "utrechtTooltipBackgroundColor",
31758
+ "attributes": {},
31759
+ "path": [
31760
+ "utrecht",
31761
+ "tooltip",
31762
+ "background-color"
31763
+ ]
31764
+ },
31765
+ {
31766
+ "$extensions": {
31767
+ "nl.nldesignsystem.css.property": {
31768
+ "syntax": "<color>",
31769
+ "inherits": true
31770
+ },
31771
+ "nl.nldesignsystem.figma.supports-token": false
31772
+ },
31773
+ "type": "color",
31774
+ "value": "hsl(0 0% 40%)",
31775
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31776
+ "isSource": true,
31777
+ "original": {
31778
+ "$extensions": {
31779
+ "nl.nldesignsystem.css.property": {
31780
+ "syntax": "<color>",
31781
+ "inherits": true
31782
+ },
31783
+ "nl.nldesignsystem.figma.supports-token": false
31784
+ },
31785
+ "type": "color",
31786
+ "value": "{utrecht.color.grey.40}"
31787
+ },
31788
+ "name": "utrechtTooltipBorderColor",
31789
+ "attributes": {},
31790
+ "path": [
31791
+ "utrecht",
31792
+ "tooltip",
31793
+ "border-color"
31794
+ ]
31795
+ },
31796
+ {
31797
+ "$extensions": {
31798
+ "nl.nldesignsystem.css.property": {
31799
+ "syntax": "<length-percentage>",
31800
+ "inherits": true
31801
+ },
31802
+ "nl.nldesignsystem.figma.supports-token": false,
31803
+ "studio.tokens": {
31804
+ "originalType": "borderRadius"
31805
+ }
31806
+ },
31807
+ "type": "dimension",
31808
+ "value": "0",
31809
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31810
+ "isSource": true,
31811
+ "original": {
31812
+ "$extensions": {
31813
+ "nl.nldesignsystem.css.property": {
31814
+ "syntax": "<length-percentage>",
31815
+ "inherits": true
31816
+ },
31817
+ "nl.nldesignsystem.figma.supports-token": false,
31818
+ "studio.tokens": {
31819
+ "originalType": "borderRadius"
31820
+ }
31821
+ },
31822
+ "type": "dimension",
31823
+ "value": "0"
31824
+ },
31825
+ "name": "utrechtTooltipBorderRadius",
31826
+ "attributes": {},
31827
+ "path": [
31828
+ "utrecht",
31829
+ "tooltip",
31830
+ "border-radius"
31831
+ ]
31832
+ },
31833
+ {
31834
+ "$extensions": {
31835
+ "nl.nldesignsystem.css.property": {
31836
+ "syntax": "<length>",
31837
+ "inherits": true
31838
+ },
31839
+ "nl.nldesignsystem.figma.supports-token": false,
31840
+ "studio.tokens": {
31841
+ "originalType": "borderWidth"
31842
+ }
31843
+ },
31844
+ "type": "dimension",
31845
+ "value": "1px",
31846
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31847
+ "isSource": true,
31848
+ "original": {
31849
+ "$extensions": {
31850
+ "nl.nldesignsystem.css.property": {
31851
+ "syntax": "<length>",
31852
+ "inherits": true
31853
+ },
31854
+ "nl.nldesignsystem.figma.supports-token": false,
31855
+ "studio.tokens": {
31856
+ "originalType": "borderWidth"
31857
+ }
31858
+ },
31859
+ "type": "dimension",
31860
+ "value": "1px"
31861
+ },
31862
+ "name": "utrechtTooltipBorderWidth",
31863
+ "attributes": {},
31864
+ "path": [
31865
+ "utrecht",
31866
+ "tooltip",
31867
+ "border-width"
31868
+ ]
31869
+ },
31870
+ {
31871
+ "$extensions": {
31872
+ "nl.nldesignsystem.css.property": {
31873
+ "syntax": "<color>",
31874
+ "inherits": true
31875
+ },
31876
+ "nl.nldesignsystem.figma.supports-token": false
31877
+ },
31878
+ "type": "color",
31879
+ "value": "hsl(0 0% 40%)",
31880
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31881
+ "isSource": true,
31882
+ "original": {
31883
+ "$extensions": {
31884
+ "nl.nldesignsystem.css.property": {
31885
+ "syntax": "<color>",
31886
+ "inherits": true
31887
+ },
31888
+ "nl.nldesignsystem.figma.supports-token": false
31889
+ },
31890
+ "type": "color",
31891
+ "value": "{utrecht.color.grey.40}"
31892
+ },
31893
+ "name": "utrechtTooltipColor",
31894
+ "attributes": {},
31895
+ "path": [
31896
+ "utrecht",
31897
+ "tooltip",
31898
+ "color"
31899
+ ]
31900
+ },
31901
+ {
31902
+ "$extensions": {
31903
+ "nl.nldesignsystem.css.property": {
31904
+ "syntax": "*",
31905
+ "inherits": true
31906
+ },
31907
+ "nl.nldesignsystem.figma.supports-token": false,
31908
+ "studio.tokens": {
31909
+ "originalType": "fontFamilies"
31910
+ }
31911
+ },
31912
+ "type": "fontFamily",
31913
+ "value": "\"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", \"Arial\", sans-serif",
31914
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31915
+ "isSource": true,
31916
+ "original": {
31917
+ "$extensions": {
31918
+ "nl.nldesignsystem.css.property": {
31919
+ "syntax": "*",
31920
+ "inherits": true
31921
+ },
31922
+ "nl.nldesignsystem.figma.supports-token": false,
31923
+ "studio.tokens": {
31924
+ "originalType": "fontFamilies"
31925
+ }
31926
+ },
31927
+ "type": "fontFamily",
31928
+ "value": "{utrecht.typography.sans-serif.font-family}"
31929
+ },
31930
+ "name": "utrechtTooltipFontFamily",
31931
+ "attributes": {},
31932
+ "path": [
31933
+ "utrecht",
31934
+ "tooltip",
31935
+ "font-family"
31936
+ ]
31937
+ },
31938
+ {
31939
+ "$extensions": {
31940
+ "nl.nldesignsystem.css.property": {
31941
+ "syntax": "<length>",
31942
+ "inherits": true
31943
+ },
31944
+ "nl.nldesignsystem.figma.supports-token": false,
31945
+ "studio.tokens": {
31946
+ "originalType": "fontSizes"
31947
+ }
31948
+ },
31949
+ "type": "fontSize",
31950
+ "value": "1rem",
31951
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31952
+ "isSource": true,
31953
+ "original": {
31954
+ "$extensions": {
31955
+ "nl.nldesignsystem.css.property": {
31956
+ "syntax": "<length>",
31957
+ "inherits": true
31958
+ },
31959
+ "nl.nldesignsystem.figma.supports-token": false,
31960
+ "studio.tokens": {
31961
+ "originalType": "fontSizes"
31962
+ }
31963
+ },
31964
+ "type": "fontSize",
31965
+ "value": "{utrecht.typography.scale.md.font-size}"
31966
+ },
31967
+ "name": "utrechtTooltipFontSize",
31968
+ "attributes": {},
31969
+ "path": [
31970
+ "utrecht",
31971
+ "tooltip",
31972
+ "font-size"
31973
+ ]
31974
+ },
31975
+ {
31976
+ "$extensions": {
31977
+ "nl.nldesignsystem.css.property": {
31978
+ "syntax": "<length>",
31979
+ "inherits": true
31980
+ },
31981
+ "nl.nldesignsystem.figma.supports-token": false,
31982
+ "studio.tokens": {
31983
+ "originalType": "spacing"
31984
+ }
31985
+ },
31986
+ "type": "dimension",
31987
+ "value": "8px",
31988
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
31989
+ "isSource": true,
31990
+ "original": {
31991
+ "$extensions": {
31992
+ "nl.nldesignsystem.css.property": {
31993
+ "syntax": "<length>",
31994
+ "inherits": true
31995
+ },
31996
+ "nl.nldesignsystem.figma.supports-token": false,
31997
+ "studio.tokens": {
31998
+ "originalType": "spacing"
31999
+ }
32000
+ },
32001
+ "type": "dimension",
32002
+ "value": "{utrecht.space.block.xs}"
32003
+ },
32004
+ "name": "utrechtTooltipPaddingBlock",
32005
+ "attributes": {},
32006
+ "path": [
32007
+ "utrecht",
32008
+ "tooltip",
32009
+ "padding-block"
32010
+ ]
32011
+ },
32012
+ {
32013
+ "$extensions": {
32014
+ "nl.nldesignsystem.css.property": {
32015
+ "syntax": "<length>",
32016
+ "inherits": true
32017
+ },
32018
+ "nl.nldesignsystem.figma.supports-token": false,
32019
+ "studio.tokens": {
32020
+ "originalType": "spacing"
32021
+ }
32022
+ },
32023
+ "type": "dimension",
32024
+ "value": "16px",
32025
+ "filePath": "src/component/utrecht/tooltip.tokens.json",
32026
+ "isSource": true,
32027
+ "original": {
32028
+ "$extensions": {
32029
+ "nl.nldesignsystem.css.property": {
32030
+ "syntax": "<length>",
32031
+ "inherits": true
32032
+ },
32033
+ "nl.nldesignsystem.figma.supports-token": false,
32034
+ "studio.tokens": {
32035
+ "originalType": "spacing"
32036
+ }
32037
+ },
32038
+ "type": "dimension",
32039
+ "value": "{utrecht.space.inline.md}"
32040
+ },
32041
+ "name": "utrechtTooltipPaddingInline",
32042
+ "attributes": {},
32043
+ "path": [
32044
+ "utrecht",
32045
+ "tooltip",
32046
+ "padding-inline"
32047
+ ]
32048
+ },
31695
32049
  {
31696
32050
  "value": "hsl(211 60% 40%)",
31697
32051
  "filePath": "src/component/utrecht/topnav.tokens.json",