@decisiv/ui-components 2.0.1-alpha.158 → 2.0.1-alpha.160

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.
@@ -0,0 +1,5 @@
1
+ import { RefForwardingComponent } from 'react';
2
+ import { ToggleViewRef, ToggleViewProps } from './types';
3
+ declare const ToggleViewWithRef: RefForwardingComponent<ToggleViewRef, ToggleViewProps>;
4
+ export default ToggleViewWithRef;
5
+ //# sourceMappingURL=ToggleView.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ToggleView.d.ts","sourceRoot":"","sources":["../../../src/components/ToggleView/ToggleView.tsx"],"names":[],"mappings":"AAAA,OAAc,EAAmB,sBAAsB,EAAE,MAAM,OAAO,CAAC;AAKvE,OAAO,EAAE,aAAa,EAAE,eAAe,EAAgB,MAAM,SAAS,CAAC;AA2DvE,QAAA,MAAM,iBAAiB,EAAE,sBAAsB,CAC7C,aAAa,EACb,eAAe,CACS,CAAC;AAQ3B,eAAe,iBAAiB,CAAC"}
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var _react = _interopRequireWildcard(require("react"));
9
+
10
+ var _capitalize = _interopRequireDefault(require("lodash/capitalize"));
11
+
12
+ var _useTranslations = _interopRequireDefault(require("../../utils/useTranslations"));
13
+
14
+ var _types = require("./types");
15
+
16
+ var _schema = _interopRequireDefault(require("./schema"));
17
+
18
+ var _styles = require("./styles");
19
+
20
+ var _Flex = _interopRequireDefault(require("../Flex"));
21
+
22
+ var _Tooltip = _interopRequireDefault(require("../Tooltip"));
23
+
24
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
25
+
26
+ function _interopRequireWildcard(obj) { if (obj && obj.__esModule) { return obj; } else { var newObj = {}; if (obj != null) { for (var key in obj) { if (Object.prototype.hasOwnProperty.call(obj, key)) { var desc = Object.defineProperty && Object.getOwnPropertyDescriptor ? Object.getOwnPropertyDescriptor(obj, key) : {}; if (desc.get || desc.set) { Object.defineProperty(newObj, key, desc); } else { newObj[key] = obj[key]; } } } } newObj.default = obj; return newObj; } }
27
+
28
+ function _extends() { _extends = Object.assign || function (target) { for (var i = 1; i < arguments.length; i++) { var source = arguments[i]; for (var key in source) { if (Object.prototype.hasOwnProperty.call(source, key)) { target[key] = source[key]; } } } return target; }; return _extends.apply(this, arguments); }
29
+
30
+ function _objectWithoutProperties(source, excluded) { if (source == null) return {}; var target = _objectWithoutPropertiesLoose(source, excluded); var key, i; if (Object.getOwnPropertySymbols) { var sourceSymbolKeys = Object.getOwnPropertySymbols(source); for (i = 0; i < sourceSymbolKeys.length; i++) { key = sourceSymbolKeys[i]; if (excluded.indexOf(key) >= 0) continue; if (!Object.prototype.propertyIsEnumerable.call(source, key)) continue; target[key] = source[key]; } } return target; }
31
+
32
+ function _objectWithoutPropertiesLoose(source, excluded) { if (source == null) return {}; var target = {}; var sourceKeys = Object.keys(source); var key, i; for (i = 0; i < sourceKeys.length; i++) { key = sourceKeys[i]; if (excluded.indexOf(key) >= 0) continue; target[key] = source[key]; } return target; }
33
+
34
+ function ToggleView(props, ref) {
35
+ var selected = props.selected,
36
+ items = props.items,
37
+ onChange = props.onChange,
38
+ ariaLabel = props['aria-label'];
39
+ var translate = (0, _useTranslations.default)();
40
+ return _react.default.createElement(_Flex.default, {
41
+ flexDirection: "row",
42
+ "aria-label": translate(ariaLabel, 'toggleView.aria.label'),
43
+ ref: ref
44
+ }, items.map(function (_ref) {
45
+ var id = _ref.id,
46
+ icon = _ref.icon,
47
+ text = _ref.text,
48
+ rest = _objectWithoutProperties(_ref, ["id", "icon", "text"]);
49
+
50
+ var idLabel = (0, _capitalize.default)(id);
51
+ return _react.default.createElement(_Tooltip.default, {
52
+ key: id,
53
+ zIndex: 4,
54
+ target: // eslint-disable-next-line react/jsx-wrap-multilines
55
+ _react.default.createElement(_styles.StyledButton, _extends({
56
+ id: id,
57
+ icon: icon,
58
+ "aria-label": translate(text, 'toggleView.aria.element', {
59
+ id: idLabel
60
+ }),
61
+ kind: id === selected ? 'primary' : 'secondary',
62
+ variant: id === selected ? 'normal' : 'ghost',
63
+ onClick: function onClick() {
64
+ return onChange && onChange(id);
65
+ }
66
+ }, rest))
67
+ }, translate(text, 'toggleView.aria.element', {
68
+ id: idLabel
69
+ }));
70
+ }));
71
+ }
72
+
73
+ var ToggleViewWithRef = (0, _react.forwardRef)(ToggleView); // @ts-ignore
74
+
75
+ ToggleViewWithRef.propTypes = _schema.default.propTypes; // @ts-ignore
76
+
77
+ ToggleViewWithRef.defaultProps = _types.defaultProps;
78
+ ToggleViewWithRef.displayName = 'ToggleView';
79
+ var _default = ToggleViewWithRef;
80
+ exports.default = _default;
@@ -0,0 +1,4 @@
1
+ import ToggleView from './ToggleView';
2
+ export { ToggleViewProps, ViewItem, ViewItems } from './types';
3
+ export default ToggleView;
4
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/components/ToggleView/index.ts"],"names":[],"mappings":"AAAA,OAAO,UAAU,MAAM,cAAc,CAAC;AAEtC,OAAO,EAAE,eAAe,EAAE,QAAQ,EAAE,SAAS,EAAE,MAAM,SAAS,CAAC;AAE/D,eAAe,UAAU,CAAC"}
@@ -0,0 +1,33 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ Object.defineProperty(exports, "ToggleViewProps", {
7
+ enumerable: true,
8
+ get: function get() {
9
+ return _types.ToggleViewProps;
10
+ }
11
+ });
12
+ Object.defineProperty(exports, "ViewItem", {
13
+ enumerable: true,
14
+ get: function get() {
15
+ return _types.ViewItem;
16
+ }
17
+ });
18
+ Object.defineProperty(exports, "ViewItems", {
19
+ enumerable: true,
20
+ get: function get() {
21
+ return _types.ViewItems;
22
+ }
23
+ });
24
+ exports.default = void 0;
25
+
26
+ var _ToggleView = _interopRequireDefault(require("./ToggleView"));
27
+
28
+ var _types = require("./types");
29
+
30
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
31
+
32
+ var _default = _ToggleView.default;
33
+ exports.default = _default;
@@ -0,0 +1,61 @@
1
+ "use strict";
2
+
3
+ var _react = _interopRequireDefault(require("react"));
4
+
5
+ var _react2 = require("@testing-library/react");
6
+
7
+ var _List = _interopRequireDefault(require("@decisiv/iconix/lib/components/List"));
8
+
9
+ var _Grid = _interopRequireDefault(require("@decisiv/iconix/lib/components/Grid"));
10
+
11
+ var _ = _interopRequireDefault(require("."));
12
+
13
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
14
+
15
+ var items = [{
16
+ id: '1',
17
+ text: 'List element',
18
+ icon: _List.default
19
+ }, {
20
+ id: '2',
21
+ text: 'Grid element',
22
+ icon: _Grid.default
23
+ }, {
24
+ id: '3',
25
+ text: 'Another element',
26
+ icon: _List.default
27
+ }];
28
+ describe('ToggleView', function () {
29
+ it('renders list of options', function () {
30
+ var _render = (0, _react2.render)(_react.default.createElement(_.default, {
31
+ items: items,
32
+ selected: "1"
33
+ })),
34
+ getByLabelText = _render.getByLabelText;
35
+
36
+ items.forEach(function (option) {
37
+ expect(getByLabelText(option.text)).toBeInTheDocument();
38
+ });
39
+ });
40
+ describe('Clicking an option', function () {
41
+ var item = items[2];
42
+ it('calls event handler with expected ID', function () {
43
+ var mockedFn = jest.fn();
44
+
45
+ var _render2 = (0, _react2.render)(_react.default.createElement(_.default, {
46
+ items: items,
47
+ selected: "1",
48
+ onChange: mockedFn
49
+ })),
50
+ getByLabelText = _render2.getByLabelText;
51
+
52
+ items.forEach(function (option) {
53
+ expect(getByLabelText(option.text)).toBeInTheDocument();
54
+ });
55
+ (0, _react2.act)(function () {
56
+ _react2.fireEvent.click(getByLabelText(item.text));
57
+ });
58
+ expect(mockedFn).toHaveBeenCalledWith(item.id);
59
+ });
60
+ });
61
+ });
@@ -0,0 +1,3 @@
1
+ declare const schema: any;
2
+ export default schema;
3
+ //# sourceMappingURL=schema.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"schema.d.ts","sourceRoot":"","sources":["../../../src/components/ToggleView/schema.ts"],"names":[],"mappings":"AAGA,QAAA,MAAM,MAAM,KAAmC,CAAC;AA0BhD,eAAe,MAAM,CAAC"}
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.default = void 0;
7
+
8
+ var _reactDesc = require("react-desc");
9
+
10
+ // @ts-ignore no module typings
11
+ var schema = (0, _reactDesc.describe)({
12
+ displayName: 'Tag'
13
+ });
14
+ schema.propTypes = {
15
+ items: _reactDesc.PropTypes.arrayOf(_reactDesc.PropTypes.shape({
16
+ id: _reactDesc.PropTypes.string,
17
+ icon: _reactDesc.PropTypes.func.description('Which `iconix` icon to render as the icon option button.'),
18
+ text: _reactDesc.PropTypes.string.description('The label text for an option in the list of toggle options.')
19
+ })).description('The array of item data that will be rendered as toggle options.').isRequired,
20
+ onChange: _reactDesc.PropTypes.func.description('Change event handler, called with the ID of the selected option.').isRequired,
21
+ selected: _reactDesc.PropTypes.string.description('ID value of the option to show as `selected` in the list.').isRequired
22
+ };
23
+ var _default = schema;
24
+ exports.default = _default;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { ButtonProps } from '../Button/types';
3
+ export declare const StyledButton: import("styled-components").StyledComponent<import("react").RefForwardingComponent<HTMLButtonElement, ButtonProps>, any, {
4
+ size: string;
5
+ } & ButtonProps, "size">;
6
+ //# sourceMappingURL=styles.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"styles.d.ts","sourceRoot":"","sources":["../../../src/components/ToggleView/styles.ts"],"names":[],"mappings":";AAIA,OAAO,EAAE,WAAW,EAAE,MAAM,iBAAiB,CAAC;AAG9C,eAAO,MAAM,YAAY;;wBAOxB,CAAC"}
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.StyledButton = void 0;
7
+
8
+ var _rem = _interopRequireDefault(require("polished/lib/helpers/rem"));
9
+
10
+ var _styledComponents = _interopRequireDefault(require("styled-components"));
11
+
12
+ var _Button = _interopRequireDefault(require("../Button"));
13
+
14
+ function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
15
+
16
+ // eslint-disable-next-line import/prefer-default-export
17
+ var StyledButton = (0, _styledComponents.default)(_Button.default).attrs({
18
+ size: 'small'
19
+ }).withConfig({
20
+ displayName: "styles__StyledButton",
21
+ componentId: "guu1wo-0"
22
+ })(["width:", ";height:", ";margin:0 2.5px;border-radius:", ";"], (0, _rem.default)(26), (0, _rem.default)(26), (0, _rem.default)(14));
23
+ exports.StyledButton = StyledButton;
@@ -0,0 +1,23 @@
1
+ /// <reference types="react" />
2
+ import { IconProps } from '@decisiv/iconix';
3
+ declare type IconComponent = (props: IconProps) => JSX.Element;
4
+ export declare type ToggleViewRef = HTMLDivElement;
5
+ export interface ViewItem {
6
+ icon: IconComponent;
7
+ id: string;
8
+ text?: string;
9
+ }
10
+ export declare type ViewItems = ViewItem[];
11
+ export interface ToggleViewProps {
12
+ 'aria-label'?: string;
13
+ items: ViewItems;
14
+ onChange?: (id: string) => void;
15
+ selected: string;
16
+ }
17
+ export declare const defaultProps: {
18
+ items: never[];
19
+ onChange: undefined;
20
+ selected: undefined;
21
+ };
22
+ export {};
23
+ //# sourceMappingURL=types.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"types.d.ts","sourceRoot":"","sources":["../../../src/components/ToggleView/types.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,iBAAiB,CAAC;AAE5C,aAAK,aAAa,GAAG,CAAC,KAAK,EAAE,SAAS,KAAK,GAAG,CAAC,OAAO,CAAC;AAEvD,oBAAY,aAAa,GAAG,cAAc,CAAC;AAE3C,MAAM,WAAW,QAAQ;IACvB,IAAI,EAAE,aAAa,CAAC;IACpB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,CAAC,EAAE,MAAM,CAAC;CACf;AAED,oBAAY,SAAS,GAAG,QAAQ,EAAE,CAAC;AAEnC,MAAM,WAAW,eAAe;IAC9B,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,KAAK,EAAE,SAAS,CAAC;IACjB,QAAQ,CAAC,EAAE,CAAC,EAAE,EAAE,MAAM,KAAK,IAAI,CAAC;IAChC,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED,eAAO,MAAM,YAAY;;;;CAIxB,CAAC"}
@@ -0,0 +1,12 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.defaultProps = void 0;
7
+ var defaultProps = {
8
+ items: [],
9
+ onChange: undefined,
10
+ selected: undefined
11
+ };
12
+ exports.defaultProps = defaultProps;
@@ -35,6 +35,7 @@ export { default as Tag, TagActionButtonRef, TagRef } from './Tag';
35
35
  export { default as TextArea } from './TextArea';
