@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.7 → 0.0.0-pr1600.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.md +1 -1
- package/components/checkbox/demo/customize.min.js +3 -5
- package/components/checkbox/demo/getting-started.min.js +3 -5
- package/components/checkbox/demo/index.min.js +3 -5
- package/components/checkbox/dist/auro-checkbox.d.ts +2 -2
- package/components/checkbox/dist/index.js +3 -5
- package/components/checkbox/dist/registered.js +3 -5
- package/components/combobox/demo/customize.min.js +14 -3
- package/components/combobox/demo/getting-started.min.js +14 -3
- package/components/combobox/demo/index.min.js +14 -3
- package/components/combobox/dist/auro-combobox.d.ts +10 -5
- package/components/combobox/dist/index.js +14 -3
- package/components/combobox/dist/registered.js +14 -3
- package/components/counter/demo/customize.min.js +87 -4
- package/components/counter/demo/index.min.js +87 -4
- package/components/counter/dist/auro-counter-group.d.ts +16 -2
- package/components/counter/dist/auro-counter.d.ts +20 -0
- package/components/counter/dist/index.js +87 -4
- package/components/counter/dist/registered.js +87 -4
- package/components/datepicker/demo/customize.min.js +6 -3
- package/components/datepicker/demo/index.min.js +6 -3
- package/components/datepicker/dist/auro-datepicker.d.ts +4 -2
- package/components/datepicker/dist/index.js +6 -3
- package/components/datepicker/dist/registered.js +6 -3
- package/components/dropdown/demo/customize.min.js +1 -1
- package/components/dropdown/demo/getting-started.min.js +2 -2
- 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/form/demo/customize.min.js +114 -19
- package/components/form/demo/getting-started.min.js +114 -19
- package/components/form/demo/index.min.js +114 -19
- package/components/form/demo/registerDemoDeps.min.js +114 -19
- package/components/input/demo/customize.min.js +1 -1
- package/components/input/demo/getting-started.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/radio/demo/customize.min.js +1 -1
- package/components/radio/demo/getting-started.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/demo/customize.min.js +2 -2
- package/components/select/demo/getting-started.min.js +2 -2
- package/components/select/demo/index.min.js +2 -2
- package/components/select/dist/index.js +2 -2
- package/components/select/dist/registered.js +2 -2
- package/custom-elements.json +55 -9
- package/package.json +1 -1
|
@@ -81,7 +81,7 @@ The `auro-checkbox` element is for the purpose of allowing users to select one o
|
|
|
81
81
|
| `auroCheckbox-focusout` | `CustomEvent<any>` | Notifies when the checkbox loses focus. |
|
|
82
82
|
| `auroCheckbox-input` | `CustomEvent<any>` | Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead. |
|
|
83
83
|
| `change` | | Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead. |
|
|
84
|
-
| `input` | | Notifies when
|
|
84
|
+
| `input` | | Notifies when checked value is changed by user's interface. |
|
|
85
85
|
|
|
86
86
|
## Slots
|
|
87
87
|
|
|
@@ -138,7 +138,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
138
138
|
// See LICENSE in the project root for license information.
|
|
139
139
|
|
|
140
140
|
|
|
141
|
-
/* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
|
|
142
141
|
/**
|
|
143
142
|
* The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
|
|
144
143
|
* @customElement auro-checkbox
|
|
@@ -149,13 +148,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
149
148
|
*
|
|
150
149
|
* @slot default - The default slot for the checkbox label.
|
|
151
150
|
*
|
|
152
|
-
* @
|
|
153
|
-
* @
|
|
151
|
+
* @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
152
|
+
* @event input - Notifies when checked value is changed by user's interface.
|
|
154
153
|
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
155
154
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
156
155
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
157
156
|
*/
|
|
158
|
-
/* eslint-enable jsdoc/no-undefined-types */
|
|
159
157
|
|
|
160
158
|
// build the component class
|
|
161
159
|
class AuroCheckbox extends i$2 {
|
|
@@ -1286,7 +1284,7 @@ class AuroHelpText extends i$2 {
|
|
|
1286
1284
|
}
|
|
1287
1285
|
}
|
|
1288
1286
|
|
|
1289
|
-
var formkitVersion = '
|
|
1287
|
+
var formkitVersion = '202608312237';
|
|
1290
1288
|
|
|
1291
1289
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1292
1290
|
// See LICENSE in the project root for license information.
|
|
@@ -138,7 +138,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
138
138
|
// See LICENSE in the project root for license information.
|
|
139
139
|
|
|
140
140
|
|
|
141
|
-
/* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
|
|
142
141
|
/**
|
|
143
142
|
* The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
|
|
144
143
|
* @customElement auro-checkbox
|
|
@@ -149,13 +148,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
149
148
|
*
|
|
150
149
|
* @slot default - The default slot for the checkbox label.
|
|
151
150
|
*
|
|
152
|
-
* @
|
|
153
|
-
* @
|
|
151
|
+
* @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
152
|
+
* @event input - Notifies when checked value is changed by user's interface.
|
|
154
153
|
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
155
154
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
156
155
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
157
156
|
*/
|
|
158
|
-
/* eslint-enable jsdoc/no-undefined-types */
|
|
159
157
|
|
|
160
158
|
// build the component class
|
|
161
159
|
class AuroCheckbox extends i$2 {
|
|
@@ -1286,7 +1284,7 @@ class AuroHelpText extends i$2 {
|
|
|
1286
1284
|
}
|
|
1287
1285
|
}
|
|
1288
1286
|
|
|
1289
|
-
var formkitVersion = '
|
|
1287
|
+
var formkitVersion = '202608312237';
|
|
1290
1288
|
|
|
1291
1289
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1292
1290
|
// See LICENSE in the project root for license information.
|
|
@@ -138,7 +138,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
138
138
|
// See LICENSE in the project root for license information.
|
|
139
139
|
|
|
140
140
|
|
|
141
|
-
/* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
|
|
142
141
|
/**
|
|
143
142
|
* The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
|
|
144
143
|
* @customElement auro-checkbox
|
|
@@ -149,13 +148,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
149
148
|
*
|
|
150
149
|
* @slot default - The default slot for the checkbox label.
|
|
151
150
|
*
|
|
152
|
-
* @
|
|
153
|
-
* @
|
|
151
|
+
* @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
152
|
+
* @event input - Notifies when checked value is changed by user's interface.
|
|
154
153
|
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
155
154
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
156
155
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
157
156
|
*/
|
|
158
|
-
/* eslint-enable jsdoc/no-undefined-types */
|
|
159
157
|
|
|
160
158
|
// build the component class
|
|
161
159
|
class AuroCheckbox extends i$2 {
|
|
@@ -1286,7 +1284,7 @@ class AuroHelpText extends i$2 {
|
|
|
1286
1284
|
}
|
|
1287
1285
|
}
|
|
1288
1286
|
|
|
1289
|
-
var formkitVersion = '
|
|
1287
|
+
var formkitVersion = '202608312237';
|
|
1290
1288
|
|
|
1291
1289
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1292
1290
|
// See LICENSE in the project root for license information.
|
|
@@ -8,8 +8,8 @@
|
|
|
8
8
|
*
|
|
9
9
|
* @slot default - The default slot for the checkbox label.
|
|
10
10
|
*
|
|
11
|
-
* @
|
|
12
|
-
* @
|
|
11
|
+
* @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
12
|
+
* @event input - Notifies when checked value is changed by user's interface.
|
|
13
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.
|
|
@@ -98,7 +98,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
98
98
|
// See LICENSE in the project root for license information.
|
|
99
99
|
|
|
100
100
|
|
|
101
|
-
/* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
|
|
102
101
|
/**
|
|
103
102
|
* The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
|
|
104
103
|
* @customElement auro-checkbox
|
|
@@ -109,13 +108,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
109
108
|
*
|
|
110
109
|
* @slot default - The default slot for the checkbox label.
|
|
111
110
|
*
|
|
112
|
-
* @
|
|
113
|
-
* @
|
|
111
|
+
* @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
112
|
+
* @event input - Notifies when checked value is changed by user's interface.
|
|
114
113
|
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
115
114
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
116
115
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
117
116
|
*/
|
|
118
|
-
/* eslint-enable jsdoc/no-undefined-types */
|
|
119
117
|
|
|
120
118
|
// build the component class
|
|
121
119
|
class AuroCheckbox extends LitElement {
|
|
@@ -1239,7 +1237,7 @@ class AuroHelpText extends LitElement {
|
|
|
1239
1237
|
}
|
|
1240
1238
|
}
|
|
1241
1239
|
|
|
1242
|
-
var formkitVersion = '
|
|
1240
|
+
var formkitVersion = '202608312237';
|
|
1243
1241
|
|
|
1244
1242
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1245
1243
|
// See LICENSE in the project root for license information.
|
|
@@ -98,7 +98,6 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
98
98
|
// See LICENSE in the project root for license information.
|
|
99
99
|
|
|
100
100
|
|
|
101
|
-
/* eslint-disable jsdoc/no-undefined-types -- @fires event names are not types */
|
|
102
101
|
/**
|
|
103
102
|
* The `auro-checkbox` element is for the purpose of allowing users to select one or more options of a limited number of choices.
|
|
104
103
|
* @customElement auro-checkbox
|
|
@@ -109,13 +108,12 @@ let AuroLibraryRuntimeUtils$1 = class AuroLibraryRuntimeUtils {
|
|
|
109
108
|
*
|
|
110
109
|
* @slot default - The default slot for the checkbox label.
|
|
111
110
|
*
|
|
112
|
-
* @
|
|
113
|
-
* @
|
|
111
|
+
* @event change - Notifies when checked value is changed. **DEPRECATED** - Use the `input` event instead.
|
|
112
|
+
* @event input - Notifies when checked value is changed by user's interface.
|
|
114
113
|
* @event auroCheckbox-input - Notifies when the checked value is changed by user interaction. **DEPRECATED** - Use the `input` event instead.
|
|
115
114
|
* @event auroCheckbox-focusin - Notifies when the checkbox receives focus.
|
|
116
115
|
* @event auroCheckbox-focusout - Notifies when the checkbox loses focus.
|
|
117
116
|
*/
|
|
118
|
-
/* eslint-enable jsdoc/no-undefined-types */
|
|
119
117
|
|
|
120
118
|
// build the component class
|
|
121
119
|
class AuroCheckbox extends LitElement {
|
|
@@ -1239,7 +1237,7 @@ class AuroHelpText extends LitElement {
|
|
|
1239
1237
|
}
|
|
1240
1238
|
}
|
|
1241
1239
|
|
|
1242
|
-
var formkitVersion = '
|
|
1240
|
+
var formkitVersion = '202608312237';
|
|
1243
1241
|
|
|
1244
1242
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1245
1243
|
// See LICENSE in the project root for license information.
|
|
@@ -5066,7 +5066,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5066
5066
|
}
|
|
5067
5067
|
};
|
|
5068
5068
|
|
|
5069
|
-
var formkitVersion$2 = '
|
|
5069
|
+
var formkitVersion$2 = '202608312237';
|
|
5070
5070
|
|
|
5071
5071
|
/**
|
|
5072
5072
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -18935,7 +18935,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18935
18935
|
}
|
|
18936
18936
|
};
|
|
18937
18937
|
|
|
18938
|
-
var formkitVersion$1 = '
|
|
18938
|
+
var formkitVersion$1 = '202608312237';
|
|
18939
18939
|
|
|
18940
18940
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18941
18941
|
// See LICENSE in the project root for license information.
|
|
@@ -20127,7 +20127,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
20127
20127
|
}
|
|
20128
20128
|
}
|
|
20129
20129
|
|
|
20130
|
-
var formkitVersion = '
|
|
20130
|
+
var formkitVersion = '202608312237';
|
|
20131
20131
|
|
|
20132
20132
|
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}`;
|
|
20133
20133
|
|
|
@@ -20563,20 +20563,31 @@ class AuroCombobox extends AuroElement {
|
|
|
20563
20563
|
this.persistInput = false;
|
|
20564
20564
|
this.required = false;
|
|
20565
20565
|
this.typedValue = undefined;
|
|
20566
|
+
|
|
20567
|
+
/** @type {'filter' | 'suggestion'} */
|
|
20566
20568
|
this.behavior = "suggestion";
|
|
20567
20569
|
this.clearBtnFocused = false;
|
|
20568
20570
|
|
|
20569
20571
|
// Defaults that effect the overall layout of the combobox
|
|
20570
20572
|
this.checkmark = false;
|
|
20571
20573
|
this.dvInputOnly = false;
|
|
20574
|
+
|
|
20575
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
20572
20576
|
this.fullscreenBreakpoint = 'sm';
|
|
20577
|
+
|
|
20578
|
+
/** @type {'classic' | 'emphasized' | 'snowflake'} */
|
|
20573
20579
|
this.layout = 'classic';
|
|
20574
20580
|
this.matchWidth = true;
|
|
20581
|
+
|
|
20582
|
+
/** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
|
|
20575
20583
|
this.shape = 'classic';
|
|
20584
|
+
|
|
20585
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
|
|
20576
20586
|
this.size = 'xl';
|
|
20577
20587
|
this.triggerIcon = false;
|
|
20578
20588
|
|
|
20579
20589
|
// Defaults that effect the dropdown
|
|
20590
|
+
/** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
|
|
20580
20591
|
this.placement = 'bottom-start';
|
|
20581
20592
|
this.offset = 0;
|
|
20582
20593
|
this.noFlip = false;
|
|
@@ -5066,7 +5066,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5066
5066
|
}
|
|
5067
5067
|
};
|
|
5068
5068
|
|
|
5069
|
-
var formkitVersion$2 = '
|
|
5069
|
+
var formkitVersion$2 = '202608312237';
|
|
5070
5070
|
|
|
5071
5071
|
/**
|
|
5072
5072
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -18935,7 +18935,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18935
18935
|
}
|
|
18936
18936
|
};
|
|
18937
18937
|
|
|
18938
|
-
var formkitVersion$1 = '
|
|
18938
|
+
var formkitVersion$1 = '202608312237';
|
|
18939
18939
|
|
|
18940
18940
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18941
18941
|
// See LICENSE in the project root for license information.
|
|
@@ -20127,7 +20127,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
20127
20127
|
}
|
|
20128
20128
|
}
|
|
20129
20129
|
|
|
20130
|
-
var formkitVersion = '
|
|
20130
|
+
var formkitVersion = '202608312237';
|
|
20131
20131
|
|
|
20132
20132
|
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}`;
|
|
20133
20133
|
|
|
@@ -20563,20 +20563,31 @@ class AuroCombobox extends AuroElement {
|
|
|
20563
20563
|
this.persistInput = false;
|
|
20564
20564
|
this.required = false;
|
|
20565
20565
|
this.typedValue = undefined;
|
|
20566
|
+
|
|
20567
|
+
/** @type {'filter' | 'suggestion'} */
|
|
20566
20568
|
this.behavior = "suggestion";
|
|
20567
20569
|
this.clearBtnFocused = false;
|
|
20568
20570
|
|
|
20569
20571
|
// Defaults that effect the overall layout of the combobox
|
|
20570
20572
|
this.checkmark = false;
|
|
20571
20573
|
this.dvInputOnly = false;
|
|
20574
|
+
|
|
20575
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
20572
20576
|
this.fullscreenBreakpoint = 'sm';
|
|
20577
|
+
|
|
20578
|
+
/** @type {'classic' | 'emphasized' | 'snowflake'} */
|
|
20573
20579
|
this.layout = 'classic';
|
|
20574
20580
|
this.matchWidth = true;
|
|
20581
|
+
|
|
20582
|
+
/** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
|
|
20575
20583
|
this.shape = 'classic';
|
|
20584
|
+
|
|
20585
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
|
|
20576
20586
|
this.size = 'xl';
|
|
20577
20587
|
this.triggerIcon = false;
|
|
20578
20588
|
|
|
20579
20589
|
// Defaults that effect the dropdown
|
|
20590
|
+
/** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
|
|
20580
20591
|
this.placement = 'bottom-start';
|
|
20581
20592
|
this.offset = 0;
|
|
20582
20593
|
this.noFlip = false;
|
|
@@ -5081,7 +5081,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$3 {
|
|
|
5081
5081
|
}
|
|
5082
5082
|
};
|
|
5083
5083
|
|
|
5084
|
-
var formkitVersion$2 = '
|
|
5084
|
+
var formkitVersion$2 = '202608312237';
|
|
5085
5085
|
|
|
5086
5086
|
/**
|
|
5087
5087
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -18950,7 +18950,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$3 {
|
|
|
18950
18950
|
}
|
|
18951
18951
|
};
|
|
18952
18952
|
|
|
18953
|
-
var formkitVersion$1 = '
|
|
18953
|
+
var formkitVersion$1 = '202608312237';
|
|
18954
18954
|
|
|
18955
18955
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18956
18956
|
// See LICENSE in the project root for license information.
|
|
@@ -20142,7 +20142,7 @@ class AuroBibtemplate extends i$3 {
|
|
|
20142
20142
|
}
|
|
20143
20143
|
}
|
|
20144
20144
|
|
|
20145
|
-
var formkitVersion = '
|
|
20145
|
+
var formkitVersion = '202608312237';
|
|
20146
20146
|
|
|
20147
20147
|
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}`;
|
|
20148
20148
|
|
|
@@ -20578,20 +20578,31 @@ class AuroCombobox extends AuroElement {
|
|
|
20578
20578
|
this.persistInput = false;
|
|
20579
20579
|
this.required = false;
|
|
20580
20580
|
this.typedValue = undefined;
|
|
20581
|
+
|
|
20582
|
+
/** @type {'filter' | 'suggestion'} */
|
|
20581
20583
|
this.behavior = "suggestion";
|
|
20582
20584
|
this.clearBtnFocused = false;
|
|
20583
20585
|
|
|
20584
20586
|
// Defaults that effect the overall layout of the combobox
|
|
20585
20587
|
this.checkmark = false;
|
|
20586
20588
|
this.dvInputOnly = false;
|
|
20589
|
+
|
|
20590
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
20587
20591
|
this.fullscreenBreakpoint = 'sm';
|
|
20592
|
+
|
|
20593
|
+
/** @type {'classic' | 'emphasized' | 'snowflake'} */
|
|
20588
20594
|
this.layout = 'classic';
|
|
20589
20595
|
this.matchWidth = true;
|
|
20596
|
+
|
|
20597
|
+
/** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
|
|
20590
20598
|
this.shape = 'classic';
|
|
20599
|
+
|
|
20600
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
|
|
20591
20601
|
this.size = 'xl';
|
|
20592
20602
|
this.triggerIcon = false;
|
|
20593
20603
|
|
|
20594
20604
|
// Defaults that effect the dropdown
|
|
20605
|
+
/** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
|
|
20595
20606
|
this.placement = 'bottom-start';
|
|
20596
20607
|
this.offset = 0;
|
|
20597
20608
|
this.noFlip = false;
|
|
@@ -348,16 +348,21 @@ export class AuroCombobox extends AuroElement {
|
|
|
348
348
|
persistInput: boolean | undefined;
|
|
349
349
|
required: boolean | undefined;
|
|
350
350
|
typedValue: any;
|
|
351
|
-
|
|
351
|
+
/** @type {'filter' | 'suggestion'} */
|
|
352
|
+
behavior: "filter" | "suggestion" | undefined;
|
|
352
353
|
clearBtnFocused: boolean | undefined;
|
|
353
354
|
checkmark: boolean | undefined;
|
|
354
355
|
dvInputOnly: boolean | undefined;
|
|
355
|
-
|
|
356
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
357
|
+
fullscreenBreakpoint: "xs" | "sm" | "md" | "lg" | "xl" | "disabled" | undefined;
|
|
356
358
|
matchWidth: boolean | undefined;
|
|
357
|
-
|
|
358
|
-
|
|
359
|
+
/** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
|
|
360
|
+
shape: "classic" | "snowflake" | "box" | "pill" | "pill-left" | "pill-right" | "rounded" | undefined;
|
|
361
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
|
|
362
|
+
size: "xs" | "sm" | "md" | "lg" | "xl" | undefined;
|
|
359
363
|
triggerIcon: boolean | undefined;
|
|
360
|
-
|
|
364
|
+
/** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
|
|
365
|
+
placement: "top" | "right" | "bottom" | "left" | "bottom-start" | "top-start" | "top-end" | "right-start" | "right-end" | "bottom-end" | "left-start" | "left-end" | undefined;
|
|
361
366
|
offset: number | undefined;
|
|
362
367
|
noFlip: boolean | undefined;
|
|
363
368
|
shift: boolean | undefined;
|
|
@@ -4999,7 +4999,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4999
4999
|
}
|
|
5000
5000
|
};
|
|
5001
5001
|
|
|
5002
|
-
var formkitVersion$2 = '
|
|
5002
|
+
var formkitVersion$2 = '202608312237';
|
|
5003
5003
|
|
|
5004
5004
|
/**
|
|
5005
5005
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -18861,7 +18861,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
18861
18861
|
}
|
|
18862
18862
|
};
|
|
18863
18863
|
|
|
18864
|
-
var formkitVersion$1 = '
|
|
18864
|
+
var formkitVersion$1 = '202608312237';
|
|
18865
18865
|
|
|
18866
18866
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18867
18867
|
// See LICENSE in the project root for license information.
|
|
@@ -20053,7 +20053,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
20053
20053
|
}
|
|
20054
20054
|
}
|
|
20055
20055
|
|
|
20056
|
-
var formkitVersion = '
|
|
20056
|
+
var formkitVersion = '202608312237';
|
|
20057
20057
|
|
|
20058
20058
|
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}`;
|
|
20059
20059
|
|
|
@@ -20489,20 +20489,31 @@ class AuroCombobox extends AuroElement {
|
|
|
20489
20489
|
this.persistInput = false;
|
|
20490
20490
|
this.required = false;
|
|
20491
20491
|
this.typedValue = undefined;
|
|
20492
|
+
|
|
20493
|
+
/** @type {'filter' | 'suggestion'} */
|
|
20492
20494
|
this.behavior = "suggestion";
|
|
20493
20495
|
this.clearBtnFocused = false;
|
|
20494
20496
|
|
|
20495
20497
|
// Defaults that effect the overall layout of the combobox
|
|
20496
20498
|
this.checkmark = false;
|
|
20497
20499
|
this.dvInputOnly = false;
|
|
20500
|
+
|
|
20501
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
20498
20502
|
this.fullscreenBreakpoint = 'sm';
|
|
20503
|
+
|
|
20504
|
+
/** @type {'classic' | 'emphasized' | 'snowflake'} */
|
|
20499
20505
|
this.layout = 'classic';
|
|
20500
20506
|
this.matchWidth = true;
|
|
20507
|
+
|
|
20508
|
+
/** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
|
|
20501
20509
|
this.shape = 'classic';
|
|
20510
|
+
|
|
20511
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
|
|
20502
20512
|
this.size = 'xl';
|
|
20503
20513
|
this.triggerIcon = false;
|
|
20504
20514
|
|
|
20505
20515
|
// Defaults that effect the dropdown
|
|
20516
|
+
/** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
|
|
20506
20517
|
this.placement = 'bottom-start';
|
|
20507
20518
|
this.offset = 0;
|
|
20508
20519
|
this.noFlip = false;
|
|
@@ -4999,7 +4999,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4999
4999
|
}
|
|
5000
5000
|
};
|
|
5001
5001
|
|
|
5002
|
-
var formkitVersion$2 = '
|
|
5002
|
+
var formkitVersion$2 = '202608312237';
|
|
5003
5003
|
|
|
5004
5004
|
/**
|
|
5005
5005
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -18861,7 +18861,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
18861
18861
|
}
|
|
18862
18862
|
};
|
|
18863
18863
|
|
|
18864
|
-
var formkitVersion$1 = '
|
|
18864
|
+
var formkitVersion$1 = '202608312237';
|
|
18865
18865
|
|
|
18866
18866
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18867
18867
|
// See LICENSE in the project root for license information.
|
|
@@ -20053,7 +20053,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
20053
20053
|
}
|
|
20054
20054
|
}
|
|
20055
20055
|
|
|
20056
|
-
var formkitVersion = '
|
|
20056
|
+
var formkitVersion = '202608312237';
|
|
20057
20057
|
|
|
20058
20058
|
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}`;
|
|
20059
20059
|
|
|
@@ -20489,20 +20489,31 @@ class AuroCombobox extends AuroElement {
|
|
|
20489
20489
|
this.persistInput = false;
|
|
20490
20490
|
this.required = false;
|
|
20491
20491
|
this.typedValue = undefined;
|
|
20492
|
+
|
|
20493
|
+
/** @type {'filter' | 'suggestion'} */
|
|
20492
20494
|
this.behavior = "suggestion";
|
|
20493
20495
|
this.clearBtnFocused = false;
|
|
20494
20496
|
|
|
20495
20497
|
// Defaults that effect the overall layout of the combobox
|
|
20496
20498
|
this.checkmark = false;
|
|
20497
20499
|
this.dvInputOnly = false;
|
|
20500
|
+
|
|
20501
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl' | 'disabled'} */
|
|
20498
20502
|
this.fullscreenBreakpoint = 'sm';
|
|
20503
|
+
|
|
20504
|
+
/** @type {'classic' | 'emphasized' | 'snowflake'} */
|
|
20499
20505
|
this.layout = 'classic';
|
|
20500
20506
|
this.matchWidth = true;
|
|
20507
|
+
|
|
20508
|
+
/** @type {'box' | 'classic' | 'pill' | 'pill-left' | 'pill-right' | 'rounded' | 'snowflake'} */
|
|
20501
20509
|
this.shape = 'classic';
|
|
20510
|
+
|
|
20511
|
+
/** @type {'xs' | 'sm' | 'md' | 'lg' | 'xl'} */
|
|
20502
20512
|
this.size = 'xl';
|
|
20503
20513
|
this.triggerIcon = false;
|
|
20504
20514
|
|
|
20505
20515
|
// Defaults that effect the dropdown
|
|
20516
|
+
/** @type {'top' | 'right' | 'bottom' | 'left' | 'bottom-start' | 'top-start' | 'top-end' | 'right-start' | 'right-end' | 'bottom-end' | 'left-start' | 'left-end'} */
|
|
20506
20517
|
this.placement = 'bottom-start';
|
|
20507
20518
|
this.offset = 0;
|
|
20508
20519
|
this.noFlip = false;
|