@aurodesignsystem-dev/auro-formkit 0.0.0-pr1451.20 → 0.0.0-pr1451.21

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 (59) hide show
  1. package/components/checkbox/demo/api.min.js +1 -1
  2. package/components/checkbox/demo/index.min.js +1 -1
  3. package/components/checkbox/dist/index.js +1 -1
  4. package/components/checkbox/dist/registered.js +1 -1
  5. package/components/combobox/demo/api.min.js +3 -3
  6. package/components/combobox/demo/customize.min.js +3 -3
  7. package/components/combobox/demo/getting-started.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/README.md +9 -9
  24. package/components/form/demo/accessibility.html +51 -0
  25. package/components/form/demo/accessibility.md +23 -0
  26. package/components/form/demo/api.html +11 -14
  27. package/components/form/demo/api.md +0 -276
  28. package/components/form/demo/api.min.js +13 -13
  29. package/components/form/demo/customize.html +54 -0
  30. package/components/form/demo/customize.md +246 -0
  31. package/components/form/demo/demo-support.js +60 -0
  32. package/components/form/demo/getting-started.html +54 -0
  33. package/components/form/demo/getting-started.md +291 -0
  34. package/components/form/demo/index.html +12 -14
  35. package/components/form/demo/index.md +66 -96
  36. package/components/form/demo/index.min.js +13 -13
  37. package/components/form/demo/keyboard-behavior.html +51 -0
  38. package/components/form/demo/readme.html +12 -17
  39. package/components/form/demo/readme.md +9 -9
  40. package/components/form/demo/styles.css +974 -0
  41. package/components/form/demo/voiceover.html +51 -0
  42. package/components/form/demo/voiceover.md +36 -0
  43. package/components/input/demo/api.min.js +1 -1
  44. package/components/input/demo/customize.min.js +1 -1
  45. package/components/input/demo/getting-started.min.js +1 -1
  46. package/components/input/demo/index.min.js +1 -1
  47. package/components/input/dist/index.js +1 -1
  48. package/components/input/dist/registered.js +1 -1
  49. package/components/radio/demo/api.min.js +1 -1
  50. package/components/radio/demo/index.min.js +1 -1
  51. package/components/radio/dist/index.js +1 -1
  52. package/components/radio/dist/registered.js +1 -1
  53. package/components/select/demo/customize.min.js +2 -2
  54. package/components/select/demo/getting-started.min.js +2 -2
  55. package/components/select/demo/index.min.js +2 -2
  56. package/components/select/dist/index.js +2 -2
  57. package/components/select/dist/registered.js +2 -2
  58. package/custom-elements.json +1489 -1489
  59. package/package.json +1 -1
@@ -21,7 +21,7 @@ The following sections are editable by making changes to the following files:
21
21
 
22
22
  <!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/description.md) -->
23
23
  <!-- The below content is automatically added from ./docs/partials/description.md -->
24
- `<auro-form>` is a [HTML custom element](https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements) designed to
24
+ <code>&lt;auro-form&gt;</code> is a <auro-hyperlink href="https://developer.mozilla.org/en-US/docs/Web/Web_Components/Using_custom_elements" target="_blank">HTML custom element</auro-hyperlink> designed to
25
25
  serve as the base logic for all auro-constructed forms.
26
26
 
27
27
  It automatically "scrapes" its inner content for any auro form elements, and surfaces
@@ -89,21 +89,21 @@ To only develop a single component, use the `--filter` flag:
89
89
 
90
90
  ## Custom Component Registration for Version Management
91
91
 
92
- There are two key parts to every Auro component: the <a href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes">class</a> and the custom element definition. The class defines the component's behavior, while the custom element registers it under a specific name so it can be used in HTML.
92
+ There are two key parts to every Auro component: the <auro-hyperlink href="https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Classes" target="_blank">class</auro-hyperlink> and the custom element definition. The class defines the component's behavior, while the custom element registers it under a specific name so it can be used in HTML.
93
93
 
94
- You can do this by importing only the component class and using the `register(name)` method with a unique name:
94
+ You can do this by importing only the component class and using the <code>register(name)</code> method with a unique name:
95
95
 
96
96
  <pre class="language-js"><code class="language-js">// Import the class only
97
97
  import { AuroForm } from '@aurodesignsystem/auro-formkit/auro-form/class';
98
98
 
99
99
  // Register with a custom name if desired
