@aurodesignsystem-dev/auro-formkit 0.0.0-pr1595.0 → 0.0.0-pr1595.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/checkbox/demo/customize.min.js +1 -1
- package/components/checkbox/demo/getting-started.min.js +1 -1
- package/components/checkbox/demo/index.min.js +1 -1
- package/components/checkbox/dist/index.js +1 -1
- package/components/checkbox/dist/registered.js +1 -1
- package/components/combobox/demo/api.md +2 -2
- package/components/combobox/demo/customize.min.js +26 -10
- package/components/combobox/demo/getting-started.min.js +26 -10
- package/components/combobox/demo/index.min.js +26 -10
- package/components/combobox/dist/auro-combobox.d.ts +10 -22
- package/components/combobox/dist/index.js +22 -8
- package/components/combobox/dist/registered.js +22 -8
- package/components/counter/demo/api.md +1 -1
- package/components/counter/demo/customize.min.js +6 -3
- package/components/counter/demo/index.min.js +6 -3
- package/components/counter/dist/auro-counter-group.d.ts +4 -4
- package/components/counter/dist/index.js +6 -3
- package/components/counter/dist/registered.js +6 -3
- package/components/datepicker/demo/api.md +3 -3
- package/components/datepicker/demo/customize.min.js +39 -10
- package/components/datepicker/demo/index.min.js +39 -10
- package/components/datepicker/dist/auro-calendar-cell.d.ts +4 -5
- package/components/datepicker/dist/auro-calendar-month.d.ts +2 -4
- package/components/datepicker/dist/auro-calendar.d.ts +10 -7
- package/components/datepicker/dist/auro-datepicker.d.ts +14 -19
- package/components/datepicker/dist/index.js +39 -10
- package/components/datepicker/dist/registered.js +39 -10
- package/components/dropdown/demo/api.md +1 -1
- package/components/dropdown/demo/customize.min.js +3 -2
- package/components/dropdown/demo/getting-started.min.js +16 -6
- package/components/dropdown/demo/index.min.js +3 -2
- package/components/dropdown/dist/auro-dropdown.d.ts +3 -6
- package/components/dropdown/dist/index.js +3 -2
- package/components/dropdown/dist/registered.js +3 -2
- package/components/form/demo/customize.min.js +92 -33
- package/components/form/demo/getting-started.min.js +92 -33
- package/components/form/demo/index.min.js +92 -33
- package/components/form/demo/registerDemoDeps.min.js +92 -33
- package/components/input/demo/customize.min.js +13 -4
- package/components/input/demo/getting-started.min.js +13 -4
- package/components/input/demo/index.min.js +13 -4
- package/components/input/dist/base-input.d.ts +12 -3
- package/components/input/dist/index.js +13 -4
- package/components/input/dist/registered.js +13 -4
- package/components/menu/demo/api.md +4 -3
- package/components/menu/demo/index.min.js +4 -2
- package/components/menu/dist/auro-menu.d.ts +3 -9
- package/components/menu/dist/auro-menuoption.d.ts +1 -1
- package/components/menu/dist/index.js +4 -2
- package/components/menu/dist/registered.js +4 -2
- package/components/radio/demo/api.md +1 -1
- package/components/radio/demo/customize.min.js +2 -1
- package/components/radio/demo/getting-started.min.js +2 -1
- package/components/radio/demo/index.min.js +2 -1
- package/components/radio/dist/auro-radio-group.d.ts +2 -4
- package/components/radio/dist/index.js +2 -1
- package/components/radio/dist/registered.js +2 -1
- package/components/select/demo/customize.min.js +9 -6
- package/components/select/demo/getting-started.min.js +9 -6
- package/components/select/demo/index.min.js +9 -6
- package/components/select/dist/auro-select.d.ts +1 -1
- package/components/select/dist/index.js +5 -4
- package/components/select/dist/registered.js +5 -4
- package/custom-elements.json +1542 -1582
- package/package.json +1 -1
|
@@ -4938,7 +4938,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4938
4938
|
}
|
|
4939
4939
|
};
|
|
4940
4940
|
|
|
4941
|
-
var formkitVersion$2 = '
|
|
4941
|
+
var formkitVersion$2 = '202608300041';
|
|
4942
4942
|
|
|
4943
4943
|
/**
|
|
4944
4944
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5478,7 +5478,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5478
5478
|
*/
|
|
5479
5479
|
hasTriggerContent: {
|
|
5480
5480
|
type: Boolean,
|
|
5481
|
-
attribute:
|
|
5481
|
+
attribute: false
|
|
5482
5482
|
},
|
|
5483
5483
|
|
|
5484
5484
|
/**
|
|
@@ -5601,6 +5601,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5601
5601
|
|
|
5602
5602
|
/**
|
|
5603
5603
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
5604
|
+
* @type {() => void}
|
|
5604
5605
|
*/
|
|
5605
5606
|
onSlotChange: {
|
|
5606
5607
|
type: Function,
|
|
@@ -17017,7 +17018,10 @@ class BaseInput extends AuroElement$1 {
|
|
|
17017
17018
|
// during its own update cycle sees a populated util instance.
|
|
17018
17019
|
this.activeLabel = false;
|
|
17019
17020
|
|
|
17020
|
-
/**
|
|
17021
|
+
/**
|
|
17022
|
+
* @private
|
|
17023
|
+
* @type {string[]}
|
|
17024
|
+
*/
|
|
17021
17025
|
this.allowedInputTypes = [
|
|
17022
17026
|
"text",
|
|
17023
17027
|
"number",
|
|
@@ -17030,7 +17034,10 @@ class BaseInput extends AuroElement$1 {
|
|
|
17030
17034
|
/** @type {'default' | 'inverse'} */
|
|
17031
17035
|
this.appearance = "default";
|
|
17032
17036
|
|
|
17033
|
-
/**
|
|
17037
|
+
/**
|
|
17038
|
+
* @private
|
|
17039
|
+
* @type {Record<string, string>}
|
|
17040
|
+
*/
|
|
17034
17041
|
this.dateFormatMap = {
|
|
17035
17042
|
'mm/dd/yyyy': 'dateMMDDYYYY',
|
|
17036
17043
|
'dd/mm/yyyy': 'dateDDMMYYYY',
|
|
@@ -17076,7 +17083,10 @@ class BaseInput extends AuroElement$1 {
|
|
|
17076
17083
|
this.setCustomValidityForType = undefined;
|
|
17077
17084
|
// Credit Card is intentionally excluded — its mask manages the cursor
|
|
17078
17085
|
// itself, and listing it here caused cursor placement issues in Safari.
|
|
17079
|
-
/**
|
|
17086
|
+
/**
|
|
17087
|
+
* @private
|
|
17088
|
+
* @type {string[]}
|
|
17089
|
+
*/
|
|
17080
17090
|
this.setSelectionInputTypes = [
|
|
17081
17091
|
"text",
|
|
17082
17092
|
"password",
|
|
@@ -18787,7 +18797,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
18787
18797
|
}
|
|
18788
18798
|
};
|
|
18789
18799
|
|
|
18790
|
-
var formkitVersion$1 = '
|
|
18800
|
+
var formkitVersion$1 = '202608300041';
|
|
18791
18801
|
|
|
18792
18802
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18793
18803
|
// See LICENSE in the project root for license information.
|
|
@@ -19979,7 +19989,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
19979
19989
|
}
|
|
19980
19990
|
}
|
|
19981
19991
|
|
|
19982
|
-
var formkitVersion = '
|
|
19992
|
+
var formkitVersion = '202608300041';
|
|
19983
19993
|
|
|
19984
19994
|
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}`;
|
|
19985
19995
|
|
|
@@ -20404,6 +20414,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20404
20414
|
*/
|
|
20405
20415
|
_initializeDefaults() {
|
|
20406
20416
|
// Defaults that effect the combobox behavior and state
|
|
20417
|
+
/** @type {'default' | 'inverse'} */
|
|
20407
20418
|
this.appearance = "default";
|
|
20408
20419
|
this.disabled = false;
|
|
20409
20420
|
this.msgSelectionMissing = 'Please select an option.';
|
|
@@ -20489,7 +20500,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20489
20500
|
|
|
20490
20501
|
/**
|
|
20491
20502
|
* Defines whether the component will be on lighter or darker backgrounds.
|
|
20492
|
-
* @
|
|
20503
|
+
* @type {'default' | 'inverse'}
|
|
20493
20504
|
* @default 'default'
|
|
20494
20505
|
*/
|
|
20495
20506
|
appearance: {
|
|
@@ -20518,6 +20529,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20518
20529
|
* Array of available options to display in the dropdown.
|
|
20519
20530
|
* This array contains all non-hidden options (e.g., hidden by filtering on input value).
|
|
20520
20531
|
* @private
|
|
20532
|
+
* @type {HTMLElement[]}
|
|
20521
20533
|
*/
|
|
20522
20534
|
availableOptions: {
|
|
20523
20535
|
state: true,
|
|
@@ -20816,6 +20828,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20816
20828
|
|
|
20817
20829
|
/**
|
|
20818
20830
|
* Applies the defined value as the type attribute on `auro-input`.
|
|
20831
|
+
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number' | 'date'}
|
|
20819
20832
|
*/
|
|
20820
20833
|
type: {
|
|
20821
20834
|
type: String,
|
|
@@ -20875,6 +20888,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20875
20888
|
/**
|
|
20876
20889
|
* Specifies the currently active option.
|
|
20877
20890
|
* @private
|
|
20891
|
+
* @type {HTMLElement}
|
|
20878
20892
|
*/
|
|
20879
20893
|
optionActive: {
|
|
20880
20894
|
type: Object,
|
|
@@ -4938,7 +4938,7 @@ let AuroHelpText$2 = class AuroHelpText extends LitElement {
|
|
|
4938
4938
|
}
|
|
4939
4939
|
};
|
|
4940
4940
|
|
|
4941
|
-
var formkitVersion$2 = '
|
|
4941
|
+
var formkitVersion$2 = '202608300041';
|
|
4942
4942
|
|
|
4943
4943
|
/**
|
|
4944
4944
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5478,7 +5478,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5478
5478
|
*/
|
|
5479
5479
|
hasTriggerContent: {
|
|
5480
5480
|
type: Boolean,
|
|
5481
|
-
attribute:
|
|
5481
|
+
attribute: false
|
|
5482
5482
|
},
|
|
5483
5483
|
|
|
5484
5484
|
/**
|
|
@@ -5601,6 +5601,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5601
5601
|
|
|
5602
5602
|
/**
|
|
5603
5603
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
5604
|
+
* @type {() => void}
|
|
5604
5605
|
*/
|
|
5605
5606
|
onSlotChange: {
|
|
5606
5607
|
type: Function,
|
|
@@ -17017,7 +17018,10 @@ class BaseInput extends AuroElement$1 {
|
|
|
17017
17018
|
// during its own update cycle sees a populated util instance.
|
|
17018
17019
|
this.activeLabel = false;
|
|
17019
17020
|
|
|
17020
|
-
/**
|
|
17021
|
+
/**
|
|
17022
|
+
* @private
|
|
17023
|
+
* @type {string[]}
|
|
17024
|
+
*/
|
|
17021
17025
|
this.allowedInputTypes = [
|
|
17022
17026
|
"text",
|
|
17023
17027
|
"number",
|
|
@@ -17030,7 +17034,10 @@ class BaseInput extends AuroElement$1 {
|
|
|
17030
17034
|
/** @type {'default' | 'inverse'} */
|
|
17031
17035
|
this.appearance = "default";
|
|
17032
17036
|
|
|
17033
|
-
/**
|
|
17037
|
+
/**
|
|
17038
|
+
* @private
|
|
17039
|
+
* @type {Record<string, string>}
|
|
17040
|
+
*/
|
|
17034
17041
|
this.dateFormatMap = {
|
|
17035
17042
|
'mm/dd/yyyy': 'dateMMDDYYYY',
|
|
17036
17043
|
'dd/mm/yyyy': 'dateDDMMYYYY',
|
|
@@ -17076,7 +17083,10 @@ class BaseInput extends AuroElement$1 {
|
|
|
17076
17083
|
this.setCustomValidityForType = undefined;
|
|
17077
17084
|
// Credit Card is intentionally excluded — its mask manages the cursor
|
|
17078
17085
|
// itself, and listing it here caused cursor placement issues in Safari.
|
|
17079
|
-
/**
|
|
17086
|
+
/**
|
|
17087
|
+
* @private
|
|
17088
|
+
* @type {string[]}
|
|
17089
|
+
*/
|
|
17080
17090
|
this.setSelectionInputTypes = [
|
|
17081
17091
|
"text",
|
|
17082
17092
|
"password",
|
|
@@ -18787,7 +18797,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
18787
18797
|
}
|
|
18788
18798
|
};
|
|
18789
18799
|
|
|
18790
|
-
var formkitVersion$1 = '
|
|
18800
|
+
var formkitVersion$1 = '202608300041';
|
|
18791
18801
|
|
|
18792
18802
|
// Copyright (c) 2025 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
18793
18803
|
// See LICENSE in the project root for license information.
|
|
@@ -19979,7 +19989,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
19979
19989
|
}
|
|
19980
19990
|
}
|
|
19981
19991
|
|
|
19982
|
-
var formkitVersion = '
|
|
19992
|
+
var formkitVersion = '202608300041';
|
|
19983
19993
|
|
|
19984
19994
|
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}`;
|
|
19985
19995
|
|
|
@@ -20404,6 +20414,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20404
20414
|
*/
|
|
20405
20415
|
_initializeDefaults() {
|
|
20406
20416
|
// Defaults that effect the combobox behavior and state
|
|
20417
|
+
/** @type {'default' | 'inverse'} */
|
|
20407
20418
|
this.appearance = "default";
|
|
20408
20419
|
this.disabled = false;
|
|
20409
20420
|
this.msgSelectionMissing = 'Please select an option.';
|
|
@@ -20489,7 +20500,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20489
20500
|
|
|
20490
20501
|
/**
|
|
20491
20502
|
* Defines whether the component will be on lighter or darker backgrounds.
|
|
20492
|
-
* @
|
|
20503
|
+
* @type {'default' | 'inverse'}
|
|
20493
20504
|
* @default 'default'
|
|
20494
20505
|
*/
|
|
20495
20506
|
appearance: {
|
|
@@ -20518,6 +20529,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20518
20529
|
* Array of available options to display in the dropdown.
|
|
20519
20530
|
* This array contains all non-hidden options (e.g., hidden by filtering on input value).
|
|
20520
20531
|
* @private
|
|
20532
|
+
* @type {HTMLElement[]}
|
|
20521
20533
|
*/
|
|
20522
20534
|
availableOptions: {
|
|
20523
20535
|
state: true,
|
|
@@ -20816,6 +20828,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20816
20828
|
|
|
20817
20829
|
/**
|
|
20818
20830
|
* Applies the defined value as the type attribute on `auro-input`.
|
|
20831
|
+
* @type {'text' | 'password' | 'email' | 'credit-card' | 'tel' | 'number' | 'date'}
|
|
20819
20832
|
*/
|
|
20820
20833
|
type: {
|
|
20821
20834
|
type: String,
|
|
@@ -20875,6 +20888,7 @@ class AuroCombobox extends AuroElement {
|
|
|
20875
20888
|
/**
|
|
20876
20889
|
* Specifies the currently active option.
|
|
20877
20890
|
* @private
|
|
20891
|
+
* @type {HTMLElement}
|
|
20878
20892
|
*/
|
|
20879
20893
|
optionActive: {
|
|
20880
20894
|
type: Object,
|
|
@@ -28,7 +28,7 @@ The `auro-counter-group` element provides a flexible interface for grouping mult
|
|
|
28
28
|
| `size` | `size` | `'xs' \| 'sm' \| 'md' \| 'lg' \| 'xl'` | "'xl'" | Sets the size of the counter group when it is a dropdown. |
|
|
29
29
|
| `total` | `total` | `number` | "undefined" | The total value of the counters. |
|
|
30
30
|
| `validity` | `validity` | `string` | "undefined" | Reflects the validity state. |
|
|
31
|
-
| `value` | `value` | `
|
|
31
|
+
| `value` | `value` | `Record<string, number>` | "undefined" | The current individual values of the nested counters. |
|
|
32
32
|
|
|
33
33
|
## Methods
|
|
34
34
|
|
|
@@ -1126,7 +1126,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
1126
1126
|
}
|
|
1127
1127
|
};
|
|
1128
1128
|
|
|
1129
|
-
var formkitVersion$1 = '
|
|
1129
|
+
var formkitVersion$1 = '202608300041';
|
|
1130
1130
|
|
|
1131
1131
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1132
1132
|
// See LICENSE in the project root for license information.
|
|
@@ -5336,7 +5336,7 @@ class AuroHelpText extends i$2 {
|
|
|
5336
5336
|
}
|
|
5337
5337
|
}
|
|
5338
5338
|
|
|
5339
|
-
var formkitVersion = '
|
|
5339
|
+
var formkitVersion = '202608300041';
|
|
5340
5340
|
|
|
5341
5341
|
/**
|
|
5342
5342
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5876,7 +5876,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5876
5876
|
*/
|
|
5877
5877
|
hasTriggerContent: {
|
|
5878
5878
|
type: Boolean,
|
|
5879
|
-
attribute:
|
|
5879
|
+
attribute: false
|
|
5880
5880
|
},
|
|
5881
5881
|
|
|
5882
5882
|
/**
|
|
@@ -5999,6 +5999,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5999
5999
|
|
|
6000
6000
|
/**
|
|
6001
6001
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
6002
|
+
* @type {() => void}
|
|
6002
6003
|
*/
|
|
6003
6004
|
onSlotChange: {
|
|
6004
6005
|
type: Function,
|
|
@@ -7462,6 +7463,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7462
7463
|
constructor() {
|
|
7463
7464
|
super();
|
|
7464
7465
|
|
|
7466
|
+
/** @type {'default' | 'inverse'} */
|
|
7465
7467
|
this.appearance = "default";
|
|
7466
7468
|
this.max = undefined;
|
|
7467
7469
|
this.min = undefined;
|
|
@@ -7746,6 +7748,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7746
7748
|
|
|
7747
7749
|
/**
|
|
7748
7750
|
* The current individual values of the nested counters.
|
|
7751
|
+
* @type {Record<string, number>}
|
|
7749
7752
|
*/
|
|
7750
7753
|
value: {
|
|
7751
7754
|
type: Object,
|
|
@@ -1126,7 +1126,7 @@ let AuroHelpText$1 = class AuroHelpText extends i$2 {
|
|
|
1126
1126
|
}
|
|
1127
1127
|
};
|
|
1128
1128
|
|
|
1129
|
-
var formkitVersion$1 = '
|
|
1129
|
+
var formkitVersion$1 = '202608300041';
|
|
1130
1130
|
|
|
1131
1131
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1132
1132
|
// See LICENSE in the project root for license information.
|
|
@@ -5336,7 +5336,7 @@ class AuroHelpText extends i$2 {
|
|
|
5336
5336
|
}
|
|
5337
5337
|
}
|
|
5338
5338
|
|
|
5339
|
-
var formkitVersion = '
|
|
5339
|
+
var formkitVersion = '202608300041';
|
|
5340
5340
|
|
|
5341
5341
|
/**
|
|
5342
5342
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5876,7 +5876,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5876
5876
|
*/
|
|
5877
5877
|
hasTriggerContent: {
|
|
5878
5878
|
type: Boolean,
|
|
5879
|
-
attribute:
|
|
5879
|
+
attribute: false
|
|
5880
5880
|
},
|
|
5881
5881
|
|
|
5882
5882
|
/**
|
|
@@ -5999,6 +5999,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5999
5999
|
|
|
6000
6000
|
/**
|
|
6001
6001
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
6002
|
+
* @type {() => void}
|
|
6002
6003
|
*/
|
|
6003
6004
|
onSlotChange: {
|
|
6004
6005
|
type: Function,
|
|
@@ -7462,6 +7463,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7462
7463
|
constructor() {
|
|
7463
7464
|
super();
|
|
7464
7465
|
|
|
7466
|
+
/** @type {'default' | 'inverse'} */
|
|
7465
7467
|
this.appearance = "default";
|
|
7466
7468
|
this.max = undefined;
|
|
7467
7469
|
this.min = undefined;
|
|
@@ -7746,6 +7748,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7746
7748
|
|
|
7747
7749
|
/**
|
|
7748
7750
|
* The current individual values of the nested counters.
|
|
7751
|
+
* @type {Record<string, number>}
|
|
7749
7752
|
*/
|
|
7750
7753
|
value: {
|
|
7751
7754
|
type: Object,
|
|
@@ -169,10 +169,9 @@ export class AuroCounterGroup extends AuroElement {
|
|
|
169
169
|
};
|
|
170
170
|
/**
|
|
171
171
|
* The current individual values of the nested counters.
|
|
172
|
+
* @type {Record<string, number>}
|
|
172
173
|
*/
|
|
173
|
-
value:
|
|
174
|
-
type: ObjectConstructor;
|
|
175
|
-
};
|
|
174
|
+
value: Record<string, number>;
|
|
176
175
|
/**
|
|
177
176
|
* The current text in the valueText slot.
|
|
178
177
|
* @private
|
|
@@ -190,7 +189,8 @@ export class AuroCounterGroup extends AuroElement {
|
|
|
190
189
|
* AuroCounterGroup.register("custom-counter-group") // registers <custom-counter-group/>
|
|
191
190
|
*/
|
|
192
191
|
static register(name?: string): void;
|
|
193
|
-
|
|
192
|
+
/** @type {'default' | 'inverse'} */
|
|
193
|
+
appearance: "default" | "inverse";
|
|
194
194
|
max: any;
|
|
195
195
|
min: any;
|
|
196
196
|
onDark: boolean;
|
|
@@ -1076,7 +1076,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
1076
1076
|
}
|
|
1077
1077
|
};
|
|
1078
1078
|
|
|
1079
|
-
var formkitVersion$1 = '
|
|
1079
|
+
var formkitVersion$1 = '202608300041';
|
|
1080
1080
|
|
|
1081
1081
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1082
1082
|
// See LICENSE in the project root for license information.
|
|
@@ -5268,7 +5268,7 @@ class AuroHelpText extends LitElement {
|
|
|
5268
5268
|
}
|
|
5269
5269
|
}
|
|
5270
5270
|
|
|
5271
|
-
var formkitVersion = '
|
|
5271
|
+
var formkitVersion = '202608300041';
|
|
5272
5272
|
|
|
5273
5273
|
/**
|
|
5274
5274
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5808,7 +5808,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5808
5808
|
*/
|
|
5809
5809
|
hasTriggerContent: {
|
|
5810
5810
|
type: Boolean,
|
|
5811
|
-
attribute:
|
|
5811
|
+
attribute: false
|
|
5812
5812
|
},
|
|
5813
5813
|
|
|
5814
5814
|
/**
|
|
@@ -5931,6 +5931,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5931
5931
|
|
|
5932
5932
|
/**
|
|
5933
5933
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
5934
|
+
* @type {() => void}
|
|
5934
5935
|
*/
|
|
5935
5936
|
onSlotChange: {
|
|
5936
5937
|
type: Function,
|
|
@@ -7394,6 +7395,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7394
7395
|
constructor() {
|
|
7395
7396
|
super();
|
|
7396
7397
|
|
|
7398
|
+
/** @type {'default' | 'inverse'} */
|
|
7397
7399
|
this.appearance = "default";
|
|
7398
7400
|
this.max = undefined;
|
|
7399
7401
|
this.min = undefined;
|
|
@@ -7678,6 +7680,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7678
7680
|
|
|
7679
7681
|
/**
|
|
7680
7682
|
* The current individual values of the nested counters.
|
|
7683
|
+
* @type {Record<string, number>}
|
|
7681
7684
|
*/
|
|
7682
7685
|
value: {
|
|
7683
7686
|
type: Object,
|
|
@@ -1076,7 +1076,7 @@ let AuroHelpText$1 = class AuroHelpText extends LitElement {
|
|
|
1076
1076
|
}
|
|
1077
1077
|
};
|
|
1078
1078
|
|
|
1079
|
-
var formkitVersion$1 = '
|
|
1079
|
+
var formkitVersion$1 = '202608300041';
|
|
1080
1080
|
|
|
1081
1081
|
// Copyright (c) 2026 Alaska Airlines. All rights reserved. Licensed under the Apache-2.0 license
|
|
1082
1082
|
// See LICENSE in the project root for license information.
|
|
@@ -5268,7 +5268,7 @@ class AuroHelpText extends LitElement {
|
|
|
5268
5268
|
}
|
|
5269
5269
|
}
|
|
5270
5270
|
|
|
5271
|
-
var formkitVersion = '
|
|
5271
|
+
var formkitVersion = '202608300041';
|
|
5272
5272
|
|
|
5273
5273
|
/**
|
|
5274
5274
|
* AuroElement is the shared base class for layout-aware Auro form components.
|
|
@@ -5808,7 +5808,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5808
5808
|
*/
|
|
5809
5809
|
hasTriggerContent: {
|
|
5810
5810
|
type: Boolean,
|
|
5811
|
-
attribute:
|
|
5811
|
+
attribute: false
|
|
5812
5812
|
},
|
|
5813
5813
|
|
|
5814
5814
|
/**
|
|
@@ -5931,6 +5931,7 @@ class AuroDropdown extends AuroElement$1 {
|
|
|
5931
5931
|
|
|
5932
5932
|
/**
|
|
5933
5933
|
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
5934
|
+
* @type {() => void}
|
|
5934
5935
|
*/
|
|
5935
5936
|
onSlotChange: {
|
|
5936
5937
|
type: Function,
|
|
@@ -7394,6 +7395,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7394
7395
|
constructor() {
|
|
7395
7396
|
super();
|
|
7396
7397
|
|
|
7398
|
+
/** @type {'default' | 'inverse'} */
|
|
7397
7399
|
this.appearance = "default";
|
|
7398
7400
|
this.max = undefined;
|
|
7399
7401
|
this.min = undefined;
|
|
@@ -7678,6 +7680,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
7678
7680
|
|
|
7679
7681
|
/**
|
|
7680
7682
|
* The current individual values of the nested counters.
|
|
7683
|
+
* @type {Record<string, number>}
|
|
7681
7684
|
*/
|
|
7682
7685
|
value: {
|
|
7683
7686
|
type: Object,
|
|
@@ -11,7 +11,7 @@ The `auro-datepicker` component provides users with a way to select a date or da
|
|
|
11
11
|
|-----------------------------------|-----------------------------------|-----------|--------------------------------------------------|--------------------------------|--------------------------------------------------|
|
|
12
12
|
| `appearance` | `appearance` | | `'default' \| 'inverse'` | "'default'" | Defines whether the component will be on lighter or darker backgrounds. |
|
|
13
13
|
| `autoPlacement` | `autoplacement` | | `boolean` | "false" | If declared, bib's position will be automatically calculated where to appear. |
|
|
14
|
-
| `blackoutDates` | `blackoutdates` | | `
|
|
14
|
+
| `blackoutDates` | `blackoutdates` | | `string[]` | [] | Array of dates that cannot be selected. Dates should be in ISO format (YYYY-MM-DD).<br /><br />**Immutable update required.** The datepicker treats this array as<br />immutable and memoizes a lookup Set keyed on the array's reference<br />identity — matching Lit's own reactivity semantics for array<br />properties. In-place mutations (`blackoutDates.push(...)`,<br />`blackoutDates[i] = ...`, `blackoutDates.splice(...)`) will not<br />invalidate the cache and the new entries will be silently ignored.<br />To update, reassign the property: `el.blackoutDates = [...el.blackoutDates, '2024-12-25']`. |
|
|
15
15
|
| `blackoutLabel` | `blackoutlabel` | | `string` | "'unavailable'" | Label announced for blackout (disabled but in-range) date cells. |
|
|
16
16
|
| `calendarEndDate` | `calendarenddate` | | `string` | "undefined" | The last date that may be displayed in the calendar. |
|
|
17
17
|
| `calendarEndDateObject` | | readonly | `Date \| undefined` | | Read-only `Date` object derived from `calendarEndDate`. Returns `undefined` when `calendarEndDate` is empty or not a valid date. |
|
|
@@ -37,7 +37,7 @@ The `auro-datepicker` component provides users with a way to select a date or da
|
|
|
37
37
|
| `minDate` | `mindate` | | `string` | | Minimum date. All dates before will be disabled. |
|
|
38
38
|
| `minDateObject` | | readonly | `Date \| undefined` | | Read-only `Date` object derived from `minDate`. Returns `undefined` when `minDate` is empty or not a valid date. |
|
|
39
39
|
| `monthFirst` | `monthfirst` | | `boolean` | | When set, the calendar displays the month before the year in the header. |
|
|
40
|
-
| `monthNames` | `monthnames` | | `
|
|
40
|
+
| `monthNames` | `monthnames` | | `string[]` | | Names of all 12 months to render in the calendar.<br />When omitted, month names will be automatically populated from the active `locale` (falling back to `en-US`). |
|
|
41
41
|
| `navLabelNextMonth` | `navlabelnextmonth` | | `string` | "'Next month'" | Accessible label for the next month navigation button. |
|
|
42
42
|
| `navLabelPrevMonth` | `navlabelprevmonth` | | `string` | "'Previous month'" | Accessible label for the previous month navigation button. |
|
|
43
43
|
| `noFlip` | `noflip` | | `boolean` | false | If declared, the bib will NOT flip to an alternate position<br />when there isn't enough space in the specified `placement`. |
|
|
@@ -54,7 +54,7 @@ The `auro-datepicker` component provides users with a way to select a date or da
|
|
|
54
54
|
| `rangeLabelEndPreview` | `rangelabelendpreview` | | `string` | "'previewing range end'" | Label announced for the focused cell while previewing a range end<br />(dateFrom set, dateTo not yet selected). Tells AT users that<br />pressing Enter would commit this cell as the range end. |
|
|
55
55
|
| `rangeLabelInRange` | `rangelabelinrange` | | `string` | "'in range'" | Label announced for cells within the selected range. |
|
|
56
56
|
| `rangeLabelStart` | `rangelabelstart` | | `string` | "'range start'" | Label announced for the range start date cell. |
|
|
57
|
-
| `referenceDates` | `referencedates` | | `
|
|
57
|
+
| `referenceDates` | `referencedates` | | `string[]` | | Dates that the user should have for reference as part of their decision-making when selecting a date.<br />This should be a JSON string array of ISO date strings (`YYYY-MM-DD`). |
|
|
58
58
|
| `required` | `required` | | `boolean` | false | Populates the `required` attribute on the input. Used for client-side validation. |
|
|
59
59
|
| `setCustomValidity` | `setcustomvalidity` | | `string` | | Sets a custom help text message to display for all validityStates. |
|
|
60
60
|
| `setCustomValidityCustomError` | `setcustomvaliditycustomerror` | | `string` | | Custom help text message to display when validity = `customError`.<br />Also used as the validation message when a blackout date is typed into the input. |
|