@aurodesignsystem-dev/auro-formkit 0.0.0-pr754.1 → 0.0.0-pr754.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/bibtemplate/dist/index.js +1 -1
- package/components/bibtemplate/dist/registered.js +1 -1
- package/components/checkbox/demo/api.min.js +9 -9
- package/components/checkbox/demo/index.min.js +9 -9
- package/components/checkbox/dist/index.js +9 -9
- package/components/checkbox/dist/registered.js +9 -9
- package/components/combobox/demo/api.md +12 -6
- package/components/combobox/demo/api.min.js +43 -84
- package/components/combobox/demo/index.min.js +43 -84
- package/components/combobox/dist/index.js +42 -84
- package/components/combobox/dist/registered.js +42 -84
- package/components/counter/demo/api.md +140 -7
- package/components/counter/demo/api.min.js +555 -385
- package/components/counter/demo/index.md +82 -0
- package/components/counter/demo/index.min.js +555 -385
- package/components/counter/dist/auro-counter-group.d.ts +71 -14
- package/components/counter/dist/auro-counter.d.ts +10 -0
- package/components/counter/dist/index.js +555 -385
- package/components/counter/dist/registered.js +555 -385
- package/components/datepicker/demo/api.min.js +42 -84
- package/components/datepicker/demo/index.min.js +42 -84
- package/components/datepicker/dist/index.js +42 -84
- package/components/datepicker/dist/registered.js +42 -84
- package/components/dropdown/demo/api.md +76 -268
- package/components/dropdown/demo/api.min.js +25 -67
- package/components/dropdown/demo/index.md +45 -363
- package/components/dropdown/demo/index.min.js +25 -67
- package/components/dropdown/dist/auro-dropdown.d.ts +21 -71
- package/components/dropdown/dist/index.js +25 -67
- package/components/dropdown/dist/registered.js +25 -67
- package/components/helptext/dist/index.js +1 -1
- package/components/helptext/dist/registered.js +1 -1
- package/components/input/demo/api.md +1 -1
- package/components/input/demo/api.min.js +10 -10
- package/components/input/demo/index.min.js +10 -10
- package/components/input/dist/base-input.d.ts +1 -1
- package/components/input/dist/index.js +10 -10
- package/components/input/dist/registered.js +10 -10
- package/components/menu/demo/api.md +14 -15
- package/components/menu/demo/api.min.js +1 -0
- package/components/menu/demo/index.min.js +1 -0
- package/components/menu/dist/auro-menu.d.ts +2 -1
- package/components/menu/dist/index.js +1 -0
- package/components/menu/dist/registered.js +1 -0
- package/components/radio/demo/api.min.js +9 -9
- package/components/radio/demo/index.min.js +9 -9
- package/components/radio/dist/index.js +9 -9
- package/components/radio/dist/registered.js +9 -9
- package/components/select/demo/api.md +41 -36
- package/components/select/demo/api.min.js +60 -102
- package/components/select/demo/index.md +1 -1
- package/components/select/demo/index.min.js +60 -102
- package/components/select/dist/auro-select.d.ts +9 -2
- package/components/select/dist/index.js +59 -102
- package/components/select/dist/registered.js +59 -102
- package/package.json +2 -2
|
@@ -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.setCustomValidityTooShort || e.setCustomValidity || ''
|
|
652
|
+
message: e => e.getAttribute('setCustomValidityTooShort') || e.setCustomValidity || ''
|
|
653
653
|
},
|
|
654
654
|
{
|
|
655
655
|
check: (e) => e.value?.length > e.maxLength,
|
|
656
656
|
validity: 'tooLong',
|
|
657
|
-
message: e => e.setCustomValidityTooLong || e.setCustomValidity || ''
|
|
657
|
+
message: e => e.getAttribute('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.setCustomValidityPatternMismatch || e.setCustomValidity || ''
|
|
664
|
+
message: e => e.getAttribute('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 (this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
859
|
+
} else if (hasValue && this.runtimeUtils.elementMatch(elem, 'auro-input')) {
|
|
860
860
|
this.validateType(elem);
|
|
861
861
|
this.validateElementAttributes(elem);
|
|
862
|
-
} else if (this.runtimeUtils.elementMatch(elem, 'auro-counter') || this.runtimeUtils.elementMatch(elem, 'auro-counter-group')) {
|
|
862
|
+
} else if (hasValue && (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([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)}`;
|
|
4130
|
+
var colorCss$1$1 = css`:host(:not([layout*=classic])){--ds-auro-dropdown-trigger-border-color: transparent}: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`:host{position:relative;display:block}.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,10 +4444,8 @@ let AuroElement$2 = class AuroElement extends LitElement {
|
|
|
4444
4444
|
// See LICENSE in the project root for license information.
|
|
4445
4445
|
|
|
4446
4446
|
|
|
4447
|
-
|
|
4448
|
-
* @attr { Boolean } disableEventShow - If declared, the dropdown will only show by calling the API .show() public method.
|
|
4447
|
+
/*
|
|
4449
4448
|
* @slot - Default slot for the popover content.
|
|
4450
|
-
* @slot label - Defines the content of the label.
|
|
4451
4449
|
* @slot helpText - Defines the content of the helpText.
|
|
4452
4450
|
* @slot trigger - Defines the content of the trigger.
|
|
4453
4451
|
* @csspart trigger - The trigger content container.
|
|
@@ -4466,18 +4464,22 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4466
4464
|
this.matchWidth = false;
|
|
4467
4465
|
this.noHideOnThisFocusLoss = false;
|
|
4468
4466
|
|
|
4469
|
-
this.errorMessage =
|
|
4467
|
+
this.errorMessage = undefined; // TODO - check with Doug if there is still more to do here
|
|
4470
4468
|
|
|
4471
4469
|
// Layout Config
|
|
4472
|
-
this.layout =
|
|
4473
|
-
this.shape =
|
|
4474
|
-
this.size =
|
|
4470
|
+
this.layout = undefined;
|
|
4471
|
+
this.shape = undefined;
|
|
4472
|
+
this.size = undefined;
|
|
4475
4473
|
|
|
4476
4474
|
this.parentBorder = false;
|
|
4477
4475
|
|
|
4478
4476
|
this.privateDefaults();
|
|
4479
4477
|
}
|
|
4480
4478
|
|
|
4479
|
+
/**
|
|
4480
|
+
* @private
|
|
4481
|
+
* @returns {object} Class definition for the wrapper element.
|
|
4482
|
+
*/
|
|
4481
4483
|
get commonWrapperClasses() {
|
|
4482
4484
|
return {
|
|
4483
4485
|
'trigger': true,
|
|
@@ -4497,12 +4499,8 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4497
4499
|
this.disabled = false;
|
|
4498
4500
|
this.disableFocusTrap = false;
|
|
4499
4501
|
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;
|
|
4506
4504
|
this.a11yRole = 'button';
|
|
4507
4505
|
this.onDark = false;
|
|
4508
4506
|
this.showTriggerBorders = true;
|
|
@@ -4624,26 +4622,27 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4624
4622
|
},
|
|
4625
4623
|
|
|
4626
4624
|
/**
|
|
4627
|
-
* If declared,
|
|
4625
|
+
* If declared, the dropdown will only show by calling the API .show() public method.
|
|
4626
|
+
* @default false
|
|
4628
4627
|
*/
|
|
4629
|
-
|
|
4628
|
+
disableEventShow: {
|
|
4630
4629
|
type: Boolean,
|
|
4631
4630
|
reflect: true
|
|
4632
4631
|
},
|
|
4633
4632
|
|
|
4634
4633
|
/**
|
|
4635
|
-
* If declared,
|
|
4636
|
-
* @attr {Boolean} chevron
|
|
4634
|
+
* If declared, applies a border around the trigger slot.
|
|
4637
4635
|
*/
|
|
4638
|
-
|
|
4636
|
+
simple: {
|
|
4639
4637
|
type: Boolean,
|
|
4640
4638
|
reflect: true
|
|
4641
4639
|
},
|
|
4642
4640
|
|
|
4643
4641
|
/**
|
|
4644
|
-
* If declared, the dropdown
|
|
4642
|
+
* If declared, the dropdown displays a chevron on the right.
|
|
4643
|
+
* @attr {Boolean} chevron
|
|
4645
4644
|
*/
|
|
4646
|
-
|
|
4645
|
+
chevron: {
|
|
4647
4646
|
type: Boolean,
|
|
4648
4647
|
reflect: true
|
|
4649
4648
|
},
|
|
@@ -4657,7 +4656,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4657
4656
|
},
|
|
4658
4657
|
|
|
4659
4658
|
/**
|
|
4660
|
-
* If
|
|
4659
|
+
* If declared, the focus trap inside of bib will be turned off.
|
|
4661
4660
|
*/
|
|
4662
4661
|
disableFocusTrap: {
|
|
4663
4662
|
type: Boolean,
|
|
@@ -4704,22 +4703,6 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4704
4703
|
reflect: true
|
|
4705
4704
|
},
|
|
4706
4705
|
|
|
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
|
-
|
|
4723
4706
|
/**
|
|
4724
4707
|
* If true, the dropdown bib is displayed.
|
|
4725
4708
|
*/
|
|
@@ -4763,15 +4746,6 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4763
4746
|
reflect: true
|
|
4764
4747
|
},
|
|
4765
4748
|
|
|
4766
|
-
/**
|
|
4767
|
-
* Defines if there is a label preset.
|
|
4768
|
-
* @private
|
|
4769
|
-
*/
|
|
4770
|
-
labeled: {
|
|
4771
|
-
type: Boolean,
|
|
4772
|
-
reflect: true
|
|
4773
|
-
},
|
|
4774
|
-
|
|
4775
4749
|
/**
|
|
4776
4750
|
* Defines if the trigger should size based on the parent element providing the border UI.
|
|
4777
4751
|
* @private
|
|
@@ -4832,6 +4806,9 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4832
4806
|
reflect: true
|
|
4833
4807
|
},
|
|
4834
4808
|
|
|
4809
|
+
/**
|
|
4810
|
+
* If declared, and a function is set, that function will execute when the slot content is updated.
|
|
4811
|
+
*/
|
|
4835
4812
|
onSlotChange: {
|
|
4836
4813
|
type: Function,
|
|
4837
4814
|
reflect: false
|
|
@@ -4846,14 +4823,6 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4846
4823
|
reflect: true
|
|
4847
4824
|
},
|
|
4848
4825
|
|
|
4849
|
-
/**
|
|
4850
|
-
* If declared, will apply border-radius to trigger and default slots.
|
|
4851
|
-
*/
|
|
4852
|
-
rounded: {
|
|
4853
|
-
type: Boolean,
|
|
4854
|
-
reflect: true
|
|
4855
|
-
},
|
|
4856
|
-
|
|
4857
4826
|
/**
|
|
4858
4827
|
* @private
|
|
4859
4828
|
*/
|
|
@@ -4868,22 +4837,14 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4868
4837
|
type: String || undefined,
|
|
4869
4838
|
attribute: false,
|
|
4870
4839
|
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,
|
|
4879
4840
|
}
|
|
4880
4841
|
};
|
|
4881
4842
|
}
|
|
4882
4843
|
|
|
4883
4844
|
static get styles() {
|
|
4884
4845
|
return [
|
|
4885
|
-
colorCss$1$1,
|
|
4886
4846
|
tokensCss$1$1,
|
|
4847
|
+
colorCss$1$1,
|
|
4887
4848
|
|
|
4888
4849
|
// default layout
|
|
4889
4850
|
classicColorCss,
|
|
@@ -5323,10 +5284,7 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
5323
5284
|
id="bib"
|
|
5324
5285
|
shape="${this.shape}"
|
|
5325
5286
|
?data-show="${this.isPopoverVisible}"
|
|
5326
|
-
?isfullscreen="${this.isBibFullscreen}"
|
|
5327
|
-
?common="${this.common}"
|
|
5328
|
-
?rounded="${this.common || this.rounded}"
|
|
5329
|
-
?inset="${this.common || this.inset}">
|
|
5287
|
+
?isfullscreen="${this.isBibFullscreen}">
|
|
5330
5288
|
<div class="slotContent">
|
|
5331
5289
|
<slot @slotchange="${this.handleDefaultSlot}"></slot>
|
|
5332
5290
|
</div>
|
|
@@ -7307,7 +7265,7 @@ class AuroBibtemplate extends LitElement {
|
|
|
7307
7265
|
<div id="bibTemplate" part="bibtemplate">
|
|
7308
7266
|
${this.isFullscreen ? html`
|
|
7309
7267
|
<div id="headerContainer">
|
|
7310
|
-
<${this.buttonTag} id="closeButton" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
7268
|
+
<${this.buttonTag} id="closeButton" aria-label="Close" variant="ghost" shape="circle" size="sm" @click="${this.onCloseButtonClick}">
|
|
7311
7269
|
<${this.iconTag} category="interface" name="x-lg"></${this.iconTag}>
|
|
7312
7270
|
</${this.buttonTag}>
|
|
7313
7271
|
<${this.headerTag} display="${this.large ? 'display' : '600'}" level="3" size="none" id="header" no-margin-block>
|
|
@@ -7335,7 +7293,7 @@ var bibTemplateVersion = '1.0.0';
|
|
|
7335
7293
|
|
|
7336
7294
|
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)}`;
|
|
7337
7295
|
|
|
7338
|
-
var styleCss$1 = css
|
|
7296
|
+
var styleCss$1 = css`:host{position:relative;display:block}.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}`;
|
|
7339
7297
|
|
|
7340
7298
|
var tokensCss = css`:host{--ds-auro-helptext-color: var(--ds-basic-color-texticon-muted, #676767)}`;
|
|
7341
7299
|
|
|
@@ -7541,7 +7499,7 @@ class AuroHelpText extends LitElement {
|
|
|
7541
7499
|
|
|
7542
7500
|
var helpTextVersion = '1.0.0';
|
|
7543
7501
|
|
|
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])
|
|
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: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]){pointer-events:none;user-select:none}:host([disabled]:not([ondark])) [auro-dropdown]{--ds-auro-select-border-color: var(--ds-basic-color-border-subtle, #dddddd)}:host(:not([layout*=classic])[disabled][ondark]) [auro-dropdown]{--ds-auro-select-border-color: transparent}`;
|
|
7545
7503
|
|
|
7546
7504
|
// Copyright (c) 2021 Alaska Airlines. All right reserved. Licensed under the Apache-2.0 license
|
|
7547
7505
|
// See LICENSE in the project root for license information.
|
|
@@ -7556,7 +7514,6 @@ var styleCss = css`.util_displayInline{display:inline}.util_displayInlineBlock{d
|
|
|
7556
7514
|
* @slot label - Defines the content of the label.
|
|
7557
7515
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
7558
7516
|
* @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
|
|
7560
7517
|
* @slot valueText - Dropdown value text display.
|
|
7561
7518
|
* @slot displayValue - Allows custom HTML content to display the selected value when select is not focused.
|
|
7562
7519
|
* @event auroSelect-valueSet - Notifies that the component has a new value set.
|
|
@@ -7826,6 +7783,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7826
7783
|
reflect: true
|
|
7827
7784
|
},
|
|
7828
7785
|
|
|
7786
|
+
/**
|
|
7787
|
+
* Define custom placeholder text.
|
|
7788
|
+
*/
|
|
7789
|
+
placeholder: {
|
|
7790
|
+
type: String,
|
|
7791
|
+
reflect: true
|
|
7792
|
+
},
|
|
7793
|
+
|
|
7829
7794
|
/**
|
|
7830
7795
|
* Populates the `required` attribute on the element. Used for client-side validation.
|
|
7831
7796
|
*/
|
|
@@ -7932,6 +7897,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7932
7897
|
/**
|
|
7933
7898
|
* Formatted value based on `multiSelect` state.
|
|
7934
7899
|
* Default type is `String`, changing to `Array<String>` when `multiSelect` is true.
|
|
7900
|
+
* @private
|
|
7935
7901
|
* @returns {String|Array<String>}
|
|
7936
7902
|
*/
|
|
7937
7903
|
get formattedValue() {
|
|
@@ -7955,7 +7921,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
7955
7921
|
get commonLabelClasses() {
|
|
7956
7922
|
return {
|
|
7957
7923
|
'is-disabled': this.disabled,
|
|
7958
|
-
'withValue': this.value && this.value.length > 0,
|
|
7924
|
+
'withValue': this.placeholder || (this.value && this.value.length > 0), // eslint-disable-line no-extra-parens
|
|
7959
7925
|
'util_displayHiddenVisually': this.hasDisplayValueContent && !this.hasFocus && this.value && this.value.length > 0
|
|
7960
7926
|
};
|
|
7961
7927
|
}
|
|
@@ -8583,7 +8549,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8583
8549
|
: html`
|
|
8584
8550
|
<${this.helpTextTag} error ?onDark="${this.onDark}">
|
|
8585
8551
|
<p id="${this.uniqueId}" role="alert" aria-live="assertive" part="helpText">
|
|
8586
|
-
|
|
8552
|
+
${this.errorMessage}
|
|
8587
8553
|
</p>
|
|
8588
8554
|
</${this.helpTextTag}>
|
|
8589
8555
|
`
|
|
@@ -8598,14 +8564,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8598
8564
|
*/
|
|
8599
8565
|
renderLayoutEmphasized() {
|
|
8600
8566
|
const placeholderClass = {
|
|
8601
|
-
|
|
8567
|
+
'util_displayHidden': this.value
|
|
8602
8568
|
};
|
|
8603
8569
|
|
|
8604
8570
|
const displayValueClasses = {
|
|
8605
8571
|
'displayValue': true,
|
|
8606
8572
|
'hasContent': this.hasDisplayValueContent,
|
|
8607
8573
|
'hasFocus': this.isPopoverVisible,
|
|
8608
|
-
'withValue': this.value && this.value.length > 0,
|
|
8574
|
+
'withValue': this.placeholder || (this.value && this.value.length > 0), // eslint-disable-line no-extra-parens
|
|
8609
8575
|
'force': this.forceDisplayValue,
|
|
8610
8576
|
};
|
|
8611
8577
|
|
|
@@ -8632,7 +8598,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8632
8598
|
.offset="${this.offset}"
|
|
8633
8599
|
.placement="${this.placement}"
|
|
8634
8600
|
chevron
|
|
8635
|
-
fluid
|
|
8636
8601
|
for="selectMenu"
|
|
8637
8602
|
layout="${this.layout}"
|
|
8638
8603
|
part="dropdown"
|
|
@@ -8649,11 +8614,9 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8649
8614
|
${this.required ? undefined : html`<slot name="optionalLabel"> (optional)</slot>`}
|
|
8650
8615
|
</label>
|
|
8651
8616
|
<div class="value" id="value"></div>
|
|
8652
|
-
${
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
</div>
|
|
8656
|
-
`}
|
|
8617
|
+
<div id="placeholder" class="${classMap(placeholderClass)}">
|
|
8618
|
+
${this.placeholder}
|
|
8619
|
+
</div>
|
|
8657
8620
|
</div>
|
|
8658
8621
|
<div class="${classMap(displayValueClasses)}" aria-hidden="true" part="displayValue">
|
|
8659
8622
|
<slot name="displayValue"></slot>
|
|
@@ -8680,14 +8643,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8680
8643
|
*/
|
|
8681
8644
|
renderLayoutSnowflake() {
|
|
8682
8645
|
const placeholderClass = {
|
|
8683
|
-
|
|
8646
|
+
'util_displayHidden': this.value
|
|
8684
8647
|
};
|
|
8685
8648
|
|
|
8686
8649
|
const displayValueClasses = {
|
|
8687
8650
|
'displayValue': true,
|
|
8688
8651
|
'hasContent': this.hasDisplayValueContent,
|
|
8689
8652
|
'hasFocus': this.isPopoverVisible,
|
|
8690
|
-
'withValue': this.value && this.value.length > 0,
|
|
8653
|
+
'withValue': this.placeholder || (this.value && this.value.length > 0), // eslint-disable-line no-extra-parens
|
|
8691
8654
|
'force': this.forceDisplayValue,
|
|
8692
8655
|
};
|
|
8693
8656
|
|
|
@@ -8713,7 +8676,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8713
8676
|
.offset="${this.offset}"
|
|
8714
8677
|
.placement="${this.placement}"
|
|
8715
8678
|
chevron
|
|
8716
|
-
fluid
|
|
8717
8679
|
for="selectMenu"
|
|
8718
8680
|
layout="${this.layout}"
|
|
8719
8681
|
part="dropdown"
|
|
@@ -8730,11 +8692,9 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8730
8692
|
${this.required ? undefined : html`<slot name="optionalLabel"> (optional)</slot>`}
|
|
8731
8693
|
</label>
|
|
8732
8694
|
<div class="value" id="value"></div>
|
|
8733
|
-
${
|
|
8734
|
-
|
|
8735
|
-
|
|
8736
|
-
</div>
|
|
8737
|
-
`}
|
|
8695
|
+
<div id="placeholder" class="${classMap(placeholderClass)}">
|
|
8696
|
+
${this.placeholder}
|
|
8697
|
+
</div>
|
|
8738
8698
|
</div>
|
|
8739
8699
|
<div class="${classMap(displayValueClasses)}" aria-hidden="true" part="displayValue">
|
|
8740
8700
|
<slot name="displayValue"></slot>
|
|
@@ -8762,14 +8722,14 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8762
8722
|
*/
|
|
8763
8723
|
renderLayoutClassic() {
|
|
8764
8724
|
const placeholderClass = {
|
|
8765
|
-
|
|
8725
|
+
'util_displayHidden': this.value
|
|
8766
8726
|
};
|
|
8767
8727
|
|
|
8768
8728
|
const displayValueClasses = {
|
|
8769
8729
|
'displayValue': true,
|
|
8770
8730
|
'hasContent': this.hasDisplayValueContent,
|
|
8771
8731
|
'hasFocus': this.isPopoverVisible,
|
|
8772
|
-
'withValue': this.value && this.value.length > 0,
|
|
8732
|
+
'withValue': this.placeholder || (this.value && this.value.length > 0), // eslint-disable-line no-extra-parens
|
|
8773
8733
|
'force': this.forceDisplayValue,
|
|
8774
8734
|
};
|
|
8775
8735
|
|
|
@@ -8795,7 +8755,6 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8795
8755
|
.offset="${this.offset}"
|
|
8796
8756
|
.placement="${this.placement}"
|
|
8797
8757
|
chevron
|
|
8798
|
-
fluid
|
|
8799
8758
|
for="selectMenu"
|
|
8800
8759
|
layout="${this.layout}"
|
|
8801
8760
|
part="dropdown"
|
|
@@ -8812,11 +8771,9 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8812
8771
|
${this.required ? undefined : html`<slot name="optionalLabel"> (optional)</slot>`}
|
|
8813
8772
|
</label>
|
|
8814
8773
|
<div class="value" id="value"></div>
|
|
8815
|
-
${
|
|
8816
|
-
|
|
8817
|
-
|
|
8818
|
-
</div>
|
|
8819
|
-
`}
|
|
8774
|
+
<div id="placeholder" class="${classMap(placeholderClass)}">
|
|
8775
|
+
${this.placeholder}
|
|
8776
|
+
</div>
|
|
8820
8777
|
</div>
|
|
8821
8778
|
<div class="${classMap(displayValueClasses)}" aria-hidden="true" part="displayValue">
|
|
8822
8779
|
<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-pr754.
|
|
3
|
+
"version": "0.0.0-pr754.2",
|
|
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": {
|
|
@@ -62,7 +62,7 @@
|
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@aurodesignsystem/design-tokens": "^8.2.1",
|
|
64
64
|
"@aurodesignsystem/eslint-config": "^1.3.4",
|
|
65
|
-
"@aurodesignsystem/webcorestylesheets": "^
|
|
65
|
+
"@aurodesignsystem/webcorestylesheets": "^10.0.0",
|
|
66
66
|
"@commitlint/cli": "^19.8.1",
|
|
67
67
|
"@commitlint/config-conventional": "^19.8.1",
|
|
68
68
|
"@open-wc/testing": "^4.0.0",
|