@aurodesignsystem-dev/auro-formkit 0.0.0-pr1424.0 → 0.0.0-pr1425.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 (38) hide show
  1. package/CHANGELOG.md +2 -2
  2. package/README.md +133 -183
  3. package/components/checkbox/demo/api.min.js +1 -1
  4. package/components/checkbox/demo/index.min.js +1 -1
  5. package/components/checkbox/dist/index.js +1 -1
  6. package/components/checkbox/dist/registered.js +1 -1
  7. package/components/combobox/demo/api.min.js +3 -3
  8. package/components/combobox/demo/index.min.js +3 -3
  9. package/components/combobox/dist/index.js +3 -3
  10. package/components/combobox/dist/registered.js +3 -3
  11. package/components/counter/demo/api.min.js +2 -2
  12. package/components/counter/demo/index.min.js +2 -2
  13. package/components/counter/dist/index.js +2 -2
  14. package/components/counter/dist/registered.js +2 -2
  15. package/components/datepicker/demo/api.min.js +3 -3
  16. package/components/datepicker/demo/index.min.js +3 -3
  17. package/components/datepicker/dist/index.js +3 -3
  18. package/components/datepicker/dist/registered.js +3 -3
  19. package/components/dropdown/demo/api.min.js +1 -1
  20. package/components/dropdown/demo/index.min.js +1 -1
  21. package/components/dropdown/dist/index.js +1 -1
  22. package/components/dropdown/dist/registered.js +1 -1
  23. package/components/form/demo/api.md +76 -460
  24. package/components/form/demo/api.min.js +15 -16
  25. package/components/form/demo/index.min.js +15 -16
  26. package/components/input/demo/api.min.js +1 -1
  27. package/components/input/demo/index.min.js +1 -1
  28. package/components/input/dist/index.js +1 -1
  29. package/components/input/dist/registered.js +1 -1
  30. package/components/radio/demo/api.min.js +1 -1
  31. package/components/radio/demo/index.min.js +1 -1
  32. package/components/radio/dist/index.js +1 -1
  33. package/components/radio/dist/registered.js +1 -1
  34. package/components/select/demo/api.min.js +4 -5
  35. package/components/select/demo/index.min.js +4 -5
  36. package/components/select/dist/index.js +4 -5
  37. package/components/select/dist/registered.js +4 -5
  38. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,5 @@
1
- ### Changelog
1
+ # Changelog
2
2
 
3
- You can view a history of changes to this repository on the releases page:
3
+ You can view a complete history of changes to this repository on the GitHub releases page:
4
4
 
5
5
  https://github.com/AlaskaAirlines/auro-formkit/releases
package/README.md CHANGED
@@ -3,21 +3,25 @@ The README.md file is a compiled document. No edits should be made directly to t
3
3
 
4
4
  README.md is created by running `npm run build:docs:kit`.
5
5
 
6
+ This file is generated based on the template at
7
+ `./docs/templates/kitReadmeTemplate.md`
8
+ and compiled to `./README.md` each time the docs are compiled.
9
+
6
10
  The following sections are editable by making changes to the following files:
7
11
 
8
12
  | SECTION | DESCRIPTION | FILE LOCATION |
9
13
  |------------------------|---------------------------------------------------|-------------------------------------|
10
- | Description | Description of the component | `./docs/partials/description.md` |
11
- | Use Cases | Examples for when to use this component | `./docs/partials/useCases.md` |
12
- | Additional Information | For use to add any component specific information | `./docs/partials/readmeAddlInfo.md` |
13
- | Component Example Code | HTML sample code of the components use | `./apiExamples/basic.html` |
14
- -->
15
-
16
- # Auro Formkit
14
+ | Description | Description of the kit | `./docs/partials/description.md` |
15
+ | Use Cases | Examples for when to use this kit | `./docs/partials/useCases.md` |
16
+ | Additional Information | For use to add any kit specific information | `./docs/partials/readmeAddlInfo.md` |
17
+ | kit Example Code | HTML sample code of the kits use | `./apiExamples/basic.html` |
18
+ -->
19
+
20
+ # Formkit
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
-
23
+ <!-- The below content is automatically added from ./docs/partials/description.md -->
24
+
21
25
  ## Description
22
26
 
23
27
  `auro-formkit` is a collection of web components that can be used to build forms.
@@ -38,58 +42,73 @@ It is a monorepo that contains the following components:
38
42
  - `auro-radio`
