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,12 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type IconType from '../IconType';
|
3
|
+
export declare const ArrowDownDesign01: ({ color, size, ...rest }: IconType) => JSX.Element;
|
4
|
+
export declare const ArrowDownDesign02: ({ color, size, ...rest }: IconType) => JSX.Element;
|
5
|
+
export declare const ArrowDownDesign03: ({ color, size, ...rest }: IconType) => JSX.Element;
|
6
|
+
export declare const ArrowDownDesign04: ({ color, size, ...rest }: IconType) => JSX.Element;
|
7
|
+
export declare const ArrowDownDesign05: ({ color, size, ...rest }: IconType) => JSX.Element;
|
8
|
+
export declare const ArrowDownDesign06: ({ color, size, ...rest }: IconType) => JSX.Element;
|
9
|
+
export declare const ArrowDownDesign07: ({ color, ...rest }: IconType) => JSX.Element;
|
10
|
+
export declare const ArrowDownDesign08: ({ color, ...rest }: IconType) => JSX.Element;
|
11
|
+
export declare const ArrowDownDesign09: ({ color, ...rest }: IconType) => JSX.Element;
|
12
|
+
export declare const ArrowDownDesign10: ({ 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.ArrowDownDesign10 = exports.ArrowDownDesign09 = exports.ArrowDownDesign08 = exports.ArrowDownDesign07 = exports.ArrowDownDesign06 = exports.ArrowDownDesign05 = exports.ArrowDownDesign04 = exports.ArrowDownDesign03 = exports.ArrowDownDesign02 = exports.ArrowDownDesign01 = void 0;
|
26
|
+
var jsx_runtime_1 = require("react/jsx-runtime");
|
27
|
+
var ArrowDownDesign01 = 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.ArrowDownDesign01 = ArrowDownDesign01;
|
32
|
+
var ArrowDownDesign02 = 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.ArrowDownDesign02 = ArrowDownDesign02;
|
37
|
+
var ArrowDownDesign03 = 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.ArrowDownDesign03 = ArrowDownDesign03;
|
42
|
+
var ArrowDownDesign04 = 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.ArrowDownDesign04 = ArrowDownDesign04;
|
47
|
+
var ArrowDownDesign05 = 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.ArrowDownDesign05 = ArrowDownDesign05;
|
52
|
+
var ArrowDownDesign06 = 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.ArrowDownDesign06 = ArrowDownDesign06;
|
57
|
+
var ArrowDownDesign07 = 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.ArrowDownDesign07 = ArrowDownDesign07;
|
62
|
+
var ArrowDownDesign08 = 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,15.8002851 L25.9996436,15.8002851 M5.49857435,23.2996436 L-2.00035641,15.8007128 L5.49857435,8.30035641", transform: "matrix(0 -1 -1 0 27.8 27.8)" }) })));
|
65
|
+
};
|
66
|
+
exports.ArrowDownDesign08 = ArrowDownDesign08;
|
67
|
+
var ArrowDownDesign09 = 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: "scale(1 -1) rotate(90 32.237 0)" }) })));
|
70
|
+
};
|
71
|
+
exports.ArrowDownDesign09 = ArrowDownDesign09;
|
72
|
+
var ArrowDownDesign10 = 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 6 21 21 3 21", transform: "rotate(180 12 13.5)" }) })));
|
75
|
+
};
|
76
|
+
exports.ArrowDownDesign10 = ArrowDownDesign10;
|
@@ -0,0 +1,43 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
export declare const editorNavigationIcons: {
|
3
|
+
ic_arrow_down_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
4
|
+
ic_arrow_down_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
5
|
+
ic_arrow_down_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
6
|
+
ic_arrow_down_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
7
|
+
ic_arrow_down_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
8
|
+
ic_arrow_down_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
9
|
+
ic_arrow_down_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
10
|
+
ic_arrow_down_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
11
|
+
ic_arrow_down_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
12
|
+
ic_arrow_down_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
13
|
+
ic_arrow_left_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
14
|
+
ic_arrow_left_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
15
|
+
ic_arrow_left_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
16
|
+
ic_arrow_left_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
17
|
+
ic_arrow_left_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
18
|
+
ic_arrow_left_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
19
|
+
ic_arrow_left_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
20
|
+
ic_arrow_left_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
21
|
+
ic_arrow_left_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
22
|
+
ic_arrow_left_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
23
|
+
ic_arrow_right_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
24
|
+
ic_arrow_right_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
25
|
+
ic_arrow_right_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
26
|
+
ic_arrow_right_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
27
|
+
ic_arrow_right_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
28
|
+
ic_arrow_right_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
29
|
+
ic_arrow_right_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
30
|
+
ic_arrow_right_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
31
|
+
ic_arrow_right_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
32
|
+
ic_arrow_right_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
33
|
+
ic_arrow_up_design_01: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
34
|
+
ic_arrow_up_design_02: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
35
|
+
ic_arrow_up_design_03: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
36
|
+
ic_arrow_up_design_04: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
37
|
+
ic_arrow_up_design_05: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
38
|
+
ic_arrow_up_design_06: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
39
|
+
ic_arrow_up_design_07: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
40
|
+
ic_arrow_up_design_08: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
41
|
+
ic_arrow_up_design_09: ({ color, ...rest }: import("../IconType").default) => JSX.Element;
|
42
|
+
ic_arrow_up_design_10: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
43
|
+
};
|
@@ -0,0 +1,49 @@
|
|
1
|
+
"use strict";
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
3
|
+
exports.editorNavigationIcons = void 0;
|
4
|
+
var downIcons_1 = require("./downIcons");
|
5
|
+
var leftIcons_1 = require("./leftIcons");
|
6
|
+
var rightIcons_1 = require("./rightIcons");
|
7
|
+
var upIcons_1 = require("./upIcons");
|
8
|
+
exports.editorNavigationIcons = {
|
9
|
+
ic_arrow_down_design_01: downIcons_1.ArrowDownDesign01,
|
10
|
+
ic_arrow_down_design_02: downIcons_1.ArrowDownDesign02,
|
11
|
+
ic_arrow_down_design_03: downIcons_1.ArrowDownDesign03,
|
12
|
+
ic_arrow_down_design_04: downIcons_1.ArrowDownDesign04,
|
13
|
+
ic_arrow_down_design_05: downIcons_1.ArrowDownDesign05,
|
14
|
+
ic_arrow_down_design_06: downIcons_1.ArrowDownDesign06,
|
15
|
+
ic_arrow_down_design_07: downIcons_1.ArrowDownDesign07,
|
16
|
+
ic_arrow_down_design_08: downIcons_1.ArrowDownDesign08,
|
17
|
+
ic_arrow_down_design_09: downIcons_1.ArrowDownDesign09,
|
18
|
+
ic_arrow_down_design_10: downIcons_1.ArrowDownDesign10,
|
19
|
+
ic_arrow_left_design_01: leftIcons_1.ArrowLeftDesign01,
|
20
|
+
ic_arrow_left_design_02: leftIcons_1.ArrowLeftDesign02,
|
21
|
+
ic_arrow_left_design_03: leftIcons_1.ArrowLeftDesign03,
|
22
|
+
ic_arrow_left_design_04: leftIcons_1.ArrowLeftDesign04,
|
23
|
+
ic_arrow_left_design_05: leftIcons_1.ArrowLeftDesign05,
|
24
|
+
ic_arrow_left_design_06: leftIcons_1.ArrowLeftDesign06,
|
25
|
+
ic_arrow_left_design_07: leftIcons_1.ArrowLeftDesign07,
|
26
|
+
ic_arrow_left_design_08: leftIcons_1.ArrowLeftDesign08,
|
27
|
+
ic_arrow_left_design_09: leftIcons_1.ArrowLeftDesign09,
|
28
|
+
ic_arrow_left_design_10: leftIcons_1.ArrowLeftDesign10,
|
29
|
+
ic_arrow_right_design_01: rightIcons_1.ArrowRightDesign01,
|
30
|
+
ic_arrow_right_design_02: rightIcons_1.ArrowRightDesign02,
|
31
|
+
ic_arrow_right_design_03: rightIcons_1.ArrowRightDesign03,
|
32
|
+
ic_arrow_right_design_04: rightIcons_1.ArrowRightDesign04,
|
33
|
+
ic_arrow_right_design_05: rightIcons_1.ArrowRightDesign05,
|
34
|
+
ic_arrow_right_design_06: rightIcons_1.ArrowRightDesign06,
|
35
|
+
ic_arrow_right_design_07: rightIcons_1.ArrowRightDesign07,
|
36
|
+
ic_arrow_right_design_08: rightIcons_1.ArrowRightDesign08,
|
37
|
+
ic_arrow_right_design_09: rightIcons_1.ArrowRightDesign09,
|
38
|
+
ic_arrow_right_design_10: rightIcons_1.ArrowRightDesign10,
|
39
|
+
ic_arrow_up_design_01: upIcons_1.ArrowUpDesign01,
|
40
|
+
ic_arrow_up_design_02: upIcons_1.ArrowUpDesign02,
|
41
|
+
ic_arrow_up_design_03: upIcons_1.ArrowUpDesign03,
|
42
|
+
ic_arrow_up_design_04: upIcons_1.ArrowUpDesign04,
|
43
|
+
ic_arrow_up_design_05: upIcons_1.ArrowUpDesign05,
|
44
|
+
ic_arrow_up_design_06: upIcons_1.ArrowUpDesign06,
|
45
|
+
ic_arrow_up_design_07: upIcons_1.ArrowUpDesign07,
|
46
|
+
ic_arrow_up_design_08: upIcons_1.ArrowUpDesign08,
|
47
|
+
ic_arrow_up_design_09: upIcons_1.ArrowUpDesign09,
|
48
|
+
ic_arrow_up_design_10: upIcons_1.ArrowUpDesign10
|
49
|
+
};
|
@@ -0,0 +1,12 @@
|
|
1
|
+
/// <reference types="react" />
|
2
|
+
import type IconType from '../IconType';
|
3
|
+
export declare const ArrowLeftDesign01: ({ color, size, ...rest }: IconType) => JSX.Element;
|
4
|
+
export declare const ArrowLeftDesign02: ({ color, size, ...rest }: IconType) => JSX.Element;
|
5
|
+
export declare const ArrowLeftDesign03: ({ color, size, ...rest }: IconType) => JSX.Element;
|
6
|
+
export declare const ArrowLeftDesign04: ({ color, size, ...rest }: IconType) => JSX.Element;
|
7
|
+
export declare const ArrowLeftDesign05: ({ color, size, ...rest }: IconType) => JSX.Element;
|
8
|
+
export declare const ArrowLeftDesign06: ({ color, size, ...rest }: IconType) => JSX.Element;
|
9
|
+
export declare const ArrowLeftDesign07: ({ color, ...rest }: IconType) => JSX.Element;
|
10
|
+
export declare const ArrowLeftDesign08: ({ color, ...rest }: IconType) => JSX.Element;
|
11
|
+
export declare const ArrowLeftDesign09: ({ color, ...rest }: IconType) => JSX.Element;
|
12
|
+
export declare const ArrowLeftDesign10: ({ 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.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;
|
@@ -66,7 +66,7 @@ function UseTooltip(_a) {
|
|
66
66
|
systemUIPosition: tooltipPosition,
|
67
67
|
distance: distance
|
68
68
|
});
|
69
|
-
return tooltipText ? ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss }, { children: tooltipText })), document.
|
69
|
+
return tooltipText ? ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, { children: (0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss }, { children: tooltipText })), document.getElementById('root')) })) : ((0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {}));
|
70
70
|
}
|
71
71
|
var S_TooltipWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n ", "\n\n ", ";\n"], ["\n ", "\n\n ", ";\n"])), systemUI_1.TooltipWrapperStyle, function (_a) {
|
72
72
|
var tooltipPositionCss = _a.tooltipPositionCss;
|
@@ -123,7 +123,7 @@ declare const colorSet: {
|
|
123
123
|
grey450: string;
|
124
124
|
darkgrey450: string;
|
125
125
|
};
|
126
|
-
readonly
|
126
|
+
readonly PaletteColor_Dark: {
|
127
127
|
sys_container_background_01: string;
|
128
128
|
sys_container_background_02: string;
|
129
129
|
sys_container_background_03: string;
|
@@ -503,7 +503,7 @@ declare const colorSet: {
|
|
503
503
|
sys_cpnt_sheet_base_54: string;
|
504
504
|
sys_component_border_01: string;
|
505
505
|
};
|
506
|
-
readonly
|
506
|
+
readonly PaletteColor_light: {
|
507
507
|
sys_container_background_01: string;
|
508
508
|
sys_container_background_02: string;
|
509
509
|
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_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
9
8
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
9
|
+
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
11
11
|
var colorSet = {
|
12
12
|
SemanticColor: SemanticColor_json_1.default,
|
13
|
-
PaletteColor_light: PaletteColor_light_json_1.default,
|
14
13
|
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
14
|
+
PaletteColor_light: PaletteColor_light_json_1.default,
|
15
15
|
UIColor: UIColor_json_1.default
|
16
16
|
};
|
17
17
|
exports.default = colorSet;
|
@@ -1,10 +1,12 @@
|
|
1
1
|
import fillIcons from '../assets/icons/fill';
|
2
2
|
import { imageIconSrcSet } from '../assets/icons/image';
|
3
3
|
import lineIcons from '../assets/icons/line';
|
4
|
+
import type { editorNavigationIcons } from '../assets/icons/editorNavigationIcons';
|
4
5
|
export type FillIconNameKeys = keyof typeof fillIcons;
|
5
6
|
export type LineIconNameKeys = keyof typeof lineIcons;
|
6
7
|
export type ImageIconNameKeys = keyof typeof imageIconSrcSet;
|
7
|
-
export type
|
8
|
+
export type EditorNavigationIconNameKeys = keyof typeof editorNavigationIcons;
|
9
|
+
export type PDSIconType = FillIconNameKeys | LineIconNameKeys | ImageIconNameKeys | EditorNavigationIconNameKeys;
|
8
10
|
export declare const fillIconkeys: string[];
|
9
11
|
export declare const lineIconkeys: string[];
|
10
12
|
export declare const imageIconKeys: string[];
|
@@ -10,7 +10,7 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
10
10
|
function hoverTypeSystemUICssGenerator(_a) {
|
11
11
|
var baseSize = _a.baseSize, sizeOffset = _a.sizeOffset, positionOffset = _a.positionOffset, systemUIPosition = _a.systemUIPosition, _b = _a.distance, distance = _b === void 0 ? 8 : _b;
|
12
12
|
if (!sizeOffset || !positionOffset) {
|
13
|
-
return '';
|
13
|
+
return 'visibility: hidden;';
|
14
14
|
}
|
15
15
|
var end = positionOffset.left, bottom = positionOffset.bottom, top = positionOffset.top;
|
16
16
|
var width = sizeOffset.width, height = sizeOffset.height;
|
@@ -105,7 +105,7 @@ function BasicButtonGroup(_a) {
|
|
105
105
|
var isHoveredButton = index === hoveredButtonIndex;
|
106
106
|
return ((0, jsx_runtime_1.jsxs)(S_BasicButton, __assign({ size: size, onClick: function (e) { return onClick && onClick(e); }, onMouseDown: function (e) { return onMouseDown && onMouseDown(e); }, onPointerEnter: function () { return setHoveredButtonIndex(index); }, onPointerLeave: function () { return setHoveredButtonIndex(null); }, disabled: state === 'disabled' || buttonState === 'disabled', backgroundColorTheme: backgroundColorTheme }, { children: [(0, jsx_runtime_1.jsx)(components_1.Icon, { iconName: iconName, size: size === 'small' ? 20 : 24, fillType: iconFillType, colorKey: getColorKey(buttonState, iconColorTheme) }), tooltipText &&
|
107
107
|
isHoveredButton &&
|
108
|
-
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss, size: size }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: tooltipText, colorOverride: "ui_cpnt_textlabel_button_tooltip", styleTheme: "caption2Regular", colorTheme: "sysTextSecondary" }) })), document.
|
108
|
+
(0, react_dom_1.createPortal)((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", ref: tooltipRef, tooltipPositionCss: tooltipPositionCss, size: size }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: tooltipText, colorOverride: "ui_cpnt_textlabel_button_tooltip", styleTheme: "caption2Regular", colorTheme: "sysTextSecondary" }) })), document.getElementById('tooltip-root'))] }), iconName + index));
|
109
109
|
}) })));
|
110
110
|
}
|
111
111
|
var S_BasicButtonGroup = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n width: max-content;\n\n & > button:not(:last-child) {\n margin-right: ", ";\n }\n"], ["\n align-items: center;\n display: flex;\n width: max-content;\n\n & > button:not(:last-child) {\n margin-right: ", ";\n }\n"])), function (_a) {
|
@@ -4,6 +4,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
4
4
|
};
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
6
6
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
7
|
+
var editorNavigationIcons_1 = require("../../../common/assets/icons/editorNavigationIcons");
|
7
8
|
var styled_components_1 = require("styled-components");
|
8
9
|
var fill_1 = __importDefault(require("../../../common/assets/icons/fill"));
|
9
10
|
var image_1 = require("../../../common/assets/icons/image");
|
@@ -19,6 +20,11 @@ var Icon = function (_a) {
|
|
19
20
|
fill: fill_1.default[iconName] || line_1.default[iconName]
|
20
21
|
};
|
21
22
|
var SelectedSVGIcon = svgIcons[fillType];
|
23
|
+
// NOTE: DynamicLayoutEditor 환경에서만 사용되는 아이콘셋입니다.
|
24
|
+
if (iconName in editorNavigationIcons_1.editorNavigationIcons) {
|
25
|
+
var EditorNavigationIcon = editorNavigationIcons_1.editorNavigationIcons[iconName];
|
26
|
+
return ((0, jsx_runtime_1.jsx)(EditorNavigationIcon, { "x-pds-name": "Icon", "x-pds-element-type": "component", "x-pds-device-type": "hybrid", color: theme[colorKey], size: size, style: isFixedSize ? undefined : { minWidth: size, minHeight: size } }));
|
27
|
+
}
|
22
28
|
if (icon_1.imageIconKeys.includes(iconName)) {
|
23
29
|
return ((0, jsx_runtime_1.jsx)("img", { "x-pds-name": "Icon", "x-pds-element-type": "component", "x-pds-device-type": "hybrid", src: image_1.imageIconSrcSet[iconName], width: size, height: size }));
|
24
30
|
}
|
@@ -0,0 +1,20 @@
|
|
1
|
+
import React from 'react';
|
2
|
+
import type { TypeOfCompositionAction } from '../compositionActionTypes';
|
3
|
+
import type { CustomSectionShortcutKeysType, IComposition } from '../types';
|
4
|
+
import type { Layout } from 'publ-echo/dist/lib/GridLayoutEditor/types';
|
5
|
+
export type LayoutsType = {
|
6
|
+
sm: Layout;
|
7
|
+
lg: Layout;
|
8
|
+
};
|
9
|
+
export type CompositionEditorCanvasProps = {
|
10
|
+
device: 'DESKTOP' | 'MOBILE';
|
11
|
+
zoomScale: number;
|
12
|
+
shortcutKeyMode: CustomSectionShortcutKeysType | '';
|
13
|
+
compositionActionHandler: (action: TypeOfCompositionAction) => void;
|
14
|
+
};
|
15
|
+
export type CompositionEditorProps = {
|
16
|
+
compositionData: IComposition;
|
17
|
+
editorProps: CompositionEditorCanvasProps;
|
18
|
+
};
|
19
|
+
declare const _default: React.MemoExoticComponent<React.ForwardRefExoticComponent<CompositionEditorProps & React.RefAttributes<unknown>>>;
|
20
|
+
export default _default;
|