pds-dev-kit-web 1.3.1 → 1.3.4
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/assets/icons/line/MinusCircle.d.ts +4 -0
- package/dist/src/common/assets/icons/line/MinusCircle.js +36 -0
- package/dist/src/common/assets/icons/line/PappType.d.ts +4 -0
- package/dist/src/common/assets/icons/line/PappType.js +37 -0
- package/dist/src/common/assets/icons/line/index.d.ts +2 -0
- package/dist/src/common/assets/icons/line/index.js +4 -0
- package/dist/src/common/styles/colorSet/PaletteColor_Dark.json +2 -1
- package/dist/src/common/styles/colorSet/PaletteColor_light.json +2 -1
- package/dist/src/common/styles/colorSet/UIColor.json +2 -1
- package/dist/src/common/styles/colorSet/index.d.ts +60 -57
- package/dist/src/common/styles/colorSet/index.js +3 -3
- package/dist/src/common/styles/colorSet/ui-type.d.ts +1 -0
- package/dist/src/desktop/components/DesktopBasicModal/DesktopBasicModal.d.ts +1 -1
- package/dist/src/desktop/components/TextLabel/TextLabel.js +1 -1
- package/dist/src/mobile/components/TextLabel/TextLabel.js +1 -1
- package/package.json +1 -1
- package/release-note.md +3 -9
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var MinusCircle = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
33
|
+
react_1.default.createElement("path", { fill: color, d: "M12.0001,2 C6.4771,2 2.0001,6.477 2.0001,12 C2.0001,17.523 6.4771,22 12.0001,22 C17.5231,22 22.0001,17.523 22.0001,12 C22.0001,6.477 17.5231,2 12.0001,2 M12.0001,3.5 C16.6871,3.5 20.5001,7.313 20.5001,12 C20.5001,16.687 16.6871,20.5 12.0001,20.5 C7.3131,20.5 3.5001,16.687 3.5001,12 C3.5001,7.313 7.3131,3.5 12.0001,3.5" }),
|
|
34
|
+
react_1.default.createElement("line", { x1: "14.899", x2: "9.101", y1: "9.101", y2: "14.899", stroke: color, strokeLinecap: "round", strokeLinejoin: "round", strokeWidth: "1.5", transform: "rotate(45 12 12)" }))));
|
|
35
|
+
};
|
|
36
|
+
exports.default = MinusCircle;
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __assign = (this && this.__assign) || function () {
|
|
3
|
+
__assign = Object.assign || function(t) {
|
|
4
|
+
for (var s, i = 1, n = arguments.length; i < n; i++) {
|
|
5
|
+
s = arguments[i];
|
|
6
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p))
|
|
7
|
+
t[p] = s[p];
|
|
8
|
+
}
|
|
9
|
+
return t;
|
|
10
|
+
};
|
|
11
|
+
return __assign.apply(this, arguments);
|
|
12
|
+
};
|
|
13
|
+
var __rest = (this && this.__rest) || function (s, e) {
|
|
14
|
+
var t = {};
|
|
15
|
+
for (var p in s) if (Object.prototype.hasOwnProperty.call(s, p) && e.indexOf(p) < 0)
|
|
16
|
+
t[p] = s[p];
|
|
17
|
+
if (s != null && typeof Object.getOwnPropertySymbols === "function")
|
|
18
|
+
for (var i = 0, p = Object.getOwnPropertySymbols(s); i < p.length; i++) {
|
|
19
|
+
if (e.indexOf(p[i]) < 0 && Object.prototype.propertyIsEnumerable.call(s, p[i]))
|
|
20
|
+
t[p[i]] = s[p[i]];
|
|
21
|
+
}
|
|
22
|
+
return t;
|
|
23
|
+
};
|
|
24
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
25
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
26
|
+
};
|
|
27
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
28
|
+
var react_1 = __importDefault(require("react"));
|
|
29
|
+
var PappType = function (_a) {
|
|
30
|
+
var color = _a.color, size = _a.size, rest = __rest(_a, ["color", "size"]);
|
|
31
|
+
return (react_1.default.createElement("svg", __assign({ width: size, height: size, viewBox: "0 0 24 24" }, rest),
|
|
32
|
+
react_1.default.createElement("svg", { xmlns: "http://www.w3.org/2000/svg", width: "24", height: "24", viewBox: "0 0 24 24" },
|
|
33
|
+
react_1.default.createElement("g", { fill: "none", fillRule: "evenodd" },
|
|
34
|
+
react_1.default.createElement("path", { fill: color, d: "M19.2878,7.0015 L4.7118,7.0015 C3.3318,7.0015 2.2118,8.1205 2.2118,9.5015 L2.2118,17.3035 C2.2118,18.6835 3.3318,19.8035 4.7118,19.8035 L19.2878,19.8035 C20.6688,19.8035 21.7878,18.6835 21.7878,17.3035 L21.7878,9.5015 C21.7878,8.1205 20.6688,7.0015 19.2878,7.0015 L19.2878,7.0015 Z M19.2878,8.5015 C19.8398,8.5015 20.2878,8.9505 20.2878,9.5015 L20.2878,17.3035 C20.2878,17.8545 19.8398,18.3035 19.2878,18.3035 L4.7118,18.3035 C4.1608,18.3035 3.7118,17.8545 3.7118,17.3035 L3.7118,9.5015 C3.7118,8.9505 4.1608,8.5015 4.7118,8.5015 L19.2878,8.5015 Z" }),
|
|
35
|
+
react_1.default.createElement("path", { stroke: color, strokeWidth: "1.5", d: "M6.1046,8.0121 L6.1046,5.5901 C6.1046,5.0321 6.5566,4.5801 7.1146,4.5801 L9.4596,4.5801 C10.0176,4.5801 10.4696,5.0321 10.4696,5.5901 L10.4696,8.0121 M13.4324,8.0121 L13.4324,5.5901 C13.4324,5.0321 13.8844,4.5801 14.4424,4.5801 L16.7874,4.5801 C17.3454,4.5801 17.7974,5.0321 17.7974,5.5901 L17.7974,8.0121" })))));
|
|
36
|
+
};
|
|
37
|
+
exports.default = PappType;
|
|
@@ -53,10 +53,12 @@ declare const lineIcons: {
|
|
|
53
53
|
readonly ic_menu: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
54
54
|
readonly ic_mic_off: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
55
55
|
readonly ic_mic_on: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
56
|
+
readonly ic_minus_circle: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
56
57
|
readonly ic_open_page: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
57
58
|
readonly ic_page_size_expand: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
58
59
|
readonly ic_page_size_reduce: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
59
60
|
readonly ic_papp: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
61
|
+
readonly ic_papp_type: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
60
62
|
readonly ic_payment: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
61
63
|
readonly ic_payment_gift: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
62
64
|
readonly ic_payment_onetime: ({ color, size, ...rest }: import("../IconType").default) => JSX.Element;
|
|
@@ -56,10 +56,12 @@ var Lock_1 = __importDefault(require("./Lock"));
|
|
|
56
56
|
var Menu_1 = __importDefault(require("./Menu"));
|
|
57
57
|
var MicOff_1 = __importDefault(require("./MicOff"));
|
|
58
58
|
var MicOn_1 = __importDefault(require("./MicOn"));
|
|
59
|
+
var MinusCircle_1 = __importDefault(require("./MinusCircle"));
|
|
59
60
|
var OpenPage_1 = __importDefault(require("./OpenPage"));
|
|
60
61
|
var PageSizeExpand_1 = __importDefault(require("./PageSizeExpand"));
|
|
61
62
|
var PageSizeReduce_1 = __importDefault(require("./PageSizeReduce"));
|
|
62
63
|
var Papp_1 = __importDefault(require("./Papp"));
|
|
64
|
+
var PappType_1 = __importDefault(require("./PappType"));
|
|
63
65
|
var Payment_1 = __importDefault(require("./Payment"));
|
|
64
66
|
var PaymentGift_1 = __importDefault(require("./PaymentGift"));
|
|
65
67
|
var PaymentOnetime_1 = __importDefault(require("./PaymentOnetime"));
|
|
@@ -182,10 +184,12 @@ var lineIcons = {
|
|
|
182
184
|
ic_menu: Menu_1.default,
|
|
183
185
|
ic_mic_off: MicOff_1.default,
|
|
184
186
|
ic_mic_on: MicOn_1.default,
|
|
187
|
+
ic_minus_circle: MinusCircle_1.default,
|
|
185
188
|
ic_open_page: OpenPage_1.default,
|
|
186
189
|
ic_page_size_expand: PageSizeExpand_1.default,
|
|
187
190
|
ic_page_size_reduce: PageSizeReduce_1.default,
|
|
188
191
|
ic_papp: Papp_1.default,
|
|
192
|
+
ic_papp_type: PappType_1.default,
|
|
189
193
|
ic_payment: Payment_1.default,
|
|
190
194
|
ic_payment_gift: PaymentGift_1.default,
|
|
191
195
|
ic_payment_onetime: PaymentOnetime_1.default,
|
|
@@ -139,5 +139,6 @@
|
|
|
139
139
|
"sys_gradient_base_01_opacity75": "grey950/opacity75",
|
|
140
140
|
"sys_gradient_base_01_opacity40": "grey950/opacity40",
|
|
141
141
|
"sys_widget_black": "black",
|
|
142
|
-
"usr_temp_primary_01": "darkblue500"
|
|
142
|
+
"usr_temp_primary_01": "darkblue500",
|
|
143
|
+
"sys_cpnt_sheet_base_02_opacity50": "darkgrey50/opacity50"
|
|
143
144
|
}
|
|
@@ -139,5 +139,6 @@
|
|
|
139
139
|
"sys_gradient_base_01_opacity75": "white/opacity75",
|
|
140
140
|
"sys_gradient_base_01_opacity40": "white/opacity40",
|
|
141
141
|
"sys_widget_black": "black",
|
|
142
|
-
"usr_temp_primary_01": "blue500"
|
|
142
|
+
"usr_temp_primary_01": "blue500",
|
|
143
|
+
"sys_cpnt_sheet_base_02_opacity50": "grey50/opacity50"
|
|
143
144
|
}
|
|
@@ -469,5 +469,6 @@
|
|
|
469
469
|
"ui_cpnt_pg_gradient_04": "sys_gradient_base_01_opacity75",
|
|
470
470
|
"ui_cpnt_pg_gradient_05": "sys_gradient_base_01_opacity40",
|
|
471
471
|
"ui_cpnt_mask_base": "sys_component_base_02",
|
|
472
|
-
"ui_temp_usr_primary_01": "usr_temp_primary_01"
|
|
472
|
+
"ui_temp_usr_primary_01": "usr_temp_primary_01",
|
|
473
|
+
"ui_cpnt_sheet_base_02_opacity50": "sys_cpnt_sheet_base_02_opacity50"
|
|
473
474
|
}
|
|
@@ -141,6 +141,7 @@ declare const colorSet: {
|
|
|
141
141
|
sys_gradient_base_01_opacity40: string;
|
|
142
142
|
sys_widget_black: string;
|
|
143
143
|
usr_temp_primary_01: string;
|
|
144
|
+
sys_cpnt_sheet_base_02_opacity50: string;
|
|
144
145
|
};
|
|
145
146
|
readonly PaletteColor_light: {
|
|
146
147
|
sys_container_background_01: string;
|
|
@@ -284,63 +285,7 @@ declare const colorSet: {
|
|
|
284
285
|
sys_gradient_base_01_opacity40: string;
|
|
285
286
|
sys_widget_black: string;
|
|
286
287
|
usr_temp_primary_01: string;
|
|
287
|
-
|
|
288
|
-
readonly SemanticColor: {
|
|
289
|
-
blue500: string;
|
|
290
|
-
blue700: string;
|
|
291
|
-
blue300: string;
|
|
292
|
-
green700: string;
|
|
293
|
-
green500: string;
|
|
294
|
-
green300: string;
|
|
295
|
-
red500: string;
|
|
296
|
-
grey900: string;
|
|
297
|
-
grey500: string;
|
|
298
|
-
grey400: string;
|
|
299
|
-
grey100: string;
|
|
300
|
-
grey50: string;
|
|
301
|
-
white: string;
|
|
302
|
-
black: string;
|
|
303
|
-
darkblue500: string;
|
|
304
|
-
grey950: string;
|
|
305
|
-
darkgrey900: string;
|
|
306
|
-
darkgrey500: string;
|
|
307
|
-
darkgrey400: string;
|
|
308
|
-
darkgrey100: string;
|
|
309
|
-
darkgrey50: string;
|
|
310
|
-
darkred500: string;
|
|
311
|
-
darkgreen700: string;
|
|
312
|
-
orange500: string;
|
|
313
|
-
darkorange500: string;
|
|
314
|
-
opacity00: string;
|
|
315
|
-
opacity20: string;
|
|
316
|
-
opacity30: string;
|
|
317
|
-
opacity65: string;
|
|
318
|
-
darkgreen500: string;
|
|
319
|
-
grey70: string;
|
|
320
|
-
navy500: string;
|
|
321
|
-
lightgreen500: string;
|
|
322
|
-
pink500: string;
|
|
323
|
-
darkgrey70: string;
|
|
324
|
-
darknavy500: string;
|
|
325
|
-
darkpink500: string;
|
|
326
|
-
darklightgreen500: string;
|
|
327
|
-
opacity10: string;
|
|
328
|
-
grey600: string;
|
|
329
|
-
darkgrey600: string;
|
|
330
|
-
skyblue500: string;
|
|
331
|
-
skyblue300: string;
|
|
332
|
-
pink300: string;
|
|
333
|
-
lightpink500: string;
|
|
334
|
-
darkblue300: string;
|
|
335
|
-
darkblue700: string;
|
|
336
|
-
darkgreen300: string;
|
|
337
|
-
darkskyblue500: string;
|
|
338
|
-
navy100: string;
|
|
339
|
-
darknavy100: string;
|
|
340
|
-
opacity80: string;
|
|
341
|
-
opacity50: string;
|
|
342
|
-
grey30: string;
|
|
343
|
-
opacity95: string;
|
|
288
|
+
sys_cpnt_sheet_base_02_opacity50: string;
|
|
344
289
|
};
|
|
345
290
|
readonly UIColor: {
|
|
346
291
|
ui_cpnt_button_fill_base_primary: string;
|
|
@@ -814,6 +759,64 @@ declare const colorSet: {
|
|
|
814
759
|
ui_cpnt_pg_gradient_05: string;
|
|
815
760
|
ui_cpnt_mask_base: string;
|
|
816
761
|
ui_temp_usr_primary_01: string;
|
|
762
|
+
ui_cpnt_sheet_base_02_opacity50: string;
|
|
763
|
+
};
|
|
764
|
+
readonly SemanticColor: {
|
|
765
|
+
blue500: string;
|
|
766
|
+
blue700: string;
|
|
767
|
+
blue300: string;
|
|
768
|
+
green700: string;
|
|
769
|
+
green500: string;
|
|
770
|
+
green300: string;
|
|
771
|
+
red500: string;
|
|
772
|
+
grey900: string;
|
|
773
|
+
grey500: string;
|
|
774
|
+
grey400: string;
|
|
775
|
+
grey100: string;
|
|
776
|
+
grey50: string;
|
|
777
|
+
white: string;
|
|
778
|
+
black: string;
|
|
779
|
+
darkblue500: string;
|
|
780
|
+
grey950: string;
|
|
781
|
+
darkgrey900: string;
|
|
782
|
+
darkgrey500: string;
|
|
783
|
+
darkgrey400: string;
|
|
784
|
+
darkgrey100: string;
|
|
785
|
+
darkgrey50: string;
|
|
786
|
+
darkred500: string;
|
|
787
|
+
darkgreen700: string;
|
|
788
|
+
orange500: string;
|
|
789
|
+
darkorange500: string;
|
|
790
|
+
opacity00: string;
|
|
791
|
+
opacity20: string;
|
|
792
|
+
opacity30: string;
|
|
793
|
+
opacity65: string;
|
|
794
|
+
darkgreen500: string;
|
|
795
|
+
grey70: string;
|
|
796
|
+
navy500: string;
|
|
797
|
+
lightgreen500: string;
|
|
798
|
+
pink500: string;
|
|
799
|
+
darkgrey70: string;
|
|
800
|
+
darknavy500: string;
|
|
801
|
+
darkpink500: string;
|
|
802
|
+
darklightgreen500: string;
|
|
803
|
+
opacity10: string;
|
|
804
|
+
grey600: string;
|
|
805
|
+
darkgrey600: string;
|
|
806
|
+
skyblue500: string;
|
|
807
|
+
skyblue300: string;
|
|
808
|
+
pink300: string;
|
|
809
|
+
lightpink500: string;
|
|
810
|
+
darkblue300: string;
|
|
811
|
+
darkblue700: string;
|
|
812
|
+
darkgreen300: string;
|
|
813
|
+
darkskyblue500: string;
|
|
814
|
+
navy100: string;
|
|
815
|
+
darknavy100: string;
|
|
816
|
+
opacity80: string;
|
|
817
|
+
opacity50: string;
|
|
818
|
+
grey30: string;
|
|
819
|
+
opacity95: string;
|
|
817
820
|
};
|
|
818
821
|
};
|
|
819
822
|
export default colorSet;
|
|
@@ -6,12 +6,12 @@ Object.defineProperty(exports, "__esModule", { value: true });
|
|
|
6
6
|
/* eslint-disable import/order */
|
|
7
7
|
var PaletteColor_Dark_json_1 = __importDefault(require("./PaletteColor_Dark.json"));
|
|
8
8
|
var PaletteColor_light_json_1 = __importDefault(require("./PaletteColor_light.json"));
|
|
9
|
-
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
10
9
|
var UIColor_json_1 = __importDefault(require("./UIColor.json"));
|
|
10
|
+
var SemanticColor_json_1 = __importDefault(require("./SemanticColor.json"));
|
|
11
11
|
var colorSet = {
|
|
12
12
|
PaletteColor_Dark: PaletteColor_Dark_json_1.default,
|
|
13
13
|
PaletteColor_light: PaletteColor_light_json_1.default,
|
|
14
|
-
|
|
15
|
-
|
|
14
|
+
UIColor: UIColor_json_1.default,
|
|
15
|
+
SemanticColor: SemanticColor_json_1.default
|
|
16
16
|
};
|
|
17
17
|
exports.default = colorSet;
|
|
@@ -7,7 +7,7 @@ declare type DesktopBasicModalProps = {
|
|
|
7
7
|
mBtn1Text: PDSTextType;
|
|
8
8
|
mBtn2Text?: PDSTextType;
|
|
9
9
|
mBtn3Text?: PDSTextType;
|
|
10
|
-
mBtn1State
|
|
10
|
+
mBtn1State?: 'normal' | 'disabled';
|
|
11
11
|
mBtn2State?: 'normal' | 'disabled';
|
|
12
12
|
mBtn3State?: 'normal' | 'disabled';
|
|
13
13
|
size?: 'large' | 'medium' | 'small';
|
|
@@ -259,7 +259,7 @@ var ellipsisStyle = (0, styled_components_1.css)(templateObject_30 || (templateO
|
|
|
259
259
|
return lineLimit;
|
|
260
260
|
});
|
|
261
261
|
var userSelectModeStyle = (0, styled_components_1.css)(templateObject_31 || (templateObject_31 = __makeTemplateObject(["\n -ms-user-select: none;\n -moz-user-select: -moz-none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n"], ["\n -ms-user-select: none;\n -moz-user-select: -moz-none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n"])));
|
|
262
|
-
var S_TextLabel = styled_components_1.default.div(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break:
|
|
262
|
+
var S_TextLabel = styled_components_1.default.div(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"], ["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"])), function (_a) {
|
|
263
263
|
var textAlign = _a.textAlign;
|
|
264
264
|
return textAlign;
|
|
265
265
|
}, function (_a) {
|
|
@@ -259,7 +259,7 @@ var ellipsisStyle = (0, styled_components_1.css)(templateObject_30 || (templateO
|
|
|
259
259
|
return lineLimit;
|
|
260
260
|
});
|
|
261
261
|
var userSelectModeStyle = (0, styled_components_1.css)(templateObject_31 || (templateObject_31 = __makeTemplateObject(["\n -ms-user-select: none;\n -moz-user-select: -moz-none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n"], ["\n -ms-user-select: none;\n -moz-user-select: -moz-none;\n -khtml-user-select: none;\n -webkit-user-select: none;\n user-select: none;\n"])));
|
|
262
|
-
var S_TextLabel = styled_components_1.default.div(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break:
|
|
262
|
+
var S_TextLabel = styled_components_1.default.div(templateObject_32 || (templateObject_32 = __makeTemplateObject(["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"], ["\n box-sizing: border-box;\n text-align: ", ";\n white-space: pre-wrap;\n word-break: keep-all;\n overflow-wrap: break-word;\n hyphens: auto;\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n\n ", ";\n"])), function (_a) {
|
|
263
263
|
var textAlign = _a.textAlign;
|
|
264
264
|
return textAlign;
|
|
265
265
|
}, function (_a) {
|
package/package.json
CHANGED
package/release-note.md
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
# PDS-DEV-KIT-WEB Release Notes
|
|
2
|
-
## [v1.3.
|
|
2
|
+
## [v1.3.4]
|
|
3
3
|
|
|
4
|
-
###
|
|
5
|
-
*
|
|
6
|
-
* mBtn1State, mBtn2State, mBtn3State 추가
|
|
7
|
-
* 전체 높이와 Body부분 높이 관련 css 수정
|
|
8
|
-
* TextFieldBase
|
|
9
|
-
* enterSubmitMode prop 추가
|
|
10
|
-
* TextField
|
|
11
|
-
* enterSubmitMode prop 추가
|
|
4
|
+
### Color
|
|
5
|
+
* 컬러 키 값 22.04.18 19시 03분 기준 싱크
|