100
- AuroForm.register('custom-form');</code></pre>
100
+ AuroForm.register('[custom]-form');</code></pre>
101
101
 
102
102
  This will create a new custom element `<custom-form>` that behaves exactly like `<auro-form>`, allowing both to coexist on the same page without interfering with each other.
103
103
 
104
104
  ### Using Custom-Named Child Form Elements
105
105
 
106
- When consuming custom-named Auro form elements (like `auro-input` registered as `my-custom-input`),
106
+ When consuming custom-named Auro form elements (like `auro-input` registered as `custom-input`),
107
107
  these elements _must_ be registered BEFORE auro-form due to rendering order limitations.
108
108
  Auro form elements are automatically recognized based on their tag name (e.g. `auro-input`) or special auro attributes which are only assigned during the initial render.
109
109
 
@@ -112,14 +112,14 @@ For example, the following is correct:
112
112
  <pre class="language-javascript"><code class="language-javascript">import { AuroInput } from '@aurodesignsystem/auro-formkit/auro-input/class';
113
113
  import { AuroForm } from '@aurodesignsystem/auro-formkit/auro-form/class';
114
114
 
115
- AuroInput.register('my-custom-input'); // adds an internal identifier auro-form uses to recognize the custom element
116
- AuroForm.register(); // render looks for said identifier</code></pre>
115
+ AuroInput.register('[custom]-input'); // adds an internal identifier auro-form uses to recognize the custom element
116
+ AuroForm.register('[custom]-form'); // render looks for said identifier</code></pre>
117
117
 
118
118
  The following is NOT correct and will result in forms not working as expected:
119
119
 
120
120
  <pre class="language-javascript"><code class="language-javascript">import { AuroInput } from '@aurodesignsystem/auro-formkit/auro-input/class';
121
121
  import { AuroForm } from '@aurodesignsystem/auro-formkit/auro-form/class';
122
122
 
123
- AuroForm.register(); // forms start rendering, looking for auro inputs, or custom-named inputs
124
- AuroInput.register('my-custom-input'); // too late, form has already rendered and did not find the custom element</code></pre>
123
+ AuroForm.register('[custom]-form'); // forms start rendering, looking for auro inputs, or custom-named inputs
124
+ AuroInput.register('[custom]-input'); // too late, form has already rendered and did not find the custom element</code></pre>
125
125
  <!-- AURO-GENERATED-CONTENT:END -->
@@ -0,0 +1,51 @@
1
+ <!--
2
+ Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
3
+ See LICENSE in the project root for license information.
4
+
5
+ HTML in this document is standardized and NOT to be edited.
6
+ All demo code should be added/edited in ./demo/accessibility.md
7
+
8
+ With the exception of adding custom elements if needed for the demo.
9
+
10
+ ----------------------- DO NOT EDIT -----------------------------
11
+
12
+ -->
13
+
14
+ <!DOCTYPE html>
15
+ <html lang="en">
16
+ <head>
17
+ <meta charset="UTF-8" />
18
+ <meta name="viewport" content="width=device-width, initial-scale=1.0" />
19
+ <title>Auro Web Component Demo | auro-form | Accessibility</title>
20
+
21
+ <!-- highlight.js Stylesheet -->
22
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/github.min.css"/>
23
+
24
+ <!-- Legacy reference is still needed to support auro-form's use of legacy token values at this time -->
25
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/legacy/auro-classic/CSSCustomProperties.css"/>
26
+
27
+ <!-- Design Token Alaska Theme -->
28
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/themes/alaska/CSSCustomProperties--alaska.min.css"/>
29
+
30
+ <!-- Webcore Stylesheet Alaska Theme -->
31
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/bundled/themes/alaska.global.min.css" />
32
+
33
+ <!-- Demo Specific Styles -->
34
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/demoWrapper.css" />
35
+ <link rel="stylesheet" type="text/css" href="./styles.css" />
36
+ </head>
37
+ <body class="auro-markdown">
38
+ <main></main>
39
+
40
+ <script type="module">
41
+ import { renderPage } from './demo-support.js';
42
+ await renderPage('./accessibility.md');
43
+ </script>
44
+
45
+ <!-- If additional elements are needed for the demo, add them here. -->
46
+ <script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-header@latest/+esm" type="module"></script>
47
+ <script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-icon@latest/+esm" type="module"></script>
48
+
49
+ <script src="./index.min.js" data-demo-script="true" type="module"></script>
50
+ </body>
51
+ </html>
@@ -0,0 +1,23 @@
1
+ <auro-header level="1" id="overview">Form - Accessibility</auro-header>
2
+ <div class="contentWrapper">
3
+ <div class="mainContent">
4
+ <div class="scrollWrapper">
5
+ <section>
6
+ <auro-header level="2" id="formRole">Form Role</auro-header>
7
+ <p>The <code>auro-form</code> component renders as a container element that wraps Auro form elements. It does not add an explicit ARIA role — the semantic meaning comes from the form elements within it.</p>
8
+ </section>
9
+ <section>
10
+ <auro-header level="2" id="labelRequirements">Label Requirements</auro-header>
11
+ <p>Each Auro form element inside <code>auro-form</code> is individually responsible for providing accessible labels. Ensure every <code>auro-input</code>, <code>auro-select</code>, <code>auro-datepicker</code>, and other form elements include proper label content via their <code>label</code> slot or <code>aria-label</code> attribute.</p>
12
+ </section>
13
+ <section>
14
+ <auro-header level="2" id="validation">Validation and Error Announcement</auro-header>
15
+ <p>When <code>submit()</code> is called and a form element is invalid, the error state is surfaced on each element. Error messages are announced to assistive technology users via the individual form element's help text region.</p>
16
+ </section>
17
+ <section>
18
+ <auro-header level="2" id="keyboardInteraction">Keyboard Interaction</auro-header>
19
+ <p>The <code>auro-form</code> component does not participate in the tab sequence itself. Each child form element is independently focusable. Pressing <code>Enter</code> while focused on a form element (not a textarea) will trigger form submission.</p>
20
+ </section>
21
+ </div>
22
+ </div>
23
+ </div>
@@ -18,8 +18,8 @@
18
18
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
19
19
  <title>Auro Web Component Demo | auro-form</title>
