pds-dev-kit-web-test 2.5.402 → 2.5.406
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/editorNavigationIcons/downIcons.d.ts +12 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/downIcons.js +76 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/index.d.ts +43 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/index.js +49 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/leftIcons.d.ts +12 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/leftIcons.js +76 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/rightIcons.d.ts +12 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/rightIcons.js +76 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/upIcons.d.ts +12 -0
- package/dist/src/common/assets/icons/editorNavigationIcons/upIcons.js +76 -0
- package/dist/src/common/hooks/useTooltip.js +1 -1
- package/dist/src/common/styles/colorSet/index.d.ts +2 -2
- package/dist/src/common/styles/colorSet/index.js +2 -2
- package/dist/src/common/types/icon.d.ts +3 -1
- package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/hybrid/components/Icon/Icon.js +6 -0
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.d.ts +20 -0
- package/dist/src/sub/DynamicLayout/CompositionEditor/CompositionEditor.js +1132 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +4 -1
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +4 -2
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +53 -53
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionBackground.js +45 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/createCompositions.js +79 -0
- package/dist/src/sub/DynamicLayout/DynamicLayout.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/DynamicLayout.js +3 -2
- package/dist/src/sub/DynamicLayout/components/Section/sectionContext.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/downIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/index.js +47 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/leftIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/rightIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/editorNavigationIcons/upIcons.js +76 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts +40 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.js +36 -177
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_Dark.json +152 -4
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/PaletteColor_light.json +150 -2
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/SemanticColor.json +45 -1
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/UIColor.json +262 -9
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/index.d.ts +593 -0
- package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/styles/colorSet/ui-type.d.ts +253 -0
- package/dist/src/sub/DynamicLayout/compositionActionTypes.d.ts +139 -0
- package/dist/src/sub/DynamicLayout/compositionActionTypes.js +2 -0
- package/dist/src/sub/DynamicLayout/compositionQueryContext.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/compositionQueryContext.js +14 -0
- package/dist/src/sub/DynamicLayout/mock_composition.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/mock_composition.js +801 -0
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_contentsCarousel.js +1099 -0
- package/dist/src/sub/DynamicLayout/mock_contentsList.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/mock_contentsList.js +1082 -0
- package/dist/src/sub/DynamicLayout/mock_slideBanner.d.ts +810 -0
- package/dist/src/sub/DynamicLayout/mock_slideBanner.js +822 -0
- package/dist/src/sub/DynamicLayout/mock_video.d.ts +368 -0
- package/dist/src/sub/DynamicLayout/mock_video.js +371 -0
- package/dist/src/sub/DynamicLayout/mock_video_cb.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/mock_video_cb.js +4 -5
- package/dist/src/sub/DynamicLayout/mocks.d.ts +8 -961
- package/dist/src/sub/DynamicLayout/mocks.js +4287 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +13 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +18 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +230 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.d.ts +17 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarouselCore.js +59 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigation.d.ts +31 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomNavigation.js +118 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomPagination.d.ts +31 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomPagination.js +191 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.d.ts +21 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/CustomProgressbar.js +117 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/navigationConfigs.js +889 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.d.ts +27 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/components/progressConfigs.js +96 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.d.ts +50 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/contentsCarouselUtils.js +905 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.d.ts +90 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsList.js +112 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.d.ts +17 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/ContentsListCore.js +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.d.ts +27 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/CustomPagination.js +115 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.d.ts +23 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/components/paginationConfigs.js +176 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.d.ts +30 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/contentsListUtils.js +351 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.d.ts +46 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsList/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Image/Image.js +51 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBanner.js +225 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.d.ts +15 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/SlideBannerCore.js +39 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigation.d.ts +31 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomNavigation.js +118 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.d.ts +31 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomPagination.js +191 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.d.ts +21 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/CustomProgressbar.js +117 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.d.ts +4 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/navigationConfigs.js +889 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.d.ts +27 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/components/progressConfigs.js +96 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/index.js +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.d.ts +48 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/slideBannerUtils.js +852 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.d.ts +80 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/SlideBanner/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +50 -7
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/VideoPlayer/VideoPlayer.js +2 -27
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +45 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +27 -10
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +3 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.d.ts +14 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseCompositionPlacement.js +26 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseJsonProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parseProperties.d.ts +2 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +52 -3
- package/dist/src/sub/DynamicLayout/sections/FlexGridCustomSection.js +1 -0
- package/dist/src/sub/DynamicLayout/types.d.ts +48 -15
- package/package.json +2 -2
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +0 -6
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +0 -27
@@ -0,0 +1,76 @@
|
|
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
|
+
exports.ArrowLeftDesign10 = exports.ArrowLeftDesign09 = exports.ArrowLeftDesign08 = exports.ArrowLeftDesign07 = exports.ArrowLeftDesign06 = exports.ArrowLeftDesign05 = exports.ArrowLeftDesign04 = exports.ArrowLeftDesign03 = exports.ArrowLeftDesign02 = exports.ArrowLeftDesign01 = void 0;
|
26
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
27
|
+
var ArrowLeftDesign01 = function (_a) {
|
28
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
29
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: ".5", d: "M14.5773,19.5001 L7.6663,12.5891 C7.3413,12.2641 7.3413,11.7361 7.6663,11.4111 L14.5773,4.5001" }) })));
|
30
|
+
};
|
31
|
+
exports.ArrowLeftDesign01 = ArrowLeftDesign01;
|
32
|
+
var ArrowLeftDesign02 = function (_a) {
|
33
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
34
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", d: "M14.5776,19.5003 L7.6671,12.5898 C7.3416,12.2643 7.3416,11.7363 7.6671,11.4108 L14.5776,4.5003" }) })));
|
35
|
+
};
|
36
|
+
exports.ArrowLeftDesign02 = ArrowLeftDesign02;
|
37
|
+
var ArrowLeftDesign03 = function (_a) {
|
38
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
39
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.5", d: "M14.5774,19.5 L7.6664,12.589 C7.3414,12.264 7.3414,11.736 7.6664,11.411 L14.5774,4.5" }) })));
|
40
|
+
};
|
41
|
+
exports.ArrowLeftDesign03 = ArrowLeftDesign03;
|
42
|
+
var ArrowLeftDesign04 = function (_a) {
|
43
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
44
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("polyline", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", points: "7.5 4 15.5 12 7.5 20.002", transform: "rotate(180 11.5 12)" }) })));
|
45
|
+
};
|
46
|
+
exports.ArrowLeftDesign04 = ArrowLeftDesign04;
|
47
|
+
var ArrowLeftDesign05 = function (_a) {
|
48
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
49
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M4.55225015,11.9999287 L21,11.9999287 M10.4989308,19.4992872 L3,12.0003564 L10.4989308,4.5" }) })));
|
50
|
+
};
|
51
|
+
exports.ArrowLeftDesign05 = ArrowLeftDesign05;
|
52
|
+
var ArrowLeftDesign06 = function (_a) {
|
53
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
54
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", d: "M4.55225015,11.9999287 L21,11.9999287 M10.4989308,19.4992872 L3,12.0003564 L10.4989308,4.5" }) })));
|
55
|
+
};
|
56
|
+
exports.ArrowLeftDesign06 = ArrowLeftDesign06;
|
57
|
+
var ArrowLeftDesign07 = function (_a) {
|
58
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
59
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "32", height: "24", viewBox: "0 0 32 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M2.55225015,11.9999287 L31,11.9999287 M8.49893076,19.4992872 L1,12.0003564 L8.49893076,4.5" }) })));
|
60
|
+
};
|
61
|
+
exports.ArrowLeftDesign07 = ArrowLeftDesign07;
|
62
|
+
var ArrowLeftDesign08 = function (_a) {
|
63
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
64
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "32", height: "24", viewBox: "0 0 32 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", d: "M3.75225015,11.9999287 L30.2,11.9999287 M9.69893076,19.4992872 L2.2,12.0003564 L9.69893076,4.5" }) })));
|
65
|
+
};
|
66
|
+
exports.ArrowLeftDesign08 = ArrowLeftDesign08;
|
67
|
+
var ArrowLeftDesign09 = function (_a) {
|
68
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
69
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "32", height: "24", viewBox: "0 0 32 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M11.505,4.5 C11.505,4.5 3.7,12.305 3.7,12.305 L28.237,12.305" }) })));
|
70
|
+
};
|
71
|
+
exports.ArrowLeftDesign09 = ArrowLeftDesign09;
|
72
|
+
var ArrowLeftDesign10 = function (_a) {
|
73
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
74
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("polygon", { fill: color, fillRule: "evenodd", points: "10.5 4.5 19.5 19.5 1.5 19.5", transform: "rotate(-90 10.5 12)" }) })));
|
75
|
+
};
|
76
|
+
exports.ArrowLeftDesign10 = ArrowLeftDesign10;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type IconType from '../../IconType';
|
3
|
+
export declare const ArrowRightDesign01: ({ color, size, ...rest }: IconType) => JSX.Element;
|
4
|
+
export declare const ArrowRightDesign02: ({ color, size, ...rest }: IconType) => JSX.Element;
|
5
|
+
export declare const ArrowRightDesign03: ({ color, size, ...rest }: IconType) => JSX.Element;
|
6
|
+
export declare const ArrowRightDesign04: ({ color, size, ...rest }: IconType) => JSX.Element;
|
7
|
+
export declare const ArrowRightDesign05: ({ color, size, ...rest }: IconType) => JSX.Element;
|
8
|
+
export declare const ArrowRightDesign06: ({ color, size, ...rest }: IconType) => JSX.Element;
|
9
|
+
export declare const ArrowRightDesign07: ({ color, ...rest }: IconType) => JSX.Element;
|
10
|
+
export declare const ArrowRightDesign08: ({ color, ...rest }: IconType) => JSX.Element;
|
11
|
+
export declare const ArrowRightDesign09: ({ color, ...rest }: IconType) => JSX.Element;
|
12
|
+
export declare const ArrowRightDesign10: ({ color, size, ...rest }: IconType) => JSX.Element;
|
@@ -0,0 +1,76 @@
|
|
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
|
+
exports.ArrowRightDesign10 = exports.ArrowRightDesign09 = exports.ArrowRightDesign08 = exports.ArrowRightDesign07 = exports.ArrowRightDesign06 = exports.ArrowRightDesign05 = exports.ArrowRightDesign04 = exports.ArrowRightDesign03 = exports.ArrowRightDesign02 = exports.ArrowRightDesign01 = void 0;
|
26
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
27
|
+
var ArrowRightDesign01 = function (_a) {
|
28
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
29
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: ".5", d: "M16.5773,19.5001 L9.6663,12.5891 C9.3413,12.2641 9.3413,11.7361 9.6663,11.4111 L16.5773,4.5001", transform: "rotate(180 13 12)" }) })));
|
30
|
+
};
|
31
|
+
exports.ArrowRightDesign01 = ArrowRightDesign01;
|
32
|
+
var ArrowRightDesign02 = function (_a) {
|
33
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
34
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", d: "M16.5776,19.5003 L9.6671,12.5898 C9.3416,12.2643 9.3416,11.7363 9.6671,11.4108 L16.5776,4.5003", transform: "rotate(180 13 12)" }) })));
|
35
|
+
};
|
36
|
+
exports.ArrowRightDesign02 = ArrowRightDesign02;
|
37
|
+
var ArrowRightDesign03 = function (_a) {
|
38
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
39
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.5", d: "M16.5774,19.5 L9.6664,12.589 C9.3414,12.264 9.3414,11.736 9.6664,11.411 L16.5774,4.5", transform: "rotate(180 13 12)" }) })));
|
40
|
+
};
|
41
|
+
exports.ArrowRightDesign03 = ArrowRightDesign03;
|
42
|
+
var ArrowRightDesign04 = function (_a) {
|
43
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
44
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("polyline", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", points: "8.5 4 16.5 12 8.5 20.002" }) })));
|
45
|
+
};
|
46
|
+
exports.ArrowRightDesign04 = ArrowRightDesign04;
|
47
|
+
var ArrowRightDesign05 = function (_a) {
|
48
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
49
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M4.55225015,11.9999287 L21,11.9999287 M10.4989308,19.4992872 L3,12.0003564 L10.4989308,4.5", transform: "rotate(180 12 12)" }) })));
|
50
|
+
};
|
51
|
+
exports.ArrowRightDesign05 = ArrowRightDesign05;
|
52
|
+
var ArrowRightDesign06 = function (_a) {
|
53
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
54
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", d: "M4.55225015,11.9999287 L21,11.9999287 M10.4989308,19.4992872 L3,12.0003564 L10.4989308,4.5", transform: "rotate(180 12 12)" }) })));
|
55
|
+
};
|
56
|
+
exports.ArrowRightDesign06 = ArrowRightDesign06;
|
57
|
+
var ArrowRightDesign07 = function (_a) {
|
58
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
59
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "32", height: "24", viewBox: "0 0 32 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M2.55225015,11.9999287 L31,11.9999287 M8.49893076,19.4992872 L1,12.0003564 L8.49893076,4.5", transform: "rotate(180 16 12)" }) })));
|
60
|
+
};
|
61
|
+
exports.ArrowRightDesign07 = ArrowRightDesign07;
|
62
|
+
var ArrowRightDesign08 = function (_a) {
|
63
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
64
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "32", height: "24", viewBox: "0 0 32 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", d: "M3.35225015,11.9999287 L29.8,11.9999287 M9.29893076,19.4992872 L1.8,12.0003564 L9.29893076,4.5", transform: "rotate(180 15.8 12)" }) })));
|
65
|
+
};
|
66
|
+
exports.ArrowRightDesign08 = ArrowRightDesign08;
|
67
|
+
var ArrowRightDesign09 = function (_a) {
|
68
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
69
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "32", height: "24", viewBox: "0 0 32 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M11.505,4.5 C11.505,4.5 3.7,12.305 3.7,12.305 L28.237,12.305", transform: "matrix(-1 0 0 1 31.937 0)" }) })));
|
70
|
+
};
|
71
|
+
exports.ArrowRightDesign09 = ArrowRightDesign09;
|
72
|
+
var ArrowRightDesign10 = function (_a) {
|
73
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
74
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("polygon", { fill: color, fillRule: "evenodd", points: "13.5 4.5 22.5 19.5 4.5 19.5", transform: "rotate(90 13.5 12)" }) })));
|
75
|
+
};
|
76
|
+
exports.ArrowRightDesign10 = ArrowRightDesign10;
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type IconType from '../../IconType';
|
3
|
+
export declare const ArrowUpDesign01: ({ color, size, ...rest }: IconType) => JSX.Element;
|
4
|
+
export declare const ArrowUpDesign02: ({ color, size, ...rest }: IconType) => JSX.Element;
|
5
|
+
export declare const ArrowUpDesign03: ({ color, size, ...rest }: IconType) => JSX.Element;
|
6
|
+
export declare const ArrowUpDesign04: ({ color, size, ...rest }: IconType) => JSX.Element;
|
7
|
+
export declare const ArrowUpDesign05: ({ color, size, ...rest }: IconType) => JSX.Element;
|
8
|
+
export declare const ArrowUpDesign06: ({ color, size, ...rest }: IconType) => JSX.Element;
|
9
|
+
export declare const ArrowUpDesign07: ({ color, ...rest }: IconType) => JSX.Element;
|
10
|
+
export declare const ArrowUpDesign08: ({ color, ...rest }: IconType) => JSX.Element;
|
11
|
+
export declare const ArrowUpDesign09: ({ color, ...rest }: IconType) => JSX.Element;
|
12
|
+
export declare const ArrowUpDesign10: ({ color, size, ...rest }: IconType) => JSX.Element;
|
@@ -0,0 +1,76 @@
|
|
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
|
+
exports.ArrowUpDesign10 = exports.ArrowUpDesign09 = exports.ArrowUpDesign08 = exports.ArrowUpDesign07 = exports.ArrowUpDesign06 = exports.ArrowUpDesign05 = exports.ArrowUpDesign04 = exports.ArrowUpDesign03 = exports.ArrowUpDesign02 = exports.ArrowUpDesign01 = void 0;
|
26
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
27
|
+
var ArrowUpDesign01 = function (_a) {
|
28
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
29
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: ".5", d: "M15.577375,18.497375 L8.666375,11.586375 C8.341375,11.261375 8.341375,10.733375 8.666375,10.408375 L15.577375,3.497375", transform: "rotate(90 12 10.997)" }) })));
|
30
|
+
};
|
31
|
+
exports.ArrowUpDesign01 = ArrowUpDesign01;
|
32
|
+
var ArrowUpDesign02 = function (_a) {
|
33
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
34
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", d: "M15.5773125,18.5003005 L8.6668125,11.5898005 C8.3413125,11.2643005 8.3413125,10.7363005 8.6668125,10.4108005 L15.5773125,3.5003005", transform: "rotate(90 12 11)" }) })));
|
35
|
+
};
|
36
|
+
exports.ArrowUpDesign02 = ArrowUpDesign02;
|
37
|
+
var ArrowUpDesign03 = function (_a) {
|
38
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
39
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2.5", d: "M15.5774,18.5 L8.6664,11.589 C8.3414,11.264 8.3414,10.736 8.6664,10.411 L15.5774,3.5", transform: "rotate(90 12 11)" }) })));
|
40
|
+
};
|
41
|
+
exports.ArrowUpDesign03 = ArrowUpDesign03;
|
42
|
+
var ArrowUpDesign04 = function (_a) {
|
43
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
44
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("polyline", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", points: "8.001 3.499 16.001 11.499 8.001 19.501", transform: "rotate(-90 12 11.5)" }) })));
|
45
|
+
};
|
46
|
+
exports.ArrowUpDesign04 = ArrowUpDesign04;
|
47
|
+
var ArrowUpDesign05 = function (_a) {
|
48
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
49
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M4.55225015,11.9999287 L21,11.9999287 M10.4989308,19.4992872 L3,12.0003564 L10.4989308,4.5", transform: "rotate(90 12 12)" }) })));
|
50
|
+
};
|
51
|
+
exports.ArrowUpDesign05 = ArrowUpDesign05;
|
52
|
+
var ArrowUpDesign06 = function (_a) {
|
53
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
54
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", d: "M4.55225015,11.9999287 L21,11.9999287 M10.4989308,19.4992872 L3,12.0003564 L10.4989308,4.5", transform: "rotate(90 12 12)" }) })));
|
55
|
+
};
|
56
|
+
exports.ArrowUpDesign06 = ArrowUpDesign06;
|
57
|
+
var ArrowUpDesign07 = function (_a) {
|
58
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
59
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "32", viewBox: "0 0 24 32" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M-1.44774985,16.0002851 L27,16.0002851 M4.49893076,23.4996436 L-3,16.0007128 L4.49893076,8.50035641", transform: "rotate(90 12 16)" }) })));
|
60
|
+
};
|
61
|
+
exports.ArrowUpDesign07 = ArrowUpDesign07;
|
62
|
+
var ArrowUpDesign08 = function (_a) {
|
63
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
64
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "32", viewBox: "0 0 24 32" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "square", strokeWidth: "3", d: "M-0.448106259,16.2002851 L25.9996436,16.2002851 M5.49857435,23.6996436 L-2.00035641,16.2007128 L5.49857435,8.70035641", transform: "rotate(90 12 16.2)" }) })));
|
65
|
+
};
|
66
|
+
exports.ArrowUpDesign08 = ArrowUpDesign08;
|
67
|
+
var ArrowUpDesign09 = function (_a) {
|
68
|
+
var color = _a.color, rest = __rest(_a, ["color"]);
|
69
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: "24", height: "32", viewBox: "0 0 24 32" }, rest, { children: (0, jsx_runtime_1.jsx)("path", { fill: "none", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", d: "M11.805,12.066 C11.805,12.066 4,19.871 4,19.871 L28.537,19.871", transform: "rotate(90 16.268 15.969)" }) })));
|
70
|
+
};
|
71
|
+
exports.ArrowUpDesign09 = ArrowUpDesign09;
|
72
|
+
var ArrowUpDesign10 = function (_a) {
|
73
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
74
|
+
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsx)("polygon", { fill: color, fillRule: "evenodd", points: "12 3 21 18 3 18" }) })));
|
75
|
+
};
|
76
|
+
exports.ArrowUpDesign10 = ArrowUpDesign10;
|
package/dist/src/sub/DynamicLayout/components/pdsOriginal/common/assets/icons/line/index.d.ts
CHANGED
@@ -1,5 +1,45 @@
|
|
1
1
|
/// <reference types="react" />
|
2
2
|
declare const lineIcons: {
|
3
|
+
readonly ic_arrow_down_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
4
|
+
readonly ic_arrow_down_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
5
|
+
readonly ic_arrow_down_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
6
|
+
readonly ic_arrow_down_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
7
|
+
readonly ic_arrow_down_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
8
|
+
readonly ic_arrow_down_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
9
|
+
readonly ic_arrow_down_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
10
|
+
readonly ic_arrow_down_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
11
|
+
readonly ic_arrow_down_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
12
|
+
readonly ic_arrow_down_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
13
|
+
readonly ic_arrow_left_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
14
|
+
readonly ic_arrow_left_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
15
|
+
readonly ic_arrow_left_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
16
|
+
readonly ic_arrow_left_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
17
|
+
readonly ic_arrow_left_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
18
|
+
readonly ic_arrow_left_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
19
|
+
readonly ic_arrow_left_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
20
|
+
readonly ic_arrow_left_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
21
|
+
readonly ic_arrow_left_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
22
|
+
readonly ic_arrow_left_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
23
|
+
readonly ic_arrow_right_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
24
|
+
readonly ic_arrow_right_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
25
|
+
readonly ic_arrow_right_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
26
|
+
readonly ic_arrow_right_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
27
|
+
readonly ic_arrow_right_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
28
|
+
readonly ic_arrow_right_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
29
|
+
readonly ic_arrow_right_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
30
|
+
readonly ic_arrow_right_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
31
|
+
readonly ic_arrow_right_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
32
|
+
readonly ic_arrow_right_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
33
|
+
readonly ic_arrow_up_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
34
|
+
readonly ic_arrow_up_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
35
|
+
readonly ic_arrow_up_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
36
|
+
readonly ic_arrow_up_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
37
|
+
readonly ic_arrow_up_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
38
|
+
readonly ic_arrow_up_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
39
|
+
readonly ic_arrow_up_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
40
|
+
readonly ic_arrow_up_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
41
|
+
readonly ic_arrow_up_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
42
|
+
readonly ic_arrow_up_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
3
43
|
readonly ic_arrow_down: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
4
44
|
readonly ic_arrow_down_bold: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
5
45
|
readonly ic_arrow_left: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
@@ -1,4 +1,38 @@
|
|
1
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 __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
14
|
+
if (k2 === undefined) k2 = k;
|
15
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
16
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
17
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
18
|
+
}
|
19
|
+
Object.defineProperty(o, k2, desc);
|
20
|
+
}) : (function(o, m, k, k2) {
|
21
|
+
if (k2 === undefined) k2 = k;
|
22
|
+
o[k2] = m[k];
|
23
|
+
}));
|
24
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
25
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
26
|
+
}) : function(o, v) {
|
27
|
+
o["default"] = v;
|
28
|
+
});
|
29
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
30
|
+
if (mod && mod.__esModule) return mod;
|
31
|
+
var result = {};
|
32
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
33
|
+
__setModuleDefault(result, mod);
|
34
|
+
return result;
|
35
|
+
};
|
2
36
|
var __importDefault = (this && this.__importDefault) || function (mod) {
|
3
37
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
4
38
|
};
|
@@ -45,6 +79,7 @@ var Developer_1 = __importDefault(require("./Developer"));
|
|
45
79
|
var Download_1 = __importDefault(require("./Download"));
|
46
80
|
var Edit_1 = __importDefault(require("./Edit"));
|
47
81
|
var Editor_1 = __importDefault(require("./Editor"));
|
82
|
+
var editorNavigationIcons = __importStar(require("./editorNavigationIcons"));
|
48
83
|
var End_1 = __importDefault(require("./End"));
|
49
84
|
var Error_1 = __importDefault(require("./Error"));
|
50
85
|
var Eye_1 = __importDefault(require("./Eye"));
|
@@ -178,181 +213,5 @@ var VodShorts_1 = __importDefault(require("./VodShorts"));
|
|
178
213
|
var Warning_1 = __importDefault(require("./Warning"));
|
179
214
|
var Weblink_1 = __importDefault(require("./Weblink"));
|
180
215
|
var Xmark_1 = __importDefault(require("./Xmark"));
|
181
|
-
var lineIcons = {
|
182
|
-
ic_arrow_down: ArrowDown_1.default,
|
183
|
-
ic_arrow_down_bold: ArrowDownBold_1.default,
|
184
|
-
ic_arrow_left: ArrowLeft_1.default,
|
185
|
-
ic_arrow_left_2: ArrowLeft2_1.default,
|
186
|
-
ic_arrow_left_bold: ArrowLeftBold_1.default,
|
187
|
-
ic_arrow_left_thin: ArrowLeftThin_1.default,
|
188
|
-
ic_arrow_right: ArrowRight_1.default,
|
189
|
-
ic_arrow_right_2: ArrowRight2_1.default,
|
190
|
-
ic_arrow_right_bold: ArrowRightBold_1.default,
|
191
|
-
ic_arrow_right_thin: ArrowRightThin_1.default,
|
192
|
-
ic_arrow_round_left: ArrowRoundLeft_1.default,
|
193
|
-
ic_arrow_up: ArrowUp_1.default,
|
194
|
-
ic_arrow_up_bold: ArrowUpBold_1.default,
|
195
|
-
ic_bell: Bell_1.default,
|
196
|
-
ic_bell_notification: BellNotification_1.default,
|
197
|
-
ic_booking: Booking_1.default,
|
198
|
-
ic_booking_completed: BookingCompleted_1.default,
|
199
|
-
ic_booking_history: BookingHistory_1.default,
|
200
|
-
ic_booking_papp: BookingPapp_1.default,
|
201
|
-
ic_booking_ticket: BookingTicket_1.default,
|
202
|
-
ic_bookmark: Bookmark_1.default,
|
203
|
-
ic_business: Business_1.default,
|
204
|
-
ic_call: Call_1.default,
|
205
|
-
ic_camera: Camera_1.default,
|
206
|
-
ic_channel: Channel_1.default,
|
207
|
-
ic_channel_setting: ChannelSetting_1.default,
|
208
|
-
ic_chat: Chat_1.default,
|
209
|
-
ic_chat_counseling: ChatCounseling_1.default,
|
210
|
-
ic_chat_crm: ChatCrm_1.default,
|
211
|
-
ic_check: Check_1.default,
|
212
|
-
ic_checkbox_off: CheckboxOff_1.default,
|
213
|
-
ic_clip: Clip_1.default,
|
214
|
-
ic_coins: Coins_1.default,
|
215
|
-
ic_cont_watching: ContWatching_1.default,
|
216
|
-
ic_copy: Copy_1.default,
|
217
|
-
ic_cs: Cs_1.default,
|
218
|
-
ic_dashboard: Dashboard_1.default,
|
219
|
-
ic_design_preference: DesignPreference_1.default,
|
220
|
-
ic_developer: Developer_1.default,
|
221
|
-
ic_download: Download_1.default,
|
222
|
-
ic_edit: Edit_1.default,
|
223
|
-
ic_editor: Editor_1.default,
|
224
|
-
ic_end: End_1.default,
|
225
|
-
ic_error: Error_1.default,
|
226
|
-
ic_eye: Eye_1.default,
|
227
|
-
ic_eye_close: EyeClose_1.default,
|
228
|
-
ic_filter: Filter_1.default,
|
229
|
-
ic_folder: Folder_1.default,
|
230
|
-
ic_ghost: Ghost_1.default,
|
231
|
-
ic_heart_care: HeartCare_1.default,
|
232
|
-
ic_home: Home_1.default,
|
233
|
-
ic_information: Information_1.default,
|
234
|
-
ic_internal: Internal_1.default,
|
235
|
-
ic_language: Language_1.default,
|
236
|
-
ic_links: Links_1.default,
|
237
|
-
ic_live: Live_1.default,
|
238
|
-
ic_live_broadcast: LiveBroadcast_1.default,
|
239
|
-
ic_live_commerce: LiveCommerce_1.default,
|
240
|
-
ic_live_concert: LiveConcert_1.default,
|
241
|
-
ic_live_event: LiveEvent_1.default,
|
242
|
-
ic_live_personal: LivePersonal_1.default,
|
243
|
-
ic_lock: Lock_1.default,
|
244
|
-
ic_menu: Menu_1.default,
|
245
|
-
ic_mic_off: MicOff_1.default,
|
246
|
-
ic_mic_on: MicOn_1.default,
|
247
|
-
ic_minus_circle: MinusCircle_1.default,
|
248
|
-
ic_open_page: OpenPage_1.default,
|
249
|
-
ic_order: Order_1.default,
|
250
|
-
ic_page_size_expand: PageSizeExpand_1.default,
|
251
|
-
ic_page_size_reduce: PageSizeReduce_1.default,
|
252
|
-
ic_papp: Papp_1.default,
|
253
|
-
ic_papp_type: PappType_1.default,
|
254
|
-
ic_payment: Payment_1.default,
|
255
|
-
ic_payment_free_trial: PaymentFreeTrial_1.default,
|
256
|
-
ic_payment_gift: PaymentGift_1.default,
|
257
|
-
ic_payment_onetime: PaymentOnetime_1.default,
|
258
|
-
ic_payment_regularly: PaymentRegularly_1.default,
|
259
|
-
ic_payment_setting: PaymentSetting_1.default,
|
260
|
-
ic_photo: Photo_1.default,
|
261
|
-
ic_photo_multiple: PhotoMultiple_1.default,
|
262
|
-
ic_plan: Plan_1.default,
|
263
|
-
ic_plus: Plus_1.default,
|
264
|
-
ic_plus_circle: PlusCircle_1.default,
|
265
|
-
ic_post_article: PostArticle_1.default,
|
266
|
-
ic_post_blog: PostBlog_1.default,
|
267
|
-
ic_post_column: PostColumn_1.default,
|
268
|
-
ic_post_community_p: PostCommunityP_1.default,
|
269
|
-
ic_post_free: PostFree_1.default,
|
270
|
-
ic_post_inquiry: PostInquiry_1.default,
|
271
|
-
ic_post_magazine: PostMagazine_1.default,
|
272
|
-
ic_post_notice: PostNotice_1.default,
|
273
|
-
ic_post_paper_plane: PostPaperPlane_1.default,
|
274
|
-
ic_post_photobook: PostPhotobook_1.default,
|
275
|
-
ic_post_promotion: PostPromotion_1.default,
|
276
|
-
ic_post_promotion_p: PostPromotionP_1.default,
|
277
|
-
ic_post_social: PostSocial_1.default,
|
278
|
-
ic_post_vote: PostVote_1.default,
|
279
|
-
ic_post_welcome: PostWelcome_1.default,
|
280
|
-
ic_profit: Profit_1.default,
|
281
|
-
ic_qr: Qr_1.default,
|
282
|
-
ic_question: Question_1.default,
|
283
|
-
ic_radio_off: RadioOff_1.default,
|
284
|
-
ic_radio_on: RadioOn_1.default,
|
285
|
-
ic_report: Report_1.default,
|
286
|
-
ic_requirement: Requirement_1.default,
|
287
|
-
ic_sales: Sales_1.default,
|
288
|
-
ic_search: Search_1.default,
|
289
|
-
ic_section_content_32: SectionContent32_1.default,
|
290
|
-
ic_section_content_40: SectionContent40_1.default,
|
291
|
-
ic_section_contents_carousel_32: SectionContentsCarousel32_1.default,
|
292
|
-
ic_section_contents_carousel_40: SectionContentsCarousel40_1.default,
|
293
|
-
ic_section_divider_32: SectionDivider32_1.default,
|
294
|
-
ic_section_divider_40: SectionDivider40_1.default,
|
295
|
-
ic_section_footer_32: SectionFooter32_1.default,
|
296
|
-
ic_section_footer_40: SectionFooter40_1.default,
|
297
|
-
ic_section_info_box_32: SectionInfoBox32_1.default,
|
298
|
-
ic_section_info_box_40: SectionInfoBox40_1.default,
|
299
|
-
ic_section_intro_32: SectionIntro32_1.default,
|
300
|
-
ic_section_intro_40: SectionIntro40_1.default,
|
301
|
-
ic_section_map_32: SectionMap32_1.default,
|
302
|
-
ic_section_map_40: SectionMap40_1.default,
|
303
|
-
ic_section_price_box_32: SectionPriceBox32_1.default,
|
304
|
-
ic_section_price_box_40: SectionPriceBox40_1.default,
|
305
|
-
ic_section_products_carousel_32: SectionProductsCarousel32_1.default,
|
306
|
-
ic_section_products_carousel_40: SectionProductsCarousel40_1.default,
|
307
|
-
ic_section_review_32: SectionReview32_1.default,
|
308
|
-
ic_section_review_40: SectionReview40_1.default,
|
309
|
-
ic_section_slider_32: SectionSlider32_1.default,
|
310
|
-
ic_section_slider_40: SectionSlider40_1.default,
|
311
|
-
ic_section_tab_32: SectionTab32_1.default,
|
312
|
-
ic_section_tab_40: SectionTab40_1.default,
|
313
|
-
ic_seller_info: SellerInfo_1.default,
|
314
|
-
ic_seller_intro: SellerIntro_1.default,
|
315
|
-
ic_seller_page: SellerPage_1.default,
|
316
|
-
ic_series: Series_1.default,
|
317
|
-
ic_series_list: SeriesList_1.default,
|
318
|
-
ic_setting: Setting_1.default,
|
319
|
-
ic_settlement: Settlement_1.default,
|
320
|
-
ic_share: Share_1.default,
|
321
|
-
ic_slideBanner: SlideBanner_1.default,
|
322
|
-
ic_sort: Sort_1.default,
|
323
|
-
ic_speaker_off: SpeakerOff_1.default,
|
324
|
-
ic_speaker_wave_1: SpeakerWave1_1.default,
|
325
|
-
ic_speaker_wave_2: SpeakerWave2_1.default,
|
326
|
-
ic_standard_banner: StandardBanner_1.default,
|
327
|
-
ic_subscribers: Subscribers_1.default,
|
328
|
-
ic_success: Success_1.default,
|
329
|
-
ic_ten_sec_back: TenSecBack_1.default,
|
330
|
-
ic_ten_sec_back_arrow: TenSecBackArrow_1.default,
|
331
|
-
ic_ten_sec_forward: TenSecForward_1.default,
|
332
|
-
ic_ten_sec_forward_arrow: TenSecForwardArrow_1.default,
|
333
|
-
ic_time: Time_1.default,
|
334
|
-
ic_toggle_down: ToggleDown_1.default,
|
335
|
-
ic_toggle_up: ToggleUp_1.default,
|
336
|
-
ic_trashcan: Trashcan_1.default,
|
337
|
-
ic_unavailable: Unavailable_1.default,
|
338
|
-
ic_unlock: Unlock_1.default,
|
339
|
-
ic_upload: Upload_1.default,
|
340
|
-
ic_video: Video_1.default,
|
341
|
-
ic_videocall: Videocall_1.default,
|
342
|
-
ic_videocall_pro: VideocallPro_1.default,
|
343
|
-
ic_video_off: VideoOff_1.default,
|
344
|
-
ic_video_pip: VideoPip_1.default,
|
345
|
-
ic_video_play: VideoPlay_1.default,
|
346
|
-
ic_video_playback_speed: VideoPlaybackSpeed_1.default,
|
347
|
-
ic_video_play_circle: VideoPlayCircle_1.default,
|
348
|
-
ic_video_playlist: VideoPlaylist_1.default,
|
349
|
-
ic_vod: Vod_1.default,
|
350
|
-
ic_vodclass: VodClass_1.default,
|
351
|
-
ic_vodplus: Vodplus_1.default,
|
352
|
-
ic_vods: Vods_1.default,
|
353
|
-
ic_vod_shorts: VodShorts_1.default,
|
354
|
-
ic_warning: Warning_1.default,
|
355
|
-
ic_weblink: Weblink_1.default,
|
356
|
-
ic_xmark: Xmark_1.default
|
357
|
-
};
|
216
|
+
var lineIcons = __assign({ ic_arrow_down: ArrowDown_1.default, ic_arrow_down_bold: ArrowDownBold_1.default, ic_arrow_left: ArrowLeft_1.default, ic_arrow_left_2: ArrowLeft2_1.default, ic_arrow_left_bold: ArrowLeftBold_1.default, ic_arrow_left_thin: ArrowLeftThin_1.default, ic_arrow_right: ArrowRight_1.default, ic_arrow_right_2: ArrowRight2_1.default, ic_arrow_right_bold: ArrowRightBold_1.default, ic_arrow_right_thin: ArrowRightThin_1.default, ic_arrow_round_left: ArrowRoundLeft_1.default, ic_arrow_up: ArrowUp_1.default, ic_arrow_up_bold: ArrowUpBold_1.default, ic_bell: Bell_1.default, ic_bell_notification: BellNotification_1.default, ic_booking: Booking_1.default, ic_booking_completed: BookingCompleted_1.default, ic_booking_history: BookingHistory_1.default, ic_booking_papp: BookingPapp_1.default, ic_booking_ticket: BookingTicket_1.default, ic_bookmark: Bookmark_1.default, ic_business: Business_1.default, ic_call: Call_1.default, ic_camera: Camera_1.default, ic_channel: Channel_1.default, ic_channel_setting: ChannelSetting_1.default, ic_chat: Chat_1.default, ic_chat_counseling: ChatCounseling_1.default, ic_chat_crm: ChatCrm_1.default, ic_check: Check_1.default, ic_checkbox_off: CheckboxOff_1.default, ic_clip: Clip_1.default, ic_coins: Coins_1.default, ic_cont_watching: ContWatching_1.default, ic_copy: Copy_1.default, ic_cs: Cs_1.default, ic_dashboard: Dashboard_1.default, ic_design_preference: DesignPreference_1.default, ic_developer: Developer_1.default, ic_download: Download_1.default, ic_edit: Edit_1.default, ic_editor: Editor_1.default, ic_end: End_1.default, ic_error: Error_1.default, ic_eye: Eye_1.default, ic_eye_close: EyeClose_1.default, ic_filter: Filter_1.default, ic_folder: Folder_1.default, ic_ghost: Ghost_1.default, ic_heart_care: HeartCare_1.default, ic_home: Home_1.default, ic_information: Information_1.default, ic_internal: Internal_1.default, ic_language: Language_1.default, ic_links: Links_1.default, ic_live: Live_1.default, ic_live_broadcast: LiveBroadcast_1.default, ic_live_commerce: LiveCommerce_1.default, ic_live_concert: LiveConcert_1.default, ic_live_event: LiveEvent_1.default, ic_live_personal: LivePersonal_1.default, ic_lock: Lock_1.default, ic_menu: Menu_1.default, ic_mic_off: MicOff_1.default, ic_mic_on: MicOn_1.default, ic_minus_circle: MinusCircle_1.default, ic_open_page: OpenPage_1.default, ic_order: Order_1.default, ic_page_size_expand: PageSizeExpand_1.default, ic_page_size_reduce: PageSizeReduce_1.default, ic_papp: Papp_1.default, ic_papp_type: PappType_1.default, ic_payment: Payment_1.default, ic_payment_free_trial: PaymentFreeTrial_1.default, ic_payment_gift: PaymentGift_1.default, ic_payment_onetime: PaymentOnetime_1.default, ic_payment_regularly: PaymentRegularly_1.default, ic_payment_setting: PaymentSetting_1.default, ic_photo: Photo_1.default, ic_photo_multiple: PhotoMultiple_1.default, ic_plan: Plan_1.default, ic_plus: Plus_1.default, ic_plus_circle: PlusCircle_1.default, ic_post_article: PostArticle_1.default, ic_post_blog: PostBlog_1.default, ic_post_column: PostColumn_1.default, ic_post_community_p: PostCommunityP_1.default, ic_post_free: PostFree_1.default, ic_post_inquiry: PostInquiry_1.default, ic_post_magazine: PostMagazine_1.default, ic_post_notice: PostNotice_1.default, ic_post_paper_plane: PostPaperPlane_1.default, ic_post_photobook: PostPhotobook_1.default, ic_post_promotion: PostPromotion_1.default, ic_post_promotion_p: PostPromotionP_1.default, ic_post_social: PostSocial_1.default, ic_post_vote: PostVote_1.default, ic_post_welcome: PostWelcome_1.default, ic_profit: Profit_1.default, ic_qr: Qr_1.default, ic_question: Question_1.default, ic_radio_off: RadioOff_1.default, ic_radio_on: RadioOn_1.default, ic_report: Report_1.default, ic_requirement: Requirement_1.default, ic_sales: Sales_1.default, ic_search: Search_1.default, ic_section_content_32: SectionContent32_1.default, ic_section_content_40: SectionContent40_1.default, ic_section_contents_carousel_32: SectionContentsCarousel32_1.default, ic_section_contents_carousel_40: SectionContentsCarousel40_1.default, ic_section_divider_32: SectionDivider32_1.default, ic_section_divider_40: SectionDivider40_1.default, ic_section_footer_32: SectionFooter32_1.default, ic_section_footer_40: SectionFooter40_1.default, ic_section_info_box_32: SectionInfoBox32_1.default, ic_section_info_box_40: SectionInfoBox40_1.default, ic_section_intro_32: SectionIntro32_1.default, ic_section_intro_40: SectionIntro40_1.default, ic_section_map_32: SectionMap32_1.default, ic_section_map_40: SectionMap40_1.default, ic_section_price_box_32: SectionPriceBox32_1.default, ic_section_price_box_40: SectionPriceBox40_1.default, ic_section_products_carousel_32: SectionProductsCarousel32_1.default, ic_section_products_carousel_40: SectionProductsCarousel40_1.default, ic_section_review_32: SectionReview32_1.default, ic_section_review_40: SectionReview40_1.default, ic_section_slider_32: SectionSlider32_1.default, ic_section_slider_40: SectionSlider40_1.default, ic_section_tab_32: SectionTab32_1.default, ic_section_tab_40: SectionTab40_1.default, ic_seller_info: SellerInfo_1.default, ic_seller_intro: SellerIntro_1.default, ic_seller_page: SellerPage_1.default, ic_series: Series_1.default, ic_series_list: SeriesList_1.default, ic_setting: Setting_1.default, ic_settlement: Settlement_1.default, ic_share: Share_1.default, ic_slideBanner: SlideBanner_1.default, ic_sort: Sort_1.default, ic_speaker_off: SpeakerOff_1.default, ic_speaker_wave_1: SpeakerWave1_1.default, ic_speaker_wave_2: SpeakerWave2_1.default, ic_standard_banner: StandardBanner_1.default, ic_subscribers: Subscribers_1.default, ic_success: Success_1.default, ic_ten_sec_back: TenSecBack_1.default, ic_ten_sec_back_arrow: TenSecBackArrow_1.default, ic_ten_sec_forward: TenSecForward_1.default, ic_ten_sec_forward_arrow: TenSecForwardArrow_1.default, ic_time: Time_1.default, ic_toggle_down: ToggleDown_1.default, ic_toggle_up: ToggleUp_1.default, ic_trashcan: Trashcan_1.default, ic_unavailable: Unavailable_1.default, ic_unlock: Unlock_1.default, ic_upload: Upload_1.default, ic_video: Video_1.default, ic_videocall: Videocall_1.default, ic_videocall_pro: VideocallPro_1.default, ic_video_off: VideoOff_1.default, ic_video_pip: VideoPip_1.default, ic_video_play: VideoPlay_1.default, ic_video_playback_speed: VideoPlaybackSpeed_1.default, ic_video_play_circle: VideoPlayCircle_1.default, ic_video_playlist: VideoPlaylist_1.default, ic_vod: Vod_1.default, ic_vodclass: VodClass_1.default, ic_vodplus: Vodplus_1.default, ic_vods: Vods_1.default, ic_vod_shorts: VodShorts_1.default, ic_warning: Warning_1.default, ic_weblink: Weblink_1.default, ic_xmark: Xmark_1.default }, editorNavigationIcons);
|
358
217
|
exports.default = lineIcons;
|