@twreporter/core 1.19.0 → 1.19.1-rc.1
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 +19 -0
- package/lib/constants/color.js +3 -3
- package/lib/constants/feature-flag.js +1 -10
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
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.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)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* update color in colorGrayscale & add color story ([f27d752](https://github.com/twreporter/twreporter-npm-packages/commit/f27d752ae97e15d64e59126dfed07f09471cff4a))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
## [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)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @twreporter/core
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [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)
|
|
7
26
|
|
|
8
27
|
**Note:** Version bump only for package @twreporter/core
|
package/lib/constants/color.js
CHANGED
|
@@ -45,11 +45,11 @@ 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'
|
|
@@ -1,10 +1 @@
|
|
|
1
|
-
"use strict";
|
|
2
|
-
|
|
3
|
-
Object.defineProperty(exports, "__esModule", {
|
|
4
|
-
value: true
|
|
5
|
-
});
|
|
6
|
-
exports.PUB_AND_MERC_BTN = exports.MY_READING = void 0;
|
|
7
|
-
var MY_READING = true;
|
|
8
|
-
exports.MY_READING = MY_READING;
|
|
9
|
-
var PUB_AND_MERC_BTN = true;
|
|
10
|
-
exports.PUB_AND_MERC_BTN = PUB_AND_MERC_BTN;
|
|
1
|
+
"use strict";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/core",
|
|
3
|
-
"version": "1.19.
|
|
3
|
+
"version": "1.19.1-rc.1",
|
|
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": "f0bdcc508dd75523ce1a33da622598462660299e"
|
|
23
23
|
}
|