pds-dev-kit-web 1.3.26 → 1.3.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.
@@ -158,5 +158,7 @@
158
158
  "sys_border_line_07": "darkgrey70",
159
159
  "sys_border_line_white_opacity50": "white/opacity50",
160
160
  "sys_background_dimmed_02": "black/opacity65",
161
- "sys_border_line_08": "darkgrey500"
161
+ "sys_border_line_08": "darkgrey500",
162
+ "sys_sys_component_base_06": "darkgrey30",
163
+ "sys_sys_component_base_07": "darkgrey70"
162
164
  }
@@ -158,5 +158,7 @@
158
158
  "sys_border_line_07": "grey70",
159
159
  "sys_border_line_white_opacity50": "white/opacity50",
160
160
  "sys_background_dimmed_02": "black/opacity30",
161
- "sys_border_line_08": "grey500"
161
+ "sys_border_line_08": "grey500",
162
+ "sys_sys_component_base_06": "grey30",
163
+ "sys_sys_component_base_07": "grey70"
162
164
  }
@@ -491,5 +491,6 @@
491
491
  "ui_cpnt_dropdown_base_white_disabled": "sys_component_base_white_opacity10",
492
492
  "ui_cpnt_dropdown_border_white_disabled": "sys_border_line_white_opacity50",
493
493
  "ui_cpnt_sheet_base_white_opacity00": "sys_component_base_white_opacity00",
494
- "ui_dimmed_01": "sys_background_dimmed_20"
494
+ "ui_dimmed_01": "sys_background_dimmed_20",
495
+ "ui_cpnt_reactionbutton_base_01": "sys_component_base_07"
495
496
  }
@@ -1,5 +1,5 @@
1
1
  declare const colorSet: {
2
- readonly PaletteColor_light: {
2
+ readonly PaletteColor_Dark: {
3
3
  sys_container_background_01: string;
4
4
  sys_container_background_02: string;
5
5
  sys_container_background_03: string;
@@ -160,8 +160,10 @@ declare const colorSet: {
160
160
  sys_border_line_white_opacity50: string;
161
161
  sys_background_dimmed_02: string;
162
162
  sys_border_line_08: string;
163
+ sys_sys_component_base_06: string;
164
+ sys_sys_component_base_07: string;
163
165
  };
164
- readonly PaletteColor_Dark: {
166
+ readonly PaletteColor_light: {
165
167
  sys_container_background_01: string;
166
168
  sys_container_background_02: string;
167
169
  sys_container_background_03: string;
@@ -322,6 +324,8 @@ declare const colorSet: {
322
324
  sys_border_line_white_opacity50: string;
323
325
  sys_background_dimmed_02: string;
324
326
  sys_border_line_08: string;
327
+ sys_sys_component_base_06: string;
328
+ sys_sys_component_base_07: string;
325
329
  };
326
330
  readonly SemanticColor: {
327
331
  blue500: string;
@@ -875,6 +879,7 @@ declare const colorSet: {
875
879
  ui_cpnt_dropdown_border_white_disabled: string;
876
880
  ui_cpnt_sheet_base_white_opacity00: string;
877
881
  ui_dimmed_01: string;
882
+ ui_cpnt_reactionbutton_base_01: string;
878
883
  };
879
884
  };
880
885
  export default colorSet;
@@ -4,13 +4,13 @@ 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_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
8
7
  var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
8
+ var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
9
9
  var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
10
10
  var UIColor_json_1 = __importDefault(require("./UIColor.json"));
11
11
  var colorSet = {
12
- PaletteColor_light: PaletteColor_light_json_1.default,
13
12
  PaletteColor_Dark: PaletteColor_Dark_json_1.default,
13
+ PaletteColor_light: PaletteColor_light_json_1.default,
14
14
  SemanticColor: SemanticColor_json_1.default,
15
15
  UIColor: UIColor_json_1.default
16
16
  };
@@ -492,4 +492,5 @@ export interface UITheme {
492
492
  ui_cpnt_dropdown_border_white_disabled: string;
493
493
  ui_cpnt_sheet_base_white_opacity00: string;
494
494
  ui_dimmed_01: string;
495
+ ui_cpnt_reactionbutton_base_01: string;
495
496
  }
@@ -60,6 +60,9 @@ function IconButton(_a) {
60
60
  if (iconColorKey) {
61
61
  return iconColorKey;
62
62
  }
63
+ if (fillType === 'fill' && baseColorKey === 'ui_cpnt_button_fill_base_transparent') {
64
+ return 'ui_cpnt_button_icon_enabled';
65
+ }
63
66
  return iconStateColorObj[fillType];
64
67
  };
65
68
  return (react_1.default.createElement(S_IconButton, { fillType: fillType, shapeType: shapeType, baseSize: baseSize, baseColorKey: baseColorKey, borderColorKey: borderColorKey, shadow: shadow, colorTheme: colorTheme, type: type, state: state, disabled: state === 'disabled', tabIndex: tabIndex, onClick: handleClick, onMouseDown: handleMouseDown },
@@ -60,6 +60,9 @@ function IconButton(_a) {
60
60
  if (iconColorKey) {
61
61
  return iconColorKey;
62
62
  }
63
+ if (fillType === 'fill' && baseColorKey === 'ui_cpnt_button_fill_base_transparent') {
64
+ return 'ui_cpnt_button_icon_enabled';
65
+ }
63
66
  return iconStateColorObj[fillType];
64
67
  };
65
68
  return (react_1.default.createElement(S_IconButton, { fillType: fillType, shapeType: shapeType, baseSize: baseSize, baseColorKey: baseColorKey, borderColorKey: borderColorKey, shadow: shadow, colorTheme: colorTheme, type: type, state: state, disabled: state === 'disabled', tabIndex: tabIndex, onClick: handleClick, onMouseDown: handleMouseDown },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "1.3.26",
3
+ "version": "1.3.27",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,14 +1,9 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v1.3.26]
3
-
4
- ### Package
5
- * 컴포넌트들이 커스텀 컬러를 받을 수 있도록 수정
2
+ ## [v1.3.27]
6
3
 
7
4
  ### Component
8
- * EditApplyTextField
9
- * iconButton의 type을 submit으로 변경
10
- * getInputValue와 onClickSubmitBtnprop에 deprecated 예고 추가
11
- * 빈값이 들어있을때도 제출이 가능하도록 변경
5
+ * IconButton
6
+ * baseColorKey가 ui_cpnt_button_fill_base_transparent(투명)일때, icon색상 변경
12
7
 
13
8
  ### Color
14
- * 컬러 키 값 22.05.31 2045분 기준 싱크
9
+ * 컬러 키 값 22.05.31 2210분 기준 싱크