@aurodesignsystem-dev/auro-formkit 0.0.0-pr1396.2 → 0.0.0-pr1397.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.
Files changed (46) hide show
  1. package/README.md +17 -279
  2. package/components/checkbox/demo/api.min.js +1 -1
  3. package/components/checkbox/demo/index.min.js +1 -1
  4. package/components/checkbox/dist/index.js +1 -1
  5. package/components/checkbox/dist/registered.js +1 -1
  6. package/components/combobox/demo/api.min.js +3 -3
  7. package/components/combobox/demo/index.min.js +3 -3
  8. package/components/combobox/dist/index.js +3 -3
  9. package/components/combobox/dist/registered.js +3 -3
  10. package/components/counter/demo/api.min.js +2 -2
  11. package/components/counter/demo/index.min.js +2 -2
  12. package/components/counter/dist/index.js +2 -2
  13. package/components/counter/dist/registered.js +2 -2
  14. package/components/datepicker/demo/api.min.js +3 -3
  15. package/components/datepicker/demo/index.min.js +3 -3
  16. package/components/datepicker/dist/index.js +3 -3
  17. package/components/datepicker/dist/registered.js +3 -3
  18. package/components/dropdown/demo/api.min.js +1 -1
  19. package/components/dropdown/demo/index.min.js +1 -1
  20. package/components/dropdown/demo/keyboardBehavior.md +67 -0
  21. package/components/dropdown/dist/index.js +1 -1
  22. package/components/dropdown/dist/registered.js +1 -1
  23. package/components/form/demo/api.min.js +13 -13
  24. package/components/form/demo/index.min.js +13 -13
  25. package/components/input/demo/api.min.js +1 -1
  26. package/components/input/demo/index.min.js +1 -1
  27. package/components/input/dist/index.js +1 -1
  28. package/components/input/dist/registered.js +1 -1
  29. package/components/radio/demo/api.min.js +1 -1
  30. package/components/radio/demo/index.min.js +1 -1
  31. package/components/radio/dist/index.js +1 -1
  32. package/components/radio/dist/registered.js +1 -1
  33. package/components/select/demo/a11y.md +215 -0
  34. package/components/select/demo/api.min.js +2 -2
  35. package/components/select/demo/contribute.md +17 -0
  36. package/components/select/demo/index.min.js +2 -2
  37. package/components/select/demo/install.md +97 -0
  38. package/components/select/demo/keyboard.html +72 -0
  39. package/components/select/demo/keyboardBehavior.md +247 -0
  40. package/components/select/demo/layout.md +290 -0
  41. package/components/select/demo/ux.html +338 -0
  42. package/components/select/demo/ux.md +209 -0
  43. package/components/select/dist/index.js +2 -2
  44. package/components/select/dist/registered.js +2 -2
  45. package/custom-elements.json +1394 -1394
  46. package/package.json +1 -1
package/README.md CHANGED
@@ -1,7 +1,11 @@
1
1
  <!--
2
2
  The README.md file is a compiled document. No edits should be made directly to this file.
3
3
 
4
- README.md is created by running `npm run build:docs:kit`.
4
+ README.md is created by running `npm run build:docs`.
5
+
6
+ This file is generated based on a template fetched from
7
+ `../../docs/templates/componentReadmeTemplate.md`
8
+ and copied to `./componentDocs/README.md` each time the docs are compiled.
5
9
 
6
10
  The following sections are editable by making changes to the following files:
7
11
 
@@ -13,302 +17,36 @@ The following sections are editable by making changes to the following files:
13
17
  | Component Example Code | HTML sample code of the components use | `./apiExamples/basic.html` |
14
18
  -->
15
19
 
16
- # Auro Formkit
20
+ # {{ capitalize name }}
17
21
 
18
22
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/description.md) -->
19
- <!-- The below content is automatically added from ./docs/partials/description.md -->
20
-
21
- ## Description
22
-
23
- `auro-formkit` is a collection of web components that can be used to build forms.
24
-
25
- It is a monorepo that contains the following components:
26
-
27
- - `auro-checkbox`
28
- - `auro-checkbox-group`
29
- - `auro-combobox`
30
- - `auro-counter`
31
- - `auro-counter-group`
32
- - `auro-datepicker`
33
- - `auro-dropdown`
34
- - `auro-form`
35
- - `auro-input`
36
- - `auro-menu`
37
- - `auro-menu-option`
38
- - `auro-radio`
39
- - `auro-radio-group`
40
- - `auro-select`
41
23
  <!-- AURO-GENERATED-CONTENT:END -->
42
24
 
