@megafon/ui-icons 0.0.2-beta.5 → 1.0.0-beta.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 +53 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
@@ -3,6 +3,59 @@
|
|
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.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)
|
7
|
+
|
8
|
+
|
9
|
+
### Features
|
10
|
+
|
11
|
+
* **colors:** css custom properties and color themes support ([b19a9a5](https://github.com/MegafonWebLab/megafon-ui/commit/b19a9a5112ebc7427d60f6514d606dd9d71ca444))
|
12
|
+
|
13
|
+
|
14
|
+
### BREAKING CHANGES
|
15
|
+
|
16
|
+
* **colors:** read commit description
|
17
|
+
|
18
|
+
|
19
|
+
|
20
|
+
|
21
|
+
|
22
|
+
## [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)
|
23
|
+
|
24
|
+
**Note:** Version bump only for package @megafon/ui-icons
|
25
|
+
|
26
|
+
|
27
|
+
|
28
|
+
|
29
|
+
|
30
|
+
# [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)
|
31
|
+
|
32
|
+
|
33
|
+
### Features
|
34
|
+
|
35
|
+
* rename prefix mfui-beta to mfui ([41b2ea4](https://github.com/MegafonWebLab/megafon-ui/commit/41b2ea4880ee6dd0e76b862bfc0d2a86031d734c))
|
36
|
+
|
37
|
+
|
38
|
+
### BREAKING CHANGES
|
39
|
+
|
40
|
+
* 1.x.x version of ui library also has mfui- prefix for components. please, check,
|
41
|
+
that you don't have any styles or business logic (e.g. css or js selectors) using mfui- prefix as
|
42
|
+
match pattern.
|
43
|
+
|
44
|
+
|
45
|
+
|
46
|
+
|
47
|
+
|
48
|
+
## [0.0.2-beta.6](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.5...@megafon/ui-icons@0.0.2-beta.6) (2021-11-15)
|
49
|
+
|
50
|
+
|
51
|
+
### Bug Fixes
|
52
|
+
|
53
|
+
* **ui-icons:** enable some eslint rules and fix problems ([36e0ed6](https://github.com/MegafonWebLab/megafon-ui/commit/36e0ed64876eecc770bf1272ebc87607603ea3fc))
|
54
|
+
|
55
|
+
|
56
|
+
|
57
|
+
|
58
|
+
|
6
59
|
## [0.0.2-beta.5](https://github.com/MegafonWebLab/megafon-ui/compare/@megafon/ui-icons@0.0.2-beta.4...@megafon/ui-icons@0.0.2-beta.5) (2021-10-07)
|
7
60
|
|
8
61
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@megafon/ui-icons",
|
3
|
-
"version": "0.0
|
3
|
+
"version": "1.0.0-beta.0",
|
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": "^
|
32
|
+
"@megafon/ui-helpers": "^2.0.0-beta.0",
|
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": "
|
44
|
+
"gitHead": "42f072baa654d12403f32bb734d406595cf8d5ac"
|
44
45
|
}
|