@everymatrix/general-registration 1.21.13 → 1.21.15

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.
@@ -1,884 +1,9 @@
1
- import { proxyCustomElement, HTMLElement as HTMLElement$1, createEvent, h } from '@stencil/core/internal/client';
1
+ import { proxyCustomElement, HTMLElement, createEvent, h } from '@stencil/core/internal/client';
2
2
  import { t as translate, a as tooltipIconSvg } from './tooltipIcon.js';
3
- import { c as InputControlMixin, d as inputFieldShared$1, i as inputFieldShared$2 } from './input-field-shared-styles.js';
4
- import { f as defineCustomElement$1, J as addGlobalThemeStyles, i, r as registerStyles, c as InputController, e as LabelledInputController, h as html, T as TooltipController, g as ThemableMixin, E as ElementMixin, P as PolymerElement, G as SlotController } from './field-mixin.js';
3
+ import { i as inputFieldShared, c as InputControlMixin, d as inputFieldShared$1 } from './input-field-shared-styles.js';
4
+ import { r as registerStyles, c as InputController, e as LabelledInputController, h as html, T as TooltipController, f as defineCustomElement$1, g as ThemableMixin, E as ElementMixin, P as PolymerElement, i, G as SlotController } from './field-mixin.js';
5
5
  import { b as button, B as Button } from './vaadin-button.js';
6
6
 
