pds-dev-kit-web 2.1.26 → 2.1.27
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.
|
@@ -72,7 +72,7 @@ function UploadIconButton(_a) {
|
|
|
72
72
|
};
|
|
73
73
|
return ((0, jsx_runtime_1.jsxs)(S_UploadIconButton, __assign({ "x-pds-name": "UploadIconButton", "x-pds-element-type": "component", "x-pds-device-type": "desktop", fillType: fillType, shapeType: shapeType, baseSize: baseSize, baseColorKey: baseColorKey, borderColorKey: borderColorKey, shadow: shadow, colorTheme: colorTheme, isDisabled: state === 'disabled', onPointerEnter: function () { return tooltipText && handleTooltipToggle(true); }, onPointerLeave: function () { return tooltipText && handleTooltipToggle(false); } }, { children: [(0, jsx_runtime_1.jsx)("input", { type: "file", hidden: true, disabled: state === 'disabled', accept: accept, multiple: multipleMode === 'use', onChange: handleClick }), (0, jsx_runtime_1.jsx)(hybrid_1.Icon, { iconName: iconName, size: iconSize, colorKey: IconColorSelect(), fillType: iconFillType }), tooltipText && isTooltipOpen && ((0, jsx_runtime_1.jsx)(S_TooltipWrapper, __assign({ className: "TooltipWrapper", isTooltipOpen: isTooltipOpen, tooltipPosition: tooltipPosition, baseSize: baseSize }, { children: (0, jsx_runtime_1.jsx)(TextLabel_1.TextLabel, { text: tooltipText, colorOverride: "ui_cpnt_textlabel_button_tooltip", styleTheme: "caption2Regular", colorTheme: "sysTextSecondary" }) })))] })));
|
|
74
74
|
}
|
|
75
|
-
var fillDisabled = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n"], ["\n background-color: ", ";\n"])), function (_a) {
|
|
75
|
+
var fillDisabled = (0, styled_components_1.css)(templateObject_1 || (templateObject_1 = __makeTemplateObject(["\n background-color: ", ";\n\n &:hover:not([disabled])::before {\n background-color: unset;\n }\n\n &:active:not([disabled])::before {\n background-color: unset;\n }\n"], ["\n background-color: ", ";\n\n &:hover:not([disabled])::before {\n background-color: unset;\n }\n\n &:active:not([disabled])::before {\n background-color: unset;\n }\n"])), function (_a) {
|
|
76
76
|
var theme = _a.theme, baseColorKey = _a.baseColorKey;
|
|
77
77
|
return baseColorKey === 'ui_cpnt_button_fill_base_transparent'
|
|
78
78
|
? ''
|
|
@@ -103,7 +103,7 @@ var line2ColorTheme = (0, styled_components_1.css)(templateObject_4 || (template
|
|
|
103
103
|
var theme = _a.theme;
|
|
104
104
|
return theme.ui_cpnt_button_line_border_primary;
|
|
105
105
|
});
|
|
106
|
-
var lineDisabled = (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n"], ["\n background-color: ", ";\n border-color: ", ";\n"])), function (_a) {
|
|
106
|
+
var lineDisabled = (0, styled_components_1.css)(templateObject_5 || (templateObject_5 = __makeTemplateObject(["\n background-color: ", ";\n border-color: ", ";\n\n &:hover:not([disabled]) {\n background-color: unset;\n }\n\n &:active:not([disabled]) {\n background-color: unset;\n }\n"], ["\n background-color: ", ";\n border-color: ", ";\n\n &:hover:not([disabled]) {\n background-color: unset;\n }\n\n &:active:not([disabled]) {\n background-color: unset;\n }\n"])), function (_a) {
|
|
107
107
|
var theme = _a.theme;
|
|
108
108
|
return theme.ui_cpnt_button_line_base_default;
|
|
109
109
|
}, function (_a) {
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,9 +1,7 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v2.1.
|
|
2
|
+
## [v2.1.27]
|
|
3
3
|
## daily|https://design.storybook.publ.biz/
|
|
4
4
|
|
|
5
5
|
### Component
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
### Color
|
|
9
|
-
* 컬러 키 값 23.08.22 17시 25분 기준 싱크
|
|
6
|
+
* D_UploadIconButton
|
|
7
|
+
* disabled상태일때 hover와 active시에 색상 변화가 없도록 수정
|