@twreporter/core 1.19.1-rc.0 → 1.20.0-rc.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 +14 -4
- package/lib/constants/color.js +5 -3
- package/lib/constants/feature-flag.js +8 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,21 +3,31 @@
|
|
|
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
|
-
|
|
6
|
+
# [1.20.0-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.19.1-rc.1...@twreporter/core@1.20.0-rc.0) (2024-04-17)
|
|
7
7
|
|
|
8
|
-
**Note:** Version bump only for package @twreporter/core
|
|
9
8
|
|
|
9
|
+
### Features
|
|
10
10
|
|
|
11
|
+
* add color opacity ([7b7092b](https://github.com/twreporter/twreporter-npm-packages/commit/7b7092b0b6e5c5e4a1870c24f3511d48a2bda6f9))
|
|
12
|
+
* add POST_REVIEW feature flag ([38a889e](https://github.com/twreporter/twreporter-npm-packages/commit/38a889e1f9555c9ea7e88cea24190ad55f7b3085))
|
|
11
13
|
|
|
12
14
|
|
|
13
15
|
|
|
14
|
-
# [1.19.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.19.0-rc.0...@twreporter/core@1.19.0) (2024-03-13)
|
|
15
16
|
|
|
16
|
-
**Note:** Version bump only for package @twreporter/core
|
|
17
17
|
|
|
18
|
+
## [1.19.1-rc.1](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.19.1-rc.0...@twreporter/core@1.19.1-rc.1) (2024-04-17)
|
|
18
19
|
|
|
20
|
+
### Bug Fixes
|
|
19
21
|
|
|
22
|
+
- update color in colorGrayscale & add color story ([f27d752](https://github.com/twreporter/twreporter-npm-packages/commit/f27d752ae97e15d64e59126dfed07f09471cff4a))
|
|
20
23
|
|
|
24
|
+
## [1.19.1-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.19.0...@twreporter/core@1.19.1-rc.0) (2024-04-17)
|
|
25
|
+
|
|
26
|
+
**Note:** Version bump only for package @twreporter/core
|
|
27
|
+
|
|
28
|
+
# [1.19.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.19.0-rc.0...@twreporter/core@1.19.0) (2024-03-13)
|
|
29
|
+
|
|
30
|
+
**Note:** Version bump only for package @twreporter/core
|
|
21
31
|
|
|
22
32
|
# [1.19.0-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.18.2-rc.0...@twreporter/core@1.19.0-rc.0) (2024-03-07)
|
|
23
33
|
|
package/lib/constants/color.js
CHANGED
|
@@ -45,17 +45,18 @@ var colorGrayscale = Object.freeze({
|
|
|
45
45
|
white: '#ffffff',
|
|
46
46
|
gray100: '#f1f1f1',
|
|
47
47
|
gray200: '#e2e2e2',
|
|
48
|
-
gray300: '#
|
|
49
|
-
gray400: '#
|
|
48
|
+
gray300: '#cdcdcd',
|
|
49
|
+
gray400: '#bbbbbb',
|
|
50
50
|
gray500: '#9c9c9c',
|
|
51
51
|
gray600: '#808080',
|
|
52
|
-
gray700: '#
|
|
52
|
+
gray700: '#666666',
|
|
53
53
|
gray800: '#404040',
|
|
54
54
|
gray900: '#262626',
|
|
55
55
|
black: '#000000'
|
|
56
56
|
});
|
|
57
57
|
exports.colorGrayscale = colorGrayscale;
|
|
58
58
|
var colorOpacity = Object.freeze({
|
|
59
|
+
white_0: 'rgba(255, 255, 255, 0.0)',
|
|
59
60
|
'white_0.2': 'rgba(255, 255, 255, 0.2)',
|
|
60
61
|
'white_0.5': 'rgba(255, 255, 255, 0.5)',
|
|
61
62
|
'white_0.8': 'rgba(255, 255, 255, 0.8)',
|
|
@@ -64,6 +65,7 @@ var colorOpacity = Object.freeze({
|
|
|
64
65
|
'black_0.1': 'rgba(0, 0, 0, 0.1)',
|
|
65
66
|
'black_0.2': 'rgba(0, 0, 0, 0.2)',
|
|
66
67
|
'black_0.5': 'rgba(0, 0, 0, 0.5)',
|
|
68
|
+
'black_0.7': 'rgba(0, 0, 0, 0.7)',
|
|
67
69
|
'black_0.8': 'rgba(0, 0, 0, 0.8)',
|
|
68
70
|
'black_0.05': 'rgba(0, 0, 0, 0.05)'
|
|
69
71
|
});
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.20.0-rc.0",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"repository": "https://github.com/twreporter/twreporter-npm-packages.git",
|
|
6
6
|
"author": "twreporter <developer@twreporter.org>",
|
|
@@ -19,5 +19,5 @@
|
|
|
19
19
|
"files": [
|
|
20
20
|
"lib"
|
|
21
21
|
],
|
|
22
|
-
"gitHead": "
|
|
22
|
+
"gitHead": "96b2be81fb228ea415e1aaf895b1acbd2893a605"
|
|
23
23
|
}
|