pds-dev-kit-web-test 2.5.262 → 2.5.264
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/src/common/assets/icons/fill/index.d.ts +0 -5
- package/dist/src/common/assets/icons/fill/index.js +1 -11
- package/dist/src/common/assets/icons/line/index.d.ts +0 -5
- package/dist/src/common/assets/icons/line/index.js +1 -11
- package/dist/src/common/hooks/useTooltip.js +1 -1
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +1 -3
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +1 -3
- package/dist/src/common/styles/colorSet/SemanticColor.json +1 -3
- package/dist/src/common/styles/colorSet/UIColor.json +2 -6
- package/dist/src/common/styles/colorSet/index.d.ts +0 -10
- package/dist/src/common/styles/colorSet/ui-type.d.ts +0 -4
- package/dist/src/common/utils/SystemUIPositionGenerator/hoverTypeSystemUICssGenerator.js +1 -1
- package/dist/src/desktop/components/BasicButtonGroup/BasicButtonGroup.js +1 -1
- package/dist/src/desktop/components/Dropdown/Dropdown.js +4 -6
- package/dist/src/desktop/components/MainButton/MainButton.d.ts +1 -1
- package/dist/src/desktop/components/MainButton/MainButton.js +6 -20
- package/dist/src/desktop/components/UploadMainButton/UploadMainButton.d.ts +1 -1
- package/dist/src/desktop/components/UploadMainButton/UploadMainButton.js +7 -21
- package/dist/src/mobile/components/MainButton/MainButton.d.ts +1 -1
- package/dist/src/mobile/components/MainButton/MainButton.js +6 -20
- package/dist/src/mobile/components/UploadMainButton/UploadMainButton.d.ts +1 -1
- package/dist/src/mobile/components/UploadMainButton/UploadMainButton.js +6 -20
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.d.ts +11 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/ComponentBlockMatcher.js +56 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.d.ts +9 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/Composition.js +217 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.d.ts +6 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/CompositionRenderer.js +27 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/FlexGridItem.d.ts +12 -0
- package/dist/src/sub/DynamicLayout/CompositionRenderer/FlexGridItem.js +75 -0
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/EditModeSectionMatcher.js +3 -0
- package/dist/src/sub/DynamicLayout/components/EditModeSectionMatcher/SectionBox.js +1 -1
- package/dist/src/sub/DynamicLayout/components/Section/ErrorBoundary/ErrorBoundary.js +12 -1
- package/dist/src/sub/DynamicLayout/components/SectionMatcher/SectionMatcher.js +5 -3
- package/dist/src/sub/DynamicLayout/gleStyles.d.ts +3 -0
- package/dist/src/sub/DynamicLayout/gleStyles.js +19 -0
- package/dist/src/sub/DynamicLayout/hooks/useCustomSectionShortcut/useCustomSectionShortcut.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/hooks/useCustomSectionShortcut/useCustomSectionShortcut.js +6 -1
- package/dist/src/sub/DynamicLayout/mock_samplePage.js +132 -132
- package/dist/src/sub/DynamicLayout/mocks.d.ts +1111 -0
- package/dist/src/sub/DynamicLayout/mocks.js +4775 -0
- package/dist/src/sub/DynamicLayout/sectionActionTypes.d.ts +64 -15
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.d.ts +0 -5
- package/dist/src/sub/DynamicLayout/sections/CustomSection/CustomSection.js +731 -200
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridItem.d.ts +2 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/FlexGridItem.js +8 -5
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/ComponentBlockMatcher.js +5 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/Button.js +25 -23
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.d.ts +8 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/ContentsCarousel/ContentsCarousel.js +12 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/Text.js +16 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_Backdrop.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_Backdrop.js +13 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_Box.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/components/S_CB_BoxWithShadow.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/types.d.ts +79 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/getGoogleFonts.d.ts +2 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/getGoogleFonts.js +3 -14
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/index.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGoogleFonts/index.js +2 -3
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/clsx.d.ts +7 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/clsx.js +33 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/colorUtil.d.ts +4 -4
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/fontSizeAdjustment.d.ts +1 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/fontSizeAdjustment.js +333 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/{hooks/useGroupDrag/utils.d.ts → newUtils/group.d.ts} +4 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/{hooks/useGroupDrag/utils.js → newUtils/group.js} +14 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/replaceUndefinedValues.js +8 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/newUtils/textUtil.d.ts +1 -6
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.d.ts +18 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/types.js +2 -0
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.d.ts +5 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/parsePlacement.js +12 -9
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/parseStylePropTextSpec.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/types.d.ts +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/stylePropParsers/types.js +1 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/util/types.d.ts +3 -5
- package/dist/src/sub/DynamicLayout/sections/{CustomSection/FlexGridCustomSection.d.ts → FlexGridCustomSection.d.ts} +1 -5
- package/dist/src/sub/DynamicLayout/sections/{CustomSection/FlexGridCustomSection.js → FlexGridCustomSection.js} +44 -88
- package/dist/src/sub/DynamicLayout/types.d.ts +45 -1
- package/dist/src/sub/SandollFontKit/utils/appendSandollTagToHead.d.ts +1 -1
- package/dist/src/sub/SandollFontKit/utils/appendSandollTagToHead.js +17 -11
- package/package.json +3 -3
- package/release-note.md +3 -2
- package/dist/src/common/assets/icons/fill/BringToFrontArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/BringToFrontArrow.js +0 -30
- package/dist/src/common/assets/icons/fill/DesktopSync.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/DesktopSync.js +0 -30
- package/dist/src/common/assets/icons/fill/MoveBackwardArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/MoveBackwardArrow.js +0 -30
- package/dist/src/common/assets/icons/fill/MoveForwardArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/MoveForwardArrow.js +0 -30
- package/dist/src/common/assets/icons/fill/SendToBackArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/fill/SendToBackArrow.js +0 -30
- package/dist/src/common/assets/icons/line/BringToFrontArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/line/BringToFrontArrow.js +0 -30
- package/dist/src/common/assets/icons/line/DesktopSync.d.ts +0 -4
- package/dist/src/common/assets/icons/line/DesktopSync.js +0 -30
- package/dist/src/common/assets/icons/line/MoveBackwardArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/line/MoveBackwardArrow.js +0 -30
- package/dist/src/common/assets/icons/line/MoveForwardArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/line/MoveForwardArrow.js +0 -30
- package/dist/src/common/assets/icons/line/SendToBackArrow.d.ts +0 -4
- package/dist/src/common/assets/icons/line/SendToBackArrow.js +0 -30
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.d.ts +0 -14038
- package/dist/src/sub/DynamicLayout/pagesPreviewMock.js +0 -35827
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/btnTypes.d.ts +0 -76
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Button/btnTypes.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/types.d.ts +0 -38
- package/dist/src/sub/DynamicLayout/sections/CustomSection/components/ComponentBlock/componentBlocks/Text/types.js +0 -2
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGroupDrag/index.d.ts +0 -1
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGroupDrag/index.js +0 -8
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGroupDrag/useGroupDrag.d.ts +0 -22
- package/dist/src/sub/DynamicLayout/sections/CustomSection/hooks/useGroupDrag/useGroupDrag.js +0 -273
@@ -42,89 +42,45 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
42
42
|
};
|
43
43
|
Object.defineProperty(exports, "__esModule", { value: true });
|
44
44
|
var jsx_runtime_1 = require("react/jsx-runtime");
|
45
|
+
/* eslint-disable @typescript-eslint/no-unused-vars */
|
45
46
|
var react_1 = __importStar(require("react"));
|
46
|
-
var ErrorBoundary_1 = require("
|
47
|
-
var dynamicLayoutContext_1 = require("
|
47
|
+
var ErrorBoundary_1 = require("../../DynamicLayout/components/Section/ErrorBoundary");
|
48
|
+
var dynamicLayoutContext_1 = require("../../DynamicLayout/dynamicLayoutContext");
|
48
49
|
var styled_components_1 = __importDefault(require("styled-components"));
|
49
|
-
var components_1 = require("
|
50
|
-
var
|
51
|
-
var FlexGridItem_1 = __importDefault(require("./FlexGridItem"));
|
52
|
-
var
|
53
|
-
var
|
54
|
-
var
|
55
|
-
var useResizableObserver_1 = require("./hooks/useResizableObserver");
|
56
|
-
var util_1 = require("./util");
|
57
|
-
var parseSectionPadding_1 = __importDefault(require("./util/layoutPropParsers/parseSectionPadding"));
|
50
|
+
var components_1 = require("../components");
|
51
|
+
var gleStyles_1 = require("../gleStyles");
|
52
|
+
var FlexGridItem_1 = __importDefault(require("./CustomSection/FlexGridItem"));
|
53
|
+
var useResizableObserver_1 = require("./CustomSection/hooks/useResizableObserver");
|
54
|
+
var util_1 = require("./CustomSection/util");
|
55
|
+
var parseSectionPadding_1 = __importDefault(require("./CustomSection/util/layoutPropParsers/parseSectionPadding"));
|
58
56
|
var GRID_CELL_MIN = 24;
|
59
57
|
var DESKTOP_GRID_COLS = 24;
|
60
58
|
var MOBILE_GRID_COLS = 8;
|
61
59
|
var GLE_MIN_WIDTH_DESKTOP_PX = "".concat(GRID_CELL_MIN * DESKTOP_GRID_COLS, "px");
|
62
60
|
var GLE_MIN_WIDTH_MOBILE_PX = "".concat(GRID_CELL_MIN * MOBILE_GRID_COLS, "px");
|
63
|
-
var
|
61
|
+
var FlexGridCustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
64
62
|
var _a;
|
65
63
|
var _b = (0, react_1.useContext)(dynamicLayoutContext_1.dynamicLayoutContext), device = _b.device, editingSectionId = _b.editingSectionId, mode = _b.mode, shortcutKeyMode = _b.shortcutKeyMode, sectionActionHandler = _b.sectionActionHandler;
|
66
64
|
var componentBlocks = props.componentBlocks, jsonProperties = props.jsonProperties;
|
67
|
-
var _c = jsonProperties.data, CB_PLACEMENT_PROP_SECTION =
|
65
|
+
var _c = jsonProperties, _d = _c.data, CB_PLACEMENT_PROP_SECTION = _d.CB_PLACEMENT_PROP_SECTION, CB_LAYOUT_PROP_PADDING = _d.CB_LAYOUT_PROP_PADDING, zOrders = _c.zOrders;
|
68
66
|
var containerRef = (0, react_1.useRef)(null);
|
69
67
|
var size = (0, useResizableObserver_1.useResizeObserver)({ ref: containerRef, box: 'border-box' });
|
70
|
-
var
|
68
|
+
var _e = (0, react_1.useState)(null), selectedCB = _e[0], setSelectedCB = _e[1];
|
71
69
|
var gleRef = (0, react_1.useRef)(null);
|
72
70
|
var isMobile = device === 'MOBILE';
|
73
71
|
var isEditMode = mode === 'EDIT';
|
74
|
-
|
75
|
-
|
76
|
-
|
77
|
-
|
78
|
-
|
79
|
-
|
80
|
-
|
81
|
-
})
|
82
|
-
var _f = (0, useGroupDrag_1.useGroupDrag)({
|
83
|
-
setLayouts: setLayouts,
|
84
|
-
device: device,
|
85
|
-
sectionActionHandler: sectionActionHandler
|
86
|
-
}), breakGroupCB = _f.breakGroupCB, makeAllInOneGroup = _f.makeAllInOneGroup, makeCollisionGroup = _f.makeCollisionGroup;
|
87
|
-
(0, react_1.useImperativeHandle)(ref, function () {
|
88
|
-
return {
|
89
|
-
selectCB: function (cbId) {
|
90
|
-
setSelectedCB(cbId);
|
91
|
-
},
|
92
|
-
selectCBInBulk: function (cbIds) {
|
93
|
-
var parsedLayouts = (0, util_1.parsePlacement)(componentBlocks !== null && componentBlocks !== void 0 ? componentBlocks : []);
|
94
|
-
setLayouts(function (prev) {
|
95
|
-
var _a;
|
96
|
-
var filteredLayout = (0, useGroupDrag_2.filterItemsById)(parsedLayouts[layoutByDevice], cbIds);
|
97
|
-
var newGroupLayout = (0, utils_1.getGroupForMultiple)(parsedLayouts[layoutByDevice].filter(function (each) { return cbIds.includes(each.i); }));
|
98
|
-
filteredLayout.push(newGroupLayout);
|
99
|
-
return __assign(__assign({}, prev), (_a = {}, _a[layoutByDevice] = filteredLayout, _a));
|
100
|
-
});
|
101
|
-
}
|
102
|
-
};
|
103
|
-
}, [componentBlocks]);
|
104
|
-
(0, react_1.useLayoutEffect)(function () {
|
105
|
-
var parsedLayouts = (0, util_1.parsePlacement)(componentBlocks !== null && componentBlocks !== void 0 ? componentBlocks : []);
|
106
|
-
setLayouts(function (prev) {
|
107
|
-
var _a;
|
108
|
-
var _b;
|
109
|
-
var group = (0, useGroupDrag_2.getGroupCB)(prev[layoutByDevice]);
|
110
|
-
var groupedCBIds = (_b = group === null || group === void 0 ? void 0 : group.childrenIds) !== null && _b !== void 0 ? _b : [];
|
111
|
-
var filteredLayout = (0, useGroupDrag_2.filterItemsById)(parsedLayouts[layoutByDevice], groupedCBIds);
|
112
|
-
if (group === null || group === void 0 ? void 0 : group.groupLayouts) {
|
113
|
-
var groupCbs = parsedLayouts[layoutByDevice].filter(function (each) {
|
114
|
-
return groupedCBIds.includes(each.i);
|
115
|
-
});
|
116
|
-
if (groupCbs.length > 0) {
|
117
|
-
var newGroupLayout = (0, utils_1.getGroupForMultiple)(groupCbs);
|
118
|
-
filteredLayout.push(newGroupLayout);
|
119
|
-
}
|
120
|
-
}
|
121
|
-
return __assign(__assign({}, prev), (_a = {}, _a[layoutByDevice] = filteredLayout, _a));
|
122
|
-
});
|
123
|
-
}, [componentBlocks, useGroupDrag_2.getGroupCB, layoutByDevice]);
|
72
|
+
// const layoutByDevice = device === 'DESKTOP' ? 'lg' : 'sm';
|
73
|
+
// const [layouts] = useState<LayoutsType>(() => {
|
74
|
+
// const { lg, sm } = parsePlacement(componentBlocks ?? []);
|
75
|
+
// return {
|
76
|
+
// lg,
|
77
|
+
// sm
|
78
|
+
// };
|
79
|
+
// });
|
124
80
|
(0, react_1.useEffect)(function () {
|
125
81
|
if (editingSectionId !== props.id) {
|
126
82
|
setSelectedCB(null);
|
127
|
-
breakGroupCB();
|
83
|
+
// breakGroupCB();
|
128
84
|
}
|
129
85
|
}, [editingSectionId]);
|
130
86
|
// NOTE: 추후에 event를 외부에서 전달받게하거나, 아예 상태를 끌어올리거나 해야합니다.
|
@@ -140,38 +96,38 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
140
96
|
setSelectedCB(componentBlocks[0].id);
|
141
97
|
return;
|
142
98
|
}
|
143
|
-
makeAllInOneGroup();
|
99
|
+
// makeAllInOneGroup();
|
144
100
|
return;
|
145
101
|
}
|
146
102
|
if (shortcutKeyMode === 'MANUAL_BULK_BREAK') {
|
147
|
-
breakGroupCB();
|
103
|
+
// breakGroupCB();
|
148
104
|
setSelectedCB(null);
|
149
105
|
return;
|
150
106
|
}
|
151
|
-
}, [shortcutKeyMode, setSelectedCB
|
107
|
+
}, [shortcutKeyMode, setSelectedCB]);
|
152
108
|
(0, react_1.useLayoutEffect)(function () {
|
153
109
|
if (props.id !== editingSectionId) {
|
154
110
|
return;
|
155
111
|
}
|
156
112
|
if (shortcutKeyMode === 'MANUAL_COLLISION_SELECT') {
|
157
|
-
if (!selectedCB || selectedCB === '
|
113
|
+
if (!selectedCB || selectedCB === 'BULK') {
|
158
114
|
return;
|
159
115
|
}
|
160
|
-
makeCollisionGroup(selectedCB);
|
161
|
-
sectionActionHandler &&
|
162
|
-
|
163
|
-
|
164
|
-
|
165
|
-
|
166
|
-
|
167
|
-
|
168
|
-
setSelectedCB('
|
169
|
-
}
|
170
|
-
}, [selectedCB, shortcutKeyMode,
|
171
|
-
var
|
116
|
+
// makeCollisionGroup(selectedCB);
|
117
|
+
// sectionActionHandler &&
|
118
|
+
// sectionActionHandler({
|
119
|
+
// type: '@CUSTOMSECTION/BLOCK_CLICKED',
|
120
|
+
// payload: {
|
121
|
+
// block:
|
122
|
+
// }
|
123
|
+
// });
|
124
|
+
setSelectedCB('BULK');
|
125
|
+
}
|
126
|
+
}, [selectedCB, shortcutKeyMode, sectionActionHandler, setSelectedCB]);
|
127
|
+
var _f = (0, util_1.parseCustomSectionPlacement)({
|
172
128
|
isMobile: isMobile,
|
173
129
|
customSectionProps: CB_PLACEMENT_PROP_SECTION
|
174
|
-
}), width =
|
130
|
+
}), width = _f.width, minHeight = _f.minHeight, isFullWidth = _f.isFullWidth;
|
175
131
|
var customSectionStyles = {
|
176
132
|
minHeight: "".concat(minHeight, "vh"),
|
177
133
|
width: '100%',
|
@@ -181,9 +137,6 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
181
137
|
if (!isEditMode) {
|
182
138
|
return;
|
183
139
|
}
|
184
|
-
if ((0, useGroupDrag_2.getGroupCB)(layouts[layoutByDevice])) {
|
185
|
-
breakGroupCB();
|
186
|
-
}
|
187
140
|
setSelectedCB(null);
|
188
141
|
sectionActionHandler &&
|
189
142
|
sectionActionHandler({
|
@@ -231,7 +184,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
231
184
|
}
|
232
185
|
return 16;
|
233
186
|
})();
|
234
|
-
return ((0, jsx_runtime_1.jsx)(ErrorBoundary_1.ErrorBoundary, { children: (0, jsx_runtime_1.jsx)(
|
187
|
+
return ((0, jsx_runtime_1.jsx)(ErrorBoundary_1.ErrorBoundary, { children: (0, jsx_runtime_1.jsx)(gleStyles_1.S_gleStyles, { children: (0, jsx_runtime_1.jsx)(S_SectionWrapper, __assign({ ref: gleRef, "x-dlayout-section-type": "NO_NAME", onClick: onClickSection }, { children: (0, jsx_runtime_1.jsx)(components_1.CustomSection, __assign({}, props, { isMobile: isMobile, overrideStyles: {
|
235
188
|
minHeight: customSectionStyles.minHeight,
|
236
189
|
paddingTop: padding.top,
|
237
190
|
paddingBottom: padding.bottom,
|
@@ -242,11 +195,14 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
242
195
|
maxWidth: customSectionStyles.maxWidth,
|
243
196
|
minWidth: isMobile ? GLE_MIN_WIDTH_MOBILE_PX : GLE_MIN_WIDTH_DESKTOP_PX,
|
244
197
|
fontSize: "".concat(baseFontSize, "px")
|
245
|
-
} }, { children: (_a = props.componentBlocks) === null || _a === void 0 ? void 0 : _a.map(function (cb, index) {
|
198
|
+
} }, { children: (_a = props.componentBlocks) === null || _a === void 0 ? void 0 : _a.map(function (cb, index) {
|
199
|
+
var _a;
|
200
|
+
return ((0, jsx_runtime_1.jsx)(ErrorBoundary_1.ErrorBoundary, { children: (0, jsx_runtime_1.jsx)(FlexGridItem_1.default, { cb: cb, index: index, device: device, rowHeight: rowHeight, zIndex: (_a = zOrders === null || zOrders === void 0 ? void 0 : zOrders[device === 'DESKTOP' ? 'desktop' : 'mobile'][cb.id]) !== null && _a !== void 0 ? _a : 0 }) }, cb.id));
|
201
|
+
}) })) })) })) }) }));
|
246
202
|
});
|
247
203
|
var GridContainer = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: grid; /* Space between grid items */\n gap: 10px;\n grid-auto-rows: minmax(", ", auto);\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: repeat(\n ", ",\n minmax(", ", auto)\n );\n padding: 10px 10px;\n\n * {\n box-sizing: border-box;\n }\n"], ["\n display: grid; /* Space between grid items */\n gap: 10px;\n grid-auto-rows: minmax(", ", auto);\n grid-template-columns: repeat(", ", 1fr);\n grid-template-rows: repeat(\n ", ",\n minmax(", ", auto)\n );\n padding: 10px 10px;\n\n * {\n box-sizing: border-box;\n }\n"])), function (props) { return "".concat(props.rowHeight, "px"); }, function (props) { return props.cols; }, function (props) { return props.sectionRow; }, function (props) { return "".concat(props.rowHeight, "px"); });
|
248
204
|
var S_SectionWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n position: relative;\n"], ["\n position: relative;\n"])));
|
249
|
-
exports.default = react_1.default.memo(
|
205
|
+
exports.default = react_1.default.memo(FlexGridCustomSection);
|
250
206
|
function getDefensiveFontSize(device, width) {
|
251
207
|
if (device === 'MOBILE') {
|
252
208
|
return width * (0.0000868 * width + 0.0202);
|
@@ -1,11 +1,11 @@
|
|
1
1
|
import type { TypeOfSectionAction } from './sectionActionTypes';
|
2
|
-
import type { CustomSectionImperativeHandleRef } from './sections/CustomSection/CustomSection';
|
3
2
|
import type { ComponentBlock } from './sections/CustomSection/types';
|
4
3
|
import type { CB_CONTENT_PROP_VISIBILITY_SPECS } from './sections/CustomSection/util/contentPropParsers/parseContentVisibility';
|
5
4
|
import type { CB_EFFECT_PROP_ENTANIM_SPECS } from './sections/CustomSection/util/effectPropParsers/parseEffectPropEntAnim';
|
6
5
|
import type { CB_LAYOUT_PROP_PADDING_SPECS } from './sections/CustomSection/util/layoutPropParsers/parseLayoutPropPadding';
|
7
6
|
import type { CB_STYLE_PROP_BGCOLOR_SPECS } from './sections/CustomSection/util/stylePropParsers/parseStylePropBgColor';
|
8
7
|
import type { CB_STYLE_PROP_BGOVERLAY_SPECS } from './sections/CustomSection/util/stylePropParsers/parseStylePropBgOverlay';
|
8
|
+
import type { Block, ZOrder } from 'publ-echo-test/dist/lib/GridLayoutEditor/group';
|
9
9
|
import type { Ref } from 'react';
|
10
10
|
export { TypeOfSectionAction };
|
11
11
|
export type TypeOfSectionManifestSchema = 'BASE_INTRO' | 'BASE_CONTENTS' | 'BASE_CONTENTS_CAROUSEL' | 'BASE_FOOTER' | 'BASE_INFO_BOX' | 'EXP_IFRAME' | 'PRG_MEMBERSHIP_DISPLAY' | 'CUSTOM';
|
@@ -60,6 +60,7 @@ export interface ISection {
|
|
60
60
|
componentBlocks?: ComponentBlock[];
|
61
61
|
jsonProperties?: ISectionJsonProperties;
|
62
62
|
}
|
63
|
+
export type SectionPedigree = Block;
|
63
64
|
export interface SubscriptionProductInList {
|
64
65
|
id: number;
|
65
66
|
type: SubscriptionProductType;
|
@@ -212,6 +213,11 @@ export interface IItemDescription extends IDescription {
|
|
212
213
|
color?: string;
|
213
214
|
}
|
214
215
|
export type CustomSectionShortcutKeysType = 'BULK_SELECT' | 'COLLISION_SELECT' | 'SELECT_ALL' | 'MANUAL_COLLISION_SELECT' | 'MANUAL_BULK_BREAK' | null;
|
216
|
+
export type CustomSectionImperativeHandleRef = {
|
217
|
+
selectCB: (cbId: string) => void;
|
218
|
+
selectCBInBulk: (cbIds: string[]) => void;
|
219
|
+
selectGroup: (groupBlockId: string) => void;
|
220
|
+
};
|
215
221
|
export type DynamicLayoutProps = {
|
216
222
|
device: 'DESKTOP' | 'MOBILE';
|
217
223
|
/** @default 'NORMAL */
|
@@ -300,6 +306,8 @@ export type IMembershipDisplay = {
|
|
300
306
|
connectedMemberships: IConnectedMembership[];
|
301
307
|
};
|
302
308
|
export type ISectionJsonProperties = {
|
309
|
+
zOrders?: ZOrder;
|
310
|
+
pedigree?: SectionPedigree;
|
303
311
|
data: {
|
304
312
|
CB_CONTENT_PROP_SECTION: {
|
305
313
|
CB_CONTENT_PROP_SECTION_SPEC_VARIABLEROOTFONTSIZE: boolean;
|
@@ -316,6 +324,8 @@ export type ISectionJsonProperties = {
|
|
316
324
|
'CB_PLACEMENT_PROP_SECTION_SPEC_ROWS:MOBILE': number | null | undefined;
|
317
325
|
CB_PLACEMENT_PROP_SECTION_SPEC_WIDTH: number;
|
318
326
|
'CB_PLACEMENT_PROP_SECTION_SPEC_WIDTH:MOBILE': number | null | undefined;
|
327
|
+
CB_PLACEMENT_PROP_SECTION_SPEC_COLS?: number;
|
328
|
+
'CB_PLACEMENT_PROP_SECTION_SPEC_COLS:MOBILE': number | null | undefined;
|
319
329
|
};
|
320
330
|
CB_STYLE_PROP_BGCOLOR?: CB_STYLE_PROP_BGCOLOR_SPECS;
|
321
331
|
CB_STYLE_PROP_BGMEDIA?: CB_STYLE_PROP_BGMEDIA_SPECS;
|
@@ -364,3 +374,37 @@ export type CB_STYLE_PROP_BGMEDIA_SPECS = CB_STYLE_PROP_BGMEDIA_SPECS_BASE & {
|
|
364
374
|
'CB_STYLE_PROP_BGMEDIA_SPEC_YSRC:MOBILE': string | null | undefined;
|
365
375
|
'CB_STYLE_PROP_BGMEDIA_SPEC_YSRC:MOBILE:HOVER': string | null | undefined;
|
366
376
|
};
|
377
|
+
export interface IComposition {
|
378
|
+
id: number;
|
379
|
+
administrativeTitle?: string;
|
380
|
+
display: boolean;
|
381
|
+
order: number;
|
382
|
+
manifest: {
|
383
|
+
schema: TypeOfSectionManifestSchema;
|
384
|
+
availableProperties: Array<KeyOfSectionProperties>;
|
385
|
+
availableStyles: Array<KeyOfSectionStyles>;
|
386
|
+
availableTemplates: Array<TypeofSectionTemplate>;
|
387
|
+
} | Record<string, never>;
|
388
|
+
template: TypeofSectionTemplate;
|
389
|
+
properties: ISectionProperties;
|
390
|
+
styles: ISectionStyles;
|
391
|
+
dynamicLayoutSectionItems: Array<IItem> | null;
|
392
|
+
insertedAt: string;
|
393
|
+
updatedAt: string;
|
394
|
+
type: TypeOfSectionType;
|
395
|
+
program?: 'MEMBERSHIP_DISPLAY';
|
396
|
+
programData?: {
|
397
|
+
mdid: string;
|
398
|
+
preview: {
|
399
|
+
availableResources: ['REAL.MEMBERSHIP_DISPLAY'];
|
400
|
+
resources: {
|
401
|
+
mock: Record<string, never>;
|
402
|
+
real: {
|
403
|
+
membershipDisplay: IMembershipDisplay;
|
404
|
+
};
|
405
|
+
};
|
406
|
+
};
|
407
|
+
};
|
408
|
+
componentBlocks?: ComponentBlock[];
|
409
|
+
jsonProperties?: ISectionJsonProperties;
|
410
|
+
}
|
@@ -1 +1 @@
|
|
1
|
-
export default function
|
1
|
+
export default function appendSandollTagToHead(tagString: string): void;
|
@@ -1,25 +1,31 @@
|
|
1
1
|
"use strict";
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
3
3
|
/* eslint-disable no-console */
|
4
|
-
function
|
4
|
+
function appendSandollTagToHead(tagString) {
|
5
5
|
try {
|
6
6
|
var tempDiv = document.createElement('div');
|
7
7
|
tempDiv.innerHTML = tagString.trim();
|
8
|
-
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
13
|
-
|
14
|
-
|
8
|
+
var sandollFontCssTag = tempDiv.firstChild;
|
9
|
+
if (!sandollFontCssTag) {
|
10
|
+
console.error('SandollFont CSS Tag Not Found');
|
11
|
+
return;
|
12
|
+
}
|
13
|
+
sandollFontCssTag.setAttribute('id', 'sandoll-font-link');
|
14
|
+
var tagName = sandollFontCssTag.tagName.toLowerCase();
|
15
|
+
var href = sandollFontCssTag.getAttribute('href');
|
16
|
+
if (href) {
|
17
|
+
var prevSandollLinkTag = document.head.querySelector("".concat(tagName, "#sandoll-font-link"));
|
18
|
+
if (prevSandollLinkTag) {
|
19
|
+
if (prevSandollLinkTag.getAttribute('href') === href) {
|
15
20
|
return;
|
16
21
|
}
|
22
|
+
prevSandollLinkTag.remove();
|
17
23
|
}
|
18
|
-
document.head.appendChild(
|
19
|
-
}
|
24
|
+
document.head.appendChild(sandollFontCssTag);
|
25
|
+
}
|
20
26
|
}
|
21
27
|
catch (e) {
|
22
28
|
console.error(e);
|
23
29
|
}
|
24
30
|
}
|
25
|
-
exports.default =
|
31
|
+
exports.default = appendSandollTagToHead;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pds-dev-kit-web-test",
|
3
|
-
"version": "2.5.
|
3
|
+
"version": "2.5.264",
|
4
4
|
"license": "MIT",
|
5
5
|
"private": false,
|
6
6
|
"main": "dist/index.js",
|
@@ -22,8 +22,8 @@
|
|
22
22
|
"i18next-intervalplural-postprocessor": "^3.0.0",
|
23
23
|
"lottie-react": "^2.3.1",
|
24
24
|
"nuka-carousel": "^4.8.4",
|
25
|
-
"publ-echo": "^0.0.
|
26
|
-
"publ-echo-test": "^0.0.
|
25
|
+
"publ-echo": "^0.0.99",
|
26
|
+
"publ-echo-test": "^0.0.202",
|
27
27
|
"react-hook-form": "^7.28.1",
|
28
28
|
"react-i18next": "^11.12.0",
|
29
29
|
"react-router-dom": "^5.2.0",
|
package/release-note.md
CHANGED
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
3
|
-
__assign = Object.assign || function(t) {
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5
|
-
s = arguments[i];
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7
|
-
t[p] = s[p];
|
8
|
-
}
|
9
|
-
return t;
|
10
|
-
};
|
11
|
-
return __assign.apply(this, arguments);
|
12
|
-
};
|
13
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
14
|
-
var t = {};
|
15
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
16
|
-
t[p] = s[p];
|
17
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
18
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
19
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
20
|
-
t[p[i]] = s[p[i]];
|
21
|
-
}
|
22
|
-
return t;
|
23
|
-
};
|
24
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
-
var BringToFrontArrow = function (_a) {
|
27
|
-
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
28
|
-
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M7.6299,11.1971 L11.9999,6.8271 L16.3699,11.1971 M12,7.7766 L12,16.0326 M5.9982,4.0021 L18.2392,4.0021" }), (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M6.1164,16.0326 C5.0134,16.0326 4.1164,16.9296 4.1164,18.0326 L4.1164,18.8402 C4.1164,19.9422 5.0134,20.8402 6.1164,20.8402 L18.0414,20.8402 C19.1444,20.8402 20.0414,19.9422 20.0414,18.8402 L20.0414,18.0326 C20.0414,16.9296 19.1444,16.0326 18.0414,16.0326 L6.1164,16.0326 Z" })] })) })));
|
29
|
-
};
|
30
|
-
exports.default = BringToFrontArrow;
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
3
|
-
__assign = Object.assign || function(t) {
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5
|
-
s = arguments[i];
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7
|
-
t[p] = s[p];
|
8
|
-
}
|
9
|
-
return t;
|
10
|
-
};
|
11
|
-
return __assign.apply(this, arguments);
|
12
|
-
};
|
13
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
14
|
-
var t = {};
|
15
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
16
|
-
t[p] = s[p];
|
17
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
18
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
19
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
20
|
-
t[p[i]] = s[p[i]];
|
21
|
-
}
|
22
|
-
return t;
|
23
|
-
};
|
24
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
-
var DesktopSync = function (_a) {
|
27
|
-
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
28
|
-
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: color, fillRule: "evenodd", d: "M17.4057,3.2659 C19.0567,3.2659 20.4907,4.3829 20.8917,5.9829 C21.0267,6.5189 20.7007,7.0629 20.1657,7.1959 C19.6307,7.3319 19.0867,7.0059 18.9527,6.4699 C18.7737,5.7609 18.1387,5.2659 17.4057,5.2659 L6.5947,5.2659 C5.7147,5.2659 4.9997,5.9809 4.9997,6.8599 L4.9997,13.4599 C4.9997,14.3389 5.7147,15.0549 6.5947,15.0549 L17.4057,15.0549 C18.1607,15.0549 18.8177,14.5199 18.9677,13.7809 C19.0777,13.2399 19.6027,12.8919 20.1467,13.0009 C20.6887,13.1099 21.0377,13.6389 20.9277,14.1799 C20.5887,15.8459 19.1077,17.0549 17.4057,17.0549 L14.5897,17.0549 L14.6037,19.4399 L16.0537,19.4399 C16.6057,19.4399 17.0537,19.8879 17.0537,20.4399 C17.0537,20.9929 16.6057,21.4399 16.0537,21.4399 L7.9457,21.4399 C7.3937,21.4399 6.9457,20.9929 6.9457,20.4399 C6.9457,19.8879 7.3937,19.4399 7.9457,19.4399 L9.4047,19.4399 L9.3917,17.0549 L6.5947,17.0549 C4.6127,17.0549 2.9997,15.4419 2.9997,13.4599 L2.9997,6.8599 C2.9997,4.8779 4.6127,3.2659 6.5947,3.2659 Z M14.5213,6.822 C14.8733,6.47 15.4433,6.47 15.7953,6.822 L18.4993,9.526 C18.8513,9.878 18.8513,10.448 18.4993,10.8 L15.7953,13.504 C15.6193,13.68 15.3893,13.768 15.1583,13.768 C14.9283,13.768 14.6973,13.68 14.5213,13.504 C14.1693,13.152 14.1693,12.582 14.5213,12.23 L15.6863,11.064 L10.0853,11.064 C9.5873,11.064 9.1833,10.661 9.1833,10.163 C9.1833,9.665 9.5873,9.262 10.0853,9.262 L15.6863,9.262 L14.5213,8.096 C14.1693,7.744 14.1693,7.174 14.5213,6.822 Z" }) })));
|
29
|
-
};
|
30
|
-
exports.default = DesktopSync;
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
3
|
-
__assign = Object.assign || function(t) {
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5
|
-
s = arguments[i];
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7
|
-
t[p] = s[p];
|
8
|
-
}
|
9
|
-
return t;
|
10
|
-
};
|
11
|
-
return __assign.apply(this, arguments);
|
12
|
-
};
|
13
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
14
|
-
var t = {};
|
15
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
16
|
-
t[p] = s[p];
|
17
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
18
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
19
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
20
|
-
t[p[i]] = s[p[i]];
|
21
|
-
}
|
22
|
-
return t;
|
23
|
-
};
|
24
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
-
var MoveBackwardArrow = function (_a) {
|
27
|
-
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
28
|
-
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M5.9582,3.1598 C4.8552,3.1598 3.9582,4.0568 3.9582,5.1598 L3.9582,6.01574707 C3.9582,7.11774707 4.8552,8.01574707 5.9582,8.01574707 L17.8842,8.01574707 C18.9872,8.01574707 19.8842,7.11774707 19.8842,6.01574707 L19.8842,5.1598 C19.8842,4.0568 18.9872,3.1598 17.8842,3.1598 L5.9582,3.1598 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12,18.8851 L12,7.8261 M15,16.1497 L12,19.1497 L9,16.1497" })] })) })));
|
29
|
-
};
|
30
|
-
exports.default = MoveBackwardArrow;
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
3
|
-
__assign = Object.assign || function(t) {
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5
|
-
s = arguments[i];
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7
|
-
t[p] = s[p];
|
8
|
-
}
|
9
|
-
return t;
|
10
|
-
};
|
11
|
-
return __assign.apply(this, arguments);
|
12
|
-
};
|
13
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
14
|
-
var t = {};
|
15
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
16
|
-
t[p] = s[p];
|
17
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
18
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
19
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
20
|
-
t[p[i]] = s[p[i]];
|
21
|
-
}
|
22
|
-
return t;
|
23
|
-
};
|
24
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
-
var MoveForwardArrow = function (_a) {
|
27
|
-
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
28
|
-
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { fill: color, d: "M6.1164,16.0326 C5.0134,16.0326 4.1164,16.9296 4.1164,18.0326 L4.1164,18.8402 C4.1164,19.9422 5.0134,20.8402 6.1164,20.8402 L18.0414,20.8402 C19.1444,20.8402 20.0414,19.9422 20.0414,18.8402 L20.0414,18.0326 C20.0414,16.9296 19.1444,16.0326 18.0414,16.0326 L6.1164,16.0326 Z" }), (0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M12,5.1149 L12,16.1739 M9,7.8503 L12,4.8503 L15,7.8503" })] })) })));
|
29
|
-
};
|
30
|
-
exports.default = MoveForwardArrow;
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
3
|
-
__assign = Object.assign || function(t) {
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5
|
-
s = arguments[i];
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7
|
-
t[p] = s[p];
|
8
|
-
}
|
9
|
-
return t;
|
10
|
-
};
|
11
|
-
return __assign.apply(this, arguments);
|
12
|
-
};
|
13
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
14
|
-
var t = {};
|
15
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
16
|
-
t[p] = s[p];
|
17
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
18
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
19
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
20
|
-
t[p[i]] = s[p[i]];
|
21
|
-
}
|
22
|
-
return t;
|
23
|
-
};
|
24
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
-
var SendToBackArrow = function (_a) {
|
27
|
-
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
28
|
-
return ((0, jsx_runtime_1.jsx)("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest, { children: (0, jsx_runtime_1.jsxs)("g", __assign({ fill: "none", fillRule: "evenodd" }, { children: [(0, jsx_runtime_1.jsx)("path", { stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "2", d: "M16.3701,12.8029 L12.0001,17.1729 L7.6301,12.8029 M12,16.2234 L12,7.9674 M18.0018,19.9979 L5.7608,19.9979" }), (0, jsx_runtime_1.jsx)("path", { fill: color, d: "M5.9582,3.1598 C4.8552,3.1598 3.9582,4.0568 3.9582,5.1598 L3.9582,6.01574707 C3.9582,7.11774707 4.8552,8.01574707 5.9582,8.01574707 L17.8842,8.01574707 C18.9872,8.01574707 19.8842,7.11774707 19.8842,6.01574707 L19.8842,5.1598 C19.8842,4.0568 18.9872,3.1598 17.8842,3.1598 L5.9582,3.1598 Z" })] })) })));
|
29
|
-
};
|
30
|
-
exports.default = SendToBackArrow;
|
@@ -1,30 +0,0 @@
|
|
1
|
-
"use strict";
|
2
|
-
var __assign = (this && this.__assign) || function () {
|
3
|
-
__assign = Object.assign || function(t) {
|
4
|
-
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
5
|
-
s = arguments[i];
|
6
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
7
|
-
t[p] = s[p];
|
8
|
-
}
|
9
|
-
return t;
|
10
|
-
};
|
11
|
-
return __assign.apply(this, arguments);
|
12
|
-
};
|
13
|
-
var __rest = (this && this.__rest) || function (s, e) {
|
14
|
-
var t = {};
|
15
|
-
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
16
|
-
t[p] = s[p];
|
17
|
-
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
18
|
-
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
19
|
-
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
20
|
-
t[p[i]] = s[p[i]];
|
21
|
-
}
|
22
|
-
return t;
|
23
|
-
};
|
24
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
25
|
-
var jsx_runtime_1 = require("react/jsx-runtime");
|
26
|
-
var BringToFrontArrow = function (_a) {
|
27
|
-
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
28
|
-
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: "M7.6299,11.1971 L11.9999,6.8271 L16.3699,11.1971 M12,7.7766 L12,16.0326 M18.0415,19.8403 L6.1155,19.8403 C5.5635,19.8403 5.1155,19.3923 5.1155,18.8403 L5.1155,17.7823 C5.1155,17.2303 5.5635,16.7823 6.1155,16.7823 L18.0415,16.7823 C18.5935,16.7823 19.0415,17.2303 19.0415,17.7823 L19.0415,18.8403 C19.0415,19.3923 18.5935,19.8403 18.0415,19.8403 Z M5.9982,4.0021 L18.2392,4.0021" }) })));
|
29
|
-
};
|
30
|
-
exports.default = BringToFrontArrow;
|