43
- ## Install
44
-
45
- <!-- AURO-GENERATED-CONTENT:START (REMOTE:url=https://raw.githubusercontent.com/AlaskaAirlines/WC-Generator/master/componentDocs/partials/usage/componentInstall_esm.md) -->
46
- [![Build Status](https://img.shields.io/github/actions/workflow/status/AlaskaAirlines/auro-formkit/testPublish.yml?style=for-the-badge)](https://github.com/AlaskaAirlines/auro-formkit/actions/workflows/testPublish.yml)
47
- [![See it on NPM!](https://img.shields.io/npm/v/@aurodesignsystem/auro-formkit?style=for-the-badge&color=orange)](https://www.npmjs.com/package/@aurodesignsystem/auro-formkit)
48
- [![License](https://img.shields.io/npm/l/@aurodesignsystem/auro-formkit?color=blue&style=for-the-badge)](https://www.apache.org/licenses/LICENSE-2.0)
49
- ![ESM supported](https://img.shields.io/badge/ESM-compatible-FFE900?style=for-the-badge)
50
-
51
- ```shell
52
- $ npm i @aurodesignsystem/auro-formkit
53
- ```
54
-
55
- Installing as a direct, dev or peer dependency is up to the user installing the package. If you are unsure as to what type of dependency you should use, consider reading this [stack overflow](https://stackoverflow.com/questions/18875674/whats-the-difference-between-dependencies-devdependencies-and-peerdependencies) answer.
56
-
25
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/readmeAddlInfo.md) -->
57
26
  <!-- AURO-GENERATED-CONTENT:END -->
58
27
 
59
- ## Getting Started
60
-
61
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/gettingStarted.md) -->
62
- <!-- The below content is automatically added from ./docs/partials/gettingStarted.md -->
63
- To start using the Auro Formkit components, follow the instructions below:
64
-
65
- ### Usage
66
-
67
- You can use Auro Formkit components in your project in two ways: automatic or custom registration.
68
-
69
- #### Automatic Registration
70
-
71
- For automatic registration, simply import the component:
72
-
73
- ```javascript
74
- import "@aurodesignsystem/auro-formkit/auro-checkbox";
75
- ```
76
-
77
- This will automatically register both the `<auro-checkbox>` and the included `<auro-checkbox-group>` component for use in your project. Note that not all Auro Formkit components have sub-components. Be sure to check the documentation for each component to understand its specific usage and registration requirements.
78
-
79
- #### Custom Registration
28
+ ## {{ capitalize name }} Use Cases
80
29
 
81
- If you prefer to register the component with a custom name, you can call the component class directly to create a custom registration:
82
-
83
- ```javascript
84
- import { AuroCheckbox, AuroCheckboxGroup } from "@aurodesignsystem/auro-formkit/auro-checkbox/class";
85
-
86
- AuroCheckbox.register('custom-checkbox');
87
- AuroCheckbox.register('custom-checkbox-group');
88
- ```
89
-
90
- This will register the component as `<custom-checkbox>` and `<custom-checkbox-group>`.
91
-
92
- #### TypeScript Module Resolution
93
-
94
- When using TypeScript set `moduleResolution` to `bundler`, add the following to your `tsconfig.json`:
95
-
96
- ```json
97
- {
98
- "compilerOptions": {
99
- "moduleResolution": "bundler"
100
- }
101
- }
102
- ```
103
-
104
- This configuration enables proper module resolution for the component's TypeScript files.
105
-
106
- ### Basic HTML Example
107
-
108
- Here is an example of how to use the Auro Checkbox component in your HTML:
109
-
110
- `index.html -> <head>`
111
-
112
- ```html
113
- <script type="module">
114
- import "@aurodesignsystem/auro-formkit/auro-checkbox";
115
- </script>
116
- ```
117
-
118
- `index.html -> <body>`
119
-
120
- ```html
121
- <auro-checkbox-group>
122
- <span slot="legend">
123
- Form label goes here
124
- </span>
125
- <auro-checkbox value="value1" name="basic" id="checkbox-basic1">
126
- Checkbox option
127
- </auro-checkbox>
128
- <auro-checkbox value="value2" name="basic" id="checkbox-basic2" checked>
129
- Checkbox option two
130
- </auro-checkbox>
131
- </auro-checkbox-group>
132
- ```
133
-
134
- By following these steps, you can easily integrate Auro Formkit components into your project.
30
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/useCases.md) -->
135
31
  <!-- AURO-GENERATED-CONTENT:END -->
136
32
 
137
- ### Design Token CSS Custom Property dependency
138
-
139
- <!-- AURO-GENERATED-CONTENT:START (REMOTE:url=https://raw.githubusercontent.com/AlaskaAirlines/WC-Generator/master/componentDocs/partials/development/designTokens.md) -->
140
- The use of any Auro custom element has a dependency on the [Auro Design Tokens](https://auro.alaskaair.com/getting-started/developers/design-tokens).
33
+ ## Getting Started
141
34
 
35
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=../../docs/templates/componentInstall.md) -->
142
36
  <!-- AURO-GENERATED-CONTENT:END -->
143
37
 
144
- ## Development
145
-
146
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/developmentDescription.md) -->
147
- <!-- The below content is automatically added from ./docs/partials/developmentDescription.md -->
148
-
149
- ### Filtering
150
-
151
- Running the `dev` command will open a `localhost` development server for all components in the monorepo at once.
152
-
153
- To only develop a single component, use the `--filter` flag:
154
-
155
- ```shell
156
- npx turbo dev --filter=@aurodesignsystem/auro-input
157
- ```
38
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=../../docs/templates/gettingStarted.md) -->
158
39
  <!-- AURO-GENERATED-CONTENT:END -->
159
40
 
160
- ### Start development environment
161
-
162
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/localhost.md) -->
163
- <!-- The below content is automatically added from ./docs/partials/localhost.md -->
41
+ ## Install from CDN
164
42
 
165
- ## Local Development
43
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=../../docs/templates/bundleInstallDescription.md) -->
166
44
  <!-- AURO-GENERATED-CONTENT:END -->
167
45
 
168
- ### Testing
169
-
170
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/testing.md) -->
171
- <!-- The below content is automatically added from ./docs/partials/testing.md -->
172
- ```
173
- npm run test
174
- ```
175
-
176
- #### Port configuration
46
+ ## Formkit Development
177
47
 
178
- Turbo will attempt to test components in parallel which will lead to port conflicts.
179
-
180
- Setting the `concurrency` to `1` will prevent Turbo from running tests in parallel:
181
-
182
- ```
183
- "test": "turbo run test --concurrency=1",
184
- ```
185
-
186
- `turbo.json`does not support `--concurrency` yet. See [this issue](https://github.com/vercel/turborepo/discussions/7493).
48
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=../../docs/partials/developmentDescription.md) -->
187
49
  <!-- AURO-GENERATED-CONTENT:END -->
188
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/readmeAddlInfo.md) -->
189
- <!-- The below content is automatically added from ./docs/partials/readmeAddlInfo.md -->
190
-
191
- ## Turborepo Overview
192
-
193
- This monorepo is managed using [Turborepo](https://turborepo.org/).
194
-
195
- ### Managing dependencies
196
-
197
- #### Best practices for dependency installation
198
-
199
- When you install a dependency in a component or package in `auro-formkit`, you should install it directly in the package that uses it.
200
-
201
- The package's `package.json` will have every dependency that it needs. This is true for both external and internal dependencies.
202
-
203
- ### Types of Dependencies by Source
204
-
205
- #### External Dependencies
206
- - These are packages fetched from the `npm` registry (e.g., Lit, Rollup, Sass)
207
- - Declared in `package.json` using exact versions or version ranges
208
- - Installed in `node_modules` during `npm install` or `yarn install`
209
-
210
- #### Internal Dependencies
211
- - These are packages from within the `auro-formkit` monorepo
212
- - Allow sharing code between different packages in your repository
213
- - Example: The `@aurodesignsystem/combobox` package might depend on `@aurodesignsystem/input`
214
- - Must be declared in `package.json` just like external dependencies
215
- - Use workspace protocols (e.g., `"workspace:*"` or `"workspace:^1.0.0"`)
216
-
217
- ### Types of Dependencies by Purpose
218
-
219
- #### Dependencies (`dependencies`)
220
- - Required for the package to function in production
221
- - Example:
222
- ```json
223
- {
224
- "dependencies": {
225
- "lit.js": "^3.0.0", // External dependency
226
- "@aurodesignsystem/input": "workspace:*" // Internal dependency
227
- }
228
- }
229
- ```
230
-
231
- #### Peer Dependencies (`peerDependencies`)
232
- - Packages that your library expects the consuming application to provide
233
- - Common for plugins or UI component libraries
234
- - Example:
235
- ```json
236
- {
237
- "peerDependencies": {
238
- "react": "^16.8.0 || ^17.0.0 || ^18.0.0",
239
- "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0"
240
- }
241
- }
242
- ```
243
-
244
- ### Development Dependencies (`devDependencies`)
245
- - Only needed during development, testing, or building
246
- - Not included in the production bundle
247
- - Example:
248
- ```json
249
- {
250
- "devDependencies": {
251
- "typescript": "^5.0.0",
252
- "@open-wc/testing": "^4.0.0" // Internal dev dependency
253
- }
254
- }
255
- ```
256
-
257
- ## Example: Component Dependencies
258
-
259
- Let's use `@auro-formki/combobox` as an example to illustrate these concepts:
260
-
261
- ```json
262
- {
263
- "name": "@aurodesignsystem/combobox",
264
- "dependencies": {
265
- // Internal dependencies
266
- "@aurodesignsystem/auro-dropdown": "*", // Required UI component
267
- "@aurodesignsystem/auro-input": "*", // Required UI component
268
-
269
- // External dependencies
270
- "@alaskaairux/icons": "^5.3.0", // Required UI component
271
- "lit": "^3.2.1" // Framework
272
- },
273
- "peerDependencies": {
274
- "@aurodesignsystem/design-tokens": "^4.12.1",
275
- "@aurodesignsystem/webcorestylesheets": "^5.1.2"
276
- },
277
- "devDependencies": {
278
- // Build utilities
279
- "rollup": "^4.24.4",
280
- "@aurodesignsystem/build-tools": "*",
281
- }
282
- }
283
- ```
284
-
285
- This structure ensures that:
286
- 1. The package explicitly declares all its dependencies
287
- 2. Internal dependencies are properly tracked and versioned
288
- 3. Development tools are separated from production dependencies
289
- 4. Peer dependencies are clearly communicated to consumers
290
-
291
- - External dependencies come from the `npm` registry.
292
-
293
- - Internal dependencies let you share functionality within your repository.
294
-
295
- This practice has several benefits:
296
-
297
- - **Improved clarity:** It's easier to understand what a package depends on when its dependencies are listed in its `package.json`. Developers working in the repository can see at a glance what dependencies are used within the package.
298
-
299
- - **Enhanced flexibility:** In a monorepo at scale, it can be unrealistic to expect each package to use the same version of an external dependency.
300
-
301
- - **Better caching ability:** If you install too many dependencies in the root of your repository, you'll be changing the workspace root whenever you add, update, or delete a dependency, leading to unnecessary cache misses.
302
-
303
- - **Pruning unused dependencies:** When dependencies are installed in the packages that they are meant for, Turborepo can read your lockfile and remove dependencies that aren't used in the packages you need.
304
-
305
- For more information, see the [Turborepo docs](https://turbo.build/repo/docs/crafting-your-repository/managing-dependencies).
306
-
307
- ### Root `package.json`
308
-
309
- The only dependencies that belong in the root `package.json` are **tools for managing the repository**.
310
-
311
- Some examples of dependencies that make sense to install in the root are `turbo`, `husky`, or `stylelint`.
312
50
 
313
- Conversely, dependencies Auro components rely on should be installed in their respective packages, such as `Lit`, `Rollup`, or other `auro-formkit` dependencies.
51
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/customRegistration.md) -->
314
52
  <!-- AURO-GENERATED-CONTENT:END -->
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
- var formkitVersion = '202603250010';
1690
+ var formkitVersion = '202603250047';
1691
1691
 
1692
1692
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1693
1693
  // See LICENSE in the project root for license information.
@@ -1679,7 +1679,7 @@ class AuroHelpText extends i$2 {
1679
1679
  }
1680
1680
  }
1681
1681
 
1682
- var formkitVersion = '202603250010';
1682
+ var formkitVersion = '202603250047';
1683
1683
 
1684
1684
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1685
1685
  // See LICENSE in the project root for license information.
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202603250010';
1635
+ var formkitVersion = '202603250047';
1636
1636
 
1637
1637
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1638
1638
  // See LICENSE in the project root for license information.
@@ -1632,7 +1632,7 @@ class AuroHelpText extends LitElement {
1632
1632
  }
1633
1633
  }
