@ethlete/cdk 3.19.0 → 3.19.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 (58) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/esm2022/lib/components/button/directives/button/button.directive.mjs +10 -25
  3. package/esm2022/lib/components/button/directives/query-button/query-button.directive.mjs +8 -17
  4. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.mjs +7 -11
  5. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.mjs +17 -14
  6. package/esm2022/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.mjs +6 -13
  7. package/esm2022/lib/components/forms/components/error/components/error/error.component.mjs +7 -9
  8. package/esm2022/lib/components/forms/components/radio/directives/radio/radio.directive.mjs +6 -8
  9. package/esm2022/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.mjs +14 -18
  10. package/esm2022/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.mjs +5 -11
  11. package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.mjs +6 -8
  12. package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.mjs +14 -18
  13. package/esm2022/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.mjs +6 -11
  14. package/esm2022/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.mjs +14 -25
  15. package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.mjs +13 -23
  16. package/esm2022/lib/components/forms/components/select/components/combobox/partials/combobox-option/combobox-option.component.mjs +11 -23
  17. package/esm2022/lib/components/forms/components/select/components/select/directives/select/select.directive.mjs +26 -22
  18. package/esm2022/lib/components/forms/components/select/components/select/directives/select-body/select-body.directive.mjs +7 -15
  19. package/esm2022/lib/components/forms/components/select/components/select/directives/select-option/select-option.directive.mjs +13 -14
  20. package/esm2022/lib/components/forms/components/select/directives/select-field/select-field.directive.mjs +3 -4
  21. package/esm2022/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.mjs +6 -8
  22. package/esm2022/lib/components/forms/components/slider/components/slider/slider.component.mjs +18 -41
  23. package/esm2022/lib/components/forms/directives/input/input.directive.mjs +4 -1
  24. package/esm2022/lib/components/forms/directives/writeable-input/writeable-input.directive.mjs +10 -23
  25. package/esm2022/lib/components/forms/services/input-state.service.mjs +21 -4
  26. package/esm2022/lib/components/forms/utils/decorated-form-field.base.mjs +5 -8
  27. package/esm2022/lib/components/forms/utils/decorated-input.base.mjs +26 -23
  28. package/esm2022/lib/components/masonry/components/masonry/masonry.component.mjs +6 -8
  29. package/fesm2022/ethlete-cdk.mjs +207 -342
  30. package/fesm2022/ethlete-cdk.mjs.map +1 -1
  31. package/lib/components/button/directives/button/button.directive.d.ts +4 -1
  32. package/lib/components/button/directives/query-button/query-button.directive.d.ts +4 -1
  33. package/lib/components/forms/components/checkbox/directives/checkbox/checkbox.directive.d.ts +4 -1
  34. package/lib/components/forms/components/checkbox/directives/checkbox-field/checkbox-field.directive.d.ts +11 -6
  35. package/lib/components/forms/components/checkbox/directives/checkbox-group-control/checkbox-group-control.directive.d.ts +6 -4
  36. package/lib/components/forms/components/error/components/error/error.component.d.ts +4 -1
  37. package/lib/components/forms/components/radio/directives/radio/radio.directive.d.ts +4 -1
  38. package/lib/components/forms/components/radio/directives/radio-field/radio-field.directive.d.ts +12 -6
  39. package/lib/components/forms/components/radio/directives/radio-group/radio-group.directive.d.ts +4 -1
  40. package/lib/components/forms/components/segmented-button/directives/segmented-button/segmented-button.directive.d.ts +4 -1
  41. package/lib/components/forms/components/segmented-button/directives/segmented-button-field/segmented-button-field.directive.d.ts +12 -7
  42. package/lib/components/forms/components/segmented-button/directives/segmented-button-group/segmented-button-group.directive.d.ts +4 -1
  43. package/lib/components/forms/components/select/components/combobox/directives/combobox/combobox.directive.d.ts +9 -1
  44. package/lib/components/forms/components/select/components/combobox/partials/combobox-body/combobox-body.component.d.ts +8 -1
  45. package/lib/components/forms/components/select/components/combobox/partials/combobox-option/combobox-option.component.d.ts +8 -1
  46. package/lib/components/forms/components/select/components/select/directives/select/select.directive.d.ts +14 -3
  47. package/lib/components/forms/components/select/components/select/directives/select-body/select-body.directive.d.ts +4 -1
  48. package/lib/components/forms/components/select/components/select/directives/select-option/select-option.directive.d.ts +10 -1
  49. package/lib/components/forms/components/select/directives/select-field/select-field.directive.d.ts +2 -2
  50. package/lib/components/forms/components/slide-toggle/directives/slide-toggle/slide-toggle.directive.d.ts +4 -1
  51. package/lib/components/forms/components/slider/components/slider/slider.component.d.ts +8 -1
  52. package/lib/components/forms/directives/input/input.directive.d.ts +21 -19
  53. package/lib/components/forms/directives/writeable-input/writeable-input.directive.d.ts +4 -1
  54. package/lib/components/forms/services/input-state.service.d.ts +13 -6
  55. package/lib/components/forms/utils/decorated-form-field.base.d.ts +4 -1
  56. package/lib/components/forms/utils/decorated-input.base.d.ts +13 -6
  57. package/lib/components/masonry/components/masonry/masonry.component.d.ts +4 -1
  58. package/package.json +2 -2

There are too many changes on this page to be displayed.


The amount of changes on this page would crash your brower.

You can still verify the content by downloading the package file manually.