39
43
  - `auro-radio-group`
40
44
  - `auro-select`
41
- <!-- AURO-GENERATED-CONTENT:END -->
42
-
43
- ## Install
45
+ <!-- AURO-GENERATED-CONTENT:END -->
46
+
47
+ ## Use Cases
48
+
49
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/useCases.md) -->
50
+ <!-- The below content is automatically added from ./docs/partials/useCases.md -->
51
+
52
+ ### 1. User Accounts
53
+ - Sign up and login forms
54
+ - Email and password validation
55
+
56
+ ### 2. Checkout & Payments
57
+ - Collect shipping and billing info
58
+ - Use autofill and validation to reduce errors
59
+
60
+ ### 3. Booking & Scheduling
61
+ - Select dates and times
62
+ - Prevent invalid selections (like past dates)
63
+
64
+ ### 4. Search & Filters
65
+ - Search inputs with suggestions
66
+ - Filters like price ranges or categories
67
+
68
+ ### 5. File Uploads
69
+ - Upload images, documents, or media
70
+ - Restrict file types and allow multiple files
71
+
72
+ ### 6. Feedback & Surveys
73
+ - Collect ratings, choices, and comments
74
+ - Require answers where needed
75
+
76
+ ### 7. Calculators & Dynamic Forms
77
+ - Show real-time results (e.g., pricing, totals)
78
+
79
+ ### 8. Multi-Step Forms
80
+ - Break long forms into smaller steps
81
+
82
+ ### 9. Mobile-Friendly Input
83
+ - Use input types that trigger the right keyboard
84
+
85
+ ### 10. Accessible Forms
86
+ - Proper labels and grouped inputs
87
+ - Built-in error handling
88
+
89
+ ### 11. Built-in Validation
90
+ - Use HTML5 rules instead of custom JavaScript
91
+ <!-- AURO-GENERATED-CONTENT:END -->
92
+
93
+ ## Getting Started
44
94
 
