@utrecht/design-tokens 3.2.0 → 3.4.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 +12 -0
  2. package/dist/_mixin-theme.scss +62 -0
  3. package/dist/_mixin.scss +62 -0
  4. package/dist/_variables.scss +62 -0
  5. package/dist/dark/_mixin-theme.scss +62 -0
  6. package/dist/dark/_mixin.scss +62 -0
  7. package/dist/dark/_variables.scss +62 -0
  8. package/dist/dark/index.cjs +63 -1
  9. package/dist/dark/index.css +62 -0
  10. package/dist/dark/index.d.ts +63 -1
  11. package/dist/dark/index.flat.json +62 -0
  12. package/dist/dark/index.json +5634 -3521
  13. package/dist/dark/index.mjs +63 -1
  14. package/dist/dark/index.tokens.json +558 -10
  15. package/dist/dark/list.json +5634 -3521
  16. package/dist/dark/list.mjs +5634 -3521
  17. package/dist/dark/property.css +58 -0
  18. package/dist/dark/root.css +62 -0
  19. package/dist/dark/theme-prince-xml.css +62 -0
  20. package/dist/dark/theme.css +62 -0
  21. package/dist/dark/tokens.cjs +2623 -24
  22. package/dist/dark/tokens.d.ts +324 -3
  23. package/dist/dark/tokens.json +2623 -24
  24. package/dist/dark/variables.cjs +63 -1
  25. package/dist/dark/variables.css +62 -0
  26. package/dist/dark/variables.d.ts +63 -1
  27. package/dist/dark/variables.json +62 -0
  28. package/dist/dark/variables.less +62 -0
  29. package/dist/dark/variables.mjs +63 -1
  30. package/dist/index.cjs +63 -1
  31. package/dist/index.css +124 -0
  32. package/dist/index.d.ts +63 -1
  33. package/dist/index.flat.json +62 -0
  34. package/dist/index.json +5650 -3537
  35. package/dist/index.mjs +63 -1
  36. package/dist/index.tokens.json +558 -10
  37. package/dist/list.json +5650 -3537
  38. package/dist/list.mjs +5650 -3537
  39. package/dist/property.css +58 -0
  40. package/dist/root.css +62 -0
  41. package/dist/theme-prince-xml.css +62 -0
  42. package/dist/theme.css +62 -0
  43. package/dist/tokens.cjs +2623 -24
  44. package/dist/tokens.d.ts +324 -3
  45. package/dist/tokens.json +2623 -24
  46. package/dist/variables.cjs +63 -1
  47. package/dist/variables.css +62 -0
  48. package/dist/variables.d.ts +63 -1
  49. package/dist/variables.json +62 -0
  50. package/dist/variables.less +62 -0
  51. package/dist/variables.mjs +63 -1
  52. package/package.json +1 -1
  53. package/src/component/utrecht/navigation.tokens.json +229 -0
  54. package/src/component/utrecht/tooltip.tokens.json +15 -0
