@aurodesignsystem-dev/auro-formkit 0.0.0-pr800.0 → 0.0.0-pr801.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.
Files changed (47) hide show
  1. package/components/bibtemplate/dist/buttonVersion.d.ts +1 -1
  2. package/components/bibtemplate/dist/index.js +71 -21
  3. package/components/bibtemplate/dist/registered.js +71 -21
  4. package/components/checkbox/demo/api.md +2 -1
  5. package/components/checkbox/demo/api.min.js +7 -0
  6. package/components/checkbox/demo/index.min.js +7 -0
  7. package/components/checkbox/dist/index.js +7 -0
  8. package/components/checkbox/dist/registered.js +7 -0
  9. package/components/combobox/demo/api.min.js +219 -52
  10. package/components/combobox/demo/index.min.js +219 -52
  11. package/components/combobox/dist/index.js +219 -52
  12. package/components/combobox/dist/registered.js +219 -52
  13. package/components/counter/demo/api.md +1 -1
  14. package/components/counter/demo/api.min.js +168 -62
  15. package/components/counter/demo/index.min.js +168 -62
  16. package/components/counter/dist/auro-counter-group.d.ts +10 -10
  17. package/components/counter/dist/index.js +168 -62
  18. package/components/counter/dist/registered.js +168 -62
  19. package/components/datepicker/demo/api.md +1 -1
  20. package/components/datepicker/demo/api.min.js +367 -104
  21. package/components/datepicker/demo/index.min.js +367 -104
  22. package/components/datepicker/dist/auro-datepicker.d.ts +10 -10
  23. package/components/datepicker/dist/index.js +367 -104
  24. package/components/datepicker/dist/registered.js +367 -104
  25. package/components/dropdown/demo/api.md +7 -8
  26. package/components/dropdown/demo/api.min.js +7 -1
  27. package/components/dropdown/demo/index.min.js +7 -1
  28. package/components/dropdown/dist/index.js +7 -1
  29. package/components/dropdown/dist/registered.js +7 -1
  30. package/components/input/demo/api.min.js +140 -29
  31. package/components/input/demo/index.min.js +140 -29
  32. package/components/input/dist/auro-input.d.ts +24 -0
  33. package/components/input/dist/index.js +140 -29
  34. package/components/input/dist/registered.js +140 -29
  35. package/components/radio/demo/api.md +32 -1
  36. package/components/radio/demo/api.min.js +2 -2
  37. package/components/radio/demo/index.min.js +2 -2
  38. package/components/radio/dist/index.js +2 -2
  39. package/components/radio/dist/registered.js +2 -2
  40. package/components/select/demo/api.md +48 -71
  41. package/components/select/demo/api.min.js +127 -50
  42. package/components/select/demo/index.md +1057 -137
  43. package/components/select/demo/index.min.js +127 -50
  44. package/components/select/dist/auro-select.d.ts +22 -14
  45. package/components/select/dist/index.js +127 -50
  46. package/components/select/dist/registered.js +127 -50
  47. package/package.json +1 -1
@@ -48,7 +48,7 @@
48
48
  |-----------------------------|--------------------------------------|--------------------------------------------------|
49
49
  | `auroDropdown-idAdded` | `Object<key : 'id', value: string>` | |
50
50
  | `auroDropdown-toggled` | | Notifies that the visibility of the dropdown bib has changed. |
51
- | `auroDropdown-triggerClick` | | Notifies that the trigger has been clicked. |
51
+ | `auroDropdown-triggerClick` | `CustomEvent<any>` | Notifies that the trigger has been clicked. |
52
52
 
53
53
  ## Slots
54
54
 
@@ -60,13 +60,12 @@
60
60
 
61
61
  ## CSS Shadow Parts
62
62
 
