@aurodesignsystem-dev/auro-formkit 0.0.0-pr1257.0 → 0.0.0-pr1269.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/components/checkbox/demo/api.min.js +38 -11
- package/components/checkbox/demo/index.min.js +38 -11
- package/components/checkbox/dist/auro-checkbox.d.ts +15 -0
- package/components/checkbox/dist/index.js +38 -11
- package/components/checkbox/dist/registered.js +38 -11
- package/components/combobox/README.md +5 -5
- package/components/combobox/demo/api.md +10 -10
- package/components/combobox/demo/api.min.js +3 -3
- package/components/combobox/demo/index.md +35 -35
- package/components/combobox/demo/index.min.js +3 -3
- package/components/combobox/demo/readme.md +5 -5
- package/components/combobox/dist/index.js +3 -3
- package/components/combobox/dist/registered.js +3 -3
- package/components/counter/demo/api.min.js +2 -2
- package/components/counter/demo/index.min.js +2 -2
- package/components/counter/dist/index.js +2 -2
- package/components/counter/dist/registered.js +2 -2
- package/components/datepicker/demo/api.min.js +3 -3
- package/components/datepicker/demo/index.min.js +3 -3
- package/components/datepicker/dist/index.js +3 -3
- package/components/datepicker/dist/registered.js +3 -3
- package/components/dropdown/demo/api.min.js +1 -1
- package/components/dropdown/demo/index.min.js +1 -1
- package/components/dropdown/dist/index.js +1 -1
- package/components/dropdown/dist/registered.js +1 -1
- package/components/input/demo/api.min.js +1 -1
- package/components/input/demo/index.min.js +1 -1
- package/components/input/dist/index.js +1 -1
- package/components/input/dist/registered.js +1 -1
- package/components/menu/README.md +5 -5
- package/components/menu/demo/api.md +10 -10
- package/components/menu/demo/index.md +10 -10
- package/components/menu/demo/readme.md +5 -5
- package/components/radio/demo/api.min.js +1 -1
- package/components/radio/demo/index.min.js +1 -1
- package/components/radio/dist/index.js +1 -1
- package/components/radio/dist/registered.js +1 -1
- package/components/select/README.md +6 -6
- package/components/select/demo/api.md +12 -12
- package/components/select/demo/api.min.js +2 -2
- package/components/select/demo/index.md +44 -44
- package/components/select/demo/index.min.js +2 -2
- package/components/select/demo/readme.md +6 -6
- package/components/select/dist/index.js +2 -2
- package/components/select/dist/registered.js +2 -2
- package/package.json +1 -1
|
@@ -172,20 +172,12 @@ class AuroCheckbox extends i$2 {
|
|
|
172
172
|
this.error = false;
|
|
173
173
|
this.onDark = false;
|
|
174
174
|
this.touched = false;
|
|
175
|
+
this.role = 'checkbox';
|
|
175
176
|
|
|
176
177
|
/**
|
|
177
178
|
* @private
|
|
178
179
|
*/
|
|
179
180
|
this.runtimeUtils = new AuroLibraryRuntimeUtils$1();
|
|
180
|
-
|
|
181
|
-
/**
|
|
182
|
-
* @private
|
|
183
|
-
* @property {boolean} delegatesFocus - Whether the shadow root delegates focus.
|
|
184
|
-
*/
|
|
185
|
-
this.constructor.shadowRootOptions = {
|
|
186
|
-
...i$2.shadowRootOptions,
|
|
187
|
-
delegatesFocus: true,
|
|
188
|
-
};
|
|
189
181
|
}
|
|
190
182
|
|
|
191
183
|
static get styles() {
|
|
@@ -275,6 +267,15 @@ class AuroCheckbox extends i$2 {
|
|
|
275
267
|
type: String,
|
|
276
268
|
reflect: false,
|
|
277
269
|
attribute: false
|
|
270
|
+
},
|
|
271
|
+
|
|
272
|
+
/**
|
|
273
|
+
* Don't add to api.md since changing of this can easily break a11y.
|
|
274
|
+
* @private
|
|
275
|
+
*/
|
|
276
|
+
role: {
|
|
277
|
+
type: String,
|
|
278
|
+
reflect: true
|
|
278
279
|
}
|
|
279
280
|
};
|
|
280
281
|
}
|
|
@@ -368,6 +369,10 @@ class AuroCheckbox extends i$2 {
|
|
|
368
369
|
|
|
369
370
|
this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
|
|
370
371
|
|
|
372
|
+
// Set initial ARIA state
|
|
373
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
374
|
+
this.setAttribute('tabindex', '0');
|
|
375
|
+
|
|
371
376
|
this.addEventListener('click', (evt) => {
|
|
372
377
|
// Only prevent default for real user events, not tests or programmatic calls
|
|
373
378
|
if (evt.isTrusted) {
|
|
@@ -406,6 +411,26 @@ class AuroCheckbox extends i$2 {
|
|
|
406
411
|
this.removeEventListener('keydown', this.handleKeyDown);
|
|
407
412
|
}
|
|
408
413
|
|
|
414
|
+
/**
|
|
415
|
+
* Updates ARIA attributes when properties change.
|
|
416
|
+
* @private
|
|
417
|
+
* @param {Map} changedProperties - Map of changed properties.
|
|
418
|
+
* @returns {void}
|
|
419
|
+
*/
|
|
420
|
+
updated(changedProperties) {
|
|
421
|
+
if (changedProperties.has('checked')) {
|
|
422
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
423
|
+
}
|
|
424
|
+
|
|
425
|
+
if (changedProperties.has('disabled')) {
|
|
426
|
+
if (this.disabled) {
|
|
427
|
+
this.setAttribute('aria-disabled', 'true');
|
|
428
|
+
} else {
|
|
429
|
+
this.removeAttribute('aria-disabled');
|
|
430
|
+
}
|
|
431
|
+
}
|
|
432
|
+
}
|
|
433
|
+
|
|
409
434
|
/**
|
|
410
435
|
* Handles keydown event to toggle the checkbox with Space key.
|
|
411
436
|
* @private
|
|
@@ -435,7 +460,7 @@ class AuroCheckbox extends i$2 {
|
|
|
435
460
|
<div class="cbxContainer body-default" part="checkbox">
|
|
436
461
|
<div class="inputContainer">
|
|
437
462
|
<input
|
|
438
|
-
class="
|
|
463
|
+
class="util_displayHidden cbx--input"
|
|
439
464
|
part="checkbox-input"
|
|
440
465
|
@change="${this.handleChange}"
|
|
441
466
|
@input="${this.handleInput}"
|
|
@@ -445,6 +470,8 @@ class AuroCheckbox extends i$2 {
|
|
|
445
470
|
name="${o$1(this.name)}"
|
|
446
471
|
type="checkbox"
|
|
447
472
|
.value="${this.value}"
|
|
473
|
+
aria-hidden="true"
|
|
474
|
+
tabindex="-1"
|
|
448
475
|
/>
|
|
449
476
|
${this.checked ? this.generateIconHtml() : undefined}
|
|
450
477
|
</div>
|
|
@@ -1607,7 +1634,7 @@ class AuroHelpText extends i$2 {
|
|
|
1607
1634
|
}
|
|
1608
1635
|
}
|
|
1609
1636
|
|
|
1610
|
-
var formkitVersion = '
|
|
1637
|
+
var formkitVersion = '202601052019';
|
|
1611
1638
|
|
|
1612
1639
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1613
1640
|
// See LICENSE in the project root for license information.
|
|
@@ -164,20 +164,12 @@ class AuroCheckbox extends i$2 {
|
|
|
164
164
|
this.error = false;
|
|
165
165
|
this.onDark = false;
|
|
166
166
|
this.touched = false;
|
|
167
|
+
this.role = 'checkbox';
|
|
167
168
|
|
|
168
169
|
/**
|
|
169
170
|
* @private
|
|
170
171
|
*/
|
|
171
172
|
this.runtimeUtils = new AuroLibraryRuntimeUtils$1();
|
|
172
|
-
|
|
173
|
-
/**
|
|
174
|
-
* @private
|
|
175
|
-
* @property {boolean} delegatesFocus - Whether the shadow root delegates focus.
|
|
176
|
-
*/
|
|
177
|
-
this.constructor.shadowRootOptions = {
|
|
178
|
-
...i$2.shadowRootOptions,
|
|
179
|
-
delegatesFocus: true,
|
|
180
|
-
};
|
|
181
173
|
}
|
|
182
174
|
|
|
183
175
|
static get styles() {
|
|
@@ -267,6 +259,15 @@ class AuroCheckbox extends i$2 {
|
|
|
267
259
|
type: String,
|
|
268
260
|
reflect: false,
|
|
269
261
|
attribute: false
|
|
262
|
+
},
|
|
263
|
+
|
|
264
|
+
/**
|
|
265
|
+
* Don't add to api.md since changing of this can easily break a11y.
|
|
266
|
+
* @private
|
|
267
|
+
*/
|
|
268
|
+
role: {
|
|
269
|
+
type: String,
|
|
270
|
+
reflect: true
|
|
270
271
|
}
|
|
271
272
|
};
|
|
272
273
|
}
|
|
@@ -360,6 +361,10 @@ class AuroCheckbox extends i$2 {
|
|
|
360
361
|
|
|
361
362
|
this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
|
|
362
363
|
|
|
364
|
+
// Set initial ARIA state
|
|
365
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
366
|
+
this.setAttribute('tabindex', '0');
|
|
367
|
+
|
|
363
368
|
this.addEventListener('click', (evt) => {
|
|
364
369
|
// Only prevent default for real user events, not tests or programmatic calls
|
|
365
370
|
if (evt.isTrusted) {
|
|
@@ -398,6 +403,26 @@ class AuroCheckbox extends i$2 {
|
|
|
398
403
|
this.removeEventListener('keydown', this.handleKeyDown);
|
|
399
404
|
}
|
|
400
405
|
|
|
406
|
+
/**
|
|
407
|
+
* Updates ARIA attributes when properties change.
|
|
408
|
+
* @private
|
|
409
|
+
* @param {Map} changedProperties - Map of changed properties.
|
|
410
|
+
* @returns {void}
|
|
411
|
+
*/
|
|
412
|
+
updated(changedProperties) {
|
|
413
|
+
if (changedProperties.has('checked')) {
|
|
414
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
if (changedProperties.has('disabled')) {
|
|
418
|
+
if (this.disabled) {
|
|
419
|
+
this.setAttribute('aria-disabled', 'true');
|
|
420
|
+
} else {
|
|
421
|
+
this.removeAttribute('aria-disabled');
|
|
422
|
+
}
|
|
423
|
+
}
|
|
424
|
+
}
|
|
425
|
+
|
|
401
426
|
/**
|
|
402
427
|
* Handles keydown event to toggle the checkbox with Space key.
|
|
403
428
|
* @private
|
|
@@ -427,7 +452,7 @@ class AuroCheckbox extends i$2 {
|
|
|
427
452
|
<div class="cbxContainer body-default" part="checkbox">
|
|
428
453
|
<div class="inputContainer">
|
|
429
454
|
<input
|
|
430
|
-
class="
|
|
455
|
+
class="util_displayHidden cbx--input"
|
|
431
456
|
part="checkbox-input"
|
|
432
457
|
@change="${this.handleChange}"
|
|
433
458
|
@input="${this.handleInput}"
|
|
@@ -437,6 +462,8 @@ class AuroCheckbox extends i$2 {
|
|
|
437
462
|
name="${o$1(this.name)}"
|
|
438
463
|
type="checkbox"
|
|
439
464
|
.value="${this.value}"
|
|
465
|
+
aria-hidden="true"
|
|
466
|
+
tabindex="-1"
|
|
440
467
|
/>
|
|
441
468
|
${this.checked ? this.generateIconHtml() : undefined}
|
|
442
469
|
</div>
|
|
@@ -1599,7 +1626,7 @@ class AuroHelpText extends i$2 {
|
|
|
1599
1626
|
}
|
|
1600
1627
|
}
|
|
1601
1628
|
|
|
1602
|
-
var formkitVersion = '
|
|
1629
|
+
var formkitVersion = '202601052019';
|
|
1603
1630
|
|
|
1604
1631
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1605
1632
|
// See LICENSE in the project root for license information.
|
|
@@ -79,6 +79,14 @@ export class AuroCheckbox extends LitElement {
|
|
|
79
79
|
reflect: boolean;
|
|
80
80
|
attribute: boolean;
|
|
81
81
|
};
|
|
82
|
+
/**
|
|
83
|
+
* Don't add to api.md since changing of this can easily break a11y.
|
|
84
|
+
* @private
|
|
85
|
+
*/
|
|
86
|
+
role: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
reflect: boolean;
|
|
89
|
+
};
|
|
82
90
|
};
|
|
83
91
|
/**
|
|
84
92
|
* This will register this element with the browser.
|
|
@@ -144,6 +152,13 @@ export class AuroCheckbox extends LitElement {
|
|
|
144
152
|
* @returns {void}
|
|
145
153
|
*/
|
|
146
154
|
private handleKeyDown;
|
|
155
|
+
/**
|
|
156
|
+
* Updates ARIA attributes when properties change.
|
|
157
|
+
* @private
|
|
158
|
+
* @param {Map} changedProperties - Map of changed properties.
|
|
159
|
+
* @returns {void}
|
|
160
|
+
*/
|
|
161
|
+
private updated;
|
|
147
162
|
/**
|
|
148
163
|
* @private
|
|
149
164
|
* @returns {HTMLElement}
|
|
@@ -124,20 +124,12 @@ class AuroCheckbox extends LitElement {
|
|
|
124
124
|
this.error = false;
|
|
125
125
|
this.onDark = false;
|
|
126
126
|
this.touched = false;
|
|
127
|
+
this.role = 'checkbox';
|
|
127
128
|
|
|
128
129
|
/**
|
|
129
130
|
* @private
|
|
130
131
|
*/
|
|
131
132
|
this.runtimeUtils = new AuroLibraryRuntimeUtils$1();
|
|
132
|
-
|
|
133
|
-
/**
|
|
134
|
-
* @private
|
|
135
|
-
* @property {boolean} delegatesFocus - Whether the shadow root delegates focus.
|
|
136
|
-
*/
|
|
137
|
-
this.constructor.shadowRootOptions = {
|
|
138
|
-
...LitElement.shadowRootOptions,
|
|
139
|
-
delegatesFocus: true,
|
|
140
|
-
};
|
|
141
133
|
}
|
|
142
134
|
|
|
143
135
|
static get styles() {
|
|
@@ -227,6 +219,15 @@ class AuroCheckbox extends LitElement {
|
|
|
227
219
|
type: String,
|
|
228
220
|
reflect: false,
|
|
229
221
|
attribute: false
|
|
222
|
+
},
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Don't add to api.md since changing of this can easily break a11y.
|
|
226
|
+
* @private
|
|
227
|
+
*/
|
|
228
|
+
role: {
|
|
229
|
+
type: String,
|
|
230
|
+
reflect: true
|
|
230
231
|
}
|
|
231
232
|
};
|
|
232
233
|
}
|
|
@@ -320,6 +321,10 @@ class AuroCheckbox extends LitElement {
|
|
|
320
321
|
|
|
321
322
|
this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
|
|
322
323
|
|
|
324
|
+
// Set initial ARIA state
|
|
325
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
326
|
+
this.setAttribute('tabindex', '0');
|
|
327
|
+
|
|
323
328
|
this.addEventListener('click', (evt) => {
|
|
324
329
|
// Only prevent default for real user events, not tests or programmatic calls
|
|
325
330
|
if (evt.isTrusted) {
|
|
@@ -358,6 +363,26 @@ class AuroCheckbox extends LitElement {
|
|
|
358
363
|
this.removeEventListener('keydown', this.handleKeyDown);
|
|
359
364
|
}
|
|
360
365
|
|
|
366
|
+
/**
|
|
367
|
+
* Updates ARIA attributes when properties change.
|
|
368
|
+
* @private
|
|
369
|
+
* @param {Map} changedProperties - Map of changed properties.
|
|
370
|
+
* @returns {void}
|
|
371
|
+
*/
|
|
372
|
+
updated(changedProperties) {
|
|
373
|
+
if (changedProperties.has('checked')) {
|
|
374
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
if (changedProperties.has('disabled')) {
|
|
378
|
+
if (this.disabled) {
|
|
379
|
+
this.setAttribute('aria-disabled', 'true');
|
|
380
|
+
} else {
|
|
381
|
+
this.removeAttribute('aria-disabled');
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
361
386
|
/**
|
|
362
387
|
* Handles keydown event to toggle the checkbox with Space key.
|
|
363
388
|
* @private
|
|
@@ -387,7 +412,7 @@ class AuroCheckbox extends LitElement {
|
|
|
387
412
|
<div class="cbxContainer body-default" part="checkbox">
|
|
388
413
|
<div class="inputContainer">
|
|
389
414
|
<input
|
|
390
|
-
class="
|
|
415
|
+
class="util_displayHidden cbx--input"
|
|
391
416
|
part="checkbox-input"
|
|
392
417
|
@change="${this.handleChange}"
|
|
393
418
|
@input="${this.handleInput}"
|
|
@@ -397,6 +422,8 @@ class AuroCheckbox extends LitElement {
|
|
|
397
422
|
name="${ifDefined(this.name)}"
|
|
398
423
|
type="checkbox"
|
|
399
424
|
.value="${this.value}"
|
|
425
|
+
aria-hidden="true"
|
|
426
|
+
tabindex="-1"
|
|
400
427
|
/>
|
|
401
428
|
${this.checked ? this.generateIconHtml() : undefined}
|
|
402
429
|
</div>
|
|
@@ -1552,7 +1579,7 @@ class AuroHelpText extends LitElement {
|
|
|
1552
1579
|
}
|
|
1553
1580
|
}
|
|
1554
1581
|
|
|
1555
|
-
var formkitVersion = '
|
|
1582
|
+
var formkitVersion = '202601052019';
|
|
1556
1583
|
|
|
1557
1584
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1558
1585
|
// See LICENSE in the project root for license information.
|
|
@@ -124,20 +124,12 @@ class AuroCheckbox extends LitElement {
|
|
|
124
124
|
this.error = false;
|
|
125
125
|
this.onDark = false;
|
|
126
126
|
this.touched = false;
|
|
127
|
+
this.role = 'checkbox';
|
|
127
128
|
|
|
128
129
|
/**
|
|
129
130
|
* @private
|
|
130
131
|
*/
|
|
131
132
|
this.runtimeUtils = new AuroLibraryRuntimeUtils$1();
|
|
132
|
-
|
|
133
|
-
/**
|
|
134
|
-
* @private
|
|
135
|
-
* @property {boolean} delegatesFocus - Whether the shadow root delegates focus.
|
|
136
|
-
*/
|
|
137
|
-
this.constructor.shadowRootOptions = {
|
|
138
|
-
...LitElement.shadowRootOptions,
|
|
139
|
-
delegatesFocus: true,
|
|
140
|
-
};
|
|
141
133
|
}
|
|
142
134
|
|
|
143
135
|
static get styles() {
|
|
@@ -227,6 +219,15 @@ class AuroCheckbox extends LitElement {
|
|
|
227
219
|
type: String,
|
|
228
220
|
reflect: false,
|
|
229
221
|
attribute: false
|
|
222
|
+
},
|
|
223
|
+
|
|
224
|
+
/**
|
|
225
|
+
* Don't add to api.md since changing of this can easily break a11y.
|
|
226
|
+
* @private
|
|
227
|
+
*/
|
|
228
|
+
role: {
|
|
229
|
+
type: String,
|
|
230
|
+
reflect: true
|
|
230
231
|
}
|
|
231
232
|
};
|
|
232
233
|
}
|
|
@@ -320,6 +321,10 @@ class AuroCheckbox extends LitElement {
|
|
|
320
321
|
|
|
321
322
|
this.inputId = this.id ? `${this.id}-input` : window.crypto.randomUUID();
|
|
322
323
|
|
|
324
|
+
// Set initial ARIA state
|
|
325
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
326
|
+
this.setAttribute('tabindex', '0');
|
|
327
|
+
|
|
323
328
|
this.addEventListener('click', (evt) => {
|
|
324
329
|
// Only prevent default for real user events, not tests or programmatic calls
|
|
325
330
|
if (evt.isTrusted) {
|
|
@@ -358,6 +363,26 @@ class AuroCheckbox extends LitElement {
|
|
|
358
363
|
this.removeEventListener('keydown', this.handleKeyDown);
|
|
359
364
|
}
|
|
360
365
|
|
|
366
|
+
/**
|
|
367
|
+
* Updates ARIA attributes when properties change.
|
|
368
|
+
* @private
|
|
369
|
+
* @param {Map} changedProperties - Map of changed properties.
|
|
370
|
+
* @returns {void}
|
|
371
|
+
*/
|
|
372
|
+
updated(changedProperties) {
|
|
373
|
+
if (changedProperties.has('checked')) {
|
|
374
|
+
this.setAttribute('aria-checked', this.checked ? 'true' : 'false');
|
|
375
|
+
}
|
|
376
|
+
|
|
377
|
+
if (changedProperties.has('disabled')) {
|
|
378
|
+
if (this.disabled) {
|
|
379
|
+
this.setAttribute('aria-disabled', 'true');
|
|
380
|
+
} else {
|
|
381
|
+
this.removeAttribute('aria-disabled');
|
|
382
|
+
}
|
|
383
|
+
}
|
|
384
|
+
}
|
|
385
|
+
|
|
361
386
|
/**
|
|
362
387
|
* Handles keydown event to toggle the checkbox with Space key.
|
|
363
388
|
* @private
|
|
@@ -387,7 +412,7 @@ class AuroCheckbox extends LitElement {
|
|
|
387
412
|
<div class="cbxContainer body-default" part="checkbox">
|
|
388
413
|
<div class="inputContainer">
|
|
389
414
|
<input
|
|
390
|
-
class="
|
|
415
|
+
class="util_displayHidden cbx--input"
|
|
391
416
|
part="checkbox-input"
|
|
392
417
|
@change="${this.handleChange}"
|
|
393
418
|
@input="${this.handleInput}"
|
|
@@ -397,6 +422,8 @@ class AuroCheckbox extends LitElement {
|
|
|
397
422
|
name="${ifDefined(this.name)}"
|
|
398
423
|
type="checkbox"
|
|
399
424
|
.value="${this.value}"
|
|
425
|
+
aria-hidden="true"
|
|
426
|
+
tabindex="-1"
|
|
400
427
|
/>
|
|
401
428
|
${this.checked ? this.generateIconHtml() : undefined}
|
|
402
429
|
</div>
|
|
@@ -1552,7 +1579,7 @@ class AuroHelpText extends LitElement {
|
|
|
1552
1579
|
}
|
|
1553
1580
|
}
|
|
1554
1581
|
|
|
1555
|
-
var formkitVersion = '
|
|
1582
|
+
var formkitVersion = '202601052019';
|
|
1556
1583
|
|
|
1557
1584
|
// Copyright (c) 2020 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
1558
1585
|
// See LICENSE in the project root for license information.
|
|
@@ -91,11 +91,11 @@ This configuration enables proper module resolution for the component's TypeScri
|
|
|
91
91
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
92
92
|
<span slot="label">Name</span>
|
|
93
93
|
<auro-menu>
|
|
94
|
-
<auro-menuoption value="
|
|
95
|
-
<auro-menuoption value="
|
|
96
|
-
<auro-menuoption value="
|
|
97
|
-
<auro-menuoption value="
|
|
98
|
-
<auro-menuoption value="
|
|
94
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
95
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
96
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
97
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
98
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
99
99
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
100
100
|
</auro-menu>
|
|
101
101
|
</auro-combobox>
|
|
@@ -96,11 +96,11 @@
|
|
|
96
96
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
97
97
|
<span slot="label">Name</span>
|
|
98
98
|
<auro-menu>
|
|
99
|
-
<auro-menuoption value="
|
|
100
|
-
<auro-menuoption value="
|
|
101
|
-
<auro-menuoption value="
|
|
102
|
-
<auro-menuoption value="
|
|
103
|
-
<auro-menuoption value="
|
|
99
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
100
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
101
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
102
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
103
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
104
104
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
105
105
|
</auro-menu>
|
|
106
106
|
</auro-combobox>
|
|
@@ -135,11 +135,11 @@
|
|
|
135
135
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
136
136
|
<span slot="label">Name</span>
|
|
137
137
|
<auro-menu>
|
|
138
|
-
<auro-menuoption value="
|
|
139
|
-
<auro-menuoption value="
|
|
140
|
-
<auro-menuoption value="
|
|
141
|
-
<auro-menuoption value="
|
|
142
|
-
<auro-menuoption value="
|
|
138
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
139
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
140
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
141
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
142
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
143
143
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
144
144
|
</auro-menu>
|
|
145
145
|
</auro-combobox>
|
|
@@ -4303,7 +4303,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
4303
4303
|
}
|
|
4304
4304
|
};
|
|
4305
4305
|
|
|
4306
|
-
var formkitVersion$2 = '
|
|
4306
|
+
var formkitVersion$2 = '202601052019';
|
|
4307
4307
|
|
|
4308
4308
|
let AuroElement$2 = class AuroElement extends i$3 {
|
|
4309
4309
|
static get properties() {
|
|
@@ -11928,7 +11928,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
11928
11928
|
}
|
|
11929
11929
|
};
|
|
11930
11930
|
|
|
11931
|
-
var formkitVersion$1 = '
|
|
11931
|
+
var formkitVersion$1 = '202601052019';
|
|
11932
11932
|
|
|
11933
11933
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
11934
11934
|
// See LICENSE in the project root for license information.
|
|
@@ -12918,7 +12918,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
12918
12918
|
}
|
|
12919
12919
|
}
|
|
12920
12920
|
|
|
12921
|
-
var formkitVersion = '
|
|
12921
|
+
var formkitVersion = '202601052019';
|
|
12922
12922
|
|
|
12923
12923
|
var styleCss$3 = i$6`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
|
|
12924
12924
|
|
|
@@ -35,11 +35,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
35
35
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
36
36
|
<span slot="label">Name</span>
|
|
37
37
|
<auro-menu>
|
|
38
|
-
<auro-menuoption value="
|
|
39
|
-
<auro-menuoption value="
|
|
40
|
-
<auro-menuoption value="
|
|
41
|
-
<auro-menuoption value="
|
|
42
|
-
<auro-menuoption value="
|
|
38
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
39
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
40
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
41
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
42
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
43
43
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
44
44
|
</auro-menu>
|
|
45
45
|
</auro-combobox>
|
|
@@ -57,11 +57,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
57
57
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
58
58
|
<span slot="label">Name</span>
|
|
59
59
|
<auro-menu>
|
|
60
|
-
<auro-menuoption value="
|
|
61
|
-
<auro-menuoption value="
|
|
62
|
-
<auro-menuoption value="
|
|
63
|
-
<auro-menuoption value="
|
|
64
|
-
<auro-menuoption value="
|
|
60
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
61
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
62
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
63
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
64
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
65
65
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
66
66
|
</auro-menu>
|
|
67
67
|
</auro-combobox>
|
|
@@ -80,11 +80,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
80
80
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
81
81
|
<span slot="label">Name</span>
|
|
82
82
|
<auro-menu>
|
|
83
|
-
<auro-menuoption value="
|
|
84
|
-
<auro-menuoption value="
|
|
85
|
-
<auro-menuoption value="
|
|
86
|
-
<auro-menuoption value="
|
|
87
|
-
<auro-menuoption value="
|
|
83
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
84
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
85
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
86
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
87
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
88
88
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
89
89
|
</auro-menu>
|
|
90
90
|
<span slot="helpText">
|
|
@@ -127,11 +127,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
127
127
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
128
128
|
<span slot="label">Name</span>
|
|
129
129
|
<auro-menu>
|
|
130
|
-
<auro-menuoption value="
|
|
131
|
-
<auro-menuoption value="
|
|
132
|
-
<auro-menuoption value="
|
|
133
|
-
<auro-menuoption value="
|
|
134
|
-
<auro-menuoption value="
|
|
130
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
131
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
132
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
133
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
134
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
135
135
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
136
136
|
</auro-menu>
|
|
137
137
|
<span slot="helpText">
|
|
@@ -158,11 +158,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
158
158
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
159
159
|
<span slot="label">Name</span>
|
|
160
160
|
<auro-menu>
|
|
161
|
-
<auro-menuoption value="
|
|
162
|
-
<auro-menuoption value="
|
|
163
|
-
<auro-menuoption value="
|
|
164
|
-
<auro-menuoption value="
|
|
165
|
-
<auro-menuoption value="
|
|
161
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
162
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
163
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
164
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
165
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
166
166
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
167
167
|
</auro-menu>
|
|
168
168
|
<span slot="helpText">
|
|
@@ -183,11 +183,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
183
183
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
184
184
|
<span slot="label">Name</span>
|
|
185
185
|
<auro-menu>
|
|
186
|
-
<auro-menuoption value="
|
|
187
|
-
<auro-menuoption value="
|
|
188
|
-
<auro-menuoption value="
|
|
189
|
-
<auro-menuoption value="
|
|
190
|
-
<auro-menuoption value="
|
|
186
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
187
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
188
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
189
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
190
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
191
191
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
192
192
|
</auro-menu>
|
|
193
193
|
</auro-combobox>
|
|
@@ -222,11 +222,11 @@ The `<auro-combobox>` element should be used in situations where users may:
|
|
|
222
222
|
<span slot="bib.fullscreen.headline">Bib Header</span>
|
|
223
223
|
<span slot="label">Name</span>
|
|
224
224
|
<auro-menu>
|
|
225
|
-
<auro-menuoption value="
|
|
226
|
-
<auro-menuoption value="
|
|
227
|
-
<auro-menuoption value="
|
|
228
|
-
<auro-menuoption value="
|
|
229
|
-
<auro-menuoption value="
|
|
225
|
+
<auro-menuoption value="Apples" id="option-0">Apples</auro-menuoption>
|
|
226
|
+
<auro-menuoption value="Oranges" id="option-1">Oranges</auro-menuoption>
|
|
227
|
+
<auro-menuoption value="Peaches" id="option-2">Peaches</auro-menuoption>
|
|
228
|
+
<auro-menuoption value="Grapes" id="option-3">Grapes</auro-menuoption>
|
|
229
|
+
<auro-menuoption value="Cherries" id="option-4">Cherries</auro-menuoption>
|
|
230
230
|
<auro-menuoption static nomatch>No matching option</auro-menuoption>
|
|
231
231
|
</auro-menu>
|
|
232
232
|
</auro-combobox>
|
|
@@ -4175,7 +4175,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
4175
4175
|
}
|
|
4176
4176
|
};
|
|
4177
4177
|
|
|
4178
|
-
var formkitVersion$2 = '
|
|
4178
|
+
var formkitVersion$2 = '202601052019';
|
|
4179
4179
|
|
|
4180
4180
|
let AuroElement$2 = class AuroElement extends i$3 {
|
|
4181
4181
|
static get properties() {
|
|
@@ -11800,7 +11800,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
11800
11800
|
}
|
|
11801
11801
|
};
|
|
11802
11802
|
|
|
11803
|
-
var formkitVersion$1 = '
|
|
11803
|
+
var formkitVersion$1 = '202601052019';
|
|
11804
11804
|
|
|
11805
11805
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
11806
11806
|
// See LICENSE in the project root for license information.
|
|
@@ -12790,7 +12790,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
12790
12790
|
}
|
|
12791
12791
|
}
|
|
12792
12792
|
|
|
12793
|
-
var formkitVersion = '
|
|
12793
|
+
var formkitVersion = '202601052019';
|
|
12794
12794
|
|
|
12795
12795
|
var styleCss$3 = i$6`.util_displayInline{display:inline}.util_displayInlineBlock{display:inline-block}.util_displayBlock{display:block}.util_displayFlex{display:flex}.util_displayHidden{display:none}.util_displayHiddenVisually{position:absolute;overflow:hidden;clip:rect(1px, 1px, 1px, 1px);width:1px;height:1px;padding:0;border:0}:host{display:block;text-align:left}:host [auro-dropdown]{--ds-auro-dropdown-trigger-background-color: transparent}:host #inputInBib::part(wrapper){box-shadow:none}:host #inputInBib::part(accent-left){display:none}:host([layout*=classic]) [auro-input]{width:100%}:host([layout*=classic]) [auro-input]::part(helpText){display:none}:host([layout*=classic]) #slotHolder{display:none}`;
|
|
12796
12796
|
|