pds-dev-kit-web 1.9.23 → 1.9.24

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 (64) hide show
  1. package/dist/src/desktop/components/AdminList/AdminList.js +1 -1
  2. package/dist/src/desktop/components/BasicListItem/BasicListItem.d.ts +1 -0
  3. package/dist/src/desktop/components/BasicListItem/BasicListItem.js +10 -99
  4. package/dist/src/desktop/components/BasicListItem/Contents.d.ts +16 -0
  5. package/dist/src/desktop/components/BasicListItem/Contents.js +31 -0
  6. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
  7. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.js +27 -0
  8. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
  9. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.js +19 -0
  10. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
  11. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.js +19 -0
  12. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.d.ts +8 -0
  13. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.js +9 -0
  14. package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
  15. package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.js +42 -0
  16. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
  17. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.js +13 -0
  18. package/dist/src/desktop/components/BasicListItem/LeftBox/index.d.ts +2 -0
  19. package/dist/src/desktop/components/BasicListItem/LeftBox/index.js +8 -0
  20. package/dist/src/desktop/components/BasicListItem/RightBox/Description.d.ts +8 -0
  21. package/dist/src/desktop/components/BasicListItem/RightBox/Description.js +10 -0
  22. package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
  23. package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.js +19 -0
  24. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
  25. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.js +10 -0
  26. package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
  27. package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.js +40 -0
  28. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.d.ts +10 -0
  29. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.js +19 -0
  30. package/dist/src/desktop/components/BasicListItem/RightBox/index.d.ts +2 -0
  31. package/dist/src/desktop/components/BasicListItem/RightBox/index.js +8 -0
  32. package/dist/src/desktop/components/Radio/Radio.js +2 -2
  33. package/dist/src/mobile/components/BasicListItem/BasicListItem.d.ts +1 -0
  34. package/dist/src/mobile/components/BasicListItem/BasicListItem.js +10 -99
  35. package/dist/src/mobile/components/BasicListItem/Contents.d.ts +16 -0
  36. package/dist/src/mobile/components/BasicListItem/Contents.js +31 -0
  37. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
  38. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.js +27 -0
  39. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
  40. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.js +19 -0
  41. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
  42. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.js +19 -0
  43. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.d.ts +8 -0
  44. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.js +9 -0
  45. package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
  46. package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.js +42 -0
  47. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
  48. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.js +13 -0
  49. package/dist/src/mobile/components/BasicListItem/LeftBox/index.d.ts +2 -0
  50. package/dist/src/mobile/components/BasicListItem/LeftBox/index.js +8 -0
  51. package/dist/src/mobile/components/BasicListItem/RightBox/Description.d.ts +8 -0
  52. package/dist/src/mobile/components/BasicListItem/RightBox/Description.js +10 -0
  53. package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
  54. package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.js +19 -0
  55. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
  56. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.js +10 -0
  57. package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
  58. package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.js +40 -0
  59. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.d.ts +10 -0
  60. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.js +19 -0
  61. package/dist/src/mobile/components/BasicListItem/RightBox/index.d.ts +2 -0
  62. package/dist/src/mobile/components/BasicListItem/RightBox/index.js +8 -0
  63. package/package.json +1 -1
  64. package/release-note.md +8 -9
@@ -0,0 +1,19 @@
1
+ "use strict";
2
+ var __makeTemplateObject = (this && this.__makeTemplateObject) || function (cooked, raw) {
3
+ if (Object.defineProperty) { Object.defineProperty(cooked, "raw", { value: raw }); } else { cooked.raw = raw; }
4
+ return cooked;
5
+ };
6
+ var __importDefault = (this && this.__importDefault) || function (mod) {
7
+ return (mod && mod.__esModule) ? mod : { "default": mod };
8
+ };
9
+ Object.defineProperty(exports, "__esModule", { value: true });
10
+ var jsx_runtime_1 = require("react/jsx-runtime");
11
+ var components_1 = require("@hybrid/components");
12
+ var styled_components_1 = __importDefault(require("styled-components"));
13
+ var Switch = function (_a) {
14
+ var name = _a.name, state = _a.state, status = _a.status, onClick = _a.onClick;
15
+ return ((0, jsx_runtime_1.jsxs)(S_SwitchWrapper, { children: [(0, jsx_runtime_1.jsx)(components_1.Switch, { name: name, state: state, status: status, onClick: onClick }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0)] }, void 0));
16
+ };
17
+ var S_SwitchWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n display: flex;\n justify-content: flex-end;\n min-height: 32px;\n min-width: 68px;\n position: relative;\n right: 0;\n"], ["\n display: flex;\n justify-content: flex-end;\n min-height: 32px;\n min-width: 68px;\n position: relative;\n right: 0;\n"])));
18
+ exports.default = Switch;
19
+ var templateObject_1;
@@ -0,0 +1,2 @@
1
+ import RightBox from './RightBox';
2
+ export { RightBox };
@@ -0,0 +1,8 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.RightBox = void 0;
7
+ var RightBox_1 = __importDefault(require("./RightBox"));
8
+ exports.RightBox = RightBox_1.default;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "1.9.23",
3
+ "version": "1.9.24",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,11 +1,10 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v1.9.23]
2
+ ## [v1.9.24]
3
3
 
4
- ### common
5
- * animationStyle
6
- * animation시에 부여되어있던 animation-fill-mode 옵션 제거 (DesktopAlertDialog, MobileAlertDialog, DesktopBasicModal, DesktopHeadlessModal, DesktopTutorialModal, MobileBasicModal에 영향)
7
- ### Layout
8
- * WFA_3 생성
9
- * WFA_4 생성
10
- ### Color
11
- * 컬러 키 값 23.03.14 14시 20분 기준 싱크
4
+ ### Component
5
+ * AdminList
6
+ * headerRowCheckboxName이 제대로 작동할 있도록 수정
7
+ * BasicListItem
8
+ * TItleText에 wordBreak=”break_all” 추가
9
+ * captionText에 wordBreak=”break_all” 추가
10
+ * 내부 구조 정리