@aurodesignsystem-dev/auro-formkit 0.0.0-pr624.3 → 0.0.0-pr624.4
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 +1 -0
- package/components/combobox/demo/api.min.js +11 -1
- package/components/combobox/demo/index.min.js +11 -1
- package/components/combobox/dist/auro-combobox.d.ts +8 -0
- package/components/combobox/dist/index.js +11 -1
- package/components/combobox/dist/registered.js +11 -1
- package/package.json +1 -1
|
@@ -16,6 +16,7 @@
|
|
|
16
16
|
| [inputmode](#inputmode) | `inputmode` | `string` | | Exposes inputmode attribute for input. |
|
|
17
17
|
| [largeFullscreenHeadline](#largeFullscreenHeadline) | `largeFullscreenHeadline` | `boolean` | | If declared, make bib.fullscreen.headline in HeadingDisplay.<br />Otherwise, Heading 600 |
|
|
18
18
|
| [layout](#layout) | | `string` | | |
|
|
19
|
+
| [matchWidth](#matchWidth) | `matchWidth` | `boolean` | true | If declared, the popover and trigger will be set to the same width. |
|
|
19
20
|
| [noFilter](#noFilter) | `noFilter` | `boolean` | | If set, combobox will not filter menuoptions based in input. |
|
|
20
21
|
| [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`. |
|
|
21
22
|
| [noValidate](#noValidate) | `noValidate` | `boolean` | | If set, disables auto-validation on blur. |
|
|
@@ -13685,6 +13685,8 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
13685
13685
|
constructor() {
|
|
13686
13686
|
super();
|
|
13687
13687
|
|
|
13688
|
+
this.matchWidth = true;
|
|
13689
|
+
|
|
13688
13690
|
this.privateDefaults();
|
|
13689
13691
|
}
|
|
13690
13692
|
|
|
@@ -13818,6 +13820,14 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
13818
13820
|
reflect: true
|
|
13819
13821
|
},
|
|
13820
13822
|
|
|
13823
|
+
/**
|
|
13824
|
+
* If declared, the popover and trigger will be set to the same width.
|
|
13825
|
+
*/
|
|
13826
|
+
matchWidth: {
|
|
13827
|
+
type: Boolean,
|
|
13828
|
+
reflect: true
|
|
13829
|
+
},
|
|
13830
|
+
|
|
13821
13831
|
/**
|
|
13822
13832
|
* If set, combobox will not filter menuoptions based in input.
|
|
13823
13833
|
*/
|
|
@@ -14705,7 +14715,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
14705
14715
|
fluid
|
|
14706
14716
|
for="dropdownMenu"
|
|
14707
14717
|
layout="${this.layout}"
|
|
14708
|
-
matchWidth
|
|
14718
|
+
matchWidth="${o(this.matchWidth)}"
|
|
14709
14719
|
nocheckmark
|
|
14710
14720
|
rounded
|
|
14711
14721
|
shape="${this.shape}"
|
|
@@ -13543,6 +13543,8 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
13543
13543
|
constructor() {
|
|
13544
13544
|
super();
|
|
13545
13545
|
|
|
13546
|
+
this.matchWidth = true;
|
|
13547
|
+
|
|
13546
13548
|
this.privateDefaults();
|
|
13547
13549
|
}
|
|
13548
13550
|
|
|
@@ -13676,6 +13678,14 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
13676
13678
|
reflect: true
|
|
13677
13679
|
},
|
|
13678
13680
|
|
|
13681
|
+
/**
|
|
13682
|
+
* If declared, the popover and trigger will be set to the same width.
|
|
13683
|
+
*/
|
|
13684
|
+
matchWidth: {
|
|
13685
|
+
type: Boolean,
|
|
13686
|
+
reflect: true
|
|
13687
|
+
},
|
|
13688
|
+
|
|
13679
13689
|
/**
|
|
13680
13690
|
* If set, combobox will not filter menuoptions based in input.
|
|
13681
13691
|
*/
|
|
@@ -14563,7 +14573,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
14563
14573
|
fluid
|
|
14564
14574
|
for="dropdownMenu"
|
|
14565
14575
|
layout="${this.layout}"
|
|
14566
|
-
matchWidth
|
|
14576
|
+
matchWidth="${o(this.matchWidth)}"
|
|
14567
14577
|
nocheckmark
|
|
14568
14578
|
rounded
|
|
14569
14579
|
shape="${this.shape}"
|
|
@@ -68,6 +68,13 @@ export class AuroCombobox extends AuroElement {
|
|
|
68
68
|
attribute: boolean;
|
|
69
69
|
reflect: boolean;
|
|
70
70
|
};
|
|
71
|
+
/**
|
|
72
|
+
* If declared, the popover and trigger will be set to the same width.
|
|
73
|
+
*/
|
|
74
|
+
matchWidth: {
|
|
75
|
+
type: BooleanConstructor;
|
|
76
|
+
reflect: boolean;
|
|
77
|
+
};
|
|
71
78
|
/**
|
|
72
79
|
* If set, combobox will not filter menuoptions based in input.
|
|
73
80
|
*/
|
|
@@ -222,6 +229,7 @@ export class AuroCombobox extends AuroElement {
|
|
|
222
229
|
*
|
|
223
230
|
*/
|
|
224
231
|
static register(name?: string): void;
|
|
232
|
+
matchWidth: boolean;
|
|
225
233
|
/**
|
|
226
234
|
* @private
|
|
227
235
|
* @returns {void} Internal defaults.
|
|
@@ -13461,6 +13461,8 @@ class AuroCombobox extends AuroElement {
|
|
|
13461
13461
|
constructor() {
|
|
13462
13462
|
super();
|
|
13463
13463
|
|
|
13464
|
+
this.matchWidth = true;
|
|
13465
|
+
|
|
13464
13466
|
this.privateDefaults();
|
|
13465
13467
|
}
|
|
13466
13468
|
|
|
@@ -13594,6 +13596,14 @@ class AuroCombobox extends AuroElement {
|
|
|
13594
13596
|
reflect: true
|
|
13595
13597
|
},
|
|
13596
13598
|
|
|
13599
|
+
/**
|
|
13600
|
+
* If declared, the popover and trigger will be set to the same width.
|
|
13601
|
+
*/
|
|
13602
|
+
matchWidth: {
|
|
13603
|
+
type: Boolean,
|
|
13604
|
+
reflect: true
|
|
13605
|
+
},
|
|
13606
|
+
|
|
13597
13607
|
/**
|
|
13598
13608
|
* If set, combobox will not filter menuoptions based in input.
|
|
13599
13609
|
*/
|
|
@@ -14481,7 +14491,7 @@ class AuroCombobox extends AuroElement {
|
|
|
14481
14491
|
fluid
|
|
14482
14492
|
for="dropdownMenu"
|
|
14483
14493
|
layout="${this.layout}"
|
|
14484
|
-
matchWidth
|
|
14494
|
+
matchWidth="${ifDefined(this.matchWidth)}"
|
|
14485
14495
|
nocheckmark
|
|
14486
14496
|
rounded
|
|
14487
14497
|
shape="${this.shape}"
|
|
@@ -13461,6 +13461,8 @@ class AuroCombobox extends AuroElement {
|
|
|
13461
13461
|
constructor() {
|
|
13462
13462
|
super();
|
|
13463
13463
|
|
|
13464
|
+
this.matchWidth = true;
|
|
13465
|
+
|
|
13464
13466
|
this.privateDefaults();
|
|
13465
13467
|
}
|
|
13466
13468
|
|
|
@@ -13594,6 +13596,14 @@ class AuroCombobox extends AuroElement {
|
|
|
13594
13596
|
reflect: true
|
|
13595
13597
|
},
|
|
13596
13598
|
|
|
13599
|
+
/**
|
|
13600
|
+
* If declared, the popover and trigger will be set to the same width.
|
|
13601
|
+
*/
|
|
13602
|
+
matchWidth: {
|
|
13603
|
+
type: Boolean,
|
|
13604
|
+
reflect: true
|
|
13605
|
+
},
|
|
13606
|
+
|
|
13597
13607
|
/**
|
|
13598
13608
|
* If set, combobox will not filter menuoptions based in input.
|
|
13599
13609
|
*/
|
|
@@ -14481,7 +14491,7 @@ class AuroCombobox extends AuroElement {
|
|
|
14481
14491
|
fluid
|
|
14482
14492
|
for="dropdownMenu"
|
|
14483
14493
|
layout="${this.layout}"
|
|
14484
|
-
matchWidth
|
|
14494
|
+
matchWidth="${ifDefined(this.matchWidth)}"
|
|
14485
14495
|
nocheckmark
|
|
14486
14496
|
rounded
|
|
14487
14497
|
shape="${this.shape}"
|
package/package.json
CHANGED