@aurodesignsystem-dev/auro-formkit 0.0.0-pr624.26 → 0.0.0-pr624.28
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/combobox/demo/api.min.js +3 -3
- package/components/combobox/demo/index.min.js +3 -3
- package/components/combobox/dist/index.js +3 -3
- package/components/combobox/dist/registered.js +3 -3
- package/components/counter/demo/api.min.js +1 -1
- package/components/counter/demo/index.min.js +1 -1
- package/components/counter/dist/auro-counter-group.d.ts +1 -1
- package/components/counter/dist/index.js +1 -1
- package/components/counter/dist/registered.js +1 -1
- package/components/datepicker/demo/api.min.js +4 -4
- package/components/datepicker/demo/index.min.js +4 -4
- package/components/datepicker/dist/index.js +4 -4
- package/components/datepicker/dist/registered.js +4 -4
- package/components/input/README.md +1 -1
- package/components/input/demo/api.md +44 -44
- package/components/input/demo/api.min.js +3 -3
- package/components/input/demo/index.md +14 -14
- package/components/input/demo/index.min.js +3 -3
- package/components/input/demo/readme.md +1 -1
- package/components/input/dist/base-input.d.ts +1 -1
- package/components/input/dist/index.js +3 -3
- package/components/input/dist/registered.js +3 -3
- package/components/select/demo/api.md +1 -1
- package/components/select/demo/api.min.js +1 -1
- package/components/select/demo/index.md +4 -4
- package/components/select/demo/index.min.js +1 -1
- package/components/select/dist/index.js +1 -1
- package/components/select/dist/registered.js +1 -1
- package/package.json +1 -1
|
@@ -10169,7 +10169,7 @@ let AuroElement$2$1 = class AuroElement extends i$2 {
|
|
|
10169
10169
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
10170
10170
|
* @attr id
|
|
10171
10171
|
*
|
|
10172
|
-
* @slot
|
|
10172
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
10173
10173
|
* @slot label - Sets the label text for the input.
|
|
10174
10174
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
10175
10175
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -10640,7 +10640,7 @@ class BaseInput extends AuroElement$2$1 {
|
|
|
10640
10640
|
}
|
|
10641
10641
|
|
|
10642
10642
|
firstUpdated() {
|
|
10643
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
10643
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
10644
10644
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
10645
10645
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
10646
10646
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -13305,7 +13305,7 @@ class AuroInput extends BaseInput {
|
|
|
13305
13305
|
? u$2`
|
|
13306
13306
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
13307
13307
|
<p id="${this.uniqueId}" part="helpText">
|
|
13308
|
-
<slot name="
|
|
13308
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
13309
13309
|
</p>
|
|
13310
13310
|
</${this.helpTextTag}>
|
|
13311
13311
|
`
|
|
@@ -10027,7 +10027,7 @@ let AuroElement$2$1 = class AuroElement extends i$2 {
|
|
|
10027
10027
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
10028
10028
|
* @attr id
|
|
10029
10029
|
*
|
|
10030
|
-
* @slot
|
|
10030
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
10031
10031
|
* @slot label - Sets the label text for the input.
|
|
10032
10032
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
10033
10033
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -10498,7 +10498,7 @@ class BaseInput extends AuroElement$2$1 {
|
|
|
10498
10498
|
}
|
|
10499
10499
|
|
|
10500
10500
|
firstUpdated() {
|
|
10501
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
10501
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
10502
10502
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
10503
10503
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
10504
10504
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -13163,7 +13163,7 @@ class AuroInput extends BaseInput {
|
|
|
13163
13163
|
? u$2`
|
|
13164
13164
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
13165
13165
|
<p id="${this.uniqueId}" part="helpText">
|
|
13166
|
-
<slot name="
|
|
13166
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
13167
13167
|
</p>
|
|
13168
13168
|
</${this.helpTextTag}>
|
|
13169
13169
|
`
|
|
@@ -9945,7 +9945,7 @@ let AuroElement$2$1 = class AuroElement extends LitElement {
|
|
|
9945
9945
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
9946
9946
|
* @attr id
|
|
9947
9947
|
*
|
|
9948
|
-
* @slot
|
|
9948
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
9949
9949
|
* @slot label - Sets the label text for the input.
|
|
9950
9950
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
9951
9951
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -10416,7 +10416,7 @@ class BaseInput extends AuroElement$2$1 {
|
|
|
10416
10416
|
}
|
|
10417
10417
|
|
|
10418
10418
|
firstUpdated() {
|
|
10419
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
10419
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
10420
10420
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
10421
10421
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
10422
10422
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -13081,7 +13081,7 @@ class AuroInput extends BaseInput {
|
|
|
13081
13081
|
? html`
|
|
13082
13082
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
13083
13083
|
<p id="${this.uniqueId}" part="helpText">
|
|
13084
|
-
<slot name="
|
|
13084
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
13085
13085
|
</p>
|
|
13086
13086
|
</${this.helpTextTag}>
|
|
13087
13087
|
`
|
|
@@ -9945,7 +9945,7 @@ let AuroElement$2$1 = class AuroElement extends LitElement {
|
|
|
9945
9945
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
9946
9946
|
* @attr id
|
|
9947
9947
|
*
|
|
9948
|
-
* @slot
|
|
9948
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
9949
9949
|
* @slot label - Sets the label text for the input.
|
|
9950
9950
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
9951
9951
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -10416,7 +10416,7 @@ class BaseInput extends AuroElement$2$1 {
|
|
|
10416
10416
|
}
|
|
10417
10417
|
|
|
10418
10418
|
firstUpdated() {
|
|
10419
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
10419
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
10420
10420
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
10421
10421
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
10422
10422
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -13081,7 +13081,7 @@ class AuroInput extends BaseInput {
|
|
|
13081
13081
|
? html`
|
|
13082
13082
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
13083
13083
|
<p id="${this.uniqueId}" part="helpText">
|
|
13084
|
-
<slot name="
|
|
13084
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
13085
13085
|
</p>
|
|
13086
13086
|
</${this.helpTextTag}>
|
|
13087
13087
|
`
|
|
@@ -9541,7 +9541,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
9541
9541
|
this.bibtemplateTag = versioning.generateTag('auro-formkit-counter-bibtemplate', bibTemplateVersion, AuroBibtemplate);
|
|
9542
9542
|
|
|
9543
9543
|
/**
|
|
9544
|
-
* Dynamically generated
|
|
9544
|
+
* Dynamically generated helpText tag.
|
|
9545
9545
|
* @private
|
|
9546
9546
|
* @type {string}
|
|
9547
9547
|
*/
|
|
@@ -9541,7 +9541,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
9541
9541
|
this.bibtemplateTag = versioning.generateTag('auro-formkit-counter-bibtemplate', bibTemplateVersion, AuroBibtemplate);
|
|
9542
9542
|
|
|
9543
9543
|
/**
|
|
9544
|
-
* Dynamically generated
|
|
9544
|
+
* Dynamically generated helpText tag.
|
|
9545
9545
|
* @private
|
|
9546
9546
|
* @type {string}
|
|
9547
9547
|
*/
|
|
@@ -9494,7 +9494,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
9494
9494
|
this.bibtemplateTag = versioning.generateTag('auro-formkit-counter-bibtemplate', bibTemplateVersion, AuroBibtemplate);
|
|
9495
9495
|
|
|
9496
9496
|
/**
|
|
9497
|
-
* Dynamically generated
|
|
9497
|
+
* Dynamically generated helpText tag.
|
|
9498
9498
|
* @private
|
|
9499
9499
|
* @type {string}
|
|
9500
9500
|
*/
|
|
@@ -9494,7 +9494,7 @@ class AuroCounterGroup extends AuroElement {
|
|
|
9494
9494
|
this.bibtemplateTag = versioning.generateTag('auro-formkit-counter-bibtemplate', bibTemplateVersion, AuroBibtemplate);
|
|
9495
9495
|
|
|
9496
9496
|
/**
|
|
9497
|
-
* Dynamically generated
|
|
9497
|
+
* Dynamically generated helpText tag.
|
|
9498
9498
|
* @private
|
|
9499
9499
|
* @type {string}
|
|
9500
9500
|
*/
|
|
@@ -23486,7 +23486,7 @@ let AuroElement$2 = class AuroElement extends i {
|
|
|
23486
23486
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
23487
23487
|
* @attr id
|
|
23488
23488
|
*
|
|
23489
|
-
* @slot
|
|
23489
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
23490
23490
|
* @slot label - Sets the label text for the input.
|
|
23491
23491
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
23492
23492
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -23957,7 +23957,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
23957
23957
|
}
|
|
23958
23958
|
|
|
23959
23959
|
firstUpdated() {
|
|
23960
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
23960
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
23961
23961
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
23962
23962
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
23963
23963
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -26622,7 +26622,7 @@ class AuroInput extends BaseInput {
|
|
|
26622
26622
|
? u$3`
|
|
26623
26623
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
26624
26624
|
<p id="${this.uniqueId}" part="helpText">
|
|
26625
|
-
<slot name="
|
|
26625
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
26626
26626
|
</p>
|
|
26627
26627
|
</${this.helpTextTag}>
|
|
26628
26628
|
`
|
|
@@ -28924,7 +28924,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28924
28924
|
? u$3`
|
|
28925
28925
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
28926
28926
|
<p id="${this.uniqueId}" part="helpText">
|
|
28927
|
-
<slot name="
|
|
28927
|
+
<slot name="helpText"></slot>
|
|
28928
28928
|
</p>
|
|
28929
28929
|
</${this.helpTextTag}>
|
|
28930
28930
|
`
|
|
@@ -23227,7 +23227,7 @@ let AuroElement$2 = class AuroElement extends i {
|
|
|
23227
23227
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
23228
23228
|
* @attr id
|
|
23229
23229
|
*
|
|
23230
|
-
* @slot
|
|
23230
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
23231
23231
|
* @slot label - Sets the label text for the input.
|
|
23232
23232
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
23233
23233
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -23698,7 +23698,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
23698
23698
|
}
|
|
23699
23699
|
|
|
23700
23700
|
firstUpdated() {
|
|
23701
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
23701
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
23702
23702
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
23703
23703
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
23704
23704
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -26363,7 +26363,7 @@ class AuroInput extends BaseInput {
|
|
|
26363
26363
|
? u$3`
|
|
26364
26364
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
26365
26365
|
<p id="${this.uniqueId}" part="helpText">
|
|
26366
|
-
<slot name="
|
|
26366
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
26367
26367
|
</p>
|
|
26368
26368
|
</${this.helpTextTag}>
|
|
26369
26369
|
`
|
|
@@ -28665,7 +28665,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28665
28665
|
? u$3`
|
|
28666
28666
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
28667
28667
|
<p id="${this.uniqueId}" part="helpText">
|
|
28668
|
-
<slot name="
|
|
28668
|
+
<slot name="helpText"></slot>
|
|
28669
28669
|
</p>
|
|
28670
28670
|
</${this.helpTextTag}>
|
|
28671
28671
|
`
|
|
@@ -23163,7 +23163,7 @@ let AuroElement$2 = class AuroElement extends LitElement {
|
|
|
23163
23163
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
23164
23164
|
* @attr id
|
|
23165
23165
|
*
|
|
23166
|
-
* @slot
|
|
23166
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
23167
23167
|
* @slot label - Sets the label text for the input.
|
|
23168
23168
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
23169
23169
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -23634,7 +23634,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
23634
23634
|
}
|
|
23635
23635
|
|
|
23636
23636
|
firstUpdated() {
|
|
23637
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
23637
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
23638
23638
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
23639
23639
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
23640
23640
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -26299,7 +26299,7 @@ class AuroInput extends BaseInput {
|
|
|
26299
26299
|
? html$1`
|
|
26300
26300
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
26301
26301
|
<p id="${this.uniqueId}" part="helpText">
|
|
26302
|
-
<slot name="
|
|
26302
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
26303
26303
|
</p>
|
|
26304
26304
|
</${this.helpTextTag}>
|
|
26305
26305
|
`
|
|
@@ -28601,7 +28601,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28601
28601
|
? html$1`
|
|
28602
28602
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
28603
28603
|
<p id="${this.uniqueId}" part="helpText">
|
|
28604
|
-
<slot name="
|
|
28604
|
+
<slot name="helpText"></slot>
|
|
28605
28605
|
</p>
|
|
28606
28606
|
</${this.helpTextTag}>
|
|
28607
28607
|
`
|
|
@@ -23163,7 +23163,7 @@ let AuroElement$2 = class AuroElement extends LitElement {
|
|
|
23163
23163
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
23164
23164
|
* @attr id
|
|
23165
23165
|
*
|
|
23166
|
-
* @slot
|
|
23166
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
23167
23167
|
* @slot label - Sets the label text for the input.
|
|
23168
23168
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
23169
23169
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -23634,7 +23634,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
23634
23634
|
}
|
|
23635
23635
|
|
|
23636
23636
|
firstUpdated() {
|
|
23637
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
23637
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
23638
23638
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
23639
23639
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
23640
23640
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -26299,7 +26299,7 @@ class AuroInput extends BaseInput {
|
|
|
26299
26299
|
? html$1`
|
|
26300
26300
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
26301
26301
|
<p id="${this.uniqueId}" part="helpText">
|
|
26302
|
-
<slot name="
|
|
26302
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
26303
26303
|
</p>
|
|
26304
26304
|
</${this.helpTextTag}>
|
|
26305
26305
|
`
|
|
@@ -28601,7 +28601,7 @@ class AuroDatePicker extends AuroElement$1 {
|
|
|
28601
28601
|
? html$1`
|
|
28602
28602
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
28603
28603
|
<p id="${this.uniqueId}" part="helpText">
|
|
28604
|
-
<slot name="
|
|
28604
|
+
<slot name="helpText"></slot>
|
|
28605
28605
|
</p>
|
|
28606
28606
|
</${this.helpTextTag}>
|
|
28607
28607
|
`
|
|
@@ -20,7 +20,7 @@ The following sections are editable by making changes to the following files:
|
|
|
20
20
|
# Input
|
|
21
21
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/description.md) -->
|
|
22
22
|
<!-- The below content is automatically added from ./docs/partials/description.md -->
|
|
23
|
-
Use the `<auro-input>` custom element to create basic single-line text fields. Supports type `text`, `password`, and `email` with validation, required input, error states and a secondary `bordered` theme. Use the slots `label` and `
|
|
23
|
+
Use the `<auro-input>` custom element to create basic single-line text fields. Supports type `text`, `password`, and `email` with validation, required input, error states and a secondary `bordered` theme. Use the slots `label` and `helpText` for additional content support.
|
|
24
24
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
25
25
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/readmeAddlInfo.md) -->
|
|
26
26
|
<!-- The below content is automatically added from ./docs/partials/readmeAddlInfo.md -->
|
|
@@ -78,7 +78,7 @@ Generate unique names for dependency components.
|
|
|
78
78
|
| Name | Description |
|
|
79
79
|
|-----------------|--------------------------------------------------|
|
|
80
80
|
| [displayValue](#displayValue) | Allows custom HTML content to display in place of the value when the input is not focused. |
|
|
81
|
-
| [
|
|
81
|
+
| [helpText](#helpText) | Sets the help text displayed below the input. |
|
|
82
82
|
| [label](#label) | Sets the label text for the input. |
|
|
83
83
|
| [optionalLabel](#optionalLabel) | Allows overriding the optional display text "(optional)", which appears next to the label. |
|
|
84
84
|
|
|
@@ -216,7 +216,7 @@ Use the `placeholder` attribute to add a custom placeholder message within the e
|
|
|
216
216
|
<!-- The below content is automatically added from ../apiExamples/placeholder.html -->
|
|
217
217
|
<auro-input placeholder="John Doe" bordered required>
|
|
218
218
|
<span slot="label">Full name</span>
|
|
219
|
-
<span slot="
|
|
219
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
220
220
|
</auro-input>
|
|
221
221
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
222
222
|
</div>
|
|
@@ -228,7 +228,7 @@ Use the `placeholder` attribute to add a custom placeholder message within the e
|
|
|
228
228
|
```html
|
|
229
229
|
<auro-input placeholder="John Doe" bordered required>
|
|
230
230
|
<span slot="label">Full name</span>
|
|
231
|
-
<span slot="
|
|
231
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
232
232
|
</auro-input>
|
|
233
233
|
```
|
|
234
234
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -242,7 +242,7 @@ Use the `value` attribute to programmatically set the value of the input.
|
|
|
242
242
|
<!-- The below content is automatically added from ../apiExamples/programmaticValue.html -->
|
|
243
243
|
<auro-input value="Alaska Airlines is the best!" bordered>
|
|
244
244
|
<span slot="label">Name</span>
|
|
245
|
-
<span slot="
|
|
245
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
246
246
|
</auro-input>
|
|
247
247
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
248
248
|
</div>
|
|
@@ -254,7 +254,7 @@ Use the `value` attribute to programmatically set the value of the input.
|
|
|
254
254
|
```html
|
|
255
255
|
<auro-input value="Alaska Airlines is the best!" bordered>
|
|
256
256
|
<span slot="label">Name</span>
|
|
257
|
-
<span slot="
|
|
257
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
258
258
|
</auro-input>
|
|
259
259
|
```
|
|
260
260
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -274,7 +274,7 @@ Note: Setting the `value` to `undefined` will also reset the element.
|
|
|
274
274
|
<br /><br />
|
|
275
275
|
<auro-input id="setProgrammaticValueExample" value="Press one of the buttons above!" bordered>
|
|
276
276
|
<span slot="label">Name</span>
|
|
277
|
-
<span slot="
|
|
277
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
278
278
|
</auro-input>
|
|
279
279
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
280
280
|
</div>
|
|
@@ -289,7 +289,7 @@ Note: Setting the `value` to `undefined` will also reset the element.
|
|
|
289
289
|
<br /><br />
|
|
290
290
|
<auro-input id="setProgrammaticValueExample" value="Press one of the buttons above!" bordered>
|
|
291
291
|
<span slot="label">Name</span>
|
|
292
|
-
<span slot="
|
|
292
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
293
293
|
</auro-input>
|
|
294
294
|
```
|
|
295
295
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -426,7 +426,7 @@ The `setCustomValidityTooLong` attribute may optionally be used in combination w
|
|
|
426
426
|
<!-- The below content is automatically added from ../apiExamples/maxLength.html -->
|
|
427
427
|
<auro-input maxlength="12" setCustomValidityTooLong="Oops! There were too many characters entered." bordered required>
|
|
428
428
|
<span slot="label">Voucher Code</span>
|
|
429
|
-
<span slot="
|
|
429
|
+
<span slot="helpText">Please enter your 12 character voucher code.</span>
|
|
430
430
|
</auro-input>
|
|
431
431
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
432
432
|
</div>
|
|
@@ -438,7 +438,7 @@ The `setCustomValidityTooLong` attribute may optionally be used in combination w
|
|
|
438
438
|
```html
|
|
439
439
|
<auro-input maxlength="12" setCustomValidityTooLong="Oops! There were too many characters entered." bordered required>
|
|
440
440
|
<span slot="label">Voucher Code</span>
|
|
441
|
-
<span slot="
|
|
441
|
+
<span slot="helpText">Please enter your 12 character voucher code.</span>
|
|
442
442
|
</auro-input>
|
|
443
443
|
```
|
|
444
444
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -454,7 +454,7 @@ The `setCustomValidityTooShort` attribute may optionally be used in combination
|
|
|
454
454
|
<!-- The below content is automatically added from ../apiExamples/minLength.html -->
|
|
455
455
|
<auro-input minlength="4" setCustomValidityTooShort="Please enter a full voucher code." bordered required>
|
|
456
456
|
<span slot="label">Voucher Code</span>
|
|
457
|
-
<span slot="
|
|
457
|
+
<span slot="helpText">Please enter your 4 character voucher code.</span>
|
|
458
458
|
</auro-input>
|
|
459
459
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
460
460
|
</div>
|
|
@@ -466,7 +466,7 @@ The `setCustomValidityTooShort` attribute may optionally be used in combination
|
|
|
466
466
|
```html
|
|
467
467
|
<auro-input minlength="4" setCustomValidityTooShort="Please enter a full voucher code." bordered required>
|
|
468
468
|
<span slot="label">Voucher Code</span>
|
|
469
|
-
<span slot="
|
|
469
|
+
<span slot="helpText">Please enter your 4 character voucher code.</span>
|
|
470
470
|
</auro-input>
|
|
471
471
|
```
|
|
472
472
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -482,7 +482,7 @@ The `<auro-input>` component supports setting a custom validity message specific
|
|
|
482
482
|
<!-- The below content is automatically added from ../apiExamples/pattern.html -->
|
|
483
483
|
<auro-input pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces" bordered>
|
|
484
484
|
<span slot="label">Username</span>
|
|
485
|
-
<span slot="
|
|
485
|
+
<span slot="helpText">Please enter a username.</span>
|
|
486
486
|
</auro-input>
|
|
487
487
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
488
488
|
</div>
|
|
@@ -494,7 +494,7 @@ The `<auro-input>` component supports setting a custom validity message specific
|
|
|
494
494
|
```html
|
|
495
495
|
<auro-input pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces" bordered>
|
|
496
496
|
<span slot="label">Username</span>
|
|
497
|
-
<span slot="
|
|
497
|
+
<span slot="helpText">Please enter a username.</span>
|
|
498
498
|
</auro-input>
|
|
499
499
|
```
|
|
500
500
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -513,7 +513,7 @@ In this example, the user is able to programmatically change the value of the in
|
|
|
513
513
|
<br /><br />
|
|
514
514
|
<auro-input readonly bordered id="readonlyExample">
|
|
515
515
|
<span slot="label">Name</span>
|
|
516
|
-
<span slot="
|
|
516
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
517
517
|
</auro-input>
|
|
518
518
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
519
519
|
</div>
|
|
@@ -528,7 +528,7 @@ In this example, the user is able to programmatically change the value of the in
|
|
|
528
528
|
<br /><br />
|
|
529
529
|
<auro-input readonly bordered id="readonlyExample">
|
|
530
530
|
<span slot="label">Name</span>
|
|
531
|
-
<span slot="
|
|
531
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
532
532
|
</auro-input>
|
|
533
533
|
```
|
|
534
534
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -560,7 +560,7 @@ Example use cases for auro-input support the `activeLabel` attribute. If set, th
|
|
|
560
560
|
<!-- The below content is automatically added from ../apiExamples/activeLabel.html -->
|
|
561
561
|
<auro-input activeLabel bordered>
|
|
562
562
|
<span slot="label">Address</span>
|
|
563
|
-
<span slot="
|
|
563
|
+
<span slot="helpText">Please enter your home address.</span>
|
|
564
564
|
</auro-input>
|
|
565
565
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
566
566
|
</div>
|
|
@@ -572,7 +572,7 @@ Example use cases for auro-input support the `activeLabel` attribute. If set, th
|
|
|
572
572
|
```html
|
|
573
573
|
<auro-input activeLabel bordered>
|
|
574
574
|
<span slot="label">Address</span>
|
|
575
|
-
<span slot="
|
|
575
|
+
<span slot="helpText">Please enter your home address.</span>
|
|
576
576
|
</auro-input>
|
|
577
577
|
```
|
|
578
578
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -586,7 +586,7 @@ For use cases where the field is `required`, but live validation is not wanted,
|
|
|
586
586
|
<!-- The below content is automatically added from ../apiExamples/noValidate.html -->
|
|
587
587
|
<auro-input noValidate required bordered>
|
|
588
588
|
<span slot="label">Address</span>
|
|
589
|
-
<span slot="
|
|
589
|
+
<span slot="helpText">Please enter your home address.</span>
|
|
590
590
|
</auro-input>
|
|
591
591
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
592
592
|
</div>
|
|
@@ -598,7 +598,7 @@ For use cases where the field is `required`, but live validation is not wanted,
|
|
|
598
598
|
```html
|
|
599
599
|
<auro-input noValidate required bordered>
|
|
600
600
|
<span slot="label">Address</span>
|
|
601
|
-
<span slot="
|
|
601
|
+
<span slot="helpText">Please enter your home address.</span>
|
|
602
602
|
</auro-input>
|
|
603
603
|
```
|
|
604
604
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -647,7 +647,7 @@ When the validity check fails, the validityState equals `valueMissing`. The erro
|
|
|
647
647
|
<!-- The below content is automatically added from ../apiExamples/required.html -->
|
|
648
648
|
<auro-input required bordered placeholder="John Doe">
|
|
649
649
|
<span slot="label">Full name</span>
|
|
650
|
-
<span slot="
|
|
650
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
651
651
|
</auro-input>
|
|
652
652
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
653
653
|
</div>
|
|
@@ -659,7 +659,7 @@ When the validity check fails, the validityState equals `valueMissing`. The erro
|
|
|
659
659
|
```html
|
|
660
660
|
<auro-input required bordered placeholder="John Doe">
|
|
661
661
|
<span slot="label">Full name</span>
|
|
662
|
-
<span slot="
|
|
662
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
663
663
|
</auro-input>
|
|
664
664
|
```
|
|
665
665
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -674,7 +674,7 @@ The `<auro-input>` supports an `optionalLabel` slot, where users can can overrid
|
|
|
674
674
|
<auro-input placeholder="John Doe" bordered>
|
|
675
675
|
<span slot="label">Full name</span>
|
|
676
676
|
<span slot="optionalLabel" style="color: grey; font-size: small"> - optional</span>
|
|
677
|
-
<span slot="
|
|
677
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
678
678
|
</auro-input>
|
|
679
679
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
680
680
|
</div>
|
|
@@ -687,7 +687,7 @@ The `<auro-input>` supports an `optionalLabel` slot, where users can can overrid
|
|
|
687
687
|
<auro-input placeholder="John Doe" bordered>
|
|
688
688
|
<span slot="label">Full name</span>
|
|
689
689
|
<span slot="optionalLabel" style="color: grey; font-size: small"> - optional</span>
|
|
690
|
-
<span slot="
|
|
690
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
691
691
|
</auro-input>
|
|
692
692
|
```
|
|
693
693
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -701,7 +701,7 @@ Use the `validateOnInput` attribute to enable live validation on the `input` eve
|
|
|
701
701
|
<!-- The below content is automatically added from ../apiExamples/validateOnInput.html -->
|
|
702
702
|
<auro-input validateOnInput bordered required pattern="[a-zA-Z-.']+( +[a-zA-Z-.']+)+" setCustomValidityPatternMismatch="Full name requires two or more names with at least one space.">
|
|
703
703
|
<span slot="label">Full Name</span>
|
|
704
|
-
<span slot="
|
|
704
|
+
<span slot="helpText">Please enter your full name as it appears on the card.</span>
|
|
705
705
|
</auro-input>
|
|
706
706
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
707
707
|
</div>
|
|
@@ -713,7 +713,7 @@ Use the `validateOnInput` attribute to enable live validation on the `input` eve
|
|
|
713
713
|
```html
|
|
714
714
|
<auro-input validateOnInput bordered required pattern="[a-zA-Z-.']+( +[a-zA-Z-.']+)+" setCustomValidityPatternMismatch="Full name requires two or more names with at least one space.">
|
|
715
715
|
<span slot="label">Full Name</span>
|
|
716
|
-
<span slot="
|
|
716
|
+
<span slot="helpText">Please enter your full name as it appears on the card.</span>
|
|
717
717
|
</auro-input>
|
|
718
718
|
```
|
|
719
719
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -729,7 +729,7 @@ The `setCustomValidity` attribute can be used to set a custom string for all val
|
|
|
729
729
|
<!-- The below content is automatically added from ../apiExamples/setCustomValidity.html -->
|
|
730
730
|
<auro-input bordered required minlength="3" setCustomValidity="Sorry, please enter your first and last name (one space required).">
|
|
731
731
|
<span slot="label">Full Name</span>
|
|
732
|
-
<span slot="
|
|
732
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
733
733
|
</auro-input>
|
|
734
734
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
735
735
|
</div>
|
|
@@ -741,7 +741,7 @@ The `setCustomValidity` attribute can be used to set a custom string for all val
|
|
|
741
741
|
```html
|
|
742
742
|
<auro-input bordered required minlength="3" setCustomValidity="Sorry, please enter your first and last name (one space required).">
|
|
743
743
|
<span slot="label">Full Name</span>
|
|
744
|
-
<span slot="
|
|
744
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
745
745
|
</auro-input>
|
|
746
746
|
```
|
|
747
747
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -760,7 +760,7 @@ A custom error message can be set using the `error` attribute, or it can be used
|
|
|
760
760
|
<br /><br />
|
|
761
761
|
<auro-input id="setCustomErrorExample" error="Initial error attribute value" bordered>
|
|
762
762
|
<span slot="label">Name</span>
|
|
763
|
-
<span slot="
|
|
763
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
764
764
|
</auro-input>
|
|
765
765
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
766
766
|
</div>
|
|
@@ -775,7 +775,7 @@ A custom error message can be set using the `error` attribute, or it can be used
|
|
|
775
775
|
<br /><br />
|
|
776
776
|
<auro-input id="setCustomErrorExample" error="Initial error attribute value" bordered>
|
|
777
777
|
<span slot="label">Name</span>
|
|
778
|
-
<span slot="
|
|
778
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
779
779
|
</auro-input>
|
|
780
780
|
```
|
|
781
781
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -809,7 +809,7 @@ export function customError() {
|
|
|
809
809
|
<br /><br />
|
|
810
810
|
<auro-input onDark id="setCustomErrorExampleOnDark" error="Initial error attribute value" bordered>
|
|
811
811
|
<span slot="label">Name</span>
|
|
812
|
-
<span slot="
|
|
812
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
813
813
|
</auro-input>
|
|
814
814
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
815
815
|
</div>
|
|
@@ -824,7 +824,7 @@ export function customError() {
|
|
|
824
824
|
<br /><br />
|
|
825
825
|
<auro-input onDark id="setCustomErrorExampleOnDark" error="Initial error attribute value" bordered>
|
|
826
826
|
<span slot="label">Name</span>
|
|
827
|
-
<span slot="
|
|
827
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
828
828
|
</auro-input>
|
|
829
829
|
```
|
|
830
830
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -861,7 +861,7 @@ Default help text will be added to the input `type="password"` if custom help te
|
|
|
861
861
|
<!-- The below content is automatically added from ../apiExamples/password.html -->
|
|
862
862
|
<auro-input type="password" required bordered>
|
|
863
863
|
<span slot="label">Password</span>
|
|
864
|
-
<span slot="
|
|
864
|
+
<span slot="helpText">Please enter a secure password.</span>
|
|
865
865
|
</auro-input>
|
|
866
866
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
867
867
|
</div>
|
|
@@ -870,7 +870,7 @@ Default help text will be added to the input `type="password"` if custom help te
|
|
|
870
870
|
<!-- The below content is automatically added from ../apiExamples/onDarkPassword.html -->
|
|
871
871
|
<auro-input onDark type="password" required bordered>
|
|
872
872
|
<span slot="label">Password</span>
|
|
873
|
-
<span slot="
|
|
873
|
+
<span slot="helpText">Please enter a secure password.</span>
|
|
874
874
|
</auro-input>
|
|
875
875
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
876
876
|
</div>
|
|
@@ -882,7 +882,7 @@ Default help text will be added to the input `type="password"` if custom help te
|
|
|
882
882
|
```html
|
|
883
883
|
<auro-input onDark type="password" required bordered>
|
|
884
884
|
<span slot="label">Password</span>
|
|
885
|
-
<span slot="
|
|
885
|
+
<span slot="helpText">Please enter a secure password.</span>
|
|
886
886
|
</auro-input>
|
|
887
887
|
```
|
|
888
888
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -899,7 +899,7 @@ Default help text will be added to the input `type="email"` if custom help text
|
|
|
899
899
|
<!-- The below content is automatically added from ../apiExamples/email.html -->
|
|
900
900
|
<auro-input type="email" bordered required>
|
|
901
901
|
<span slot="label">Email address</span>
|
|
902
|
-
<span slot="
|
|
902
|
+
<span slot="helpText">Please enter your email address.</span>
|
|
903
903
|
</auro-input>
|
|
904
904
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
905
905
|
</div>
|
|
@@ -911,7 +911,7 @@ Default help text will be added to the input `type="email"` if custom help text
|
|
|
911
911
|
```html
|
|
912
912
|
<auro-input type="email" bordered required>
|
|
913
913
|
<span slot="label">Email address</span>
|
|
914
|
-
<span slot="
|
|
914
|
+
<span slot="helpText">Please enter your email address.</span>
|
|
915
915
|
</auro-input>
|
|
916
916
|
```
|
|
917
917
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -928,7 +928,7 @@ This `number` input type should only be used for incremental numeric values, mea
|
|
|
928
928
|
<!-- The below content is automatically added from ../apiExamples/number.html -->
|
|
929
929
|
<auro-input type="number" bordered required>
|
|
930
930
|
<span slot="label">Number of Passengers</span>
|
|
931
|
-
<span slot="
|
|
931
|
+
<span slot="helpText">Please enter the number of passengers.</span>
|
|
932
932
|
</auro-input>
|
|
933
933
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
934
934
|
</div>
|
|
@@ -940,7 +940,7 @@ This `number` input type should only be used for incremental numeric values, mea
|
|
|
940
940
|
```html
|
|
941
941
|
<auro-input type="number" bordered required>
|
|
942
942
|
<span slot="label">Number of Passengers</span>
|
|
943
|
-
<span slot="
|
|
943
|
+
<span slot="helpText">Please enter the number of passengers.</span>
|
|
944
944
|
</auro-input>
|
|
945
945
|
```
|
|
946
946
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -957,7 +957,7 @@ Default help text will be added to the input `type="credit-card"` if custom help
|
|
|
957
957
|
<!-- The below content is automatically added from ../apiExamples/creditCard.html -->
|
|
958
958
|
<auro-input type="credit-card" bordered required>
|
|
959
959
|
<span slot="label">Card number</span>
|
|
960
|
-
<span slot="
|
|
960
|
+
<span slot="helpText">Valid credit card numbers must include 16 digits (15 for Amex).</span>
|
|
961
961
|
</auro-input>
|
|
962
962
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
963
963
|
</div>
|
|
@@ -969,7 +969,7 @@ Default help text will be added to the input `type="credit-card"` if custom help
|
|
|
969
969
|
```html
|
|
970
970
|
<auro-input type="credit-card" bordered required>
|
|
971
971
|
<span slot="label">Card number</span>
|
|
972
|
-
<span slot="
|
|
972
|
+
<span slot="helpText">Valid credit card numbers must include 16 digits (15 for Amex).</span>
|
|
973
973
|
</auro-input>
|
|
974
974
|
```
|
|
975
975
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -983,7 +983,7 @@ Use the `type="credit-card"` and `icon` attributes for a credit card formatted i
|
|
|
983
983
|
<!-- The below content is automatically added from ../apiExamples/creditCardIcon.html -->
|
|
984
984
|
<auro-input icon type="credit-card" bordered required>
|
|
985
985
|
<span slot="label">Card number</span>
|
|
986
|
-
<span slot="
|
|
986
|
+
<span slot="helpText">Valid credit card numbers must include 16 digits (15 for Amex).</span>
|
|
987
987
|
</auro-input>
|
|
988
988
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
989
989
|
</div>
|
|
@@ -996,7 +996,7 @@ Use the `type="credit-card"` and `icon` attributes for a credit card formatted i
|
|
|
996
996
|
```html
|
|
997
997
|
<auro-input icon type="credit-card" bordered required>
|
|
998
998
|
<span slot="label">Card number</span>
|
|
999
|
-
<span slot="
|
|
999
|
+
<span slot="helpText">Valid credit card numbers must include 16 digits (15 for Amex).</span>
|
|
1000
1000
|
</auro-input>
|
|
1001
1001
|
```
|
|
1002
1002
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -1147,7 +1147,7 @@ Use the `reset()` method to reset the `<auro-input>`'s `value` and `validity` st
|
|
|
1147
1147
|
<br /><br />
|
|
1148
1148
|
<auro-input id="resetStateExample" bordered minlength="12" value="Auro Team" setCustomValidityTooShort="Please enter your full name!">
|
|
1149
1149
|
<span slot="label">Full Name</span>
|
|
1150
|
-
<span slot="
|
|
1150
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
1151
1151
|
</auro-input>
|
|
1152
1152
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
1153
1153
|
</div>
|
|
@@ -1161,7 +1161,7 @@ Use the `reset()` method to reset the `<auro-input>`'s `value` and `validity` st
|
|
|
1161
1161
|
<br /><br />
|
|
1162
1162
|
<auro-input id="resetStateExample" bordered minlength="12" value="Auro Team" setCustomValidityTooShort="Please enter your full name!">
|
|
1163
1163
|
<span slot="label">Full Name</span>
|
|
1164
|
-
<span slot="
|
|
1164
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
1165
1165
|
</auro-input>
|
|
1166
1166
|
```
|
|
1167
1167
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -5094,7 +5094,7 @@ let AuroElement$2 = class AuroElement extends i$2 {
|
|
|
5094
5094
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
5095
5095
|
* @attr id
|
|
5096
5096
|
*
|
|
5097
|
-
* @slot
|
|
5097
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
5098
5098
|
* @slot label - Sets the label text for the input.
|
|
5099
5099
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
5100
5100
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -5565,7 +5565,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
5565
5565
|
}
|
|
5566
5566
|
|
|
5567
5567
|
firstUpdated() {
|
|
5568
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
5568
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
5569
5569
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
5570
5570
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
5571
5571
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -8230,7 +8230,7 @@ class AuroInput extends BaseInput {
|
|
|
8230
8230
|
? u$2`
|
|
8231
8231
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8232
8232
|
<p id="${this.uniqueId}" part="helpText">
|
|
8233
|
-
<slot name="
|
|
8233
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
8234
8234
|
</p>
|
|
8235
8235
|
</${this.helpTextTag}>
|
|
8236
8236
|
`
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../docs/partials/description.md) -->
|
|
4
4
|
<!-- The below content is automatically added from ./../docs/partials/description.md -->
|
|
5
|
-
Use the `<auro-input>` custom element to create basic single-line text fields. Supports type `text`, `password`, and `email` with validation, required input, error states and a secondary `bordered` theme. Use the slots `label` and `
|
|
5
|
+
Use the `<auro-input>` custom element to create basic single-line text fields. Supports type `text`, `password`, and `email` with validation, required input, error states and a secondary `bordered` theme. Use the slots `label` and `helpText` for additional content support.
|
|
6
6
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
7
7
|
|
|
8
8
|
## auro-input use cases
|
|
@@ -25,7 +25,7 @@ The `<auro-input>` element should be used in situations where users may:
|
|
|
25
25
|
</auro-input> -->
|
|
26
26
|
<auro-input id="alpha" value="lax" layout="emphasized" shape="box" size="xl" placeholder="Departure" style="width: 249px;" ondark required>
|
|
27
27
|
<label slot="label">From</label>
|
|
28
|
-
<span slot="
|
|
28
|
+
<span slot="helpText">Example help text</span>
|
|
29
29
|
<span slot="displayValue">
|
|
30
30
|
<div>
|
|
31
31
|
<div class="mainText">LAX</div>
|
|
@@ -35,15 +35,15 @@ The `<auro-input>` element should be used in situations where users may:
|
|
|
35
35
|
</auro-input>
|
|
36
36
|
<auro-input id="beta" layout="emphasized" shape="pill" size="xl" placeholder="Departure" style="width: 249px;" ondark required>
|
|
37
37
|
<label slot="label">From</label>
|
|
38
|
-
<span slot="
|
|
38
|
+
<span slot="helpText">Example help text</span>
|
|
39
39
|
</auro-input>
|
|
40
40
|
<auro-input id="charlie" layout="emphasized-left" shape="pill-left" size="xl" placeholder="Departure" style="width: 249px;" ondark required>
|
|
41
41
|
<label slot="label">From</label>
|
|
42
|
-
<span slot="
|
|
42
|
+
<span slot="helpText">Example help text</span>
|
|
43
43
|
</auro-input>
|
|
44
44
|
<auro-input id="delta" layout="emphasized-right" shape="pill-right" size="xl" placeholder="Departure" style="width: 249px;" ondark required>
|
|
45
45
|
<label slot="label">From</label>
|
|
46
|
-
<span slot="
|
|
46
|
+
<span slot="helpText">Example help text</span>
|
|
47
47
|
</auro-input>
|
|
48
48
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
49
49
|
</div>
|
|
@@ -55,7 +55,7 @@ The `<auro-input>` element should be used in situations where users may:
|
|
|
55
55
|
<!-- The below content is automatically added from ./../apiExamples/snowflake/basic.html -->
|
|
56
56
|
<auro-input id="snowflakePill" layout="snowflake" shape="snowflake" size="lg" placeholder="Departure" style="width: 249px;" ondark required>
|
|
57
57
|
<label slot="label">From</label>
|
|
58
|
-
<span slot="
|
|
58
|
+
<span slot="helpText">Example help text</span>
|
|
59
59
|
</auro-input>
|
|
60
60
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
61
61
|
</div>
|
|
@@ -103,7 +103,7 @@ Use the `placeholder` attribute to add a custom placeholder message within the e
|
|
|
103
103
|
<!-- The below content is automatically added from ./../apiExamples/placeholder.html -->
|
|
104
104
|
<auro-input placeholder="John Doe" bordered required>
|
|
105
105
|
<span slot="label">Full name</span>
|
|
106
|
-
<span slot="
|
|
106
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
107
107
|
</auro-input>
|
|
108
108
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
109
109
|
</div>
|
|
@@ -115,7 +115,7 @@ Use the `placeholder` attribute to add a custom placeholder message within the e
|
|
|
115
115
|
```html
|
|
116
116
|
<auro-input placeholder="John Doe" bordered required>
|
|
117
117
|
<span slot="label">Full name</span>
|
|
118
|
-
<span slot="
|
|
118
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
119
119
|
</auro-input>
|
|
120
120
|
```
|
|
121
121
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -172,7 +172,7 @@ Example use cases for auro-input support the `activeLabel` attribute. If set, th
|
|
|
172
172
|
<!-- The below content is automatically added from ./../apiExamples/activeLabel.html -->
|
|
173
173
|
<auro-input activeLabel bordered>
|
|
174
174
|
<span slot="label">Address</span>
|
|
175
|
-
<span slot="
|
|
175
|
+
<span slot="helpText">Please enter your home address.</span>
|
|
176
176
|
</auro-input>
|
|
177
177
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
178
178
|
</div>
|
|
@@ -184,7 +184,7 @@ Example use cases for auro-input support the `activeLabel` attribute. If set, th
|
|
|
184
184
|
```html
|
|
185
185
|
<auro-input activeLabel bordered>
|
|
186
186
|
<span slot="label">Address</span>
|
|
187
|
-
<span slot="
|
|
187
|
+
<span slot="helpText">Please enter your home address.</span>
|
|
188
188
|
</auro-input>
|
|
189
189
|
```
|
|
190
190
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -199,7 +199,7 @@ Use the `value` attribute to preset the value of the element.
|
|
|
199
199
|
<!-- The below content is automatically added from ./../apiExamples/programmaticValue.html -->
|
|
200
200
|
<auro-input value="Alaska Airlines is the best!" bordered>
|
|
201
201
|
<span slot="label">Name</span>
|
|
202
|
-
<span slot="
|
|
202
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
203
203
|
</auro-input>
|
|
204
204
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
205
205
|
</div>
|
|
@@ -211,7 +211,7 @@ Use the `value` attribute to preset the value of the element.
|
|
|
211
211
|
```html
|
|
212
212
|
<auro-input value="Alaska Airlines is the best!" bordered>
|
|
213
213
|
<span slot="label">Name</span>
|
|
214
|
-
<span slot="
|
|
214
|
+
<span slot="helpText">Please enter your full name.</span>
|
|
215
215
|
</auro-input>
|
|
216
216
|
```
|
|
217
217
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -228,7 +228,7 @@ The `<auro-input>` component supports setting a custom validity message specific
|
|
|
228
228
|
<!-- The below content is automatically added from ./../apiExamples/pattern.html -->
|
|
229
229
|
<auro-input pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces" bordered>
|
|
230
230
|
<span slot="label">Username</span>
|
|
231
|
-
<span slot="
|
|
231
|
+
<span slot="helpText">Please enter a username.</span>
|
|
232
232
|
</auro-input>
|
|
233
233
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
234
234
|
</div>
|
|
@@ -240,7 +240,7 @@ The `<auro-input>` component supports setting a custom validity message specific
|
|
|
240
240
|
```html
|
|
241
241
|
<auro-input pattern="[a-z]{1,15}" spellcheck="false" setCustomValidityPatternMismatch="Only contain lowercase letters w/no spaces" bordered>
|
|
242
242
|
<span slot="label">Username</span>
|
|
243
|
-
<span slot="
|
|
243
|
+
<span slot="helpText">Please enter a username.</span>
|
|
244
244
|
</auro-input>
|
|
245
245
|
```
|
|
246
246
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
@@ -5019,7 +5019,7 @@ let AuroElement$2 = class AuroElement extends i$2 {
|
|
|
5019
5019
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
5020
5020
|
* @attr id
|
|
5021
5021
|
*
|
|
5022
|
-
* @slot
|
|
5022
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
5023
5023
|
* @slot label - Sets the label text for the input.
|
|
5024
5024
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
5025
5025
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -5490,7 +5490,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
5490
5490
|
}
|
|
5491
5491
|
|
|
5492
5492
|
firstUpdated() {
|
|
5493
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
5493
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
5494
5494
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
5495
5495
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
5496
5496
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -8155,7 +8155,7 @@ class AuroInput extends BaseInput {
|
|
|
8155
8155
|
? u$2`
|
|
8156
8156
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8157
8157
|
<p id="${this.uniqueId}" part="helpText">
|
|
8158
|
-
<slot name="
|
|
8158
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
8159
8159
|
</p>
|
|
8160
8160
|
</${this.helpTextTag}>
|
|
8161
8161
|
`
|
|
@@ -20,7 +20,7 @@ The following sections are editable by making changes to the following files:
|
|
|
20
20
|
# Input
|
|
21
21
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/description.md) -->
|
|
22
22
|
<!-- The below content is automatically added from ./docs/partials/description.md -->
|
|
23
|
-
Use the `<auro-input>` custom element to create basic single-line text fields. Supports type `text`, `password`, and `email` with validation, required input, error states and a secondary `bordered` theme. Use the slots `label` and `
|
|
23
|
+
Use the `<auro-input>` custom element to create basic single-line text fields. Supports type `text`, `password`, and `email` with validation, required input, error states and a secondary `bordered` theme. Use the slots `label` and `helpText` for additional content support.
|
|
24
24
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
25
25
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./docs/partials/readmeAddlInfo.md) -->
|
|
26
26
|
<!-- The below content is automatically added from ./docs/partials/readmeAddlInfo.md -->
|
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
5
5
|
* @attr id
|
|
6
6
|
*
|
|
7
|
-
* @slot
|
|
7
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
8
8
|
* @slot label - Sets the label text for the input.
|
|
9
9
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
10
10
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -4943,7 +4943,7 @@ let AuroElement$2 = class AuroElement extends LitElement {
|
|
|
4943
4943
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
4944
4944
|
* @attr id
|
|
4945
4945
|
*
|
|
4946
|
-
* @slot
|
|
4946
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
4947
4947
|
* @slot label - Sets the label text for the input.
|
|
4948
4948
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
4949
4949
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -5414,7 +5414,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
5414
5414
|
}
|
|
5415
5415
|
|
|
5416
5416
|
firstUpdated() {
|
|
5417
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
5417
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
5418
5418
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
5419
5419
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
5420
5420
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -8079,7 +8079,7 @@ class AuroInput extends BaseInput {
|
|
|
8079
8079
|
? html$1`
|
|
8080
8080
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8081
8081
|
<p id="${this.uniqueId}" part="helpText">
|
|
8082
|
-
<slot name="
|
|
8082
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
8083
8083
|
</p>
|
|
8084
8084
|
</${this.helpTextTag}>
|
|
8085
8085
|
`
|
|
@@ -4943,7 +4943,7 @@ let AuroElement$2 = class AuroElement extends LitElement {
|
|
|
4943
4943
|
* @prop {string} id - The id global attribute defines an identifier (ID) which must be unique in the whole document.
|
|
4944
4944
|
* @attr id
|
|
4945
4945
|
*
|
|
4946
|
-
* @slot
|
|
4946
|
+
* @slot helpText - Sets the help text displayed below the input.
|
|
4947
4947
|
* @slot label - Sets the label text for the input.
|
|
4948
4948
|
* @slot {HTMLSlotElement} optionalLabel - Allows overriding the optional display text "(optional)", which appears next to the label.
|
|
4949
4949
|
* @slot displayValue - Allows custom HTML content to display in place of the value when the input is not focused.
|
|
@@ -5414,7 +5414,7 @@ class BaseInput extends AuroElement$2 {
|
|
|
5414
5414
|
}
|
|
5415
5415
|
|
|
5416
5416
|
firstUpdated() {
|
|
5417
|
-
// clicking anywhere in the main wrapper will focus the input. Clicking the
|
|
5417
|
+
// clicking anywhere in the main wrapper will focus the input. Clicking the helpText or label will not focus the input.
|
|
5418
5418
|
this.wrapperElement = this.shadowRoot.querySelector('.wrapper');
|
|
5419
5419
|
this.inputElement = this.renderRoot.querySelector('input');
|
|
5420
5420
|
this.labelElement = this.shadowRoot.querySelector('label');
|
|
@@ -8079,7 +8079,7 @@ class AuroInput extends BaseInput {
|
|
|
8079
8079
|
? html$1`
|
|
8080
8080
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8081
8081
|
<p id="${this.uniqueId}" part="helpText">
|
|
8082
|
-
<slot name="
|
|
8082
|
+
<slot name="helpText">${this.getHelpText()}</slot>
|
|
8083
8083
|
</p>
|
|
8084
8084
|
</${this.helpTextTag}>
|
|
8085
8085
|
`
|
|
@@ -784,7 +784,7 @@ Use the `label` slot to give your users contextual information about their selec
|
|
|
784
784
|
</auro-accordion>
|
|
785
785
|
|
|
786
786
|
#### helpText <a name="helpText"></a>
|
|
787
|
-
Use the `
|
|
787
|
+
Use the `helpText` slot to provide additional information back to your user about their selection option(s).
|
|
788
788
|
|
|
789
789
|
<div class="exampleWrapper">
|
|
790
790
|
<!-- AURO-GENERATED-CONTENT:START (FILE:src=./../apiExamples/helpText.html) -->
|
|
@@ -8429,7 +8429,7 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8429
8429
|
? u`
|
|
8430
8430
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8431
8431
|
<p id="${this.uniqueId}" part="helpText">
|
|
8432
|
-
<slot name="
|
|
8432
|
+
<slot name="helpText"></slot>
|
|
8433
8433
|
</p>
|
|
8434
8434
|
</${this.helpTextTag}>
|
|
8435
8435
|
`
|
|
@@ -116,7 +116,7 @@ A baseline `<auro-select>` using `<auro-menu>` and `<auro-menuoption>` elements.
|
|
|
116
116
|
</auro-select>
|
|
117
117
|
<auro-select layout="emphasized" shape="pill" size="xl" value="flights" required style="display:inline-block;">
|
|
118
118
|
<span slot="label">Select Example</span>
|
|
119
|
-
<span slot="
|
|
119
|
+
<span slot="helpText">no displayValue in menuoptions</span>
|
|
120
120
|
<auro-menu nocheckmark>
|
|
121
121
|
<auro-menuoption value="flights">
|
|
122
122
|
<auro-icon category="terminal" name="plane-diag-stroke" customcolor></auro-icon> Flights
|
|
@@ -194,7 +194,7 @@ A baseline `<auro-select>` using `<auro-menu>` and `<auro-menuoption>` elements.
|
|
|
194
194
|
</auro-select>
|
|
195
195
|
<auro-select layout="emphasized" shape="pill" size="xl" value="flights" ondark required style="display:inline-block;">
|
|
196
196
|
<span slot="label">Select Example</span>
|
|
197
|
-
<span slot="
|
|
197
|
+
<span slot="helpText">no displayValue in menuoptions</span>
|
|
198
198
|
<auro-menu nocheckmark>
|
|
199
199
|
<auro-menuoption value="flights">
|
|
200
200
|
<auro-icon category="terminal" name="plane-diag-stroke" customcolor></auro-icon> Flights
|
|
@@ -275,7 +275,7 @@ A baseline `<auro-select>` using `<auro-menu>` and `<auro-menuoption>` elements.
|
|
|
275
275
|
</auro-select>
|
|
276
276
|
<auro-select layout="snowflake" shape="snowflake" placeholder="placeholder text" required style="display:inline-block;">
|
|
277
277
|
<span slot="label">Select Example Placeholder</span>
|
|
278
|
-
<span slot="
|
|
278
|
+
<span slot="helpText">no displayValue in menuoptions</span>
|
|
279
279
|
<auro-menu nocheckmark>
|
|
280
280
|
<auro-menuoption value="flights">
|
|
281
281
|
<auro-icon category="terminal" name="plane-diag-stroke" customcolor></auro-icon> Flights
|
|
@@ -353,7 +353,7 @@ A baseline `<auro-select>` using `<auro-menu>` and `<auro-menuoption>` elements.
|
|
|
353
353
|
</auro-select>
|
|
354
354
|
<auro-select layout="snowflake" shape="snowflake" value="flights" required ondark style="display:inline-block;">
|
|
355
355
|
<span slot="label">Select Example</span>
|
|
356
|
-
<span slot="
|
|
356
|
+
<span slot="helpText">no displayValue in menuoptions</span>
|
|
357
357
|
<auro-menu nocheckmark>
|
|
358
358
|
<auro-menuoption value="flights">
|
|
359
359
|
<auro-icon category="terminal" name="plane-diag-stroke" customcolor></auro-icon> Flights
|
|
@@ -8326,7 +8326,7 @@ class AuroSelect extends AuroElement$4 {
|
|
|
8326
8326
|
? u`
|
|
8327
8327
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8328
8328
|
<p id="${this.uniqueId}" part="helpText">
|
|
8329
|
-
<slot name="
|
|
8329
|
+
<slot name="helpText"></slot>
|
|
8330
8330
|
</p>
|
|
8331
8331
|
</${this.helpTextTag}>
|
|
8332
8332
|
`
|
|
@@ -8280,7 +8280,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8280
8280
|
? html`
|
|
8281
8281
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8282
8282
|
<p id="${this.uniqueId}" part="helpText">
|
|
8283
|
-
<slot name="
|
|
8283
|
+
<slot name="helpText"></slot>
|
|
8284
8284
|
</p>
|
|
8285
8285
|
</${this.helpTextTag}>
|
|
8286
8286
|
`
|
|
@@ -8280,7 +8280,7 @@ class AuroSelect extends AuroElement$3 {
|
|
|
8280
8280
|
? html`
|
|
8281
8281
|
<${this.helpTextTag} ?onDark="${this.onDark}">
|
|
8282
8282
|
<p id="${this.uniqueId}" part="helpText">
|
|
8283
|
-
<slot name="
|
|
8283
|
+
<slot name="helpText"></slot>
|
|
8284
8284
|
</p>
|
|
8285
8285
|
</${this.helpTextTag}>
|
|
8286
8286
|
`
|
package/package.json
CHANGED