pds-dev-kit-web 1.9.22 → 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 (75) hide show
  1. package/dist/src/common/styles/colorSet/UIColor.json +2 -1
  2. package/dist/src/common/styles/colorSet/index.d.ts +749 -748
  3. package/dist/src/common/styles/colorSet/index.js +3 -3
  4. package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
  5. package/dist/src/common/styles/movement/animationStyle.js +8 -8
  6. package/dist/src/desktop/components/AdminList/AdminList.js +1 -1
  7. package/dist/src/desktop/components/BasicListItem/BasicListItem.d.ts +1 -0
  8. package/dist/src/desktop/components/BasicListItem/BasicListItem.js +10 -99
  9. package/dist/src/desktop/components/BasicListItem/Contents.d.ts +16 -0
  10. package/dist/src/desktop/components/BasicListItem/Contents.js +31 -0
  11. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
  12. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.js +27 -0
  13. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
  14. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.js +19 -0
  15. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
  16. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.js +19 -0
  17. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.d.ts +8 -0
  18. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.js +9 -0
  19. package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
  20. package/dist/src/desktop/components/BasicListItem/LeftBox/LeftBox.js +42 -0
  21. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
  22. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.js +13 -0
  23. package/dist/src/desktop/components/BasicListItem/LeftBox/index.d.ts +2 -0
  24. package/dist/src/desktop/components/BasicListItem/LeftBox/index.js +8 -0
  25. package/dist/src/desktop/components/BasicListItem/RightBox/Description.d.ts +8 -0
  26. package/dist/src/desktop/components/BasicListItem/RightBox/Description.js +10 -0
  27. package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
  28. package/dist/src/desktop/components/BasicListItem/RightBox/IconButton.js +19 -0
  29. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
  30. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.js +10 -0
  31. package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
  32. package/dist/src/desktop/components/BasicListItem/RightBox/RightBox.js +40 -0
  33. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.d.ts +10 -0
  34. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.js +19 -0
  35. package/dist/src/desktop/components/BasicListItem/RightBox/index.d.ts +2 -0
  36. package/dist/src/desktop/components/BasicListItem/RightBox/index.js +8 -0
  37. package/dist/src/desktop/components/Radio/Radio.js +2 -2
  38. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.d.ts +1 -1
  39. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/ContentsContainer.js +2 -0
  40. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.d.ts +1 -1
  41. package/dist/src/desktop/layout/LayoutWF/Containers/ContentsContainer/variation/WFA.js +60 -9
  42. package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.d.ts +1 -1
  43. package/dist/src/desktop/layout/LayoutWF/ContainersBox/ContainersBox.js +4 -0
  44. package/dist/src/mobile/components/BasicListItem/BasicListItem.d.ts +1 -0
  45. package/dist/src/mobile/components/BasicListItem/BasicListItem.js +10 -99
  46. package/dist/src/mobile/components/BasicListItem/Contents.d.ts +16 -0
  47. package/dist/src/mobile/components/BasicListItem/Contents.js +31 -0
  48. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.d.ts +7 -0
  49. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.js +27 -0
  50. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.d.ts +6 -0
  51. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.js +19 -0
  52. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.d.ts +8 -0
  53. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.js +19 -0
  54. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.d.ts +8 -0
  55. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.js +9 -0
  56. package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.d.ts +17 -0
  57. package/dist/src/mobile/components/BasicListItem/LeftBox/LeftBox.js +42 -0
  58. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.d.ts +9 -0
  59. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.js +13 -0
  60. package/dist/src/mobile/components/BasicListItem/LeftBox/index.d.ts +2 -0
  61. package/dist/src/mobile/components/BasicListItem/LeftBox/index.js +8 -0
  62. package/dist/src/mobile/components/BasicListItem/RightBox/Description.d.ts +8 -0
  63. package/dist/src/mobile/components/BasicListItem/RightBox/Description.js +10 -0
  64. package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.d.ts +9 -0
  65. package/dist/src/mobile/components/BasicListItem/RightBox/IconButton.js +19 -0
  66. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.d.ts +9 -0
  67. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.js +10 -0
  68. package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.d.ts +15 -0
  69. package/dist/src/mobile/components/BasicListItem/RightBox/RightBox.js +40 -0
  70. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.d.ts +10 -0
  71. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.js +19 -0
  72. package/dist/src/mobile/components/BasicListItem/RightBox/index.d.ts +2 -0
  73. package/dist/src/mobile/components/BasicListItem/RightBox/index.js +8 -0
  74. package/package.json +1 -1
  75. package/release-note.md +8 -5
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var jsx_runtime_1 = require("react/jsx-runtime");
4
+ var components_1 = require("@hybrid/components");
5
+ var Image = function (_a) {
6
+ var src = _a.src, shape = _a.shape;
7
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.ImageView, { width: 40, height: 40, src: src, scaleType: "cover", shapeType: shape }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0)] }, void 0));
8
+ };
9
+ exports.default = Image;
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import type { BadgePropTypes } from './Badge';
3
+ import type { CheckboxPropTypes } from './Checkbox';
4
+ import type { IconPropTypes } from './Icon';
5
+ import type { ImagePropTypes } from './Image';
6
+ import type { RadioPropTypes } from './Radio';
7
+ declare type LeftBoxPropTypes = React.FunctionComponent<{
8
+ hasRightBox: boolean;
9
+ }> & {
10
+ Checkbox: React.FC<CheckboxPropTypes>;
11
+ Radio: React.FC<RadioPropTypes>;
12
+ Badge: React.FC<BadgePropTypes>;
13
+ Image: React.FC<ImagePropTypes>;
14
+ Icon: React.FC<IconPropTypes>;
15
+ };
16
+ declare const LeftBox: LeftBoxPropTypes;
17
+ export default LeftBox;
@@ -0,0 +1,42 @@
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 __assign = (this && this.__assign) || function () {
7
+ __assign = Object.assign || function(t) {
8
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
9
+ s = arguments[i];
10
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
11
+ t[p] = s[p];
12
+ }
13
+ return t;
14
+ };
15
+ return __assign.apply(this, arguments);
16
+ };
17
+ var __importDefault = (this && this.__importDefault) || function (mod) {
18
+ return (mod && mod.__esModule) ? mod : { "default": mod };
19
+ };
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ var jsx_runtime_1 = require("react/jsx-runtime");
22
+ var styled_components_1 = __importDefault(require("styled-components"));
23
+ var Badge_1 = __importDefault(require("./Badge"));
24
+ var Checkbox_1 = __importDefault(require("./Checkbox"));
25
+ var Icon_1 = __importDefault(require("./Icon"));
26
+ var Image_1 = __importDefault(require("./Image"));
27
+ var Radio_1 = __importDefault(require("./Radio"));
28
+ var LeftBox = function (_a) {
29
+ var children = _a.children, hasRightBox = _a.hasRightBox;
30
+ return ((0, jsx_runtime_1.jsx)(S_LeftBox, __assign({ hasRightBox: hasRightBox }, { children: children }), void 0));
31
+ };
32
+ var S_LeftBox = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n flex: ", ";\n width: 100%;\n"], ["\n align-items: center;\n display: flex;\n flex: ", ";\n width: 100%;\n"])), function (_a) {
33
+ var hasRightBox = _a.hasRightBox;
34
+ return (hasRightBox ? 7 : 'auto');
35
+ });
36
+ LeftBox.Checkbox = Checkbox_1.default;
37
+ LeftBox.Radio = Radio_1.default;
38
+ LeftBox.Badge = Badge_1.default;
39
+ LeftBox.Image = Image_1.default;
40
+ LeftBox.Icon = Icon_1.default;
41
+ exports.default = LeftBox;
42
+ var templateObject_1;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import type { BasicListItemProps } from '../BasicListItem';
3
+ export declare type RadioPropTypes = {
4
+ id: string;
5
+ value: string;
6
+ onChange: BasicListItemProps['onClickRadio'];
7
+ };
8
+ declare const Radio: React.FC<RadioPropTypes>;
9
+ export default Radio;
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var jsx_runtime_1 = require("react/jsx-runtime");
4
+ var components_1 = require("@hybrid/components");
5
+ var Radio_1 = require("../../Radio");
6
+ var Radio = function (_a) {
7
+ var id = _a.id, value = _a.value, onChange = _a.onChange;
8
+ var handleRadioClick = function (e) {
9
+ onChange && onChange(e.target.value);
10
+ };
11
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(Radio_1.Radio, { name: id, value: value, onChange: handleRadioClick, checked: id === value }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0)] }, void 0));
12
+ };
13
+ exports.default = Radio;
@@ -0,0 +1,2 @@
1
+ import LeftBox from './LeftBox';
2
+ export { LeftBox };
@@ -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.LeftBox = void 0;
7
+ var LeftBox_1 = __importDefault(require("./LeftBox"));
8
+ exports.LeftBox = LeftBox_1.default;
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import type { PDSTextType } from '@common/types';
3
+ export declare type DescriptionPropTypes = {
4
+ text: PDSTextType;
5
+ icon?: React.ReactNode;
6
+ };
7
+ declare const Description: React.FC<DescriptionPropTypes>;
8
+ export default Description;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var jsx_runtime_1 = require("react/jsx-runtime");
4
+ var components_1 = require("@hybrid/components");
5
+ var TextLabel_1 = require("../../TextLabel");
6
+ var Description = function (_a) {
7
+ var text = _a.text, icon = _a.icon;
8
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: text, colorTheme: "sysTextSecondary", styleTheme: "caption1Regular", textAlign: "right", singleLineMode: "use", ellipsisMode: "use", lineLimit: 1 }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0), icon && icon] }, void 0));
9
+ };
10
+ exports.default = Description;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import type { BasicListItemProps } from '../BasicListItem';
3
+ export declare type IconButtonPropTypes = {
4
+ iconName: BasicListItemProps['iBtn2IconName'];
5
+ fill: boolean;
6
+ onClick?: (e: React.MouseEvent<HTMLButtonElement>) => void;
7
+ };
8
+ declare const IconButton: React.FC<IconButtonPropTypes>;
9
+ export default IconButton;
@@ -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 styled_components_1 = __importDefault(require("styled-components"));
12
+ var IconButton_1 = require("../../IconButton");
13
+ var IconButton = function (_a) {
14
+ var iconName = _a.iconName, fill = _a.fill, onClick = _a.onClick;
15
+ return ((0, jsx_runtime_1.jsx)(S_IconWrapper, { children: iconName && ((0, jsx_runtime_1.jsx)(IconButton_1.IconButton, { iconName: iconName, iconFillType: fill ? 'fill' : 'line', baseSize: "medium", iconSize: 20, shapeType: "rectangle", baseColorKey: "ui_cpnt_button_fill_base_transparent", onClick: onClick, iconColorKey: "ui_cpnt_button_icon_default" }, void 0)) }, void 0));
16
+ };
17
+ var S_IconWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n justify-content: center;\n"], ["\n align-items: center;\n display: flex;\n justify-content: center;\n"])));
18
+ exports.default = IconButton;
19
+ var templateObject_1;
@@ -0,0 +1,9 @@
1
+ /// <reference types="react" />
2
+ import type { BasicListItemProps } from '../BasicListItem';
3
+ export declare type MainButtonPropTypes = {
4
+ text: BasicListItemProps['mBtnText'];
5
+ fill: boolean;
6
+ onClick: BasicListItemProps['onClickMBtn'];
7
+ };
8
+ declare const MainButton: React.FC<MainButtonPropTypes>;
9
+ export default MainButton;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ var jsx_runtime_1 = require("react/jsx-runtime");
4
+ var components_1 = require("@hybrid/components");
5
+ var MainButton_1 = require("../../MainButton");
6
+ var MainButton = function (_a) {
7
+ var text = _a.text, fill = _a.fill, onClick = _a.onClick;
8
+ return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(MainButton_1.MainButton, { text: text, fillType: fill ? 'fill' : 'line', size: "small", onClick: onClick }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0)] }, void 0));
9
+ };
10
+ exports.default = MainButton;
@@ -0,0 +1,15 @@
1
+ /// <reference types="react" />
2
+ import type { DescriptionPropTypes } from './Description';
3
+ import type { IconButtonPropTypes } from './IconButton';
4
+ import type { MainButtonPropTypes } from './MainButton';
5
+ import type { SwitchPropTypes } from './Switch';
6
+ declare type RightBoxPropTypes = React.FunctionComponent<{
7
+ hasFixedHeight: boolean;
8
+ }> & {
9
+ Description: React.FC<DescriptionPropTypes>;
10
+ IconButton: React.FC<IconButtonPropTypes>;
11
+ MainButton: React.FC<MainButtonPropTypes>;
12
+ Switch: React.FC<SwitchPropTypes>;
13
+ };
14
+ declare const RightBox: RightBoxPropTypes;
15
+ export default RightBox;
@@ -0,0 +1,40 @@
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 __assign = (this && this.__assign) || function () {
7
+ __assign = Object.assign || function(t) {
8
+ for (var s, i = 1, n = arguments.length; i < n; i++) {
9
+ s = arguments[i];
10
+ for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
11
+ t[p] = s[p];
12
+ }
13
+ return t;
14
+ };
15
+ return __assign.apply(this, arguments);
16
+ };
17
+ var __importDefault = (this && this.__importDefault) || function (mod) {
18
+ return (mod && mod.__esModule) ? mod : { "default": mod };
19
+ };
20
+ Object.defineProperty(exports, "__esModule", { value: true });
21
+ var jsx_runtime_1 = require("react/jsx-runtime");
22
+ var styled_components_1 = __importDefault(require("styled-components"));
23
+ var Description_1 = __importDefault(require("./Description"));
24
+ var IconButton_1 = __importDefault(require("./IconButton"));
25
+ var MainButton_1 = __importDefault(require("./MainButton"));
26
+ var Switch_1 = __importDefault(require("./Switch"));
27
+ var RightBox = function (_a) {
28
+ var children = _a.children, hasFixedHeight = _a.hasFixedHeight;
29
+ return ((0, jsx_runtime_1.jsx)(S_RightBox, __assign({ hasFixedHeight: hasFixedHeight }, { children: children }), void 0));
30
+ };
31
+ var S_RightBox = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n display: flex;\n flex: 3;\n height: ", ";\n justify-content: flex-end;\n"], ["\n align-items: center;\n display: flex;\n flex: 3;\n height: ", ";\n justify-content: flex-end;\n"])), function (_a) {
32
+ var hasFixedHeight = _a.hasFixedHeight;
33
+ return (hasFixedHeight ? '40px' : 'auto');
34
+ });
35
+ RightBox.Description = Description_1.default;
36
+ RightBox.IconButton = IconButton_1.default;
37
+ RightBox.MainButton = MainButton_1.default;
38
+ RightBox.Switch = Switch_1.default;
39
+ exports.default = RightBox;
40
+ var templateObject_1;
@@ -0,0 +1,10 @@
1
+ /// <reference types="react" />
2
+ import type { BasicListItemProps } from '../BasicListItem';
3
+ export declare type SwitchPropTypes = {
4
+ name: string;
5
+ state: BasicListItemProps['switchState'];
6
+ status: BasicListItemProps['switchStatus'];
7
+ onClick: BasicListItemProps['onClickSwitch'];
8
+ };
9
+ declare const Switch: React.FC<SwitchPropTypes>;
10
+ export default Switch;
@@ -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.22",
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,7 +1,10 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v1.9.22]
2
+ ## [v1.9.24]
3
3
 
4
- ### Layout
5
- * WFL_3 생성
6
- * WFL_4 생성
7
- * WTP_2 생성
4
+ ### Component
5
+ * AdminList
6
+ * headerRowCheckboxName이 제대로 작동할 수 있도록 수정
7
+ * BasicListItem
8
+ * TItleText에 wordBreak=”break_all” 추가
9
+ * captionText에 wordBreak=”break_all” 추가
10
+ * 내부 구조 정리