@vaadin/react-components 25.0.0-alpha7 → 25.0.0-beta1

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 (71) hide show
  1. package/ConfirmDialog.d.ts +1 -1
  2. package/ConfirmDialog.d.ts.map +1 -1
  3. package/ConfirmDialog.js.map +1 -1
  4. package/ContextMenu.js +1 -1
  5. package/ContextMenu.js.map +2 -2
  6. package/Dialog.d.ts +2 -2
  7. package/Dialog.d.ts.map +1 -1
  8. package/Dialog.js +1 -1
  9. package/Dialog.js.map +1 -1
  10. package/LoginOverlay.js +1 -1
  11. package/LoginOverlay.js.map +2 -2
  12. package/MultiSelectComboBox.js +1 -1
  13. package/MultiSelectComboBox.js.map +2 -2
  14. package/Popover.d.ts +8 -2
  15. package/Popover.d.ts.map +1 -1
  16. package/Popover.js +1 -1
  17. package/Popover.js.map +3 -3
  18. package/Select.js.map +2 -2
  19. package/TabSheet.d.ts +0 -23
  20. package/TabSheet.d.ts.map +1 -1
  21. package/TabSheet.js +1 -1
  22. package/TabSheet.js.map +3 -3
  23. package/Tooltip.js +1 -1
  24. package/Tooltip.js.map +2 -2
  25. package/css/lumo/Utility.module.css +16 -47
  26. package/css/lumo/utilities/Accessibility.module.css +17 -15
  27. package/css/lumo/utilities/Background.module.css +189 -150
  28. package/css/lumo/utilities/Border.module.css +173 -141
  29. package/css/lumo/utilities/Filter.module.css +35 -26
  30. package/css/lumo/utilities/FlexboxGrid.module.css +780 -2
  31. package/css/lumo/utilities/Layout.module.css +544 -413
  32. package/css/lumo/utilities/Shadows.module.css +27 -20
  33. package/css/lumo/utilities/Sizing.module.css +142 -115
  34. package/css/lumo/utilities/Spacing.module.css +682 -536
  35. package/css/lumo/utilities/Transition.module.css +46 -44
  36. package/css/lumo/utilities/Typography.module.css +366 -280
  37. package/generated/ContextMenu.d.ts +2 -0
  38. package/generated/ContextMenu.d.ts.map +1 -1
  39. package/generated/LoginOverlay.d.ts +2 -0
  40. package/generated/LoginOverlay.d.ts.map +1 -1
  41. package/generated/MultiSelectComboBox.d.ts +2 -2
  42. package/generated/MultiSelectComboBox.d.ts.map +1 -1
  43. package/generated/Tooltip.d.ts +8 -3
  44. package/generated/Tooltip.d.ts.map +1 -1
  45. package/package.json +69 -77
  46. package/renderers/useRenderer.js +1 -1
  47. package/renderers/useRenderer.js.map +2 -2
  48. package/utils/createComponent.js +1 -1
  49. package/utils/createComponent.js.map +2 -2
  50. package/utils/warnings.d.ts +2 -0
  51. package/utils/warnings.d.ts.map +1 -0
  52. package/utils/warnings.js +2 -0
  53. package/utils/warnings.js.map +7 -0
  54. package/css/Lumo.css +0 -15
  55. package/css/lumo/Badge.css +0 -165
  56. package/css/lumo/Color.css +0 -122
  57. package/css/lumo/ColorBase.css +0 -87
  58. package/css/lumo/Font.css +0 -22
  59. package/css/lumo/FontIcons.css +0 -59
  60. package/css/lumo/Globals.css +0 -85
  61. package/css/lumo/Sizing.css +0 -17
  62. package/css/lumo/Spacing.css +0 -25
  63. package/css/lumo/Style.css +0 -21
  64. package/css/lumo/Typography.css +0 -96
  65. package/css/lumo/UserColors.css +0 -22
  66. package/css/lumo/mixins/FieldButton.css +0 -29
  67. package/css/lumo/mixins/MenuOverlay.css +0 -64
  68. package/css/lumo/mixins/MenuOverlayCore.css +0 -32
  69. package/css/lumo/mixins/Overlay.css +0 -67
  70. package/css/lumo/mixins/RequiredField.css +0 -103
  71. package/css/lumo/utilities/FlexboxAndGrid.module.css +0 -613
@@ -1,338 +1,424 @@
1
- /* Generated file, do not edit */
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
+ }
2
10
 
11
+ .text-xs {
12
+ font-size: var(--lumo-font-size-xs);
13
+ }
3
14
 
