pds-dev-kit-web 2.2.180 → 2.2.181

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.
@@ -2,12 +2,12 @@
2
2
  import type { PDSTextType } from '../../../common/types';
3
3
  type DesktopHeadlessModalProps = {
4
4
  body: React.ReactNode;
5
- size?: 'large' | 'medium' | 'small' | 'rlarge';
5
+ size?: 'large' | 'medium' | 'small' | 'rlarge' | 'xlarge';
6
6
  dimmedClickCloseMode?: 'use' | 'none';
7
7
  scrollVisibleType?: 'hidden' | 'moving' | 'visible';
8
8
  footerMode?: 'use' | 'none';
9
9
  btnMode?: 'mbtn_amount1' | 'mbtn_amount2' | 'mbtn_amount3';
10
- mBtn1Text: PDSTextType;
10
+ mBtn1Text?: PDSTextType;
11
11
  mBtn2Text?: PDSTextType;
12
12
  mBtn3Text?: PDSTextType;
13
13
  mBtn1State?: 'normal' | 'disabled';
@@ -115,7 +115,8 @@ var S_ModalWrapper = styled_components_1.default.div(templateObject_2 || (templa
115
115
  small: '400px',
116
116
  medium: '688px',
117
117
  large: '960px',
118
- rlarge: '60vw'
118
+ rlarge: '60vw',
119
+ xlarge: '1200px'
119
120
  };
120
121
  return sizes[size];
121
122
  }, animationStyle_1.modalOnAni);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.180",
3
+ "version": "2.2.181",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.180]
2
+ ## [v2.2.181]
3
3
  ## daily|https://design.storybook.publ.biz/
4
4
 
5
5
  ### 업데이트 사항
6
- * [PDS-1312] headlessmodal footer 지원
6
+ * [PDS-1312] HeadlessModal mBtn1Text 옵셔널 Prop 으로 수정 + xlarge 사이즈 옵션 추가