1634
1634
 
1635
- var formkitVersion = '202603250010';
1635
+ var formkitVersion = '202603250047';
1636
1636
 
1637
1637
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1638
1638
  // See LICENSE in the project root for license information.
@@ -5059,7 +5059,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
5059
5059
  }
5060
5060
  };
5061
5061
 
5062
- var formkitVersion$2 = '202603250010';
5062
+ var formkitVersion$2 = '202603250047';
5063
5063
 
5064
5064
  let AuroElement$2 = class AuroElement extends i$4 {
5065
5065
  static get properties() {
@@ -12823,7 +12823,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12823
12823
  }
12824
12824
  };
12825
12825
 
12826
- var formkitVersion$1 = '202603250010';
12826
+ var formkitVersion$1 = '202603250047';
12827
12827
 
12828
12828
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12829
12829
  // See LICENSE in the project root for license information.
@@ -13862,7 +13862,7 @@ class AuroBibtemplate extends i$4 {
13862
13862
  }
13863
13863
  }
13864
13864
 
13865
- var formkitVersion = '202603250010';
13865
+ var formkitVersion = '202603250047';
13866
13866
 
13867
13867
  var styleCss$3 = i$7`.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}`;
13868
13868
 
@@ -4982,7 +4982,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
4982
4982
  }
