pds-dev-kit-web 2.2.100 → 2.2.102
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/dist/src/common/assets/icons/fill/MenuHome.d.ts +4 -0
- package/dist/src/common/assets/icons/fill/MenuHome.js +30 -0
- package/dist/src/common/assets/icons/fill/VideoEpisode.d.ts +4 -0
- package/dist/src/common/assets/icons/fill/VideoEpisode.js +30 -0
- package/dist/src/common/assets/icons/fill/VideoSeries.d.ts +4 -0
- package/dist/src/common/assets/icons/fill/VideoSeries.js +30 -0
- package/dist/src/common/assets/icons/fill/index.d.ts +3 -0
- package/dist/src/common/assets/icons/fill/index.js +6 -0
- package/dist/src/common/assets/icons/line/MenuHome.d.ts +4 -0
- package/dist/src/common/assets/icons/line/MenuHome.js +30 -0
- package/dist/src/common/assets/icons/line/VideoEpisode.d.ts +4 -0
- package/dist/src/common/assets/icons/line/VideoEpisode.js +30 -0
- package/dist/src/common/assets/icons/line/VideoSeries.d.ts +4 -0
- package/dist/src/common/assets/icons/line/VideoSeries.js +30 -0
- package/dist/src/common/assets/icons/line/index.d.ts +3 -0
- package/dist/src/common/assets/icons/line/index.js +6 -0
- package/dist/src/common/styles/colorSet/UIColor.json +1 -1
- package/dist/src/common/styles/colorSet/index.d.ts +2 -2
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/package.json +1 -1
- package/release-note.md +2 -2
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var MenuHome = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M19.2298,8.4646 L19.2298,8.4646 L13.3638,3.5996 C12.5728,2.9446 11.4278,2.9446 10.6368,3.5996 L4.7708,8.4626 C4.2298,8.9116 3.9158,9.5786 3.9158,10.2826 L3.9158,18.3446 C3.9158,19.2296 4.6328,19.9466 5.5178,19.9466 L9.2618,19.9466 C9.5988,19.9466 9.8718,19.6726 9.8718,19.3356 L9.8718,16.0496 C9.8718,15.5876 10.2468,15.2136 10.7078,15.2136 L13.2928,15.2136 C13.7538,15.2136 14.1278,15.5876 14.1278,16.0496 L14.1278,19.3356 C14.1278,19.6726 14.4018,19.9466 14.7388,19.9466 L18.4818,19.9466 C19.3668,19.9466 20.0838,19.2296 20.0838,18.3446 L20.0838,10.2826 C20.0838,9.5776 19.7728,8.9146 19.2298,8.4646" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = MenuHome;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var VideoEpisode = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M14.6682,12.6872 L12.8852,13.7172 L11.1012,14.7462 C10.5722,15.0522 9.9112,14.6702 9.9112,14.0592 L9.9112,12.0002 L9.9112,9.9402 C9.9112,9.3302 10.5722,8.9482 11.1012,9.2532 L12.8852,10.2832 L14.6682,11.3132 C15.1972,11.6182 15.1972,12.3822 14.6682,12.6872 M18.1152,4.5712 L5.8842,4.5712 C4.2272,4.5712 2.8842,5.9142 2.8842,7.5712 L2.8842,16.4292 C2.8842,18.0862 4.2272,19.4292 5.8842,19.4292 L18.1152,19.4292 C19.7722,19.4292 21.1152,18.0862 21.1152,16.4292 L21.1152,7.5712 C21.1152,5.9142 19.7722,4.5712 18.1152,4.5712" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = VideoEpisode;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var VideoSeries = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M13.9309,13.1571 L12.2319,14.1381 L10.5329,15.1191 C10.0289,15.4101 9.3999,15.0461 9.3999,14.4641 L9.3999,12.5021 L9.3999,10.5411 C9.3999,9.9591 10.0289,9.5951 10.5329,9.8861 L12.2319,10.8671 L13.9309,11.8481 C14.4349,12.1391 14.4349,12.8661 13.9309,13.1571 M16.9779,5.4261 L5.8009,5.4261 C4.0919,5.4261 2.7059,6.8111 2.7059,8.5201 L2.7059,16.4851 C2.7059,18.1941 4.0919,19.5791 5.8009,19.5791 L16.9779,19.5791 C18.6869,19.5791 20.0729,18.1941 20.0729,16.4851 L20.0729,8.5201 C20.0729,6.8111 18.6869,5.4261 16.9779,5.4261" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.4", d: "M6.3538,6.3685 L6.3538,6.3685 C6.3538,5.1335 7.3548,4.1325 8.5898,4.1325 L19.0578,4.1325 C20.2928,4.1325 21.2938,5.1335 21.2938,6.3685 L21.2938,14.0725 C21.2938,15.3075 20.2928,16.3085 19.0578,16.3085" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = VideoSeries;
|
|
@@ -71,6 +71,7 @@ declare const fillIcons: {
|
|
|
71
71
|
readonly ic_logo_twitter: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
72
72
|
readonly ic_logo_yt: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
73
73
|
readonly ic_menu_design: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
74
|
+
readonly ic_menu_home: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
74
75
|
readonly ic_mic_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
75
76
|
readonly ic_mic_on: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
76
77
|
readonly ic_minus_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -130,12 +131,14 @@ declare const fillIcons: {
|
|
|
130
131
|
readonly ic_video: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
131
132
|
readonly ic_videocall: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
132
133
|
readonly ic_videocall_pro: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
134
|
+
readonly ic_video_episode: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
133
135
|
readonly ic_video_episodes: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
134
136
|
readonly ic_video_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
135
137
|
readonly ic_video_pause: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
136
138
|
readonly ic_video_play: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
137
139
|
readonly ic_video_play_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
138
140
|
readonly ic_video_resolution: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
141
|
+
readonly ic_video_series: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
139
142
|
readonly ic_video_subtitle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
140
143
|
readonly ic_video_type: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
141
144
|
readonly ic_vodplus: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -74,6 +74,7 @@ var LogoSandoll_1 = __importDefault(require("./LogoSandoll"));
|
|
|
74
74
|
var LogoTwitter_1 = __importDefault(require("./LogoTwitter"));
|
|
75
75
|
var LogoYt_1 = __importDefault(require("./LogoYt"));
|
|
76
76
|
var MenuDesign_1 = __importDefault(require("./MenuDesign"));
|
|
77
|
+
var MenuHome_1 = __importDefault(require("./MenuHome"));
|
|
77
78
|
var MicOff_1 = __importDefault(require("./MicOff"));
|
|
78
79
|
var MicOn_1 = __importDefault(require("./MicOn"));
|
|
79
80
|
var MinusCircle_1 = __importDefault(require("./MinusCircle"));
|
|
@@ -135,12 +136,14 @@ var Verified_1 = __importDefault(require("./Verified"));
|
|
|
135
136
|
var Video_1 = __importDefault(require("./Video"));
|
|
136
137
|
var Videocall_1 = __importDefault(require("./Videocall"));
|
|
137
138
|
var VideocallPro_1 = __importDefault(require("./VideocallPro"));
|
|
139
|
+
var VideoEpisode_1 = __importDefault(require("./VideoEpisode"));
|
|
138
140
|
var VideoEpisodes_1 = __importDefault(require("./VideoEpisodes"));
|
|
139
141
|
var VideoOff_1 = __importDefault(require("./VideoOff"));
|
|
140
142
|
var VideoPause_1 = __importDefault(require("./VideoPause"));
|
|
141
143
|
var VideoPlay_1 = __importDefault(require("./VideoPlay"));
|
|
142
144
|
var VideoPlayCircle_1 = __importDefault(require("./VideoPlayCircle"));
|
|
143
145
|
var VideoResolution_1 = __importDefault(require("./VideoResolution"));
|
|
146
|
+
var VideoSeries_1 = __importDefault(require("./VideoSeries"));
|
|
144
147
|
var VideoSubtitle_1 = __importDefault(require("./VideoSubtitle"));
|
|
145
148
|
var VideoType_1 = __importDefault(require("./VideoType"));
|
|
146
149
|
var Vodplus_1 = __importDefault(require("./Vodplus"));
|
|
@@ -217,6 +220,7 @@ var fillIcons = {
|
|
|
217
220
|
ic_logo_twitter: LogoTwitter_1.default,
|
|
218
221
|
ic_logo_yt: LogoYt_1.default,
|
|
219
222
|
ic_menu_design: MenuDesign_1.default,
|
|
223
|
+
ic_menu_home: MenuHome_1.default,
|
|
220
224
|
ic_mic_off: MicOff_1.default,
|
|
221
225
|
ic_mic_on: MicOn_1.default,
|
|
222
226
|
ic_minus_circle: MinusCircle_1.default,
|
|
@@ -276,12 +280,14 @@ var fillIcons = {
|
|
|
276
280
|
ic_video: Video_1.default,
|
|
277
281
|
ic_videocall: Videocall_1.default,
|
|
278
282
|
ic_videocall_pro: VideocallPro_1.default,
|
|
283
|
+
ic_video_episode: VideoEpisode_1.default,
|
|
279
284
|
ic_video_episodes: VideoEpisodes_1.default,
|
|
280
285
|
ic_video_off: VideoOff_1.default,
|
|
281
286
|
ic_video_pause: VideoPause_1.default,
|
|
282
287
|
ic_video_play: VideoPlay_1.default,
|
|
283
288
|
ic_video_play_circle: VideoPlayCircle_1.default,
|
|
284
289
|
ic_video_resolution: VideoResolution_1.default,
|
|
290
|
+
ic_video_series: VideoSeries_1.default,
|
|
285
291
|
ic_video_subtitle: VideoSubtitle_1.default,
|
|
286
292
|
ic_video_type: VideoType_1.default,
|
|
287
293
|
ic_vodplus: Vodplus_1.default,
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var MenuHome = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeWidth: "1.5", d: "M18.8611,9.0934 L18.8611,9.0934 L13.2941,4.4774 C12.5441,3.8544 11.4571,3.8544 10.7071,4.4764 L5.1391,9.0914 C4.6261,9.5184 4.3281,10.1504 4.3281,10.8184 L4.3281,18.4694 C4.3281,19.3094 5.0091,19.9894 5.8481,19.9894 L9.4011,19.9894 C9.7211,19.9894 9.9801,19.7304 9.9801,19.4104 L9.9801,16.2914 C9.9801,15.8534 10.3361,15.4984 10.7741,15.4984 L13.2261,15.4984 C13.6641,15.4984 14.0201,15.8534 14.0201,16.2914 L14.0201,19.4104 C14.0201,19.7304 14.2791,19.9894 14.5991,19.9894 L18.1511,19.9894 C18.9911,19.9894 19.6721,19.3094 19.6721,18.4694 L19.6721,10.8194 C19.6721,10.1494 19.3761,9.5204 18.8611,9.0934 Z" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = MenuHome;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var VideoEpisode = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: color, fillRule: "evenodd", d: "M17.7813,4.5707 C19.6233,4.5707 21.1153,6.0637 21.1153,7.9047 L21.1153,16.0947 C21.1153,17.9367 19.6233,19.4297 17.7813,19.4297 L6.2183,19.4297 C4.3773,19.4297 2.8843,17.9367 2.8843,16.0947 L2.8843,7.9047 C2.8843,6.0637 4.3773,4.5707 6.2183,4.5707 Z M17.7813,6.0707 L6.2183,6.0707 C5.2073,6.0707 4.3843,6.8937 4.3843,7.9047 L4.3843,16.0947 C4.3843,17.1067 5.2073,17.9297 6.2183,17.9297 L17.7813,17.9297 C18.7923,17.9297 19.6153,17.1067 19.6153,16.0947 L19.6153,7.9047 C19.6153,6.8937 18.7923,6.0707 17.7813,6.0707 Z M11.0682,9.254 L12.8522,10.283 L14.6352,11.313 C15.1642,11.618 15.1642,12.382 14.6352,12.687 L12.8522,13.717 L11.0682,14.746 C10.5392,15.052 9.8782,14.67 9.8782,14.059 L9.8782,9.941 C9.8782,9.33 10.5392,8.948 11.0682,9.254 Z" }) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = VideoEpisode;
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
25
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
|
26
|
+
var VideoSeries = function (_a) {
|
|
27
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
28
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ xmlns: "http://www.w3.org/2000/svg", width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.4", d: "M19.5022,16.4563 C20.4362,16.1683 21.1152,15.2983 21.1152,14.2693 L21.1152,6.3833 C21.1152,5.1193 20.0912,4.0953 18.8272,4.0953 L8.1132,4.0953 C7.0072,4.0953 6.0842,4.8793 5.8712,5.9223" }), (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M16.6276,5.4785 C18.3756,5.4785 19.7916,6.8955 19.7916,8.6425 L19.7916,16.4145 C19.7916,18.1625 18.3756,19.5795 16.6276,19.5795 L5.6546,19.5795 C3.9066,19.5795 2.4906,18.1625 2.4906,16.4145 L2.4906,8.6425 C2.4906,6.8955 3.9066,5.4785 5.6546,5.4785 Z M16.6276,6.9785 L5.6546,6.9785 C4.7366,6.9785 3.9906,7.7255 3.9906,8.6425 L3.9906,16.4145 C3.9906,17.3325 4.7366,18.0795 5.6546,18.0795 L16.6276,18.0795 C17.5456,18.0795 18.2916,17.3325 18.2916,16.4145 L18.2916,8.6425 C18.2916,7.7255 17.5456,6.9785 16.6276,6.9785 Z M10.1526,9.9065 L11.8386,10.8795 L13.5236,11.8535 C14.0236,12.1415 14.0236,12.8635 13.5236,13.1515 L11.8386,14.1255 L10.1526,15.0985 C9.6526,15.3875 9.0276,15.0265 9.0276,14.4485 L9.0276,10.5565 C9.0276,9.9785 9.6526,9.6185 10.1526,9.9065 Z" })] })) })));
|
|
29
|
+
};
|
|
30
|
+
exports.default = VideoSeries;
|
|
@@ -118,6 +118,7 @@ declare const lineIcons: {
|
|
|
118
118
|
readonly ic_mail: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
119
119
|
readonly ic_menu: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
120
120
|
readonly ic_menu_design: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
121
|
+
readonly ic_menu_home: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
121
122
|
readonly ic_mic_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
122
123
|
readonly ic_mic_on: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
123
124
|
readonly ic_minus: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -266,6 +267,7 @@ declare const lineIcons: {
|
|
|
266
267
|
readonly ic_video: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
267
268
|
readonly ic_videocall: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
268
269
|
readonly ic_videocall_pro: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
270
|
+
readonly ic_video_episode: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
269
271
|
readonly ic_video_guide: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
270
272
|
readonly ic_video_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
271
273
|
readonly ic_video_pip: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -273,6 +275,7 @@ declare const lineIcons: {
|
|
|
273
275
|
readonly ic_video_playback_speed: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
274
276
|
readonly ic_video_play_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
275
277
|
readonly ic_video_playlist: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
278
|
+
readonly ic_video_series: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
276
279
|
readonly ic_video_type: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
277
280
|
readonly ic_vod: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
278
281
|
readonly ic_vodclass: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -122,6 +122,7 @@ var LogoSandoll_1 = __importDefault(require("./LogoSandoll"));
|
|
|
122
122
|
var Mail_1 = __importDefault(require("./Mail"));
|
|
123
123
|
var Menu_1 = __importDefault(require("./Menu"));
|
|
124
124
|
var MenuDesign_1 = __importDefault(require("./MenuDesign"));
|
|
125
|
+
var MenuHome_1 = __importDefault(require("./MenuHome"));
|
|
125
126
|
var MicOff_1 = __importDefault(require("./MicOff"));
|
|
126
127
|
var MicOn_1 = __importDefault(require("./MicOn"));
|
|
127
128
|
var Minus_1 = __importDefault(require("./Minus"));
|
|
@@ -280,6 +281,7 @@ var User_1 = __importDefault(require("./User"));
|
|
|
280
281
|
var Video_1 = __importDefault(require("./Video"));
|
|
281
282
|
var Videocall_1 = __importDefault(require("./Videocall"));
|
|
282
283
|
var VideocallPro_1 = __importDefault(require("./VideocallPro"));
|
|
284
|
+
var VideoEpisode_1 = __importDefault(require("./VideoEpisode"));
|
|
283
285
|
var VideoGuide_1 = __importDefault(require("./VideoGuide"));
|
|
284
286
|
var VideoOff_1 = __importDefault(require("./VideoOff"));
|
|
285
287
|
var VideoPip_1 = __importDefault(require("./VideoPip"));
|
|
@@ -287,6 +289,7 @@ var VideoPlay_1 = __importDefault(require("./VideoPlay"));
|
|
|
287
289
|
var VideoPlaybackSpeed_1 = __importDefault(require("./VideoPlaybackSpeed"));
|
|
288
290
|
var VideoPlayCircle_1 = __importDefault(require("./VideoPlayCircle"));
|
|
289
291
|
var VideoPlaylist_1 = __importDefault(require("./VideoPlaylist"));
|
|
292
|
+
var VideoSeries_1 = __importDefault(require("./VideoSeries"));
|
|
290
293
|
var VideoType_1 = __importDefault(require("./VideoType"));
|
|
291
294
|
var Vod_1 = __importDefault(require("./Vod"));
|
|
292
295
|
var VodClass_1 = __importDefault(require("./VodClass"));
|
|
@@ -415,6 +418,7 @@ var lineIcons = {
|
|
|
415
418
|
ic_mail: Mail_1.default,
|
|
416
419
|
ic_menu: Menu_1.default,
|
|
417
420
|
ic_menu_design: MenuDesign_1.default,
|
|
421
|
+
ic_menu_home: MenuHome_1.default,
|
|
418
422
|
ic_mic_off: MicOff_1.default,
|
|
419
423
|
ic_mic_on: MicOn_1.default,
|
|
420
424
|
ic_minus: Minus_1.default,
|
|
@@ -563,6 +567,7 @@ var lineIcons = {
|
|
|
563
567
|
ic_video: Video_1.default,
|
|
564
568
|
ic_videocall: Videocall_1.default,
|
|
565
569
|
ic_videocall_pro: VideocallPro_1.default,
|
|
570
|
+
ic_video_episode: VideoEpisode_1.default,
|
|
566
571
|
ic_video_guide: VideoGuide_1.default,
|
|
567
572
|
ic_video_off: VideoOff_1.default,
|
|
568
573
|
ic_video_pip: VideoPip_1.default,
|
|
@@ -570,6 +575,7 @@ var lineIcons = {
|
|
|
570
575
|
ic_video_playback_speed: VideoPlaybackSpeed_1.default,
|
|
571
576
|
ic_video_play_circle: VideoPlayCircle_1.default,
|
|
572
577
|
ic_video_playlist: VideoPlaylist_1.default,
|
|
578
|
+
ic_video_series: VideoSeries_1.default,
|
|
573
579
|
ic_video_type: VideoType_1.default,
|
|
574
580
|
ic_vod: Vod_1.default,
|
|
575
581
|
ic_vodclass: VodClass_1.default,
|
|
@@ -316,7 +316,7 @@
|
|
|
316
316
|
"ui_cpnt_list_thumbnail_gradient_2": "sys_component_base_black_opacity00",
|
|
317
317
|
"ui_cpnt_list_base_area_active": "sys_component_base_01",
|
|
318
318
|
"ui_cpnt_contextmenu_base": "sys_component_base_02",
|
|
319
|
-
"ui_cpnt_videoplayer_gradient_1": "
|
|
319
|
+
"ui_cpnt_videoplayer_gradient_1": "sys_component_base_black_opacity50",
|
|
320
320
|
"ui_cpnt_videoplayer_gradient_2": "sys_component_base_black_opacity00",
|
|
321
321
|
"ui_cpnt_videoplayer_overlay": "sys_component_base_black_opacity50",
|
|
322
322
|
"ui_globalmenucontainer_background": "sys_container_background_01",
|
|
@@ -119,7 +119,7 @@ declare const colorSet: {
|
|
|
119
119
|
grey300: string;
|
|
120
120
|
darkgrey300: string;
|
|
121
121
|
};
|
|
122
|
-
readonly
|
|
122
|
+
readonly PaletteColor_light: {
|
|
123
123
|
sys_container_background_01: string;
|
|
124
124
|
sys_container_background_02: string;
|
|
125
125
|
sys_container_background_03: string;
|
|
@@ -481,7 +481,7 @@ declare const colorSet: {
|
|
|
481
481
|
sys_cpnt_sheet_base_16: string;
|
|
482
482
|
sys_cpnt_sheet_base_17: string;
|
|
483
483
|
};
|
|
484
|
-
readonly
|
|
484
|
+
readonly PaletteColor_Dark: {
|
|
485
485
|
sys_container_background_01: string;
|
|
486
486
|
sys_container_background_02: string;
|
|
487
487
|
sys_container_background_03: string;
|
|
@@ -5,13 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
7
|
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
8
|
-
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
9
8
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
|
+
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
12
|
SemanticColor: SemanticColor_json_1.default,
|
|
13
|
-
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
14
13
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
|
+
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
15
15
|
UIColor: UIColor_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
package/package.json
CHANGED
package/release-note.md
CHANGED