@twreporter/core 1.9.0 → 1.10.0-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 CHANGED
@@ -3,6 +3,29 @@
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.10.0-rc.1](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.10.0-rc.0...@twreporter/core@1.10.0-rc.1) (2023-05-23)
7
+
8
+
9
+ ### Features
10
+
11
+ * fix comment ([e2d4ffb](https://github.com/twreporter/twreporter-npm-packages/commit/e2d4ffbf543eed2461e5c380183b753070f0723b))
12
+ * member role constants ([9c9ac5d](https://github.com/twreporter/twreporter-npm-packages/commit/9c9ac5d5ea94f125f082b5f7b112b0dbf626250b))
13
+
14
+
15
+
16
+
17
+
18
+ # [1.10.0-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.9.0...@twreporter/core@1.10.0-rc.0) (2023-05-22)
19
+
20
+
21
+ ### Features
22
+
23
+ * add padding option ([9b6dadb](https://github.com/twreporter/twreporter-npm-packages/commit/9b6dadbdbf3dec5c970d8cf174308df27fbdb87a))
24
+
25
+
26
+
27
+
28
+
6
29
  # [1.9.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.9.0-rc.1...@twreporter/core@1.9.0) (2023-05-09)
7
30
 
8
31
  **Note:** Version bump only for package @twreporter/core
@@ -58,7 +58,9 @@ var colorOpacity = Object.freeze({
58
58
  'white_0.5': 'rgba(255, 255, 255, 0.5)',
59
59
  'white_0.8': 'rgba(255, 255, 255, 0.8)',
60
60
  'gray100_0.8': 'rgba(241, 241, 241, 0.8)',
61
- 'black_0.2': 'rgba(0, 0, 0, 0.2)'
61
+ 'black_0.1': 'rgba(0, 0, 0, 0.1)',
62
+ 'black_0.2': 'rgba(0, 0, 0, 0.2)',
63
+ 'black_0.05': 'rgba(0, 0, 0, 0.05)'
62
64
  });
63
65
  exports.colorOpacity = colorOpacity;
64
66
  var COLOR_SEMANTIC = Object.freeze({
@@ -0,0 +1,23 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports["default"] = exports.MEMBER_ROLE_ZH_TW = exports.MEMBER_ROLE = void 0;
7
+ var MEMBER_ROLE = {
8
+ explorer: 'explorer',
9
+ action_taker: 'action_taker',
10
+ trailblazer: 'trailblazer'
11
+ };
12
+ exports.MEMBER_ROLE = MEMBER_ROLE;
13
+ var MEMBER_ROLE_ZH_TW = {
14
+ explorer: '探索者',
15
+ action_taker: '行動者',
16
+ trailblazer: '開創者'
17
+ };
18
+ exports.MEMBER_ROLE_ZH_TW = MEMBER_ROLE_ZH_TW;
19
+ var _default = {
20
+ MEMBER_ROLE: MEMBER_ROLE,
21
+ MEMBER_ROLE_ZH_TW: MEMBER_ROLE_ZH_TW
22
+ };
23
+ exports["default"] = _default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@twreporter/core",
3
- "version": "1.9.0",
3
+ "version": "1.10.0-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": "9dfafcb33035b713b397e10d001ba09eafe6eefb"
22
+ "gitHead": "93c8c1b4793c80d524e62feecc0abcb0148cdbf6"
23
23
  }