20
20
 
21
- <!-- Prism.js Stylesheet -->
22
- <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/prismjs@1.24.1/themes/prism.css"/>
21
+ <!-- highlight.js Stylesheet -->
22
+ <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@11.9.0/build/styles/github.min.css"/>
23
23
 
24
24
  <!-- Legacy reference is still needed to support auro-form's use of legacy token values at this time -->
25
25
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/design-tokens@latest/dist/legacy/auro-classic/CSSCustomProperties.css"/>
@@ -32,25 +32,22 @@
32
32
 
33
33
  <!-- Demo Specific Styles -->
34
34
  <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/demoWrapper.css" />
35
- <link rel="stylesheet" type="text/css" href="https://cdn.jsdelivr.net/npm/@aurodesignsystem/webcorestylesheets@latest/dist/elementDemoStyles.css" />
36
- </head>
35
+ <link rel="stylesheet" type="text/css" href="./styles.css" />
36
+ </head>
37
37
  <body class="auro-markdown">
38
38
  <main></main>
39
39
 
40
40
  <script type="module">
41
- import 'https://cdn.jsdelivr.net/npm/marked@latest/marked.min.js';
42
- import 'https://cdn.jsdelivr.net/npm/prismjs@latest/prism.js';
43
- fetch('./api.md')
44
- .then((response) => response.text())
45
- .then((text) => {
46
- const rawHtml = marked.parse(text);
47
- document.querySelector('main').innerHTML = rawHtml;
48
- Prism.highlightAll();
49
- });
41
+ import { renderPage } from './demo-support.js';
42
+ await renderPage('./api.md');
50
43
  </script>
51
- <script type="module" data-demo-script="true" src="./api.min.js"></script>
52
44
 
53
45
  <!-- If additional elements are needed for the demo, add them here. -->
54
46
  <script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-accordion@latest/+esm" type="module"></script>
47
+ <script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-header@latest/+esm" type="module"></script>
48
+ <script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-button@latest/+esm" type="module"></script>
49
+ <script src="https://cdn.jsdelivr.net/npm/@aurodesignsystem/auro-icon@latest/+esm" type="module"></script>
50
+
51
+ <script src="./api.min.js" data-demo-script="true" type="module"></script>
55
52
  </body>
56
53
  </html>
@@ -34,280 +34,4 @@ The `auro-form` element provides users a way to create and manage forms in a con
34
34
  | Name | Description |
35
35
  |-----------|-------------------------------------|
36
36
  | `default` | The default slot for form elements. |
