@vaadin/vaadin-lumo-styles 25.0.0-alpha2 → 25.0.0-alpha20

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 (263) hide show
  1. package/all-imports.d.ts +0 -8
  2. package/all-imports.js +0 -18
  3. package/components/accordion-heading.css +14 -0
  4. package/components/accordion-panel.css +15 -0
  5. package/{user-colors.d.ts → components/accordion.css} +2 -3
  6. package/components/app-layout.css +11 -0
  7. package/components/avatar-group.css +31 -0
  8. package/components/avatar.css +17 -0
  9. package/components/button.css +11 -0
  10. package/components/card.css +50 -0
  11. package/components/charts.css +11 -0
  12. package/components/checkbox-group.css +23 -0
  13. package/components/checkbox.css +14 -0
  14. package/components/combo-box.css +47 -0
  15. package/components/confirm-dialog.css +17 -0
  16. package/components/context-menu.css +32 -0
  17. package/components/crud.css +40 -0
  18. package/components/custom-field.css +20 -0
  19. package/components/dashboard.css +34 -0
  20. package/components/date-picker.css +49 -0
  21. package/components/date-time-picker.css +28 -0
  22. package/components/details-summary.css +11 -0
  23. package/components/details.css +12 -0
  24. package/components/dialog.css +16 -0
  25. package/components/drawer-toggle.css +14 -0
  26. package/components/email-field.css +25 -0
  27. package/components/field-highlighter.css +22 -0
  28. package/components/form-item.css +11 -0
  29. package/components/form-layout.css +11 -0
  30. package/components/grid-filter-column.css +6 -0
  31. package/components/grid-filter.css +12 -0
  32. package/components/grid-pro-edit-column.css +48 -0
  33. package/components/grid-pro.css +14 -0
  34. package/components/grid-selection-column.css +6 -0
  35. package/components/grid-sort-column.css +6 -0
  36. package/components/grid-sorter.css +19 -0
  37. package/components/grid-tree-column.css +6 -0
  38. package/components/grid-tree-toggle.css +11 -0
  39. package/components/grid.css +11 -0
  40. package/components/horizontal-layout.css +11 -0
  41. package/components/icon.css +11 -0
  42. package/components/index.css +71 -0
  43. package/components/input-container.css +11 -0
  44. package/components/integer-field.css +25 -0
  45. package/components/item.css +11 -0
  46. package/components/list-box.css +11 -0
  47. package/components/login-form.css +14 -0
  48. package/components/login.css +15 -0
  49. package/components/map.css +11 -0
  50. package/components/master-detail-layout.css +19 -0
  51. package/components/menu-bar.css +47 -0
  52. package/components/message-input-button.css +11 -0
  53. package/components/message-input.css +13 -0
  54. package/components/message-list.css +6 -0
  55. package/components/message.css +12 -0
  56. package/components/multi-select-combo-box.css +61 -0
  57. package/components/notification.css +15 -0
  58. package/components/number-field.css +25 -0
  59. package/components/overlay.css +11 -0
  60. package/components/password-field.css +32 -0
  61. package/components/popover.css +14 -0
  62. package/components/progress-bar.css +11 -0
  63. package/components/radio-button.css +14 -0
  64. package/components/radio-group.css +23 -0
  65. package/components/rich-text-editor.css +26 -0
  66. package/components/scroller.css +11 -0
  67. package/components/select.css +48 -0
  68. package/components/side-nav-item.css +14 -0
  69. package/components/side-nav.css +12 -0
  70. package/components/split-layout.css +11 -0
  71. package/components/tab.css +11 -0
  72. package/components/tabs.css +12 -0
  73. package/components/tabsheet.css +19 -0
  74. package/components/text-area.css +25 -0
  75. package/components/text-field.css +23 -0
  76. package/components/time-picker.css +43 -0
  77. package/components/tooltip.css +14 -0
  78. package/components/upload.css +31 -0
  79. package/components/vertical-layout.css +11 -0
  80. package/dist/lumo.css +41 -0
  81. package/dist/presets/compact.css +1 -0
  82. package/dist/utility.css +1 -0
  83. package/{color-global.js → global.css} +3 -4
  84. package/{badge-global.js → lumo.css} +3 -4
  85. package/mixins/field-button.js +3 -4
  86. package/mixins/helper.js +3 -4
  87. package/mixins/input-field-shared.js +5 -9
  88. package/mixins/loader.js +3 -2
  89. package/mixins/menu-overlay.js +3 -4
  90. package/mixins/overlay.js +3 -4
  91. package/mixins/required-field.js +3 -4
  92. package/package.json +23 -14
  93. package/postcss.config.js +11 -0
  94. package/presets/compact.css +31 -0
  95. package/props.css +12 -0
  96. package/src/components/accordion-heading.css +42 -0
  97. package/src/components/accordion-panel.css +38 -0
  98. package/src/components/app-layout.css +193 -0
  99. package/src/components/avatar-group-menu-item.css +22 -0
  100. package/src/components/avatar-group-overlay.css +11 -0
  101. package/src/components/avatar-group.css +67 -0
  102. package/src/components/avatar.css +86 -0
  103. package/src/components/button.css +334 -0
  104. package/src/components/card.css +38 -0
  105. package/src/components/chart.css +86 -0
  106. package/src/components/checkbox-group.css +18 -0
  107. package/src/components/checkbox.css +340 -0
  108. package/src/components/combo-box-item.css +18 -0
  109. package/src/components/combo-box-overlay.css +15 -0
  110. package/src/components/combo-box.css +14 -0
  111. package/src/components/confirm-dialog-overlay.css +55 -0
  112. package/src/components/context-menu-item.css +39 -0
  113. package/src/components/context-menu-list-box.css +40 -0
  114. package/src/components/context-menu-overlay.css +62 -0
  115. package/src/components/crud-dialog-overlay.css +57 -0
  116. package/src/components/crud-edit.css +30 -0
  117. package/src/components/crud.css +157 -0
  118. package/src/components/custom-field.css +102 -0
  119. package/src/components/dashboard-layout.css +28 -0
  120. package/src/components/dashboard-section.css +85 -0
  121. package/src/components/dashboard-widget.css +140 -0
  122. package/src/components/dashboard.css +14 -0
  123. package/src/components/date-picker-month-calendar.css +192 -0
  124. package/src/components/date-picker-overlay-content.css +127 -0
  125. package/src/components/date-picker-overlay.css +48 -0
  126. package/src/components/date-picker-year.css +35 -0
  127. package/src/components/date-picker.css +41 -0
  128. package/src/components/date-time-picker.css +36 -0
  129. package/src/components/details-summary.css +131 -0
  130. package/src/components/details.css +37 -0
  131. package/src/components/dialog-overlay.css +164 -0
  132. package/src/components/drawer-toggle.css +51 -0
  133. package/src/components/email-field.css +26 -0
  134. package/src/components/field-outline.css +51 -0
  135. package/src/components/form-item.css +36 -0
  136. package/src/components/form-layout.css +12 -0
  137. package/src/components/grid-filter.css +16 -0
  138. package/src/components/grid-pro-edit-select.css +19 -0
  139. package/src/components/grid-pro.css +90 -0
  140. package/src/components/grid-sorter.css +70 -0
  141. package/src/components/grid-tree-toggle.css +104 -0
  142. package/src/components/grid.css +755 -0
  143. package/src/components/horizontal-layout.css +34 -0
  144. package/src/components/icon.css +11 -0
  145. package/src/components/input-container.css +228 -0
  146. package/src/components/item.css +94 -0
  147. package/src/components/list-box.css +31 -0
  148. package/src/components/login-form-wrapper.css +113 -0
  149. package/src/components/login-overlay-wrapper.css +189 -0
  150. package/src/components/map.css +182 -0
  151. package/src/components/menu-bar-button.css +128 -0
  152. package/src/components/menu-bar-item.css +23 -0
  153. package/{utility-global.js → src/components/menu-bar-overlay.css} +5 -4
  154. package/src/components/menu-bar.css +31 -0
  155. package/src/components/message-input.css +30 -0
  156. package/src/components/message.css +57 -0
  157. package/src/components/multi-select-combo-box-chip.css +113 -0
  158. package/src/components/multi-select-combo-box-container.css +20 -0
  159. package/src/components/multi-select-combo-box-item.css +13 -0
  160. package/src/components/multi-select-combo-box-overlay.css +18 -0
  161. package/src/components/multi-select-combo-box.css +102 -0
  162. package/src/components/notification-card.css +228 -0
  163. package/src/components/notification-container.css +60 -0
  164. package/src/components/number-field.css +53 -0
  165. package/src/components/password-field-button.css +19 -0
  166. package/src/components/password-field.css +24 -0
  167. package/src/components/popover-overlay.css +20 -0
  168. package/src/components/progress-bar.css +295 -0
  169. package/src/components/radio-button.css +156 -0
  170. package/src/components/radio-group.css +18 -0
  171. package/src/components/rich-text-editor-popup-overlay.css +27 -0
  172. package/src/components/rich-text-editor.css +383 -0
  173. package/src/components/scroller.css +21 -0
  174. package/src/components/select-overlay.css +54 -0
  175. package/src/components/select-value-button.css +57 -0
  176. package/src/components/select.css +73 -0
  177. package/src/components/side-nav-item.css +183 -0
  178. package/src/components/side-nav.css +102 -0
  179. package/src/components/split-layout.css +53 -0
  180. package/src/components/tab.css +246 -0
  181. package/src/components/tabs.css +285 -0
  182. package/src/components/tabsheet.css +63 -0
  183. package/src/components/text-area.css +116 -0
  184. package/src/components/time-picker-overlay.css +15 -0
  185. package/src/components/time-picker.css +36 -0
  186. package/src/components/tooltip-overlay.css +50 -0
  187. package/src/components/upload-file.css +99 -0
  188. package/src/components/upload-icon.css +20 -0
  189. package/src/components/upload.css +56 -0
  190. package/src/components/user-tag.css +48 -0
  191. package/src/components/user-tags-overlay.css +64 -0
  192. package/src/components/vertical-layout.css +34 -0
  193. package/src/global/badge.css +167 -0
  194. package/src/global/color-scheme.css +99 -0
  195. package/src/global/typography.css +113 -0
  196. package/src/mixins/checkable-field.css +67 -0
  197. package/src/mixins/combo-box-loader.css +14 -0
  198. package/src/mixins/combo-box-overlay.css +30 -0
  199. package/src/mixins/dashboard-item.css +121 -0
  200. package/src/mixins/field-base.css +187 -0
  201. package/src/mixins/field-button.css +46 -0
  202. package/src/mixins/field-error-message.css +36 -0
  203. package/src/mixins/field-helper.css +62 -0
  204. package/src/mixins/field-label.css +62 -0
  205. package/src/mixins/field-required.css +26 -0
  206. package/src/mixins/grid-pro-editor.css +35 -0
  207. package/src/mixins/group-field.css +58 -0
  208. package/src/mixins/loader.css +48 -0
  209. package/src/mixins/menu-overlay-core.css +36 -0
  210. package/src/mixins/menu-overlay-ext.css +63 -0
  211. package/src/mixins/overlay.css +130 -0
  212. package/src/mixins/resizable-overlay.css +100 -0
  213. package/src/props/color.css +98 -0
  214. package/src/props/icons.css +63 -0
  215. package/src/props/reset.css +11 -0
  216. package/src/props/sizing.css +19 -0
  217. package/src/props/spacing.css +27 -0
  218. package/src/props/style.css +21 -0
  219. package/src/props/typography.css +24 -0
  220. package/src/utilities/accessibility.css +17 -0
  221. package/src/utilities/background.css +189 -0
  222. package/src/utilities/border.css +173 -0
  223. package/src/utilities/filter.css +37 -0
  224. package/src/utilities/flexbox-grid.css +781 -0
  225. package/src/utilities/layout.css +629 -0
  226. package/src/utilities/shadows.css +29 -0
  227. package/src/utilities/sizing.css +142 -0
  228. package/src/utilities/spacing.css +682 -0
  229. package/src/utilities/transition.css +46 -0
  230. package/src/utilities/typography.css +424 -0
  231. package/utility.css +16 -0
  232. package/vaadin-iconset.js +4 -0
  233. package/auto-complete.css +0 -2582
  234. package/badge.d.ts +0 -3
  235. package/badge.js +0 -178
  236. package/color.d.ts +0 -5
  237. package/color.js +0 -221
  238. package/font-icons.js +0 -67
  239. package/global.js +0 -5
  240. package/presets/compact.js +0 -40
  241. package/sizing.d.ts +0 -3
  242. package/sizing.js +0 -29
  243. package/spacing.d.ts +0 -3
  244. package/spacing.js +0 -37
  245. package/style.d.ts +0 -5
  246. package/style.js +0 -119
  247. package/typography-global.js +0 -13
  248. package/typography.d.ts +0 -7
  249. package/typography.js +0 -129
  250. package/user-colors.js +0 -33
  251. package/utilities/accessibility.js +0 -21
  252. package/utilities/background.js +0 -156
  253. package/utilities/border.js +0 -147
  254. package/utilities/filter.js +0 -34
  255. package/utilities/flexbox-grid.js +0 -619
  256. package/utilities/layout.js +0 -504
  257. package/utilities/shadows.js +0 -28
  258. package/utilities/sizing.js +0 -121
  259. package/utilities/spacing.js +0 -542
  260. package/utilities/transition.js +0 -49
  261. package/utilities/typography.js +0 -344
  262. package/utility.d.ts +0 -3
  263. package/utility.js +0 -34
