@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.2 → 0.0.0-pr1595.4
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.md +2 -2
- package/components/checkbox/demo/customize.min.js +6 -3
- package/components/checkbox/demo/getting-started.min.js +6 -3
- package/components/checkbox/demo/index.min.js +6 -3
- package/components/checkbox/dist/auro-checkbox-group.d.ts +1 -0
- package/components/checkbox/dist/auro-checkbox.d.ts +3 -2
- package/components/checkbox/dist/index.js +6 -3
- package/components/checkbox/dist/registered.js +6 -3
- package/components/combobox/demo/api.md +1 -1
- package/components/combobox/demo/customize.min.js +10 -4
- package/components/combobox/demo/getting-started.min.js +10 -4
- package/components/combobox/demo/index.min.js +10 -4
- package/components/combobox/dist/auro-combobox.d.ts +2 -1
- package/components/combobox/dist/index.js +10 -4
- package/components/combobox/dist/registered.js +10 -4
- package/components/counter/demo/customize.min.js +7 -2
- package/components/counter/demo/index.min.js +7 -2
- package/components/counter/dist/auro-counter-group.d.ts +1 -0
- package/components/counter/dist/index.js +7 -2
- package/components/counter/dist/registered.js +7 -2
- package/components/datepicker/demo/customize.min.js +9 -3
- package/components/datepicker/demo/index.min.js +9 -3
- package/components/datepicker/dist/auro-datepicker.d.ts +1 -0
- package/components/datepicker/dist/index.js +9 -3
- package/components/datepicker/dist/registered.js +9 -3
- package/components/dropdown/demo/customize.min.js +3 -1
- package/components/dropdown/demo/getting-started.min.js +6 -2
- package/components/dropdown/demo/index.min.js +3 -1
- package/components/dropdown/dist/auro-dropdown.d.ts +1 -0
- package/components/dropdown/dist/index.js +3 -1
- package/components/dropdown/dist/registered.js +3 -1
- package/components/form/demo/customize.min.js +47 -18
- package/components/form/demo/getting-started.min.js +47 -18
- package/components/form/demo/index.min.js +47 -18
- package/components/form/demo/registerDemoDeps.min.js +47 -18
- package/components/helptext/dist/auro-helptext.d.ts +1 -0
- package/components/helptext/dist/index.js +1 -0
- package/components/helptext/dist/registered.js +1 -0
- package/components/input/demo/customize.min.js +3 -1
- package/components/input/demo/getting-started.min.js +3 -1
- package/components/input/demo/index.min.js +3 -1
- package/components/input/dist/base-input.d.ts +1 -0
- package/components/input/dist/index.js +3 -1
- package/components/input/dist/registered.js +3 -1
- package/components/radio/demo/api.md +2 -2
- package/components/radio/demo/customize.min.js +6 -3
- package/components/radio/demo/getting-started.min.js +6 -3
- package/components/radio/demo/index.min.js +6 -3
- package/components/radio/dist/auro-radio-group.d.ts +1 -0
- package/components/radio/dist/auro-radio.d.ts +3 -2
- package/components/radio/dist/index.js +6 -3
- package/components/radio/dist/registered.js +6 -3
- package/components/select/demo/customize.min.js +6 -2
- package/components/select/demo/getting-started.min.js +6 -2
- package/components/select/demo/index.min.js +6 -2
- package/components/select/dist/auro-select.d.ts +1 -0
- package/components/select/dist/index.js +6 -2
- package/components/select/dist/registered.js +6 -2
- package/custom-elements.json +39 -8
- package/package.json +1 -1
|
@@ -79,8 +79,8 @@ The `auro-checkbox` element is for the purpose of allowing users to select one o
|
|
|
79
79
|
|-------------------------|--------------------|--------------------------------------------------|
|
|
80
80
|
| `auroCheckbox-focusin` | `CustomEvent<any>` | Notifies when the checkbox receives focus. |
|
|
81
81
|
| `auroCheckbox-focusout` | `CustomEvent<any>` | Notifies when the checkbox loses focus. |
|
|
82
|
-
| `auroCheckbox-input` | `CustomEvent<any>` |
|
|
83
|
-
| `change` | |
|
|
82
|
+
| `auroCheckbox-input` | `CustomEvent<any>` | Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead. |
|
|
83
|
+
| `change` | | Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead. |
|
|
84
84
|
| `input` | | Notifies when when checked value is changed by user's interface. |
|
|
85
85
|
|
|
86
86
|
## Slots
|
|
@@ -149,9 +149,9 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
149
149
|
*
|
|
150
150
|
* @slot default - The default slot for the checkbox label.
|
|
151
151
|
*
|
|
152
|
-
* @fires change -
|
|
152
|
+
* @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
153
153
|
* @fires input - Notifies when when checked value is changed by user's interface.
|
|
154
|
-
* @event auroCheckbox-input -
|
|
154
|
+
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
155
155
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
156
156
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
157
157
|
*/
|
|
@@ -254,6 +254,7 @@ class AuroCheckbox extends i$2 {
|
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
256
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
257
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
257
258
|
*/
|
|
258
259
|
onDark: {
|
|
259
260
|
type: Boolean,
|
|
@@ -1210,6 +1211,7 @@ class AuroHelpText extends i$2 {
|
|
|
1210
1211
|
|
|
1211
1212
|
/**
|
|
1212
1213
|
* DEPRECATED - use `appearance` instead.
|
|
1214
|
+
* @deprecated Use `appearance` instead.
|
|
1213
1215
|
*/
|
|
1214
1216
|
onDark: {
|
|
1215
1217
|
type: Boolean,
|
|
@@ -1284,7 +1286,7 @@ class AuroHelpText extends i$2 {
|
|
|
1284
1286
|
}
|
|
1285
1287
|
}
|
|
1286
1288
|
|
|
1287
|
-
var formkitVersion = '
|
|
1289
|
+
var formkitVersion = '202608300149';
|
|
1288
1290
|
|
|
1289
1291
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1290
1292
|
// See LICENSE in the project root for license information.
|
|
@@ -1420,6 +1422,7 @@ class AuroCheckboxGroup extends i$2 {
|
|
|
1420
1422
|
|
|
1421
1423
|
/**
|
|
1422
1424
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
1425
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
1423
1426
|
*/
|
|
1424
1427
|
onDark: {
|
|
1425
1428
|
type: Boolean,
|
|
@@ -149,9 +149,9 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
149
149
|
*
|
|
150
150
|
* @slot default - The default slot for the checkbox label.
|
|
151
151
|
*
|
|
152
|
-
* @fires change -
|
|
152
|
+
* @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
153
153
|
* @fires input - Notifies when when checked value is changed by user's interface.
|
|
154
|
-
* @event auroCheckbox-input -
|
|
154
|
+
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
155
155
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
156
156
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
157
157
|
*/
|
|
@@ -254,6 +254,7 @@ class AuroCheckbox extends i$2 {
|
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
256
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
257
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
257
258
|
*/
|
|
258
259
|
onDark: {
|
|
259
260
|
type: Boolean,
|
|
@@ -1210,6 +1211,7 @@ class AuroHelpText extends i$2 {
|
|
|
1210
1211
|
|
|
1211
1212
|
/**
|
|
1212
1213
|
* DEPRECATED - use `appearance` instead.
|
|
1214
|
+
* @deprecated Use `appearance` instead.
|
|
1213
1215
|
*/
|
|
1214
1216
|
onDark: {
|
|
1215
1217
|
type: Boolean,
|
|
@@ -1284,7 +1286,7 @@ class AuroHelpText extends i$2 {
|
|
|
1284
1286
|
}
|
|
1285
1287
|
}
|
|
1286
1288
|
|
|
1287
|
-
var formkitVersion = '
|
|
1289
|
+
var formkitVersion = '202608300149';
|
|
1288
1290
|
|
|
1289
1291
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1290
1292
|
// See LICENSE in the project root for license information.
|
|
@@ -1420,6 +1422,7 @@ class AuroCheckboxGroup extends i$2 {
|
|
|
1420
1422
|
|
|
1421
1423
|
/**
|
|
1422
1424
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
1425
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
1423
1426
|
*/
|
|
1424
1427
|
onDark: {
|
|
1425
1428
|
type: Boolean,
|
|
@@ -149,9 +149,9 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
149
149
|
*
|
|
150
150
|
* @slot default - The default slot for the checkbox label.
|
|
151
151
|
*
|
|
152
|
-
* @fires change -
|
|
152
|
+
* @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
153
153
|
* @fires input - Notifies when when checked value is changed by user's interface.
|
|
154
|
-
* @event auroCheckbox-input -
|
|
154
|
+
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
155
155
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
156
156
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
157
157
|
*/
|
|
@@ -254,6 +254,7 @@ class AuroCheckbox extends i$2 {
|
|
|
254
254
|
|
|
255
255
|
/**
|
|
256
256
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
257
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
257
258
|
*/
|
|
258
259
|
onDark: {
|
|
259
260
|
type: Boolean,
|
|
@@ -1210,6 +1211,7 @@ class AuroHelpText extends i$2 {
|
|
|
1210
1211
|
|
|
1211
1212
|
/**
|
|
1212
1213
|
* DEPRECATED - use `appearance` instead.
|
|
1214
|
+
* @deprecated Use `appearance` instead.
|
|
1213
1215
|
*/
|
|
1214
1216
|
onDark: {
|
|
1215
1217
|
type: Boolean,
|
|
@@ -1284,7 +1286,7 @@ class AuroHelpText extends i$2 {
|
|
|
1284
1286
|
}
|
|
1285
1287
|
}
|
|
1286
1288
|
|
|
1287
|
-
var formkitVersion = '
|
|
1289
|
+
var formkitVersion = '202608300149';
|
|
1288
1290
|
|
|
1289
1291
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1290
1292
|
// See LICENSE in the project root for license information.
|
|
@@ -1420,6 +1422,7 @@ class AuroCheckboxGroup extends i$2 {
|
|
|
1420
1422
|
|
|
1421
1423
|
/**
|
|
1422
1424
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
1425
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
1423
1426
|
*/
|
|
1424
1427
|
onDark: {
|
|
1425
1428
|
type: Boolean,
|
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
*
|
|
9
9
|
* @slot default - The default slot for the checkbox label.
|
|
10
10
|
*
|
|
11
|
-
* @fires change -
|
|
11
|
+
* @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
12
12
|
* @fires input - Notifies when when checked value is changed by user's interface.
|
|
13
|
-
* @event auroCheckbox-input -
|
|
13
|
+
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
14
14
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
15
15
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
16
16
|
*/
|
|
@@ -68,6 +68,7 @@ export class AuroCheckbox extends LitElement {
|
|
|
68
68
|
};
|
|
69
69
|
/**
|
|
70
70
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
71
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
71
72
|
*/
|
|
72
73
|
onDark: {
|
|
73
74
|
type: BooleanConstructor;
|
|
@@ -109,9 +109,9 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
109
109
|
*
|
|
110
110
|
* @slot default - The default slot for the checkbox label.
|
|
111
111
|
*
|
|
112
|
-
* @fires change -
|
|
112
|
+
* @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
113
113
|
* @fires input - Notifies when when checked value is changed by user's interface.
|
|
114
|
-
* @event auroCheckbox-input -
|
|
114
|
+
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
115
115
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
116
116
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
117
117
|
*/
|
|
@@ -214,6 +214,7 @@ class AuroCheckbox extends LitElement {
|
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
216
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
217
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
217
218
|
*/
|
|
218
219
|
onDark: {
|
|
219
220
|
type: Boolean,
|
|
@@ -1163,6 +1164,7 @@ class AuroHelpText extends LitElement {
|
|
|
1163
1164
|
|
|
1164
1165
|
/**
|
|
1165
1166
|
* DEPRECATED - use `appearance` instead.
|
|
1167
|
+
* @deprecated Use `appearance` instead.
|
|
1166
1168
|
*/
|
|
1167
1169
|
onDark: {
|
|
1168
1170
|
type: Boolean,
|
|
@@ -1237,7 +1239,7 @@ class AuroHelpText extends LitElement {
|
|
|
1237
1239
|
}
|
|
1238
1240
|
}
|
|
1239
1241
|
|
|
1240
|
-
var formkitVersion = '
|
|
1242
|
+
var formkitVersion = '202608300149';
|
|
1241
1243
|
|
|
1242
1244
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1243
1245
|
// See LICENSE in the project root for license information.
|
|
@@ -1373,6 +1375,7 @@ class AuroCheckboxGroup extends LitElement {
|
|
|
1373
1375
|
|
|
1374
1376
|
/**
|
|
1375
1377
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
1378
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
1376
1379
|
*/
|
|
1377
1380
|
onDark: {
|
|
1378
1381
|
type: Boolean,
|
|
@@ -109,9 +109,9 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
109
109
|
*
|
|
110
110
|
* @slot default - The default slot for the checkbox label.
|
|
111
111
|
*
|
|
112
|
-
* @fires change -
|
|
112
|
+
* @fires change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
113
113
|
* @fires input - Notifies when when checked value is changed by user's interface.
|
|
114
|
-
* @event auroCheckbox-input -
|
|
114
|
+
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
115
115
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
116
116
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
117
117
|
*/
|
|
@@ -214,6 +214,7 @@ class AuroCheckbox extends LitElement {
|
|
|
214
214
|
|
|
215
215
|
/**
|
|
216
216
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
217
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
217
218
|
*/
|
|
218
219
|
onDark: {
|
|
219
220
|
type: Boolean,
|
|
@@ -1163,6 +1164,7 @@ class AuroHelpText extends LitElement {
|
|
|
1163
1164
|
|
|
1164
1165
|
/**
|
|
1165
1166
|
* DEPRECATED - use `appearance` instead.
|
|
1167
|
+
* @deprecated Use `appearance` instead.
|
|
1166
1168
|
*/
|
|
1167
1169
|
onDark: {
|
|
1168
1170
|
type: Boolean,
|
|
@@ -1237,7 +1239,7 @@ class AuroHelpText extends LitElement {
|
|
|
1237
1239
|
}
|
|
1238
1240
|
}
|
|
1239
1241
|
|
|
1240
|
-
var formkitVersion = '
|
|
1242
|
+
var formkitVersion = '202608300149';
|
|
1241
1243
|
|
|
1242
1244
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1243
1245
|
// See LICENSE in the project root for license information.
|
|
@@ -1373,6 +1375,7 @@ class AuroCheckboxGroup extends LitElement {
|
|
|
1373
1375
|
|
|
1374
1376
|
/**
|
|
1375
1377
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
1378
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
1376
1379
|
*/
|
|
1377
1380
|
onDark: {
|
|
1378
1381
|
type: Boolean,
|
|
@@ -64,7 +64,7 @@ The `auro-combobox` element provides users with a way to select an option from a
|
|
|
64
64
|
|
|
65
65
|
| Event | Type | Description |
|
|
66
66
|
|-----------------------------|--------------------------------------------------|--------------------------------------------------|
|
|
67
|
-
| `auroCombobox-valueSet` | `CustomEvent<any>` |
|
|
67
|
+
| `auroCombobox-valueSet` | `CustomEvent<any>` | Notifies that the component has a new value set. **DEPRECATED** - Use the `input` event instead. |
|
|
68
68
|
| `auroFormElement-validated` | | Notifies that the component value(s) have been validated. |
|
|
69
69
|
| `input` | `CustomEvent<{ optionSelected: any; value: any; }>` | Notifies that the component has a new value set. |
|
|
70
70
|
| `inputValue` | `CustomEvent<{ value: string \| undefined; }>` | Notifies that the components internal HTML5 input value has changed. |
|
|
@@ -4931,6 +4931,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
4931
4931
|
|
|
4932
4932
|
/**
|
|
4933
4933
|
* DEPRECATED - use `appearance` instead.
|
|
4934
|
+
* @deprecated Use `appearance` instead.
|
|
4934
4935
|
*/
|
|
4935
4936
|
onDark: {
|
|
4936
4937
|
type: Boolean,
|
|
@@ -5005,7 +5006,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5005
5006
|
}
|
|
5006
5007
|
};
|
|
5007
5008
|
|
|
5008
|
-
var formkitVersion$2 = '
|
|
5009
|
+
var formkitVersion$2 = '202608300149';
|
|
5009
5010
|
|
|
5010
5011
|
/**
|
|
5011
5012
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5659,6 +5660,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5659
5660
|
|
|
5660
5661
|
/**
|
|
5661
5662
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
5663
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
5662
5664
|
*/
|
|
5663
5665
|
onDark: {
|
|
5664
5666
|
type: Boolean,
|
|
@@ -17517,6 +17519,7 @@ class BaseInput extends AuroElement$1 {
|
|
|
17517
17519
|
|
|
17518
17520
|
/**
|
|
17519
17521
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
17522
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
17520
17523
|
*/
|
|
17521
17524
|
onDark: {
|
|
17522
17525
|
type: Boolean,
|
|
@@ -18797,6 +18800,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18797
18800
|
|
|
18798
18801
|
/**
|
|
18799
18802
|
* DEPRECATED - use `appearance` instead.
|
|
18803
|
+
* @deprecated Use `appearance` instead.
|
|
18800
18804
|
*/
|
|
18801
18805
|
onDark: {
|
|
18802
18806
|
type: Boolean,
|
|
@@ -18871,7 +18875,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18871
18875
|
}
|
|
18872
18876
|
};
|
|
18873
18877
|
|
|
18874
|
-
var formkitVersion$1 = '
|
|
18878
|
+
var formkitVersion$1 = '202608300149';
|
|
18875
18879
|
|
|
18876
18880
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18877
18881
|
// See LICENSE in the project root for license information.
|
|
@@ -20063,7 +20067,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
20063
20067
|
}
|
|
20064
20068
|
}
|
|
20065
20069
|
|
|
20066
|
-
var formkitVersion = '
|
|
20070
|
+
var formkitVersion = '202608300149';
|
|
20067
20071
|
|
|
20068
20072
|
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}`;
|
|
20069
20073
|
|
|
@@ -20334,6 +20338,7 @@ class AuroHelpText extends i$3 {
|
|
|
20334
20338
|
|
|
20335
20339
|
/**
|
|
20336
20340
|
* DEPRECATED - use `appearance` instead.
|
|
20341
|
+
* @deprecated Use `appearance` instead.
|
|
20337
20342
|
*/
|
|
20338
20343
|
onDark: {
|
|
20339
20344
|
type: Boolean,
|
|
@@ -20469,7 +20474,7 @@ function getOptionLabel(option) {
|
|
|
20469
20474
|
* @slot helpText - Defines the content of the helpText.
|
|
20470
20475
|
* @slot displayValue - Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.
|
|
20471
20476
|
* @csspart helpText - The help text and error message content container.
|
|
20472
|
-
* @event auroCombobox-valueSet -
|
|
20477
|
+
* @event auroCombobox-valueSet - Notifies that the component has a new value set. **DEPRECATED** - Use the `input` event instead.
|
|
20473
20478
|
* @event input - Notifies that the component has a new value set.
|
|
20474
20479
|
* @event inputValue - Notifies that the components internal HTML5 input value has changed.
|
|
20475
20480
|
* @event auroFormElement-validated - Notifies that the component value(s) have been validated.
|
|
@@ -20794,6 +20799,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20794
20799
|
|
|
20795
20800
|
/**
|
|
20796
20801
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
20802
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
20797
20803
|
*/
|
|
20798
20804
|
onDark: {
|
|
20799
20805
|
type: Boolean,
|
|
@@ -4931,6 +4931,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
4931
4931
|
|
|
4932
4932
|
/**
|
|
4933
4933
|
* DEPRECATED - use `appearance` instead.
|
|
4934
|
+
* @deprecated Use `appearance` instead.
|
|
4934
4935
|
*/
|
|
4935
4936
|
onDark: {
|
|
4936
4937
|
type: Boolean,
|
|
@@ -5005,7 +5006,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5005
5006
|
}
|
|
5006
5007
|
};
|
|
5007
5008
|
|
|
5008
|
-
var formkitVersion$2 = '
|
|
5009
|
+
var formkitVersion$2 = '202608300149';
|
|
5009
5010
|
|
|
5010
5011
|
/**
|
|
5011
5012
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5659,6 +5660,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5659
5660
|
|
|
5660
5661
|
/**
|
|
5661
5662
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
5663
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
5662
5664
|
*/
|
|
5663
5665
|
onDark: {
|
|
5664
5666
|
type: Boolean,
|
|
@@ -17517,6 +17519,7 @@ class BaseInput extends AuroElement$1 {
|
|
|
17517
17519
|
|
|
17518
17520
|
/**
|
|
17519
17521
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
17522
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
17520
17523
|
*/
|
|
17521
17524
|
onDark: {
|
|
17522
17525
|
type: Boolean,
|
|
@@ -18797,6 +18800,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18797
18800
|
|
|
18798
18801
|
/**
|
|
18799
18802
|
* DEPRECATED - use `appearance` instead.
|
|
18803
|
+
* @deprecated Use `appearance` instead.
|
|
18800
18804
|
*/
|
|
18801
18805
|
onDark: {
|
|
18802
18806
|
type: Boolean,
|
|
@@ -18871,7 +18875,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18871
18875
|
}
|
|
18872
18876
|
};
|
|
18873
18877
|
|
|
18874
|
-
var formkitVersion$1 = '
|
|
18878
|
+
var formkitVersion$1 = '202608300149';
|
|
18875
18879
|
|
|
18876
18880
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18877
18881
|
// See LICENSE in the project root for license information.
|
|
@@ -20063,7 +20067,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
20063
20067
|
}
|
|
20064
20068
|
}
|
|
20065
20069
|
|
|
20066
|
-
var formkitVersion = '
|
|
20070
|
+
var formkitVersion = '202608300149';
|
|
20067
20071
|
|
|
20068
20072
|
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}`;
|
|
20069
20073
|
|
|
@@ -20334,6 +20338,7 @@ class AuroHelpText extends i$3 {
|
|
|
20334
20338
|
|
|
20335
20339
|
/**
|
|
20336
20340
|
* DEPRECATED - use `appearance` instead.
|
|
20341
|
+
* @deprecated Use `appearance` instead.
|
|
20337
20342
|
*/
|
|
20338
20343
|
onDark: {
|
|
20339
20344
|
type: Boolean,
|
|
@@ -20469,7 +20474,7 @@ function getOptionLabel(option) {
|
|
|
20469
20474
|
* @slot helpText - Defines the content of the helpText.
|
|
20470
20475
|
* @slot displayValue - Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.
|
|
20471
20476
|
* @csspart helpText - The help text and error message content container.
|
|
20472
|
-
* @event auroCombobox-valueSet -
|
|
20477
|
+
* @event auroCombobox-valueSet - Notifies that the component has a new value set. **DEPRECATED** - Use the `input` event instead.
|
|
20473
20478
|
* @event input - Notifies that the component has a new value set.
|
|
20474
20479
|
* @event inputValue - Notifies that the components internal HTML5 input value has changed.
|
|
20475
20480
|
* @event auroFormElement-validated - Notifies that the component value(s) have been validated.
|
|
@@ -20794,6 +20799,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20794
20799
|
|
|
20795
20800
|
/**
|
|
20796
20801
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
20802
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
20797
20803
|
*/
|
|
20798
20804
|
onDark: {
|
|
20799
20805
|
type: Boolean,
|
|
@@ -4946,6 +4946,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
4946
4946
|
|
|
4947
4947
|
/**
|
|
4948
4948
|
* DEPRECATED - use `appearance` instead.
|
|
4949
|
+
* @deprecated Use `appearance` instead.
|
|
4949
4950
|
*/
|
|
4950
4951
|
onDark: {
|
|
4951
4952
|
type: Boolean,
|
|
@@ -5020,7 +5021,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5020
5021
|
}
|
|
5021
5022
|
};
|
|
5022
5023
|
|
|
5023
|
-
var formkitVersion$2 = '
|
|
5024
|
+
var formkitVersion$2 = '202608300149';
|
|
5024
5025
|
|
|
5025
5026
|
/**
|
|
5026
5027
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5674,6 +5675,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5674
5675
|
|
|
5675
5676
|
/**
|
|
5676
5677
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
5678
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
5677
5679
|
*/
|
|
5678
5680
|
onDark: {
|
|
5679
5681
|
type: Boolean,
|
|
@@ -17532,6 +17534,7 @@ class BaseInput extends AuroElement$1 {
|
|
|
17532
17534
|
|
|
17533
17535
|
/**
|
|
17534
17536
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
17537
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
17535
17538
|
*/
|
|
17536
17539
|
onDark: {
|
|
17537
17540
|
type: Boolean,
|
|
@@ -18812,6 +18815,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18812
18815
|
|
|
18813
18816
|
/**
|
|
18814
18817
|
* DEPRECATED - use `appearance` instead.
|
|
18818
|
+
* @deprecated Use `appearance` instead.
|
|
18815
18819
|
*/
|
|
18816
18820
|
onDark: {
|
|
18817
18821
|
type: Boolean,
|
|
@@ -18886,7 +18890,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18886
18890
|
}
|
|
18887
18891
|
};
|
|
18888
18892
|
|
|
18889
|
-
var formkitVersion$1 = '
|
|
18893
|
+
var formkitVersion$1 = '202608300149';
|
|
18890
18894
|
|
|
18891
18895
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18892
18896
|
// See LICENSE in the project root for license information.
|
|
@@ -20078,7 +20082,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
20078
20082
|
}
|
|
20079
20083
|
}
|
|
20080
20084
|
|
|
20081
|
-
var formkitVersion = '
|
|
20085
|
+
var formkitVersion = '202608300149';
|
|
20082
20086
|
|
|
20083
20087
|
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}`;
|
|
20084
20088
|
|
|
@@ -20349,6 +20353,7 @@ class AuroHelpText extends i$3 {
|
|
|
20349
20353
|
|
|
20350
20354
|
/**
|
|
20351
20355
|
* DEPRECATED - use `appearance` instead.
|
|
20356
|
+
* @deprecated Use `appearance` instead.
|
|
20352
20357
|
*/
|
|
20353
20358
|
onDark: {
|
|
20354
20359
|
type: Boolean,
|
|
@@ -20484,7 +20489,7 @@ function getOptionLabel(option) {
|
|
|
20484
20489
|
* @slot helpText - Defines the content of the helpText.
|
|
20485
20490
|
* @slot displayValue - Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.
|
|
20486
20491
|
* @csspart helpText - The help text and error message content container.
|
|
20487
|
-
* @event auroCombobox-valueSet -
|
|
20492
|
+
* @event auroCombobox-valueSet - Notifies that the component has a new value set. **DEPRECATED** - Use the `input` event instead.
|
|
20488
20493
|
* @event input - Notifies that the component has a new value set.
|
|
20489
20494
|
* @event inputValue - Notifies that the components internal HTML5 input value has changed.
|
|
20490
20495
|
* @event auroFormElement-validated - Notifies that the component value(s) have been validated.
|
|
@@ -20809,6 +20814,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20809
20814
|
|
|
20810
20815
|
/**
|
|
20811
20816
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
20817
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
20812
20818
|
*/
|
|
20813
20819
|
onDark: {
|
|
20814
20820
|
type: Boolean,
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
* @slot helpText - Defines the content of the helpText.
|
|
12
12
|
* @slot displayValue - Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.
|
|
13
13
|
* @csspart helpText - The help text and error message content container.
|
|
14
|
-
* @event auroCombobox-valueSet -
|
|
14
|
+
* @event auroCombobox-valueSet - Notifies that the component has a new value set. **DEPRECATED** - Use the `input` event instead.
|
|
15
15
|
* @event input - Notifies that the component has a new value set.
|
|
16
16
|
* @event inputValue - Notifies that the components internal HTML5 input value has changed.
|
|
17
17
|
* @event auroFormElement-validated - Notifies that the component value(s) have been validated.
|
|
@@ -183,6 +183,7 @@ export class AuroCombobox extends AuroElement {
|
|
|
183
183
|
};
|
|
184
184
|
/**
|
|
185
185
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
186
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
186
187
|
*/
|
|
187
188
|
onDark: {
|
|
188
189
|
type: BooleanConstructor;
|
|
@@ -4864,6 +4864,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4864
4864
|
|
|
4865
4865
|
/**
|
|
4866
4866
|
* DEPRECATED - use `appearance` instead.
|
|
4867
|
+
* @deprecated Use `appearance` instead.
|
|
4867
4868
|
*/
|
|
4868
4869
|
onDark: {
|
|
4869
4870
|
type: Boolean,
|
|
@@ -4938,7 +4939,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4938
4939
|
}
|
|
4939
4940
|
};
|
|
4940
4941
|
|
|
4941
|
-
var formkitVersion$2 = '
|
|
4942
|
+
var formkitVersion$2 = '202608300149';
|
|
4942
4943
|
|
|
4943
4944
|
/**
|
|
4944
4945
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5592,6 +5593,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5592
5593
|
|
|
5593
5594
|
/**
|
|
5594
5595
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
5596
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
5595
5597
|
*/
|
|
5596
5598
|
onDark: {
|
|
5597
5599
|
type: Boolean,
|
|
@@ -17443,6 +17445,7 @@ class BaseInput extends AuroElement$1 {
|
|
|
17443
17445
|
|
|
17444
17446
|
/**
|
|
17445
17447
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
17448
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
17446
17449
|
*/
|
|
17447
17450
|
onDark: {
|
|
17448
17451
|
type: Boolean,
|
|
@@ -18723,6 +18726,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
18723
18726
|
|
|
18724
18727
|
/**
|
|
18725
18728
|
* DEPRECATED - use `appearance` instead.
|
|
18729
|
+
* @deprecated Use `appearance` instead.
|
|
18726
18730
|
*/
|
|
18727
18731
|
onDark: {
|
|
18728
18732
|
type: Boolean,
|
|
@@ -18797,7 +18801,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
18797
18801
|
}
|
|
18798
18802
|
};
|
|
18799
18803
|
|
|
18800
|
-
var formkitVersion$1 = '
|
|
18804
|
+
var formkitVersion$1 = '202608300149';
|
|
18801
18805
|
|
|
18802
18806
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18803
18807
|
// See LICENSE in the project root for license information.
|
|
@@ -19989,7 +19993,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
19989
19993
|
}
|
|
19990
19994
|
}
|
|
19991
19995
|
|
|
19992
|
-
var formkitVersion = '
|
|
19996
|
+
var formkitVersion = '202608300149';
|
|
19993
19997
|
|
|
19994
19998
|
var styleCss$1 = css`.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}`;
|
|
19995
19999
|
|
|
@@ -20260,6 +20264,7 @@ class AuroHelpText extends LitElement {
|
|
|
20260
20264
|
|
|
20261
20265
|
/**
|
|
20262
20266
|
* DEPRECATED - use `appearance` instead.
|
|
20267
|
+
* @deprecated Use `appearance` instead.
|
|
20263
20268
|
*/
|
|
20264
20269
|
onDark: {
|
|
20265
20270
|
type: Boolean,
|
|
@@ -20395,7 +20400,7 @@ function getOptionLabel(option) {
|
|
|
20395
20400
|
* @slot helpText - Defines the content of the helpText.
|
|
20396
20401
|
* @slot displayValue - Allows custom HTML content to display the selected value when the combobox is not focused. Only works with `snowflake` and `emphasized` layouts.
|
|
20397
20402
|
* @csspart helpText - The help text and error message content container.
|
|
20398
|
-
* @event auroCombobox-valueSet -
|
|
20403
|
+
* @event auroCombobox-valueSet - Notifies that the component has a new value set. **DEPRECATED** - Use the `input` event instead.
|
|
20399
20404
|
* @event input - Notifies that the component has a new value set.
|
|
20400
20405
|
* @event inputValue - Notifies that the components internal HTML5 input value has changed.
|
|
20401
20406
|
* @event auroFormElement-validated - Notifies that the component value(s) have been validated.
|
|
@@ -20720,6 +20725,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20720
20725
|
|
|
20721
20726
|
/**
|
|
20722
20727
|
* DEPRECATED - use `appearance="inverse"` instead.
|
|
20728
|
+
* @deprecated Use `appearance="inverse"` instead.
|
|
20723
20729
|
*/
|
|
20724
20730
|
onDark: {
|
|
20725
20731
|
type: Boolean,
|