63
- | Part | Description |
64
- |------------|--------------------------------------------------|
65
- | [chevron](#chevron) | The collapsed/expanded state icon container. |
66
- | [helpText](#helpText) | The helpText content container. |
67
- | [popover](#popover) | The bib content container. |
68
- | [size](#size) | The size of the dropdown bib. (height, width, maxHeight, maxWidth only) |
69
- | [trigger](#trigger) | The trigger content container. |
63
+ | Part | Description |
64
+ |------------|----------------------------------------------|
65
+ | [chevron](#chevron) | The collapsed/expanded state icon container. |
66
+ | [helpText](#helpText) | The helpText content container. |
67
+ | [popover](#popover) | The bib content container. |
68
+ | [trigger](#trigger) | The trigger content container. |
70
69
  <!-- AURO-GENERATED-CONTENT:END -->
71
70
 
72
71
  ## API Examples
@@ -3541,7 +3541,6 @@ class AuroElement extends i {
3541
3541
  * @slot trigger - Defines the content of the trigger.
3542
3542
  * @csspart trigger - The trigger content container.
3543
3543
  * @csspart chevron - The collapsed/expanded state icon container.
3544
- * @csspart size - The size of the dropdown bib. (height, width, maxHeight, maxWidth only)
3545
3544
  * @csspart helpText - The helpText content container.
3546
3545
  * @event auroDropdown-triggerClick - Notifies that the trigger has been clicked.
3547
3546
  * @event auroDropdown-toggled - Notifies that the visibility of the dropdown bib has changed.
@@ -4039,6 +4038,13 @@ class AuroDropdown extends AuroElement {
4039
4038
 
4040
4039
  // Add the tag name as an attribute if it is different than the component name
4041
4040
  this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
4041
+
4042
+ this.trigger.addEventListener('click', () => {
4043
+ this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
4044
+ bubbles: true,
4045
+ composed: true
4046
+ }));
4047
+ });
4042
4048
  }
4043
4049
 
4044
4050
  /**
@@ -3516,7 +3516,6 @@ class AuroElement extends i {
3516
3516
  * @slot trigger - Defines the content of the trigger.
3517
3517
  * @csspart trigger - The trigger content container.
3518
3518
  * @csspart chevron - The collapsed/expanded state icon container.
3519
- * @csspart size - The size of the dropdown bib. (height, width, maxHeight, maxWidth only)
3520
3519
  * @csspart helpText - The helpText content container.
3521
3520
  * @event auroDropdown-triggerClick - Notifies that the trigger has been clicked.
3522
3521
  * @event auroDropdown-toggled - Notifies that the visibility of the dropdown bib has changed.
@@ -4014,6 +4013,13 @@ class AuroDropdown extends AuroElement {
4014
4013
 
4015
4014
  // Add the tag name as an attribute if it is different than the component name
4016
4015
  this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
4016
+
4017
+ this.trigger.addEventListener('click', () => {
4018
+ this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
4019
+ bubbles: true,
4020
+ composed: true
4021
+ }));
4022
+ });
4017
4023
  }
4018
4024
 
4019
4025
  /**
@@ -3469,7 +3469,6 @@ class AuroElement extends LitElement {
3469
3469
  * @slot trigger - Defines the content of the trigger.
3470
3470
  * @csspart trigger - The trigger content container.
3471
3471
  * @csspart chevron - The collapsed/expanded state icon container.
3472
- * @csspart size - The size of the dropdown bib. (height, width, maxHeight, maxWidth only)
3473
3472
  * @csspart helpText - The helpText content container.
3474
3473
  * @event auroDropdown-triggerClick - Notifies that the trigger has been clicked.
3475
3474
  * @event auroDropdown-toggled - Notifies that the visibility of the dropdown bib has changed.
@@ -3967,6 +3966,13 @@ class AuroDropdown extends AuroElement {
3967
3966
 
3968
3967
  // Add the tag name as an attribute if it is different than the component name
3969
3968
  this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
3969
+
3970
+ this.trigger.addEventListener('click', () => {
3971
+ this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
3972
+ bubbles: true,
3973
+ composed: true
3974
+ }));
3975
+ });
3970
3976
  }
3971
3977
 
3972
3978
  /**
@@ -3469,7 +3469,6 @@ class AuroElement extends LitElement {
3469
3469
  * @slot trigger - Defines the content of the trigger.
3470
3470
  * @csspart trigger - The trigger content container.
3471
3471
  * @csspart chevron - The collapsed/expanded state icon container.
3472
- * @csspart size - The size of the dropdown bib. (height, width, maxHeight, maxWidth only)
3473
3472
  * @csspart helpText - The helpText content container.
3474
3473
  * @event auroDropdown-triggerClick - Notifies that the trigger has been clicked.
3475
3474
  * @event auroDropdown-toggled - Notifies that the visibility of the dropdown bib has changed.
@@ -3967,6 +3966,13 @@ class AuroDropdown extends AuroElement {
3967
3966
 
3968
3967
  // Add the tag name as an attribute if it is different than the component name
3969
3968
  this.runtimeUtils.handleComponentTagRename(this, 'auro-dropdown');
3969
+
3970
+ this.trigger.addEventListener('click', () => {
3971
+ this.dispatchEvent(new CustomEvent('auroDropdown-triggerClick', {
3972
+ bubbles: true,
3973
+ composed: true
3974
+ }));
3975
+ });
3970
3976
  }
3971
3977
 
3972
3978
  /**