pds-dev-kit-web 2.2.105 → 2.2.107

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.
@@ -7,7 +7,6 @@ export declare function parsePlacement(components: ComponentBlock[]): {
7
7
  w: number;
8
8
  h: number;
9
9
  z: number;
10
- autoResize: boolean;
11
10
  }[];
12
11
  lg: {
13
12
  i: string;
@@ -10,7 +10,8 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
10
10
  };
11
11
  Object.defineProperty(exports, "__esModule", { value: true });
12
12
  exports.parsePlacement = void 0;
13
- var types_1 = require("../types");
13
+ /* eslint-disable @typescript-eslint/no-unused-vars */
14
+ require("../types");
14
15
  function parsePlacement(components) {
15
16
  return components.reduce(function (acc, cur) {
16
17
  var id = cur.id, jsonProperties = cur.jsonProperties, componentBlockCode = cur.componentBlockCode;
@@ -38,8 +39,8 @@ function parsePropPlacement(props, id, cbCode) {
38
39
  y: props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_STARTY:MOBILE'],
39
40
  w: props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_COLS:MOBILE'],
40
41
  h: props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_ROWS:MOBILE'],
41
- z: props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX:MOBILE'] + 500,
42
- autoResize: cbCode === types_1.CB_ALL_CODES.CB_TEXT
42
+ z: props['CB_PLACEMENT_PROP_PLACEMENT_SPEC_ZINDEX:MOBILE'] + 500
43
+ // autoResize: cbCode === CB_ALL_CODES.CB_TEXT
43
44
  };
44
45
  return {
45
46
  mobileLayout: mobileLayout,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.105",
3
+ "version": "2.2.107",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.105]
2
+ ## [v2.2.107]
3
3
  ## daily|https://design.storybook.publ.biz/
4
4
 
5
5
  ### 업데이트 사항
6
- * [Feature/pds 1254] DL에 zoomScale추가
6
+ * [PDS-1254] disable autoresize from mobile
7
7