@instructure/ui-options 7.15.0 → 7.18.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -3,6 +3,20 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [7.18.0](https://github.com/instructure/instructure-ui/compare/v7.17.0...v7.18.0) (2022-03-30)
7
+
8
+ **Note:** Version bump only for package @instructure/ui-options
9
+
10
+ # [7.17.0](https://github.com/instructure/instructure-ui/compare/v7.16.0...v7.17.0) (2022-03-22)
11
+
12
+ ### Features
13
+
14
+ - **ui-options:** remove nested paddin from option groups ([c496fa8](https://github.com/instructure/instructure-ui/commit/c496fa8))
15
+
16
+ # [7.16.0](https://github.com/instructure/instructure-ui/compare/v7.15.0...v7.16.0) (2022-02-08)
17
+
18
+ **Note:** Version bump only for package @instructure/ui-options
19
+
6
20
  # [7.15.0](https://github.com/instructure/instructure-ui/compare/v7.14.1...v7.15.0) (2022-02-03)
7
21
 
8
22
  **Note:** Version bump only for package @instructure/ui-options
@@ -38,7 +38,7 @@ export default function generator(_ref) {
38
38
  selectedBackground: colors.backgroundDark,
39
39
  padding: "".concat(spacing.xSmall, " ").concat(spacing.small),
40
40
  iconPadding: spacing.small,
41
- nestedPadding: spacing.medium
41
+ nestedPadding: spacing.small
42
42
  };
43
43
  }
44
44
 
@@ -45,7 +45,7 @@ function generator(_ref) {
45
45
  selectedBackground: colors.backgroundDark,
46
46
  padding: "".concat(spacing.xSmall, " ").concat(spacing.small),
47
47
  iconPadding: spacing.small,
48
- nestedPadding: spacing.medium
48
+ nestedPadding: spacing.small
49
49
  };
50
50
  }
51
51
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@instructure/ui-options",
3
- "version": "7.15.0",
3
+ "version": "7.18.0",
4
4
  "description": "A view-only component for composing interactive lists and menus.",
5
5
  "author": "Instructure, Inc. Engineering and Product Design",
6
6
  "type": "commonjs",
@@ -23,20 +23,20 @@
23
23
  },
24
24
  "license": "MIT",
25
25
  "devDependencies": {
26
- "@instructure/ui-babel-preset": "^7.15.0",
27
- "@instructure/ui-color-utils": "^7.15.0",
28
- "@instructure/ui-test-locator": "^7.15.0",
29
- "@instructure/ui-test-utils": "^7.15.0"
26
+ "@instructure/ui-babel-preset": "^7.18.0",
27
+ "@instructure/ui-color-utils": "^7.18.0",
28
+ "@instructure/ui-test-locator": "^7.18.0",
29
+ "@instructure/ui-test-utils": "^7.18.0"
30
30
  },
31
31
  "dependencies": {
32
32
  "@babel/runtime": "^7.9.2",
33
- "@instructure/ui-icons": "^7.15.0",
34
- "@instructure/ui-prop-types": "^7.15.0",
35
- "@instructure/ui-react-utils": "^7.15.0",
36
- "@instructure/ui-testable": "^7.15.0",
37
- "@instructure/ui-themeable": "^7.15.0",
38
- "@instructure/ui-view": "^7.15.0",
39
- "@instructure/uid": "^7.15.0",
33
+ "@instructure/ui-icons": "^7.18.0",
34
+ "@instructure/ui-prop-types": "^7.18.0",
35
+ "@instructure/ui-react-utils": "^7.18.0",
36
+ "@instructure/ui-testable": "^7.18.0",
37
+ "@instructure/ui-themeable": "^7.18.0",
38
+ "@instructure/ui-view": "^7.18.0",
39
+ "@instructure/uid": "^7.18.0",
40
40
  "classnames": "^2",
41
41
  "prop-types": "^15"
42
42
  },
@@ -38,7 +38,7 @@ export default function generator({ colors, typography, spacing }) {
38
38
 
39
39
  padding: `${spacing.xSmall} ${spacing.small}`,
40
40
  iconPadding: spacing.small,
41
- nestedPadding: spacing.medium
41
+ nestedPadding: spacing.small
42
42
  }
43
43
  }
44
44