@ethlete/cdk 3.19.0 → 3.19.2

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

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.