37
- <!-- AURO-GENERATED-CONTENT:END -->
38
-
39
- ## Examples
40
-
41
- ### Basic Form
42
-
43
- The most basic form implementation requires an `auro-input` and an optional auro button with `type="submit"`.
44
-
45
- By default, Auro Form connects a `submit` event to all `type="submit"` buttons within the form.
46
-
47
- <div class="exampleWrapper">
48
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/basic.html) -->
49
- <!-- The below content is automatically added from ./../apiExamples/basic.html -->
50
- <auro-form>
51
- <auro-input id="search-box" name="searchBox" required>
52
- <span slot="label">Search flights</span>
53
- </auro-input>
54
- <br />
55
- <auro-button type="submit">Submit</auro-button>
56
- </auro-form>
57
- <!-- AURO-GENERATED-CONTENT:END -->
58
- </div>
59
- <auro-accordion alignRight>
60
- <span slot="trigger">See code</span>
61
- <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/basic.html) -->
62
- <!-- The below code snippet is automatically added from ./../apiExamples/basic.html -->
63
-
64
- <pre class="language-html"><code class="language-html">&lt;auro-form&gt;
65
- &lt;auro-input id="search-box" name="searchBox" required&gt;
66
- &lt;span slot="label"&gt;Search flights&lt;/span&gt;
67
- &lt;/auro-input&gt;
68
- &lt;br /&gt;
69
- &lt;auro-button type="submit"&gt;Submit&lt;/auro-button&gt;
70
- &lt;/auro-form&gt;</code></pre>
71
- <!-- AURO-GENERATED-CONTENT:END -->
72
- </auro-accordion>
73
-
74
- ### Form with Column Layout
75
-
76
- Auro Form is designed to be completely unstyled by default, allowing developers to use divs, structural elements, or
77
- custom CSS to style the form.
78
-
79
- This example shows that you can use advanced layouts with Auro Form, such as a column layout.
80
-
81
- <div class="exampleWrapper">
82
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/column-layout.html) -->
83
- <!-- The below content is automatically added from ./../apiExamples/column-layout.html -->
84
- <style>
85
- .columned-form {
86
- display: grid;
87
- grid-template-columns: 1fr 1fr;
88
- gap: 1rem;
89
- }
90
-
91
- .columned-form div {
92
- display: flex;
93
- flex-direction: column;
94
- padding: 1rem;
95
- gap: 1rem;
96
- }
97
-
98
- .controls {
99
- display: flex;
100
- justify-content: flex-end;
101
- margin-top: 1rem;
102
- }
103
- </style>
104
- <auro-form>
105
- <div class="columned-form">
106
- <div>
107
- <auro-input id="search-box" name="searchBox" required>
108
- <span slot="label">Search flights</span>
109
- </auro-input>
110
- <auro-input id="last-name" name="lastName" required>
111
- <span slot="label">Last Name</span>
112
- </auro-input>
113
- </div>
114
- <div>
115
- <div class="datepickerBlock">
116
- <h4>Pick a date range</h4>
117
- <auro-datepicker id="date-range" name="dateRange" required range>
118
- <span slot="fromLabel">Start</span>
119
- <span slot="toLabel">End</span>
120
- <span slot="bib.fullscreen.fromLabel">Start</span>
121
- <span slot="bib.fullscreen.toLabel">End</span>
122
- </auro-datepicker>
123
- </div>
124
- <div class="controls">
125
- <auro-button type="submit">Submit</auro-button>
126
- </div>
127
- </div>
128
- </div>
129
- </auro-form>
130
- <!-- AURO-GENERATED-CONTENT:END -->
131
- </div>
132
- <auro-accordion alignRight>
133
- <span slot="trigger">See code</span>
134
- <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/column-layout.html) -->
135
- <!-- The below code snippet is automatically added from ./../apiExamples/column-layout.html -->
136
-
137
- <pre class="language-html"><code class="language-html">&lt;style&gt;
138
- .columned-form {
139
- display: grid;
140
- grid-template-columns: 1fr 1fr;
141
- gap: 1rem;
142
- }
143
-
144
- .columned-form div {
145
- display: flex;
146
- flex-direction: column;
147
- padding: 1rem;
148
- gap: 1rem;
149
- }
150
-
151
- .controls {
152
- display: flex;
153
- justify-content: flex-end;
154
- margin-top: 1rem;
155
- }
156
- &lt;/style&gt;
157
- &lt;auro-form&gt;
158
- &lt;div class="columned-form"&gt;
159
- &lt;div&gt;
160
- &lt;auro-input id="search-box" name="searchBox" required&gt;
161
- &lt;span slot="label"&gt;Search flights&lt;/span&gt;
162
- &lt;/auro-input&gt;
163
- &lt;auro-input id="last-name" name="lastName" required&gt;
164
- &lt;span slot="label"&gt;Last Name&lt;/span&gt;
165
- &lt;/auro-input&gt;
166
- &lt;/div&gt;
167
- &lt;div&gt;
168
- &lt;div class="datepickerBlock"&gt;
169
- &lt;h4&gt;Pick a date range&lt;/h4&gt;
170
- &lt;auro-datepicker id="date-range" name="dateRange" required range&gt;
171
- &lt;span slot="fromLabel"&gt;Start&lt;/span&gt;
172
- &lt;span slot="toLabel"&gt;End&lt;/span&gt;
173
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Start&lt;/span&gt;
174
- &lt;span slot="bib.fullscreen.toLabel"&gt;End&lt;/span&gt;
175
- &lt;/auro-datepicker&gt;
176
- &lt;/div&gt;
177
- &lt;div class="controls"&gt;
178
- &lt;auro-button type="submit"&gt;Submit&lt;/auro-button&gt;
179
- &lt;/div&gt;
180
- &lt;/div&gt;
181
- &lt;/div&gt;
182
- &lt;/auro-form&gt;</code></pre>
183
- <!-- AURO-GENERATED-CONTENT:END -->
184
- </auro-accordion>
185
-
186
- ### Complex Form
187
-
188
- Finally, a more complex form example with multiple form elements, including a date picker and a select element.
189
-
190
- <div class="exampleWrapper">
191
- <!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/complex.html) -->
192
- <!-- The below content is automatically added from ./../apiExamples/complex.html -->
193
- <style>
194
- .submitBlock {
195
- margin-top: 1rem;
196
- display: flex;
197
- justify-content: flex-end;
198
- gap: 1rem;
199
- }
200
-
201
- .datepickerBlock {
202
- margin-top: 1rem;
203
- }
204
-
205
- .complex-form {
206
- display: block;
207
- padding: 1rem;
208
- border: 1px solid #2a2a2a;
209
- border-radius: 1rem;
210
- }
211
- </style>
212
- <auro-form class="complex-form">
213
- <auro-input id="first-name" name="firstName" required>
214
- <span slot="label">First Name</span>
215
- </auro-input>
216
- <br />
217
- <auro-input id="last-name" name="lastName" required>
218
- <span slot="label">Last Name</span>
219
- </auro-input>
220
- <br />
221
- <auro-input id="occupation" name="occupation" required>
222
- <span slot="label">Occupation</span>
223
- </auro-input>
224
- <br />
225
- <auro-input-two id="cool-fact" name="coolFact" required>
226
- <span slot="label">Cool Fact</span>
227
- </auro-input-two>
228
- <div class="datepickerBlock">
229
- <h4>Pick a cool date</h4>
230
- <auro-datepicker id="date-example" name="dateExample" required>
231
- <span slot="fromLabel">Choose a date</span>
232
- <span slot="bib.fullscreen.fromLabel">Choose a date</span>
233
- </auro-datepicker>
234
- </div>
235
- <div class="datepickerBlock">
236
- <h4>Pick a date range</h4>
237
- <auro-datepicker id="date-range" name="dateRange" required range>
238
- <span slot="fromLabel">Start</span>
239
- <span slot="toLabel">End</span>
240
- <span slot="bib.fullscreen.fromLabel">Start</span>
241
- <span slot="bib.fullscreen.toLabel">End</span>
242
- </auro-datepicker>
243
- </div>
244
- <div class="submitBlock">
245
- <auro-button type="reset">Reset</auro-button>
246
- <auro-button type="submit">Submit</auro-button>
247
- </div>
248
- </auro-form>
249
- <!-- AURO-GENERATED-CONTENT:END -->
250
- </div>
251
- <auro-accordion alignRight>
252
- <span slot="trigger">See code</span>
253
- <!-- AURO-GENERATED-CONTENT:START (CODE:src=./../apiExamples/complex.html) -->
254
- <!-- The below code snippet is automatically added from ./../apiExamples/complex.html -->
255
-
256
- <pre class="language-html"><code class="language-html">&lt;style&gt;
257
- .submitBlock {
258
- margin-top: 1rem;
259
- display: flex;
260
- justify-content: flex-end;
261
- gap: 1rem;
262
- }
263
-
264
- .datepickerBlock {
265
- margin-top: 1rem;
266
- }
267
-
268
- .complex-form {
269
- display: block;
270
- padding: 1rem;
271
- border: 1px solid #2a2a2a;
272
- border-radius: 1rem;
273
- }
274
- &lt;/style&gt;
275
- &lt;auro-form class="complex-form"&gt;
276
- &lt;auro-input id="first-name" name="firstName" required&gt;
277
- &lt;span slot="label"&gt;First Name&lt;/span&gt;
278
- &lt;/auro-input&gt;
279
- &lt;br /&gt;
280
- &lt;auro-input id="last-name" name="lastName" required&gt;
281
- &lt;span slot="label"&gt;Last Name&lt;/span&gt;
282
- &lt;/auro-input&gt;
283
- &lt;br /&gt;
284
- &lt;auro-input id="occupation" name="occupation" required&gt;
285
- &lt;span slot="label"&gt;Occupation&lt;/span&gt;
286
- &lt;/auro-input&gt;
287
- &lt;br /&gt;
288
- &lt;auro-input-two id="cool-fact" name="coolFact" required&gt;
289
- &lt;span slot="label"&gt;Cool Fact&lt;/span&gt;
290
- &lt;/auro-input-two&gt;
291
- &lt;div class="datepickerBlock"&gt;
292
- &lt;h4&gt;Pick a cool date&lt;/h4&gt;
293
- &lt;auro-datepicker id="date-example" name="dateExample" required&gt;
294
- &lt;span slot="fromLabel"&gt;Choose a date&lt;/span&gt;
295
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Choose a date&lt;/span&gt;
296
- &lt;/auro-datepicker&gt;
297
- &lt;/div&gt;
298
- &lt;div class="datepickerBlock"&gt;
299
- &lt;h4&gt;Pick a date range&lt;/h4&gt;
300
- &lt;auro-datepicker id="date-range" name="dateRange" required range&gt;
301
- &lt;span slot="fromLabel"&gt;Start&lt;/span&gt;
302
- &lt;span slot="toLabel"&gt;End&lt;/span&gt;
303
- &lt;span slot="bib.fullscreen.fromLabel"&gt;Start&lt;/span&gt;
304
- &lt;span slot="bib.fullscreen.toLabel"&gt;End&lt;/span&gt;
305
- &lt;/auro-datepicker&gt;
306
- &lt;/div&gt;
307
- &lt;div class="submitBlock"&gt;
308
- &lt;auro-button type="reset"&gt;Reset&lt;/auro-button&gt;
309
- &lt;auro-button type="submit"&gt;Submit&lt;/auro-button&gt;
310
- &lt;/div&gt;
311
- &lt;/auro-form&gt;</code></pre>
312
37
  <!-- AURO-GENERATED-CONTENT:END -->
