@twreporter/core 1.15.0 → 1.16.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 +28 -0
- package/lib/constants/fundraising.js +1 -1
- package/lib/constants/z-index.js +21 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,34 @@
|
|
|
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.16.0-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.15.1-rc.0...@twreporter/core@1.16.0-rc.0) (2023-12-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Bug Fixes
|
|
10
|
+
|
|
11
|
+
* **core/src/constants:** remove unused embed ([5e3efa9](https://github.com/twreporter/twreporter-npm-packages/commit/5e3efa9cffb5b8818925c471337338f84efca909))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Features
|
|
15
|
+
|
|
16
|
+
* **core:** add loading cover z-index ([c135945](https://github.com/twreporter/twreporter-npm-packages/commit/c135945f7318cadced1bdd4c148fc0536532372f))
|
|
17
|
+
* **core:** add z-index constants ([d886736](https://github.com/twreporter/twreporter-npm-packages/commit/d8867366b4ee6e61fb262e7ae4d3998514a30dc9))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
## [1.15.1-rc.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.15.0...@twreporter/core@1.15.1-rc.0) (2023-12-25)
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
### Bug Fixes
|
|
27
|
+
|
|
28
|
+
* update 2024 fundraising code ([cc096a5](https://github.com/twreporter/twreporter-npm-packages/commit/cc096a570e886325f0e7981a48fa4a5d13ed33bb))
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
|
|
6
34
|
# [1.15.0](https://github.com/twreporter/twreporter-npm-packages/compare/@twreporter/core@1.15.0-rc.2...@twreporter/core@1.15.0) (2023-12-13)
|
|
7
35
|
|
|
8
36
|
**Note:** Version bump only for package @twreporter/core
|
|
@@ -4,7 +4,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.fundraisingId = exports["default"] = void 0;
|
|
7
|
-
var fundraisingId = '公益勸募許可字號|衛部救字第
|
|
7
|
+
var fundraisingId = '公益勸募許可字號|衛部救字第 1121364182 號';
|
|
8
8
|
exports.fundraisingId = fundraisingId;
|
|
9
9
|
var _default = fundraisingId;
|
|
10
10
|
exports["default"] = _default;
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports["default"] = void 0;
|
|
7
|
+
var _default = {
|
|
8
|
+
loadingCover: 6000,
|
|
9
|
+
popup: 5000,
|
|
10
|
+
hamburgerMenu: 4000,
|
|
11
|
+
toc: 3000,
|
|
12
|
+
// table of contents
|
|
13
|
+
webPush: 2000,
|
|
14
|
+
buttomBanner: 2000,
|
|
15
|
+
header: 1000,
|
|
16
|
+
articleFullScreenHeroImage: 900,
|
|
17
|
+
embedUp: 800,
|
|
18
|
+
mobileToolBar: 700,
|
|
19
|
+
embedDown: 600
|
|
20
|
+
};
|
|
21
|
+
exports["default"] = _default;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@twreporter/core",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.16.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": "76700e4230dae55deb76524237315ef9c318b7e1"
|
|
23
23
|
}
|