36
36
  export { default as TextField } from './TextField';
37
37
  export { default as Toggle } from './Toggle';
38
+ export { default as ToggleView } from './ToggleView';
38
39
  export { default as TopNav } from './TopNav';
39
40
  export { default as Tooltip } from './Tooltip';
40
41
  export * from './Typography';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/components/index.ts"],"names":[],"mappings":"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"}
@@ -66,6 +66,7 @@ var _exportNames = {
66
66
  TextArea: true,
67
67
  TextField: true,
68
68
  Toggle: true,
69
+ ToggleView: true,
69
70
  TopNav: true,
70
71
  Tooltip: true
71
72
  };
@@ -441,6 +442,12 @@ Object.defineProperty(exports, "Toggle", {
441
442
  return _Toggle.default;
442
443
  }
443
444
  });
445
+ Object.defineProperty(exports, "ToggleView", {
446
+ enumerable: true,
447
+ get: function get() {
448
+ return _ToggleView.default;
449
+ }
450
+ });
444
451
  Object.defineProperty(exports, "TopNav", {
445
452
  enumerable: true,
446
453
  get: function get() {
@@ -528,6 +535,8 @@ var _TextField = _interopRequireDefault(require("./TextField"));
528
535
 
529
536
  var _Toggle = _interopRequireDefault(require("./Toggle"));
530
537
 
538
+ var _ToggleView = _interopRequireDefault(require("./ToggleView"));
539
+
531
540
  var _TopNav = _interopRequireDefault(require("./TopNav"));
532
541
 
533
542
  var _Tooltip = _interopRequireDefault(require("./Tooltip"));
@@ -126,6 +126,12 @@ declare const translations: {
126
126
  textField: {
127
127
  readonly requiredMessage: "Required";
128
128
  };
129
+ toggleView: {
130
+ aria: {
131
+ readonly label: "Toggle View";
132
+ readonly element: "View element {id}";
133
+ };
134
+ };
129
135
  passwordField: {
130
136
  readonly showPassword: "Show Password";
131
137
  readonly hidePassword: "Hide Password";
@@ -1 +1 @@
1
- {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../src/providers/ConfigProvider/utils/translations.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAmIR,CAAC;AAEX,oBAAY,YAAY,GAAG,OAAO,YAAY,CAAC;AAE/C,eAAe,YAAY,CAAC"}
1
+ {"version":3,"file":"translations.d.ts","sourceRoot":"","sources":["../../../../src/providers/ConfigProvider/utils/translations.ts"],"names":[],"mappings":"AAAA,QAAA,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAyIR,CAAC;AAEX,oBAAY,YAAY,GAAG,OAAO,YAAY,CAAC;AAE/C,eAAe,YAAY,CAAC"}
@@ -132,6 +132,12 @@ var translations = {
132
132
  textField: {
133
133
  requiredMessage: 'Required'
134
134
  },
135
+ toggleView: {
136
+ aria: {
137
+ label: 'Toggle View',
138
+ element: 'View element {id}'
139
+ }
140
+ },
135
141
  passwordField: {
136
142
  showPassword: 'Show Password',
137
143
  hidePassword: 'Hide Password',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@decisiv/ui-components",
3
- "version": "2.0.1-alpha.158+21696d8",
3
+ "version": "2.0.1-alpha.160+8252a7c",
4
4
  "description": "Decisiv's design system React components",
5
5
  "author": "Decisiv UI Development Team",
6
6
  "license": "MIT",
@@ -71,5 +71,5 @@
71
71
  "access": "public"
72
72
  },
73
73
  "private": false,
74
- "gitHead": "21696d86d2effb6cad0ee3f073b6183bb6199e1c"
74
+ "gitHead": "8252a7c31399c379227f6c272026ed387e01b399"
75
75
  }
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))