@@ -0,0 +1,229 @@
1
+ {
2
+ "utrecht": {
3
+ "navigation": {
4
+ "border-block-end-color": {
5
+ "value": "transparent"
6
+ },
7
+ "border-block-end-width": {
8
+ "value": "0"
9
+ },
10
+ "border-block-start-color": {
11
+ "value": "transparent"
12
+ },
13
+ "border-block-start-width": {
14
+ "value": "0"
15
+ },
16
+ "margin-block-end": {},
17
+ "margin-block-start": {},
18
+ "drawer": {
19
+ "backdrop": {
20
+ "background-color": {
21
+ "value": "rgb(0 0 0 / 30%)"
22
+ }
23
+ },
24
+ "min-inline-size": {
25
+ "value": "100%"
26
+ },
27
+ "mobile": {
28
+ "min-inline-size": {
29
+ "value": "50%"
30
+ }
31
+ }
32
+ },
33
+ "item": {
34
+ "padding-block-start": {},
35
+ "padding-block-end": {},
36
+ "padding-inline-start": {},
37
+ "padding-inline-end": {},
38
+ "border-block-end-color": {
39
+ "value": "transparent"
40
+ },
41
+ "border-block-end-width": {
42
+ "value": "0"
43
+ },
44
+ "border-block-start-color": {
45
+ "value": "transparent"
46
+ },
47
+ "border-block-start-width": {
48
+ "value": "0"
49
+ },
50
+ "mobile": {
51
+ "padding-block-start": {},
52
+ "padding-block-end": {},
53
+ "padding-inline-start": {},
54
+ "padding-inline-end": {},
55
+ "border-block-end-color": {
56
+ "value": "{utrecht.color.grey.80}"
57
+ },
58
+ "border-block-end-width": {
59
+ "value": "1px"
60
+ },
61
+ "border-block-start-color": {
62
+ "value": "{utrecht.color.grey.80}"
63
+ },
64
+ "border-block-start-width": {
65
+ "value": "1px"
66
+ }
67
+ }
68
+ },
69
+ "link": {
70
+ "active": {
71
+ "color": {
72
+ "value": "{utrecht.color.white}"
73
+ },
74
+ "focus": {
75
+ "color": {
76
+ "value": "{utrecht.color.black}"
77
+ }
78
+ }
79
+ },
80
+ "background-color": {
81
+ "value": "{utrecht.color.grey.15}"
82
+ },
83
+ "border-color": {
84
+ "value": "{utrecht.color.grey.40}"
85
+ },
86
+ "border-inline-end-width": {
87
+ "value": "1px"
88
+ },
89
+ "color": {
90
+ "value": "{utrecht.color.white}"
91
+ },
92
+ "focus": {
93
+ "color": {
94
+ "value": "{utrecht.color.black}"
95
+ },
96
+ "background-color": {
97
+ "value": "{utrecht.color.yellow.80}"
98
+ },
99
+ "text-decoration-thickness": {
100
+ "value": "3px"
101
+ }
102
+ },
103
+ "font-weight": {
104
+ "value": "{utrecht.typography.weight-scale.normal.font-weight}"
105
+ },
106
+ "gap": {
107
+ "value": "8px"
108
+ },
109
+ "hover": {
110
+ "background-color": {
111
+ "value": "{utrecht.color.black}"
112
+ },
113
+ "color": {
114
+ "value": "{utrecht.color.white}"
115
+ },
116
+ "decoration-thickness": {
117
+ "value": "3px"
118
+ }
119
+ },
120
+ "is-current": {
121
+ "font-weight": {
122
+ "value": "{utrecht.typography.weight-scale.bold.font-weight}"
123
+ }
124
+ },
125
+ "mobile": {
126
+ "background-color": {
127
+ "value": "{utrecht.color.white}"
128
+ },
129
+ "color": {
130
+ "value": "{utrecht.color.blue.35}"
131
+ },
132
+ "hover": {
133
+ "background-color": {
134
+ "value": "{utrecht.color.white}"
135
+ },
136
+ "color": {
137
+ "value": "{utrecht.color.blue.35}"
138
+ },
139
+ "font-weight": {
140
+ "value": "{utrecht.typography.weight-scale.bold.font-weight}"
141
+ }
142
+ },
143
+ "justify-content": {},
144
+ "min-block-size": {
145
+ "value": "44px"
146
+ },
147
+ "padding-block-end": {
148
+ "value": "{utrecht.space.block.xs}"
149
+ },
150
+ "padding-block-start": {
151
+ "value": "{utrecht.space.block.xs}"
152
+ },
153
+ "padding-inline-end": {},
154
+ "padding-inline-start": {
155
+ "value": "{utrecht.space.inline.md}"
156
+ },
157
+ "transition-duration": {
158
+ "value": "300ms"
159
+ },
160
+ "transition-timing-function": {
161
+ "value": "ease-in-out"
162
+ }
163
+ },
164
+ "padding-block-end": {
165
+ "value": "{utrecht.space.block.md}"
166
+ },
167
+ "padding-block-start": {
168
+ "value": "{utrecht.space.block.md}"
169
+ },
170
+ "padding-inline-end": {},
171
+ "padding-inline-start": {},
172
+ "text-align": {}
173
+ },
174
+ "list": {
175
+ "inline-size": {},
176
+ "mobile": {
177
+ "background-color": {
178
+ "value": "{utrecht.color.white}"
179
+ },
180
+ "inline-size": {
181
+ "value": "100%"
182
+ },
183
+ "padding-block-end": {
184
+ "value": "{utrecht.space.block.xs}"
185
+ },
186
+ "padding-block-start": {},
187
+ "padding-inline-end": {
188
+ "value": "{utrecht.space.inline.md}"
189
+ },
190
+ "padding-inline-start": {
191
+ "value": "{utrecht.space.inline.md}"
192
+ }
193
+ },
194
+ "padding-block-end": {},
195
+ "padding-block-start": {},
196
+ "padding-inline-end": {},
197
+ "padding-inline-start": {},
198
+ "side-nav": {
199
+ "inline-size": {
200
+ "value": "100%"
201
+ }
202
+ }
203
+ },
204
+ "marker": {
205
+ "color": {
206
+ "value": "{utrecht.color.grey.80}"
207
+ }
208
+ },
209
+ "toggle-button": {
210
+ "margin-block-end": {},
211
+ "margin-block-start": {},
212
+ "offset-end": {
213
+ "value": "16px"
214
+ },
215
+ "offset-start": {
216
+ "value": "16px"
217
+ },
218
+ "padding-inline-end": {}
219
+ }
220
+ },
221
+ "icon": {
222
+ "custom": {
223
+ "margin-inline-end": {
224
+ "value": "{utrecht.space.inline.xs}"
225
+ }
226
+ }
227
+ }
228
+ }
229
+ }
@@ -0,0 +1,15 @@
1
+ {
2
+ "utrecht": {
3
+ "tooltip": {
4
+ "background-color": { "value": "{utrecht.color.white}" },
5
+ "border-color": { "value": "{utrecht.color.grey.40}" },
6
+ "border-radius": { "value": "0" },
7
+ "border-width": { "value": "1px" },
8
+ "color": { "value": "{utrecht.color.grey.40}" },
9
+ "font-family": { "value": "{utrecht.typography.sans-serif.font-family}" },
10
+ "font-size": { "value": "{utrecht.typography.scale.md.font-size}" },
11
+ "padding-inline": { "value": "{utrecht.space.inline.md}" },
12
+ "padding-block": { "value": "{utrecht.space.block.xs}" }
13
+ }
14
+ }
15
+ }