@aurodesignsystem-dev/auro-formkit 0.0.0-pr1145.0 → 0.0.0-pr1145.1
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.md +3 -3
- package/components/combobox/demo/api.min.js +1 -1
- package/components/combobox/demo/index.min.js +1 -1
- package/components/combobox/dist/auro-combobox.d.ts +1 -1
- package/components/combobox/dist/index.js +1 -1
- package/components/combobox/dist/registered.js +1 -1
- package/package.json +1 -1
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
| [layout](#layout) | | | `string` | "classic" | |
|
|
23
23
|
| [matchWidth](#matchWidth) | `matchWidth` | | `boolean` | true | If declared, the popover and trigger will be set to the same width. |
|
|
24
24
|
| [msgSelectionMissing](#msgSelectionMissing) | | | `string` | "Please select an option." | |
|
|
25
|
-
| [noFilter](#noFilter) | `noFilter` | | `boolean` | false | If set, combobox will not filter menuoptions based
|
|
25
|
+
| [noFilter](#noFilter) | `noFilter` | | `boolean` | false | If set, combobox will not filter menuoptions based on input. |
|
|
26
26
|
| [noFlip](#noFlip) | `noFlip` | | `boolean` | "false" | If declared, the bib will NOT flip to an alternate position<br />when there isn't enough space in the specified `placement`. |
|
|
27
27
|
| [noValidate](#noValidate) | `noValidate` | | `boolean` | false | If set, disables auto-validation on blur. |
|
|
28
28
|
| [offset](#offset) | `offset` | | `number` | "0" | Gap between the trigger element and bib. |
|
|
@@ -507,11 +507,11 @@ export async function dynamicMenuExample() {
|
|
|
507
507
|
<!-- AURO-GENERATED-CONTENT:END -->
|
|
508
508
|
</auro-accordion>
|
|
509
509
|
|
|
510
|
-
###
|
|
510
|
+
### Persistent Input
|
|
511
511
|
|
|
512
512
|
The `persistInput` attribute allows you to set the combo box to persist the value of the input regardless of the current value set for the combo box.
|
|
513
513
|
|
|
514
|
-
A
|
|
514
|
+
A persistent input is typically used in conjunction with display values to show the actual value of the selected option to the user when the input is not focused.
|
|
515
515
|
|
|
516
516
|
This is helpful for things like dynamic menus where you want the user to be able to continue their search where they left off but display a full selected value when the input is not focused.
|
|
517
517
|
|
|
@@ -16628,7 +16628,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16628
16628
|
},
|
|
16629
16629
|
|
|
16630
16630
|
/**
|
|
16631
|
-
* If set, combobox will not filter menuoptions based
|
|
16631
|
+
* If set, combobox will not filter menuoptions based on input.
|
|
16632
16632
|
*/
|
|
16633
16633
|
noFilter: {
|
|
16634
16634
|
type: Boolean,
|
|
@@ -16500,7 +16500,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16500
16500
|
},
|
|
16501
16501
|
|
|
16502
16502
|
/**
|
|
16503
|
-
* If set, combobox will not filter menuoptions based
|
|
16503
|
+
* If set, combobox will not filter menuoptions based on input.
|
|
16504
16504
|
*/
|
|
16505
16505
|
noFilter: {
|
|
16506
16506
|
type: Boolean,
|
|
@@ -115,7 +115,7 @@ export class AuroCombobox extends AuroElement {
|
|
|
115
115
|
reflect: boolean;
|
|
116
116
|
};
|
|
117
117
|
/**
|
|
118
|
-
* If set, combobox will not filter menuoptions based
|
|
118
|
+
* If set, combobox will not filter menuoptions based on input.
|
|
119
119
|
*/
|
|
120
120
|
noFilter: {
|
|
121
121
|
type: BooleanConstructor;
|
|
@@ -16407,7 +16407,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16407
16407
|
},
|
|
16408
16408
|
|
|
16409
16409
|
/**
|
|
16410
|
-
* If set, combobox will not filter menuoptions based
|
|
16410
|
+
* If set, combobox will not filter menuoptions based on input.
|
|
16411
16411
|
*/
|
|
16412
16412
|
noFilter: {
|
|
16413
16413
|
type: Boolean,
|
|
@@ -16407,7 +16407,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16407
16407
|
},
|
|
16408
16408
|
|
|
16409
16409
|
/**
|
|
16410
|
-
* If set, combobox will not filter menuoptions based
|
|
16410
|
+
* If set, combobox will not filter menuoptions based on input.
|
|
16411
16411
|
*/
|
|
16412
16412
|
noFilter: {
|
|
16413
16413
|
type: Boolean,
|
package/package.json
CHANGED