@aurodesignsystem-dev/auro-formkit 0.0.0-pr750.1 → 0.0.0-pr754.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/components/bibtemplate/dist/index.js +1 -1
- package/components/bibtemplate/dist/registered.js +1 -1
- package/components/checkbox/demo/api.html +10 -16
- package/components/checkbox/demo/api.min.js +11 -11
- package/components/checkbox/demo/index.html +10 -16
- package/components/checkbox/demo/index.min.js +11 -11
- package/components/checkbox/demo/readme.html +9 -16
- package/components/checkbox/dist/index.js +11 -11
- package/components/checkbox/dist/registered.js +11 -11
- package/components/combobox/demo/api.html +10 -16
- package/components/combobox/demo/api.md +6 -12
- package/components/combobox/demo/api.min.js +89 -48
- package/components/combobox/demo/index.html +10 -16
- package/components/combobox/demo/index.min.js +89 -48
- package/components/combobox/demo/readme.html +9 -16
- package/components/combobox/dist/index.js +88 -46
- package/components/combobox/dist/registered.js +88 -46
- package/components/counter/demo/api.html +10 -16
- package/components/counter/demo/api.md +7 -140
- package/components/counter/demo/api.min.js +386 -556
- package/components/counter/demo/index.html +10 -16
- package/components/counter/demo/index.md +0 -82
- package/components/counter/demo/index.min.js +386 -556
- package/components/counter/demo/readme.html +9 -16
- package/components/counter/dist/auro-counter-group.d.ts +14 -71
- package/components/counter/dist/auro-counter.d.ts +0 -10
- package/components/counter/dist/index.js +386 -556
- package/components/counter/dist/registered.js +386 -556
- package/components/datepicker/demo/api.html +10 -16
- package/components/datepicker/demo/api.min.js +94 -67
- package/components/datepicker/demo/index.html +10 -16
- package/components/datepicker/demo/index.min.js +94 -67
- package/components/datepicker/demo/readme.html +9 -16
- package/components/datepicker/dist/auro-datepicker.d.ts +0 -6
- package/components/datepicker/dist/index.js +94 -67
- package/components/datepicker/dist/registered.js +94 -67
- package/components/dropdown/demo/api.html +10 -16
- package/components/dropdown/demo/api.md +268 -76
- package/components/dropdown/demo/api.min.js +67 -25
- package/components/dropdown/demo/index.html +10 -16
- package/components/dropdown/demo/index.md +363 -45
- package/components/dropdown/demo/index.min.js +67 -25
- package/components/dropdown/demo/readme.html +9 -16
- package/components/dropdown/dist/auro-dropdown.d.ts +71 -21
- package/components/dropdown/dist/index.js +67 -25
- package/components/dropdown/dist/registered.js +67 -25
- package/components/form/demo/api.html +9 -16
- package/components/form/demo/autocomplete.html +3 -19
- package/components/form/demo/index.html +9 -16
- package/components/form/demo/readme.html +9 -16
- package/components/form/demo/working.html +13 -19
- package/components/helptext/dist/index.js +1 -1
- package/components/helptext/dist/registered.js +1 -1
- package/components/input/demo/api.html +10 -16
- package/components/input/demo/api.md +1 -1
- package/components/input/demo/api.min.js +14 -14
- package/components/input/demo/index.html +10 -16
- package/components/input/demo/index.min.js +14 -14
- package/components/input/demo/readme.html +9 -16
- package/components/input/dist/base-input.d.ts +1 -1
- package/components/input/dist/index.js +14 -14
- package/components/input/dist/registered.js +14 -14
- package/components/menu/demo/api.html +32 -16
- package/components/menu/demo/api.md +15 -14
- package/components/menu/demo/api.min.js +1 -2
- package/components/menu/demo/index.html +10 -16
- package/components/menu/demo/index.min.js +1 -2
- package/components/menu/demo/readme.html +9 -16
- package/components/menu/dist/auro-menu.d.ts +1 -2
- package/components/menu/dist/index.js +1 -2
- package/components/menu/dist/registered.js +1 -2
- package/components/radio/demo/api.html +10 -16
- package/components/radio/demo/api.min.js +10 -10
- package/components/radio/demo/index.html +10 -16
- package/components/radio/demo/index.min.js +10 -10
- package/components/radio/demo/readme.html +9 -16
- package/components/radio/dist/auro-radio.d.ts +1 -1
- package/components/radio/dist/index.js +10 -10
- package/components/radio/dist/registered.js +10 -10
- package/components/select/demo/api.html +10 -16
- package/components/select/demo/api.md +36 -41
- package/components/select/demo/api.min.js +103 -61
- package/components/select/demo/index.html +11 -16
- package/components/select/demo/index.md +1 -1
- package/components/select/demo/index.min.js +103 -61
- package/components/select/demo/readme.html +9 -16
- package/components/select/dist/auro-select.d.ts +2 -9
- package/components/select/dist/index.js +102 -59
- package/components/select/dist/registered.js +102 -59
- package/package.json +3 -4
|
@@ -649,19 +649,19 @@ class AuroFormValidation {
|
|
|
649
649
|
{
|
|
650
650
|
check: (e) => e.value?.length > 0 && e.value?.length < e.minLength,
|
|
651
651
|
validity: 'tooShort',
|
|
652
|
-
message: e => e.
|
|
652
|
+
message: e => e.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
653
653
|
},
|
|
654
654
|
{
|
|
655
655
|
check: (e) => e.value?.length > e.maxLength,
|
|
656
656
|
validity: 'tooLong',
|
|
657
|
-
message: e => e.
|
|
657
|
+
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
658
658
|
}
|
|
659
659
|
],
|
|
660
660
|
pattern: [
|
|
661
661
|
{
|
|
662
662
|
check: (e) => e.pattern && !new RegExp(`^${e.pattern}$`, 'u').test(e.value),
|
|
663
663
|
validity: 'patternMismatch',
|
|
664
|
-
message: e => e.
|
|
664
|
+
message: e => e.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
665
665
|
}
|
|
666
666
|
]
|
|
667
667
|
},
|
|
@@ -856,10 +856,10 @@ class AuroFormValidation {
|
|
|
856
856
|
if (!hasValue && elem.required && elem.touched) {
|
|
857
857
|
elem.validity = 'valueMissing';
|
|
858
858
|
elem.errorMessage = elem.setCustomValidityValueMissing || elem.setCustomValidity || '';
|
|
859
|
-
} else if (
|
|
859
|
+
} else if (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
860
860
|
this.validateType(elem);
|
|
861
861
|
this.validateElementAttributes(elem);
|
|
862
|
-
} else if (
|
|
862
|
+
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
863
863
|
this.validateElementAttributes(elem);
|
|
864
864
|
}
|
|
865
865
|
}
|
|
@@ -4127,7 +4127,7 @@ var dropdownVersion$1 = '3.0.0';
|
|
|
4127
4127
|
|
|
4128
4128
|
var shapeSizeCss = css`.wrapper{overflow:hidden}.shape-classic-xl,.shape-classic-lg,.shape-classic-md,.shape-classic-sm,.shape-classic-xs{min-height:58px;max-height:58px;border-style:solid;border-width:1px;border-radius:var(--ds-border-radius, 0.375rem)}.shape-classic-xl.simple,.shape-classic-lg.simple,.shape-classic-md.simple,.shape-classic-sm.simple,.shape-classic-xs.simple{border-width:0px;min-height:60px;max-height:60px;background-color:unset;box-shadow:none}.shape-classic-xl.thin,.shape-classic-lg.thin,.shape-classic-md.thin,.shape-classic-sm.thin,.shape-classic-xs.thin{border-width:1px;min-height:58px;max-height:58px;background-color:unset}.shape-classic-xl.parentBorder,.shape-classic-lg.parentBorder,.shape-classic-md.parentBorder,.shape-classic-sm.parentBorder,.shape-classic-xs.parentBorder{border:0;box-shadow:unset;min-height:56px;max-height:56px}.shape-snowflake-xl,.shape-snowflake-lg,.shape-snowflake-md,.shape-snowflake-sm,.shape-snowflake-xs{min-height:56px;max-height:56px;border-style:solid;border-width:2px;border-color:transparent;border-radius:30px}.shape-snowflake-xl.simple,.shape-snowflake-lg.simple,.shape-snowflake-md.simple,.shape-snowflake-sm.simple,.shape-snowflake-xs.simple{border-width:0px;min-height:60px;max-height:60px;background-color:unset;box-shadow:none}.shape-snowflake-xl.thin,.shape-snowflake-lg.thin,.shape-snowflake-md.thin,.shape-snowflake-sm.thin,.shape-snowflake-xs.thin{border-width:1px;min-height:58px;max-height:58px;background-color:unset}.shape-snowflake-xl.parentBorder,.shape-snowflake-lg.parentBorder,.shape-snowflake-md.parentBorder,.shape-snowflake-sm.parentBorder,.shape-snowflake-xs.parentBorder{border:0;box-shadow:unset;min-height:56px;max-height:56px}.shape-box-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent}.shape-box-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-box-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-box-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-rounded-lg{min-height:56px;max-height:56px;border-style:solid;border-width:2px;border-color:transparent;border-radius:6px}.shape-rounded-lg.simple{border-width:0px;min-height:56px;max-height:56px;background-color:unset;box-shadow:none}.shape-rounded-lg.thin{border-width:1px;min-height:54px;max-height:54px;background-color:unset}.shape-rounded-lg.parentBorder{border:0;box-shadow:unset;min-height:52px;max-height:52px}.shape-pill-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px}.shape-pill-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-left-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px 0 0 36px}.shape-pill-left-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-left-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-left-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-right-xl{min-height:68px;max-height:68px;border-style:solid;border-width:2px;border-color:transparent;border-radius:0 36px 36px 0}.shape-pill-right-xl.simple{border-width:0px;min-height:72px;max-height:72px;background-color:unset;box-shadow:none}.shape-pill-right-xl.thin{border-width:1px;min-height:70px;max-height:70px;background-color:unset}.shape-pill-right-xl.parentBorder{border:0;box-shadow:unset;min-height:68px;max-height:68px}.shape-pill-md{min-height:44px;max-height:44px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px}.shape-pill-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-left-md{min-height:44px;max-height:44px;border-style:solid;border-width:2px;border-color:transparent;border-radius:36px 0 0 36px}.shape-pill-left-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-left-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-left-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}.shape-pill-right-md{min-height:44px;max-height:44px;border-style:solid;border-width:2px;border-color:transparent;border-radius:0 36px 36px 0}.shape-pill-right-md.simple{border-width:0px;min-height:48px;max-height:48px;background-color:unset;box-shadow:none}.shape-pill-right-md.thin{border-width:1px;min-height:46px;max-height:46px;background-color:unset}.shape-pill-right-md.parentBorder{border:0;box-shadow:unset;min-height:44px;max-height:44px}`;
|
|
4129
4129
|
|
|
4130
|
-
var colorCss$1$1 = css`:host(:not([
|
|
4130
|
+
var colorCss$1$1 = css`:host(:not([ondark])) .wrapper{border-color:var(--ds-auro-dropdown-trigger-border-color);background-color:var(--ds-auro-dropdown-trigger-background-color);color:var(--ds-auro-dropdown-trigger-text-color)}:host(:not([ondark])) .wrapper:focus-within,:host(:not([ondark])) .wrapper:active{--ds-auro-dropdown-trigger-border-color: var(--ds-advanced-color-state-focused, #01426a);--ds-auro-dropdown-trigger-outline-color: var(--ds-advanced-color-state-focused, #01426a)}:host(:not([onDark])[disabled]){--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0);--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-disabled, #d0d0d0);--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([ondark])[error]){--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]) .label{color:var(--ds-auro-dropdown-label-text-color)}:host([onDark]) .wrapper{border-color:var(--ds-auro-dropdown-trigger-border-color);background-color:var(--ds-auro-dropdown-trigger-background-color);color:var(--ds-auro-dropdown-trigger-text-color)}:host([onDark]) .wrapper:focus-within,:host([onDark]) .wrapper:active{--ds-auro-dropdown-trigger-border-color: var(--ds-advanced-color-state-focused-inverse, #ffffff);--ds-auro-dropdown-trigger-outline-color: var(--ds-advanced-color-state-focused-inverse, #ffffff)}:host([onDark][disabled]){--ds-auro-dropdown-trigger-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894);--ds-auro-dropdown-label-text-color: var(--ds-basic-color-texticon-inverse-disabled, #7e8894);--ds-auro-dropdown-trigger-container-color: var(--ds-advanced-color-shared-background-inverse-disabled, rgba(255, 255, 255, 0.1))}:host([ondark][error]){--ds-auro-dropdown-trigger-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}`;
|
|
4131
4131
|
|
|
4132
4132
|
var classicColorCss = css``;
|
|
4133
4133
|
|
|
@@ -4139,7 +4139,7 @@ var styleSnowflakeCss = css`:host{display:block}.wrapper{display:flex;flex:1;fle
|
|
|
4139
4139
|
|
|
4140
4140
|
var colorCss$5 = css`:host([error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]){--ds-auro-helptext-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}.helptext-wrapper{color:var(--ds-auro-helptext-color)}`;
|
|
4141
4141
|
|
|
4142
|
-
var styleCss$6 = css
|
|
4142
|
+
var styleCss$6 = css`.helptext-wrapper{display:none;font-size:12px;font-weight:450;letter-spacing:0;line-height:16px}:host([large]) .helptext-wrapper{font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}.helptext-wrapper[visible]{display:block}::slotted(*:not(:empty)){margin-top:var(--ds-size-50, 0.25rem);margin-bottom:0}::slotted(p){margin-block:0}`;
|
|
4143
4143
|
|
|
4144
4144
|
var tokensCss$4 = css`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
4145
4145
|
|
|
@@ -4444,8 +4444,10 @@ let AuroElement$2 = class AuroElement extends LitElement {
|
|
|
4444
4444
|
// See LICENSE in the project root for license information.
|
|
4445
4445
|
|
|
4446
4446
|
|
|
4447
|
-
|
|
4447
|
+
/**
|
|
4448
|
+
* @attr { Boolean } disableEventShow - If declared, the dropdown will only show by calling the API .show() public method.
|
|
4448
4449
|
* @slot - Default slot for the popover content.
|
|
4450
|
+
* @slot label - Defines the content of the label.
|
|
4449
4451
|
* @slot helpText - Defines the content of the helpText.
|
|
4450
4452
|
* @slot trigger - Defines the content of the trigger.
|
|
4451
4453
|
* @csspart trigger - The trigger content container.
|
|
@@ -4464,22 +4466,18 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4464
4466
|
this.matchWidth = false;
|
|
4465
4467
|
this.noHideOnThisFocusLoss = false;
|
|
4466
4468
|
|
|
4467
|
-
this.errorMessage =
|
|
4469
|
+
this.errorMessage = ''; // TODO - check with Doug if there is still more to do here
|
|
4468
4470
|
|
|
4469
4471
|
// Layout Config
|
|
4470
|
-
this.layout =
|
|
4471
|
-
this.shape =
|
|
4472
|
-
this.size =
|
|
4472
|
+
this.layout = 'classic';
|
|
4473
|
+
this.shape = 'classic';
|
|
4474
|
+
this.size = 'xl';
|
|
4473
4475
|
|
|
4474
4476
|
this.parentBorder = false;
|
|
4475
4477
|
|
|
4476
4478
|
this.privateDefaults();
|
|
4477
4479
|
}
|
|
4478
4480
|
|
|
4479
|
-
/**
|
|
4480
|
-
* @private
|
|
4481
|
-
* @returns {object} Class definition for the wrapper element.
|
|
4482
|
-
*/
|
|
4483
4481
|
get commonWrapperClasses() {
|
|
4484
4482
|
return {
|
|
4485
4483
|
'trigger': true,
|
|
@@ -4499,8 +4497,12 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4499
4497
|
this.disabled = false;
|
|
4500
4498
|
this.disableFocusTrap = false;
|
|
4501
4499
|
this.error = false;
|
|
4500
|
+
this.inset = false;
|
|
4501
|
+
this.rounded = false;
|
|
4502
4502
|
this.tabIndex = 0;
|
|
4503
4503
|
this.noToggle = false;
|
|
4504
|
+
this.a11yAutocomplete = 'none';
|
|
4505
|
+
this.labeled = true;
|
|
4504
4506
|
this.a11yRole = 'button';
|
|
4505
4507
|
this.onDark = false;
|
|
4506
4508
|
this.showTriggerBorders = true;
|
|
@@ -4622,27 +4624,26 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4622
4624
|
},
|
|
4623
4625
|
|
|
4624
4626
|
/**
|
|
4625
|
-
* If declared,
|
|
4626
|
-
* @default false
|
|
4627
|
+
* If declared, applies a border around the trigger slot.
|
|
4627
4628
|
*/
|
|
4628
|
-
|
|
4629
|
+
simple: {
|
|
4629
4630
|
type: Boolean,
|
|
4630
4631
|
reflect: true
|
|
4631
4632
|
},
|
|
4632
4633
|
|
|
4633
4634
|
/**
|
|
4634
|
-
* If declared,
|
|
4635
|
+
* If declared, the dropdown displays a chevron on the right.
|
|
4636
|
+
* @attr {Boolean} chevron
|
|
4635
4637
|
*/
|
|
4636
|
-
|
|
4638
|
+
chevron: {
|
|
4637
4639
|
type: Boolean,
|
|
4638
4640
|
reflect: true
|
|
4639
4641
|
},
|
|
4640
4642
|
|
|
4641
4643
|
/**
|
|
4642
|
-
* If declared, the dropdown
|
|
4643
|
-
* @attr {Boolean} chevron
|
|
4644
|
+
* If declared, the dropdown will be styled with the common theme.
|
|
4644
4645
|
*/
|
|
4645
|
-
|
|
4646
|
+
common: {
|
|
4646
4647
|
type: Boolean,
|
|
4647
4648
|
reflect: true
|
|
4648
4649
|
},
|
|
@@ -4656,7 +4657,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4656
4657
|
},
|
|
4657
4658
|
|
|
4658
4659
|
/**
|
|
4659
|
-
* If
|
|
4660
|
+
* If declare, the focus trap inside of bib will be turned off.
|
|
4660
4661
|
*/
|
|
4661
4662
|
disableFocusTrap: {
|
|
4662
4663
|
type: Boolean,
|
|
@@ -4703,6 +4704,22 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4703
4704
|
reflect: true
|
|
4704
4705
|
},
|
|
4705
4706
|
|
|
4707
|
+
/**
|
|
4708
|
+
* Makes the trigger to be full width of its parent container.
|
|
4709
|
+
*/
|
|
4710
|
+
fluid: {
|
|
4711
|
+
type: Boolean,
|
|
4712
|
+
reflect: true
|
|
4713
|
+
},
|
|
4714
|
+
|
|
4715
|
+
/**
|
|
4716
|
+
* If declared, will apply padding around trigger slot content.
|
|
4717
|
+
*/
|
|
4718
|
+
inset: {
|
|
4719
|
+
type: Boolean,
|
|
4720
|
+
reflect: true
|
|
4721
|
+
},
|
|
4722
|
+
|
|
4706
4723
|
/**
|
|
4707
4724
|
* If true, the dropdown bib is displayed.
|
|
4708
4725
|
*/
|
|
@@ -4746,6 +4763,15 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4746
4763
|
reflect: true
|
|
4747
4764
|
},
|
|
4748
4765
|
|
|
4766
|
+
/**
|
|
4767
|
+
* Defines if there is a label preset.
|
|
4768
|
+
* @private
|
|
4769
|
+
*/
|
|
4770
|
+
labeled: {
|
|
4771
|
+
type: Boolean,
|
|
4772
|
+
reflect: true
|
|
4773
|
+
},
|
|
4774
|
+
|
|
4749
4775
|
/**
|
|
4750
4776
|
* Defines if the trigger should size based on the parent element providing the border UI.
|
|
4751
4777
|
* @private
|
|
@@ -4806,9 +4832,6 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4806
4832
|
reflect: true
|
|
4807
4833
|
},
|
|
4808
4834
|
|
|
4809
|
-
/**
|
|
4810
|
-
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
4811
|
-
*/
|
|
4812
4835
|
onSlotChange: {
|
|
4813
4836
|
type: Function,
|
|
4814
4837
|
reflect: false
|
|
@@ -4823,6 +4846,14 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4823
4846
|
reflect: true
|
|
4824
4847
|
},
|
|
4825
4848
|
|
|
4849
|
+
/**
|
|
4850
|
+
* If declared, will apply border-radius to trigger and default slots.
|
|
4851
|
+
*/
|
|
4852
|
+
rounded: {
|
|
4853
|
+
type: Boolean,
|
|
4854
|
+
reflect: true
|
|
4855
|
+
},
|
|
4856
|
+
|
|
4826
4857
|
/**
|
|
4827
4858
|
* @private
|
|
4828
4859
|
*/
|
|
@@ -4837,14 +4868,22 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4837
4868
|
type: String || undefined,
|
|
4838
4869
|
attribute: false,
|
|
4839
4870
|
reflect: false
|
|
4871
|
+
},
|
|
4872
|
+
|
|
4873
|
+
/**
|
|
4874
|
+
* The value for the aria-autocomplete attribute of the trigger element.
|
|
4875
|
+
*/
|
|
4876
|
+
a11yAutocomplete: {
|
|
4877
|
+
type: String,
|
|
4878
|
+
attribute: false,
|
|
4840
4879
|
}
|
|
4841
4880
|
};
|
|
4842
4881
|
}
|
|
4843
4882
|
|
|
4844
4883
|
static get styles() {
|
|
4845
4884
|
return [
|
|
4846
|
-
tokensCss$1$1,
|
|
4847
4885
|
colorCss$1$1,
|
|
4886
|
+
tokensCss$1$1,
|
|
4848
4887
|
|
|
4849
4888
|
// default layout
|
|
4850
4889
|
classicColorCss,
|
|
@@ -5284,7 +5323,10 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5284
5323
|
id="bib"
|
|
5285
5324
|
shape="${this.shape}"
|
|
5286
5325
|
?data-show="${this.isPopoverVisible}"
|
|
5287
|
-
?isfullscreen="${this.isBibFullscreen}"
|
|
5326
|
+
?isfullscreen="${this.isBibFullscreen}"
|
|
5327
|
+
?common="${this.common}"
|
|
5328
|
+
?rounded="${this.common || this.rounded}"
|
|
5329
|
+
?inset="${this.common || this.inset}">
|
|
5288
5330
|
<div class="slotContent">
|
|
5289
5331
|
<slot @slotchange="${this.handleDefaultSlot}"></slot>
|
|
5290
5332
|
</div>
|
|
@@ -7265,7 +7307,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
7265
7307
|
<div id="bibTemplate" part="bibtemplate">
|
|
7266
7308
|
${this.isFullscreen ? html`
|
|
7267
7309
|
<div id="headerContainer">
|
|
7268
|
-
<${this.buttonTag} id="closeButton"
|
|
7310
|
+
<${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
7269
7311
|
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
7270
7312
|
</${this.buttonTag}>
|
|
7271
7313
|
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
@@ -7293,7 +7335,7 @@ var bibTemplateVersion = '1.0.0';
|
|
|
7293
7335
|
|
|
7294
7336
|
var colorCss = css`:host([error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error, #e31f26)}:host([onDark]){--ds-auro-helptext-color: var(--ds-basic-color-texticon-inverse-muted, #ccd2db)}:host([onDark][error]){--ds-auro-helptext-color: var(--ds-basic-color-status-error-subtle, #fbc6c6)}.helptext-wrapper{color:var(--ds-auro-helptext-color)}`;
|
|
7295
7337
|
|
|
7296
|
-
var styleCss$1 = css
|
|
7338
|
+
var styleCss$1 = css`.helptext-wrapper{display:none;font-size:12px;font-weight:450;letter-spacing:0;line-height:16px}:host([large]) .helptext-wrapper{font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}.helptext-wrapper[visible]{display:block}::slotted(*:not(:empty)){margin-top:var(--ds-size-50, 0.25rem);margin-bottom:0}::slotted(p){margin-block:0}`;
|
|
7297
7339
|
|
|
7298
7340
|
var tokensCss = css`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
7299
7341
|
|
|
@@ -7499,7 +7541,7 @@ class AuroHelpText extends LitElement {
|
|
|
7499
7541
|
|
|
7500
7542
|
var helpTextVersion = '1.0.0';
|
|
7501
7543
|
|
|
7502
|
-
var styleCss = 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}[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)}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}.mainContent{position:relative;display:flex;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:
|
|
7544
|
+
var styleCss = 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}[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)}:host([layout*=emphasized]) [auro-dropdown],:host([layout*=snowflake]) [auro-dropdown]{--ds-auro-select-border-color: transparent}.mainContent{position:relative;display:flex;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:8px}.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,:host([layout*=snowflake]) .triggerContent{padding:0 8px 0 24px}:host([layout*=snowflake]) [auro-dropdown] label.withValue{font-size:var(--ds-text-body-size-xs);line-height:20px}:host([layout*=emphasized]) [auro-dropdown] label.withValue{font-size:var(--ds-text-body-size-xs);line-height:20px}:host([layout*=classic]) .triggerContent{padding:0 8px}:host([layout*=classic]) .mainContent{align-items:start}:host([layout*=classic]) label{cursor:text;font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}:host([layout*=classic]) label.withValue{font-size:12px;font-weight:450;letter-spacing:0;line-height:16px}:host([layout*=classic]) .value{height:auto;font-size:16px;font-weight:450;letter-spacing:0;line-height:24px}:host(:is([validity]:not([validity=valid]))) [auro-dropdown]{--ds-auro-select-border-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]{--ds-auro-select-border-color: var(--ds-basic-color-status-error-subtle, #fbc6c6);--ds-auro-dropdown-helptext-text-color: var(--ds-basic-color-texticon-inverse, #ffffff)}#slotHolder{display:none}:host([disabled]) *{user-select:none}`;
|
|
7503
7545
|
|
|
7504
7546
|
// Copyright (c) 2021 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
7505
7547
|
// See LICENSE in the project root for license information.
|
|
@@ -7514,6 +7556,7 @@ var styleCss = css`.util_displayInline{display:inline}.util_displayInlineBlock{d
|
|
|
7514
7556
|
* @slot label - Defines the content of the label.
|
|
7515
7557
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
7516
7558
|
* @slot helpText - Defines the content of the helpText.
|
|
7559
|
+
* @slot placeholder - Defines the content of the placeholder to be shown when there is no value
|
|
7517
7560
|
* @slot valueText - Dropdown value text display.
|
|
7518
7561
|
* @slot displayValue - Allows custom HTML content to display the selected value when select is not focused.
|
|
7519
7562
|
* @event auroSelect-valueSet - Notifies that the component has a new value set.
|
|
@@ -7783,14 +7826,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7783
7826
|
reflect: true
|
|
7784
7827
|
},
|
|
7785
7828
|
|
|
7786
|
-
/**
|
|
7787
|
-
* Define custom placeholder text.
|
|
7788
|
-
*/
|
|
7789
|
-
placeholder: {
|
|
7790
|
-
type: String,
|
|
7791
|
-
reflect: true
|
|
7792
|
-
},
|
|
7793
|
-
|
|
7794
7829
|
/**
|
|
7795
7830
|
* Populates the `required` attribute on the element. Used for client-side validation.
|
|
7796
7831
|
*/
|
|
@@ -7897,7 +7932,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7897
7932
|
/**
|
|
7898
7933
|
* Formatted value based on `multiSelect` state.
|
|
7899
7934
|
* Default type is `String`, changing to `Array<String>` when `multiSelect` is true.
|
|
7900
|
-
* @private
|
|
7901
7935
|
* @returns {String|Array<String>}
|
|
7902
7936
|
*/
|
|
7903
7937
|
get formattedValue() {
|
|
@@ -7921,7 +7955,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7921
7955
|
get commonLabelClasses() {
|
|
7922
7956
|
return {
|
|
7923
7957
|
'is-disabled': this.disabled,
|
|
7924
|
-
'withValue': this.
|
|
7958
|
+
'withValue': this.value && this.value.length > 0,
|
|
7925
7959
|
'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
|
|
7926
7960
|
};
|
|
7927
7961
|
}
|
|
@@ -8549,7 +8583,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8549
8583
|
: html`
|
|
8550
8584
|
<${this.helpTextTag} error ?onDark="${this.onDark}">
|
|
8551
8585
|
<p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
|
|
8552
|
-
${this.errorMessage}
|
|
8586
|
+
ERROR MESSAGE ${this.errorMessage}
|
|
8553
8587
|
</p>
|
|
8554
8588
|
</${this.helpTextTag}>
|
|
8555
8589
|
`
|
|
@@ -8564,14 +8598,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8564
8598
|
*/
|
|
8565
8599
|
renderLayoutEmphasized() {
|
|
8566
8600
|
const placeholderClass = {
|
|
8567
|
-
|
|
8601
|
+
hidden: this.value,
|
|
8568
8602
|
};
|
|
8569
8603
|
|
|
8570
8604
|
const displayValueClasses = {
|
|
8571
8605
|
'displayValue': true,
|
|
8572
8606
|
'hasContent': this.hasDisplayValueContent,
|
|
8573
8607
|
'hasFocus': this.isPopoverVisible,
|
|
8574
|
-
'withValue': this.
|
|
8608
|
+
'withValue': this.value && this.value.length > 0,
|
|
8575
8609
|
'force': this.forceDisplayValue,
|
|
8576
8610
|
};
|
|
8577
8611
|
|
|
@@ -8598,6 +8632,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8598
8632
|
.offset="${this.offset}"
|
|
8599
8633
|
.placement="${this.placement}"
|
|
8600
8634
|
chevron
|
|
8635
|
+
fluid
|
|
8601
8636
|
for="selectMenu"
|
|
8602
8637
|
layout="${this.layout}"
|
|
8603
8638
|
part="dropdown"
|
|
@@ -8614,9 +8649,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8614
8649
|
${this.required ? undefined : html`<slot name="optionalLabel"> (optional)</slot>`}
|
|
8615
8650
|
</label>
|
|
8616
8651
|
<div class="value" id="value"></div>
|
|
8617
|
-
|
|
8618
|
-
${
|
|
8619
|
-
|
|
8652
|
+
${this.value ? undefined : html`
|
|
8653
|
+
<div id="placeholder" class="${classMap(placeholderClass)}">
|
|
8654
|
+
<slot name="placeholder"></slot>
|
|
8655
|
+
</div>
|
|
8656
|
+
`}
|
|
8620
8657
|
</div>
|
|
8621
8658
|
<div class="${classMap(displayValueClasses)}" aria-hidden="true" part="displayValue">
|
|
8622
8659
|
<slot name="displayValue"></slot>
|
|
@@ -8643,14 +8680,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8643
8680
|
*/
|
|
8644
8681
|
renderLayoutSnowflake() {
|
|
8645
8682
|
const placeholderClass = {
|
|
8646
|
-
|
|
8683
|
+
hidden: this.value,
|
|
8647
8684
|
};
|
|
8648
8685
|
|
|
8649
8686
|
const displayValueClasses = {
|
|
8650
8687
|
'displayValue': true,
|
|
8651
8688
|
'hasContent': this.hasDisplayValueContent,
|
|
8652
8689
|
'hasFocus': this.isPopoverVisible,
|
|
8653
|
-
'withValue': this.
|
|
8690
|
+
'withValue': this.value && this.value.length > 0,
|
|
8654
8691
|
'force': this.forceDisplayValue,
|
|
8655
8692
|
};
|
|
8656
8693
|
|
|
@@ -8676,6 +8713,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8676
8713
|
.offset="${this.offset}"
|
|
8677
8714
|
.placement="${this.placement}"
|
|
8678
8715
|
chevron
|
|
8716
|
+
fluid
|
|
8679
8717
|
for="selectMenu"
|
|
8680
8718
|
layout="${this.layout}"
|
|
8681
8719
|
part="dropdown"
|
|
@@ -8692,9 +8730,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8692
8730
|
${this.required ? undefined : html`<slot name="optionalLabel"> (optional)</slot>`}
|
|
8693
8731
|
</label>
|
|
8694
8732
|
<div class="value" id="value"></div>
|
|
8695
|
-
|
|
8696
|
-
${
|
|
8697
|
-
|
|
8733
|
+
${this.value ? undefined : html`
|
|
8734
|
+
<div id="placeholder" class="${classMap(placeholderClass)}">
|
|
8735
|
+
<slot name="placeholder"></slot>
|
|
8736
|
+
</div>
|
|
8737
|
+
`}
|
|
8698
8738
|
</div>
|
|
8699
8739
|
<div class="${classMap(displayValueClasses)}" aria-hidden="true" part="displayValue">
|
|
8700
8740
|
<slot name="displayValue"></slot>
|
|
@@ -8722,14 +8762,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8722
8762
|
*/
|
|
8723
8763
|
renderLayoutClassic() {
|
|
8724
8764
|
const placeholderClass = {
|
|
8725
|
-
|
|
8765
|
+
hidden: this.value,
|
|
8726
8766
|
};
|
|
8727
8767
|
|
|
8728
8768
|
const displayValueClasses = {
|
|
8729
8769
|
'displayValue': true,
|
|
8730
8770
|
'hasContent': this.hasDisplayValueContent,
|
|
8731
8771
|
'hasFocus': this.isPopoverVisible,
|
|
8732
|
-
'withValue': this.
|
|
8772
|
+
'withValue': this.value && this.value.length > 0,
|
|
8733
8773
|
'force': this.forceDisplayValue,
|
|
8734
8774
|
};
|
|
8735
8775
|
|
|
@@ -8755,6 +8795,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8755
8795
|
.offset="${this.offset}"
|
|
8756
8796
|
.placement="${this.placement}"
|
|
8757
8797
|
chevron
|
|
8798
|
+
fluid
|
|
8758
8799
|
for="selectMenu"
|
|
8759
8800
|
layout="${this.layout}"
|
|
8760
8801
|
part="dropdown"
|
|
@@ -8771,9 +8812,11 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8771
8812
|
${this.required ? undefined : html`<slot name="optionalLabel"> (optional)</slot>`}
|
|
8772
8813
|
</label>
|
|
8773
8814
|
<div class="value" id="value"></div>
|
|
8774
|
-
|
|
8775
|
-
${
|
|
8776
|
-
|
|
8815
|
+
${this.value ? undefined : html`
|
|
8816
|
+
<div id="placeholder" class="${classMap(placeholderClass)}">
|
|
8817
|
+
<slot name="placeholder"></slot>
|
|
8818
|
+
</div>
|
|
8819
|
+
`}
|
|
8777
8820
|
</div>
|
|
8778
8821
|
<div class="${classMap(displayValueClasses)}" aria-hidden="true" part="displayValue">
|
|
8779
8822
|
<slot name="displayValue"></slot>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aurodesignsystem-dev/auro-formkit",
|
|
3
|
-
"version": "0.0.0-
|
|
3
|
+
"version": "0.0.0-pr754.0",
|
|
4
4
|
"description": "A collection of web components used to build forms.",
|
|
5
5
|
"homepage": "https://github.com/AlaskaAirlines/auro-formkit#readme",
|
|
6
6
|
"bugs": {
|
|
@@ -49,8 +49,7 @@
|
|
|
49
49
|
"sweep": "find ./components ./packages -type d -name 'dist' -exec rm -rf {} + && find ./ -type d -name '.turbo' -exec rm -rf {} + && find ./components ./packages -not -path '*/node_modules/*' -type f \\( -name '*.css' -o -name '*-css.js' \\) -delete",
|
|
50
50
|
"preCommit": "node ./node_modules/@aurodesignsystem/auro-library/scripts/build/pre-commit.mjs",
|
|
51
51
|
"prepare": "husky",
|
|
52
|
-
"deploy-demo": "npm run build && sh ./deploy-components.sh"
|
|
53
|
-
"local-demo": "npm run build && sh ./local-demo.sh --zip"
|
|
52
|
+
"deploy-demo": "npm run build && sh ./deploy-components.sh"
|
|
54
53
|
},
|
|
55
54
|
"dependencies": {
|
|
56
55
|
"@aurodesignsystem/auro-library": "^5.2.2",
|
|
@@ -63,7 +62,7 @@
|
|
|
63
62
|
"devDependencies": {
|
|
64
63
|
"@aurodesignsystem/design-tokens": "^8.2.1",
|
|
65
64
|
"@aurodesignsystem/eslint-config": "^1.3.4",
|
|
66
|
-
"@aurodesignsystem/webcorestylesheets": "^
|
|
65
|
+
"@aurodesignsystem/webcorestylesheets": "^9.0.3",
|
|
67
66
|
"@commitlint/cli": "^19.8.1",
|
|
68
67
|
"@commitlint/config-conventional": "^19.8.1",
|
|
69
68
|
"@open-wc/testing": "^4.0.0",
|