@utrecht/design-tokens 3.2.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 (53) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/_mixin-theme.scss +9 -0
  3. package/dist/_mixin.scss +9 -0
  4. package/dist/_variables.scss +9 -0
  5. package/dist/dark/_mixin-theme.scss +9 -0
  6. package/dist/dark/_mixin.scss +9 -0
  7. package/dist/dark/_variables.scss +9 -0
  8. package/dist/dark/index.cjs +9 -0
  9. package/dist/dark/index.css +9 -0
  10. package/dist/dark/index.d.ts +9 -0
  11. package/dist/dark/index.flat.json +9 -0
  12. package/dist/dark/index.json +315 -0
  13. package/dist/dark/index.mjs +9 -0
  14. package/dist/dark/index.tokens.json +86 -0
  15. package/dist/dark/list.json +315 -0
  16. package/dist/dark/list.mjs +315 -0
  17. package/dist/dark/property.css +8 -0
  18. package/dist/dark/root.css +9 -0
  19. package/dist/dark/theme-prince-xml.css +9 -0
  20. package/dist/dark/theme.css +9 -0
  21. package/dist/dark/tokens.cjs +392 -0
  22. package/dist/dark/tokens.d.ts +50 -0
  23. package/dist/dark/tokens.json +392 -0
  24. package/dist/dark/variables.cjs +9 -0
  25. package/dist/dark/variables.css +9 -0
  26. package/dist/dark/variables.d.ts +9 -0
  27. package/dist/dark/variables.json +9 -0
  28. package/dist/dark/variables.less +9 -0
  29. package/dist/dark/variables.mjs +9 -0
  30. package/dist/index.cjs +9 -0
  31. package/dist/index.css +18 -0
  32. package/dist/index.d.ts +9 -0
  33. package/dist/index.flat.json +9 -0
  34. package/dist/index.json +315 -0
  35. package/dist/index.mjs +9 -0
  36. package/dist/index.tokens.json +86 -0
  37. package/dist/list.json +315 -0
  38. package/dist/list.mjs +315 -0
  39. package/dist/property.css +8 -0
  40. package/dist/root.css +9 -0
  41. package/dist/theme-prince-xml.css +9 -0
  42. package/dist/theme.css +9 -0
  43. package/dist/tokens.cjs +392 -0
  44. package/dist/tokens.d.ts +50 -0
  45. package/dist/tokens.json +392 -0
  46. package/dist/variables.cjs +9 -0
  47. package/dist/variables.css +9 -0
  48. package/dist/variables.d.ts +9 -0
  49. package/dist/variables.json +9 -0
  50. package/dist/variables.less +9 -0
  51. package/dist/variables.mjs +9 -0
  52. package/package.json +1 -1
  53. package/src/component/utrecht/tooltip.tokens.json +15 -0
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
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
+
3
9
  ## 3.2.0
4
10
 
5
11
  ### 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;
@@ -504,6 +506,13 @@
504
506
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
505
507
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
506
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);
507
516
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
508
517
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
509
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;
@@ -504,6 +506,13 @@
504
506
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
505
507
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
506
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);
507
516
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
508
517
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
509
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;
@@ -502,6 +504,13 @@ $utrecht-toptask-link-padding-inline-end: $utrecht-space-inline-xl;
502
504
  $utrecht-toptask-link-padding-block-start: $utrecht-space-block-xl;
503
505
  $utrecht-toptask-link-padding-block-end: $utrecht-space-block-xl;
504
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;
505
514
  $utrecht-textarea-line-height: $utrecht-typography-line-height-md;
506
515
  $utrecht-table-row-alternate-even-color: $utrecht-color-black;
507
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;
@@ -506,6 +508,13 @@
506
508
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
507
509
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
508
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);
509
518
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
510
519
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
511
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;
@@ -506,6 +508,13 @@
506
508
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
507
509
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
508
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);
509
518
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
510
519
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
511
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;
@@ -504,6 +506,13 @@ $utrecht-toptask-link-padding-inline-end: $utrecht-space-inline-xl;
504
506
  $utrecht-toptask-link-padding-block-start: $utrecht-space-block-xl;
505
507
  $utrecht-toptask-link-padding-block-end: $utrecht-space-block-xl;
506
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;
507
516
  $utrecht-textarea-line-height: $utrecht-typography-line-height-md;
508
517
  $utrecht-table-row-alternate-even-color: $utrecht-color-black;
509
518
  $utrecht-table-row-alternate-even-background-color: $utrecht-color-grey-95;
@@ -906,6 +906,15 @@ module.exports = {
906
906
  "utrechtTextareaBorderBottomWidth": "3px",
907
907
  "utrechtTextareaLineHeight": "1.5",
908
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",
909
918
  "utrechtToptaskLinkBackgroundColor": "hsl(211 60% 80%)",
910
919
  "utrechtToptaskLinkColor": "hsl(0 0% 15%)",
911
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;
@@ -511,6 +513,13 @@
511
513
  --utrecht-toptask-link-padding-block-start: var(--utrecht-space-block-xl);
512
514
  --utrecht-toptask-link-padding-block-end: var(--utrecht-space-block-xl);
513
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);
514
523
  --utrecht-textarea-line-height: var(--utrecht-typography-line-height-md);
515
524
  --utrecht-table-row-alternate-even-color: var(--utrecht-color-black);
516
525
  --utrecht-table-row-alternate-even-background-color: var(--utrecht-color-grey-95);
@@ -972,6 +972,15 @@ export const utrechtTextareaBorderBlockEndWidth : string;
972
972
  export const utrechtTextareaBorderBottomWidth : string;
973
973
  export const utrechtTextareaLineHeight : string;