313
- </auro-accordion>
@@ -7458,7 +7458,7 @@ let AuroHelpText$8 = class AuroHelpText extends i$4 {
7458
7458
  }
7459
7459
  };
7460
7460
 
7461
- var formkitVersion$8 = '202605042308';
7461
+ var formkitVersion$8 = '202605042344';
7462
7462
 
7463
7463
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
7464
7464
  // See LICENSE in the project root for license information.
@@ -17378,7 +17378,7 @@ let AuroBibtemplate$3 = class AuroBibtemplate extends i$4 {
17378
17378
  }
17379
17379
  };
17380
17380
 
17381
- var formkitVersion$2$1 = '202605042308';
17381
+ var formkitVersion$2$1 = '202605042344';
17382
17382
 
17383
17383
  let l$1$2 = 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$3`${s$6(r)}`;return customElements.get(r)||customElements.define(r,class extends a{}),i}};let d$1$2 = 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$1$2 = 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$1$3=i$7`: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}
17384
17384
  `,u$4$2=i$7`.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}}
@@ -21584,7 +21584,7 @@ let AuroHelpText$2$1 = class AuroHelpText extends i$4 {
21584
21584
  }
21585
21585
  };
21586
21586
 
21587
- var formkitVersion$1$3 = '202605042308';
21587
+ var formkitVersion$1$3 = '202605042344';
21588
21588
 
21589
21589
  let AuroElement$2$2 = class AuroElement extends i$4 {
21590
21590
  static get properties() {
@@ -29329,7 +29329,7 @@ let AuroHelpText$1$3 = class AuroHelpText extends i$4 {
29329
29329
  }
29330
29330
  };
29331
29331
 
29332
- var formkitVersion$7 = '202605042308';
29332
+ var formkitVersion$7 = '202605042344';
29333
29333
 
29334
29334
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
29335
29335
  // See LICENSE in the project root for license information.
@@ -33997,7 +33997,7 @@ let AuroHelpText$1$2 = class AuroHelpText extends i$4 {
33997
33997
  }
33998
33998
  };
33999
33999
 
34000
- var formkitVersion$1$2 = '202605042308';
34000
+ var formkitVersion$1$2 = '202605042344';
34001
34001
 
34002
34002
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
34003
34003
  // See LICENSE in the project root for license information.
@@ -38187,7 +38187,7 @@ let AuroHelpText$6 = class AuroHelpText extends i$4 {
38187
38187
  }
38188
38188
  };
38189
38189
 
38190
- var formkitVersion$6 = '202605042308';
38190
+ var formkitVersion$6 = '202605042344';
38191
38191
 
38192
38192
  let AuroElement$1$2 = class AuroElement extends i$4 {
38193
38193
  static get properties() {
@@ -42279,7 +42279,7 @@ let AuroHelpText$5 = class AuroHelpText extends i$4 {
42279
42279
  }
42280
42280
  };
42281
42281
 
42282
- var formkitVersion$5 = '202605042308';
42282
+ var formkitVersion$5 = '202605042344';
42283
42283
 
42284
42284
  // Copyright (c) Alaska Air. All right reserved. Licensed under the Apache-2.0 license
42285
42285
  // See LICENSE in the project root for license information.
@@ -44451,7 +44451,7 @@ let AuroHelpText$4 = class AuroHelpText extends i$4 {
44451
44451
  }
44452
44452
  };
44453
44453
 
44454
- var formkitVersion$4 = '202605042308';
44454
+ var formkitVersion$4 = '202605042344';
44455
44455
 
44456
44456
  // Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
44457
44457
  // See LICENSE in the project root for license information.
@@ -49933,7 +49933,7 @@ let AuroHelpText$2 = class AuroHelpText extends i$4 {
49933
49933
  }
49934
49934
  };
49935
49935
 
49936
- var formkitVersion$2 = '202605042308';
49936
+ var formkitVersion$2 = '202605042344';
49937
49937
 
49938
49938
  let AuroElement$2$1 = class AuroElement extends i$4 {
49939
49939
  static get properties() {
@@ -57678,7 +57678,7 @@ let AuroHelpText$1$1 = class AuroHelpText extends i$4 {
57678
57678
  }
57679
57679
  };
57680
57680
 
57681
- var formkitVersion$1$1 = '202605042308';
57681
+ var formkitVersion$1$1 = '202605042344';
57682
57682
 
57683
57683
  // Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
57684
57684
  // See LICENSE in the project root for license information.
@@ -58743,7 +58743,7 @@ let AuroBibtemplate$1 = class AuroBibtemplate extends i$4 {
58743
58743
  }
58744
58744
  };
58745
58745
 
58746
- var formkitVersion$3 = '202605042308';
58746
+ var formkitVersion$3 = '202605042344';
58747
58747
 
58748
58748
  var styleCss$1$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}`;
