@decisiv/ui-components 2.0.1-alpha.99 → 2.0.1
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/lib/atoms/Calendar/index.d.ts.map +1 -1
- package/lib/atoms/Calendar/index.js +38 -5
- package/lib/atoms/Calendar/index.test.js +5 -5
- package/lib/atoms/Calendar/types.d.ts +1 -1
- package/lib/atoms/Calendar/types.d.ts.map +1 -1
- package/lib/atoms/InputField/Containers.d.ts +2 -1
- package/lib/atoms/InputField/Containers.d.ts.map +1 -1
- package/lib/atoms/InputField/Containers.js +3 -1
- package/lib/atoms/InputField/HelpMessage.d.ts +1 -1
- package/lib/atoms/InputField/HelpMessage.d.ts.map +1 -1
- package/lib/atoms/InputField/HelpMessage.js +23 -7
- package/lib/atoms/InputField/index.d.ts +6 -1
- package/lib/atoms/InputField/index.d.ts.map +1 -1
- package/lib/atoms/InputField/index.js +21 -4
- package/lib/atoms/InputField/index.test.js +53 -0
- package/lib/atoms/InputField/schema.js +2 -2
- package/lib/atoms/InputField/styles.d.ts +7 -0
- package/lib/atoms/InputField/styles.d.ts.map +1 -0
- package/lib/atoms/InputField/styles.js +31 -0
- package/lib/atoms/OptionsList/Category/index.d.ts +4 -0
- package/lib/atoms/OptionsList/Category/index.d.ts.map +1 -0
- package/lib/atoms/OptionsList/Category/index.js +85 -0
- package/lib/atoms/OptionsList/Category/styles.d.ts +5 -0
- package/lib/atoms/OptionsList/Category/styles.d.ts.map +1 -0
- package/lib/atoms/OptionsList/Category/styles.js +35 -0
- package/lib/atoms/OptionsList/{Option.d.ts → Option/index.d.ts} +2 -2
- package/lib/atoms/OptionsList/Option/index.d.ts.map +1 -0
- package/lib/atoms/OptionsList/Option/index.js +182 -0
- package/lib/atoms/OptionsList/Option/styles.d.ts +17 -0
- package/lib/atoms/OptionsList/Option/styles.d.ts.map +1 -0
- package/lib/atoms/OptionsList/Option/styles.js +86 -0
- package/lib/atoms/OptionsList/context.d.ts +1 -0
- package/lib/atoms/OptionsList/context.d.ts.map +1 -1
- package/lib/atoms/OptionsList/index.d.ts +1 -44
- package/lib/atoms/OptionsList/index.d.ts.map +1 -1
- package/lib/atoms/OptionsList/index.js +259 -40
- package/lib/atoms/OptionsList/index.test.js +329 -186
- package/lib/atoms/OptionsList/schema.d.ts.map +1 -1
- package/lib/atoms/OptionsList/schema.js +7 -1
- package/lib/atoms/OptionsList/styles.d.ts +45 -0
- package/lib/atoms/OptionsList/styles.d.ts.map +1 -0
- package/lib/atoms/OptionsList/styles.js +29 -0
- package/lib/atoms/OptionsList/types.d.ts +50 -1
- package/lib/atoms/OptionsList/types.d.ts.map +1 -1
- package/lib/atoms/OptionsList/utils.d.ts +2 -1
- package/lib/atoms/OptionsList/utils.d.ts.map +1 -1
- package/lib/atoms/OptionsList/utils.js +49 -2
- package/lib/components/Alert/Container.d.ts +201 -0
- package/lib/components/Alert/Container.d.ts.map +1 -0
- package/lib/components/Alert/Container.js +26 -0
- package/lib/components/Alert/StyledButton.d.ts +5 -0
- package/lib/components/Alert/StyledButton.d.ts.map +1 -0
- package/lib/components/Alert/StyledButton.js +23 -0
- package/lib/components/Alert/index.d.ts +27 -0
- package/lib/components/Alert/index.d.ts.map +1 -0
- package/lib/components/Alert/index.js +112 -0
- package/lib/components/Alert/index.test.js +79 -0
- package/lib/components/Alert/intents.d.ts +13 -0
- package/lib/components/Alert/intents.d.ts.map +1 -0
- package/lib/components/Alert/intents.js +72 -0
- package/lib/components/{Tabs/schema.tab.d.ts → Alert/schema.d.ts} +1 -1
- package/lib/components/Alert/schema.d.ts.map +1 -0
- package/lib/components/Alert/schema.js +25 -0
- package/lib/components/Alert/types.d.ts +36 -0
- package/lib/components/Alert/types.d.ts.map +1 -0
- package/lib/components/Alert/types.js +32 -0
- package/lib/components/Avatar/AvatarContainer.d.ts +1 -13
- package/lib/components/Avatar/AvatarContainer.d.ts.map +1 -1
- package/lib/components/Avatar/AvatarContainer.js +12 -13
- package/lib/components/Avatar/AvatarContent.d.ts +2 -2
- package/lib/components/Avatar/AvatarContent.d.ts.map +1 -1
- package/lib/components/Avatar/AvatarContent.js +24 -20
- package/lib/components/Avatar/index.d.ts.map +1 -1
- package/lib/components/Avatar/index.js +42 -5
- package/lib/components/Avatar/index.test.js +4 -0
- package/lib/components/Avatar/schema.d.ts.map +1 -1
- package/lib/components/Avatar/schema.js +3 -1
- package/lib/components/Avatar/types.d.ts +15 -2
- package/lib/components/Avatar/types.d.ts.map +1 -1
- package/lib/components/Badge/index.d.ts.map +1 -1
- package/lib/components/Badge/index.js +2 -58
- package/lib/components/Badge/index.test.js +15 -4
- package/lib/components/Badge/schema.d.ts.map +1 -1
- package/lib/components/Badge/schema.js +1 -0
- package/lib/components/Badge/styles.d.ts +3 -0
- package/lib/components/Badge/styles.d.ts.map +1 -0
- package/lib/components/Badge/styles.js +97 -0
- package/lib/components/Badge/types.d.ts +3 -1
- package/lib/components/Badge/types.d.ts.map +1 -1
- package/lib/components/Badge/types.js +2 -1
- package/lib/components/Button/StyledButton.d.ts +3 -6
- package/lib/components/Button/StyledButton.d.ts.map +1 -1
- package/lib/components/Button/StyledButton.js +39 -11
- package/lib/components/Button/index.d.ts.map +1 -1
- package/lib/components/Button/index.js +51 -12
- package/lib/components/Button/index.test.js +43 -8
- package/lib/components/Button/schema.d.ts.map +1 -1
- package/lib/components/Button/schema.js +4 -1
- package/lib/components/Button/types.d.ts +4 -1
- package/lib/components/Button/types.d.ts.map +1 -1
- package/lib/components/Combobox/Target.d.ts.map +1 -1
- package/lib/components/Combobox/Target.js +10 -0
- package/lib/components/Combobox/index.d.ts.map +1 -1
- package/lib/components/Combobox/index.js +111 -59
- package/lib/components/Combobox/index.test.js +110 -25
- package/lib/components/Combobox/schema.d.ts.map +1 -1
- package/lib/components/Combobox/schema.js +7 -1
- package/lib/components/Combobox/types.d.ts +7 -2
- package/lib/components/Combobox/types.d.ts.map +1 -1
- package/lib/components/Drawer/index.d.ts +22 -0
- package/lib/components/Drawer/index.d.ts.map +1 -0
- package/lib/components/Drawer/index.js +122 -0
- package/lib/components/Drawer/index.test.js +164 -0
- package/lib/components/Drawer/schema.d.ts +3 -0
- package/lib/components/Drawer/schema.d.ts.map +1 -0
- package/lib/components/Drawer/schema.js +32 -0
- package/lib/components/Drawer/styles.d.ts +11 -0
- package/lib/components/Drawer/styles.d.ts.map +1 -0
- package/lib/components/Drawer/styles.js +79 -0
- package/lib/components/DropdownList/index.d.ts.map +1 -1
- package/lib/components/DropdownList/index.js +10 -3
- package/lib/components/DropdownList/index.test.js +38 -25
- package/lib/components/DropdownList/schema.js +1 -1
- package/lib/components/Filter/ActionFilter/index.d.ts +5 -0
- package/lib/components/Filter/ActionFilter/index.d.ts.map +1 -0
- package/lib/components/Filter/ActionFilter/index.js +43 -0
- package/lib/components/Filter/IconWrapper/index.d.ts +2 -2
- package/lib/components/Filter/IconWrapper/index.d.ts.map +1 -1
- package/lib/components/Filter/SimplePrimary/index.d.ts +2 -28
- package/lib/components/Filter/SimplePrimary/index.d.ts.map +1 -1
- package/lib/components/Filter/SimplePrimary/index.js +9 -21
- package/lib/components/Filter/StyledFilter.d.ts +2 -2
- package/lib/components/Filter/StyledFilter.d.ts.map +1 -1
- package/lib/components/Filter/StyledFilter.js +28 -1
- package/lib/components/Filter/StyledLabel/index.d.ts +3 -3
- package/lib/components/Filter/StyledLabel/index.d.ts.map +1 -1
- package/lib/components/Filter/StyledLabel/index.js +14 -6
- package/lib/components/Filter/index.d.ts +4 -25
- package/lib/components/Filter/index.d.ts.map +1 -1
- package/lib/components/Filter/index.js +41 -29
- package/lib/components/Filter/index.test.js +33 -4
- package/lib/components/Filter/kind.d.ts +4 -3
- package/lib/components/Filter/kind.d.ts.map +1 -1
- package/lib/components/Filter/kind.js +20 -22
- package/lib/components/Filter/schema.d.ts.map +1 -1
- package/lib/components/Filter/schema.js +8 -3
- package/lib/components/Filter/types.d.ts +21 -7
- package/lib/components/Filter/types.d.ts.map +1 -1
- package/lib/components/JumpTo/JumpToMenu.d.ts.map +1 -1
- package/lib/components/JumpTo/JumpToMenu.js +50 -9
- package/lib/components/JumpTo/index.test.js +84 -0
- package/lib/components/JumpTo/schema.d.ts.map +1 -1
- package/lib/components/JumpTo/schema.js +2 -1
- package/lib/components/JumpTo/types.d.ts +1 -0
- package/lib/components/JumpTo/types.d.ts.map +1 -1
- package/lib/components/JumpTo/utils.d.ts.map +1 -1
- package/lib/components/JumpTo/utils.js +3 -7
- package/lib/components/LeftNav/Item/NavExpandedItem/index.js +7 -2
- package/lib/components/LeftNav/index.test.js +35 -19
- package/lib/components/LeftNav/schema.d.ts.map +1 -1
- package/lib/components/LeftNav/schema.js +3 -1
- package/lib/components/LeftNav/types.d.ts +1 -0
- package/lib/components/LeftNav/types.d.ts.map +1 -1
- package/lib/components/Link/DisabledLink.d.ts +7 -0
- package/lib/components/Link/DisabledLink.d.ts.map +1 -0
- package/lib/components/Link/DisabledLink.js +46 -0
- package/lib/components/Link/Link.d.ts +4 -0
- package/lib/components/Link/Link.d.ts.map +1 -0
- package/lib/components/Link/Link.js +67 -0
- package/lib/components/Link/index.d.ts +4 -23
- package/lib/components/Link/index.d.ts.map +1 -1
- package/lib/components/Link/index.js +19 -157
- package/lib/components/Link/index.test.js +62 -49
- package/lib/components/Link/schema.d.ts.map +1 -1
- package/lib/components/Link/schema.js +1 -0
- package/lib/components/Link/styles.d.ts +20 -0
- package/lib/components/Link/styles.d.ts.map +1 -0
- package/lib/components/Link/styles.js +131 -0
- package/lib/components/Link/types.d.ts +28 -0
- package/lib/components/Link/types.d.ts.map +1 -0
- package/lib/components/List/BaseCell/index.d.ts +6 -0
- package/lib/components/List/BaseCell/index.d.ts.map +1 -0
- package/lib/components/List/BaseCell/index.js +17 -0
- package/lib/components/List/BaseCell/index.test.js +33 -0
- package/lib/components/List/BaseCell/styles.d.ts +198 -0
- package/lib/components/List/BaseCell/styles.d.ts.map +1 -0
- package/lib/components/List/BaseCell/styles.js +26 -0
- package/lib/components/List/ContentContainer/index.d.ts +21 -0
- package/lib/components/List/ContentContainer/index.d.ts.map +1 -0
- package/lib/components/List/ContentContainer/index.js +82 -0
- package/lib/components/List/ContentContainer/index.test.js +102 -0
- package/lib/components/List/DefaultCell/index.d.ts +6 -0
- package/lib/components/List/DefaultCell/index.d.ts.map +1 -0
- package/lib/components/List/DefaultCell/index.js +26 -0
- package/lib/components/List/EditableCell/index.d.ts +13 -0
- package/lib/components/List/EditableCell/index.d.ts.map +1 -0
- package/lib/components/List/EditableCell/index.js +47 -0
- package/lib/components/List/EditableCell/styles.d.ts +204 -0
- package/lib/components/List/EditableCell/styles.d.ts.map +1 -0
- package/lib/components/List/EditableCell/styles.js +47 -0
- package/lib/components/List/LabelContainer/index.d.ts +9 -0
- package/lib/components/List/LabelContainer/index.d.ts.map +1 -0
- package/lib/components/List/LabelContainer/index.js +38 -0
- package/lib/components/List/LabelContainer/index.test.js +105 -0
- package/lib/components/List/LabelContainer/styles.d.ts +4 -0
- package/lib/components/List/LabelContainer/styles.d.ts.map +1 -0
- package/lib/components/List/LabelContainer/styles.js +28 -0
- package/lib/components/List/ListItem/index.d.ts +8 -0
- package/lib/components/List/ListItem/index.d.ts.map +1 -0
- package/lib/components/List/ListItem/index.js +43 -0
- package/lib/components/List/ListItem/index.test.js +76 -0
- package/lib/components/List/ListItem/schema.d.ts +4 -0
- package/lib/components/List/ListItem/schema.d.ts.map +1 -0
- package/lib/components/List/ListItem/schema.js +30 -0
- package/lib/components/List/ListItem/styles.d.ts +2 -0
- package/lib/components/List/ListItem/styles.d.ts.map +1 -0
- package/lib/components/List/ListItem/styles.js +23 -0
- package/lib/components/List/constants.d.ts +19 -0
- package/lib/components/List/constants.d.ts.map +1 -0
- package/lib/components/List/constants.js +28 -0
- package/lib/components/List/index.d.ts +15 -0
- package/lib/components/List/index.d.ts.map +1 -0
- package/lib/components/List/index.js +67 -0
- package/lib/components/List/index.test.js +64 -0
- package/lib/components/List/schema.d.ts +4 -0
- package/lib/components/List/schema.d.ts.map +1 -0
- package/lib/components/List/schema.js +26 -0
- package/lib/components/List/styles.d.ts +198 -0
- package/lib/components/List/styles.d.ts.map +1 -0
- package/lib/components/List/styles.js +34 -0
- package/lib/components/List/types.d.ts +15 -0
- package/lib/components/List/types.d.ts.map +1 -0
- package/lib/components/List/types.js +5 -0
- package/lib/components/Loading/Loading.d.ts +12 -0
- package/lib/components/Loading/Loading.d.ts.map +1 -0
- package/lib/components/Loading/Loading.js +70 -0
- package/lib/components/Loading/index.d.ts +4 -0
- package/lib/components/Loading/index.d.ts.map +1 -0
- package/lib/components/Loading/index.js +33 -0
- package/lib/components/Loading/index.test.js +55 -0
- package/lib/components/Loading/schema.d.ts +4 -0
- package/lib/components/Loading/schema.d.ts.map +1 -0
- package/lib/components/Loading/schema.js +31 -0
- package/lib/components/Loading/styles.d.ts +211 -0
- package/lib/components/Loading/styles.d.ts.map +1 -0
- package/lib/components/Loading/styles.js +77 -0
- package/lib/components/Loading/types.d.ts +10 -0
- package/lib/components/Loading/types.d.ts.map +1 -0
- package/lib/components/Loading/types.js +5 -0
- package/lib/components/Modal/Manager.d.ts +6 -0
- package/lib/components/Modal/Manager.d.ts.map +1 -0
- package/lib/components/Modal/Manager.js +53 -0
- package/lib/components/Modal/ResponsiveModalWrapper.d.ts +11 -0
- package/lib/components/Modal/ResponsiveModalWrapper.d.ts.map +1 -0
- package/lib/components/Modal/ResponsiveModalWrapper.js +82 -0
- package/lib/components/Modal/components.d.ts +199 -1
- package/lib/components/Modal/components.d.ts.map +1 -1
- package/lib/components/Modal/components.js +16 -24
- package/lib/components/Modal/index.d.ts +8 -4
- package/lib/components/Modal/index.d.ts.map +1 -1
- package/lib/components/Modal/index.js +63 -95
- package/lib/components/Modal/index.test.js +99 -0
- package/lib/components/Modal/schema.d.ts.map +1 -1
- package/lib/components/Modal/schema.js +2 -1
- package/lib/components/Modal/types.d.ts +2 -1
- package/lib/components/Modal/types.d.ts.map +1 -1
- package/lib/components/Modal/utils.d.ts +1 -1
- package/lib/components/Modal/utils.d.ts.map +1 -1
- package/lib/components/Modal/utils.js +7 -5
- package/lib/components/Pagination/Pages.d.ts +1 -7
- package/lib/components/Pagination/Pages.d.ts.map +1 -1
- package/lib/components/Pagination/Pages.js +17 -0
- package/lib/components/Pagination/Pagination.d.ts +13 -14
- package/lib/components/Pagination/Pagination.d.ts.map +1 -1
- package/lib/components/Pagination/Pagination.js +20 -5
- package/lib/components/Pagination/Pagination.test.js +14 -0
- package/lib/components/Pagination/paginate.d.ts +1 -1
- package/lib/components/Pagination/paginate.d.ts.map +1 -1
- package/lib/components/Pagination/paginate.js +4 -0
- package/lib/components/Pagination/paginate.test.js +38 -17
- package/lib/components/Pagination/schema.d.ts.map +1 -1
- package/lib/components/Pagination/schema.js +3 -1
- package/lib/components/Pagination/types.d.ts +24 -1
- package/lib/components/Pagination/types.d.ts.map +1 -1
- package/lib/components/PasswordField/IconWrapper.d.ts +198 -0
- package/lib/components/PasswordField/IconWrapper.d.ts.map +1 -0
- package/lib/components/PasswordField/IconWrapper.js +32 -0
- package/lib/components/PasswordField/Input.d.ts +6 -0
- package/lib/components/PasswordField/Input.d.ts.map +1 -0
- package/lib/components/PasswordField/Input.js +28 -0
- package/lib/components/PasswordField/ShowPasswordButton.d.ts +8 -0
- package/lib/components/PasswordField/ShowPasswordButton.d.ts.map +1 -0
- package/lib/components/PasswordField/ShowPasswordButton.js +48 -0
- package/lib/components/PasswordField/index.d.ts +14 -0
- package/lib/components/PasswordField/index.d.ts.map +1 -0
- package/lib/components/PasswordField/index.js +113 -0
- package/lib/components/PasswordField/index.test.js +217 -0
- package/lib/components/PasswordField/schema.d.ts +3 -0
- package/lib/components/PasswordField/schema.d.ts.map +1 -0
- package/lib/components/PasswordField/schema.js +27 -0
- package/lib/components/Popover/Arrow.d.ts +2 -2
- package/lib/components/Popover/index.d.ts.map +1 -1
- package/lib/components/Popover/index.js +25 -10
- package/lib/components/Popover/schema.d.ts.map +1 -1
- package/lib/components/Popover/schema.js +28 -20
- package/lib/components/Popover/types.d.ts +6 -2
- package/lib/components/Popover/types.d.ts.map +1 -1
- package/lib/components/SearchInput/index.d.ts +11 -0
- package/lib/components/SearchInput/index.d.ts.map +1 -0
- package/lib/components/SearchInput/index.js +179 -0
- package/lib/components/SearchInput/index.test.js +660 -0
- package/lib/components/SearchInput/schema.d.ts +3 -0
- package/lib/components/SearchInput/schema.d.ts.map +1 -0
- package/lib/components/SearchInput/schema.js +38 -0
- package/lib/components/SearchInput/styles.d.ts +1176 -0
- package/lib/components/SearchInput/styles.d.ts.map +1 -0
- package/lib/components/SearchInput/styles.js +97 -0
- package/lib/components/SearchInput/types.d.ts +39 -0
- package/lib/components/SearchInput/types.d.ts.map +1 -0
- package/lib/components/SearchInput/types.js +5 -0
- package/lib/components/Select/Target.d.ts.map +1 -1
- package/lib/components/Select/Target.js +5 -1
- package/lib/components/Select/index.d.ts.map +1 -1
- package/lib/components/Select/index.js +7 -3
- package/lib/components/Select/index.test.js +43 -19
- package/lib/components/Select/schema.d.ts.map +1 -1
- package/lib/components/Select/schema.js +2 -0
- package/lib/components/Select/types.d.ts +2 -0
- package/lib/components/Select/types.d.ts.map +1 -1
- package/lib/components/SelectDate/Target.d.ts.map +1 -1
- package/lib/components/SelectDate/Target.js +5 -1
- package/lib/components/SelectDate/index.d.ts.map +1 -1
- package/lib/components/SelectDate/index.js +7 -3
- package/lib/components/SelectDate/schema.d.ts.map +1 -1
- package/lib/components/SelectDate/schema.js +1 -0
- package/lib/components/SelectDate/types.d.ts +1 -0
- package/lib/components/SelectDate/types.d.ts.map +1 -1
- package/lib/components/SelectDateRange/index.d.ts.map +1 -1
- package/lib/components/SelectDateRange/index.js +6 -2
- package/lib/components/SelectDateRange/schema.d.ts.map +1 -1
- package/lib/components/SelectDateRange/schema.js +1 -0
- package/lib/components/StepTracker/index.d.ts +11 -0
- package/lib/components/StepTracker/index.d.ts.map +1 -0
- package/lib/components/StepTracker/index.js +56 -0
- package/lib/components/StepTracker/index.test.js +89 -0
- package/lib/components/StepTracker/schema.d.ts +3 -0
- package/lib/components/StepTracker/schema.d.ts.map +1 -0
- package/lib/components/StepTracker/schema.js +19 -0
- package/lib/components/StepTracker/styles.d.ts +605 -0
- package/lib/components/StepTracker/styles.d.ts.map +1 -0
- package/lib/components/StepTracker/styles.js +114 -0
- package/lib/components/Table/Body.d.ts.map +1 -1
- package/lib/components/Table/Body.js +2 -5
- package/lib/components/Table/Container.d.ts.map +1 -1
- package/lib/components/Table/Container.js +6 -1
- package/lib/components/Table/Grip.d.ts +6 -2
- package/lib/components/Table/Grip.d.ts.map +1 -1
- package/lib/components/Table/Grip.js +9 -3
- package/lib/components/Table/index.js +1 -1
- package/lib/components/Tabs/Tab/index.d.ts +13 -0
- package/lib/components/Tabs/Tab/index.d.ts.map +1 -0
- package/lib/components/Tabs/Tab/index.js +94 -0
- package/lib/components/Tabs/Tab/schema.d.ts +3 -0
- package/lib/components/Tabs/Tab/schema.d.ts.map +1 -0
- package/lib/components/Tabs/Tab/styles.d.ts +7 -0
- package/lib/components/Tabs/Tab/styles.d.ts.map +1 -0
- package/lib/components/Tabs/Tab/styles.js +37 -0
- package/lib/components/Tabs/context.d.ts +2 -2
- package/lib/components/Tabs/context.d.ts.map +1 -1
- package/lib/components/Tabs/context.js +1 -1
- package/lib/components/Tabs/index.d.ts +17 -6
- package/lib/components/Tabs/index.d.ts.map +1 -1
- package/lib/components/Tabs/index.js +104 -163
- package/lib/components/Tabs/index.test.js +54 -2
- package/lib/components/Tabs/styles.d.ts +4 -0
- package/lib/components/Tabs/styles.d.ts.map +1 -0
- package/lib/components/Tabs/styles.js +35 -0
- package/lib/components/Tag/Action.d.ts +4 -0
- package/lib/components/Tag/Action.d.ts.map +1 -0
- package/lib/components/Tag/Action.js +39 -0
- package/lib/components/Tag/constants.d.ts +2 -2
- package/lib/components/Tag/constants.d.ts.map +1 -1
- package/lib/components/Tag/constants.js +4 -4
- package/lib/components/Tag/index.d.ts +1 -3
- package/lib/components/Tag/index.d.ts.map +1 -1
- package/lib/components/Tag/index.js +40 -97
- package/lib/components/Tag/index.test.js +239 -2
- package/lib/components/Tag/propTypes.d.ts +4 -1
- package/lib/components/Tag/propTypes.d.ts.map +1 -1
- package/lib/components/Tag/propTypes.js +5 -2
- package/lib/components/Tag/schema.d.ts.map +1 -1
- package/lib/components/Tag/schema.js +3 -1
- package/lib/components/Tag/styles.d.ts +13 -0
- package/lib/components/Tag/styles.d.ts.map +1 -0
- package/lib/components/Tag/styles.js +133 -0
- package/lib/components/Tag/types.d.ts +11 -12
- package/lib/components/Tag/types.d.ts.map +1 -1
- package/lib/components/TagInput/index.d.ts +5 -0
- package/lib/components/TagInput/index.d.ts.map +1 -0
- package/lib/components/TagInput/index.js +363 -0
- package/lib/components/TagInput/index.test.js +1143 -0
- package/lib/components/TagInput/schema.d.ts +3 -0
- package/lib/components/TagInput/schema.d.ts.map +1 -0
- package/lib/components/TagInput/schema.js +36 -0
- package/lib/components/TagInput/styles.d.ts +10 -0
- package/lib/components/TagInput/styles.d.ts.map +1 -0
- package/lib/components/TagInput/styles.js +52 -0
- package/lib/components/TagInput/types.d.ts +21 -0
- package/lib/components/TagInput/types.d.ts.map +1 -0
- package/lib/components/TagInput/types.js +5 -0
- package/lib/components/Toggle/Fieldset.d.ts.map +1 -1
- package/lib/components/Toggle/Fieldset.js +20 -11
- package/lib/components/Toggle/Option.d.ts.map +1 -1
- package/lib/components/Toggle/Option.js +1 -1
- package/lib/components/Toggle/Slider.d.ts +1 -3
- package/lib/components/Toggle/Slider.d.ts.map +1 -1
- package/lib/components/Toggle/Slider.js +29 -24
- package/lib/components/Toggle/index.d.ts.map +1 -1
- package/lib/components/Toggle/index.js +2 -1
- package/lib/components/Toggle/propTypes.js +1 -1
- package/lib/components/Toggle/schema.js +1 -1
- package/lib/components/Toggle/types.d.ts +3 -2
- package/lib/components/Toggle/types.d.ts.map +1 -1
- package/lib/components/ToggleView/ToggleView.d.ts +5 -0
- package/lib/components/ToggleView/ToggleView.d.ts.map +1 -0
- package/lib/components/ToggleView/ToggleView.js +80 -0
- package/lib/components/ToggleView/index.d.ts +4 -0
- package/lib/components/ToggleView/index.d.ts.map +1 -0
- package/lib/components/ToggleView/index.js +33 -0
- package/lib/components/ToggleView/index.test.js +61 -0
- package/lib/components/ToggleView/schema.d.ts +3 -0
- package/lib/components/ToggleView/schema.d.ts.map +1 -0
- package/lib/components/ToggleView/schema.js +24 -0
- package/lib/components/ToggleView/styles.d.ts +6 -0
- package/lib/components/ToggleView/styles.d.ts.map +1 -0
- package/lib/components/ToggleView/styles.js +23 -0
- package/lib/components/ToggleView/types.d.ts +23 -0
- package/lib/components/ToggleView/types.d.ts.map +1 -0
- package/lib/components/ToggleView/types.js +12 -0
- package/lib/components/Tooltip/index.d.ts.map +1 -1
- package/lib/components/Tooltip/index.js +3 -13
- package/lib/components/Tooltip/schema.d.ts +3 -0
- package/lib/components/Tooltip/schema.d.ts.map +1 -0
- package/lib/components/Tooltip/schema.js +29 -0
- package/lib/components/TopNav/Menu/index.d.ts +1 -1
- package/lib/components/TopNav/index.d.ts +1 -1
- package/lib/components/Typography/withColors.d.ts +1 -1
- package/lib/components/Typography/withColors.d.ts.map +1 -1
- package/lib/components/Typography/withColors.js +1 -1
- package/lib/components/Wizard/index.d.ts +33 -0
- package/lib/components/Wizard/index.d.ts.map +1 -0
- package/lib/components/Wizard/index.js +161 -0
- package/lib/components/Wizard/index.test.js +940 -0
- package/lib/components/Wizard/schema.d.ts +3 -0
- package/lib/components/Wizard/schema.d.ts.map +1 -0
- package/lib/components/Wizard/schema.js +42 -0
- package/lib/components/Wizard/styles.d.ts +990 -0
- package/lib/components/Wizard/styles.d.ts.map +1 -0
- package/lib/components/Wizard/styles.js +79 -0
- package/lib/components/index.d.ts +11 -1
- package/lib/components/index.d.ts.map +1 -1
- package/lib/components/index.js +196 -1
- package/lib/modifiers/palette.d.ts +36 -0
- package/lib/modifiers/palette.d.ts.map +1 -0
- package/lib/modifiers/palette.js +88 -0
- package/lib/modifiers/spacingSchema.d.ts.map +1 -1
- package/lib/modifiers/spacingSchema.js +29 -16
- package/lib/providers/ConfigProvider/utils/linkRenderer.d.ts +2 -1
- package/lib/providers/ConfigProvider/utils/linkRenderer.d.ts.map +1 -1
- package/lib/providers/ConfigProvider/utils/translations.d.ts +45 -1
- package/lib/providers/ConfigProvider/utils/translations.d.ts.map +1 -1
- package/lib/providers/ConfigProvider/utils/translations.js +46 -2
- package/lib/types/index.d.ts +2 -0
- package/lib/types/index.d.ts.map +1 -0
- package/lib/types/index.js +5 -0
- package/lib/utils/commonUIColors.d.ts +351 -3
- package/lib/utils/commonUIColors.d.ts.map +1 -1
- package/lib/utils/commonUIColors.js +6 -2
- package/lib/utils/useDebounce.d.ts +2 -0
- package/lib/utils/useDebounce.d.ts.map +1 -0
- package/lib/utils/useDebounce.js +37 -0
- package/lib/utils/useStackingContext.d.ts +12 -0
- package/lib/utils/useStackingContext.d.ts.map +1 -0
- package/lib/utils/useStackingContext.js +46 -0
- package/package.json +26 -13
- package/CHANGELOG.md +0 -796
- package/lib/atoms/OptionsList/Category.d.ts +0 -4
- package/lib/atoms/OptionsList/Category.d.ts.map +0 -1
- package/lib/atoms/OptionsList/Category.js +0 -53
- package/lib/atoms/OptionsList/Option.d.ts.map +0 -1
- package/lib/atoms/OptionsList/Option.js +0 -197
- package/lib/components/Tabs/Tab.d.ts +0 -5
- package/lib/components/Tabs/Tab.d.ts.map +0 -1
- package/lib/components/Tabs/Tab.js +0 -109
- package/lib/components/Tabs/schema.tab.d.ts.map +0 -1
- package/lib/components/Tabs/types.d.ts +0 -27
- package/lib/components/Tabs/types.d.ts.map +0 -1
- package/lib/components/Tag/ActionButton.d.ts +0 -5
- package/lib/components/Tag/ActionButton.d.ts.map +0 -1
- package/lib/components/Tag/ActionButton.js +0 -56
- /package/lib/components/{Tabs → Link}/types.js +0 -0
- /package/lib/components/Tabs/{schema.tab.js → Tab/schema.js} +0 -0
package/CHANGELOG.md
DELETED
|
@@ -1,796 +0,0 @@
|
|
|
1
|
-
# Change Log
|
|
2
|
-
|
|
3
|
-
All notable changes to this project will be documented in this file.
|
|
4
|
-
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
-
|
|
6
|
-
# [2.0.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.36.0...@decisiv/ui-components@2.0.0) (2020-08-10)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
### Bug Fixes
|
|
10
|
-
|
|
11
|
-
* **ui-components:** forces major version bump in iconix ([8eac13a](https://github.com/Decisiv/decisiv-design-system/commit/8eac13a))
|
|
12
|
-
* forces major version bumps in iconix and ui-components ([717e0b2](https://github.com/Decisiv/decisiv-design-system/commit/717e0b2))
|
|
13
|
-
* forces major version bumps in iconix and ui-components ([cbc72b4](https://github.com/Decisiv/decisiv-design-system/commit/cbc72b4))
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
### BREAKING CHANGES
|
|
17
|
-
|
|
18
|
-
* **ui-components:** Typography component breaking changes,
|
|
19
|
-
specifically around P shade.
|
|
20
|
-
* Iconix API update for rendering icons in various sizes;
|
|
21
|
-
UI components breaking changes in Typography component, specifically
|
|
22
|
-
around P shade.
|
|
23
|
-
* Iconix API update for rendering icons in various sizes;
|
|
24
|
-
UI components breaking changes in Typography component, specifically
|
|
25
|
-
around P shade.
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
# [1.36.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.35.0...@decisiv/ui-components@1.36.0) (2020-08-04)
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
### Bug Fixes
|
|
35
|
-
|
|
36
|
-
* [DDS-510] resolves modal render issues in IE ([#494](https://github.com/Decisiv/decisiv-design-system/issues/494)) ([7f0d4ae](https://github.com/Decisiv/decisiv-design-system/commit/7f0d4ae))
|
|
37
|
-
* **ui-components:** [DDS-462] Combobox input field height changes when typing ([#480](https://github.com/Decisiv/decisiv-design-system/issues/480)) ([21f10a6](https://github.com/Decisiv/decisiv-design-system/commit/21f10a6))
|
|
38
|
-
* **ui-components:** [DDS-469] make combobox chevron clickable ([#465](https://github.com/Decisiv/decisiv-design-system/issues/465)) ([545ea28](https://github.com/Decisiv/decisiv-design-system/commit/545ea28))
|
|
39
|
-
* **ui-components:** adjusts Pagination font-weight ([#482](https://github.com/Decisiv/decisiv-design-system/issues/482)) ([1a25c4f](https://github.com/Decisiv/decisiv-design-system/commit/1a25c4f))
|
|
40
|
-
* [DDS-421] table border inconsistencies ([#413](https://github.com/Decisiv/decisiv-design-system/issues/413)) ([30006bf](https://github.com/Decisiv/decisiv-design-system/commit/30006bf))
|
|
41
|
-
* adjusts Accordion title white-space wrap ([#424](https://github.com/Decisiv/decisiv-design-system/issues/424)) ([5ff64c6](https://github.com/Decisiv/decisiv-design-system/commit/5ff64c6))
|
|
42
|
-
* adjusts today and clear buttons size on SelectDate ([#427](https://github.com/Decisiv/decisiv-design-system/issues/427)) ([fbdaa19](https://github.com/Decisiv/decisiv-design-system/commit/fbdaa19))
|
|
43
|
-
* minor cleanups in the LeftNav ([#406](https://github.com/Decisiv/decisiv-design-system/issues/406)) ([ea4d4b5](https://github.com/Decisiv/decisiv-design-system/commit/ea4d4b5))
|
|
44
|
-
* pass through props in TopNav.Menu ([#471](https://github.com/Decisiv/decisiv-design-system/issues/471)) ([7192198](https://github.com/Decisiv/decisiv-design-system/commit/7192198))
|
|
45
|
-
* **ui-components:** [DDS-471] unable to select RadioGroup and Checkbox ([#466](https://github.com/Decisiv/decisiv-design-system/issues/466)) ([bdb2717](https://github.com/Decisiv/decisiv-design-system/commit/bdb2717))
|
|
46
|
-
* [DDS-430] corrects top nav menu popover width ([#464](https://github.com/Decisiv/decisiv-design-system/issues/464)) ([d3a417d](https://github.com/Decisiv/decisiv-design-system/commit/d3a417d))
|
|
47
|
-
* **ui-components:** [DDS-270] remove getCellKey from table header props ([#343](https://github.com/Decisiv/decisiv-design-system/issues/343)) ([975fece](https://github.com/Decisiv/decisiv-design-system/commit/975fece))
|
|
48
|
-
* **ui-components:** [DDS-396] remove padding in Accordion container ([#422](https://github.com/Decisiv/decisiv-design-system/issues/422)) ([78fd66f](https://github.com/Decisiv/decisiv-design-system/commit/78fd66f))
|
|
49
|
-
* **ui-components:** [DDS-403] render P as a div in tooltip, inline display affects popperjs ([#415](https://github.com/Decisiv/decisiv-design-system/issues/415)) ([69234fd](https://github.com/Decisiv/decisiv-design-system/commit/69234fd))
|
|
50
|
-
* **ui-components:** [DDS-415] set font weight for Tab component to medium ([#420](https://github.com/Decisiv/decisiv-design-system/issues/420)) ([6c3ea7e](https://github.com/Decisiv/decisiv-design-system/commit/6c3ea7e))
|
|
51
|
-
* **ui-components:** normalizes normal tab size ([#394](https://github.com/Decisiv/decisiv-design-system/issues/394)) ([e24055c](https://github.com/Decisiv/decisiv-design-system/commit/e24055c))
|
|
52
|
-
* **ui-components:** resolve prop-types errors ([#454](https://github.com/Decisiv/decisiv-design-system/issues/454)) ([96b04b7](https://github.com/Decisiv/decisiv-design-system/commit/96b04b7))
|
|
53
|
-
* [UI-398] suppress hidden-but-rendered popover window with display:none ([#356](https://github.com/Decisiv/decisiv-design-system/issues/356)) ([93902b1](https://github.com/Decisiv/decisiv-design-system/commit/93902b1))
|
|
54
|
-
* upgrade serialize-javascript, fix typography shade proptype issues ([#393](https://github.com/Decisiv/decisiv-design-system/issues/393)) ([f8e9599](https://github.com/Decisiv/decisiv-design-system/commit/f8e9599))
|
|
55
|
-
* **ui-components:** remove react-use dependency ([#349](https://github.com/Decisiv/decisiv-design-system/issues/349)) ([94be524](https://github.com/Decisiv/decisiv-design-system/commit/94be524))
|
|
56
|
-
* **ui-components:** resolves event bubbling error on radio group ([#363](https://github.com/Decisiv/decisiv-design-system/issues/363)) ([d501939](https://github.com/Decisiv/decisiv-design-system/commit/d501939))
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
### Features
|
|
60
|
-
|
|
61
|
-
* **ui-components:** [DDS-466] extends clickable area on Calendar ([#491](https://github.com/Decisiv/decisiv-design-system/issues/491)) ([ebd4a89](https://github.com/Decisiv/decisiv-design-system/commit/ebd4a89))
|
|
62
|
-
* (iconix) adds additional icons ([#487](https://github.com/Decisiv/decisiv-design-system/issues/487)) ([cf12be1](https://github.com/Decisiv/decisiv-design-system/commit/cf12be1))
|
|
63
|
-
* **Combobox:** [DDS-418] adds "matching text highlight" to Combobox ([#414](https://github.com/Decisiv/decisiv-design-system/issues/414)) ([e72b5b6](https://github.com/Decisiv/decisiv-design-system/commit/e72b5b6))
|
|
64
|
-
* **docs:** [DDS-424] improve API docs on Button ([#418](https://github.com/Decisiv/decisiv-design-system/issues/418)) ([c0e030e](https://github.com/Decisiv/decisiv-design-system/commit/c0e030e))
|
|
65
|
-
* **iconix:** [DDS-445] iconix rework ([#475](https://github.com/Decisiv/decisiv-design-system/issues/475)) ([16a6023](https://github.com/Decisiv/decisiv-design-system/commit/16a6023))
|
|
66
|
-
* **ui-components:** [DDS-129] adds indicatorColor prop to Avatar ([#404](https://github.com/Decisiv/decisiv-design-system/issues/404)) ([c970884](https://github.com/Decisiv/decisiv-design-system/commit/c970884))
|
|
67
|
-
* **ui-components:** [DDS-235] adds combobox component ([#369](https://github.com/Decisiv/decisiv-design-system/issues/369)) ([ef2c976](https://github.com/Decisiv/decisiv-design-system/commit/ef2c976))
|
|
68
|
-
* **ui-components:** [DDS-236] adds Accordion ([#335](https://github.com/Decisiv/decisiv-design-system/issues/335)) ([6bde0c6](https://github.com/Decisiv/decisiv-design-system/commit/6bde0c6))
|
|
69
|
-
* **ui-components:** [DDS-343] adds the SelectMenu component ([#345](https://github.com/Decisiv/decisiv-design-system/issues/345)) ([60a7fd3](https://github.com/Decisiv/decisiv-design-system/commit/60a7fd3))
|
|
70
|
-
* **ui-components:** [DDS-382] adds the LeftNav expanded variant ([#348](https://github.com/Decisiv/decisiv-design-system/issues/348)) ([81c8bcf](https://github.com/Decisiv/decisiv-design-system/commit/81c8bcf))
|
|
71
|
-
* **ui-components:** [DDS-398] adds alwaysRender prop to Popover ([#355](https://github.com/Decisiv/decisiv-design-system/issues/355)) ([b766cb5](https://github.com/Decisiv/decisiv-design-system/commit/b766cb5))
|
|
72
|
-
* **ui-components:** [DDS-404] enable grouping rows in the table ([#367](https://github.com/Decisiv/decisiv-design-system/issues/367)) ([519ee4a](https://github.com/Decisiv/decisiv-design-system/commit/519ee4a))
|
|
73
|
-
* **ui-components:** [DDS-414] allow to hide and disable expand/collapse controls in accordion ([#407](https://github.com/Decisiv/decisiv-design-system/issues/407)) ([899a953](https://github.com/Decisiv/decisiv-design-system/commit/899a953))
|
|
74
|
-
* **ui-components:** [DDS-42] add size variations to Message component ([#430](https://github.com/Decisiv/decisiv-design-system/issues/430)) ([5d5114e](https://github.com/Decisiv/decisiv-design-system/commit/5d5114e))
|
|
75
|
-
* **ui-components:** [DDS-423] SelectDateRange component ([#426](https://github.com/Decisiv/decisiv-design-system/issues/426)) ([b40caaa](https://github.com/Decisiv/decisiv-design-system/commit/b40caaa))
|
|
76
|
-
* **ui-components:** [DDS-427] adds Header Toolbar to Table component ([#432](https://github.com/Decisiv/decisiv-design-system/issues/432)) ([3fcca55](https://github.com/Decisiv/decisiv-design-system/commit/3fcca55))
|
|
77
|
-
* **ui-components:** [DDS-431] multiple selection on SelectMenu ([#417](https://github.com/Decisiv/decisiv-design-system/issues/417)) ([353a6ef](https://github.com/Decisiv/decisiv-design-system/commit/353a6ef))
|
|
78
|
-
* **ui-components:** [DDS-432] add useStickyLeftNav hook ([#429](https://github.com/Decisiv/decisiv-design-system/issues/429)) ([e3dabfb](https://github.com/Decisiv/decisiv-design-system/commit/e3dabfb))
|
|
79
|
-
* **ui-components:** [DDS-434] remove pointer cursor from components that are not links ([#433](https://github.com/Decisiv/decisiv-design-system/issues/433)) ([fc0a43d](https://github.com/Decisiv/decisiv-design-system/commit/fc0a43d))
|
|
80
|
-
* **ui-components:** [DDS-438] adds zIndex prop to multiple components ([#421](https://github.com/Decisiv/decisiv-design-system/issues/421)) ([6aae330](https://github.com/Decisiv/decisiv-design-system/commit/6aae330))
|
|
81
|
-
* **ui-components:** [DDS-447] add OptionsList atom ([#463](https://github.com/Decisiv/decisiv-design-system/issues/463)) ([60c2288](https://github.com/Decisiv/decisiv-design-system/commit/60c2288))
|
|
82
|
-
* **ui-components:** [DDS-448] integrate OptionsList into Menu ([#474](https://github.com/Decisiv/decisiv-design-system/issues/474)) ([1b3cc57](https://github.com/Decisiv/decisiv-design-system/commit/1b3cc57))
|
|
83
|
-
* **ui-components:** [DDS-449] integrate OptionsList into DropdownList ([#476](https://github.com/Decisiv/decisiv-design-system/issues/476)) ([919f50b](https://github.com/Decisiv/decisiv-design-system/commit/919f50b))
|
|
84
|
-
* **ui-components:** [DDS-451] change date format in select date components ([#445](https://github.com/Decisiv/decisiv-design-system/issues/445)) ([0514bb6](https://github.com/Decisiv/decisiv-design-system/commit/0514bb6))
|
|
85
|
-
* **ui-components:** [DDS-452] add counter to top nav button ([#440](https://github.com/Decisiv/decisiv-design-system/issues/440)) ([6a7c8a9](https://github.com/Decisiv/decisiv-design-system/commit/6a7c8a9))
|
|
86
|
-
* **ui-components:** adds collapsed mode to left nav ([#390](https://github.com/Decisiv/decisiv-design-system/issues/390)) ([95802ae](https://github.com/Decisiv/decisiv-design-system/commit/95802ae))
|
|
87
|
-
* **ui-components:** removes horizontal scroll from Notifications ([#479](https://github.com/Decisiv/decisiv-design-system/issues/479)) ([949f1d4](https://github.com/Decisiv/decisiv-design-system/commit/949f1d4))
|
|
88
|
-
* [DDS-208][DDS-267] adds Notification component ([#402](https://github.com/Decisiv/decisiv-design-system/issues/402)) ([959123a](https://github.com/Decisiv/decisiv-design-system/commit/959123a)), closes [#425](https://github.com/Decisiv/decisiv-design-system/issues/425)
|
|
89
|
-
* [DDS-405] adds Calendar atom ([#372](https://github.com/Decisiv/decisiv-design-system/issues/372)) ([499a4a3](https://github.com/Decisiv/decisiv-design-system/commit/499a4a3)), closes [#377](https://github.com/Decisiv/decisiv-design-system/issues/377)
|
|
90
|
-
* [DDS-422] add ability to disable dates via a set of rules ([#403](https://github.com/Decisiv/decisiv-design-system/issues/403)) ([f8f6969](https://github.com/Decisiv/decisiv-design-system/commit/f8f6969))
|
|
91
|
-
* [DDS-430] adds top nav with elements ([#423](https://github.com/Decisiv/decisiv-design-system/issues/423)) ([a566742](https://github.com/Decisiv/decisiv-design-system/commit/a566742))
|
|
92
|
-
* pass ref to popover in topnav menu ([#472](https://github.com/Decisiv/decisiv-design-system/issues/472)) ([8fa6e89](https://github.com/Decisiv/decisiv-design-system/commit/8fa6e89))
|
|
93
|
-
* **ui-components:** [DDS-460] change chevron icon with caret small icon in left nav accordion ([#442](https://github.com/Decisiv/decisiv-design-system/issues/442)) ([5d55f98](https://github.com/Decisiv/decisiv-design-system/commit/5d55f98))
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
# [1.35.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.34.0...@decisiv/ui-components@1.35.0) (2019-12-18)
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
### Bug Fixes
|
|
103
|
-
|
|
104
|
-
* **ui-components:** [DDS-353] fixes Modal shift-tab keyboard interactions ([#286](https://github.com/Decisiv/decisiv-design-system/issues/286)) ([a629b89](https://github.com/Decisiv/decisiv-design-system/commit/a629b89))
|
|
105
|
-
* [DDS-340] accessibility audit ([#258](https://github.com/Decisiv/decisiv-design-system/issues/258)) ([1feb8ad](https://github.com/Decisiv/decisiv-design-system/commit/1feb8ad))
|
|
106
|
-
* **ui-components:** [DDS-337] update Input Field Warning Focus ([#264](https://github.com/Decisiv/decisiv-design-system/issues/264)) ([e51230a](https://github.com/Decisiv/decisiv-design-system/commit/e51230a))
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
### Features
|
|
110
|
-
|
|
111
|
-
* [DDS-344] apply baseline styles / CSS normalizer ([#315](https://github.com/Decisiv/decisiv-design-system/issues/315)) ([af50803](https://github.com/Decisiv/decisiv-design-system/commit/af50803))
|
|
112
|
-
* **ui-components:** [DDS-268] adds Pagination component ([#234](https://github.com/Decisiv/decisiv-design-system/issues/234)) ([0fdad24](https://github.com/Decisiv/decisiv-design-system/commit/0fdad24))
|
|
113
|
-
* **ui-components:** [DDS-349] adds a Table Footer ([#311](https://github.com/Decisiv/decisiv-design-system/issues/311)) ([edddb8a](https://github.com/Decisiv/decisiv-design-system/commit/edddb8a))
|
|
114
|
-
* adds table scrolling ([#298](https://github.com/Decisiv/decisiv-design-system/issues/298)) ([69bd355](https://github.com/Decisiv/decisiv-design-system/commit/69bd355))
|
|
115
|
-
* **ui-components:** [DDS-270] adds basic table rendering engine ([#248](https://github.com/Decisiv/decisiv-design-system/issues/248)) ([47237bb](https://github.com/Decisiv/decisiv-design-system/commit/47237bb))
|
|
116
|
-
* **ui-components:** [DDS-31] adds select box component ([#229](https://github.com/Decisiv/decisiv-design-system/issues/229)) ([063c48b](https://github.com/Decisiv/decisiv-design-system/commit/063c48b))
|
|
117
|
-
* **ui-components:** [DDS-333] removes padding / margin from typography components ([#299](https://github.com/Decisiv/decisiv-design-system/issues/299)) ([a611ee3](https://github.com/Decisiv/decisiv-design-system/commit/a611ee3))
|
|
118
|
-
* **ui-components:** [DDS-347] adds table column-click sorting ([#283](https://github.com/Decisiv/decisiv-design-system/issues/283)) ([39e8272](https://github.com/Decisiv/decisiv-design-system/commit/39e8272))
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
# [1.34.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.33.1...@decisiv/ui-components@1.34.0) (2019-11-22)
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
### Bug Fixes
|
|
128
|
-
|
|
129
|
-
* **ui-components:** [DDS-320] prevents button text from wrapping ([#228](https://github.com/Decisiv/decisiv-design-system/issues/228)) ([72d718a](https://github.com/Decisiv/decisiv-design-system/commit/72d718a))
|
|
130
|
-
* [DDS-338] resolves issues with grid layout and props ([#267](https://github.com/Decisiv/decisiv-design-system/issues/267)) ([3546c3c](https://github.com/Decisiv/decisiv-design-system/commit/3546c3c))
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
### Features
|
|
134
|
-
|
|
135
|
-
* **ui-components:** [DDS-286] adds modal component ([#175](https://github.com/Decisiv/decisiv-design-system/issues/175)) ([658908b](https://github.com/Decisiv/decisiv-design-system/commit/658908b))
|
|
136
|
-
* **ui-components:** [DDS-327] adds Grid components ([#243](https://github.com/Decisiv/decisiv-design-system/issues/243)) ([526e105](https://github.com/Decisiv/decisiv-design-system/commit/526e105))
|
|
137
|
-
* **ui-components:** [DDS-339] upgrade to styled-components v5 ([#262](https://github.com/Decisiv/decisiv-design-system/issues/262)) ([ecae0e9](https://github.com/Decisiv/decisiv-design-system/commit/ecae0e9))
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
## [1.33.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.33.0...@decisiv/ui-components@1.33.1) (2019-11-15)
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
### Bug Fixes
|
|
147
|
-
|
|
148
|
-
* **ui-components:** [DDS-328] auto-create default portals root ([4eacfc6](https://github.com/Decisiv/decisiv-design-system/commit/4eacfc6))
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
# [1.33.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.8...@decisiv/ui-components@1.33.0) (2019-11-01)
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
### Features
|
|
158
|
-
|
|
159
|
-
* **ui-components:** [DDS-328] use `html body .key-ds` namespace ([#223](https://github.com/Decisiv/decisiv-design-system/issues/223)) ([1a374fa](https://github.com/Decisiv/decisiv-design-system/commit/1a374fa))
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
## [1.32.8](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.7...@decisiv/ui-components@1.32.8) (2019-10-24)
|
|
166
|
-
|
|
167
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
## [1.32.7](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.6...@decisiv/ui-components@1.32.7) (2019-10-23)
|
|
174
|
-
|
|
175
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
## [1.32.6](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.5...@decisiv/ui-components@1.32.6) (2019-10-21)
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
### Bug Fixes
|
|
185
|
-
|
|
186
|
-
* **ui-components:** [CASE-12579] ensure equal width/height avatar/badge on IE11 ([#192](https://github.com/Decisiv/decisiv-design-system/issues/192)) ([f4810ba](https://github.com/Decisiv/decisiv-design-system/commit/f4810ba))
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
## [1.32.5](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.4...@decisiv/ui-components@1.32.5) (2019-10-18)
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
### Bug Fixes
|
|
196
|
-
|
|
197
|
-
* **ui-components:** [CASE-12527] fix IE11 dropdown focus jumping ([#187](https://github.com/Decisiv/decisiv-design-system/issues/187)) ([389d837](https://github.com/Decisiv/decisiv-design-system/commit/389d837))
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
## [1.32.4](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.3...@decisiv/ui-components@1.32.4) (2019-10-17)
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
### Bug Fixes
|
|
207
|
-
|
|
208
|
-
* **ui-components:** [DDS-323] support IE11 with JumpTo scrolling ([#186](https://github.com/Decisiv/decisiv-design-system/issues/186)) ([fe4f701](https://github.com/Decisiv/decisiv-design-system/commit/fe4f701))
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
## [1.32.3](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.2...@decisiv/ui-components@1.32.3) (2019-10-16)
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
### Bug Fixes
|
|
218
|
-
|
|
219
|
-
* [DDS-318] updates README files to link to KDS docs site ([#185](https://github.com/Decisiv/decisiv-design-system/issues/185)) ([21a30cf](https://github.com/Decisiv/decisiv-design-system/commit/21a30cf))
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
## [1.32.2](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.1...@decisiv/ui-components@1.32.2) (2019-10-15)
|
|
226
|
-
|
|
227
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
## [1.32.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.32.0...@decisiv/ui-components@1.32.1) (2019-10-14)
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
### Bug Fixes
|
|
237
|
-
|
|
238
|
-
* **ui-components:** [DDS-306] left align multi-line Message text ([#181](https://github.com/Decisiv/decisiv-design-system/issues/181)) ([a2e2934](https://github.com/Decisiv/decisiv-design-system/commit/a2e2934))
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
# [1.32.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.31.3...@decisiv/ui-components@1.32.0) (2019-10-14)
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
### Features
|
|
248
|
-
|
|
249
|
-
* **docs:** [DDS-281] adds access check to decisiv.com docs deployment ([#183](https://github.com/Decisiv/decisiv-design-system/issues/183)) ([a22e74f](https://github.com/Decisiv/decisiv-design-system/commit/a22e74f))
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
## [1.31.3](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.31.2...@decisiv/ui-components@1.31.3) (2019-10-10)
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
### Bug Fixes
|
|
259
|
-
|
|
260
|
-
* update to latest styled-components-modifiers ([#178](https://github.com/Decisiv/decisiv-design-system/issues/178)) ([0fa7e3a](https://github.com/Decisiv/decisiv-design-system/commit/0fa7e3a))
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
## [1.31.2](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.31.1...@decisiv/ui-components@1.31.2) (2019-10-09)
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
### Bug Fixes
|
|
270
|
-
|
|
271
|
-
* [DDS-284] preparing for NPM publish ([#177](https://github.com/Decisiv/decisiv-design-system/issues/177)) ([3528b23](https://github.com/Decisiv/decisiv-design-system/commit/3528b23))
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
## [1.31.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.31.0...@decisiv/ui-components@1.31.1) (2019-10-09)
|
|
278
|
-
|
|
279
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
# [1.31.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.30.0...@decisiv/ui-components@1.31.0) (2019-10-08)
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
### Features
|
|
289
|
-
|
|
290
|
-
* switch to peer dependencies for React, etc ([#163](https://github.com/Decisiv/decisiv-design-system/issues/163)) ([4c76bde](https://github.com/Decisiv/decisiv-design-system/commit/4c76bde))
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
# [1.30.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.29.4...@decisiv/ui-components@1.30.0) (2019-10-03)
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
### Features
|
|
300
|
-
|
|
301
|
-
* **ui-components:** [DDS-230] adds character limit / count to TextArea ([#150](https://github.com/Decisiv/decisiv-design-system/issues/150)) ([b402ac2](https://github.com/Decisiv/decisiv-design-system/commit/b402ac2))
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
## [1.29.4](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.29.3...@decisiv/ui-components@1.29.4) (2019-10-03)
|
|
308
|
-
|
|
309
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
## [1.29.3](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.29.2...@decisiv/ui-components@1.29.3) (2019-09-30)
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
### Bug Fixes
|
|
319
|
-
|
|
320
|
-
* **ui-components:** fix max-width substitution for Tag Content ([#157](https://github.com/Decisiv/decisiv-design-system/issues/157)) ([16fd4be](https://github.com/Decisiv/decisiv-design-system/commit/16fd4be))
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
## [1.29.2](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.29.1...@decisiv/ui-components@1.29.2) (2019-09-30)
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
### Bug Fixes
|
|
330
|
-
|
|
331
|
-
* **ui-components:** [DDS-97] adds normalizing font styles where needed ([#153](https://github.com/Decisiv/decisiv-design-system/issues/153)) ([6d1a6bd](https://github.com/Decisiv/decisiv-design-system/commit/6d1a6bd))
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
## [1.29.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.29.0...@decisiv/ui-components@1.29.1) (2019-09-26)
|
|
338
|
-
|
|
339
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
# [1.29.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.28.0...@decisiv/ui-components@1.29.0) (2019-09-26)
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
### Features
|
|
349
|
-
|
|
350
|
-
* **ui-components:** [DDS-38] adds the Toggle component ([#146](https://github.com/Decisiv/decisiv-design-system/issues/146)) ([f4251da](https://github.com/Decisiv/decisiv-design-system/commit/f4251da))
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
# [1.28.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.27.0...@decisiv/ui-components@1.28.0) (2019-09-26)
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
### Features
|
|
360
|
-
|
|
361
|
-
* **ui-components:** [DDS-203] adds DropdownList component ([#139](https://github.com/Decisiv/decisiv-design-system/issues/139)) ([08fd979](https://github.com/Decisiv/decisiv-design-system/commit/08fd979))
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
# [1.27.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.26.4...@decisiv/ui-components@1.27.0) (2019-09-24)
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
### Features
|
|
371
|
-
|
|
372
|
-
* **ui-components:** [DDS-297] adds z-index to Flex and JumpTo ([#151](https://github.com/Decisiv/decisiv-design-system/issues/151)) ([3b29a24](https://github.com/Decisiv/decisiv-design-system/commit/3b29a24))
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
|
|
376
|
-
|
|
377
|
-
|
|
378
|
-
## [1.26.4](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.26.3...@decisiv/ui-components@1.26.4) (2019-09-19)
|
|
379
|
-
|
|
380
|
-
|
|
381
|
-
### Bug Fixes
|
|
382
|
-
|
|
383
|
-
* **docs:** [DDS-294] fix Props docs for TextField/TextArea ([#149](https://github.com/Decisiv/decisiv-design-system/issues/149)) ([237537b](https://github.com/Decisiv/decisiv-design-system/commit/237537b))
|
|
384
|
-
|
|
385
|
-
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
|
|
389
|
-
## [1.26.3](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.26.2...@decisiv/ui-components@1.26.3) (2019-09-19)
|
|
390
|
-
|
|
391
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
|
|
397
|
-
## [1.26.2](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.26.1...@decisiv/ui-components@1.26.2) (2019-09-17)
|
|
398
|
-
|
|
399
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
## [1.26.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.26.0...@decisiv/ui-components@1.26.1) (2019-09-16)
|
|
406
|
-
|
|
407
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
# [1.26.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.25.2...@decisiv/ui-components@1.26.0) (2019-09-04)
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
### Bug Fixes
|
|
417
|
-
|
|
418
|
-
* **ui-components:** [DDS-263] fixes JumpTo target offset calculation ([#143](https://github.com/Decisiv/decisiv-design-system/issues/143)) ([dafa062](https://github.com/Decisiv/decisiv-design-system/commit/dafa062))
|
|
419
|
-
|
|
420
|
-
|
|
421
|
-
### Features
|
|
422
|
-
|
|
423
|
-
* **docs,ui-components:** [DDS-192] adds TextArea component ([#138](https://github.com/Decisiv/decisiv-design-system/issues/138)) ([c2d131a](https://github.com/Decisiv/decisiv-design-system/commit/c2d131a))
|
|
424
|
-
* **docs,ui-components:** [DDS-40] adds TextField component ([d04ebf3](https://github.com/Decisiv/decisiv-design-system/commit/d04ebf3))
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
## [1.25.2](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.25.1...@decisiv/ui-components@1.25.2) (2019-08-23)
|
|
431
|
-
|
|
432
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
|
|
437
|
-
|
|
438
|
-
## [1.25.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.25.0...@decisiv/ui-components@1.25.1) (2019-08-23)
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
### Bug Fixes
|
|
442
|
-
|
|
443
|
-
* **ui-components:** modify how types are exported from some components ([#141](https://github.com/Decisiv/decisiv-design-system/issues/141)) ([09aa839](https://github.com/Decisiv/decisiv-design-system/commit/09aa839))
|
|
444
|
-
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
|
|
448
|
-
|
|
449
|
-
# [1.25.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.24.2...@decisiv/ui-components@1.25.0) (2019-08-16)
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
### Features
|
|
453
|
-
|
|
454
|
-
* **docs:** [DDS-87] add Netlify CMS ([#86](https://github.com/Decisiv/decisiv-design-system/issues/86)) ([5f18d58](https://github.com/Decisiv/decisiv-design-system/commit/5f18d58))
|
|
455
|
-
|
|
456
|
-
|
|
457
|
-
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
## [1.24.2](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.24.1...@decisiv/ui-components@1.24.2) (2019-08-16)
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
### Bug Fixes
|
|
464
|
-
|
|
465
|
-
* **docs:** [DDS-211] improve knobs consistency ([#120](https://github.com/Decisiv/decisiv-design-system/issues/120)) ([e7ce8ce](https://github.com/Decisiv/decisiv-design-system/commit/e7ce8ce))
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
## [1.24.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.24.0...@decisiv/ui-components@1.24.1) (2019-08-16)
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
### Bug Fixes
|
|
475
|
-
|
|
476
|
-
* [DDS-218] update Checkbox, JumpTo, Link and Menu examples ([#111](https://github.com/Decisiv/decisiv-design-system/issues/111)) ([74d2432](https://github.com/Decisiv/decisiv-design-system/commit/74d2432))
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
# [1.24.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.23.0...@decisiv/ui-components@1.24.0) (2019-08-16)
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
### Features
|
|
486
|
-
|
|
487
|
-
* **ui-components:** [DDS-195,DDS-196] add focus styles to Link and Breadcrumbs ([#109](https://github.com/Decisiv/decisiv-design-system/issues/109)) ([87975cf](https://github.com/Decisiv/decisiv-design-system/commit/87975cf))
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
# [1.23.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.22.0...@decisiv/ui-components@1.23.0) (2019-08-15)
|
|
494
|
-
|
|
495
|
-
|
|
496
|
-
### Features
|
|
497
|
-
|
|
498
|
-
* **ui-components:** [DDS-199] add focus state styles to the Menu component ([#105](https://github.com/Decisiv/decisiv-design-system/issues/105)) ([58e42bb](https://github.com/Decisiv/decisiv-design-system/commit/58e42bb))
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
|
|
502
|
-
|
|
503
|
-
|
|
504
|
-
# [1.22.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.21.0...@decisiv/ui-components@1.22.0) (2019-08-15)
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
### Features
|
|
508
|
-
|
|
509
|
-
* **ui-components:** [DDS-39,DDS-184,DDS-197,DDS-200,DDS-214,DDS-215] add Checkbox, CheckboxGroup and RadioGroup components ([#100](https://github.com/Decisiv/decisiv-design-system/issues/100)) ([3fdfd68](https://github.com/Decisiv/decisiv-design-system/commit/3fdfd68))
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
# [1.21.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.20.1...@decisiv/ui-components@1.21.0) (2019-08-15)
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
### Features
|
|
519
|
-
|
|
520
|
-
* **ui-components:** [DDS-181,DDS-198,DDS-201] add focus styles to Button, Jump To, Tag ([#104](https://github.com/Decisiv/decisiv-design-system/issues/104)) ([dd9d68b](https://github.com/Decisiv/decisiv-design-system/commit/dd9d68b)), closes [#106](https://github.com/Decisiv/decisiv-design-system/issues/106) [#125](https://github.com/Decisiv/decisiv-design-system/issues/125)
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
## [1.20.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.20.0...@decisiv/ui-components@1.20.1) (2019-08-14)
|
|
527
|
-
|
|
528
|
-
|
|
529
|
-
### Bug Fixes
|
|
530
|
-
|
|
531
|
-
* **ui-components:** [DDS-221] fix tabs focus state ([#114](https://github.com/Decisiv/decisiv-design-system/issues/114)) ([4e74907](https://github.com/Decisiv/decisiv-design-system/commit/4e74907))
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
|
|
537
|
-
# [1.20.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.19.0...@decisiv/ui-components@1.20.0) (2019-08-08)
|
|
538
|
-
|
|
539
|
-
|
|
540
|
-
### Features
|
|
541
|
-
|
|
542
|
-
* **ui-components:** [DDS-95] add menu variant to jump to ([#92](https://github.com/Decisiv/decisiv-design-system/issues/92)) ([b2da90e](https://github.com/Decisiv/decisiv-design-system/commit/b2da90e))
|
|
543
|
-
|
|
544
|
-
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
|
|
548
|
-
# [1.19.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.18.0...@decisiv/ui-components@1.19.0) (2019-08-08)
|
|
549
|
-
|
|
550
|
-
|
|
551
|
-
### Features
|
|
552
|
-
|
|
553
|
-
* **design-tokens:** [DDS-194] update interaction colors ([#103](https://github.com/Decisiv/decisiv-design-system/issues/103)) ([8aaad1a](https://github.com/Decisiv/decisiv-design-system/commit/8aaad1a))
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
# [1.18.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.17.0...@decisiv/ui-components@1.18.0) (2019-08-08)
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
### Features
|
|
563
|
-
|
|
564
|
-
* **ui-components:** [DDS-193] force ConfigProvider to always use light mode ([#102](https://github.com/Decisiv/decisiv-design-system/issues/102)) ([2dfb218](https://github.com/Decisiv/decisiv-design-system/commit/2dfb218))
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
# [1.17.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.16.0...@decisiv/ui-components@1.17.0) (2019-08-08)
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
### Features
|
|
574
|
-
|
|
575
|
-
* **ui-components:** [DDS-48] add Tabs component ([#101](https://github.com/Decisiv/decisiv-design-system/issues/101)) ([ae284a0](https://github.com/Decisiv/decisiv-design-system/commit/ae284a0))
|
|
576
|
-
|
|
577
|
-
|
|
578
|
-
|
|
579
|
-
|
|
580
|
-
|
|
581
|
-
# [1.16.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.15.0...@decisiv/ui-components@1.16.0) (2019-08-08)
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
### Features
|
|
585
|
-
|
|
586
|
-
* **ui-components:** [DDS-34] add Message component ([#94](https://github.com/Decisiv/decisiv-design-system/issues/94)) ([cf89659](https://github.com/Decisiv/decisiv-design-system/commit/cf89659))
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
|
|
591
|
-
|
|
592
|
-
# [1.15.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.14.1...@decisiv/ui-components@1.15.0) (2019-08-08)
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
### Features
|
|
596
|
-
|
|
597
|
-
* **ui-components:** [DDS-176] add active state to button, menu, link and tag ([#90](https://github.com/Decisiv/decisiv-design-system/issues/90)) ([06f437a](https://github.com/Decisiv/decisiv-design-system/commit/06f437a))
|
|
598
|
-
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
## [1.14.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.14.0...@decisiv/ui-components@1.14.1) (2019-08-07)
|
|
604
|
-
|
|
605
|
-
|
|
606
|
-
### Bug Fixes
|
|
607
|
-
|
|
608
|
-
* **ui-components:** [DDS-164,DDS-173] button fontWeight and bg colors ([#77](https://github.com/Decisiv/decisiv-design-system/issues/77)) ([8075a19](https://github.com/Decisiv/decisiv-design-system/commit/8075a19))
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
|
|
613
|
-
|
|
614
|
-
# [1.14.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.13.0...@decisiv/ui-components@1.14.0) (2019-08-07)
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
### Features
|
|
618
|
-
|
|
619
|
-
* **prop-types,ui-components:** [DDS-171][DDS-180] adds colors, shading, and truncation to typography) ([#87](https://github.com/Decisiv/decisiv-design-system/issues/87)) ([5841384](https://github.com/Decisiv/decisiv-design-system/commit/5841384))
|
|
620
|
-
|
|
621
|
-
|
|
622
|
-
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
# [1.13.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.12.1...@decisiv/ui-components@1.13.0) (2019-08-07)
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
### Features
|
|
629
|
-
|
|
630
|
-
* **ui-components:** [DDS-177] make tag take at most 300px ([#91](https://github.com/Decisiv/decisiv-design-system/issues/91)) ([af60f1e](https://github.com/Decisiv/decisiv-design-system/commit/af60f1e))
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
## [1.12.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.12.0...@decisiv/ui-components@1.12.1) (2019-08-06)
|
|
637
|
-
|
|
638
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
# [1.12.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.11.0...@decisiv/ui-components@1.12.0) (2019-08-06)
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
### Features
|
|
648
|
-
|
|
649
|
-
* **design-tokens:** [DDS-178,DDS-179] add "licorice mousse" color tokens ([#89](https://github.com/Decisiv/decisiv-design-system/issues/89)) ([a91cc65](https://github.com/Decisiv/decisiv-design-system/commit/a91cc65))
|
|
650
|
-
* **docs:** [DDS-134] add color & theming documentation page ([#80](https://github.com/Decisiv/decisiv-design-system/issues/80)) ([d4b013f](https://github.com/Decisiv/decisiv-design-system/commit/d4b013f))
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
# [1.11.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.10.1...@decisiv/ui-components@1.11.0) (2019-07-31)
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
### Features
|
|
660
|
-
|
|
661
|
-
* **docs,ui-components:** [DDS-81] adds JumpTo ([#64](https://github.com/Decisiv/decisiv-design-system/issues/64)) ([8f85c1c](https://github.com/Decisiv/decisiv-design-system/commit/8f85c1c))
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
665
|
-
|
|
666
|
-
|
|
667
|
-
## [1.10.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.10.0...@decisiv/ui-components@1.10.1) (2019-07-23)
|
|
668
|
-
|
|
669
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
670
|
-
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
# [1.10.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.9.0...@decisiv/ui-components@1.10.0) (2019-07-23)
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
### Features
|
|
679
|
-
|
|
680
|
-
* **iconix:** 190722 iconix update ([#85](https://github.com/Decisiv/decisiv-design-system/issues/85)) ([0aef10f](https://github.com/Decisiv/decisiv-design-system/commit/0aef10f))
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
# [1.9.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.8.0...@decisiv/ui-components@1.9.0) (2019-07-22)
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
### Bug Fixes
|
|
690
|
-
|
|
691
|
-
* **ui-components:** [DDS-29] make the tooltip be 24px in height ([#70](https://github.com/Decisiv/decisiv-design-system/issues/70)) ([dee1c84](https://github.com/Decisiv/decisiv-design-system/commit/dee1c84))
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
### Features
|
|
695
|
-
|
|
696
|
-
* **design-tokens:** [DDS-157] adds skyplanes ([#74](https://github.com/Decisiv/decisiv-design-system/issues/74)) ([25cf24e](https://github.com/Decisiv/decisiv-design-system/commit/25cf24e))
|
|
697
|
-
* **docs:** [DDS-156] automate component props documentation ([#57](https://github.com/Decisiv/decisiv-design-system/issues/57)) ([#82](https://github.com/Decisiv/decisiv-design-system/issues/82)) ([600b1f9](https://github.com/Decisiv/decisiv-design-system/commit/600b1f9))
|
|
698
|
-
* **ui-components,docs:** [DDS-152] add Menu component ([#67](https://github.com/Decisiv/decisiv-design-system/issues/67)) ([323f2f9](https://github.com/Decisiv/decisiv-design-system/commit/323f2f9))
|
|
699
|
-
|
|
700
|
-
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
# [1.8.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.7.1...@decisiv/ui-components@1.8.0) (2019-07-18)
|
|
705
|
-
|
|
706
|
-
|
|
707
|
-
### Features
|
|
708
|
-
|
|
709
|
-
* **ui-components:** [DDS-159] extract prop-type validators to package ([#71](https://github.com/Decisiv/decisiv-design-system/issues/71)) ([660e6de](https://github.com/Decisiv/decisiv-design-system/commit/660e6de))
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
|
|
715
|
-
## [1.7.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.7.0...@decisiv/ui-components@1.7.1) (2019-07-18)
|
|
716
|
-
|
|
717
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
|
|
723
|
-
# [1.7.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.6.1...@decisiv/ui-components@1.7.0) (2019-07-18)
|
|
724
|
-
|
|
725
|
-
|
|
726
|
-
### Bug Fixes
|
|
727
|
-
|
|
728
|
-
* **ui-components:** [DDS-37] adjust font size in medium avatar ([#66](https://github.com/Decisiv/decisiv-design-system/issues/66)) ([ce98002](https://github.com/Decisiv/decisiv-design-system/commit/ce98002))
|
|
729
|
-
|
|
730
|
-
|
|
731
|
-
### Features
|
|
732
|
-
|
|
733
|
-
* **design-tokens:** [DDS-135,DDS-136] add opacity colors group ([#60](https://github.com/Decisiv/decisiv-design-system/issues/60)) ([76d85a0](https://github.com/Decisiv/decisiv-design-system/commit/76d85a0)), closes [#61](https://github.com/Decisiv/decisiv-design-system/issues/61)
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
## [1.6.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.6.0...@decisiv/ui-components@1.6.1) (2019-07-16)
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
### Bug Fixes
|
|
743
|
-
|
|
744
|
-
* **security:** upgrade lodash to ^4.17.14 ([#76](https://github.com/Decisiv/decisiv-design-system/issues/76)) ([adc41f1](https://github.com/Decisiv/decisiv-design-system/commit/adc41f1)), closes [#69](https://github.com/Decisiv/decisiv-design-system/issues/69)
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
# [1.6.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.5.0...@decisiv/ui-components@1.6.0) (2019-07-15)
|
|
751
|
-
|
|
752
|
-
### Features
|
|
753
|
-
|
|
754
|
-
- **ui-components:** [DDS-127,DDS-128] adds ghost button component ([#50](https://github.com/Decisiv/decisiv-design-system/issues/50)) ([0426b11](https://github.com/Decisiv/decisiv-design-system/commit/0426b11))
|
|
755
|
-
|
|
756
|
-
# [1.5.0](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.4.1...@decisiv/ui-components@1.5.0) (2019-07-12)
|
|
757
|
-
|
|
758
|
-
### Features
|
|
759
|
-
|
|
760
|
-
- **docs,ui-components:** [DDS-116] adds Badge component ([#54](https://github.com/Decisiv/decisiv-design-system/issues/54)) ([6a9b696](https://github.com/Decisiv/decisiv-design-system/commit/6a9b696))
|
|
761
|
-
|
|
762
|
-
## [1.4.1](https://github.com/Decisiv/decisiv-design-system/compare/@decisiv/ui-components@1.4.0...@decisiv/ui-components@1.4.1) (2019-07-11)
|
|
763
|
-
|
|
764
|
-
**Note:** Version bump only for package @decisiv/ui-components
|
|
765
|
-
|
|
766
|
-
# 1.4.0 (2019-07-11)
|
|
767
|
-
|
|
768
|
-
### Bug Fixes
|
|
769
|
-
|
|
770
|
-
- **core:** bypass typescript's incremental builds ([#17](https://github.com/Decisiv/decisiv-design-system/issues/17)) ([7aa7018](https://github.com/Decisiv/decisiv-design-system/commit/7aa7018))
|
|
771
|
-
- **docs:** [DDS-100] fix storybook render failures on IE11 ([#40](https://github.com/Decisiv/decisiv-design-system/issues/40)) ([8fda26a](https://github.com/Decisiv/decisiv-design-system/commit/8fda26a))
|
|
772
|
-
- [DDS-111] clean up [@decisiv](https://github.com/decisiv) dependency semvers ([#56](https://github.com/Decisiv/decisiv-design-system/issues/56)) ([66ff2c5](https://github.com/Decisiv/decisiv-design-system/commit/66ff2c5))
|
|
773
|
-
- [DDS-111] fix issues due to initial v1.0.0 gemfury release ([#55](https://github.com/Decisiv/decisiv-design-system/issues/55)) ([94a3e94](https://github.com/Decisiv/decisiv-design-system/commit/94a3e94))
|
|
774
|
-
|
|
775
|
-
### Features
|
|
776
|
-
|
|
777
|
-
- **DDS-74:** add design tokens package ([#7](https://github.com/Decisiv/decisiv-design-system/issues/7)) ([abfbb06](https://github.com/Decisiv/decisiv-design-system/commit/abfbb06))
|
|
778
|
-
- **DDS-75, DDS-70:** adds flex to ui-component package ([#5](https://github.com/Decisiv/decisiv-design-system/issues/5)) ([d2ef121](https://github.com/Decisiv/decisiv-design-system/commit/d2ef121))
|
|
779
|
-
- **DDS-84:** reactive component pattern toolset ([#19](https://github.com/Decisiv/decisiv-design-system/issues/19)) ([7d71591](https://github.com/Decisiv/decisiv-design-system/commit/7d71591))
|
|
780
|
-
- **DDS-86:** adds withLabel atom helper ([#20](https://github.com/Decisiv/decisiv-design-system/issues/20)) ([e963ef7](https://github.com/Decisiv/decisiv-design-system/commit/e963ef7))
|
|
781
|
-
- **docs:** add iconography documentation ([#22](https://github.com/Decisiv/decisiv-design-system/issues/22)) ([e283173](https://github.com/Decisiv/decisiv-design-system/commit/e283173))
|
|
782
|
-
- **docs:** improve organization and add mdx support ([#16](https://github.com/Decisiv/decisiv-design-system/issues/16)) ([5fc0c26](https://github.com/Decisiv/decisiv-design-system/commit/5fc0c26))
|
|
783
|
-
- **docs,ui-components:** [DDS-125] adds paragraph size small and code ([#51](https://github.com/Decisiv/decisiv-design-system/issues/51)) ([1782e01](https://github.com/Decisiv/decisiv-design-system/commit/1782e01))
|
|
784
|
-
- **docs,ui-components:** [DDS-37] adds Avatar component ([#45](https://github.com/Decisiv/decisiv-design-system/issues/45)) ([3056067](https://github.com/Decisiv/decisiv-design-system/commit/3056067))
|
|
785
|
-
- **docs,ui-components:** [DDS-85] adds Breadcrumbs component ([#41](https://github.com/Decisiv/decisiv-design-system/issues/41), [#49](https://github.com/Decisiv/decisiv-design-system/issues/49)) ([7135913](https://github.com/Decisiv/decisiv-design-system/commit/7135913))
|
|
786
|
-
- **iconix:** export SVGs as react components ([#28](https://github.com/Decisiv/decisiv-design-system/issues/28)) ([809f155](https://github.com/Decisiv/decisiv-design-system/commit/809f155))
|
|
787
|
-
- **static-styles:** add styled-components-static-styles package ([#12](https://github.com/Decisiv/decisiv-design-system/issues/12)) ([e36dae3](https://github.com/Decisiv/decisiv-design-system/commit/e36dae3))
|
|
788
|
-
- **ui-components:** [DDS-107] add React.forwardRef support to Link ([#46](https://github.com/Decisiv/decisiv-design-system/issues/46)) ([67f0987](https://github.com/Decisiv/decisiv-design-system/commit/67f0987))
|
|
789
|
-
- **ui-components:** [DDS-79,DDS-80] add small/medium button component ([#35](https://github.com/Decisiv/decisiv-design-system/issues/35)) ([b62067c](https://github.com/Decisiv/decisiv-design-system/commit/b62067c))
|
|
790
|
-
- **ui-components:** DDS-93 DDS-94 add Link and ConfigProvider components ([#33](https://github.com/Decisiv/decisiv-design-system/issues/33)) ([bdadc67](https://github.com/Decisiv/decisiv-design-system/commit/bdadc67))
|
|
791
|
-
- [DDS-158] switch to Lerna publish with conventional-commits ([#59](https://github.com/Decisiv/decisiv-design-system/issues/59)) ([232d268](https://github.com/Decisiv/decisiv-design-system/commit/232d268))
|
|
792
|
-
- **ui-components,design-tokens:** [DDS-32] adds Typography components ([#39](https://github.com/Decisiv/decisiv-design-system/issues/39)) ([542cff4](https://github.com/Decisiv/decisiv-design-system/commit/542cff4))
|
|
793
|
-
- **ui-components,docs:** [DDS-101,DDS-126] add Popover component ([#47](https://github.com/Decisiv/decisiv-design-system/issues/47)) ([12d08e4](https://github.com/Decisiv/decisiv-design-system/commit/12d08e4))
|
|
794
|
-
- **ui-components,docs:** [DDS-29] add Tooltip component ([#52](https://github.com/Decisiv/decisiv-design-system/issues/52)) ([9812ef2](https://github.com/Decisiv/decisiv-design-system/commit/9812ef2))
|
|
795
|
-
- **ui-components,docs:** [DDS-53] add Tag component ([#44](https://github.com/Decisiv/decisiv-design-system/issues/44)) ([0dfd061](https://github.com/Decisiv/decisiv-design-system/commit/0dfd061))
|
|
796
|
-
- refactor design token colors; add styled-theming ([#31](https://github.com/Decisiv/decisiv-design-system/issues/31)) ([57bc2d0](https://github.com/Decisiv/decisiv-design-system/commit/57bc2d0))
|