@skyux/forms 10.0.0-alpha.0 → 10.0.0-alpha.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/documentation.json +4278 -3104
  2. package/esm2022/index.mjs +5 -1
  3. package/esm2022/lib/modules/character-counter/character-counter-indicator.component.mjs +7 -6
  4. package/esm2022/lib/modules/character-counter/character-counter-screen-reader.pipe.mjs +46 -0
  5. package/esm2022/lib/modules/character-counter/character-counter.directive.mjs +3 -3
  6. package/esm2022/lib/modules/character-counter/character-counter.module.mjs +8 -5
  7. package/esm2022/lib/modules/checkbox/checkbox-label.component.mjs +3 -3
  8. package/esm2022/lib/modules/checkbox/checkbox.component.mjs +30 -19
  9. package/esm2022/lib/modules/checkbox/checkbox.module.mjs +36 -7
  10. package/esm2022/lib/modules/file-attachment/file-attachment-label.component.mjs +3 -3
  11. package/esm2022/lib/modules/file-attachment/file-attachment.component.mjs +6 -7
  12. package/esm2022/lib/modules/file-attachment/file-attachment.service.mjs +5 -6
  13. package/esm2022/lib/modules/file-attachment/file-attachments.module.mjs +4 -4
  14. package/esm2022/lib/modules/file-attachment/file-drop.component.mjs +6 -7
  15. package/esm2022/lib/modules/file-attachment/file-item.component.mjs +4 -4
  16. package/esm2022/lib/modules/file-attachment/file-item.service.mjs +3 -3
  17. package/esm2022/lib/modules/file-attachment/file-size.pipe.mjs +3 -3
  18. package/esm2022/lib/modules/file-attachment/types/file-drop-change.mjs +1 -1
  19. package/esm2022/lib/modules/form-error/form-error.component.mjs +30 -14
  20. package/esm2022/lib/modules/form-error/form-error.module.mjs +16 -0
  21. package/esm2022/lib/modules/form-error/form-errors-enabled-token.mjs +6 -0
  22. package/esm2022/lib/modules/form-error/form-errors.component.mjs +5 -5
  23. package/esm2022/lib/modules/form-error/form-errors.module.mjs +7 -6
  24. package/esm2022/lib/modules/input-box/input-box-adapter.service.mjs +3 -3
  25. package/esm2022/lib/modules/input-box/input-box-control.directive.mjs +3 -3
  26. package/esm2022/lib/modules/input-box/input-box-help-inline.component.mjs +3 -3
  27. package/esm2022/lib/modules/input-box/input-box-host.service.mjs +3 -3
  28. package/esm2022/lib/modules/input-box/input-box.component.mjs +21 -6
  29. package/esm2022/lib/modules/input-box/input-box.module.mjs +26 -12
  30. package/esm2022/lib/modules/radio/radio-group-id.service.mjs +3 -3
  31. package/esm2022/lib/modules/radio/radio-group.component.mjs +74 -10
  32. package/esm2022/lib/modules/radio/radio-label.component.mjs +3 -3
  33. package/esm2022/lib/modules/radio/radio.component.mjs +3 -3
  34. package/esm2022/lib/modules/radio/radio.module.mjs +43 -9
  35. package/esm2022/lib/modules/selection-box/selection-box-adapter.service.mjs +3 -3
  36. package/esm2022/lib/modules/selection-box/selection-box-description.component.mjs +3 -3
  37. package/esm2022/lib/modules/selection-box/selection-box-grid.component.mjs +3 -3
  38. package/esm2022/lib/modules/selection-box/selection-box-header.component.mjs +3 -3
  39. package/esm2022/lib/modules/selection-box/selection-box.component.mjs +3 -3
  40. package/esm2022/lib/modules/selection-box/selection-box.module.mjs +4 -4
  41. package/esm2022/lib/modules/shared/sky-forms-resources.module.mjs +8 -6
  42. package/esm2022/lib/modules/toggle-switch/toggle-switch-label.component.mjs +3 -3
  43. package/esm2022/lib/modules/toggle-switch/toggle-switch.component.mjs +3 -3
  44. package/esm2022/lib/modules/toggle-switch/toggle-switch.module.mjs +4 -4
  45. package/esm2022/testing/checkbox/checkbox-harness.mjs +15 -1
  46. package/esm2022/testing/form-error/form-error-harness.mjs +5 -9
  47. package/esm2022/testing/form-error/form-errors-harness.mjs +15 -64
  48. package/esm2022/testing/input-box/input-box-harness.mjs +59 -2
  49. package/fesm2022/skyux-forms-testing.mjs +122 -106
  50. package/fesm2022/skyux-forms-testing.mjs.map +1 -1
  51. package/fesm2022/skyux-forms.mjs +480 -256
  52. package/fesm2022/skyux-forms.mjs.map +1 -1
  53. package/index.d.ts +4 -0
  54. package/lib/modules/character-counter/character-counter-screen-reader.pipe.d.ts +8 -0
  55. package/lib/modules/character-counter/character-counter.module.d.ts +3 -2
  56. package/lib/modules/checkbox/checkbox.component.d.ts +9 -2
  57. package/lib/modules/checkbox/checkbox.module.d.ts +6 -3
  58. package/lib/modules/file-attachment/types/file-drop-change.d.ts +2 -2
  59. package/lib/modules/form-error/form-error.component.d.ts +17 -3
  60. package/lib/modules/form-error/form-error.module.d.ts +7 -0
  61. package/lib/modules/form-error/form-errors-enabled-token.d.ts +5 -0
  62. package/lib/modules/form-error/form-errors.module.d.ts +2 -1
  63. package/lib/modules/input-box/input-box.component.d.ts +2 -1
  64. package/lib/modules/input-box/input-box.module.d.ts +7 -5
  65. package/lib/modules/radio/radio-group.component.d.ts +18 -3
  66. package/lib/modules/radio/radio.module.d.ts +6 -3
  67. package/package.json +12 -12
  68. package/testing/checkbox/checkbox-harness.d.ts +2 -0
  69. package/testing/form-error/form-error-harness.d.ts +4 -2
  70. package/testing/form-error/form-errors-harness.d.ts +10 -11
  71. package/testing/input-box/input-box-harness.d.ts +36 -1

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.