@aurodesignsystem-dev/auro-formkit 0.0.0-pr740.5 → 0.0.0-pr740.7

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.
@@ -3836,12 +3836,6 @@ class AuroDropdownBib extends i$2 {
3836
3836
  reflect: true
3837
3837
  },
3838
3838
 
3839
- isVisible: {
3840
- type: Boolean,
3841
- reflect: true,
3842
- attribute: 'data-show'
3843
- },
3844
-
3845
3839
  /**
3846
3840
  * If declared, will apply all styles for the common theme.
3847
3841
  */
@@ -16334,9 +16328,14 @@ class AuroCombobox extends AuroElement$1 {
16334
16328
  /**
16335
16329
  * Validate every time we remove focus from the datepicker.
16336
16330
  */
16337
- this.addEventListener('focusout', () => {
16331
+ this.addEventListener('focusout', (event) => {
16338
16332
  if (document.activeElement !== this) {
16339
16333
  this.validate();
16334
+ if (this.dropdown.isPopoverVisible && this.dropdown.isBibFullscreen) {
16335
+ event.preventDefault();
16336
+ event.stopImmediatePropagation();
16337
+ this.focus();
16338
+ }
16340
16339
  }
16341
16340
  });
16342
16341
 
@@ -16512,7 +16511,9 @@ class AuroCombobox extends AuroElement$1 {
16512
16511
  * @returns {void}
16513
16512
  */
16514
16513
  focus() {
16515
- this.input.focus();
16514
+ if (document.activeElement !== this) {
16515
+ this.setInputFocus();
16516
+ }
16516
16517
  }
16517
16518
 
16518
16519
  /**
@@ -3694,12 +3694,6 @@ class AuroDropdownBib extends i$2 {
3694
3694
  reflect: true
3695
3695
  },
3696
3696
 
3697
- isVisible: {
3698
- type: Boolean,
3699
- reflect: true,
3700
- attribute: 'data-show'
3701
- },
3702
-
3703
3697
  /**
3704
3698
  * If declared, will apply all styles for the common theme.
3705
3699
  */
@@ -16192,9 +16186,14 @@ class AuroCombobox extends AuroElement$1 {
16192
16186
  /**
16193
16187
  * Validate every time we remove focus from the datepicker.
16194
16188
  */
16195
- this.addEventListener('focusout', () => {
16189
+ this.addEventListener('focusout', (event) => {
16196
16190
  if (document.activeElement !== this) {
16197
16191
  this.validate();
16192
+ if (this.dropdown.isPopoverVisible && this.dropdown.isBibFullscreen) {
16193
+ event.preventDefault();
16194
+ event.stopImmediatePropagation();
16195
+ this.focus();
16196
+ }
16198
16197
  }
16199
16198
  });
16200
16199
 
@@ -16370,7 +16369,9 @@ class AuroCombobox extends AuroElement$1 {
16370
16369
  * @returns {void}
16371
16370
  */
16372
16371
  focus() {
16373
- this.input.focus();
16372
+ if (document.activeElement !== this) {
16373
+ this.setInputFocus();
16374
+ }
16374
16375
  }
16375
16376
 
16376
16377
  /**
@@ -3625,12 +3625,6 @@ class AuroDropdownBib extends LitElement {
3625
3625
  reflect: true
3626
3626
  },
3627
3627
 
3628
- isVisible: {
3629
- type: Boolean,
3630
- reflect: true,
3631
- attribute: 'data-show'
3632
- },
3633
-
3634
3628
  /**
3635
3629
  * If declared, will apply all styles for the common theme.
3636
3630
  */
@@ -16110,9 +16104,14 @@ class AuroCombobox extends AuroElement {
16110
16104
  /**
16111
16105
  * Validate every time we remove focus from the datepicker.
16112
16106
  */
16113
- this.addEventListener('focusout', () => {
16107
+ this.addEventListener('focusout', (event) => {
16114
16108
  if (document.activeElement !== this) {
16115
16109
  this.validate();
16110
+ if (this.dropdown.isPopoverVisible && this.dropdown.isBibFullscreen) {
16111
+ event.preventDefault();
16112
+ event.stopImmediatePropagation();
16113
+ this.focus();
16114
+ }
16116
16115
  }
16117
16116
  });
16118
16117
 
@@ -16288,7 +16287,9 @@ class AuroCombobox extends AuroElement {
16288
16287
  * @returns {void}
16289
16288
  */
16290
16289
  focus() {
16291
- this.input.focus();
16290
+ if (document.activeElement !== this) {
16291
+ this.setInputFocus();
16292
+ }
16292
16293
  }
16293
16294
 
16294
16295
  /**
@@ -3625,12 +3625,6 @@ class AuroDropdownBib extends LitElement {
3625
3625
  reflect: true
3626
3626
  },
3627
3627
 
3628
- isVisible: {
3629
- type: Boolean,
3630
- reflect: true,
3631
- attribute: 'data-show'
3632
- },
3633
-
3634
3628
  /**
3635
3629
  * If declared, will apply all styles for the common theme.
3636
3630
  */
@@ -16110,9 +16104,14 @@ class AuroCombobox extends AuroElement {
16110
16104
  /**
16111
16105
  * Validate every time we remove focus from the datepicker.
16112
16106
  */
16113
- this.addEventListener('focusout', () => {
16107
+ this.addEventListener('focusout', (event) => {
16114
16108
  if (document.activeElement !== this) {
16115
16109
  this.validate();
16110
+ if (this.dropdown.isPopoverVisible && this.dropdown.isBibFullscreen) {
16111
+ event.preventDefault();
16112
+ event.stopImmediatePropagation();
16113
+ this.focus();
16114
+ }
16116
16115
  }
16117
16116
  });
16118
16117
 
@@ -16288,7 +16287,9 @@ class AuroCombobox extends AuroElement {
16288
16287
  * @returns {void}
16289
16288
  */
16290
16289
  focus() {
16291
- this.input.focus();
16290
+ if (document.activeElement !== this) {
16291
+ this.setInputFocus();
16292
+ }
16292
16293
  }
16293
16294
 
16294
16295
  /**
@@ -5545,12 +5545,6 @@ class AuroDropdownBib extends i$2 {
5545
5545
  reflect: true
5546
5546
  },
5547
5547
 
5548
- isVisible: {
5549
- type: Boolean,
5550
- reflect: true,
5551
- attribute: 'data-show'
5552
- },
5553
-
5554
5548
  /**
5555
5549
  * If declared, will apply all styles for the common theme.
5556
5550
  */
@@ -5545,12 +5545,6 @@ class AuroDropdownBib extends i$2 {
5545
5545
  reflect: true
5546
5546
  },
5547
5547
 
5548
- isVisible: {
5549
- type: Boolean,
5550
- reflect: true,
5551
- attribute: 'data-show'
5552
- },
5553
-
5554
5548
  /**
5555
5549
  * If declared, will apply all styles for the common theme.
5556
5550
  */
@@ -5498,12 +5498,6 @@ class AuroDropdownBib extends LitElement {
5498
5498
  reflect: true
5499
5499
  },
5500
5500
 
5501
- isVisible: {
5502
- type: Boolean,
5503
- reflect: true,
5504
- attribute: 'data-show'
5505
- },
5506
-
5507
5501
  /**
5508
5502
  * If declared, will apply all styles for the common theme.
5509
5503
  */
@@ -5498,12 +5498,6 @@ class AuroDropdownBib extends LitElement {
5498
5498
  reflect: true
5499
5499
  },
5500
5500
 
5501
- isVisible: {
5502
- type: Boolean,
5503
- reflect: true,
5504
- attribute: 'data-show'
5505
- },
5506
-
5507
5501
  /**
5508
5502
  * If declared, will apply all styles for the common theme.
5509
5503
  */
@@ -17129,12 +17129,6 @@ class AuroDropdownBib extends i {
17129
17129
  reflect: true
17130
17130
  },
17131
17131
 
17132
- isVisible: {
17133
- type: Boolean,
17134
- reflect: true,
17135
- attribute: 'data-show'
17136
- },
17137
-
17138
17132
  /**
17139
17133
  * If declared, will apply all styles for the common theme.
17140
17134
  */
@@ -16870,12 +16870,6 @@ class AuroDropdownBib extends i {
16870
16870
  reflect: true
16871
16871
  },
16872
16872
 
16873
- isVisible: {
16874
- type: Boolean,
16875
- reflect: true,
16876
- attribute: 'data-show'
16877
- },
16878
-
16879
16873
  /**
16880
16874
  * If declared, will apply all styles for the common theme.
16881
16875
  */
@@ -16819,12 +16819,6 @@ class AuroDropdownBib extends LitElement {
16819
16819
  reflect: true
16820
16820
  },
16821
16821
 
16822
- isVisible: {
16823
- type: Boolean,
16824
- reflect: true,
16825
- attribute: 'data-show'
16826
- },
16827
-
16828
16822
  /**
16829
16823
  * If declared, will apply all styles for the common theme.
16830
16824
  */
@@ -16819,12 +16819,6 @@ class AuroDropdownBib extends LitElement {
16819
16819
  reflect: true
16820
16820
  },
16821
16821
 
16822
- isVisible: {
16823
- type: Boolean,
16824
- reflect: true,
16825
- attribute: 'data-show'
16826
- },
16827
-
16828
16822
  /**
16829
16823
  * If declared, will apply all styles for the common theme.
16830
16824
  */
@@ -2809,12 +2809,6 @@ class AuroDropdownBib extends i {
2809
2809
  reflect: true
2810
2810
  },
2811
2811
 
2812
- isVisible: {
2813
- type: Boolean,
2814
- reflect: true,
2815
- attribute: 'data-show'
2816
- },
2817
-
2818
2812
  /**
2819
2813
  * If declared, will apply all styles for the common theme.
2820
2814
  */
@@ -2784,12 +2784,6 @@ class AuroDropdownBib extends i {
2784
2784
  reflect: true
2785
2785
  },
2786
2786
 
2787
- isVisible: {
2788
- type: Boolean,
2789
- reflect: true,
2790
- attribute: 'data-show'
2791
- },
2792
-
2793
2787
  /**
2794
2788
  * If declared, will apply all styles for the common theme.
2795
2789
  */
@@ -12,11 +12,6 @@ export class AuroDropdownBib extends LitElement {
12
12
  type: BooleanConstructor;
13
13
  reflect: boolean;
14
14
  };
15
- isVisible: {
16
- type: BooleanConstructor;
17
- reflect: boolean;
18
- attribute: string;
19
- };
20
15
  /**
21
16
  * If declared, will apply all styles for the common theme.
22
17
  */
@@ -2737,12 +2737,6 @@ class AuroDropdownBib extends LitElement {
2737
2737
  reflect: true
2738
2738
  },
2739
2739
 
2740
- isVisible: {
2741
- type: Boolean,
2742
- reflect: true,
2743
- attribute: 'data-show'
2744
- },
2745
-
2746
2740
  /**
2747
2741
  * If declared, will apply all styles for the common theme.
2748
2742
  */
@@ -2737,12 +2737,6 @@ class AuroDropdownBib extends LitElement {
2737
2737
  reflect: true
2738
2738
  },
2739
2739
 
2740
- isVisible: {
2741
- type: Boolean,
2742
- reflect: true,
2743
- attribute: 'data-show'
2744
- },
2745
-
2746
2740
  /**
2747
2741
  * If declared, will apply all styles for the common theme.
2748
2742
  */
@@ -3873,12 +3873,6 @@ class AuroDropdownBib extends i$2 {
3873
3873
  reflect: true
3874
3874
  },
3875
3875
 
3876
- isVisible: {
3877
- type: Boolean,
3878
- reflect: true,
3879
- attribute: 'data-show'
3880
- },
3881
-
3882
3876
  /**
3883
3877
  * If declared, will apply all styles for the common theme.
3884
3878
  */
@@ -3770,12 +3770,6 @@ class AuroDropdownBib extends i$2 {
3770
3770
  reflect: true
3771
3771
  },
3772
3772
 
3773
- isVisible: {
3774
- type: Boolean,
3775
- reflect: true,
3776
- attribute: 'data-show'
3777
- },
3778
-
3779
3773
  /**
3780
3774
  * If declared, will apply all styles for the common theme.
3781
3775
  */
@@ -3724,12 +3724,6 @@ class AuroDropdownBib extends LitElement {
3724
3724
  reflect: true
3725
3725
  },
3726
3726
 
3727
- isVisible: {
3728
- type: Boolean,
3729
- reflect: true,
3730
- attribute: 'data-show'
3731
- },
3732
-
3733
3727
  /**
3734
3728
  * If declared, will apply all styles for the common theme.
3735
3729
  */
@@ -3724,12 +3724,6 @@ class AuroDropdownBib extends LitElement {
3724
3724
  reflect: true
3725
3725
  },
3726
3726
 
3727
- isVisible: {
3728
- type: Boolean,
3729
- reflect: true,
3730
- attribute: 'data-show'
3731
- },
3732
-
3733
3727
  /**
3734
3728
  * If declared, will apply all styles for the common theme.
3735
3729
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurodesignsystem-dev/auro-formkit",
3
- "version": "0.0.0-pr740.5",
3
+ "version": "0.0.0-pr740.7",
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": {