@@ -0,0 +1,424 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ /* === Font size === */
7
+ .text-2xs {
8
+ font-size: var(--lumo-font-size-xxs);
9
+ }
10
+
11
+ .text-xs {
12
+ font-size: var(--lumo-font-size-xs);
13
+ }
14
+
15
+ .text-s {
16
+ font-size: var(--lumo-font-size-s);
17
+ }
18
+
19
+ .text-m {
20
+ font-size: var(--lumo-font-size-m);
21
+ }
22
+
23
+ .text-l {
24
+ font-size: var(--lumo-font-size-l);
25
+ }
26
+
27
+ .text-xl {
28
+ font-size: var(--lumo-font-size-xl);
29
+ }
30
+
31
+ .text-2xl {
32
+ font-size: var(--lumo-font-size-xxl);
33
+ }
34
+
35
+ .text-3xl {
36
+ font-size: var(--lumo-font-size-xxxl);
37
+ }
38
+
39
+ /* === Font weight === */
40
+ .font-thin {
41
+ font-weight: 100;
42
+ }
43
+
44
+ .font-extralight {
45
+ font-weight: 200;
46
+ }
47
+
48
+ .font-light {
49
+ font-weight: 300;
50
+ }
51
+
52
+ .font-normal {
53
+ font-weight: 400;
54
+ }
55
+
56
+ .font-medium {
57
+ font-weight: 500;
58
+ }
59
+
60
+ .font-semibold {
61
+ font-weight: 600;
62
+ }
63
+
64
+ .font-bold {
65
+ font-weight: 700;
66
+ }
67
+
68
+ .font-extrabold {
69
+ font-weight: 800;
70
+ }
71
+
72
+ .font-black {
73
+ font-weight: 900;
74
+ }
75
+
76
+ /* === Line clamp === */
77
+ [class*='line-clamp-'] {
78
+ display: -webkit-box;
79
+ overflow: hidden;
80
+ -webkit-box-orient: vertical;
81
+ }
82
+
83
+ .line-clamp-1 {
84
+ -webkit-line-clamp: 1;
85
+ }
86
+
87
+ .line-clamp-2 {
88
+ -webkit-line-clamp: 2;
89
+ }
90
+
91
+ .line-clamp-3 {
92
+ -webkit-line-clamp: 3;
93
+ }
94
+
95
+ .line-clamp-4 {
96
+ -webkit-line-clamp: 4;
97
+ }
98
+
99
+ .line-clamp-5 {
100
+ -webkit-line-clamp: 5;
101
+ }
102
+
103
+ .line-clamp-6 {
104
+ -webkit-line-clamp: 6;
105
+ }
106
+
107
+ /* === Line height === */
108
+ .leading-none {
109
+ line-height: 1;
110
+ }
111
+
112
+ .leading-xs {
113
+ line-height: var(--lumo-line-height-xs);
114
+ }
115
+
116
+ .leading-s {
117
+ line-height: var(--lumo-line-height-s);
118
+ }
119
+
120
+ .leading-m {
121
+ line-height: var(--lumo-line-height-m);
122
+ }
123
+
124
+ /* === List style type === */
125
+ .list-none {
126
+ list-style-type: none;
127
+ }
128
+
129
+ /* === Text alignment === */
130
+ .text-left {
131
+ text-align: left;
132
+ }
133
+
134
+ .text-center {
135
+ text-align: center;
136
+ }
137
+
138
+ .text-right {
139
+ text-align: right;
140
+ }
141
+
142
+ .text-justify {
143
+ text-align: justify;
144
+ }
145
+
146
+ /* === Text color === */
147
+ .text-header {
148
+ color: var(--lumo-header-text-color);
149
+ }
150
+
151
+ .text-body {
152
+ color: var(--lumo-body-text-color);
153
+ }
154
+
155
+ .text-secondary {
156
+ color: var(--lumo-secondary-text-color);
157
+ }
158
+
159
+ .text-tertiary {
160
+ color: var(--lumo-tertiary-text-color);
161
+ }
162
+
163
+ .text-disabled {
164
+ color: var(--lumo-disabled-text-color);
165
+ }
166
+
167
+ .text-primary {
168
+ color: var(--lumo-primary-text-color);
169
+ }
170
+
171
+ .text-primary-contrast {
172
+ color: var(--lumo-primary-contrast-color);
173
+ }
174
+
175
+ .text-error {
176
+ color: var(--lumo-error-text-color);
177
+ }
178
+
179
+ .text-error-contrast {
180
+ color: var(--lumo-error-contrast-color);
181
+ }
182
+
183
+ .text-success {
184
+ color: var(--lumo-success-text-color);
185
+ }
186
+
187
+ .text-success-contrast {
188
+ color: var(--lumo-success-contrast-color);
189
+ }
190
+
191
+ .text-warning {
192
+ color: var(--lumo-warning-text-color);
193
+ }
194
+
195
+ .text-warning-contrast {
196
+ color: var(--lumo-warning-contrast-color);
197
+ }
198
+
199
+ /* == Text decoration === */
200
+ .line-through {
201
+ text-decoration-line: line-through;
202
+ }
203
+
204
+ .no-underline {
205
+ text-decoration-line: none;
206
+ }
207
+
208
+ .underline {
209
+ text-decoration-line: underline;
210
+ }
211
+
212
+ /* === Text overflow === */
213
+ .overflow-clip {
214
+ text-overflow: clip;
215
+ }
216
+
217
+ .overflow-ellipsis {
218
+ text-overflow: ellipsis;
219
+ }
220
+
221
+ /* === Text transform === */
222
+ .capitalize {
223
+ text-transform: capitalize;
224
+ }
225
+
226
+ .lowercase {
227
+ text-transform: lowercase;
228
+ }
229
+
230
+ .uppercase {
231
+ text-transform: uppercase;
232
+ }
233
+
234
+ /* === Whitespace === */
235
+ .whitespace-normal {
236
+ white-space: normal;
237
+ }
238
+
239
+ .whitespace-break-spaces {
240
+ white-space: normal;
241
+ }
242
+
243
+ .whitespace-nowrap {
244
+ white-space: nowrap;
245
+ }
246
+
247
+ .whitespace-pre {
248
+ white-space: pre;
249
+ }
250
+
251
+ .whitespace-pre-line {
252
+ white-space: pre-line;
253
+ }
254
+
255
+ .whitespace-pre-wrap {
256
+ white-space: pre-wrap;
257
+ }
258
+
259
+ /* === Responsive design === */
260
+ @media (min-width: 640px) {
261
+ .sm\:text-2xs {
262
+ font-size: var(--lumo-font-size-xxs);
263
+ }
264
+
265
+ .sm\:text-xs {
266
+ font-size: var(--lumo-font-size-xs);
267
+ }
268
+
269
+ .sm\:text-s {
270
+ font-size: var(--lumo-font-size-s);
271
+ }
272
+
273
+ .sm\:text-m {
274
+ font-size: var(--lumo-font-size-m);
275
+ }
276
+
277
+ .sm\:text-l {
278
+ font-size: var(--lumo-font-size-l);
279
+ }
280
+
281
+ .sm\:text-xl {
282
+ font-size: var(--lumo-font-size-xl);
283
+ }
284
+
285
+ .sm\:text-2xl {
286
+ font-size: var(--lumo-font-size-xxl);
287
+ }
288
+
289
+ .sm\:text-3xl {
290
+ font-size: var(--lumo-font-size-xxxl);
291
+ }
292
+ }
293
+ @media (min-width: 768px) {
294
+ .md\:text-2xs {
295
+ font-size: var(--lumo-font-size-xxs);
296
+ }
297
+
298
+ .md\:text-xs {
299
+ font-size: var(--lumo-font-size-xs);
300
+ }
301
+
302
+ .md\:text-s {
303
+ font-size: var(--lumo-font-size-s);
304
+ }
305
+
306
+ .md\:text-m {
307
+ font-size: var(--lumo-font-size-m);
308
+ }
309
+
310
+ .md\:text-l {
311
+ font-size: var(--lumo-font-size-l);
312
+ }
313
+
314
+ .md\:text-xl {
315
+ font-size: var(--lumo-font-size-xl);
316
+ }
317
+
318
+ .md\:text-2xl {
319
+ font-size: var(--lumo-font-size-xxl);
320
+ }
321
+
322
+ .md\:text-3xl {
323
+ font-size: var(--lumo-font-size-xxxl);
324
+ }
325
+ }
326
+ @media (min-width: 1024px) {
327
+ .lg\:text-2xs {
328
+ font-size: var(--lumo-font-size-xxs);
329
+ }
330
+
331
+ .lg\:text-xs {
332
+ font-size: var(--lumo-font-size-xs);
333
+ }
334
+
335
+ .lg\:text-s {
336
+ font-size: var(--lumo-font-size-s);
337
+ }
338
+
339
+ .lg\:text-m {
340
+ font-size: var(--lumo-font-size-m);
341
+ }
342
+
343
+ .lg\:text-l {
344
+ font-size: var(--lumo-font-size-l);
345
+ }
346
+
347
+ .lg\:text-xl {
348
+ font-size: var(--lumo-font-size-xl);
349
+ }
350
+
351
+ .lg\:text-2xl {
352
+ font-size: var(--lumo-font-size-xxl);
353
+ }
354
+
355
+ .lg\:text-3xl {
356
+ font-size: var(--lumo-font-size-xxxl);
357
+ }
358
+ }
359
+ @media (min-width: 1280px) {
360
+ .xl\:text-2xs {
361
+ font-size: var(--lumo-font-size-xxs);
362
+ }
363
+
364
+ .xl\:text-xs {
365
+ font-size: var(--lumo-font-size-xs);
366
+ }
367
+
368
+ .xl\:text-s {
369
+ font-size: var(--lumo-font-size-s);
370
+ }
371
+
372
+ .xl\:text-m {
373
+ font-size: var(--lumo-font-size-m);
374
+ }
375
+
376
+ .xl\:text-l {
377
+ font-size: var(--lumo-font-size-l);
378
+ }
379
+
380
+ .xl\:text-xl {
381
+ font-size: var(--lumo-font-size-xl);
382
+ }
383
+
384
+ .xl\:text-2xl {
385
+ font-size: var(--lumo-font-size-xxl);
386
+ }
387
+
388
+ .xl\:text-3xl {
389
+ font-size: var(--lumo-font-size-xxxl);
390
+ }
391
+ }
392
+ @media (min-width: 1536px) {
393
+ .\32xl\:text-2xs {
394
+ font-size: var(--lumo-font-size-xxs);
395
+ }
396
+
397
+ .\32xl\:text-xs {
398
+ font-size: var(--lumo-font-size-xs);
399
+ }
400
+
401
+ .\32xl\:text-s {
402
+ font-size: var(--lumo-font-size-s);
403
+ }
404
+
405
+ .\32xl\:text-m {
406
+ font-size: var(--lumo-font-size-m);
407
+ }
408
+
409
+ .\32xl\:text-l {
410
+ font-size: var(--lumo-font-size-l);
411
+ }
412
+
413
+ .\32xl\:text-xl {
414
+ font-size: var(--lumo-font-size-xl);
415
+ }
416
+
417
+ .\32xl\:text-2xl {
418
+ font-size: var(--lumo-font-size-xxl);
419
+ }
420
+
421
+ .\32xl\:text-3xl {
422
+ font-size: var(--lumo-font-size-xxxl);
423
+ }
424
+ }
package/utility.css ADDED
@@ -0,0 +1,16 @@
1
+ /**
2
+ * @license
3
+ * Copyright (c) 2000 - 2025 Vaadin Ltd.
4
+ * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
5
+ */
6
+ @import './src/utilities/accessibility.css';
7
+ @import './src/utilities/background.css';
8
+ @import './src/utilities/border.css';
9
+ @import './src/utilities/filter.css';
10
+ @import './src/utilities/flexbox-grid.css';
11
+ @import './src/utilities/layout.css';
12
+ @import './src/utilities/shadows.css';
13
+ @import './src/utilities/sizing.css';
14
+ @import './src/utilities/spacing.css';
15
+ @import './src/utilities/transition.css';
16
+ @import './src/utilities/typography.css';
package/vaadin-iconset.js CHANGED
@@ -28,6 +28,7 @@ template.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg"><defs>
28
28
  <g id="lumo:chevron-left"><path d="M346 533l199 210c9 9 23 9 32 0 4-4 7-10 6-17V274C583 261 573 250 561 250c-6 0-12 2-16 7l-199 210c-17 18-17 48 0 66z"></path></g>
