@gitlab/ui 50.1.1 → 50.1.2

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
@@ -1,3 +1,10 @@
1
+ ## [50.1.2](https://gitlab.com/gitlab-org/gitlab-ui/compare/v50.1.1...v50.1.2) (2022-11-25)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * **charts:** fix toolbox icons default + hover colors ([1fecdd6](https://gitlab.com/gitlab-org/gitlab-ui/commit/1fecdd65a67f47edf2afdf7481b2545d3ecc19e7))
7
+
1
8
  ## [50.1.1](https://gitlab.com/gitlab-org/gitlab-ui/compare/v50.1.0...v50.1.1) (2022-11-25)
2
9
 
3
10
 
@@ -9,7 +9,6 @@ const gray200 = '#bfbfc3';
9
9
  const gray300 = '#a4a3a8';
10
10
  const gray500 = '#737278';
11
11
  const gray600 = '#626168';
12
- const gray700 = '#535158';
13
12
  const gray900 = '#333238';
14
13
  const dataVizGreen500 = '#619025';
15
14
  const dataVizGreen600 = '#4e7f0e';
@@ -164,11 +163,11 @@ const createTheme = function () {
164
163
  emphasis: {
165
164
  iconStyle: {
166
165
  borderWidth: 0,
167
- color: gray700
166
+ color: gray900
168
167
  }
169
168
  },
170
169
  iconStyle: {
171
- color: gray200,
170
+ color: gray500,
172
171
  borderWidth: 0
173
172
  },
174
173
  itemGap: 8,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gitlab/ui",
3
- "version": "50.1.1",
3
+ "version": "50.1.2",
4
4
  "description": "GitLab UI Components",
5
5
  "license": "MIT",
6
6
  "main": "dist/index.js",
@@ -85,7 +85,7 @@
85
85
  "@babel/preset-env": "^7.20.2",
86
86
  "@gitlab/eslint-plugin": "18.1.0",
87
87
  "@gitlab/stylelint-config": "4.1.0",
88
- "@gitlab/svgs": "3.9.0",
88
+ "@gitlab/svgs": "3.10.0",
89
89
  "@rollup/plugin-commonjs": "^11.1.0",
90
90
  "@rollup/plugin-node-resolve": "^7.1.3",
91
91
  "@rollup/plugin-replace": "^2.3.2",
@@ -5,7 +5,6 @@ import {
5
5
  gray300,
6
6
  gray500,
7
7
  gray600,
8
- gray700,
9
8
  gray900,
10
9
  red500,
11
10
  whiteNormal,
@@ -209,11 +208,11 @@ export const createTheme = (options = {}) => ({
209
208
  emphasis: {
210
209
  iconStyle: {
211
210
  borderWidth: 0,
212
- color: gray700,
211
+ color: gray900,
213
212
  },
214
213
  },
215
214
  iconStyle: {
216
- color: gray200,
215
+ color: gray500,
217
216
  borderWidth: 0,
218
217
  },
219
218
  itemGap: 8,