@megafon/ui-icons 0.1.0 → 1.0.0-beta.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +49 -0
  2. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,55 @@
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
+ # [1.0.0-beta.2](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@1.0.0-beta.1...@megafon/ui-icons@1.0.0-beta.2) (2022-01-24)
7
+
8
+ **Note:** Version bump only for package @megafon/ui-icons
9
+
10
+
11
+
12
+
13
+
14
+ # [1.0.0-beta.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@1.0.0-beta.0...@megafon/ui-icons@1.0.0-beta.1) (2022-01-20)
15
+
16
+
17
+ ### Bug Fixes
18
+
19
+ * **colors:** renabe green and purple to brandGreen and brandPurple to avoid postcss-colormin bug ([563d97c](https://github.com/MegafonWebLab/megafon-ui/commit/563d97c42900099415a6872f57b500b87aeed647))
20
+
21
+
22
+ ### BREAKING CHANGES
23
+
24
+ * **colors:** green, green20, green80, purple, purple20 and purple80 colors now have 'brand'
25
+ prefix (e.g. brandGreen)
26
+
27
+
28
+
29
+
30
+
31
+ # [1.0.0-beta.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.1.1...@megafon/ui-icons@1.0.0-beta.0) (2022-01-19)
32
+
33
+
34
+ ### Features
35
+
36
+ * **colors:** css custom properties and color themes support ([b19a9a5](https://github.com/MegafonWebLab/megafon-ui/commit/b19a9a5112ebc7427d60f6514d606dd9d71ca444))
37
+
38
+
39
+ ### BREAKING CHANGES
40
+
41
+ * **colors:** read commit description
42
+
43
+
44
+
45
+
46
+
47
+ ## [0.1.1](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.1.0...@megafon/ui-icons@0.1.1) (2021-12-13)
48
+
49
+ **Note:** Version bump only for package @megafon/ui-icons
50
+
51
+
52
+
53
+
54
+
6
55
  # [0.1.0](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.6...@megafon/ui-icons@0.1.0) (2021-11-30)
7
56
 
8
57
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@megafon/ui-icons",
3
- "version": "0.1.0",
3
+ "version": "1.0.0-beta.2",
4
4
  "files": [
5
5
  "*.svg"
6
6
  ],
@@ -17,7 +17,8 @@
17
17
  "prettier:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
18
18
  "lint": "yarn lint:ts && yarn lint:less",
19
19
  "lint:ts": "eslint --ext .js,.jsx,.ts,.tsx src --max-warnings=0",
20
- "lint:less": "stylelint --syntax less src/**/*.less src/**/**/*.less"
20
+ "lint:less": "stylelint --syntax less src/**/*.less src/**/**/*.less",
21
+ "lint:less:fix": "yarn lint:less --fix"
21
22
  },
22
23
  "publishConfig": {
23
24
  "access": "public"
@@ -28,7 +29,7 @@
28
29
  ]
29
30
  },
30
31
  "devDependencies": {
31
- "@megafon/ui-helpers": "^1.0.0",
32
+ "@megafon/ui-helpers": "^2.0.0-beta.2",
32
33
  "@types/node": "^13.9.1",
33
34
  "@types/react": "^16.9.23",
34
35
  "@types/react-dom": "^16.9.5",
@@ -40,5 +41,5 @@
40
41
  "through2": "^2.0.5",
41
42
  "typescript": "^3.8.3"
42
43
  },
43
- "gitHead": "7f552b59c6bfc912d14a39c4564995685c18d4f5"
44
+ "gitHead": "c7d00f10bbf88ff8049558ee9b7fbe6cb9691547"
44
45
  }