29
29
  <g id="lumo:chevron-right"><path d="M654 533L455 743c-9 9-23 9-32 0C419 739 417 733 417 726V274C417 261 427 250 439 250c6 0 12 2 16 7l199 210c17 18 17 48 0 66z"></path></g>
30
30
  <g id="lumo:chevron-up"><path d="M533 346l210 199c9 9 9 23 0 32-4 4-10 7-17 6H274C261 583 250 573 250 561c0-6 2-12 7-16l210-199c18-17 48-17 66 0z"></path></g>
31
+ <g id="lumo:clean"><path d="M250 208v8L368 333h99l-30 70 88 88L592 333H833V208H250M136 208L83 261l291 291L271 792h125l65-153L697 875 750 822 148 220 136 208Z"></path></g>
31
32
  <g id="lumo:clock"><path d="M538 489l85 85c15 15 15 38 0 53-15 15-38 15-53 0l-93-93a38 38 0 0 1-2-2C467 525 462 515 462 504V308c0-21 17-38 38-37 21 0 38 17 37 37v181zM500 833c-184 0-333-149-333-333s149-333 333-333 333 149 333 333-149 333-333 333z m0-68c146 0 265-118 265-265 0-146-118-265-265-265-146 0-265 118-265 265 0 146 118 265 265 265z"></path></g>