4983
4983
  };
4984
4984
 
4985
- var formkitVersion$2 = '202603250010';
4985
+ var formkitVersion$2 = '202603250047';
4986
4986
 
4987
4987
  let AuroElement$2 = class AuroElement extends i$4 {
4988
4988
  static get properties() {
@@ -12746,7 +12746,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12746
12746
  }
12747
12747
  };
12748
12748
 
12749
- var formkitVersion$1 = '202603250010';
12749
+ var formkitVersion$1 = '202603250047';
12750
12750
 
12751
12751
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12752
12752
  // See LICENSE in the project root for license information.
@@ -13785,7 +13785,7 @@ class AuroBibtemplate extends i$4 {
13785
13785
  }
13786
13786
  }
13787
13787
 
13788
- var formkitVersion = '202603250010';
13788
+ var formkitVersion = '202603250047';
13789
13789
 
13790
13790
  var styleCss$3 = i$7`.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}`;
13791
13791
 
@@ -4915,7 +4915,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4915
4915
  }
4916
4916
  };
4917
4917
 
4918
- var formkitVersion$2 = '202603250010';
4918
+ var formkitVersion$2 = '202603250047';
4919
4919
 
4920
4920
  let AuroElement$2 = class AuroElement extends LitElement {
4921
4921
  static get properties() {
@@ -12672,7 +12672,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12672
12672
  }
12673
12673
  };
