@spaced-out/ui-design-system 0.1.61 → 0.1.62

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/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [0.1.62](https://github.com/spaced-out/ui-design-system/compare/v0.1.61...v0.1.62) (2023-10-19)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * border radius for large icons ([#149](https://github.com/spaced-out/ui-design-system/issues/149)) ([0203289](https://github.com/spaced-out/ui-design-system/commit/0203289fd864a94c8f1c5e1972f203f64a26e3e6))
11
+
5
12
  ### [0.1.61](https://github.com/spaced-out/ui-design-system/compare/v0.1.60...v0.1.61) (2023-10-19)
6
13
 
7
14
 
@@ -34,7 +34,8 @@ const ClickableIcon = /*#__PURE__*/React.forwardRef((_ref, ref) => {
34
34
  ariaLabel: ariaLabel,
35
35
  className: (0, _classify.default)(_ClickableIconModule.default.button, {
36
36
  [_ClickableIconModule.default.small]: size === 'small',
37
- [_ClickableIconModule.default.medium]: size === 'medium'
37
+ [_ClickableIconModule.default.medium]: size === 'medium',
38
+ [_ClickableIconModule.default.large]: size === 'large'
38
39
  }, className),
39
40
  ref: ref
40
41
  }), /*#__PURE__*/React.createElement(_.Icon, _extends({
@@ -38,6 +38,7 @@ export const ClickableIcon: React$AbstractComponent<
38
38
  {
39
39
  [css.small]: size === 'small',
40
40
  [css.medium]: size === 'medium',
41
+ [css.large]: size === 'large',
41
42
  },
42
43
  className,
43
44
  )}
@@ -4,7 +4,8 @@
4
4
 
5
5
  @value (
6
6
  size18,
7
- size24
7
+ size24,
8
+ size36
8
9
  ) from '../../styles/variables/_size.css';
9
10
 
10
11
  @value (
@@ -13,6 +14,7 @@
13
14
 
14
15
  @value (
15
16
  borderRadiusXSmall,
17
+ borderRadiusRadioButton,
16
18
  borderWidthNone,
17
19
  borderWidthTertiary
18
20
  ) from '../../styles/variables/_border.css';
@@ -32,6 +34,12 @@ button {
32
34
  cursor: pointer;
33
35
  }
34
36
 
37
+ .large {
38
+ height: size36;
39
+ width: size36;
40
+ border-radius: borderRadiusRadioButton;
41
+ }
42
+
35
43
  .medium {
36
44
  height: size24;
37
45
  width: size24;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@spaced-out/ui-design-system",
3
- "version": "0.1.61",
3
+ "version": "0.1.62",
4
4
  "main": "index.js",
5
5
  "description": "Sense UI components library",
6
6
  "author": {