@skyux/forms 11.21.0 → 11.23.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.
- package/documentation.json +2925 -1719
- package/esm2022/lib/modules/checkbox/checkbox-group.component.mjs +2 -2
- package/esm2022/lib/modules/field-group/field-group.component.mjs +2 -2
- package/esm2022/lib/modules/file-attachment/file-attachment/file-attachment.component.mjs +3 -5
- package/esm2022/lib/modules/input-box/input-box.component.mjs +2 -2
- package/esm2022/lib/modules/radio/radio-group.component.mjs +2 -2
- package/esm2022/lib/modules/radio/radio.component.mjs +2 -2
- package/esm2022/lib/modules/shared/sky-forms-resources.module.mjs +3 -21
- package/esm2022/lib/modules/toggle-switch/toggle-switch.component.mjs +3 -7
- package/esm2022/testing/legacy/checkbox-fixture.mjs +92 -0
- package/esm2022/testing/legacy/radio-fixture.mjs +85 -0
- package/esm2022/testing/modules/character-counter/character-counter-indicator-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/character-counter/character-counter-indicator-harness.mjs +53 -0
- package/esm2022/testing/modules/checkbox/checkbox-group-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/checkbox/checkbox-group-harness.mjs +158 -0
- package/esm2022/testing/modules/checkbox/checkbox-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/checkbox/checkbox-harness.mjs +196 -0
- package/esm2022/testing/modules/checkbox/checkbox-label-harness.mjs +19 -0
- package/esm2022/testing/modules/checkbox/checkbox-label-text-label.harness.mjs +19 -0
- package/esm2022/testing/modules/field-group/field-group-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/field-group/field-group-harness.mjs +92 -0
- package/esm2022/testing/modules/file-attachment/file-drop/file-drop-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/file-attachment/file-drop/file-drop-harness.mjs +45 -0
- package/esm2022/testing/modules/form-error/form-error-harness.filters.mjs +2 -0
- package/esm2022/testing/modules/form-error/form-error-harness.mjs +21 -0
- package/esm2022/testing/modules/form-error/form-errors-harness.filters.mjs +2 -0
- package/esm2022/testing/modules/form-error/form-errors-harness.mjs +34 -0
- package/esm2022/testing/modules/input-box/input-box-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/input-box/input-box-harness.mjs +188 -0
- package/esm2022/testing/modules/radio/radio-group-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/radio/radio-group-harness.mjs +156 -0
- package/esm2022/testing/modules/radio/radio-harness-filters.mjs +2 -0
- package/esm2022/testing/modules/radio/radio-harness.mjs +147 -0
- package/esm2022/testing/modules/radio/radio-label-harness.mjs +19 -0
- package/esm2022/testing/public-api.mjs +15 -14
- package/fesm2022/skyux-forms-testing.mjs +144 -54
- package/fesm2022/skyux-forms-testing.mjs.map +1 -1
- package/fesm2022/skyux-forms.mjs +16 -40
- package/fesm2022/skyux-forms.mjs.map +1 -1
- package/lib/modules/shared/sky-forms-resources.module.d.ts +0 -4
- package/package.json +9 -9
- package/testing/{radio-fixture.d.ts → legacy/radio-fixture.d.ts} +1 -0
- package/testing/modules/field-group/field-group-harness-filters.d.ts +7 -0
- package/testing/modules/field-group/field-group-harness.d.ts +57 -0
- package/testing/public-api.d.ts +24 -22
- package/esm2022/testing/character-counter/character-counter-indicator-harness-filters.mjs +0 -2
- package/esm2022/testing/character-counter/character-counter-indicator-harness.mjs +0 -53
- package/esm2022/testing/checkbox/checkbox-group-harness-filters.mjs +0 -2
- package/esm2022/testing/checkbox/checkbox-group-harness.mjs +0 -158
- package/esm2022/testing/checkbox/checkbox-harness-filters.mjs +0 -2
- package/esm2022/testing/checkbox/checkbox-harness.mjs +0 -196
- package/esm2022/testing/checkbox/checkbox-label-harness.mjs +0 -19
- package/esm2022/testing/checkbox/checkbox-label-text-label.harness.mjs +0 -19
- package/esm2022/testing/checkbox-fixture.mjs +0 -92
- package/esm2022/testing/file-drop/file-drop-harness-filters.mjs +0 -2
- package/esm2022/testing/file-drop/file-drop-harness.mjs +0 -45
- package/esm2022/testing/form-error/form-error-harness.filters.mjs +0 -2
- package/esm2022/testing/form-error/form-error-harness.mjs +0 -21
- package/esm2022/testing/form-error/form-errors-harness.filters.mjs +0 -2
- package/esm2022/testing/form-error/form-errors-harness.mjs +0 -34
- package/esm2022/testing/input-box/input-box-harness-filters.mjs +0 -2
- package/esm2022/testing/input-box/input-box-harness.mjs +0 -188
- package/esm2022/testing/radio/radio-group-harness-filters.mjs +0 -2
- package/esm2022/testing/radio/radio-group-harness.mjs +0 -157
- package/esm2022/testing/radio/radio-harness-filters.mjs +0 -2
- package/esm2022/testing/radio/radio-harness.mjs +0 -147
- package/esm2022/testing/radio/radio-label-harness.mjs +0 -19
- package/esm2022/testing/radio-fixture.mjs +0 -84
- /package/testing/{checkbox-fixture.d.ts → legacy/checkbox-fixture.d.ts} +0 -0
- /package/testing/{character-counter → modules/character-counter}/character-counter-indicator-harness-filters.d.ts +0 -0
- /package/testing/{character-counter → modules/character-counter}/character-counter-indicator-harness.d.ts +0 -0
- /package/testing/{checkbox → modules/checkbox}/checkbox-group-harness-filters.d.ts +0 -0
- /package/testing/{checkbox → modules/checkbox}/checkbox-group-harness.d.ts +0 -0
- /package/testing/{checkbox → modules/checkbox}/checkbox-harness-filters.d.ts +0 -0
- /package/testing/{checkbox → modules/checkbox}/checkbox-harness.d.ts +0 -0
- /package/testing/{checkbox → modules/checkbox}/checkbox-label-harness.d.ts +0 -0
- /package/testing/{checkbox → modules/checkbox}/checkbox-label-text-label.harness.d.ts +0 -0
- /package/testing/{file-drop → modules/file-attachment/file-drop}/file-drop-harness-filters.d.ts +0 -0
- /package/testing/{file-drop → modules/file-attachment/file-drop}/file-drop-harness.d.ts +0 -0
- /package/testing/{form-error → modules/form-error}/form-error-harness.d.ts +0 -0
- /package/testing/{form-error → modules/form-error}/form-error-harness.filters.d.ts +0 -0
- /package/testing/{form-error → modules/form-error}/form-errors-harness.d.ts +0 -0
- /package/testing/{form-error → modules/form-error}/form-errors-harness.filters.d.ts +0 -0
- /package/testing/{input-box → modules/input-box}/input-box-harness-filters.d.ts +0 -0
- /package/testing/{input-box → modules/input-box}/input-box-harness.d.ts +0 -0
- /package/testing/{radio → modules/radio}/radio-group-harness-filters.d.ts +0 -0
- /package/testing/{radio → modules/radio}/radio-group-harness.d.ts +0 -0
- /package/testing/{radio → modules/radio}/radio-harness-filters.d.ts +0 -0
- /package/testing/{radio → modules/radio}/radio-harness.d.ts +0 -0
- /package/testing/{radio → modules/radio}/radio-label-harness.d.ts +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.