12674
12674
 
12675
- var formkitVersion$1 = '202603250010';
12675
+ var formkitVersion$1 = '202603250047';
12676
12676
 
12677
12677
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12678
12678
  // See LICENSE in the project root for license information.
@@ -13711,7 +13711,7 @@ class AuroBibtemplate extends LitElement {
13711
13711
  }
13712
13712
  }
13713
13713
 
13714
- var formkitVersion = '202603250010';
13714
+ var formkitVersion = '202603250047';
13715
13715
 
13716
13716
  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}`;
13717
13717
 
@@ -4915,7 +4915,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4915
4915
  }
4916
4916
  };
4917
4917
 
4918
- var formkitVersion$2 = '202603250010';
4918
+ var formkitVersion$2 = '202603250047';
4919
4919
 
4920
4920
  let AuroElement$2 = class AuroElement extends LitElement {
4921
4921
  static get properties() {
@@ -12672,7 +12672,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12672
12672
  }
12673
12673
  };
12674
12674
 
12675
- var formkitVersion$1 = '202603250010';
12675
+ var formkitVersion$1 = '202603250047';
12676
12676
 
12677
12677
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12678
12678
  // See LICENSE in the project root for license information.
@@ -13711,7 +13711,7 @@ class AuroBibtemplate extends LitElement {
13711
13711
  }
13712
13712
  }
13713
13713
 
13714
- var formkitVersion = '202603250010';
13714
+ var formkitVersion = '202603250047';
13715
13715
 
13716
13716
  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}`;
13717
13717
 
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1470
1470
  }
1471
1471
  };
1472
1472
 
1473
- var formkitVersion$1 = '202603250010';
1473
+ var formkitVersion$1 = '202603250047';
1474
1474
 
1475
1475
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1476
1476
  // See LICENSE in the project root for license information.
@@ -5517,7 +5517,7 @@ class AuroHelpText extends i$2 {
5517
5517
  }
5518
5518
  }
5519
5519
 
5520
- var formkitVersion = '202603250010';
5520
+ var formkitVersion = '202603250047';
5521
5521
 
5522
5522
  let AuroElement$1 = class AuroElement extends i$2 {
5523
5523
  static get properties() {
@@ -1470,7 +1470,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1470
1470
  }
1471
1471
  };
1472
1472
 
1473
- var formkitVersion$1 = '202603250010';
1473
+ var formkitVersion$1 = '202603250047';
1474
1474
 
1475
1475
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1476
1476
  // See LICENSE in the project root for license information.
@@ -5517,7 +5517,7 @@ class AuroHelpText extends i$2 {
5517
5517
  }
5518
5518
  }
5519
5519
 
5520
- var formkitVersion = '202603250010';
5520
+ var formkitVersion = '202603250047';
5521
5521
 
5522
5522
  let AuroElement$1 = class AuroElement extends i$2 {
5523
5523
  static get properties() {
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1420
1420
  }
1421
1421
  };
1422
1422
 
1423
- var formkitVersion$1 = '202603250010';
1423
+ var formkitVersion$1 = '202603250047';
1424
1424
 
1425
1425
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1426
1426
  // See LICENSE in the project root for license information.
@@ -5449,7 +5449,7 @@ class AuroHelpText extends LitElement {
5449
5449
  }
5450
5450
  }
5451
5451
 
5452
- var formkitVersion = '202603250010';
5452
+ var formkitVersion = '202603250047';
5453
5453
 
5454
5454
  let AuroElement$1 = class AuroElement extends LitElement {
5455
5455
  static get properties() {
@@ -1420,7 +1420,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1420
1420
  }
1421
1421
  };
1422
1422
 
1423
- var formkitVersion$1 = '202603250010';
1423
+ var formkitVersion$1 = '202603250047';
1424
1424
 
1425
1425
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1426
1426
  // See LICENSE in the project root for license information.
@@ -5449,7 +5449,7 @@ class AuroHelpText extends LitElement {
5449
5449
  }
5450
5450
  }
5451
5451
 
5452
- var formkitVersion = '202603250010';
5452
+ var formkitVersion = '202603250047';
5453
5453
 
