pds-dev-kit-web 1.3.10 → 1.3.13
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.
- package/dist/src/common/assets/icons/fill/Question.d.ts +4 -0
- package/dist/src/common/assets/icons/fill/Question.js +34 -0
- package/dist/src/common/assets/icons/fill/index.d.ts +1 -0
- package/dist/src/common/assets/icons/fill/index.js +2 -0
- package/dist/src/common/assets/icons/line/Requirement.d.ts +4 -0
- package/dist/src/common/assets/icons/line/Requirement.js +34 -0
- package/dist/src/common/assets/icons/line/index.d.ts +1 -0
- package/dist/src/common/assets/icons/line/index.js +2 -0
- package/dist/src/common/styles/colorSet/UIColor.json +1 -1
- package/dist/src/common/styles/colorSet/index.d.ts +211 -211
- package/dist/src/common/styles/colorSet/index.js +4 -4
- package/dist/src/common/types/{comopnents.d.ts → components.d.ts} +5 -0
- package/dist/src/common/types/{comopnents.js → components.js} +0 -0
- package/dist/src/common/types/index.d.ts +1 -1
- package/dist/src/common/types/index.js +1 -1
- package/dist/src/desktop/components/AdminListItem/AdminListItem.js +12 -9
- package/dist/src/desktop/components/DesktopBasicModal/DesktopBasicModal.d.ts +2 -1
- package/dist/src/desktop/components/DesktopBasicModal/DesktopBasicModal.js +18 -15
- package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.d.ts +9 -4
- package/dist/src/desktop/components/DesktopTabBar/DesktopTabBar.js +81 -38
- package/dist/src/desktop/components/TextLabel/TextLabel.d.ts +3 -1
- package/dist/src/desktop/components/TextLabel/TextLabel.js +12 -5
- package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.d.ts +6 -4
- package/dist/src/desktop/components/UserDesktopTabBar/UserDesktopTabBar.js +38 -16
- package/dist/src/desktop/layout/LayoutWS/LayoutWS.js +1 -1
- package/dist/src/mobile/components/MobileBasicModal/MobileBasicModal.d.ts +2 -1
- package/dist/src/mobile/components/MobileBasicModal/MobileBasicModal.js +18 -15
- package/dist/src/mobile/components/MobileTabBar/MobileTabBar.d.ts +6 -4
- package/dist/src/mobile/components/MobileTabBar/MobileTabBar.js +21 -12
- package/dist/src/mobile/components/TextLabel/TextLabel.d.ts +3 -1
- package/dist/src/mobile/components/TextLabel/TextLabel.js +10 -3
- package/package.json +1 -1
- package/release-note.md +9 -7
|
@@ -28,12 +28,12 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
28
28
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
29
|
var react_1 = __importStar(require("react"));
|
|
30
30
|
var react_dom_1 = __importDefault(require("react-dom"));
|
|
31
|
-
var styled_components_1 =
|
|
31
|
+
var styled_components_1 = __importStar(require("styled-components"));
|
|
32
32
|
var IconButton_1 = require("../IconButton");
|
|
33
33
|
var MainButton_1 = require("../MainButton");
|
|
34
34
|
var TextLabel_1 = require("../TextLabel");
|
|
35
35
|
function MobileBasicModal(_a) {
|
|
36
|
-
var titleText = _a.titleText, contentText = _a.contentText, mBtnText = _a.mBtnText, onClickMBtn = _a.onClickMBtn, onClickXMarkIcon = _a.onClickXMarkIcon, children = _a.children;
|
|
36
|
+
var titleText = _a.titleText, _b = _a.bodySpacingMode, bodySpacingMode = _b === void 0 ? 'use' : _b, contentText = _a.contentText, mBtnText = _a.mBtnText, onClickMBtn = _a.onClickMBtn, onClickXMarkIcon = _a.onClickXMarkIcon, children = _a.children;
|
|
37
37
|
var container = (0, react_1.useState)(function () {
|
|
38
38
|
var modalRoot = document.createElement('div');
|
|
39
39
|
modalRoot.setAttribute('id', 'MobileBasicModal');
|
|
@@ -56,7 +56,7 @@ function MobileBasicModal(_a) {
|
|
|
56
56
|
react_1.default.createElement(S_TitleWrapper, null,
|
|
57
57
|
react_1.default.createElement(TextLabel_1.TextLabel, { text: titleText, colorTheme: "sysTextPrimary", styleTheme: "headingBold" })),
|
|
58
58
|
react_1.default.createElement(IconButton_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 })),
|
|
59
|
-
react_1.default.createElement(S_Body,
|
|
59
|
+
react_1.default.createElement(S_Body, { bodySpacingMode: bodySpacingMode },
|
|
60
60
|
contentText && (react_1.default.createElement(TextLabel_1.TextLabel, { text: contentText, colorTheme: "sysTextSecondary", styleTheme: "subTitleRegular" })),
|
|
61
61
|
children && children),
|
|
62
62
|
react_1.default.createElement(S_Footer, null, mBtnText && react_1.default.createElement(MainButton_1.MainButton, { text: mBtnText, size: "rlarge", onClick: onClickMBtn })))), container);
|
|
@@ -65,7 +65,7 @@ var S_ModalOverlay = styled_components_1.default.div(templateObject_1 || (templa
|
|
|
65
65
|
var theme = _a.theme;
|
|
66
66
|
return theme.ui_cpnt_modal_dimmed;
|
|
67
67
|
});
|
|
68
|
-
var S_ModalWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 8px;\n box-shadow: ", ";\n
|
|
68
|
+
var S_ModalWrapper = styled_components_1.default.div(templateObject_2 || (templateObject_2 = __makeTemplateObject(["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 8px;\n box-shadow: ", ";\n left: 50%;\n max-height: 720px;\n max-width: 560px;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: calc(100% - 48px);\n"], ["\n background-color: ", ";\n border: 1px solid ", ";\n border-radius: 8px;\n box-shadow: ", ";\n left: 50%;\n max-height: 720px;\n max-width: 560px;\n position: fixed;\n top: 50%;\n transform: translate(-50%, -50%);\n width: calc(100% - 48px);\n"])), function (_a) {
|
|
69
69
|
var theme = _a.theme;
|
|
70
70
|
return theme.ui_cpnt_modal_base;
|
|
71
71
|
}, function (_a) {
|
|
@@ -75,13 +75,13 @@ var S_ModalWrapper = styled_components_1.default.div(templateObject_2 || (templa
|
|
|
75
75
|
var theme = _a.theme;
|
|
76
76
|
return theme.boxShadow.elevation4;
|
|
77
77
|
});
|
|
78
|
-
var S_Header = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n
|
|
78
|
+
var S_Header = styled_components_1.default.div(templateObject_3 || (templateObject_3 = __makeTemplateObject(["\n display: flex;\n justify-content: space-between;\n padding-bottom: ", ";\n"], ["\n display: flex;\n justify-content: space-between;\n padding-bottom: ", ";\n"])), function (_a) {
|
|
79
79
|
var theme = _a.theme;
|
|
80
80
|
return theme.spacing.spacingC;
|
|
81
81
|
});
|
|
82
|
-
var S_Body = styled_components_1.default.div(
|
|
82
|
+
var S_Body = styled_components_1.default.div(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n max-height: 480px;\n overflow-y: scroll;\n padding-top: ", ";\n\n ", "\n"], ["\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n max-height: 480px;\n overflow-y: scroll;\n padding-top: ", ";\n\n ", "\n"])), function (_a) {
|
|
83
83
|
var theme = _a.theme;
|
|
84
|
-
return theme.spacing.
|
|
84
|
+
return theme.spacing.spacingE;
|
|
85
85
|
}, function (_a) {
|
|
86
86
|
var theme = _a.theme;
|
|
87
87
|
return theme.spacing.spacingE;
|
|
@@ -90,11 +90,14 @@ var S_Body = styled_components_1.default.div(templateObject_4 || (templateObject
|
|
|
90
90
|
return theme.spacing.spacingE;
|
|
91
91
|
}, function (_a) {
|
|
92
92
|
var theme = _a.theme;
|
|
93
|
-
return theme.spacing.
|
|
93
|
+
return theme.spacing.spacingC;
|
|
94
|
+
}, function (_a) {
|
|
95
|
+
var bodySpacingMode = _a.bodySpacingMode;
|
|
96
|
+
return bodySpacingMode === 'none' && (0, styled_components_1.css)(templateObject_4 || (templateObject_4 = __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 "])));
|
|
94
97
|
});
|
|
95
|
-
var S_Footer = styled_components_1.default.div(
|
|
98
|
+
var S_Footer = styled_components_1.default.div(templateObject_6 || (templateObject_6 = __makeTemplateObject(["\n display: flex;\n justify-content: space-between;\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n padding-top: ", ";\n"], ["\n display: flex;\n justify-content: space-between;\n margin-bottom: ", ";\n margin-left: ", ";\n margin-right: ", ";\n padding-top: ", ";\n"])), function (_a) {
|
|
96
99
|
var theme = _a.theme;
|
|
97
|
-
return theme.spacing.
|
|
100
|
+
return theme.spacing.spacingE;
|
|
98
101
|
}, function (_a) {
|
|
99
102
|
var theme = _a.theme;
|
|
100
103
|
return theme.spacing.spacingE;
|
|
@@ -103,17 +106,17 @@ var S_Footer = styled_components_1.default.div(templateObject_5 || (templateObje
|
|
|
103
106
|
return theme.spacing.spacingE;
|
|
104
107
|
}, function (_a) {
|
|
105
108
|
var theme = _a.theme;
|
|
106
|
-
return theme.spacing.
|
|
109
|
+
return theme.spacing.spacingD;
|
|
107
110
|
});
|
|
108
|
-
var S_TitleWrapper = styled_components_1.default.div(
|
|
111
|
+
var S_TitleWrapper = styled_components_1.default.div(templateObject_7 || (templateObject_7 = __makeTemplateObject(["\n margin-left: ", ";\n margin-right: ", ";\n margin-top: ", ";\n"], ["\n margin-left: ", ";\n margin-right: ", ";\n margin-top: ", ";\n"])), function (_a) {
|
|
109
112
|
var theme = _a.theme;
|
|
110
|
-
return theme.spacing.
|
|
113
|
+
return theme.spacing.spacingE;
|
|
111
114
|
}, function (_a) {
|
|
112
115
|
var theme = _a.theme;
|
|
113
|
-
return theme.spacing.
|
|
116
|
+
return theme.spacing.spacingB;
|
|
114
117
|
}, function (_a) {
|
|
115
118
|
var theme = _a.theme;
|
|
116
119
|
return theme.spacing.spacingE;
|
|
117
120
|
});
|
|
118
121
|
exports.default = MobileBasicModal;
|
|
119
|
-
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6;
|
|
122
|
+
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
/// <reference types="react" />
|
|
2
|
-
import { PDSTextType } from '../../../common';
|
|
2
|
+
import { PDSTabItemOption, PDSTextType } from '../../../common/types';
|
|
3
3
|
declare type TextObj = {
|
|
4
4
|
path: string;
|
|
5
5
|
title: PDSTextType;
|
|
6
6
|
};
|
|
7
|
-
|
|
8
|
-
|
|
7
|
+
declare type MobileTabBarProps = {
|
|
8
|
+
itemArray?: PDSTabItemOption[];
|
|
9
|
+
/** @deprecated v1.5 해당 필드 대신 itemArray를 사용하세요. */
|
|
10
|
+
textArray?: TextObj[];
|
|
9
11
|
};
|
|
10
|
-
declare function MobileTabBar({ textArray }: MobileTabBarProps): JSX.Element;
|
|
12
|
+
declare function MobileTabBar({ itemArray, textArray }: MobileTabBarProps): JSX.Element;
|
|
11
13
|
export default MobileTabBar;
|
|
@@ -12,19 +12,28 @@ var react_router_dom_1 = require("react-router-dom");
|
|
|
12
12
|
var styled_components_1 = __importDefault(require("styled-components"));
|
|
13
13
|
var TextLabel_1 = require("../TextLabel");
|
|
14
14
|
function MobileTabBar(_a) {
|
|
15
|
-
var textArray = _a.textArray;
|
|
15
|
+
var itemArray = _a.itemArray, textArray = _a.textArray;
|
|
16
16
|
var history = (0, react_router_dom_1.useHistory)();
|
|
17
|
-
var pathname =
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
react_1.default.createElement(S_TabBar, null,
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
17
|
+
var pathname = (0, react_router_dom_1.useLocation)().pathname;
|
|
18
|
+
if (itemArray) {
|
|
19
|
+
var handleClickTabItem_1 = function (item) {
|
|
20
|
+
if (item.onClick) {
|
|
21
|
+
item.onClick();
|
|
22
|
+
}
|
|
23
|
+
};
|
|
24
|
+
return (react_1.default.createElement(S_TabBar, null, itemArray.map(function (item, index) { return (react_1.default.createElement(S_TabWrapper, { key: index, isActive: item.isActive, onClick: function () { return handleClickTabItem_1(item); } },
|
|
25
|
+
react_1.default.createElement(TextLabel_1.TextLabel, { text: item.title, textAlign: "center", styleTheme: "body2Bold", colorTheme: item.isActive ? 'usrTextBrandPrimary' : 'sysTextTertiary', singleLineMode: "use" }))); })));
|
|
26
|
+
}
|
|
27
|
+
if (textArray) {
|
|
28
|
+
var handleClick_1 = function (value) {
|
|
29
|
+
if (value) {
|
|
30
|
+
history.push(value.path);
|
|
31
|
+
}
|
|
32
|
+
};
|
|
33
|
+
return (react_1.default.createElement(S_TabBar, null, textArray.map(function (value) { return (react_1.default.createElement(S_TabWrapper, { key: value.path, isActive: pathname === value.path, onClick: function () { return handleClick_1(value); } },
|
|
34
|
+
react_1.default.createElement(TextLabel_1.TextLabel, { text: value.title, textAlign: "center", styleTheme: "body2Bold", colorTheme: pathname === value.path ? 'usrTextBrandPrimary' : 'sysTextTertiary', singleLineMode: "use" }))); })));
|
|
35
|
+
}
|
|
36
|
+
return react_1.default.createElement(react_1.default.Fragment, null);
|
|
28
37
|
}
|
|
29
38
|
var S_TabWrapper = styled_components_1.default.div(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n align-items: center;\n justify-content: center;\n cursor: pointer;\n display: flex;\n position: relative;\n background-color: ", ";\n padding: 0 ", ";\n flex: 1;\n\n &:last-child {\n margin-right: 0;\n }\n\n &::after {\n background-color: ", ";\n bottom: -1px;\n content: '';\n height: 2px;\n position: absolute;\n width: 100%;\n ", ";\n }\n"], ["\n align-items: center;\n justify-content: center;\n cursor: pointer;\n display: flex;\n position: relative;\n background-color: ", ";\n padding: 0 ", ";\n flex: 1;\n\n &:last-child {\n margin-right: 0;\n }\n\n &::after {\n background-color: ", ";\n bottom: -1px;\n content: '';\n height: 2px;\n position: absolute;\n width: 100%;\n ", ";\n }\n"])), function (_a) {
|
|
30
39
|
var isActive = _a.isActive, theme = _a.theme;
|
|
@@ -12,6 +12,7 @@ export declare type TextLabelProps = {
|
|
|
12
12
|
userSelectMode?: 'none' | 'use';
|
|
13
13
|
customFontSize?: string;
|
|
14
14
|
customFontWeight?: 'bold' | 'regular';
|
|
15
|
+
textDecorationType?: 'none' | 'line_through';
|
|
15
16
|
};
|
|
16
17
|
export declare type TextStyleProps = {
|
|
17
18
|
textAlign?: 'left' | 'center' | 'right';
|
|
@@ -24,6 +25,7 @@ export declare type TextStyleProps = {
|
|
|
24
25
|
userSelectMode?: 'none' | 'use';
|
|
25
26
|
customFontSize?: string;
|
|
26
27
|
customFontWeight?: 'bold' | 'regular';
|
|
28
|
+
textDecorationType?: 'none' | 'line_through';
|
|
27
29
|
};
|
|
28
|
-
declare function TextLabel({ text, textAlign, styleTheme, colorOverride, colorTheme, singleLineMode, ellipsisMode, lineLimit, userSelectMode, customFontSize, customFontWeight }: TextLabelProps): JSX.Element;
|
|
30
|
+
declare function TextLabel({ text, textAlign, styleTheme, colorOverride, colorTheme, singleLineMode, ellipsisMode, lineLimit, userSelectMode, customFontSize, customFontWeight, textDecorationType }: TextLabelProps): JSX.Element;
|
|
29
31
|
export default TextLabel;
|
|
@@ -30,8 +30,8 @@ var react_1 = __importDefault(require("react"));
|
|
|
30
30
|
var styled_components_1 = __importStar(require("styled-components"));
|
|
31
31
|
var common_1 = require("../../../common");
|
|
32
32
|
function TextLabel(_a) {
|
|
33
|
-
var text = _a.text, _b = _a.textAlign, textAlign = _b === void 0 ? 'left' : _b, _c = _a.styleTheme, styleTheme = _c === void 0 ? 'body2Bold' : _c, colorOverride = _a.colorOverride, _d = _a.colorTheme, colorTheme = _d === void 0 ? 'sysTextPrimary' : _d, _e = _a.singleLineMode, singleLineMode = _e === void 0 ? 'none' : _e, _f = _a.ellipsisMode, ellipsisMode = _f === void 0 ? 'none' : _f, lineLimit = _a.lineLimit, _g = _a.userSelectMode, userSelectMode = _g === void 0 ? 'none' : _g, customFontSize = _a.customFontSize, customFontWeight = _a.customFontWeight;
|
|
34
|
-
return (react_1.default.createElement(S_TextLabel, { textAlign: textAlign, styleTheme: styleTheme, colorOverride: colorOverride, colorTheme: colorTheme, singleLineMode: singleLineMode, ellipsisMode: ellipsisMode, lineLimit: lineLimit, userSelectMode: userSelectMode, customFontSize: customFontSize, customFontWeight: customFontWeight }, text));
|
|
33
|
+
var text = _a.text, _b = _a.textAlign, textAlign = _b === void 0 ? 'left' : _b, _c = _a.styleTheme, styleTheme = _c === void 0 ? 'body2Bold' : _c, colorOverride = _a.colorOverride, _d = _a.colorTheme, colorTheme = _d === void 0 ? 'sysTextPrimary' : _d, _e = _a.singleLineMode, singleLineMode = _e === void 0 ? 'none' : _e, _f = _a.ellipsisMode, ellipsisMode = _f === void 0 ? 'none' : _f, lineLimit = _a.lineLimit, _g = _a.userSelectMode, userSelectMode = _g === void 0 ? 'none' : _g, customFontSize = _a.customFontSize, customFontWeight = _a.customFontWeight, _h = _a.textDecorationType, textDecorationType = _h === void 0 ? 'none' : _h;
|
|
34
|
+
return (react_1.default.createElement(S_TextLabel, { textAlign: textAlign, styleTheme: styleTheme, colorOverride: colorOverride, colorTheme: colorTheme, singleLineMode: singleLineMode, ellipsisMode: ellipsisMode, lineLimit: lineLimit, userSelectMode: userSelectMode, customFontSize: customFontSize, customFontWeight: customFontWeight, textDecorationType: textDecorationType }, text));
|
|
35
35
|
}
|
|
36
36
|
var displayBold = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n"], ["\n font-size: ", ";\n line-height: ", ";\n font-weight: ", ";\n"])), function (_a) {
|
|
37
37
|
var theme = _a.theme;
|
|
@@ -259,7 +259,7 @@ var ellipsisStyle = (0, styled_components_1.css)(templateObject_30 || (templateO
|
|
|
259
259
|
return lineLimit;
|
|
260
260
|
});
|
|
261
261
|
var userSelectModeStyle = (0, styled_components_1.css)(templateObject_31 || (templateObject_31 = __makeTemplateObject(["\n -ms-user-select: none;\n -moz-user-select: -moz-none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n"], ["\n -ms-user-select: none;\n -moz-user-select: -moz-none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n"])));
|
|
262
|
-
var S_TextLabel = styled_components_1.default.div(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"], ["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"])), function (_a) {
|
|
262
|
+
var S_TextLabel = styled_components_1.default.div(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"], ["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"])), function (_a) {
|
|
263
263
|
var textAlign = _a.textAlign;
|
|
264
264
|
return textAlign;
|
|
265
265
|
}, function (_a) {
|
|
@@ -316,6 +316,13 @@ var S_TextLabel = styled_components_1.default.div(templateObject_32 || (template
|
|
|
316
316
|
}, function (_a) {
|
|
317
317
|
var userSelectMode = _a.userSelectMode;
|
|
318
318
|
return userSelectMode === 'none' && userSelectModeStyle;
|
|
319
|
+
}, function (_a) {
|
|
320
|
+
var textDecorationType = _a.textDecorationType;
|
|
321
|
+
return textDecorationType &&
|
|
322
|
+
{
|
|
323
|
+
none: '',
|
|
324
|
+
line_through: 'text-decoration: line-through;'
|
|
325
|
+
}[textDecorationType];
|
|
319
326
|
});
|
|
320
327
|
exports.default = TextLabel;
|
|
321
328
|
var templateObject_1, templateObject_2, templateObject_3, templateObject_4, templateObject_5, templateObject_6, templateObject_7, templateObject_8, templateObject_9, templateObject_10, templateObject_11, templateObject_12, templateObject_13, templateObject_14, templateObject_15, templateObject_16, templateObject_17, templateObject_18, templateObject_19, templateObject_20, templateObject_21, templateObject_22, templateObject_23, templateObject_24, templateObject_25, templateObject_26, templateObject_27, templateObject_28, templateObject_29, templateObject_30, templateObject_31, templateObject_32;
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.3.
|
|
2
|
+
## [v1.3.13]
|
|
3
3
|
|
|
4
|
+
### Layout
|
|
5
|
+
* WS
|
|
6
|
+
* LayoutWS의 우측부분이 너비를 제대로 잡을 수 있도록 수정 (width: 100%; -> flex: 1; overflow: hidden;)
|
|
4
7
|
### Component
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
*
|
|
10
|
-
* 컬러 키 값 22.05.02 22시 15분 기준 싱크
|
|
8
|
+
* D_AdminListItem
|
|
9
|
+
* 각 컬럼에 overflow: auto; 추가 (내용의 길이가 길어지면 타 칼럼을 침범하는 경우가 있음)
|
|
10
|
+
* rowSize가 high일때 깨지는 부분 해결
|
|
11
|
+
* D_ TextLabel
|
|
12
|
+
* tooltipText 사용시 뜨는 아이콘의 fillType과 color 수정
|