4
- /* === Font size === */
5
- .text-2xs {
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 {
6
262
  font-size: var(--lumo-font-size-xxs);
7
263
  }
8
- .text-xs {
264
+
265
+ .sm\:text-xs {
9
266
  font-size: var(--lumo-font-size-xs);
10
267
  }
11
- .text-s {
268
+
269
+ .sm\:text-s {
12
270
  font-size: var(--lumo-font-size-s);
13
271
  }
14
- .text-m {
272
+
273
+ .sm\:text-m {
15
274
  font-size: var(--lumo-font-size-m);
16
275
  }
17
- .text-l {
276
+
277
+ .sm\:text-l {
18
278
  font-size: var(--lumo-font-size-l);
19
279
  }
20
- .text-xl {
280
+
281
+ .sm\:text-xl {
21
282
  font-size: var(--lumo-font-size-xl);
22
283
  }
23
- .text-2xl {
284
+
285
+ .sm\:text-2xl {
24
286
  font-size: var(--lumo-font-size-xxl);
25
287
  }
26
- .text-3xl {
27
- font-size: var(--lumo-font-size-xxxl);
28
- }
29
288
 
30
- /* === Font weight === */
31
- .font-thin {
32
- font-weight: 100;
33
- }
34
- .font-extralight {
35
- font-weight: 200;
36
- }
37
- .font-light {
38
- font-weight: 300;
39
- }
40
- .font-normal {
41
- font-weight: 400;
42
- }
43
- .font-medium {
44
- font-weight: 500;
45
- }
46
- .font-semibold {
47
- font-weight: 600;
48
- }
49
- .font-bold {
50
- font-weight: 700;
51
- }
52
- .font-extrabold {
53
- font-weight: 800;
289
+ .sm\:text-3xl {
290
+ font-size: var(--lumo-font-size-xxxl);
54
291
  }
55
- .font-black {
56
- font-weight: 900;
292
+ }
293
+ @media (min-width: 768px) {
294
+ .md\:text-2xs {
295
+ font-size: var(--lumo-font-size-xxs);
57
296
  }
58
297
 
59
- /* === Line clamp === */
60
- [class*='line-clamp-'] {
61
- display: -webkit-box;
62
- overflow: hidden;
63
- -webkit-box-orient: vertical;
64
- }
65
- .line-clamp-1 {
66
- -webkit-line-clamp: 1;
67
- }
68
- .line-clamp-2 {
69
- -webkit-line-clamp: 2;
70
- }
71
- .line-clamp-3 {
72
- -webkit-line-clamp: 3;
298
+ .md\:text-xs {
299
+ font-size: var(--lumo-font-size-xs);
73
300
  }
74
- .line-clamp-4 {
75
- -webkit-line-clamp: 4;
301
+
302
+ .md\:text-s {
303
+ font-size: var(--lumo-font-size-s);
76
304
  }
77
- .line-clamp-5 {
78
- -webkit-line-clamp: 5;
305
+
306
+ .md\:text-m {
307
+ font-size: var(--lumo-font-size-m);
79
308
  }
80
- .line-clamp-6 {
81
- -webkit-line-clamp: 6;
309
+
310
+ .md\:text-l {
311
+ font-size: var(--lumo-font-size-l);
82
312
  }
83
313
 
84
- /* === Line height === */
85
- .leading-none {
86
- line-height: 1;
314
+ .md\:text-xl {
315
+ font-size: var(--lumo-font-size-xl);
87
316
  }
88
- .leading-xs {
89
- line-height: var(--lumo-line-height-xs);
317
+
318
+ .md\:text-2xl {
319
+ font-size: var(--lumo-font-size-xxl);
90
320
  }
91
- .leading-s {
92
- line-height: var(--lumo-line-height-s);
321
+
322
+ .md\:text-3xl {
323
+ font-size: var(--lumo-font-size-xxxl);
93
324
  }
94
- .leading-m {
95
- line-height: var(--lumo-line-height-m);
325
+ }
326
+ @media (min-width: 1024px) {
327
+ .lg\:text-2xs {
328
+ font-size: var(--lumo-font-size-xxs);
96
329
  }
97
330
 
98
- /* === List style type === */
99
- .list-none {
100
- list-style-type: none;
331
+ .lg\:text-xs {
332
+ font-size: var(--lumo-font-size-xs);
101
333
  }
102
334
 
103
- /* === Text alignment === */
104
- .text-left {
105
- text-align: left;
106
- }
107
- .text-center {
108
- text-align: center;
335
+ .lg\:text-s {
336
+ font-size: var(--lumo-font-size-s);
109
337
  }
110
- .text-right {
111
- text-align: right;
338
+
339
+ .lg\:text-m {
340
+ font-size: var(--lumo-font-size-m);
112
341
  }
113
- .text-justify {
114
- text-align: justify;
342
+
343
+ .lg\:text-l {
344
+ font-size: var(--lumo-font-size-l);
115
345
  }
116
346
 
117
- /* === Text color === */
118
- .text-header {
119
- color: var(--lumo-header-text-color);
347
+ .lg\:text-xl {
348
+ font-size: var(--lumo-font-size-xl);
120
349
  }
121
- .text-body {
122
- color: var(--lumo-body-text-color);
350
+
351
+ .lg\:text-2xl {
352
+ font-size: var(--lumo-font-size-xxl);
123
353
  }
124
- .text-secondary {
125
- color: var(--lumo-secondary-text-color);
354
+
355
+ .lg\:text-3xl {
356
+ font-size: var(--lumo-font-size-xxxl);
126
357
  }
127
- .text-tertiary {
128
- color: var(--lumo-tertiary-text-color);
358
+ }
359
+ @media (min-width: 1280px) {
360
+ .xl\:text-2xs {
361
+ font-size: var(--lumo-font-size-xxs);
129
362
  }
130
- .text-disabled {
131
- color: var(--lumo-disabled-text-color);
363
+
364
+ .xl\:text-xs {
365
+ font-size: var(--lumo-font-size-xs);
132
366
  }
133
- .text-primary {
134
- color: var(--lumo-primary-text-color);
367
+
368
+ .xl\:text-s {
369
+ font-size: var(--lumo-font-size-s);
135
370
  }
136
- .text-primary-contrast {
137
- color: var(--lumo-primary-contrast-color);
371
+
372
+ .xl\:text-m {
373
+ font-size: var(--lumo-font-size-m);
138
374
  }
139
- .text-error {
140
- color: var(--lumo-error-text-color);
375
+
376
+ .xl\:text-l {
377
+ font-size: var(--lumo-font-size-l);
141
378
  }
142
- .text-error-contrast {
143
- color: var(--lumo-error-contrast-color);
379
+
380
+ .xl\:text-xl {
381
+ font-size: var(--lumo-font-size-xl);
144
382
  }
145
- .text-success {
146
- color: var(--lumo-success-text-color);
383
+
384
+ .xl\:text-2xl {
385
+ font-size: var(--lumo-font-size-xxl);
147
386
  }
148
- .text-success-contrast {
149
- color: var(--lumo-success-contrast-color);
387
+
388
+ .xl\:text-3xl {
389
+ font-size: var(--lumo-font-size-xxxl);
150
390
  }
151
- .text-warning {
152
- color: var(--lumo-warning-text-color);
391
+ }
392
+ @media (min-width: 1536px) {
393
+ .\32xl\:text-2xs {
394
+ font-size: var(--lumo-font-size-xxs);
153
395
  }
154
- .text-warning-contrast {
155
- color: var(--lumo-warning-contrast-color);
396
+
397
+ .\32xl\:text-xs {
398
+ font-size: var(--lumo-font-size-xs);
156
399
  }
157
400
 
158
- /* == Text decoration === */
159
- .line-through {
160
- text-decoration-line: line-through;
401
+ .\32xl\:text-s {
402
+ font-size: var(--lumo-font-size-s);
161
403
  }
162
- .no-underline {
163
- text-decoration-line: none;
404
+
405
+ .\32xl\:text-m {
406
+ font-size: var(--lumo-font-size-m);
164
407
  }
165
- .underline {
166
- text-decoration-line: underline;
408
+
409
+ .\32xl\:text-l {
410
+ font-size: var(--lumo-font-size-l);
167
411
  }
168
412
 
169
- /* === Text overflow === */
170
- .overflow-clip {
171
- text-overflow: clip;
413
+ .\32xl\:text-xl {
414
+ font-size: var(--lumo-font-size-xl);
172
415
  }
173
- .overflow-ellipsis {
174
- text-overflow: ellipsis;
416
+
417
+ .\32xl\:text-2xl {
418
+ font-size: var(--lumo-font-size-xxl);
175
419
  }
176
420
 
177
- /* === Text transform === */
178
- .capitalize {
179
- text-transform: capitalize;
180
- }
181
- .lowercase {
182
- text-transform: lowercase;
183
- }
184
- .uppercase {
185
- text-transform: uppercase;
186
- }
187
-
188
- /* === Whitespace === */
189
- .whitespace-normal {
190
- white-space: normal;
191
- }
192
- .whitespace-break-spaces {
193
- white-space: normal;
194
- }
195
- .whitespace-nowrap {
196
- white-space: nowrap;
197
- }
198
- .whitespace-pre {
199
- white-space: pre;
200
- }
201
- .whitespace-pre-line {
202
- white-space: pre-line;
203
- }
204
- .whitespace-pre-wrap {
205
- white-space: pre-wrap;
206
- }
207
-
208
- /* === Responsive design === */
209
- @media (min-width: 640px) {
210
- .sm\\:text-2xs {
211
- font-size: var(--lumo-font-size-xxs);
212
- }
213
- .sm\\:text-xs {
214
- font-size: var(--lumo-font-size-xs);
215
- }
216
- .sm\\:text-s {
217
- font-size: var(--lumo-font-size-s);
218
- }
219
- .sm\\:text-m {
220
- font-size: var(--lumo-font-size-m);
221
- }
222
- .sm\\:text-l {
223
- font-size: var(--lumo-font-size-l);
224
- }
225
- .sm\\:text-xl {
226
- font-size: var(--lumo-font-size-xl);
227
- }
228
- .sm\\:text-2xl {
229
- font-size: var(--lumo-font-size-xxl);
230
- }
231
- .sm\\:text-3xl {
232
- font-size: var(--lumo-font-size-xxxl);
233
- }
234
- }
235
- @media (min-width: 768px) {
236
- .md\\:text-2xs {
237
- font-size: var(--lumo-font-size-xxs);
238
- }
239
- .md\\:text-xs {
240
- font-size: var(--lumo-font-size-xs);
241
- }
242
- .md\\:text-s {
243
- font-size: var(--lumo-font-size-s);
244
- }
245
- .md\\:text-m {
246
- font-size: var(--lumo-font-size-m);
247
- }
248
- .md\\:text-l {
249
- font-size: var(--lumo-font-size-l);
250
- }
251
- .md\\:text-xl {
252
- font-size: var(--lumo-font-size-xl);
253
- }
254
- .md\\:text-2xl {
255
- font-size: var(--lumo-font-size-xxl);
256
- }
257
- .md\\:text-3xl {
258
- font-size: var(--lumo-font-size-xxxl);
259
- }
260
- }
261
- @media (min-width: 1024px) {
262
- .lg\\:text-2xs {
263
- font-size: var(--lumo-font-size-xxs);
264
- }
265
- .lg\\:text-xs {
266
- font-size: var(--lumo-font-size-xs);
267
- }
268
- .lg\\:text-s {
269
- font-size: var(--lumo-font-size-s);
270
- }
271
- .lg\\:text-m {
272
- font-size: var(--lumo-font-size-m);
273
- }
274
- .lg\\:text-l {
275
- font-size: var(--lumo-font-size-l);
276
- }
277
- .lg\\:text-xl {
278
- font-size: var(--lumo-font-size-xl);
279
- }
280
- .lg\\:text-2xl {
281
- font-size: var(--lumo-font-size-xxl);
282
- }
283
- .lg\\:text-3xl {
284
- font-size: var(--lumo-font-size-xxxl);
285
- }
286
- }
287
- @media (min-width: 1280px) {
288
- .xl\\:text-2xs {
289
- font-size: var(--lumo-font-size-xxs);
290
- }
291
- .xl\\:text-xs {
292
- font-size: var(--lumo-font-size-xs);
293
- }
294
- .xl\\:text-s {
295
- font-size: var(--lumo-font-size-s);
296
- }
297
- .xl\\:text-m {
298
- font-size: var(--lumo-font-size-m);
299
- }
300
- .xl\\:text-l {
301
- font-size: var(--lumo-font-size-l);
302
- }
303
- .xl\\:text-xl {
304
- font-size: var(--lumo-font-size-xl);
305
- }
306
- .xl\\:text-2xl {
307
- font-size: var(--lumo-font-size-xxl);
308
- }
309
- .xl\\:text-3xl {
310
- font-size: var(--lumo-font-size-xxxl);
311
- }
312
- }
313
- @media (min-width: 1536px) {
314
- .\\32xl\\:text-2xs {
315
- font-size: var(--lumo-font-size-xxs);
316
- }
317
- .\\32xl\\:text-xs {
318
- font-size: var(--lumo-font-size-xs);
319
- }
320
- .\\32xl\\:text-s {
321
- font-size: var(--lumo-font-size-s);
322
- }
323
- .\\32xl\\:text-m {
324
- font-size: var(--lumo-font-size-m);
325
- }
326
- .\\32xl\\:text-l {
327
- font-size: var(--lumo-font-size-l);
328
- }
329
- .\\32xl\\:text-xl {
330
- font-size: var(--lumo-font-size-xl);
331
- }
332
- .\\32xl\\:text-2xl {
333
- font-size: var(--lumo-font-size-xxl);
334
- }
335
- .\\32xl\\:text-3xl {
336
- font-size: var(--lumo-font-size-xxxl);
337
- }
421
+ .\32xl\:text-3xl {
422
+ font-size: var(--lumo-font-size-xxxl);
338
423
  }
424
+ }
@@ -5,11 +5,13 @@ import { type WebComponentProps } from "../utils/createComponent.js";
5
5
  export * from "@vaadin/context-menu/vaadin-context-menu.js";
6
6
  export { ContextMenuElement, };
7
7
  export type ContextMenuEventMap = Readonly<{
8
+ onClosed: EventName<_ContextMenuEventMap["closed"]>;
8
9
  onItemSelected: EventName<_ContextMenuEventMap["item-selected"]>;
9
10
  onOpenedChanged: EventName<_ContextMenuEventMap["opened-changed"]>;
10
11
  }>;
11
12
  export type ContextMenuProps = WebComponentProps<ContextMenuElement, ContextMenuEventMap>;
12
13
  export declare const ContextMenu: (props: Partial<import("../utils/createComponent.js").ThemedWebComponentProps<ContextMenuElement<import("@vaadin/context-menu/vaadin-context-menu.js").ContextMenuItem>, Readonly<{
14
+ onClosed: EventName<_ContextMenuEventMap["closed"]>;
13
15
  onItemSelected: EventName<_ContextMenuEventMap["item-selected"]>;
14
16
  onOpenedChanged: EventName<_ContextMenuEventMap["opened-changed"]>;
15
17
  }>>> & React.RefAttributes<ContextMenuElement<import("@vaadin/context-menu/vaadin-context-menu.js").ContextMenuItem>>) => React.ReactElement | null;
@@ -1 +1 @@
1
- {"version":3,"file":"ContextMenu.d.ts","sourceRoot":"","sources":["../src/generated/ContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,WAAW,IAAI,kBAAkB,EAAE,KAAK,mBAAmB,IAAI,oBAAoB,EAAG,MAAM,6CAA6C,CAAC;AACnJ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAmB,KAAK,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACtF,cAAc,6CAA6C,CAAC;AAC5D,OAAO,EAAE,kBAAkB,GAAG,CAAC;AAC/B,MAAM,MAAM,mBAAmB,GAAG,QAAQ,CAAC;IACvC,cAAc,EAAE,SAAS,CAAC,oBAAoB,CAAC,eAAe,CAAC,CAAC,CAAC;IACjE,eAAe,EAAE,SAAS,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,CAAC,CAAC;CACtE,CAAC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,iBAAiB,CAAC,kBAAkB,EAAE,mBAAmB,CAAC,CAAC;AAC1F,eAAO,MAAM,WAAW;oBALJ,SAAS,CAAC,oBAAoB,CAAC,eAAe,CAAC,CAAC;qBAC/C,SAAS,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,CAAC;mJAMpE,CAAC"}
1
+ {"version":3,"file":"ContextMenu.d.ts","sourceRoot":"","sources":["../src/generated/ContextMenu.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,YAAY,CAAC;AAC5C,OAAO,EAAE,WAAW,IAAI,kBAAkB,EAAE,KAAK,mBAAmB,IAAI,oBAAoB,EAAG,MAAM,6CAA6C,CAAC;AACnJ,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,EAAmB,KAAK,iBAAiB,EAAE,MAAM,6BAA6B,CAAC;AACtF,cAAc,6CAA6C,CAAC;AAC5D,OAAO,EAAE,kBAAkB,GAAG,CAAC;AAC/B,MAAM,MAAM,mBAAmB,GAAG,QAAQ,CAAC;IACvC,QAAQ,EAAE,SAAS,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC,CAAC;IACpD,cAAc,EAAE,SAAS,CAAC,oBAAoB,CAAC,eAAe,CAAC,CAAC,CAAC;IACjE,eAAe,EAAE,SAAS,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,CAAC,CAAC;CACtE,CAAC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,iBAAiB,CAAC,kBAAkB,EAAE,mBAAmB,CAAC,CAAC;AAC1F,eAAO,MAAM,WAAW;cANV,SAAS,CAAC,oBAAoB,CAAC,QAAQ,CAAC,CAAC;oBACnC,SAAS,CAAC,oBAAoB,CAAC,eAAe,CAAC,CAAC;qBAC/C,SAAS,CAAC,oBAAoB,CAAC,gBAAgB,CAAC,CAAC;mJAMpE,CAAC"}