@aurodesignsystem-dev/auro-formkit 0.0.0-pr1008.0 → 0.0.0-pr1008.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.
|
@@ -16589,6 +16589,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16589
16589
|
* @returns {void}
|
|
16590
16590
|
*/
|
|
16591
16591
|
showBib() {
|
|
16592
|
+
console.warn('showBib called... ', this.input.value, this.dropdown.isPopoverVisible, this.availableOptions);
|
|
16592
16593
|
if (!this.input.value) {
|
|
16593
16594
|
this.dropdown.hide();
|
|
16594
16595
|
return;
|
|
@@ -16597,8 +16598,10 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16597
16598
|
if (!this.dropdown.isPopoverVisible && this.input.value && this.input.value.length > 0) {
|
|
16598
16599
|
if (this.menu.getAttribute('loading') || (this.availableOptions && this.availableOptions.length > 0) || this.noMatchOption !== undefined) { // eslint-disable-line no-extra-parens
|
|
16599
16600
|
if (this.menu.hasAttribute('loading') && !this.menu.hasLoadingPlaceholder) {
|
|
16601
|
+
console.info('is loading...');
|
|
16600
16602
|
this.isHiddenWhileLoading = true;
|
|
16601
16603
|
} else {
|
|
16604
|
+
console.info('execute dropdown.show()');
|
|
16602
16605
|
this.dropdown.show();
|
|
16603
16606
|
}
|
|
16604
16607
|
}
|
|
@@ -16788,6 +16791,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16788
16791
|
console.warn('keyup event fired... ', evt.key, this.dropdown.isPopoverVisible);
|
|
16789
16792
|
if (evt.key.length === 1 || evt.key === 'Backspace' || evt.key === 'Delete') {
|
|
16790
16793
|
if (!this.dropdown.isPopoverVisible) {
|
|
16794
|
+
console.warn('should show the bib now... ');
|
|
16791
16795
|
this.showBib();
|
|
16792
16796
|
}
|
|
16793
16797
|
}
|
|
@@ -16447,6 +16447,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16447
16447
|
* @returns {void}
|
|
16448
16448
|
*/
|
|
16449
16449
|
showBib() {
|
|
16450
|
+
console.warn('showBib called... ', this.input.value, this.dropdown.isPopoverVisible, this.availableOptions);
|
|
16450
16451
|
if (!this.input.value) {
|
|
16451
16452
|
this.dropdown.hide();
|
|
16452
16453
|
return;
|
|
@@ -16455,8 +16456,10 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16455
16456
|
if (!this.dropdown.isPopoverVisible && this.input.value && this.input.value.length > 0) {
|
|
16456
16457
|
if (this.menu.getAttribute('loading') || (this.availableOptions && this.availableOptions.length > 0) || this.noMatchOption !== undefined) { // eslint-disable-line no-extra-parens
|
|
16457
16458
|
if (this.menu.hasAttribute('loading') && !this.menu.hasLoadingPlaceholder) {
|
|
16459
|
+
console.info('is loading...');
|
|
16458
16460
|
this.isHiddenWhileLoading = true;
|
|
16459
16461
|
} else {
|
|
16462
|
+
console.info('execute dropdown.show()');
|
|
16460
16463
|
this.dropdown.show();
|
|
16461
16464
|
}
|
|
16462
16465
|
}
|
|
@@ -16646,6 +16649,7 @@ class AuroCombobox extends AuroElement$1 {
|
|
|
16646
16649
|
console.warn('keyup event fired... ', evt.key, this.dropdown.isPopoverVisible);
|
|
16647
16650
|
if (evt.key.length === 1 || evt.key === 'Backspace' || evt.key === 'Delete') {
|
|
16648
16651
|
if (!this.dropdown.isPopoverVisible) {
|
|
16652
|
+
console.warn('should show the bib now... ');
|
|
16649
16653
|
this.showBib();
|
|
16650
16654
|
}
|
|
16651
16655
|
}
|
|
@@ -16365,6 +16365,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16365
16365
|
* @returns {void}
|
|
16366
16366
|
*/
|
|
16367
16367
|
showBib() {
|
|
16368
|
+
console.warn('showBib called... ', this.input.value, this.dropdown.isPopoverVisible, this.availableOptions);
|
|
16368
16369
|
if (!this.input.value) {
|
|
16369
16370
|
this.dropdown.hide();
|
|
16370
16371
|
return;
|
|
@@ -16373,8 +16374,10 @@ class AuroCombobox extends AuroElement {
|
|
|
16373
16374
|
if (!this.dropdown.isPopoverVisible && this.input.value && this.input.value.length > 0) {
|
|
16374
16375
|
if (this.menu.getAttribute('loading') || (this.availableOptions && this.availableOptions.length > 0) || this.noMatchOption !== undefined) { // eslint-disable-line no-extra-parens
|
|
16375
16376
|
if (this.menu.hasAttribute('loading') && !this.menu.hasLoadingPlaceholder) {
|
|
16377
|
+
console.info('is loading...');
|
|
16376
16378
|
this.isHiddenWhileLoading = true;
|
|
16377
16379
|
} else {
|
|
16380
|
+
console.info('execute dropdown.show()');
|
|
16378
16381
|
this.dropdown.show();
|
|
16379
16382
|
}
|
|
16380
16383
|
}
|
|
@@ -16564,6 +16567,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16564
16567
|
console.warn('keyup event fired... ', evt.key, this.dropdown.isPopoverVisible);
|
|
16565
16568
|
if (evt.key.length === 1 || evt.key === 'Backspace' || evt.key === 'Delete') {
|
|
16566
16569
|
if (!this.dropdown.isPopoverVisible) {
|
|
16570
|
+
console.warn('should show the bib now... ');
|
|
16567
16571
|
this.showBib();
|
|
16568
16572
|
}
|
|
16569
16573
|
}
|
|
@@ -16365,6 +16365,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16365
16365
|
* @returns {void}
|
|
16366
16366
|
*/
|
|
16367
16367
|
showBib() {
|
|
16368
|
+
console.warn('showBib called... ', this.input.value, this.dropdown.isPopoverVisible, this.availableOptions);
|
|
16368
16369
|
if (!this.input.value) {
|
|
16369
16370
|
this.dropdown.hide();
|
|
16370
16371
|
return;
|
|
@@ -16373,8 +16374,10 @@ class AuroCombobox extends AuroElement {
|
|
|
16373
16374
|
if (!this.dropdown.isPopoverVisible && this.input.value && this.input.value.length > 0) {
|
|
16374
16375
|
if (this.menu.getAttribute('loading') || (this.availableOptions && this.availableOptions.length > 0) || this.noMatchOption !== undefined) { // eslint-disable-line no-extra-parens
|
|
16375
16376
|
if (this.menu.hasAttribute('loading') && !this.menu.hasLoadingPlaceholder) {
|
|
16377
|
+
console.info('is loading...');
|
|
16376
16378
|
this.isHiddenWhileLoading = true;
|
|
16377
16379
|
} else {
|
|
16380
|
+
console.info('execute dropdown.show()');
|
|
16378
16381
|
this.dropdown.show();
|
|
16379
16382
|
}
|
|
16380
16383
|
}
|
|
@@ -16564,6 +16567,7 @@ class AuroCombobox extends AuroElement {
|
|
|
16564
16567
|
console.warn('keyup event fired... ', evt.key, this.dropdown.isPopoverVisible);
|
|
16565
16568
|
if (evt.key.length === 1 || evt.key === 'Backspace' || evt.key === 'Delete') {
|
|
16566
16569
|
if (!this.dropdown.isPopoverVisible) {
|
|
16570
|
+
console.warn('should show the bib now... ');
|
|
16567
16571
|
this.showBib();
|
|
16568
16572
|
}
|
|
16569
16573
|
}
|
package/package.json
CHANGED