@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.
- package/CHANGELOG.md +14 -0
- package/dist/_mixin-theme.scss +10 -0
- package/dist/_mixin.scss +10 -0
- package/dist/_variables.scss +10 -0
- package/dist/dark/_mixin-theme.scss +10 -0
- package/dist/dark/_mixin.scss +10 -0
- package/dist/dark/_variables.scss +10 -0
- package/dist/dark/index.cjs +10 -0
- package/dist/dark/index.css +10 -0
- package/dist/dark/index.d.ts +10 -0
- package/dist/dark/index.flat.json +10 -0
- package/dist/dark/index.json +354 -0
- package/dist/dark/index.mjs +10 -0
- package/dist/dark/index.tokens.json +89 -0
- package/dist/dark/list.json +354 -0
- package/dist/dark/list.mjs +354 -0
- package/dist/dark/property.css +9 -0
- package/dist/dark/root.css +10 -0
- package/dist/dark/theme-prince-xml.css +10 -0
- package/dist/dark/theme.css +10 -0
- package/dist/dark/tokens.cjs +433 -0
- package/dist/dark/tokens.d.ts +53 -0
- package/dist/dark/tokens.json +433 -0
- package/dist/dark/variables.cjs +10 -0
- package/dist/dark/variables.css +10 -0
- package/dist/dark/variables.d.ts +10 -0
- package/dist/dark/variables.json +10 -0
- package/dist/dark/variables.less +10 -0
- package/dist/dark/variables.mjs +10 -0
- package/dist/index.cjs +10 -0
- package/dist/index.css +20 -0
- package/dist/index.d.ts +10 -0
- package/dist/index.flat.json +10 -0
- package/dist/index.json +354 -0
- package/dist/index.mjs +10 -0
- package/dist/index.tokens.json +89 -0
- package/dist/list.json +354 -0
- package/dist/list.mjs +354 -0
- package/dist/property.css +9 -0
- package/dist/root.css +10 -0
- package/dist/theme-prince-xml.css +10 -0
- package/dist/theme.css +10 -0
- package/dist/tokens.cjs +433 -0
- package/dist/tokens.d.ts +53 -0
- package/dist/tokens.json +433 -0
- package/dist/variables.cjs +10 -0
- package/dist/variables.css +10 -0
- package/dist/variables.d.ts +10 -0
- package/dist/variables.json +10 -0
- package/dist/variables.less +10 -0
- package/dist/variables.mjs +10 -0
- package/package.json +1 -1
- package/src/component/utrecht/breadcrumb-nav.tokens.json +5 -0
- package/src/component/utrecht/tooltip.tokens.json +15 -0
package/dist/dark/index.mjs
CHANGED
|
@@ -96,6 +96,7 @@ export const utrechtBodyBackgroundColor = "hsl(0 0% 100%)";
|
|
|
96
96
|
export const utrechtBodyColor = "hsl(0 0% 0%)";
|
|
97
97
|
export const utrechtBreadcrumbNavMinBlockSize = "34px";
|
|
98
98
|
export const utrechtBreadcrumbNavFontSize = "1rem";
|
|
99
|
+
export const utrechtBreadcrumbNavItemFirstPaddingInlineStart = "0";
|
|
99
100
|
export const utrechtBreadcrumbNavItemPaddingBlockStart = "8px";
|
|
100
101
|
export const utrechtBreadcrumbNavItemPaddingBlockEnd = "8px";
|
|
101
102
|
export const utrechtBreadcrumbNavItemPaddingInlineEnd = "8px";
|
|
@@ -904,6 +905,15 @@ export const utrechtTextareaBorderBlockEndWidth = "3px";
|
|
|
904
905
|
export const utrechtTextareaBorderBottomWidth = "3px";
|
|
905
906
|
export const utrechtTextareaLineHeight = "1.5";
|
|
906
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";
|
|
907
917
|
export const utrechtToptaskLinkBackgroundColor = "hsl(211 60% 80%)";
|
|
908
918
|
export const utrechtToptaskLinkColor = "hsl(0 0% 15%)";
|
|
909
919
|
export const utrechtToptaskLinkFontSize = "1rem";
|
|
@@ -927,6 +927,9 @@
|
|
|
927
927
|
"type": "textCase"
|
|
928
928
|
},
|
|
929
929
|
"item": {
|
|
930
|
+
"first": {
|
|
931
|
+
"padding-inline-start": "0"
|
|
932
|
+
},
|
|
930
933
|
"padding-block-start": "8px",
|
|
931
934
|
"padding-block-end": "8px",
|
|
932
935
|
"padding-inline-end": "8px",
|
|
@@ -7798,6 +7801,92 @@
|
|
|
7798
7801
|
}
|
|
7799
7802
|
}
|
|
7800
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
|
+
},
|
|
7801
7890
|
"toptask-link": {
|
|
7802
7891
|
"background-color": "hsl(211 60% 80%)",
|
|
7803
7892
|
"color": "hsl(0 0% 15%)",
|
package/dist/dark/list.json
CHANGED
|
@@ -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",
|