-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(release): cut 5.0.0-alpha.11 [skip ci]
# [5.0.0-alpha.11](v5.0.0-alpha.10...v5.0.0-alpha.11) (2020-04-29) ### Bug Fixes * **core:** no top margin if no label for field ([a2d0bad](a2d0bad)) ### Code Refactoring * **core:** move fields to widgets ([3b763fa](3b763fa)) * **core:** reimplement Field ([fbdafb8](fbdafb8)) * move to more explicit final-form api ([a76da00](a76da00)) ### BREAKING CHANGES * **core:** Relocate all *Field components to @dhis2/ui-widgets. They can be accessed from `@dhis2/ui` using named exports. * **core:** Field has been reimplemented to compose a field control, it now adds the Label, Help, Validation components instead of being a simple div wrapper, which allows us to avoid the code duplication in each *Field component. * **core:** ToggleGroup has been removed. Use a FieldSet for grouping form controls. BREKING CHANGE: ToggleGroupField has been renamed to FieldSetField, which adds the necessary Label, Help, and Validation components to an entire group of components. * Field now provides a composition to provide all necessary things for a *Field component. * RadioGroup has been deleted. * CheckboxGroup has been deleted. * CheckboxGroupControl has been deleted. * RadioGroupControl has been deleted.
- Loading branch information
Showing
9 changed files
with
61 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@dhis2/ui", | ||
"version": "5.0.0-alpha.10", | ||
"version": "5.0.0-alpha.11", | ||
"main": "build/cjs/lib.js", | ||
"module": "build/es/lib.js", | ||
"author": "Viktor Varland <[email protected]>", | ||
|
@@ -10,10 +10,10 @@ | |
"build": "d2-app-scripts build" | ||
}, | ||
"dependencies": { | ||
"@dhis2/ui-constants": "5.0.0-alpha.10", | ||
"@dhis2/ui-icons": "5.0.0-alpha.10", | ||
"@dhis2/ui-core": "5.0.0-alpha.10", | ||
"@dhis2/ui-forms": "5.0.0-alpha.10", | ||
"@dhis2/ui-widgets": "5.0.0-alpha.10" | ||
"@dhis2/ui-constants": "5.0.0-alpha.11", | ||
"@dhis2/ui-icons": "5.0.0-alpha.11", | ||
"@dhis2/ui-core": "5.0.0-alpha.11", | ||
"@dhis2/ui-forms": "5.0.0-alpha.11", | ||
"@dhis2/ui-widgets": "5.0.0-alpha.11" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters