pds-dev-kit-web 2.2.210 → 2.2.212

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.
Files changed (32) hide show
  1. package/dist/src/common/services/i18n/resources/en.json +14 -14
  2. package/dist/src/common/styles/scroll/scrollbarStyle.d.ts +2 -0
  3. package/dist/src/common/styles/scroll/scrollbarStyle.js +4 -3
  4. package/dist/src/desktop/components/Calendar/Calendar.js +46 -51
  5. package/dist/src/desktop/components/Calendar/CalendarContext.d.ts +3 -1
  6. package/dist/src/desktop/components/Calendar/CalendarContext.js +2 -1
  7. package/dist/src/desktop/components/Calendar/DailyView.d.ts +8 -2
  8. package/dist/src/desktop/components/Calendar/DailyView.js +88 -7
  9. package/dist/src/desktop/components/Calendar/MonthlyView.d.ts +2 -1
  10. package/dist/src/desktop/components/Calendar/MonthlyView.js +81 -6
  11. package/dist/src/desktop/components/Calendar/WeeklyView.d.ts +3 -0
  12. package/dist/src/desktop/components/Calendar/WeeklyView.js +113 -7
  13. package/dist/src/desktop/components/Calendar/calendarUtils.js +20 -10
  14. package/dist/src/desktop/components/Calendar/types.d.ts +8 -4
  15. package/dist/src/desktop/components/PriceTextField/PriceTextField.d.ts +5 -4
  16. package/dist/src/desktop/components/PriceTextField/PriceTextField.js +53 -70
  17. package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.d.ts +2 -1
  18. package/dist/src/desktop/panels/DesktopBasicModal/DesktopBasicModal.js +13 -15
  19. package/dist/src/desktop/panels/DesktopBasicModalWithTab/DesktopBasicModalWithTab.d.ts +3 -1
  20. package/dist/src/desktop/panels/DesktopBasicModalWithTab/DesktopBasicModalWithTab.js +16 -10
  21. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.d.ts +2 -1
  22. package/dist/src/desktop/panels/DesktopHeadlessModal/DesktopHeadlessModal.js +7 -27
  23. package/dist/src/desktop/panels/DesktopTutorialModal/DesktopTutorialModal.d.ts +3 -1
  24. package/dist/src/desktop/panels/DesktopTutorialModal/DesktopTutorialModal.js +11 -5
  25. package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.d.ts +3 -1
  26. package/dist/src/desktop/panels/MultilingualModal/MultilingualModal.js +11 -4
  27. package/dist/src/mobile/components/PriceTextField/PriceTextField.d.ts +5 -4
  28. package/dist/src/mobile/components/PriceTextField/PriceTextField.js +53 -70
  29. package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.d.ts +3 -1
  30. package/dist/src/mobile/panels/MobileBasicModal/MobileBasicModal.js +13 -6
  31. package/package.json +1 -1
  32. package/release-note.md +3 -2
@@ -44,12 +44,13 @@ Object.defineProperty(exports, "__esModule", { value: true });
44
44
  var jsx_runtime_1 = require("react/jsx-runtime");
45
45
  var react_1 = require("react");
46
46
  var react_dom_1 = __importDefault(require("react-dom"));
47
+ var scrollbarStyle_1 = require("../../../common/styles/scroll/scrollbarStyle");
47
48
  var styled_components_1 = __importStar(require("styled-components"));
48
49
  var animationStyle_1 = require("../../../common/styles/movement/animationStyle");
49
50
  var hybrid_1 = require("../../../hybrid");
50
51
  var components_1 = require("../../components");
51
52
  function MobileBasicModal(_a) {
52
- var titleText = _a.titleText, _b = _a.bodySpacingMode, bodySpacingMode = _b === void 0 ? 'use' : _b, _c = _a.bodyOverflowType, bodyOverflowType = _c === void 0 ? 'auto' : _c, contentText = _a.contentText, mBtnText = _a.mBtnText, _d = _a.mBtnState, mBtnState = _d === void 0 ? 'normal' : _d, _e = _a.mBtnType, mBtnType = _e === void 0 ? 'button' : _e, tBtnText = _a.tBtnText, _f = _a.tBtnState, tBtnState = _f === void 0 ? 'normal' : _f, _g = _a.tBtnType, tBtnType = _g === void 0 ? 'button' : _g, onClickMBtn = _a.onClickMBtn, onClickTBtn = _a.onClickTBtn, onClickXMarkIcon = _a.onClickXMarkIcon, children = _a.children;
53
+ var titleText = _a.titleText, _b = _a.bodySpacingMode, bodySpacingMode = _b === void 0 ? 'use' : _b, _c = _a.bodyOverflowType, bodyOverflowType = _c === void 0 ? 'auto' : _c, _d = _a.scrollVisibleType, scrollVisibleType = _d === void 0 ? 'visible' : _d, contentText = _a.contentText, mBtnText = _a.mBtnText, _e = _a.mBtnState, mBtnState = _e === void 0 ? 'normal' : _e, _f = _a.mBtnType, mBtnType = _f === void 0 ? 'button' : _f, tBtnText = _a.tBtnText, _g = _a.tBtnState, tBtnState = _g === void 0 ? 'normal' : _g, _h = _a.tBtnType, tBtnType = _h === void 0 ? 'button' : _h, onClickMBtn = _a.onClickMBtn, onClickTBtn = _a.onClickTBtn, onClickXMarkIcon = _a.onClickXMarkIcon, children = _a.children;
53
54
  var container = (0, react_1.useState)(function () {
54
55
  var modalRoot = document.createElement('div');
55
56
  modalRoot.setAttribute('id', 'MobileBasicModal');
@@ -65,7 +66,7 @@ function MobileBasicModal(_a) {
65
66
  root.removeChild(container);
66
67
  };
67
68
  }, []);
68
- return react_dom_1.default.createPortal((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(S_ModalOverlay, {}), (0, jsx_runtime_1.jsxs)(S_ModalWrapper, __assign({ "x-pds-name": "MobileBasicModal", "x-pds-element-type": "panel", "x-pds-device-type": "mobile" }, { children: [(0, jsx_runtime_1.jsxs)(S_Header, { children: [(0, jsx_runtime_1.jsx)(S_TitleWrapper, { children: (0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: titleText, colorTheme: "sysTextPrimary", styleTheme: "headingBold" }) }), (0, jsx_runtime_1.jsx)(S_IconButtonWrapper, { children: (0, jsx_runtime_1.jsx)(components_1.IconButton, { fillType: "fill", baseSize: "large", baseColorKey: "ui_cpnt_button_fill_base_transparent", iconSize: 24, shapeType: "rectangle", iconName: "ic_xmark", iconColorKey: "ui_cpnt_modal_header_icon_02", iconFillType: "line", onClick: onClickXMarkIcon }) })] }), (0, jsx_runtime_1.jsxs)(S_Body, __assign({ bodySpacingMode: bodySpacingMode, bodyOverflowType: bodyOverflowType }, { children: [contentText && ((0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: contentText, colorTheme: "sysTextSecondary", styleTheme: "subTitleRegular" })), children && children] })), (0, jsx_runtime_1.jsxs)(S_Footer, { children: [(0, jsx_runtime_1.jsx)(components_1.MainButton, { text: mBtnText, state: mBtnState, type: mBtnType, size: "rlarge", onClick: onClickMBtn }), tBtnText && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b" }), (0, jsx_runtime_1.jsx)(components_1.TextButton, { text: tBtnText, state: tBtnState, type: tBtnType, size: "rlarge", onClick: onClickTBtn })] }))] })] }))] }), container);
69
+ return react_dom_1.default.createPortal((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(S_ModalOverlay, {}), (0, jsx_runtime_1.jsxs)(S_ModalWrapper, __assign({ "x-pds-name": "MobileBasicModal", "x-pds-element-type": "panel", "x-pds-device-type": "mobile" }, { children: [(0, jsx_runtime_1.jsxs)(S_Header, { children: [(0, jsx_runtime_1.jsx)(S_TitleWrapper, { children: (0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: titleText, colorTheme: "sysTextPrimary", styleTheme: "headingBold" }) }), (0, jsx_runtime_1.jsx)(S_IconButtonWrapper, { children: (0, jsx_runtime_1.jsx)(components_1.IconButton, { fillType: "fill", baseSize: "large", baseColorKey: "ui_cpnt_button_fill_base_transparent", iconSize: 24, shapeType: "rectangle", iconName: "ic_xmark", iconColorKey: "ui_cpnt_modal_header_icon_02", iconFillType: "line", onClick: onClickXMarkIcon }) })] }), (0, jsx_runtime_1.jsxs)(S_Body, __assign({ bodySpacingMode: bodySpacingMode, bodyOverflowType: bodyOverflowType, scrollVisibleType: scrollVisibleType }, { children: [contentText && ((0, jsx_runtime_1.jsx)(components_1.TextLabel, { text: contentText, colorTheme: "sysTextSecondary", styleTheme: "subTitleRegular" })), children && children] })), (0, jsx_runtime_1.jsxs)(S_Footer, { children: [(0, jsx_runtime_1.jsx)(components_1.MainButton, { text: mBtnText, state: mBtnState, type: mBtnType, size: "rlarge", onClick: onClickMBtn }), tBtnText && ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(hybrid_1.Spacing, { size: "spacing_b" }), (0, jsx_runtime_1.jsx)(components_1.TextButton, { text: tBtnText, state: tBtnState, type: tBtnType, size: "rlarge", onClick: onClickTBtn })] }))] })] }))] }), container);
69
70
  }
70
71
  var S_ModalOverlay = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n height: 100vh;\n left: 0;\n position: fixed;\n top: 0;\n width: 100vw;\n\n ", "\n"], ["\n background-color: ", ";\n height: 100vh;\n left: 0;\n position: fixed;\n top: 0;\n width: 100vw;\n\n ", "\n"])), function (_a) {
71
72
  var theme = _a.theme;
@@ -92,10 +93,7 @@ var S_IconButtonWrapper = styled_components_1.default.div(templateObject_4 || (t
92
93
  var theme = _a.theme;
93
94
  return theme.spacing.spacingB;
94
95
  });
95
- var S_Body = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n max-height: 50vh;\n overflow-y: ", ";\n padding-top: ", ";\n\n ", "\n"], ["\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n max-height: 50vh;\n overflow-y: ", ";\n padding-top: ", ";\n\n ", "\n"])), function (_a) {
96
- var theme = _a.theme;
97
- return theme.spacing.spacingE;
98
- }, function (_a) {
96
+ var S_Body = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n margin-bottom: ", ";\n margin-left: ", ";\n max-height: 50vh;\n overflow-y: ", ";\n padding-right: ", ";\n padding-top: ", ";\n\n ", "\n\n ", "\n"], ["\n margin-bottom: ", ";\n margin-left: ", ";\n max-height: 50vh;\n overflow-y: ", ";\n padding-right: ", ";\n padding-top: ", ";\n\n ", "\n\n ", "\n"])), function (_a) {
99
97
  var theme = _a.theme;
100
98
  return theme.spacing.spacingE;
101
99
  }, function (_a) {
@@ -104,9 +102,18 @@ var S_Body = styled_components_1.default.div(templateObject_6 || (templateObject
104
102
  }, function (_a) {
105
103
  var bodyOverflowType = _a.bodyOverflowType;
106
104
  return bodyOverflowType;
105
+ }, function (_a) {
106
+ var theme = _a.theme;
107
+ return theme.spacing.spacingE;
107
108
  }, function (_a) {
108
109
  var theme = _a.theme;
109
110
  return theme.spacing.spacingC;
111
+ }, function (_a) {
112
+ var scrollVisibleType = _a.scrollVisibleType;
113
+ return ({
114
+ visible: scrollbarStyle_1.scrollbarStyle,
115
+ hidden: scrollbarStyle_1.scrollInvisible
116
+ }[scrollVisibleType]);
110
117
  }, function (_a) {
111
118
  var bodySpacingMode = _a.bodySpacingMode;
112
119
  return bodySpacingMode === 'none' && (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin-bottom: 0;\n margin-left: 0;\n margin-right: 0;\n "], ["\n margin-bottom: 0;\n margin-left: 0;\n margin-right: 0;\n "])));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.210",
3
+ "version": "2.2.212",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,6 +1,7 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.210]
2
+ ## [v2.2.212]
3
3
  ## daily|https://design.storybook.publ.biz/
4
4
 
5
5
  ### 업데이트 사항
6
- * [PDS-1340] AdminList/AdminListHeader에 TooltipText Prop 추가
6
+ * [PDS-1342] 모달류 컴포넌트에 스크롤 추가
7
+ * [PDS-1337] Calendar 날짜 드래그로 해당 구간 이벤트 목록 전체 선택 가능한 기능 추가