@aurodesignsystem-dev/auro-formkit 0.0.0-pr1060.0 → 0.0.0-pr1060.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.min.js +5 -0
- package/components/combobox/demo/index.min.js +5 -0
- package/components/menu/demo/api.min.js +5 -0
- package/components/menu/demo/index.min.js +5 -0
- package/components/menu/dist/index.js +5 -0
- package/components/menu/dist/registered.js +5 -0
- package/components/select/demo/api.min.js +5 -0
- package/components/select/demo/index.min.js +5 -0
- package/package.json +1 -1
|
@@ -17805,6 +17805,11 @@ class AuroMenu extends AuroElement$1 {
|
|
|
17805
17805
|
|
|
17806
17806
|
// Process all other UI updates
|
|
17807
17807
|
this.updateItemsState(changedProperties);
|
|
17808
|
+
|
|
17809
|
+
if (changedProperties.has('optionSelected')) {
|
|
17810
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
17811
|
+
this.notifySelectionChange();
|
|
17812
|
+
}
|
|
17808
17813
|
}
|
|
17809
17814
|
|
|
17810
17815
|
/**
|
|
@@ -17653,6 +17653,11 @@ class AuroMenu extends AuroElement$1 {
|
|
|
17653
17653
|
|
|
17654
17654
|
// Process all other UI updates
|
|
17655
17655
|
this.updateItemsState(changedProperties);
|
|
17656
|
+
|
|
17657
|
+
if (changedProperties.has('optionSelected')) {
|
|
17658
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
17659
|
+
this.notifySelectionChange();
|
|
17660
|
+
}
|
|
17656
17661
|
}
|
|
17657
17662
|
|
|
17658
17663
|
/**
|
|
@@ -592,6 +592,11 @@ class AuroMenu extends AuroElement$1 {
|
|
|
592
592
|
|
|
593
593
|
// Process all other UI updates
|
|
594
594
|
this.updateItemsState(changedProperties);
|
|
595
|
+
|
|
596
|
+
if (changedProperties.has('optionSelected')) {
|
|
597
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
598
|
+
this.notifySelectionChange();
|
|
599
|
+
}
|
|
595
600
|
}
|
|
596
601
|
|
|
597
602
|
/**
|
|
@@ -552,6 +552,11 @@ class AuroMenu extends AuroElement$1 {
|
|
|
552
552
|
|
|
553
553
|
// Process all other UI updates
|
|
554
554
|
this.updateItemsState(changedProperties);
|
|
555
|
+
|
|
556
|
+
if (changedProperties.has('optionSelected')) {
|
|
557
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
558
|
+
this.notifySelectionChange();
|
|
559
|
+
}
|
|
555
560
|
}
|
|
556
561
|
|
|
557
562
|
/**
|
|
@@ -559,6 +559,11 @@ class AuroMenu extends AuroElement$1 {
|
|
|
559
559
|
|
|
560
560
|
// Process all other UI updates
|
|
561
561
|
this.updateItemsState(changedProperties);
|
|
562
|
+
|
|
563
|
+
if (changedProperties.has('optionSelected')) {
|
|
564
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
565
|
+
this.notifySelectionChange();
|
|
566
|
+
}
|
|
562
567
|
}
|
|
563
568
|
|
|
564
569
|
/**
|
|
@@ -518,6 +518,11 @@ class AuroMenu extends AuroElement$1 {
|
|
|
518
518
|
|
|
519
519
|
// Process all other UI updates
|
|
520
520
|
this.updateItemsState(changedProperties);
|
|
521
|
+
|
|
522
|
+
if (changedProperties.has('optionSelected')) {
|
|
523
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
524
|
+
this.notifySelectionChange();
|
|
525
|
+
}
|
|
521
526
|
}
|
|
522
527
|
|
|
523
528
|
/**
|
|
@@ -9406,6 +9406,11 @@ class AuroMenu extends AuroElement$4 {
|
|
|
9406
9406
|
|
|
9407
9407
|
// Process all other UI updates
|
|
9408
9408
|
this.updateItemsState(changedProperties);
|
|
9409
|
+
|
|
9410
|
+
if (changedProperties.has('optionSelected')) {
|
|
9411
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
9412
|
+
this.notifySelectionChange();
|
|
9413
|
+
}
|
|
9409
9414
|
}
|
|
9410
9415
|
|
|
9411
9416
|
/**
|
|
@@ -9314,6 +9314,11 @@ class AuroMenu extends AuroElement$4 {
|
|
|
9314
9314
|
|
|
9315
9315
|
// Process all other UI updates
|
|
9316
9316
|
this.updateItemsState(changedProperties);
|
|
9317
|
+
|
|
9318
|
+
if (changedProperties.has('optionSelected')) {
|
|
9319
|
+
console.warn('updated: optionSelected', this.optionSelected);
|
|
9320
|
+
this.notifySelectionChange();
|
|
9321
|
+
}
|
|
9317
9322
|
}
|
|
9318
9323
|
|
|
9319
9324
|
/**
|
package/package.json
CHANGED