@po-ui/ng-components 19.29.0 → 19.30.0

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 (66) hide show
  1. package/fesm2022/po-ui-ng-components.mjs +3715 -2450
  2. package/fesm2022/po-ui-ng-components.mjs.map +1 -1
  3. package/lib/components/components.module.d.ts +3 -2
  4. package/lib/components/index.d.ts +1 -0
  5. package/lib/components/po-field/po-checkbox/po-checkbox-base.component.d.ts +40 -2
  6. package/lib/components/po-field/po-checkbox/po-checkbox.component.d.ts +26 -2
  7. package/lib/components/po-field/po-checkbox/po-checkbox.module.d.ts +3 -1
  8. package/lib/components/po-field/po-checkbox-group/po-checkbox-group-base.component.d.ts +37 -1
  9. package/lib/components/po-field/po-checkbox-group/po-checkbox-group.component.d.ts +16 -0
  10. package/lib/components/po-field/po-combo/po-combo-base.component.d.ts +39 -1
  11. package/lib/components/po-field/po-combo/po-combo.component.d.ts +17 -0
  12. package/lib/components/po-field/po-datepicker/po-datepicker-base.component.d.ts +39 -1
  13. package/lib/components/po-field/po-datepicker/po-datepicker.component.d.ts +18 -0
  14. package/lib/components/po-field/po-datepicker-range/po-datepicker-range-base.component.d.ts +39 -1
  15. package/lib/components/po-field/po-datepicker-range/po-datepicker-range.component.d.ts +18 -0
  16. package/lib/components/po-field/po-decimal/po-decimal.component.d.ts +6 -0
  17. package/lib/components/po-field/po-email/po-email.component.d.ts +3 -2
  18. package/lib/components/po-field/po-field-container/po-field-container-bottom/po-field-container-bottom.component.d.ts +7 -1
  19. package/lib/components/po-field/po-field-container/po-field-container.component.d.ts +23 -3
  20. package/lib/components/po-field/po-field-container/po-field-container.module.d.ts +2 -1
  21. package/lib/components/po-field/po-field.model.d.ts +23 -1
  22. package/lib/components/po-field/po-field.module.d.ts +2 -1
  23. package/lib/components/po-field/po-input/po-input-base.component.d.ts +53 -2
  24. package/lib/components/po-field/po-input/po-input.component.d.ts +3 -2
  25. package/lib/components/po-field/po-input-generic/po-input-generic.d.ts +6 -0
  26. package/lib/components/po-field/po-lookup/po-lookup-base.component.d.ts +39 -1
  27. package/lib/components/po-field/po-lookup/po-lookup.component.d.ts +18 -0
  28. package/lib/components/po-field/po-multiselect/po-multiselect-base.component.d.ts +39 -1
  29. package/lib/components/po-field/po-multiselect/po-multiselect.component.d.ts +18 -0
  30. package/lib/components/po-field/po-number/po-number.component.d.ts +3 -1
  31. package/lib/components/po-field/po-radio-group/po-radio-group-base.component.d.ts +39 -1
  32. package/lib/components/po-field/po-radio-group/po-radio-group.component.d.ts +17 -0
  33. package/lib/components/po-field/po-rich-text/po-rich-text-base.component.d.ts +39 -1
  34. package/lib/components/po-field/po-rich-text/po-rich-text.component.d.ts +16 -0
  35. package/lib/components/po-field/po-select/po-select.component.d.ts +48 -3
  36. package/lib/components/po-field/po-switch/po-switch.component.d.ts +32 -1
  37. package/lib/components/po-field/po-switch/po-switch.module.d.ts +2 -1
  38. package/lib/components/po-field/po-textarea/po-textarea-base.component.d.ts +39 -1
  39. package/lib/components/po-field/po-textarea/po-textarea.component.d.ts +16 -0
  40. package/lib/components/po-field/po-upload/po-upload-base.component.d.ts +39 -1
  41. package/lib/components/po-field/po-upload/po-upload.component.d.ts +15 -0
  42. package/lib/components/po-helper/index.d.ts +3 -0
  43. package/lib/components/po-helper/interfaces/po-helper.interface.d.ts +87 -0
  44. package/lib/components/po-helper/po-helper-base.component.d.ts +112 -0
  45. package/lib/components/po-helper/po-helper.component.d.ts +52 -0
  46. package/lib/components/po-helper/po-helper.module.d.ts +16 -0
  47. package/lib/components/po-label/po-label.component.d.ts +14 -1
  48. package/lib/components/po-label/po-label.module.d.ts +2 -1
  49. package/lib/components/po-popover/po-popover.component.d.ts +5 -3
  50. package/lib/services/po-theme/po-theme.service.d.ts +1 -0
  51. package/lib/utils/util.d.ts +23 -0
  52. package/package.json +4 -4
  53. package/po-ui-ng-components-19.30.0.tgz +0 -0
  54. package/schematics/ng-add/index.js +1 -1
  55. package/schematics/ng-update/v14/index.js +1 -1
  56. package/schematics/ng-update/v15/index.js +1 -1
  57. package/schematics/ng-update/v16/index.js +1 -1
  58. package/schematics/ng-update/v17/index.js +1 -1
  59. package/schematics/ng-update/v18/index.js +2 -2
  60. package/schematics/ng-update/v19/index.js +2 -2
  61. package/schematics/ng-update/v2/index.js +1 -1
  62. package/schematics/ng-update/v3/index.js +1 -1
  63. package/schematics/ng-update/v4/index.js +1 -1
  64. package/schematics/ng-update/v5/index.js +1 -1
  65. package/schematics/ng-update/v6/index.js +1 -1
  66. package/po-ui-ng-components-19.29.0.tgz +0 -0

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.