pds-dev-kit-web-test 2.5.10 → 2.5.11
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.
@@ -41,6 +41,14 @@ type ActionHandlerPayload = {
|
|
41
41
|
e?: ResizeEventType;
|
42
42
|
node?: HTMLElement;
|
43
43
|
};
|
44
|
+
'@CUSTOMSECTION/CB_AUTO_FIT_CONTENT': {
|
45
|
+
layout: Layout;
|
46
|
+
prev?: LayoutItem;
|
47
|
+
item?: LayoutItem;
|
48
|
+
placeholder?: LayoutItem;
|
49
|
+
e?: ResizeEventType;
|
50
|
+
node?: HTMLElement;
|
51
|
+
};
|
44
52
|
'@CUSTOMSECTION/PLACEMENT_CHANGED': {
|
45
53
|
layout: Layout;
|
46
54
|
layouts: Layouts;
|
@@ -345,6 +345,26 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
345
345
|
});
|
346
346
|
}
|
347
347
|
};
|
348
|
+
var onAutoFitContent = function (props) {
|
349
|
+
var prev = props.prev, item = props.item;
|
350
|
+
if (!isEditMode || !item) {
|
351
|
+
return;
|
352
|
+
}
|
353
|
+
var numberId = Number(item.i);
|
354
|
+
var isIdNumber = !Number.isNaN(numberId);
|
355
|
+
if (isLayoutPlacementSame(item, prev)) {
|
356
|
+
return;
|
357
|
+
}
|
358
|
+
if (isIdNumber) {
|
359
|
+
setSelectedCB(numberId);
|
360
|
+
}
|
361
|
+
if (sectionActionHandler && isIdNumber) {
|
362
|
+
sectionActionHandler({
|
363
|
+
type: '@CUSTOMSECTION/CB_AUTO_FIT_CONTENT',
|
364
|
+
payload: props
|
365
|
+
});
|
366
|
+
}
|
367
|
+
};
|
348
368
|
var onClickSection = function () {
|
349
369
|
if (!isEditMode) {
|
350
370
|
return;
|
@@ -423,7 +443,7 @@ var CustomSection = (0, react_1.forwardRef)(function CustomSection(props, ref) {
|
|
423
443
|
maxWidth: customSectionStyles.maxWidth,
|
424
444
|
minWidth: isMobile ? GLE_MIN_WIDTH_MOBILE_PX : GLE_MIN_WIDTH_DESKTOP_PX,
|
425
445
|
fontSize: "".concat(baseFontSize, "px")
|
426
|
-
}, onLayoutChange: onLayoutChange, onDragStart: onDragStart, onDragStop: onDragStop, onResizeStop: onResizeStop, onFitToContent:
|
446
|
+
}, onLayoutChange: onLayoutChange, onDragStart: onDragStart, onDragStop: onDragStop, onResizeStop: onResizeStop, onFitToContent: onAutoFitContent, onWidthChange: onWidthChange, minNbRow: rows, isDraggable: isEditMode, isResizable: isEditMode }, { children: keepSimilarOrderToPreventRerender(layouts[layoutByDevice]).map(function (each, index) {
|
427
447
|
var _a;
|
428
448
|
if (each === null) {
|
429
449
|
return (0, jsx_runtime_1.jsx)(jsx_runtime_1.Fragment, {});
|