58749
58749
 
@@ -68082,7 +68082,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$4 {
68082
68082
  }
68083
68083
  };
68084
68084
 
68085
- var formkitVersion$1 = '202605042308';
68085
+ var formkitVersion$1 = '202605042344';
68086
68086
 
68087
68087
  class AuroElement extends i$4 {
68088
68088
  static get properties() {
@@ -69835,7 +69835,7 @@ class AuroHelpText extends i$4 {
69835
69835
  }
69836
69836
  }
69837
69837
 
69838
- var formkitVersion = '202605042308';
69838
+ var formkitVersion = '202605042344';
69839
69839
 
69840
69840
  var styleCss = 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}.body-default{font-size:var(--wcss-body-default-font-size, 1rem);font-weight:var(--wcss-body-default-weight, );line-height:var(--wcss-body-default-line-height, 1.5rem)}.body-default,.body-default-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-default-emphasized{font-size:var(--wcss-body-default-emphasized-font-size, 1rem);font-weight:var(--wcss-body-default-emphasized-weight, );line-height:var(--wcss-body-default-emphasized-line-height, 1.5rem)}.body-lg{font-size:var(--wcss-body-lg-font-size, 1.125rem);font-weight:var(--wcss-body-lg-weight, );line-height:var(--wcss-body-lg-line-height, 1.625rem)}.body-lg,.body-lg-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-lg-emphasized{font-size:var(--wcss-body-lg-emphasized-font-size, 1.125rem);font-weight:var(--wcss-body-lg-emphasized-weight, );line-height:var(--wcss-body-lg-emphasized-line-height, 1.625rem)}.body-sm{font-size:var(--wcss-body-sm-font-size, 0.875rem);font-weight:var(--wcss-body-sm-weight, );line-height:var(--wcss-body-sm-line-height, 1.25rem)}.body-sm,.body-sm-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-sm-emphasized{font-size:var(--wcss-body-sm-emphasized-font-size, 0.875rem);font-weight:var(--wcss-body-sm-emphasized-weight, );line-height:var(--wcss-body-sm-emphasized-line-height, 1.25rem)}.body-xs{font-size:var(--wcss-body-xs-font-size, 0.75rem);font-weight:var(--wcss-body-xs-weight, );line-height:var(--wcss-body-xs-line-height, 1rem)}.body-xs,.body-xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-xs-emphasized{font-size:var(--wcss-body-xs-emphasized-font-size, 0.75rem);font-weight:var(--wcss-body-xs-emphasized-weight, );line-height:var(--wcss-body-xs-emphasized-line-height, 1rem)}.body-2xs{font-size:var(--wcss-body-2xs-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-weight, );line-height:var(--wcss-body-2xs-line-height, 0.875rem)}.body-2xs,.body-2xs-emphasized{font-family:var(--wcss-body-family, "AS Circular"),system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,sans-serif;letter-spacing:var(--wcss-body-letter-spacing, 0)}.body-2xs-emphasized{font-size:var(--wcss-body-2xs-emphasized-font-size, 0.625rem);font-weight:var(--wcss-body-2xs-emphasized-weight, );line-height:var(--wcss-body-2xs-emphasized-line-height, 0.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, 300);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, 300);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, 0.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, 0.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, 0.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, 0.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, 0.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, 0.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(0.875rem, 1.1666666667vw, 0.875rem));font-weight:var(--wcss-accent-2xs-weight, 450);letter-spacing:var(--wcss-accent-2xs-letter-spacing, 0.1em);line-height:var(--wcss-accent-2xs-line-height, 1.3);text-transform:uppercase}[auro-dropdown]{--ds-auro-dropdown-trigger-border-color: var(--ds-auro-select-border-color);--ds-auro-dropdown-trigger-background-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-container-color: var(--ds-auro-select-background-color);--ds-auro-dropdown-trigger-outline-color: var(--ds-auro-select-outline-color)}:host{display:inline-block;text-align:left;vertical-align:top}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}:host([layout*=emphasized]) .mainContent,:host([layout*=snowflake]) .mainContent{text-align:center}.mainContent{position:relative;display:flex;overflow:hidden;flex:1;flex-direction:column;align-items:center;justify-content:center}.valueContainer [slot=displayValue]{display:none}.accents{display:flex;flex-direction:row;align-items:center;justify-content:center}::slotted([slot=typeIcon]){margin-right:var(--ds-size-100, 0.5rem)}.displayValue{display:block}.displayValue:not(.force){display:none}.displayValue:not(.force).hasContent:is(.withValue):not(.hasFocus){display:block}.triggerContent{display:flex;width:100%;align-items:center;justify-content:center}:host([layout*=emphasized]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-300, 1.5rem)}:host([layout*=snowflake]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem) 0 var(--ds-size-200, 1rem)}:host([layout*=snowflake]) label{padding-block:var(--ds-size-25, 0.125rem)}:host([layout*=classic]) .triggerContent{padding:0 var(--ds-size-100, 0.5rem)}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{overflow:hidden;cursor:text;text-overflow:ellipsis;white-space:nowrap}:host([layout*=classic]) .value{height:auto}label{color:var(--ds-auro-select-label-text-color)}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-select-outline-color: var(--ds-basic-color-status-error, #e31f26);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-default, #2a2a2a)}:host([ondark]:is([validity]:not([validity=valid]))) [auro-dropdown],:host([appearance=inverse]:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-select-outline-color: var(--ds-advanced-color-state-error-inverse, #f9a4a8);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([fluid]){width:100%}:host([disabled]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown],:host([disabled]:not([appearance=inverse])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown],:host(:not([layout*=classic])[disabled][appearance=inverse]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
69841
69841