45
- <!-- AURO-GENERATED-CONTENT:START (REMOTE:url=https://raw.githubusercontent.com/AlaskaAirlines/WC-Generator/master/componentDocs/partials/usage/componentInstall_esm.md) -->
95
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/kitInstall.md) -->
96
+ <!-- The below content is automatically added from ./docs/partials/kitInstall.md -->
46
97
  [![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
98
  [![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
99
  [![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
100
  ![ESM supported](https://img.shields.io/badge/ESM-compatible-FFE900?style=for-the-badge)
50
101
 
102
+ #### NPM Installation
103
+
51
104
  ```shell
52
105
  $ npm i @aurodesignsystem/auro-formkit
53
106
  ```
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
-
57
- <!-- AURO-GENERATED-CONTENT:END -->
58
-
59
- ## Getting Started
60
-
107
+ <!-- AURO-GENERATED-CONTENT:END -->
61
108
  <!-- 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
80
-
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
109
+ <!-- The below content is automatically added from ./docs/partials/gettingStarted.md -->
110
+
111
+ ### TypeScript Module Resolution
93
112
 
94
113
  When using TypeScript set `moduleResolution` to `bundler`, add the following to your `tsconfig.json`:
95
114
 
@@ -102,111 +121,47 @@ When using TypeScript set `moduleResolution` to `bundler`, add the following to
102
121
  ```
103
122
 
104
123
  This configuration enables proper module resolution for the component's TypeScript files.
124
+ <!-- AURO-GENERATED-CONTENT:END -->
125
+
126
+ ## Install from CDN
105
127
 
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
- ```
128
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/bundleInstallDescription.md) -->
129
+ <!-- The below content is automatically added from ./docs/partials/bundleInstallDescription.md -->
130
+ In cases where the project is not able to process JS assets, there are pre-processed assets available for use. Legacy browsers such as IE11 are no longer supported.
117
131
 
118
- `index.html -> <body>`
132
+ Each component is imported individually by its export path:
119
133
 
120
134
  ```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.
135
- <!-- AURO-GENERATED-CONTENT:END -->
136
-
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).
141
-
142
- <!-- AURO-GENERATED-CONTENT:END -->
143
-
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
- ```
158
- <!-- AURO-GENERATED-CONTENT:END -->
159
-
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 -->
164
-
165
- ## Local Development
166
- <!-- AURO-GENERATED-CONTENT:END -->
167
-
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
135
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@latest/auro-checkbox/+esm"></script>
136
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@latest/auro-input/+esm"></script>
137
+ <script type="module" src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-formkit@latest/auro-select/+esm"></script>
138
+ ```
139
+ <!-- AURO-GENERATED-CONTENT:END -->
140
+
141
+ ## Additional Information
177
142
 
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).
187
- <!-- AURO-GENERATED-CONTENT:END -->
188
143
  <!-- 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
-
144
+ <!-- The below content is automatically added from ./docs/partials/readmeAddlInfo.md -->
145
+
146
+ ### Turborepo Overview
147
+
148
+ This monorepo is managed using [Turborepo](https://turborepo.org/).
149
+
150
+ ### Managing dependencies
151
+
197
152
  #### Best practices for dependency installation
198
153
 
199
154
  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
155
 
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
-
156
+ The package's `package.json` will have every dependency that it needs. This is true for both external and internal dependencies.
157
+
158
+ ### Types of Dependencies by Source
159
+
205
160
  #### External Dependencies
206
161
  - These are packages fetched from the `npm` registry (e.g., Lit, Rollup, Sass)
207
162
  - Declared in `package.json` using exact versions or version ranges
208
- - Installed in `node_modules` during `npm install` or `yarn install`
209
-
163
+ - Installed in `node_modules` during `npm install` or `yarn install`
164
+
210
165
  #### Internal Dependencies
211
166
  - These are packages from within the `auro-formkit` monorepo
212
167
  - Allow sharing code between different packages in your repository
@@ -214,33 +169,19 @@ The package's `package.json` will have every dependency that it needs. This is t
214
169
  - Must be declared in `package.json` just like external dependencies
215
170
  - Use workspace protocols (e.g., `"workspace:*"` or `"workspace:^1.0.0"`)
216
171
 
217
- ### Types of Dependencies by Purpose
218
-
172
+ ### Types of Dependencies by Purpose
173
+
219
174
  #### Dependencies (`dependencies`)
220
175
  - Required for the package to function in production
221
176
  - Example:
222
177
  ```json
223
178
  {
224
179
  "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"
180
+ "lit": "^3.0.0"
240
181
  }
241
182
  }
242
- ```
243
-
183
+ ```
184
+
244
185
  ### Development Dependencies (`devDependencies`)
245
186
  - Only needed during development, testing, or building
246
187
  - Not included in the production bundle
@@ -248,36 +189,30 @@ The package's `package.json` will have every dependency that it needs. This is t
248
189
  ```json
249
190
  {
250
191
  "devDependencies": {
251
- "typescript": "^5.0.0",
252
- "@open-wc/testing": "^4.0.0" // Internal dev dependency
192
+ "@aurodesignsystem/auro-dropdown": "*",
193
+ "@aurodesignsystem/build-tools": "*",
194
+ "rollup": "^4.24.4"
253
195
  }
254
196
  }
255
- ```
197
+ ```
198
+
199
+ ### Example: Component Dependencies
256
200
 
257
- ## Example: Component Dependencies
258
-
259
- Let's use `@auro-formki/combobox` as an example to illustrate these concepts:
201
+ Let's use `@aurodesignsystem/combobox` as an example to illustrate these concepts:
260
202
 
261
203
  ```json
262
204
  {
263
205
  "name": "@aurodesignsystem/combobox",
264
206
  "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"
207
+ "lit": "^3.2.1"
276
208
  },
277
209
  "devDependencies": {
210
+ // Internal component dependencies
211
+ "@aurodesignsystem/auro-dropdown": "*",
212
+ "@aurodesignsystem/auro-input": "*",
278
213
  // Build utilities
279
214
  "rollup": "^4.24.4",
280
- "@aurodesignsystem/build-tools": "*",
215
+ "@aurodesignsystem/build-tools": "*"
281
216
  }
282
217
  }
283
218
  ```
@@ -286,7 +221,6 @@ This structure ensures that:
286
221
  1. The package explicitly declares all its dependencies
287
222
  2. Internal dependencies are properly tracked and versioned
288
223
  3. Development tools are separated from production dependencies
289
- 4. Peer dependencies are clearly communicated to consumers
290
224
 
291
225
  - External dependencies come from the `npm` registry.
292
226
 
@@ -302,8 +236,8 @@ This practice has several benefits:
302
236
 
303
237
  - **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
238
 
305
- For more information, see the [Turborepo docs](https://turbo.build/repo/docs/crafting-your-repository/managing-dependencies).
306
-
239
+ For more information, see the [Turborepo docs](https://turbo.build/repo/docs/crafting-your-repository/managing-dependencies).
240
+
307
241
  ### Root `package.json`
308
242
 
309
243
  The only dependencies that belong in the root `package.json` are **tools for managing the repository**.
@@ -311,4 +245,20 @@ The only dependencies that belong in the root `package.json` are **tools for man
311
245
  Some examples of dependencies that make sense to install in the root are `turbo`, `husky`, or `stylelint`.
312
246
 
313
247
  Conversely, dependencies Auro components rely on should be installed in their respective packages, such as `Lit`, `Rollup`, or other `auro-formkit` dependencies.
248
+ <!-- AURO-GENERATED-CONTENT:END -->
249
+
250
+ ## Formkit Development
251
+
252
+ <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/developmentDescription.md) -->
253
+ <!-- The below content is automatically added from ./docs/partials/developmentDescription.md -->
254
+
255
+ ### Filtering
256
+
257
+ Running the `dev` command will open a `localhost` development server for all components in the monorepo at once.
258
+
259
+ To only develop a single component, use the `--filter` flag:
260
+
261
+ ```shell
262
+ npx turbo dev --filter=@aurodesignsystem/auro-input
263
+ ```
314
264
  <!-- AURO-GENERATED-CONTENT:END -->
@@ -1687,7 +1687,7 @@ class AuroHelpText extends i$2 {
1687
1687
  }
1688
1688
  }
1689
1689
 
1690
- var formkitVersion = '202604072118';
1690
+ var formkitVersion = '202604072126';
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 = '202604072118';
1682
+ var formkitVersion = '202604072126';
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 = '202604072118';
1635
+ var formkitVersion = '202604072126';
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 = '202604072118';
1635
+ var formkitVersion = '202604072126';
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.
@@ -5069,7 +5069,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
5069
5069
  }
5070
5070
  };
5071
5071
 
5072
- var formkitVersion$2 = '202604072118';
5072
+ var formkitVersion$2 = '202604072126';
5073
5073
 
5074
5074
  let AuroElement$2 = class AuroElement extends i$4 {
5075
5075
  static get properties() {
@@ -12833,7 +12833,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12833
12833
  }
12834
12834
  };
12835
12835
 
12836
- var formkitVersion$1 = '202604072118';
12836
+ var formkitVersion$1 = '202604072126';
12837
12837
 
12838
12838
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12839
12839
  // See LICENSE in the project root for license information.
@@ -13898,7 +13898,7 @@ class AuroBibtemplate extends i$4 {
13898
13898
  }
13899
13899
  }
13900
13900
 
13901
- var formkitVersion = '202604072118';
13901
+ var formkitVersion = '202604072126';
13902
13902
 
13903
13903
  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}`;
13904
13904
 
@@ -4992,7 +4992,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
4992
4992
  }
4993
4993
  };
4994
4994
 
4995
- var formkitVersion$2 = '202604072118';
4995
+ var formkitVersion$2 = '202604072126';
4996
4996
 
4997
4997
  let AuroElement$2 = class AuroElement extends i$4 {
4998
4998
  static get properties() {
@@ -12756,7 +12756,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
12756
12756
  }
12757
12757
  };
12758
12758
 
12759
- var formkitVersion$1 = '202604072118';
12759
+ var formkitVersion$1 = '202604072126';
12760
12760
 
12761
12761
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12762
12762
  // See LICENSE in the project root for license information.
@@ -13821,7 +13821,7 @@ class AuroBibtemplate extends i$4 {
13821
13821
  }
13822
13822
  }
13823
13823
 
13824
- var formkitVersion = '202604072118';
13824
+ var formkitVersion = '202604072126';
13825
13825
 
13826
13826
  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}`;
13827
13827
 
@@ -4925,7 +4925,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4925
4925
  }
4926
4926
  };
4927
4927
 
4928
- var formkitVersion$2 = '202604072118';
4928
+ var formkitVersion$2 = '202604072126';
4929
4929
 
4930
4930
  let AuroElement$2 = class AuroElement extends LitElement {
4931
4931
  static get properties() {
@@ -12682,7 +12682,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12682
12682
  }
12683
12683
  };
12684
12684
 
12685
- var formkitVersion$1 = '202604072118';
12685
+ var formkitVersion$1 = '202604072126';
12686
12686
 
12687
12687
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12688
12688
  // See LICENSE in the project root for license information.
@@ -13747,7 +13747,7 @@ class AuroBibtemplate extends LitElement {
13747
13747
  }
13748
13748
  }
13749
13749
 
13750
- var formkitVersion = '202604072118';
13750
+ var formkitVersion = '202604072126';
13751
13751
 
13752
13752
  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}`;
