pds-dev-kit-web 1.9.24 → 1.9.25

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.
Files changed (28) hide show
  1. package/dist/src/common/styles/colorSet/UIColor.json +2 -1
  2. package/dist/src/common/styles/colorSet/index.d.ts +3 -2
  3. package/dist/src/common/styles/colorSet/index.js +2 -2
  4. package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
  5. package/dist/src/desktop/components/BasicListItem/Contents.d.ts +1 -1
  6. package/dist/src/desktop/components/BasicListItem/Contents.js +1 -1
  7. package/dist/src/desktop/components/BasicListItem/LeftBox/Badge.js +1 -1
  8. package/dist/src/desktop/components/BasicListItem/LeftBox/Checkbox.js +1 -1
  9. package/dist/src/desktop/components/BasicListItem/LeftBox/Icon.js +1 -1
  10. package/dist/src/desktop/components/BasicListItem/LeftBox/Image.js +1 -1
  11. package/dist/src/desktop/components/BasicListItem/LeftBox/Radio.js +1 -1
  12. package/dist/src/desktop/components/BasicListItem/RightBox/Description.d.ts +1 -1
  13. package/dist/src/desktop/components/BasicListItem/RightBox/Description.js +1 -1
  14. package/dist/src/desktop/components/BasicListItem/RightBox/MainButton.js +1 -1
  15. package/dist/src/desktop/components/BasicListItem/RightBox/Switch.js +1 -1
  16. package/dist/src/mobile/components/BasicListItem/Contents.d.ts +1 -1
  17. package/dist/src/mobile/components/BasicListItem/Contents.js +1 -1
  18. package/dist/src/mobile/components/BasicListItem/LeftBox/Badge.js +1 -1
  19. package/dist/src/mobile/components/BasicListItem/LeftBox/Checkbox.js +1 -1
  20. package/dist/src/mobile/components/BasicListItem/LeftBox/Icon.js +1 -1
  21. package/dist/src/mobile/components/BasicListItem/LeftBox/Image.js +1 -1
  22. package/dist/src/mobile/components/BasicListItem/LeftBox/Radio.js +1 -1
  23. package/dist/src/mobile/components/BasicListItem/RightBox/Description.d.ts +1 -1
  24. package/dist/src/mobile/components/BasicListItem/RightBox/Description.js +1 -1
  25. package/dist/src/mobile/components/BasicListItem/RightBox/MainButton.js +1 -1
  26. package/dist/src/mobile/components/BasicListItem/RightBox/Switch.js +1 -1
  27. package/package.json +4 -2
  28. package/release-note.md +9 -8
@@ -743,5 +743,6 @@
743
743
  "ui_94": "sys_storyboard_card_base_red01",
744
744
  "ui_95": "sys_storyboard_card_base_green01",
745
745
  "ui_cpnt_icon_sys_brandsecondary_variant": "sys_brand_secondary_variant",
746
- "ui_96": "sys_component_base_10"
746
+ "ui_96": "sys_component_base_10",
747
+ "ui_97": "sys_component_base_black"
747
748
  }
@@ -102,7 +102,7 @@ declare const colorSet: {
102
102
  blue30: string;
103
103
  red30: string;
104
104
  };
