pds-dev-kit-web 2.2.74 → 2.2.76
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 +2 -2
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/sub/SandollFontKit/utils/getSandollFontNameInKorean.js +2 -1
- package/package.json +1 -1
- package/release-note.md +2 -2
|
@@ -119,7 +119,7 @@ declare const colorSet: {
|
|
|
119
119
|
grey300: string;
|
|
120
120
|
darkgrey300: string;
|
|
121
121
|
};
|
|
122
|
-
readonly
|
|
122
|
+
readonly PaletteColor_Dark: {
|
|
123
123
|
sys_container_background_01: string;
|
|
124
124
|
sys_container_background_02: string;
|
|
125
125
|
sys_container_background_03: string;
|
|
@@ -476,7 +476,7 @@ declare const colorSet: {
|
|
|
476
476
|
sys_cpnt_sheet_base_14: string;
|
|
477
477
|
sys_cpnt_white_opacity60: string;
|
|
478
478
|
};
|
|
479
|
-
readonly
|
|
479
|
+
readonly PaletteColor_light: {
|
|
480
480
|
sys_container_background_01: string;
|
|
481
481
|
sys_container_background_02: string;
|
|
482
482
|
sys_container_background_03: string;
|
|
@@ -1691,6 +1691,7 @@ declare const colorSet: {
|
|
|
1691
1691
|
ui_118: string;
|
|
1692
1692
|
ui_119: string;
|
|
1693
1693
|
ui_120: string;
|
|
1694
|
+
ui_121: string;
|
|
1694
1695
|
};
|
|
1695
1696
|
};
|
|
1696
1697
|
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;
|
|
@@ -41,6 +41,7 @@ var SANDOLL_NAME_MAP = {
|
|
|
41
41
|
'Sandoll Seolya': 'Sandoll 설야',
|
|
42
42
|
'Sandoll Shootdolie': 'Sandoll 슛돌이',
|
|
43
43
|
'Sandoll Smiley Sans': 'Sandoll 스마일리산스',
|
|
44
|
-
'Sandoll Totori': 'Sandoll 토토리'
|
|
44
|
+
'Sandoll Totori': 'Sandoll 토토리',
|
|
45
|
+
'Sandoll Jeongche': 'Sandoll 정체'
|
|
45
46
|
};
|
|
46
47
|
exports.default = getSandollFontNameInKorean;
|
package/package.json
CHANGED
package/release-note.md
CHANGED