32
33
  <g id="lumo:cog"><path d="M833 458l-81-18c-8-25-17-50-29-75L767 292 708 233l-72 49c-21-12-46-25-75-30L542 167h-84l-19 79c-25 8-50 17-71 30L296 233 233 296l47 69c-12 21-21 46-29 71L167 458v84l84 25c8 25 17 50 29 75L233 708 292 767l76-44c21 12 46 25 75 29L458 833h84l19-81c25-8 50-17 75-29L708 767l59-59-44-66c12-21 25-46 29-75L833 542v-84z m-333 217c-96 0-175-79-175-175 0-96 79-175 175-175 96 0 175 79 175 175 0 96-79 175-175 175z"></path></g>
33
34
  <g id="lumo:cross"><path d="M445 500l-142-141c-15-15-15-40 0-56 15-15 40-15 56 0L500 445l141-142c15-15 40-15 56 0 15 15 15 40 0 56L555 500l142 141c15 15 15 40 0 56-15 15-40 15-56 0L500 555l-141 142c-15 15-40 15-56 0-15-15-15-40 0-56L445 500z"></path></g>
@@ -38,9 +39,12 @@ template.innerHTML = `<svg xmlns="http://www.w3.org/2000/svg"><defs>
38
39
  <g id="lumo:error"><path d="M500 833c-184 0-333-149-333-333s149-333 333-333 333 149 333 333-149 333-333 333z m0-68c146 0 265-118 265-265 0-146-118-265-265-265-146 0-265 118-265 265 0 146 118 265 265 265zM479 292h42c12 0 21 9 20 20l-11 217c0 8-6 13-13 13h-34c-7 0-13-6-13-13l-11-217C459 301 468 292 479 292zM483 608h34c12 0 21 9 20 21v33c0 12-9 21-20 21h-34c-12 0-21-9-21-21v-33c0-12 9-21 21-21z"></path></g>
39
40
  <g id="lumo:eye"><path d="M500 750c-187 0-417-163-417-250s230-250 417-250 417 163 417 250-230 250-417 250z m-336-231c20 22 47 46 78 69C322 644 411 678 500 678s178-34 258-90c31-22 59-46 78-69 6-7 12-14 16-19-4-6-9-12-16-19-20-22-47-46-78-69C678 356 589 322 500 322s-178 34-258 90c-31 22-59 46-78 69-6 7-12 14-16 19 4 6 9 12 16 19zM500 646c-81 0-146-65-146-146s65-146 146-146 146 65 146 146-65 146-146 146z m0-75c39 0 71-32 71-71 0-39-32-71-71-71-39 0-71 32-71 71 0 39 32 71 71 71z"></path></g>
40
41
  <g id="lumo:eye-disabled"><path d="M396 735l60-60c15 2 30 3 44 3 89 0 178-34 258-90 31-22 59-46 78-69 6-7 12-14 16-19-4-6-9-12-16-19-20-22-47-46-78-69-8-5-15-11-23-15l50-51C862 397 917 458 917 500c0 87-230 250-417 250-34 0-69-5-104-15zM215 654C138 603 83 542 83 500c0-87 230-250 417-250 34 0 69 5 104 15l-59 60c-15-2-30-3-45-3-89 0-178 34-258 90-31 22-59 46-78 69-6 7-12 14-16 19 4 6 9 12 16 19 20 22 47 46 78 69 8 5 16 11 24 16L215 654z m271-9l159-159c0 5 1 9 1 14 0 81-65 146-146 146-5 0-9 0-14-1z m-131-131C354 510 354 505 354 500c0-81 65-146 146-146 5 0 10 0 14 1l-159 159z m-167 257L780 179c12-12 32-12 44 0 12 12 12 32 0 44L232 815c-12 12-32 12-44 0s-12-32 0-44z"></path></g>
42
+ <g id="lumo:indent"><path d="M125 219a31 31 0 0 1 31-32h688a31 31 0 0 1 0 63H156A31 31 0 0 1 125 219z m40 134a31 31 0 0 1 45 0l125 125a31 31 0 0 1 0 44l-125 125A31 31 0 0 1 165 603L268 500 165 397a31 31 0 0 1 0-44zM438 406a31 31 0 0 1 31-31h375a31 31 0 0 1 0 63h-375a31 31 0 0 1-32-32z m-1 188a31 31 0 0 1 32-32h375a31 31 0 0 1 0 63h-375a31 31 0 0 1-32-31zM125 781a31 31 0 0 1 31-31h688a31 31 0 0 1 0 63H156a31 31 0 0 1-31-32z m0 0"></path></g>
43
+ <g id="lumo:link"><path d="M667 250h-125v79h125c94 0 171 76 170 171a171 171 0 0 1-170 171h-125V750h125a250 250 0 0 0 250-250c0-138-112-250-250-250M163 500c0-95 77-171 170-171h125V250H333a250 250 0 0 0-250 250 250 250 0 0 0 250 250h125v-79H333c-94 0-171-77-171-171M333 542h334v-84H333v84Z"></path></g>
41
44
  <g id="lumo:menu"><path d="M167 292c0-23 19-42 41-42h584C815 250 833 268 833 292c0 23-19 42-41 41H208C185 333 167 315 167 292z m0 208c0-23 19-42 41-42h584C815 458 833 477 833 500c0 23-19 42-41 42H208C185 542 167 523 167 500z m0 208c0-23 19-42 41-41h584C815 667 833 685 833 708c0 23-19 42-41 42H208C185 750 167 732 167 708z"></path></g>
42
45
  <g id="lumo:minus"><path d="M261 461c-22 0-39 18-39 39 0 22 18 39 39 39h478c22 0 39-18 39-39 0-22-18-39-39-39H261z"></path></g>
43
46
  <g id="lumo:ordered-list"><path d="M138 333V198H136l-43 28v-38l45-31h45V333H138z m-61 128c0-35 27-59 68-59 39 0 66 21 66 53 0 20-11 37-43 64l-29 27v2h74V583H80v-30l55-52c26-24 32-33 33-43 0-13-10-22-24-22-15 0-26 10-26 25v1h-41v-1zM123 759v-31h21c15 0 25-8 25-21 0-13-10-21-25-21-15 0-26 9-26 23h-41c1-34 27-56 68-57 39 0 66 20 66 49 0 20-14 36-33 39v3c24 3 40 19 39 41 0 32-30 54-73 54-41 0-69-22-70-57h43c1 13 11 22 28 22 16 0 27-9 27-22 0-14-10-22-28-22h-21zM333 258c0-18 15-33 34-33h516c18 0 33 15 34 33 0 18-15 33-34 34H367c-18 0-33-15-34-34z m0 250c0-18 15-33 34-33h516c18 0 33 15 34 33s-15 33-34 34H367c-18 0-33-15-34-34z m0 250c0-18 15-33 34-33h516c18 0 33 15 34 33s-15 33-34 34H367c-18 0-33-15-34-34z"></path></g>
47
+ <g id="lumo:outdent"><path d="M125 219a31 31 0 0 1 31-32h688a31 31 0 0 1 0 63H156A31 31 0 0 1 125 219z m665 134A31 31 0 0 1 835 397L732 500l103 103a31 31 0 0 1-45 44l-125-125a31 31 0 0 1 0-44l125-125zM125 406A31 31 0 0 1 156 375h375a31 31 0 0 1 0 63h-375A31 31 0 0 1 125 406z m0 188a31 31 0 0 1 31-32h375a31 31 0 0 1 0 63h-375a31 31 0 0 1-31-31z m0 187a31 31 0 0 1 31-31h688a31 31 0 0 1 0 63H156a31 31 0 0 1-31-32z m0 0"></path></g>
44
48
  <g id="lumo:phone"><path d="M296 208l42-37c17-15 44-13 58 4a42 42 0 0 1 5 7L459 282c12 20 5 45-15 57l-7 4c-17 10-25 30-19 48l20 66a420 420 0 0 0 93 157l41 45c13 14 35 17 51 8l7-5c20-12 45-5 57 16L745 777c12 20 5 45-15 57a42 42 0 0 1-8 4l-52 17c-61 21-129 4-174-43l-50-52c-81-85-141-189-175-302l-24-78c-19-62 0-129 49-172z"></path></g>
45
49
  <g id="lumo:photo"><path d="M208 167h584c69 0 125 56 125 125v416c0 69-56 125-125 125H208c-69 0-125-56-125-125V292c0-69 56-125 125-125z m584 75H208c-28 0-50 22-50 50v416c0 28 22 50 50 50h584c28 0 50-22 50-50V292c0-28-22-50-50-50zM239 740l167-167c12-12 31-14 45-6l73 43 172-201c13-15 34-18 50-7l95 67v92l-111-78-169 199c-12 14-32 17-47 8l-76-43-111 111H229c2-7 5-13 10-18zM458 427C458 490 407 542 344 542S229 490 229 427c0-63 51-115 115-115S458 364 458 427z m-62 0C396 398 373 375 344 375S292 398 292 427c0 29 23 52 52 52s52-23 52-52z"></path></g>
46
50
  <g id="lumo:play"><path d="M689 528l-298 175c-13 8-34 8-48 0-6-4-10-9-10-14V311C333 300 348 292 367 292c9 0 17 2 24 5l298 175c26 15 26 40 0 56z"></path></g>