7
- /**
8
- * @license
9
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
10
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
11
- */
12
-
13
- /**
14
- * Dummy custom element used for collecting
15
- * development time usage statistics.
16
- *
17
- * @private
18
- */
19
- class Lumo extends HTMLElement {
20
- static get is() {
21
- return 'vaadin-lumo-styles';
22
- }
23
-
24
- static get version() {
25
- return '24.2.5';
26
- }
27
- }
28
-
29
- defineCustomElement$1(Lumo);
30
-
31
- const addLumoGlobalStyles = (id, ...styles) => {
32
- addGlobalThemeStyles(`lumo-${id}`, styles);
33
- };
34
-
35
- /**
36
- * @license
37
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
38
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
39
- */
40
-
41
- const colorBase = i`
42
- :host {
43
- /* Base (background) */
44
- --lumo-base-color: #fff;
45
-
46
- /* Tint */
47
- --lumo-tint-5pct: hsla(0, 0%, 100%, 0.3);
48
- --lumo-tint-10pct: hsla(0, 0%, 100%, 0.37);
49
- --lumo-tint-20pct: hsla(0, 0%, 100%, 0.44);
50
- --lumo-tint-30pct: hsla(0, 0%, 100%, 0.5);
51
- --lumo-tint-40pct: hsla(0, 0%, 100%, 0.57);
52
- --lumo-tint-50pct: hsla(0, 0%, 100%, 0.64);
53
- --lumo-tint-60pct: hsla(0, 0%, 100%, 0.7);
54
- --lumo-tint-70pct: hsla(0, 0%, 100%, 0.77);
55
- --lumo-tint-80pct: hsla(0, 0%, 100%, 0.84);
56
- --lumo-tint-90pct: hsla(0, 0%, 100%, 0.9);
57
- --lumo-tint: #fff;
58
-
59
- /* Shade */
60
- --lumo-shade-5pct: hsla(214, 61%, 25%, 0.05);
61
- --lumo-shade-10pct: hsla(214, 57%, 24%, 0.1);
62
- --lumo-shade-20pct: hsla(214, 53%, 23%, 0.16);
63
- --lumo-shade-30pct: hsla(214, 50%, 22%, 0.26);
64
- --lumo-shade-40pct: hsla(214, 47%, 21%, 0.38);
65
- --lumo-shade-50pct: hsla(214, 45%, 20%, 0.52);
66
- --lumo-shade-60pct: hsla(214, 43%, 19%, 0.6);
67
- --lumo-shade-70pct: hsla(214, 42%, 18%, 0.69);
68
- --lumo-shade-80pct: hsla(214, 41%, 17%, 0.83);
69
- --lumo-shade-90pct: hsla(214, 40%, 16%, 0.94);
70
- --lumo-shade: hsl(214, 35%, 15%);
71
-
72
- /* Contrast */
73
- --lumo-contrast-5pct: var(--lumo-shade-5pct);
74
- --lumo-contrast-10pct: var(--lumo-shade-10pct);
75
- --lumo-contrast-20pct: var(--lumo-shade-20pct);
76
- --lumo-contrast-30pct: var(--lumo-shade-30pct);
77
- --lumo-contrast-40pct: var(--lumo-shade-40pct);
78
- --lumo-contrast-50pct: var(--lumo-shade-50pct);
79
- --lumo-contrast-60pct: var(--lumo-shade-60pct);
80
- --lumo-contrast-70pct: var(--lumo-shade-70pct);
81
- --lumo-contrast-80pct: var(--lumo-shade-80pct);
82
- --lumo-contrast-90pct: var(--lumo-shade-90pct);
83
- --lumo-contrast: var(--lumo-shade);
84
-
85
- /* Text */
86
- --lumo-header-text-color: var(--lumo-contrast);
87
- --lumo-body-text-color: var(--lumo-contrast-90pct);
88
- --lumo-secondary-text-color: var(--lumo-contrast-70pct);
89
- --lumo-tertiary-text-color: var(--lumo-contrast-50pct);
90
- --lumo-disabled-text-color: var(--lumo-contrast-30pct);
91
-
92
- /* Primary */
93
- --lumo-primary-color: hsl(214, 100%, 48%);
94
- --lumo-primary-color-50pct: hsla(214, 100%, 49%, 0.76);
95
- --lumo-primary-color-10pct: hsla(214, 100%, 60%, 0.13);
96
- --lumo-primary-text-color: hsl(214, 100%, 43%);
97
- --lumo-primary-contrast-color: #fff;
98
-
99
- /* Error */
100
- --lumo-error-color: hsl(3, 85%, 48%);
101
- --lumo-error-color-50pct: hsla(3, 85%, 49%, 0.5);
102
- --lumo-error-color-10pct: hsla(3, 85%, 49%, 0.1);
103
- --lumo-error-text-color: hsl(3, 89%, 42%);
104
- --lumo-error-contrast-color: #fff;
105
-
106
- /* Success */
107
- --lumo-success-color: hsl(145, 72%, 30%);
108
- --lumo-success-color-50pct: hsla(145, 72%, 31%, 0.5);
109
- --lumo-success-color-10pct: hsla(145, 72%, 31%, 0.1);
110
- --lumo-success-text-color: hsl(145, 85%, 25%);
111
- --lumo-success-contrast-color: #fff;
112
-
113
- /* Warning */
114
- --lumo-warning-color: hsl(48, 100%, 50%);
115
- --lumo-warning-color-10pct: hsla(48, 100%, 50%, 0.25);
116
- --lumo-warning-text-color: hsl(32, 100%, 30%);
117
- --lumo-warning-contrast-color: var(--lumo-shade-90pct);
118
- }
119
-
120
- /* forced-colors mode adjustments */
121
- @media (forced-colors: active) {
122
- html {
123
- --lumo-disabled-text-color: GrayText;
124
- }
125
- }
126
- `;
127
-
128
- addLumoGlobalStyles('color-props', colorBase);
129
-
130
- const color = i`
131
- [theme~='dark'] {
132
- /* Base (background) */
133
- --lumo-base-color: hsl(214, 35%, 21%);
134
-
135
- /* Tint */
136
- --lumo-tint-5pct: hsla(214, 65%, 85%, 0.06);
137
- --lumo-tint-10pct: hsla(214, 60%, 80%, 0.14);
138
- --lumo-tint-20pct: hsla(214, 64%, 82%, 0.23);
139
- --lumo-tint-30pct: hsla(214, 69%, 84%, 0.32);
140
- --lumo-tint-40pct: hsla(214, 73%, 86%, 0.41);
141
- --lumo-tint-50pct: hsla(214, 78%, 88%, 0.5);
142
- --lumo-tint-60pct: hsla(214, 82%, 90%, 0.58);
143
- --lumo-tint-70pct: hsla(214, 87%, 92%, 0.69);
144
- --lumo-tint-80pct: hsla(214, 91%, 94%, 0.8);
145
- --lumo-tint-90pct: hsla(214, 96%, 96%, 0.9);
146
- --lumo-tint: hsl(214, 100%, 98%);
147
-
148
- /* Shade */
149
- --lumo-shade-5pct: hsla(214, 0%, 0%, 0.07);
150
- --lumo-shade-10pct: hsla(214, 4%, 2%, 0.15);
151
- --lumo-shade-20pct: hsla(214, 8%, 4%, 0.23);
152
- --lumo-shade-30pct: hsla(214, 12%, 6%, 0.32);
153
- --lumo-shade-40pct: hsla(214, 16%, 8%, 0.41);
154
- --lumo-shade-50pct: hsla(214, 20%, 10%, 0.5);
155
- --lumo-shade-60pct: hsla(214, 24%, 12%, 0.6);
156
- --lumo-shade-70pct: hsla(214, 28%, 13%, 0.7);
157
- --lumo-shade-80pct: hsla(214, 32%, 13%, 0.8);
158
- --lumo-shade-90pct: hsla(214, 33%, 13%, 0.9);
159
- --lumo-shade: hsl(214, 33%, 13%);
160
-
161
- /* Contrast */
162
- --lumo-contrast-5pct: var(--lumo-tint-5pct);
163
- --lumo-contrast-10pct: var(--lumo-tint-10pct);
164
- --lumo-contrast-20pct: var(--lumo-tint-20pct);
165
- --lumo-contrast-30pct: var(--lumo-tint-30pct);
166
- --lumo-contrast-40pct: var(--lumo-tint-40pct);
167
- --lumo-contrast-50pct: var(--lumo-tint-50pct);
168
- --lumo-contrast-60pct: var(--lumo-tint-60pct);
169
- --lumo-contrast-70pct: var(--lumo-tint-70pct);
170
- --lumo-contrast-80pct: var(--lumo-tint-80pct);
171
- --lumo-contrast-90pct: var(--lumo-tint-90pct);
172
- --lumo-contrast: var(--lumo-tint);
173
-
174
- /* Text */
175
- --lumo-header-text-color: var(--lumo-contrast);
176
- --lumo-body-text-color: var(--lumo-contrast-90pct);
177
- --lumo-secondary-text-color: var(--lumo-contrast-70pct);
178
- --lumo-tertiary-text-color: var(--lumo-contrast-50pct);
179
- --lumo-disabled-text-color: var(--lumo-contrast-30pct);
180
-
181
- /* Primary */
182
- --lumo-primary-color: hsl(214, 90%, 48%);
183
- --lumo-primary-color-50pct: hsla(214, 90%, 70%, 0.69);
184
- --lumo-primary-color-10pct: hsla(214, 90%, 55%, 0.13);
185
- --lumo-primary-text-color: hsl(214, 90%, 77%);
186
- --lumo-primary-contrast-color: #fff;
187
-
188
- /* Error */
189
- --lumo-error-color: hsl(3, 79%, 49%);
190
- --lumo-error-color-50pct: hsla(3, 75%, 62%, 0.5);
191
- --lumo-error-color-10pct: hsla(3, 75%, 62%, 0.14);
192
- --lumo-error-text-color: hsl(3, 100%, 80%);
193
-
194
- /* Success */
195
- --lumo-success-color: hsl(145, 72%, 30%);
196
- --lumo-success-color-50pct: hsla(145, 92%, 51%, 0.5);
197
- --lumo-success-color-10pct: hsla(145, 92%, 51%, 0.1);
198
- --lumo-success-text-color: hsl(145, 85%, 46%);
199
-
200
- /* Warning */
201
- --lumo-warning-color: hsl(43, 100%, 48%);
202
- --lumo-warning-color-10pct: hsla(40, 100%, 50%, 0.2);
203
- --lumo-warning-text-color: hsl(45, 100%, 60%);
204
- --lumo-warning-contrast-color: var(--lumo-shade-90pct);
205
- }
206
-
207
- html {
208
- color: var(--lumo-body-text-color);
209
- background-color: var(--lumo-base-color);
210
- color-scheme: light;
211
- }
212
-
213
- [theme~='dark'] {
214
- color: var(--lumo-body-text-color);
215
- background-color: var(--lumo-base-color);
216
- color-scheme: dark;
217
- }
218
-
219
- h1,
220
- h2,
221
- h3,
222
- h4,
223
- h5,
224
- h6 {
225
- color: var(--lumo-header-text-color);
226
- }
227
-
228
- a:where(:any-link) {
229
- color: var(--lumo-primary-text-color);
230
- }
231
-
232
- a:not(:any-link) {
233
- color: var(--lumo-disabled-text-color);
234
- }
235
-
236
- blockquote {
237
- color: var(--lumo-secondary-text-color);
238
- }
239
-
240
- code,
241
- pre {
242
- background-color: var(--lumo-contrast-10pct);
243
- border-radius: var(--lumo-border-radius-m);
244
- }
245
- `;
246
-
247
- registerStyles('', color, { moduleId: 'lumo-color' });
248
-
249
- /**
250
- * @license
251
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
252
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
253
- */
254
-
255
- const fontIcons = i`
256
- @font-face {
257
- font-family: 'lumo-icons';
258
- src: url(data:application/font-woff;charset=utf-8;base64,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)
259
- format('woff');
260
- font-weight: normal;
261
- font-style: normal;
262
- }
263
-
264
- html {
265
- --lumo-icons-align-center: '\\ea01';
266
- --lumo-icons-align-left: '\\ea02';
267
- --lumo-icons-align-right: '\\ea03';
268
- --lumo-icons-angle-down: '\\ea04';
269
- --lumo-icons-angle-left: '\\ea05';
270
- --lumo-icons-angle-right: '\\ea06';
271
- --lumo-icons-angle-up: '\\ea07';
272
- --lumo-icons-arrow-down: '\\ea08';
273
- --lumo-icons-arrow-left: '\\ea09';
274
- --lumo-icons-arrow-right: '\\ea0a';
275
- --lumo-icons-arrow-up: '\\ea0b';
276
- --lumo-icons-bar-chart: '\\ea0c';
277
- --lumo-icons-bell: '\\ea0d';
278
- --lumo-icons-calendar: '\\ea0e';
279
- --lumo-icons-checkmark: '\\ea0f';
280
- --lumo-icons-chevron-down: '\\ea10';
281
- --lumo-icons-chevron-left: '\\ea11';
282
- --lumo-icons-chevron-right: '\\ea12';
283
- --lumo-icons-chevron-up: '\\ea13';
284
- --lumo-icons-clock: '\\ea14';
285
- --lumo-icons-cog: '\\ea15';
286
- --lumo-icons-cross: '\\ea16';
287
- --lumo-icons-download: '\\ea17';
288
- --lumo-icons-dropdown: '\\ea18';
289
- --lumo-icons-edit: '\\ea19';
290
- --lumo-icons-error: '\\ea1a';
291
- --lumo-icons-eye: '\\ea1b';
292
- --lumo-icons-eye-disabled: '\\ea1c';
293
- --lumo-icons-menu: '\\ea1d';
294
- --lumo-icons-minus: '\\ea1e';
295
- --lumo-icons-ordered-list: '\\ea1f';
296
- --lumo-icons-phone: '\\ea20';
297
- --lumo-icons-photo: '\\ea21';
298
- --lumo-icons-play: '\\ea22';
299
- --lumo-icons-plus: '\\ea23';
300
- --lumo-icons-redo: '\\ea24';
301
- --lumo-icons-reload: '\\ea25';
302
- --lumo-icons-search: '\\ea26';
303
- --lumo-icons-undo: '\\ea27';
304
- --lumo-icons-unordered-list: '\\ea28';
305
- --lumo-icons-upload: '\\ea29';
306
- --lumo-icons-user: '\\ea2a';
307
- }
308
- `;
309
-
310
- addLumoGlobalStyles('font-icons', fontIcons);
311
-
312
- /**
313
- * @license
314
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
315
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
316
- */
317
-
318
- const sizing = i`
319
- :host {
320
- --lumo-size-xs: 1.625rem;
321
- --lumo-size-s: 1.875rem;
322
- --lumo-size-m: 2.25rem;
323
- --lumo-size-l: 2.75rem;
324
- --lumo-size-xl: 3.5rem;
325
-
326
- /* Icons */
327
- --lumo-icon-size-s: 1.25em;
328
- --lumo-icon-size-m: 1.5em;
329
- --lumo-icon-size-l: 2.25em;
330
- /* For backwards compatibility */
331
- --lumo-icon-size: var(--lumo-icon-size-m);
332
- }
333
- `;
334
-
335
- addLumoGlobalStyles('sizing-props', sizing);
336
-
337
- /**
338
- * @license
339
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
340
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
341
- */
342
-
343
- const spacing = i`
344
- :host {
345
- /* Square */
346
- --lumo-space-xs: 0.25rem;
347
- --lumo-space-s: 0.5rem;
348
- --lumo-space-m: 1rem;
349
- --lumo-space-l: 1.5rem;
350
- --lumo-space-xl: 2.5rem;
351
-
352
- /* Wide */
353
- --lumo-space-wide-xs: calc(var(--lumo-space-xs) / 2) var(--lumo-space-xs);
354
- --lumo-space-wide-s: calc(var(--lumo-space-s) / 2) var(--lumo-space-s);
355
- --lumo-space-wide-m: calc(var(--lumo-space-m) / 2) var(--lumo-space-m);
356
- --lumo-space-wide-l: calc(var(--lumo-space-l) / 2) var(--lumo-space-l);
357
- --lumo-space-wide-xl: calc(var(--lumo-space-xl) / 2) var(--lumo-space-xl);
358
-
359
- /* Tall */
360
- --lumo-space-tall-xs: var(--lumo-space-xs) calc(var(--lumo-space-xs) / 2);
361
- --lumo-space-tall-s: var(--lumo-space-s) calc(var(--lumo-space-s) / 2);
362
- --lumo-space-tall-m: var(--lumo-space-m) calc(var(--lumo-space-m) / 2);
363
- --lumo-space-tall-l: var(--lumo-space-l) calc(var(--lumo-space-l) / 2);
364
- --lumo-space-tall-xl: var(--lumo-space-xl) calc(var(--lumo-space-xl) / 2);
365
- }
366
- `;
367
-
368
- addLumoGlobalStyles('spacing-props', spacing);
369
-
370
- /**
371
- * @license
372
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
373
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
374
- */
375
-
376
- const style = i`
377
- :host {
378
- /* Border radius */
379
- --lumo-border-radius-s: 0.25em; /* Checkbox, badge, date-picker year indicator, etc */
380
- --lumo-border-radius-m: var(--lumo-border-radius, 0.25em); /* Button, text field, menu overlay, etc */
381
- --lumo-border-radius-l: 0.5em; /* Dialog, notification, etc */
382
-
383
- /* Shadow */
384
- --lumo-box-shadow-xs: 0 1px 4px -1px var(--lumo-shade-50pct);
385
- --lumo-box-shadow-s: 0 2px 4px -1px var(--lumo-shade-20pct), 0 3px 12px -1px var(--lumo-shade-30pct);
386
- --lumo-box-shadow-m: 0 2px 6px -1px var(--lumo-shade-20pct), 0 8px 24px -4px var(--lumo-shade-40pct);
387
- --lumo-box-shadow-l: 0 3px 18px -2px var(--lumo-shade-20pct), 0 12px 48px -6px var(--lumo-shade-40pct);
388
- --lumo-box-shadow-xl: 0 4px 24px -3px var(--lumo-shade-20pct), 0 18px 64px -8px var(--lumo-shade-40pct);
389
-
390
- /* Clickable element cursor */
391
- --lumo-clickable-cursor: default;
392
- }
393
- `;
394
-
395
- /**
396
- * Default values for component-specific custom properties.
397
- */
398
- i`
399
- html {
400
- --vaadin-checkbox-size: calc(var(--lumo-size-m) / 2);
401
- --vaadin-radio-button-size: calc(var(--lumo-size-m) / 2);
402
- --vaadin-input-field-border-radius: var(--lumo-border-radius-m);
403
- }
404
- `;
405
-
406
- addLumoGlobalStyles('style-props', style);
407
-
408
- /**
409
- * @license
410
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
411
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
412
- */
413
-
414
- const font = i`
415
- :host {
416
- /* prettier-ignore */
417
- --lumo-font-family: -apple-system, BlinkMacSystemFont, 'Roboto', 'Segoe UI', Helvetica, Arial, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol';
418
-
419
- /* Font sizes */
420
- --lumo-font-size-xxs: 0.75rem;
421
- --lumo-font-size-xs: 0.8125rem;
422
- --lumo-font-size-s: 0.875rem;
423
- --lumo-font-size-m: 1rem;
424
- --lumo-font-size-l: 1.125rem;
425
- --lumo-font-size-xl: 1.375rem;
426
- --lumo-font-size-xxl: 1.75rem;
427
- --lumo-font-size-xxxl: 2.5rem;
428
-
429
- /* Line heights */
430
- --lumo-line-height-xs: 1.25;
431
- --lumo-line-height-s: 1.375;
432
- --lumo-line-height-m: 1.625;
433
- }
434
- `;
435
-
436
- const typography = i`
437
- body,
438
- :host {
439
- font-family: var(--lumo-font-family);
440
- font-size: var(--lumo-font-size-m);
441
- line-height: var(--lumo-line-height-m);
442
- -webkit-text-size-adjust: 100%;
443
- -webkit-font-smoothing: antialiased;
444
- -moz-osx-font-smoothing: grayscale;
445
- }
446
-
447
- small,
448
- [theme~='font-size-s'] {
449
- font-size: var(--lumo-font-size-s);
450
- line-height: var(--lumo-line-height-s);
451
- }
452
-
453
- [theme~='font-size-xs'] {
454
- font-size: var(--lumo-font-size-xs);
455
- line-height: var(--lumo-line-height-xs);
456
- }
457
-
458
- :where(h1, h2, h3, h4, h5, h6) {
459
- font-weight: 600;
460
- line-height: var(--lumo-line-height-xs);
461
- margin-block: 0;
462
- }
463
-
464
- :where(h1) {
465
- font-size: var(--lumo-font-size-xxxl);
466
- }
467
-
468
- :where(h2) {
469
- font-size: var(--lumo-font-size-xxl);
470
- }
471
-
472
- :where(h3) {
473
- font-size: var(--lumo-font-size-xl);
474
- }
475
-
476
- :where(h4) {
477
- font-size: var(--lumo-font-size-l);
478
- }
479
-
480
- :where(h5) {
481
- font-size: var(--lumo-font-size-m);
482
- }
483
-
484
- :where(h6) {
485
- font-size: var(--lumo-font-size-xs);
486
- text-transform: uppercase;
487
- letter-spacing: 0.03em;
488
- }
489
-
490
- p,
491
- blockquote {
492
- margin-top: 0.5em;
493
- margin-bottom: 0.75em;
494
- }
495
-
496
- a {
497
- text-decoration: none;
498
- }
499
-
500
- a:where(:any-link):hover {
501
- text-decoration: underline;
502
- }
503
-
504
- hr {
505
- display: block;
506
- align-self: stretch;
507
- height: 1px;
508
- border: 0;
509
- padding: 0;
510
- margin: var(--lumo-space-s) calc(var(--lumo-border-radius-m) / 2);
511
- background-color: var(--lumo-contrast-10pct);
512
- }
513
-
514
- blockquote {
515
- border-left: 2px solid var(--lumo-contrast-30pct);
516
- }
517
-
518
- b,
519
- strong {
520
- font-weight: 600;
521
- }
522
-
523
- /* RTL specific styles */
524
- blockquote[dir='rtl'] {
525
- border-left: none;
526
- border-right: 2px solid var(--lumo-contrast-30pct);
527
- }
528
- `;
529
-
530
- registerStyles('', typography, { moduleId: 'lumo-typography' });
531
- addLumoGlobalStyles('typography-props', font);
532
-
533
- /**
534
- * @license
535
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
536
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
537
- */
538
-
539
- const fieldButton = i`
540
- [part$='button'] {
541
- flex: none;
542
- width: 1em;
543
- height: 1em;
544
- line-height: 1;
545
- font-size: var(--lumo-icon-size-m);
546
- text-align: center;
547
- color: var(--lumo-contrast-60pct);
548
- transition: 0.2s color;
549
- cursor: var(--lumo-clickable-cursor);
550
- }
551
-
552
- [part$='button']:hover {
553
- color: var(--lumo-contrast-90pct);
554
- }
555
-
556
- :host([disabled]) [part$='button'],
557
- :host([readonly]) [part$='button'] {
558
- color: var(--lumo-contrast-20pct);
559
- cursor: default;
560
- }
561
-
562
- [part$='button']::before {
563
- font-family: 'lumo-icons';
564
- display: block;
565
- }
566
- `;
567
- registerStyles('', fieldButton, { moduleId: 'lumo-field-button' });
568
-
569
- /**
570
- * @license
571
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
572
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
573
- */
574
-
575
- const helper = i`
576
- :host([has-helper]) [part='helper-text']::before {
577
- content: '';
578
- display: block;
579
- height: 0.4em;
580
- }
581
-
582
- [part='helper-text'] {
583
- display: block;
584
- color: var(--lumo-secondary-text-color);
585
- font-size: var(--lumo-font-size-xs);
586
- line-height: var(--lumo-line-height-xs);
587
- margin-left: calc(var(--lumo-border-radius-m) / 4);
588
- transition: color 0.2s;
589
- }
590
-
591
- :host(:hover:not([readonly])) [part='helper-text'] {
592
- color: var(--lumo-body-text-color);
593
- }
594
-
595
- :host([disabled]) [part='helper-text'] {
596
- color: var(--lumo-disabled-text-color);
597
- -webkit-text-fill-color: var(--lumo-disabled-text-color);
598
- }
599
-
600
- :host([has-helper][theme~='helper-above-field']) [part='helper-text']::before {
601
- display: none;
602
- }
603
-
604
- :host([has-helper][theme~='helper-above-field']) [part='helper-text']::after {
605
- content: '';
606
- display: block;
607
- height: 0.4em;
608
- }
609
-
610
- :host([has-helper][theme~='helper-above-field']) [part='label'] {
611
- order: 0;
612
- padding-bottom: 0.4em;
613
- }
614
-
615
- :host([has-helper][theme~='helper-above-field']) [part='helper-text'] {
616
- order: 1;
617
- }
618
-
619
- :host([has-helper][theme~='helper-above-field']) [part='label'] + * {
620
- order: 2;
621
- }
622
-
623
- :host([has-helper][theme~='helper-above-field']) [part='error-message'] {
624
- order: 3;
625
- }
626
- `;
627
-
628
- /**
629
- * @license
630
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
631
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
632
- */
633
-
634
- const requiredField = i`
635
- [part='label'] {
636
- align-self: flex-start;
637
- color: var(--lumo-secondary-text-color);
638
- font-weight: 500;
639
- font-size: var(--lumo-font-size-s);
640
- margin-left: calc(var(--lumo-border-radius-m) / 4);
641
- transition: color 0.2s;
642
- line-height: 1;
643
- padding-right: 1em;
644
- padding-bottom: 0.5em;
645
- /* As a workaround for diacritics being cut off, add a top padding and a
646
- negative margin to compensate */
647
- padding-top: 0.25em;
648
- margin-top: -0.25em;
649
- overflow: hidden;
650
- white-space: nowrap;
651
- text-overflow: ellipsis;
652
- position: relative;
653
- max-width: 100%;
654
- box-sizing: border-box;
655
- }
656
-
657
- :host([has-label])::before {
658
- margin-top: calc(var(--lumo-font-size-s) * 1.5);
659
- }
660
-
661
- :host([has-label][theme~='small'])::before {
662
- margin-top: calc(var(--lumo-font-size-xs) * 1.5);
663
- }
664
-
665
- :host([has-label]) {
666
- padding-top: var(--lumo-space-m);
667
- }
668
-
669
- :host([has-label]) ::slotted([slot='tooltip']) {
670
- --vaadin-tooltip-offset-bottom: calc((var(--lumo-space-m) - var(--lumo-space-xs)) * -1);
671
- }
672
-
673
- :host([required]) [part='required-indicator']::after {
674
- content: var(--lumo-required-field-indicator, '\\2022');
675
- transition: opacity 0.2s;
676
- color: var(--lumo-required-field-indicator-color, var(--lumo-primary-text-color));
677
- position: absolute;
678
- right: 0;
679
- width: 1em;
680
- text-align: center;
681
- }
682
-
683
- :host([invalid]) [part='required-indicator']::after {
684
- color: var(--lumo-required-field-indicator-color, var(--lumo-error-text-color));
685
- }
686
-
687
- [part='error-message'] {
688
- margin-left: calc(var(--lumo-border-radius-m) / 4);
689
- font-size: var(--lumo-font-size-xs);
690
- line-height: var(--lumo-line-height-xs);
691
- color: var(--lumo-error-text-color);
692
- will-change: max-height;
693
- transition: 0.4s max-height;
694
- max-height: 5em;
695
- }
696
-
697
- :host([has-error-message]) [part='error-message']::before,
698
- :host([has-error-message]) [part='error-message']::after {
699
- content: '';
700
- display: block;
701
- height: 0.4em;
702
- }
703
-
704
- :host(:not([invalid])) [part='error-message'] {
705
- max-height: 0;
706
- overflow: hidden;
707
- }
708
-
709
- /* RTL specific styles */
710
-
711
- :host([dir='rtl']) [part='label'] {
712
- margin-left: 0;
713
- margin-right: calc(var(--lumo-border-radius-m) / 4);
714
- }
715
-
716
- :host([dir='rtl']) [part='label'] {
717
- padding-left: 1em;
718
- padding-right: 0;
719
- }
720
-
721
- :host([dir='rtl']) [part='required-indicator']::after {
722
- right: auto;
723
- left: 0;
724
- }
725
-
726
- :host([dir='rtl']) [part='error-message'] {
727
- margin-left: 0;
728
- margin-right: calc(var(--lumo-border-radius-m) / 4);
729
- }
730
- `;
731
-
732
- registerStyles('', requiredField, { moduleId: 'lumo-required-field' });
733
-
734
- /**
735
- * @license
736
- * Copyright (c) 2017 - 2023 Vaadin Ltd.
737
- * This program is available under Apache License Version 2.0, available at https://vaadin.com/license/
738
- */
739
-
740
- const inputField = i`
741
- :host {
742
- --lumo-text-field-size: var(--lumo-size-m);
743
- color: var(--lumo-body-text-color);
744
- font-size: var(--lumo-font-size-m);
745
- font-family: var(--lumo-font-family);
746
- -webkit-font-smoothing: antialiased;
747
- -moz-osx-font-smoothing: grayscale;
748
- -webkit-tap-highlight-color: transparent;
749
- padding: var(--lumo-space-xs) 0;
750
- }
751
-
752
- :host::before {
753
- height: var(--lumo-text-field-size);
754
- box-sizing: border-box;
755
- display: inline-flex;
756
- align-items: center;
757
- }
758
-
759
- :host([focused]:not([readonly])) [part='label'] {
760
- color: var(--lumo-primary-text-color);
761
- }
762
-
763
- :host([focused]) [part='input-field'] ::slotted(:is(input, textarea)) {
764
- -webkit-mask-image: none;
765
- mask-image: none;
766
- }
767
-
768
- ::slotted(:is(input, textarea):placeholder-shown) {
769
- color: var(--lumo-secondary-text-color);
770
- }
771
-
772
- /* Hover */
773
- :host(:hover:not([readonly]):not([focused])) [part='label'] {
774
- color: var(--lumo-body-text-color);
775
- }
776
-
777
- :host(:hover:not([readonly]):not([focused])) [part='input-field']::after {
778
- opacity: 0.1;
779
- }
780
-
781
- /* Touch device adjustment */
782
- @media (pointer: coarse) {
783
- :host(:hover:not([readonly]):not([focused])) [part='label'] {
784
- color: var(--lumo-secondary-text-color);
785
- }
786
-
787
- :host(:hover:not([readonly]):not([focused])) [part='input-field']::after {
788
- opacity: 0;
789
- }
790
-
791
- :host(:active:not([readonly]):not([focused])) [part='input-field']::after {
792
- opacity: 0.2;
793
- }
794
- }
795
-
796
- /* Trigger when not focusing using the keyboard */
797
- :host([focused]:not([focus-ring]):not([readonly])) [part='input-field']::after {
798
- transform: scaleX(0);
799
- transition-duration: 0.15s, 1s;
800
- }
801
-
802
- /* Focus-ring */
803
- :host([focus-ring]) [part='input-field'] {
804
- box-shadow: 0 0 0 2px var(--lumo-primary-color-50pct);
805
- }
806
-
807
- /* Read-only and disabled */
808
- :host(:is([readonly], [disabled])) ::slotted(:is(input, textarea):placeholder-shown) {
809
- opacity: 0;
810
- }
811
-
812
- /* Read-only style */
813
- :host([readonly]) {
814
- --vaadin-input-field-border-color: transparent;
815
- }
816
-
817
- /* Disabled style */
818
- :host([disabled]) {
819
- pointer-events: none;
820
- --vaadin-input-field-border-color: var(--lumo-contrast-20pct);
821
- }
822
-
823
- :host([disabled]) [part='label'],
824
- :host([disabled]) [part='input-field'] ::slotted(*) {
825
- color: var(--lumo-disabled-text-color);
826
- -webkit-text-fill-color: var(--lumo-disabled-text-color);
827
- }
828
-
829
- /* Invalid style */
830
- :host([invalid]) {
831
- --vaadin-input-field-border-color: var(--lumo-error-color);
832
- }
833
-
834
- :host([invalid][focus-ring]) [part='input-field'] {
835
- box-shadow: 0 0 0 2px var(--lumo-error-color-50pct);
836
- }
837
-
838
- :host([input-prevented]) [part='input-field'] {
839
- animation: shake 0.15s infinite;
840
- }
841
-
842
- @keyframes shake {
843
- 25% {
844
- transform: translateX(4px);
845
- }
846
- 75% {
847
- transform: translateX(-4px);
848
- }
849
- }
850
-
851
- /* Small theme */
852
- :host([theme~='small']) {
853
- font-size: var(--lumo-font-size-s);
854
- --lumo-text-field-size: var(--lumo-size-s);
855
- }
856
-
857
- :host([theme~='small']) [part='label'] {
858
- font-size: var(--lumo-font-size-xs);
859
- }
860
-
861
- :host([theme~='small']) [part='error-message'] {
862
- font-size: var(--lumo-font-size-xxs);
863
- }
864
-
865
- /* Slotted content */
866
- [part='input-field'] ::slotted(:not(vaadin-icon):not(input):not(textarea)) {
867
- color: var(--lumo-secondary-text-color);
868
- font-weight: 400;
869
- }
870
-
871
- [part='clear-button']::before {
872
- content: var(--lumo-icons-cross);
873
- }
874
- `;
875
-
876
- const inputFieldShared = [requiredField, fieldButton, helper, inputField];
877
-
878
- registerStyles('', inputFieldShared, {
879
- moduleId: 'lumo-input-field-shared-styles',
880
- });
881
-
882
7
  /**
883
8
  * @license
884
9
  * Copyright (c) 2017 - 2023 Vaadin Ltd.
@@ -1305,7 +430,7 @@ const passwordField = i`
1305
430
  }
1306
431
  `;
1307
432
 
1308
- registerStyles('vaadin-password-field', [inputFieldShared$2, passwordField], { moduleId: 'lumo-password-field' });
433
+ registerStyles('vaadin-password-field', [inputFieldShared, passwordField], { moduleId: 'lumo-password-field' });
1309
434
 
1310
435
  /**
1311
436
  * @license
@@ -1663,7 +788,7 @@ defineCustomElement$1(PasswordField);
1663
788
 
1664
789
  const passwordInputCss = "*,*::before,*::after{padding:0;margin:0;box-sizing:border-box}.password{font-family:\"Roboto\";font-style:normal}.password__wrapper{position:relative;width:100%}.password__wrapper--autofilled{pointer-events:none}.password__wrapper--autofilled .password__label{color:#979797}.password__wrapper--autofilled .password__input::part(input-field){color:#979797}.password__wrapper--flex{display:flex;gap:5px}.password__wrapper--relative{position:relative}.password__label{font-family:inherit;font-style:normal;font-weight:500;font-size:16px;line-height:20px;color:#2A3841}.password__label--required::after{content:\"*\";font-family:inherit;color:#2A3841;margin-left:2px}.password__input{width:inherit;border:none;margin-bottom:5px}.password__input[focused]::part(input-field){border-color:#3E3E3E}.password__input[invalid]::part(input-field){border-color:#cc0000b3}.password__input::part(input-field){border-radius:4px;background-color:transparent;font-family:inherit;font-style:normal;font-weight:300;font-size:16px;line-height:19px;color:#2A2E3F;width:100%;position:relative;border:2px solid #DEE1EE}.password__input>input:placeholder-shown{color:#979797}.password__error-message{position:absolute;top:calc(100% + 5px);left:0;color:#cc0000b3}.password__complexity{position:relative;padding:10px;display:flex;flex-direction:column;gap:20px;justify-content:center;margin-top:20px;font-weight:300;background:#FFFFFF;-webkit-border-radius:10px;-moz-border-radius:10px;border-radius:10px;height:150px;border:1px solid #B0B0B0}.password__complexity--strength{display:flex;justify-content:space-evenly}.password__complexity--strength meter::-webkit-meter-optimum-value{background:#1F1F1F}.password__complexity--strength meter::-moz-meter-bar{background:#B0B0B0}.password__complexity--hidden{display:none}.password__complexity--text-bold{font-weight:500}.password__complexity--checkbox{margin-right:5px}.password__complexity:after{content:\"\";position:absolute;width:25px;height:25px;border-top:1px solid #B0B0B0;border-right:0 solid #B0B0B0;border-left:1px solid #B0B0B0;border-bottom:0 solid #B0B0B0;bottom:92%;left:50%;margin-left:-25px;transform:rotate(45deg);margin-top:-25px;background-color:#FFFFFF}.password__tooltip-icon{width:16px;height:auto}.password__tooltip{position:absolute;top:0;left:20px;background-color:#FFFFFF;border:1px solid #B0B0B0;color:#2B2D3F;padding:10px;border-radius:5px;opacity:0;transition:opacity 0.3s ease-in-out;z-index:10}.password__tooltip.visible{opacity:1}";
1665
790
 
1666
- const PasswordInput = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement$1 {
791
+ const PasswordInput = /*@__PURE__*/ proxyCustomElement(class extends HTMLElement {
1667
792
  constructor() {
1668
793
  super();
1669
794
  this.__registerHost();