pds-dev-kit-web-test 2.5.9 → 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: onResizeStop, onWidthChange: onWidthChange, minNbRow: rows, isDraggable: isEditMode, isResizable: isEditMode }, { children: keepSimilarOrderToPreventRerender(layouts[layoutByDevice]).map(function (each, index) {
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, {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web-test",
3
- "version": "2.5.9",
3
+ "version": "2.5.11",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -22,7 +22,7 @@
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.90",
25
+ "publ-echo": "^0.0.91",
26
26
  "react-hook-form": "^7.28.1",
27
27
  "react-i18next": "^11.12.0",
28
28
  "react-router-dom": "^5.2.0",