@aurodesignsystem-dev/auro-formkit 0.0.0-pr624.71 → 0.0.0-pr624.73
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 +7 -0
- package/components/combobox/demo/index.min.js +7 -0
- package/components/combobox/dist/index.js +7 -0
- package/components/combobox/dist/registered.js +7 -0
- package/components/counter/demo/api.min.js +7 -0
- package/components/counter/demo/index.min.js +7 -0
- package/components/counter/dist/index.js +7 -0
- package/components/counter/dist/registered.js +7 -0
- package/components/datepicker/demo/api.min.js +7 -0
- package/components/datepicker/demo/index.min.js +7 -0
- package/components/datepicker/dist/index.js +7 -0
- package/components/datepicker/dist/registered.js +7 -0
- package/components/dropdown/demo/api.md +1 -1
- package/components/dropdown/demo/api.min.js +7 -0
- package/components/dropdown/demo/index.min.js +7 -0
- package/components/dropdown/dist/index.js +7 -0
- package/components/dropdown/dist/registered.js +7 -0
- package/components/select/demo/api.md +44 -64
- package/components/select/demo/api.min.js +7 -0
- package/components/select/demo/index.md +1057 -137
- package/components/select/demo/index.min.js +7 -0
- package/components/select/dist/index.js +7 -0
- package/components/select/dist/registered.js +7 -0
- package/package.json +1 -1
|
@@ -5010,6 +5010,13 @@ class AuroDropdown extends AuroElement$3 {
|
|
|
5010
5010
|
|
|
5011
5011
|
// Add the tag name as an attribute if it is different than the component name
|
|
5012
5012
|
this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
|
|
5013
|
+
|
|
5014
|
+
this.trigger.addEventListener('click', () => {
|
|
5015
|
+
this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
|
|
5016
|
+
bubbles: true,
|
|
5017
|
+
composed: true
|
|
5018
|
+
}));
|
|
5019
|
+
});
|
|
5013
5020
|
}
|
|
5014
5021
|
|
|
5015
5022
|
/**
|
|
@@ -4964,6 +4964,13 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4964
4964
|
|
|
4965
4965
|
// Add the tag name as an attribute if it is different than the component name
|
|
4966
4966
|
this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
|
|
4967
|
+
|
|
4968
|
+
this.trigger.addEventListener('click', () => {
|
|
4969
|
+
this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
|
|
4970
|
+
bubbles: true,
|
|
4971
|
+
composed: true
|
|
4972
|
+
}));
|
|
4973
|
+
});
|
|
4967
4974
|
}
|
|
4968
4975
|
|
|
4969
4976
|
/**
|
|
@@ -4964,6 +4964,13 @@ class AuroDropdown extends AuroElement$2 {
|
|
|
4964
4964
|
|
|
4965
4965
|
// Add the tag name as an attribute if it is different than the component name
|
|
4966
4966
|
this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
|
|
4967
|
+
|
|
4968
|
+
this.trigger.addEventListener('click', () => {
|
|
4969
|
+
this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
|
|
4970
|
+
bubbles: true,
|
|
4971
|
+
composed: true
|
|
4972
|
+
}));
|
|
4973
|
+
});
|
|
4967
4974
|
}
|
|
4968
4975
|
|
|
4969
4976
|
/**
|
package/package.json
CHANGED