pds-dev-kit-web 1.5.10 → 1.5.11
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/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +3 -2
- package/dist/src/common/styles/colorSet/index.js +4 -4
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/desktop/components/DynamicDesktopNavBar/blocks/PrimaryMenu.js +1 -1
- package/package.json +1 -1
- package/release-note.md +6 -5
|
@@ -581,5 +581,6 @@
|
|
|
581
581
|
"ui_loading_skeleton_02": "sys_loading_skeleton_02",
|
|
582
582
|
"ui_loading_linear_bar": "sys_loading_linear_bar",
|
|
583
583
|
"ui_loading_linear_base": "sys_loading_linear_base",
|
|
584
|
-
"ui_loading_three_bar": "sys_loading_three_bar"
|
|
584
|
+
"ui_loading_three_bar": "sys_loading_three_bar",
|
|
585
|
+
"ui_menu_button_base": "usr_menu_background"
|
|
585
586
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const colorSet: {
|
|
2
|
-
readonly
|
|
2
|
+
readonly PaletteColor_light: {
|
|
3
3
|
sys_container_background_01: string;
|
|
4
4
|
sys_container_background_02: string;
|
|
5
5
|
sys_container_background_03: string;
|
|
@@ -275,7 +275,7 @@ declare const colorSet: {
|
|
|
275
275
|
green30: string;
|
|
276
276
|
darkgreen30: string;
|
|
277
277
|
};
|
|
278
|
-
readonly
|
|
278
|
+
readonly PaletteColor_Dark: {
|
|
279
279
|
sys_container_background_01: string;
|
|
280
280
|
sys_container_background_02: string;
|
|
281
281
|
sys_container_background_03: string;
|
|
@@ -1063,6 +1063,7 @@ declare const colorSet: {
|
|
|
1063
1063
|
ui_loading_linear_bar: string;
|
|
1064
1064
|
ui_loading_linear_base: string;
|
|
1065
1065
|
ui_loading_three_bar: string;
|
|
1066
|
+
ui_menu_button_base: string;
|
|
1066
1067
|
};
|
|
1067
1068
|
};
|
|
1068
1069
|
export default colorSet;
|
|
@@ -4,14 +4,14 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
|
-
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
8
|
-
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
9
7
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
8
|
+
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
9
|
+
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
10
10
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
|
-
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
13
|
-
SemanticColor: SemanticColor_json_1.default,
|
|
14
12
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
13
|
+
SemanticColor: SemanticColor_json_1.default,
|
|
14
|
+
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
15
15
|
UIColor: UIColor_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -100,7 +100,7 @@ var S_ButtonWrapper = styled_components_1.default.div(templateObject_5 || (templ
|
|
|
100
100
|
return theme.ui_menu_background;
|
|
101
101
|
}, function (_a) {
|
|
102
102
|
var theme = _a.theme;
|
|
103
|
-
return theme.
|
|
103
|
+
return theme.ui_menu_button_base;
|
|
104
104
|
}, function (_a) {
|
|
105
105
|
var theme = _a.theme;
|
|
106
106
|
return theme.ui_temp_grey_02;
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,8 +1,9 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.5.
|
|
2
|
+
## [v1.5.11]
|
|
3
3
|
|
|
4
4
|
### Component
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
|
|
8
|
-
|
|
5
|
+
* DynamicDesktopNavBar
|
|
6
|
+
* PrimaryMenu들을 좌우로 스크롤 해주는 버튼의 배경 컬러키 변경
|
|
7
|
+
|
|
8
|
+
### Color
|
|
9
|
+
* 컬러 키 값 22.11.10 12시 40분 기준 싱크
|