105
- readonly PaletteColor_light: {
105
+ readonly PaletteColor_Dark: {
106
106
  sys_container_background_01: string;
107
107
  sys_container_background_02: string;
108
108
  sys_container_background_03: string;
@@ -384,7 +384,7 @@ declare const colorSet: {
384
384
  sys_storyboard_card_base_green01: string;
385
385
  sys_brand_secondary_variant: string;
386
386
  };
387
- readonly PaletteColor_Dark: {
387
+ readonly PaletteColor_light: {
388
388
  sys_container_background_01: string;
389
389
  sys_container_background_02: string;
390
390
  sys_container_background_03: string;
@@ -1412,6 +1412,7 @@ declare const colorSet: {
1412
1412
  ui_95: string;
1413
1413
  ui_cpnt_icon_sys_brandsecondary_variant: string;
1414
1414
  ui_96: string;
1415
+ ui_97: string;
1415
1416
  };
1416
1417
  };
1417
1418
  export default colorSet;
@@ -5,13 +5,13 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
6
  /* eslint-disable import/order */
7
7
  var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
8
- var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
9
8
  var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
9
+ var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
10
10
  var UIColor_json_1 = __importDefault(require("./UIColor.json"));
11
11
  var colorSet = {
12
12
  SemanticColor: SemanticColor_json_1.default,
13
- PaletteColor_light: PaletteColor_light_json_1.default,
14
13
  PaletteColor_Dark: PaletteColor_Dark_json_1.default,
14
+ PaletteColor_light: PaletteColor_light_json_1.default,
15
15
  UIColor: UIColor_json_1.default
16
16
  };
17
17
  exports.default = colorSet;
@@ -744,4 +744,5 @@ export interface UITheme {
744
744
  ui_95: string;
745
745
  ui_cpnt_icon_sys_brandsecondary_variant: string;
746
746
  ui_96: string;
747
+ ui_97: string;
747
748
  }
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { PDSTextType } from '@common/types';
2
+ import type { PDSTextType } from '../../../common/types';
3
3
  declare type ContentsPropTypes = React.FunctionComponent & {
4
4
  Title: React.FC<TitlePropTypes>;
5
5
  Caption: React.FC<CaptionPropTypes>;
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var TextLabel_1 = require("../TextLabel");
14
14
  var Contents = function (_a) {
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Badge = function (_a) {
14
14
  var status = _a.status;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
4
  var react_hook_form_1 = require("react-hook-form");
5
- var components_1 = require("@hybrid/components");
5
+ var components_1 = require("../../../../hybrid/components");
6
6
  var Checkbox_1 = require("../../Checkbox");
7
7
  var Checkbox = function (_a) {
8
8
  var id = _a.id;
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Icon = function (_a) {
14
14
  var name = _a.name, fill = _a.fill;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var Image = function (_a) {
6
6
  var src = _a.src, shape = _a.shape;
7
7
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.ImageView, { width: 40, height: 40, src: src, scaleType: "cover", shapeType: shape }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0)] }, void 0));
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var Radio_1 = require("../../Radio");
6
6
  var Radio = function (_a) {
7
7
  var id = _a.id, value = _a.value, onChange = _a.onChange;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { PDSTextType } from '@common/types';
2
+ import type { PDSTextType } from '../../../../common/types';
3
3
  export declare type DescriptionPropTypes = {
4
4
  text: PDSTextType;
5
5
  icon?: React.ReactNode;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var TextLabel_1 = require("../../TextLabel");
6
6
  var Description = function (_a) {
7
7
  var text = _a.text, icon = _a.icon;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var MainButton_1 = require("../../MainButton");
6
6
  var MainButton = function (_a) {
7
7
  var text = _a.text, fill = _a.fill, onClick = _a.onClick;
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Switch = function (_a) {
14
14
  var name = _a.name, state = _a.state, status = _a.status, onClick = _a.onClick;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { PDSTextType } from '@common/types';
2
+ import type { PDSTextType } from '../../../common/types';
3
3
  declare type ContentsPropTypes = React.FunctionComponent & {
4
4
  Title: React.FC<TitlePropTypes>;
5
5
  Caption: React.FC<CaptionPropTypes>;
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var TextLabel_1 = require("../TextLabel");
14
14
  var Contents = function (_a) {
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Badge = function (_a) {
14
14
  var status = _a.status;
@@ -2,7 +2,7 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
4
  var react_hook_form_1 = require("react-hook-form");
5
- var components_1 = require("@hybrid/components");
5
+ var components_1 = require("../../../../hybrid/components");
6
6
  var Checkbox_1 = require("../../Checkbox");
7
7
  var Checkbox = function (_a) {
8
8
  var id = _a.id;
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Icon = function (_a) {
14
14
  var name = _a.name, fill = _a.fill;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var Image = function (_a) {
6
6
  var src = _a.src, shape = _a.shape;
7
7
  return ((0, jsx_runtime_1.jsxs)(jsx_runtime_1.Fragment, { children: [(0, jsx_runtime_1.jsx)(components_1.ImageView, { width: 40, height: 40, src: src, scaleType: "cover", shapeType: shape }, void 0), (0, jsx_runtime_1.jsx)(components_1.Spacing, { size: "spacing_c", spacingType: "width" }, void 0)] }, void 0));
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var Radio_1 = require("../../Radio");
6
6
  var Radio = function (_a) {
7
7
  var id = _a.id, value = _a.value, onChange = _a.onChange;
@@ -1,5 +1,5 @@
1
1
  /// <reference types="react" />
2
- import type { PDSTextType } from '@common/types';
2
+ import type { PDSTextType } from '../../../../common/types';
3
3
  export declare type DescriptionPropTypes = {
4
4
  text: PDSTextType;
5
5
  icon?: React.ReactNode;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var TextLabel_1 = require("../../TextLabel");
6
6
  var Description = function (_a) {
7
7
  var text = _a.text, icon = _a.icon;
@@ -1,7 +1,7 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  var jsx_runtime_1 = require("react/jsx-runtime");
4
- var components_1 = require("@hybrid/components");
4
+ var components_1 = require("../../../../hybrid/components");
5
5
  var MainButton_1 = require("../../MainButton");
6
6
  var MainButton = function (_a) {
7
7
  var text = _a.text, fill = _a.fill, onClick = _a.onClick;
@@ -8,7 +8,7 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
8
8
  };
9
9
  Object.defineProperty(exports, "__esModule", { value: true });
10
10
  var jsx_runtime_1 = require("react/jsx-runtime");
11
- var components_1 = require("@hybrid/components");
11
+ var components_1 = require("../../../../hybrid/components");
12
12
  var styled_components_1 = __importDefault(require("styled-components"));
13
13
  var Switch = function (_a) {
14
14
  var name = _a.name, state = _a.state, status = _a.status, onClick = _a.onClick;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "pds-dev-kit-web",
3
- "version": "1.9.24",
3
+ "version": "1.9.25",
4
4
  "license": "MIT",
5
5
  "private": false,
6
6
  "main": "dist/index.js",
@@ -33,7 +33,7 @@
33
33
  "web-vitals": "^1.1.2"
34
34
  },
35
35
  "scripts": {
36
- "build": "rm -rf ./dist && tsc",
36
+ "build": "rm -rf ./dist && tsc && tsc-alias",
37
37
  "prepare": "npm run build | husky install",
38
38
  "sync:color": "dotenv -e env/.env node syncColor.ts",
39
39
  "storybook": "start-storybook -p 6006",
@@ -109,6 +109,8 @@
109
109
  "stylelint-order": "^4.1.0",
110
110
  "stylelint-prettier": "^1.2.0",
111
111
  "ts-loader": "^8.3.0",
112
+ "tsc-alias": "^1.8.3",
113
+ "tsconfig-paths": "^4.1.2",
112
114
  "typescript": "^4.4.4",
113
115
  "webpack": "^4.46.0",
114
116
  "webpack-cli": "^4.9.0"
package/release-note.md CHANGED
@@ -1,10 +1,11 @@
1
1
  # PDS-DEV-KIT-WEB Release Notes
2
- ## [v1.9.24]
2
+ ## [v1.9.25]
3
3
 
4
- ### Component
5
- * AdminList
6
- * headerRowCheckboxName이 제대로 작동할 수 있도록 수정
7
- * BasicListItem
8
- * TItleText에 wordBreak=”break_all” 추가
9
- * captionText에 wordBreak=”break_all” 추가
10
- * 내부 구조 정리
4
+ ### Package
5
+ * build 후에도 절대경로가 해석 될 수 있도록 조치
6
+ * tsc-alias tsconfig-paths 설치
7
+ * build 명령어에 && tsc-alias 추가
8
+ * .eslintrc 파일에 설정 추가
9
+
10
+ ### Color
11
+ * 컬러 키 값 23.03.17 18시 03분 기준 싱크