5454
5454
  let AuroElement$1 = class AuroElement extends LitElement {
5455
5455
  static get properties() {
@@ -9549,7 +9549,7 @@ class AuroBibtemplate extends i$1 {
9549
9549
  }
9550
9550
  }
9551
9551
 
9552
- var formkitVersion$2 = '202603250010';
9552
+ var formkitVersion$2 = '202603250047';
9553
9553
 
9554
9554
  let l$1 = class l{generateElementName(t,e){let o=t;return o+="-",o+=e.replace(/[.]/g,"_"),o}generateTag(o,s,a){const r=this.generateElementName(o,s),i=i$5`${s$5(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1 = class d{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}getSlotText(t,e){const o=t.shadowRoot?.querySelector(`slot[name="${e}"]`),s=(o?.assignedNodes({flatten:true})||[]).map(t=>t.textContent?.trim()).join(" ").trim();return s||null}};let h$4 = class h{registerComponent(t,e){customElements.get(t)||customElements.define(t,class extends e{});}closestElement(t,e=this,o=(e,s=e&&e.closest(t))=>e&&e!==document&&e!==window?s||o(e.getRootNode().host):null){return o(e)}handleComponentTagRename(t,e){const o=e.toLowerCase();t.tagName.toLowerCase()!==o&&t.setAttribute(o,true);}elementMatch(t,e){const o=e.toLowerCase();return t.tagName.toLowerCase()===o||t.hasAttribute(o)}};var c$3=i$3`:host{color:var(--ds-auro-loader-color)}:host>span{background-color:var(--ds-auro-loader-background-color);border-color:var(--ds-auro-loader-border-color)}:host([onlight]),:host([appearance=brand]){--ds-auro-loader-color: var(--ds-basic-color-brand-primary, #01426a)}:host([ondark]),:host([appearance=inverse]){--ds-auro-loader-color: var(--ds-basic-color-texticon-inverse, #ffffff)}:host([orbit])>span{--ds-auro-loader-background-color: transparent}:host([orbit])>span:nth-child(1){--ds-auro-loader-border-color: currentcolor;opacity:.25}:host([orbit])>span:nth-child(2){--ds-auro-loader-border-color: currentcolor;border-right-color:transparent;border-bottom-color:transparent;border-left-color:transparent}
9555
9555
  `,u$6=i$3`.body-default{font-size:var(--wcss-body-default-font-size, 1rem);line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-lg{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, .875rem);line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs{font-size:var(--wcss-body-xs-font-size, .75rem);line-height:var(--wcss-body-xs-line-height, 1rem)}.body-2xs{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;font-size:var(--wcss-body-2xs-font-size, .625rem);font-weight:var(--wcss-body-weight, 450);letter-spacing:var(--wcss-body-letter-spacing, 0);line-height:var(--wcss-body-2xs-line-height, .875rem)}.display-2xl{font-family:var(--wcss-display-2xl-family, "AS Circular"),var(--wcss-display-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-2xl-font-size, clamp(3.5rem, 6vw, 5.375rem));font-weight:var(--wcss-display-2xl-weight, 300);letter-spacing:var(--wcss-display-2xl-letter-spacing, 0);line-height:var(--wcss-display-2xl-line-height, 1.3)}.display-xl{font-family:var(--wcss-display-xl-family, "AS Circular"),var(--wcss-display-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xl-font-size, clamp(3rem, 5.3333333333vw, 4.5rem));font-weight:var(--wcss-display-xl-weight, 300);letter-spacing:var(--wcss-display-xl-letter-spacing, 0);line-height:var(--wcss-display-xl-line-height, 1.3)}.display-lg{font-family:var(--wcss-display-lg-family, "AS Circular"),var(--wcss-display-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-lg-font-size, clamp(2.75rem, 4.6666666667vw, 4rem));font-weight:var(--wcss-display-lg-weight, 300);letter-spacing:var(--wcss-display-lg-letter-spacing, 0);line-height:var(--wcss-display-lg-line-height, 1.3)}.display-md{font-family:var(--wcss-display-md-family, "AS Circular"),var(--wcss-display-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-md-font-size, clamp(2.5rem, 4vw, 3.5rem));font-weight:var(--wcss-display-md-weight, 300);letter-spacing:var(--wcss-display-md-letter-spacing, 0);line-height:var(--wcss-display-md-line-height, 1.3)}.display-sm{font-family:var(--wcss-display-sm-family, "AS Circular"),var(--wcss-display-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-sm-font-size, clamp(2rem, 3.6666666667vw, 3rem));font-weight:var(--wcss-display-sm-weight, 300);letter-spacing:var(--wcss-display-sm-letter-spacing, 0);line-height:var(--wcss-display-sm-line-height, 1.3)}.display-xs{font-family:var(--wcss-display-xs-family, "AS Circular"),var(--wcss-display-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-display-xs-font-size, clamp(1.75rem, 3vw, 2.375rem));font-weight:var(--wcss-display-xs-weight, 300);letter-spacing:var(--wcss-display-xs-letter-spacing, 0);line-height:var(--wcss-display-xs-line-height, 1.3)}.heading-xl{font-family:var(--wcss-heading-xl-family, "AS Circular"),var(--wcss-heading-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xl-font-size, clamp(2rem, 3vw, 2.5rem));font-weight:var(--wcss-heading-xl-weight, 300);letter-spacing:var(--wcss-heading-xl-letter-spacing, 0);line-height:var(--wcss-heading-xl-line-height, 1.3)}.heading-lg{font-family:var(--wcss-heading-lg-family, "AS Circular"),var(--wcss-heading-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-lg-font-size, clamp(1.75rem, 2.6666666667vw, 2.25rem));font-weight:var(--wcss-heading-lg-weight, 300);letter-spacing:var(--wcss-heading-lg-letter-spacing, 0);line-height:var(--wcss-heading-lg-line-height, 1.3)}.heading-md{font-family:var(--wcss-heading-md-family, "AS Circular"),var(--wcss-heading-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-md-font-size, clamp(1.625rem, 2.3333333333vw, 1.75rem));font-weight:var(--wcss-heading-md-weight, 300);letter-spacing:var(--wcss-heading-md-letter-spacing, 0);line-height:var(--wcss-heading-md-line-height, 1.3)}.heading-sm{font-family:var(--wcss-heading-sm-family, "AS Circular"),var(--wcss-heading-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-sm-font-size, clamp(1.375rem, 2vw, 1.5rem));font-weight:var(--wcss-heading-sm-weight, 300);letter-spacing:var(--wcss-heading-sm-letter-spacing, 0);line-height:var(--wcss-heading-sm-line-height, 1.3)}.heading-xs{font-family:var(--wcss-heading-xs-family, "AS Circular"),var(--wcss-heading-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-xs-font-size, clamp(1.25rem, 1.6666666667vw, 1.25rem));font-weight:var(--wcss-heading-xs-weight, 450);letter-spacing:var(--wcss-heading-xs-letter-spacing, 0);line-height:var(--wcss-heading-xs-line-height, 1.3)}.heading-2xs{font-family:var(--wcss-heading-2xs-family, "AS Circular"),var(--wcss-heading-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-heading-2xs-font-size, clamp(1.125rem, 1.5vw, 1.125rem));font-weight:var(--wcss-heading-2xs-weight, 450);letter-spacing:var(--wcss-heading-2xs-letter-spacing, 0);line-height:var(--wcss-heading-2xs-line-height, 1.3)}.accent-2xl{font-family:var(--wcss-accent-2xl-family, "Good OT"),var(--wcss-accent-2xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xl-font-size, clamp(2rem, 3.1666666667vw, 2.375rem));font-weight:var(--wcss-accent-2xl-weight, 450);letter-spacing:var(--wcss-accent-2xl-letter-spacing, .05em);line-height:var(--wcss-accent-2xl-line-height, 1)}.accent-2xl,.accent-xl{text-transform:uppercase}.accent-xl{font-family:var(--wcss-accent-xl-family, "Good OT"),var(--wcss-accent-xl-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xl-font-size, clamp(1.625rem, 2.3333333333vw, 2rem));font-weight:var(--wcss-accent-xl-weight, 450);letter-spacing:var(--wcss-accent-xl-letter-spacing, .05em);line-height:var(--wcss-accent-xl-line-height, 1.3)}.accent-lg{font-family:var(--wcss-accent-lg-family, "Good OT"),var(--wcss-accent-lg-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-lg-font-size, clamp(1.5rem, 2.1666666667vw, 1.75rem));font-weight:var(--wcss-accent-lg-weight, 450);letter-spacing:var(--wcss-accent-lg-letter-spacing, .05em);line-height:var(--wcss-accent-lg-line-height, 1.3)}.accent-lg,.accent-md{text-transform:uppercase}.accent-md{font-family:var(--wcss-accent-md-family, "Good OT"),var(--wcss-accent-md-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-md-font-size, clamp(1.375rem, 1.8333333333vw, 1.5rem));font-weight:var(--wcss-accent-md-weight, 500);letter-spacing:var(--wcss-accent-md-letter-spacing, .05em);line-height:var(--wcss-accent-md-line-height, 1.3)}.accent-sm{font-family:var(--wcss-accent-sm-family, "Good OT"),var(--wcss-accent-sm-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-sm-font-size, clamp(1.125rem, 1.5vw, 1.25rem));font-weight:var(--wcss-accent-sm-weight, 500);letter-spacing:var(--wcss-accent-sm-letter-spacing, .05em);line-height:var(--wcss-accent-sm-line-height, 1.3)}.accent-sm,.accent-xs{text-transform:uppercase}.accent-xs{font-family:var(--wcss-accent-xs-family, "Good OT"),var(--wcss-accent-xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-xs-font-size, clamp(1rem, 1.3333333333vw, 1rem));font-weight:var(--wcss-accent-xs-weight, 500);letter-spacing:var(--wcss-accent-xs-letter-spacing, .1em);line-height:var(--wcss-accent-xs-line-height, 1.3)}.accent-2xs{font-family:var(--wcss-accent-2xs-family, "Good OT"),var(--wcss-accent-2xs-family-fallback, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif);font-size:var(--wcss-accent-2xs-font-size, clamp(.875rem, 1.1666666667vw, .875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, .1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}:focus:not(:focus-visible){outline:3px solid transparent}:host,:host>span{position:relative}:host{width:2rem;height:2rem;display:inline-block;font-size:0}:host>span{position:absolute;display:inline-block;float:none;top:0;left:0;width:2rem;height:2rem;border-radius:100%;border-style:solid;border-width:0;box-sizing:border-box}:host([xs]),:host([xs])>span{width:1.2rem;height:1.2rem}:host([sm]),:host([sm])>span{width:3rem;height:3rem}:host([md]),:host([md])>span{width:5rem;height:5rem}:host([lg]),:host([lg])>span{width:8rem;height:8rem}:host{--margin: .375rem;--margin-xs: .2rem;--margin-sm: .5rem;--margin-md: .75rem;--margin-lg: 1rem}:host([pulse]),:host([pulse])>span{position:relative}:host([pulse]){width:calc(3rem + var(--margin) * 6);height:calc(1rem + var(--margin) * 2)}:host([pulse])>span{width:1rem;height:1rem;margin:var(--margin);animation:pulse 1.5s ease infinite}:host([pulse][xs]){width:calc(1.95rem + var(--margin-xs) * 6);height:calc(.65rem + var(--margin-xs) * 2)}:host([pulse][xs])>span{margin:var(--margin-xs);width:.65rem;height:.65rem}:host([pulse][sm]){width:calc(6rem + var(--margin-sm) * 6);height:calc(2rem + var(--margin-sm) * 2)}:host([pulse][sm])>span{margin:var(--margin-sm);width:2rem;height:2rem}:host([pulse][md]){width:calc(9rem + var(--margin-md) * 6);height:calc(3rem + var(--margin-md) * 2)}:host([pulse][md])>span{margin:var(--margin-md);width:3rem;height:3rem}:host([pulse][lg]){width:calc(15rem + var(--margin-lg) * 6);height:calc(5rem + var(--margin-lg) * 2)}:host([pulse][lg])>span{margin:var(--margin-lg);width:5rem;height:5rem}:host([pulse])>span:nth-child(1){animation-delay:-.4s}:host([pulse])>span:nth-child(2){animation-delay:-.2s}:host([pulse])>span:nth-child(3){animation-delay:0ms}@keyframes pulse{0%,to{opacity:.1;transform:scale(.9)}50%{opacity:1;transform:scale(1.1)}}:host([orbit]),:host([orbit])>span{opacity:1}:host([orbit])>span{border-width:5px}:host([orbit])>span:nth-child(2){animation:orbit 2s linear infinite}:host([orbit][sm])>span{border-width:8px}:host([orbit][md])>span{border-width:13px}:host([orbit][lg])>span{border-width:21px}@keyframes orbit{0%{transform:rotate(0)}to{transform:rotate(360deg)}}:host([ringworm])>svg{animation:rotate 2s linear infinite;height:100%;width:100%;stroke:currentcolor;stroke-width:8}:host([ringworm]) .path{stroke-dashoffset:0;animation:ringworm 1.5s ease-in-out infinite;stroke-linecap:round}@keyframes rotate{to{transform:rotate(360deg)}}@keyframes ringworm{0%{stroke-dasharray:1,200;stroke-dashoffset:0}50%{stroke-dasharray:89,200;stroke-dashoffset:-35px}to{stroke-dasharray:89,200;stroke-dashoffset:-124px}}:host([laser]){position:static;width:100%;display:block;height:0;overflow:hidden;font-size:unset}:host([laser])>span{position:fixed;width:100%;height:.25rem;border-radius:0;z-index:100}:host([laser])>span:nth-child(1){border-color:currentcolor;opacity:.25}:host([laser])>span:nth-child(2){border-color:currentcolor;animation:laser 2s linear infinite;opacity:1;width:50%}:host([laser][sm])>span:nth-child(2){width:20%}:host([laser][md])>span:nth-child(2){width:30%}:host([laser][lg])>span:nth-child(2){width:50%;animation-duration:1.5s}:host([laser][xl])>span:nth-child(2){width:80%;animation-duration:1.5s}@keyframes laser{0%{left:-100%}to{left:110%}}:host>.no-animation{display:none}@media (prefers-reduced-motion: reduce){:host{display:flex;align-items:center;justify-content:center}:host>span{opacity:1}:host>.loader{display:none}:host>svg{display:none}:host>.no-animation{display:block}}
@@ -13630,7 +13630,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$1 {
13630
13630
  }
13631
13631
  };
13632
13632
 
13633
- var formkitVersion$1 = '202603250010';
13633
+ var formkitVersion$1 = '202603250047';
13634
13634
 
13635
13635
  let AuroElement$2 = class AuroElement extends i$1 {
13636
13636
  static get properties() {
@@ -21394,7 +21394,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$1 {
21394
21394
  }
21395
21395
  };
21396
21396
 
21397
- var formkitVersion = '202603250010';
21397
+ var formkitVersion = '202603250047';
21398
21398
 
21399
21399
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
21400
21400
  // See LICENSE in the project root for license information.