pds-dev-kit-web 2.2.107 → 2.2.108

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.
@@ -358,5 +358,6 @@
358
358
  "usr_brand_primary_opacity05": "darkblue500/opacity05",
359
359
  "sys_cpnt_sheet_base_15": "grey200",
360
360
  "sys_cpnt_sheet_base_16": "grey900/opacity50",
361
- "sys_cpnt_sheet_base_17": "grey500"
361
+ "sys_cpnt_sheet_base_17": "grey500",
362
+ "sys_component_base_47": "darkyellow500"
362
363
  }
@@ -358,5 +358,6 @@
358
358
  "usr_brand_primary_opacity05": "blue500/opacity05",
359
359
  "sys_cpnt_sheet_base_15": "grey100",
360
360
  "sys_cpnt_sheet_base_16": "grey900/opacity50",
361
- "sys_cpnt_sheet_base_17": "grey500"
361
+ "sys_cpnt_sheet_base_17": "grey500",
362
+ "sys_component_base_47": "yellow500"
362
363
  }
@@ -116,5 +116,7 @@
116
116
  "grey20": "#f8f8fb",
117
117
  "darkgrey20": "#1a1a1b",
118
118
  "grey300": "#BDBDC2",
119
- "darkgrey300": "#555557"
119
+ "darkgrey300": "#555557",
120
+ "yellow500": "#FED400",
121
+ "darkyellow500": "#FFD100"
120
122
  }
@@ -865,5 +865,6 @@
865
865
  "ui_125": "sys_cpnt_sheet_base_14",
866
866
  "ui_126": "sys_cpnt_sheet_base_16",
867
867
  "ui_127": "sys_cpnt_sheet_base_17",
868
- "ui_128": "sys_widget_white"
868
+ "ui_128": "sys_widget_white",
869
+ "ui_cpnt_sheet_base_27": "sys_component_base_47"
869
870
  }
@@ -118,6 +118,8 @@ declare const colorSet: {
118
118
  darkgrey20: string;
119
119
  grey300: string;
120
120
  darkgrey300: string;
121
+ yellow500: string;
122
+ darkyellow500: string;
121
123
  };
122
124
  readonly PaletteColor_light: {
123
125
  sys_container_background_01: string;
@@ -480,6 +482,7 @@ declare const colorSet: {
480
482
  sys_cpnt_sheet_base_15: string;
481
483
  sys_cpnt_sheet_base_16: string;
482
484
  sys_cpnt_sheet_base_17: string;
485
+ sys_component_base_47: string;
483
486
  };
484
487
  readonly PaletteColor_Dark: {
485
488
  sys_container_background_01: string;
@@ -842,6 +845,7 @@ declare const colorSet: {
842
845
  sys_cpnt_sheet_base_15: string;
843
846
  sys_cpnt_sheet_base_16: string;
844
847
  sys_cpnt_sheet_base_17: string;
848
+ sys_component_base_47: string;
845
849
  };
846
850
  readonly UIColor: {
847
851
  ui_cpnt_button_fill_base_primary: string;
@@ -1711,6 +1715,7 @@ declare const colorSet: {
1711
1715
  ui_126: string;
1712
1716
  ui_127: string;
1713
1717
  ui_128: string;
1718
+ ui_cpnt_sheet_base_27: string;
1714
1719
  };
1715
1720
  };
1716
1721
  export default colorSet;
@@ -866,4 +866,5 @@ export interface UITheme {
866
866
  ui_126: string;
867
867
  ui_127: string;
868
868
  ui_128: string;
869
+ ui_cpnt_sheet_base_27: string;
869
870
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "2.2.107",
3
+ "version": "2.2.108",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
package/release-note.md CHANGED
@@ -1,7 +1,7 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v2.2.107]
2
+ ## [v2.2.108]
3
3
  ## daily|https://design.storybook.publ.biz/
4
4
 
5
5
  ### 업데이트 사항
6
- * [PDS-1254] disable autoresize from mobile
6
+ * 컬러키 최신화
7
7