13753
13753
 
@@ -4925,7 +4925,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
4925
4925
  }
4926
4926
  };
4927
4927
 
4928
- var formkitVersion$2 = '202604072118';
4928
+ var formkitVersion$2 = '202604072126';
4929
4929
 
4930
4930
  let AuroElement$2 = class AuroElement extends LitElement {
4931
4931
  static get properties() {
@@ -12682,7 +12682,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
12682
12682
  }
12683
12683
  };
12684
12684
 
12685
- var formkitVersion$1 = '202604072118';
12685
+ var formkitVersion$1 = '202604072126';
12686
12686
 
12687
12687
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
12688
12688
  // See LICENSE in the project root for license information.
@@ -13747,7 +13747,7 @@ class AuroBibtemplate extends LitElement {
13747
13747
  }
13748
13748
  }
13749
13749
 
13750
- var formkitVersion = '202604072118';
13750
+ var formkitVersion = '202604072126';
13751
13751
 
13752
13752
  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}`;
13753
13753
 
@@ -1521,7 +1521,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1521
1521
  }
1522
1522
  };
1523
1523
 
1524
- var formkitVersion$1 = '202604072118';
1524
+ var formkitVersion$1 = '202604072126';
1525
1525
 
1526
1526
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1527
1527
  // See LICENSE in the project root for license information.
@@ -5594,7 +5594,7 @@ class AuroHelpText extends i$2 {
5594
5594
  }
5595
5595
  }
5596
5596
 
5597
- var formkitVersion = '202604072118';
5597
+ var formkitVersion = '202604072126';
5598
5598
 
5599
5599
  let AuroElement$1 = class AuroElement extends i$2 {
5600
5600
  static get properties() {
@@ -1521,7 +1521,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
1521
1521
  }
1522
1522
  };
1523
1523
 
1524
- var formkitVersion$1 = '202604072118';
1524
+ var formkitVersion$1 = '202604072126';
1525
1525
 
1526
1526
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1527
1527
  // See LICENSE in the project root for license information.
@@ -5594,7 +5594,7 @@ class AuroHelpText extends i$2 {
5594
5594
  }
5595
5595
  }
5596
5596
 
5597
- var formkitVersion = '202604072118';
5597
+ var formkitVersion = '202604072126';
5598
5598
 
5599
5599
  let AuroElement$1 = class AuroElement extends i$2 {
5600
5600
  static get properties() {
@@ -1471,7 +1471,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1471
1471
  }
1472
1472
  };
1473
1473
 
1474
- var formkitVersion$1 = '202604072118';
1474
+ var formkitVersion$1 = '202604072126';
1475
1475
 
1476
1476
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1477
1477
  // See LICENSE in the project root for license information.
@@ -5526,7 +5526,7 @@ class AuroHelpText extends LitElement {
5526
5526
  }
5527
5527
  }
5528
5528
 
5529
- var formkitVersion = '202604072118';
5529
+ var formkitVersion = '202604072126';
5530
5530
 
5531
5531
  let AuroElement$1 = class AuroElement extends LitElement {
5532
5532
  static get properties() {
@@ -1471,7 +1471,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
1471
1471
  }
1472
1472
  };
1473
1473
 
1474
- var formkitVersion$1 = '202604072118';
1474
+ var formkitVersion$1 = '202604072126';
1475
1475
 
1476
1476
  // Copyright (c) 2026 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
1477
1477
  // See LICENSE in the project root for license information.
@@ -5526,7 +5526,7 @@ class AuroHelpText extends LitElement {
5526
5526
  }
5527
5527
  }
5528
5528
 
5529
- var formkitVersion = '202604072118';
5529
+ var formkitVersion = '202604072126';
5530
5530
 
5531
5531
  let AuroElement$1 = class AuroElement extends LitElement {
5532
5532
  static get properties() {