974
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;
975
984
  export const utrechtToptaskLinkBackgroundColor : string;
976
985
  export const utrechtToptaskLinkColor : string;
977
986
  export const utrechtToptaskLinkFontSize : string;
@@ -1071,6 +1071,15 @@
1071
1071
  "utrechtTextareaBorderBottomWidth": "3px",
1072
1072
  "utrechtTextareaLineHeight": "1.5",
1073
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",
1074
1083
  "utrechtTopnavLinkBackgroundColor": "hsl(211 60% 40%)",
1075
1084
  "utrechtTopnavLinkColor": "hsl(0 0% 100%)",
1076
1085
  "utrechtTopnavLinkFocusBackgroundColor": "hsl(48 100% 80%)",
@@ -31731,6 +31731,321 @@
31731
31731
  "border-bottom-width"
31732
31732
  ]
31733
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
+ },
31734
32049
  {
31735
32050
  "value": "hsl(211 60% 40%)",
31736
32051
  "filePath": "src/component/utrecht/topnav.tokens.json",
@@ -905,6 +905,15 @@ export const utrechtTextareaBorderBlockEndWidth = "3px";
905
905
  export const utrechtTextareaBorderBottomWidth = "3px";
906
906
  export const utrechtTextareaLineHeight = "1.5";
907
907
  export const utrechtTextboxBorderBottomWidth = "3px";
908
+ export const utrechtTooltipBackgroundColor = "hsl(0 0% 100%)";
909
+ export const utrechtTooltipBorderColor = "hsl(0 0% 40%)";
910
+ export const utrechtTooltipBorderRadius = "0";
911
+ export const utrechtTooltipBorderWidth = "1px";
912
+ export const utrechtTooltipColor = "hsl(0 0% 40%)";
913
+ export const utrechtTooltipFontFamily = "\"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", \"Arial\", sans-serif";
914
+ export const utrechtTooltipFontSize = "1rem";
915
+ export const utrechtTooltipPaddingBlock = "8px";
916
+ export const utrechtTooltipPaddingInline = "16px";
908
917
  export const utrechtToptaskLinkBackgroundColor = "hsl(211 60% 80%)";
909
918
  export const utrechtToptaskLinkColor = "hsl(0 0% 15%)";
910
919
  export const utrechtToptaskLinkFontSize = "1rem";
@@ -7801,6 +7801,92 @@
7801
7801
  }
7802
7802
  }
7803
7803
  },
7804
+ "tooltip": {
7805
+ "background-color": "hsl(0 0% 100%)",
7806
+ "border-color": "hsl(0 0% 40%)",
7807
+ "border-radius": "0",
7808
+ "border-width": "1px",
7809
+ "color": "hsl(0 0% 40%)",
7810
+ "font-family": "\"Lucida Grande\", \"Lucida Sans Unicode\", \"Lucida Sans\", \"Arial\", sans-serif",
7811
+ "font-size": "1rem",
7812
+ "font-weight": {
7813
+ "$extensions": {
7814
+ "nl.nldesignsystem.css.property": {
7815
+ "syntax": "<number>",
7816
+ "inherits": false
7817
+ },
7818
+ "nl.nldesignsystem.figma.supports-token": false
7819
+ },
7820
+ "type": "fontWeights"
7821
+ },
7822
+ "line-height": {
7823
+ "$extensions": {
7824
+ "nl.nldesignsystem.css.property": {
7825
+ "syntax": [
7826
+ "<length>",
7827
+ "<number>"
7828
+ ],
7829
+ "inherits": true
7830
+ },
7831
+ "nl.nldesignsystem.figma.supports-token": false
7832
+ },
7833
+ "type": "lineHeights"
7834
+ },
7835
+ "max-inline-size": {
7836
+ "$extensions": {
7837
+ "nl.nldesignsystem.css.property": {
7838
+ "syntax": "<length>",
7839
+ "inherits": true
7840
+ },
7841
+ "nl.nldesignsystem.figma.supports-token": false
7842
+ },
7843
+ "type": "sizing"
7844
+ },
7845
+ "padding-block": "8px",
7846
+ "padding-inline": "16px",
7847
+ "transition-duration": {
7848
+ "$extensions": {
7849
+ "nl.nldesignsystem.css.property": {
7850
+ "syntax": "<time>",
7851
+ "inherits": true
7852
+ },
7853
+ "nl.nldesignsystem.figma.supports-token": false
7854
+ },
7855
+ "type": "other"
7856
+ },
7857
+ "transition-timing-function": {
7858
+ "$extensions": {
7859
+ "nl.nldesignsystem.css.property": {
7860
+ "syntax": "<time>",
7861
+ "inherits": true
7862
+ },
7863
+ "nl.nldesignsystem.figma.supports-token": false
7864
+ },
7865
+ "type": "other"
7866
+ },
7867
+ "z-index": {
7868
+ "$extensions": {
7869
+ "nl.nldesignsystem.css.property": {
7870
+ "syntax": "<number>",
7871
+ "inherits": true
7872
+ },
7873
+ "nl.nldesignsystem.figma.supports-token": false
7874
+ },
7875
+ "type": "other"
7876
+ },
7877
+ "arrow": {
7878
+ "size": {
7879
+ "$extensions": {
7880
+ "nl.nldesignsystem.css.property": {
7881
+ "syntax": "<length-percentage>",
7882
+ "inherits": true
7883
+ },
7884
+ "nl.nldesignsystem.figma.supports-token": false
7885
+ },
7886
+ "type": "sizing"
7887
+ }
7888
+ }
7889
+ },
7804
7890
  "toptask-link": {
7805
7891
  "background-color": "hsl(211 60% 80%)",
7806
7892
  "color": "hsl(0 0% 15%)",