@twreporter/core 1.3.1 → 1.4.1-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 +32 -0
- package/lib/constants/font.js +2 -2
- package/lib/constants/fundraising.js +10 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
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.4.1-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.4.0...@twreporter/core@1.4.1-rc.0) (2022-06-06)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @twreporter/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
# [1.4.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.4.0-rc.0...@twreporter/core@1.4.0) (2021-12-27)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @twreporter/core
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
# [1.4.0-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.3.1...@twreporter/core@1.4.0-rc.0) (2021-12-24)
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Bug Fixes
|
|
26
|
+
|
|
27
|
+
* **core:** update fund-raising id ([618219f](https://github.com/twreporter/twreporter-npm-packages/commit/618219f4f5b06b6292cb0a4fa178ee1201c90cf7))
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
### Features
|
|
31
|
+
|
|
32
|
+
* **core, react-components:** add fund-raising number ([a3ae8ac](https://github.com/twreporter/twreporter-npm-packages/commit/a3ae8ac3bd52bc7897e8e85c3723a48f40ec13a6))
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## [1.3.1](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.3.1-rc.1...@twreporter/core@1.3.1) (2021-11-19)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @twreporter/core
|
package/lib/constants/font.js
CHANGED
|
@@ -11,8 +11,8 @@ var fontWeight = {
|
|
|
11
11
|
};
|
|
12
12
|
exports.fontWeight = fontWeight;
|
|
13
13
|
var fontFamily = {
|
|
14
|
-
title: 'merriweather,
|
|
15
|
-
"default": 'rosario,
|
|
14
|
+
title: 'merriweather, Noto Serif TC, serif',
|
|
15
|
+
"default": 'rosario, Noto Sans TC, sans-serif'
|
|
16
16
|
};
|
|
17
17
|
exports.fontFamily = fontFamily;
|
|
18
18
|
var _default = {
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.fundraisingId = exports["default"] = void 0;
|
|
7
|
+
var fundraisingId = '公益勸募許可字號|衛部救字第 1101363853 號';
|
|
8
|
+
exports.fundraisingId = fundraisingId;
|
|
9
|
+
var _default = fundraisingId;
|
|
10
|
+
exports["default"] = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.1-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": "74facca540e4dd26eeb29f3a61e0032cdd52c8a8"
|
|
23
23
|
}
|