@xaypay/tui 0.0.99 → 0.0.101
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/index.es.js +39 -28
- package/dist/index.js +39 -28
- package/package.json +1 -1
- package/src/components/icon/Next.js +4 -5
- package/src/components/icon/Prev.js +4 -5
- package/src/components/input/index.js +20 -14
- package/src/components/select/index.js +3 -4
- package/src/stories/configuration.stories.mdx +1 -0
- package/tui.config.js +2 -2
package/dist/index.es.js
CHANGED
|
@@ -323,7 +323,6 @@ styleInject(css_248z$d);
|
|
|
323
323
|
const SvgNext = ({
|
|
324
324
|
title,
|
|
325
325
|
titleId,
|
|
326
|
-
fillColor,
|
|
327
326
|
...props
|
|
328
327
|
}) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
329
328
|
width: "24",
|
|
@@ -334,17 +333,19 @@ const SvgNext = ({
|
|
|
334
333
|
"aria-labelledby": titleId
|
|
335
334
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
336
335
|
id: titleId
|
|
337
|
-
}, title) : null, /*#__PURE__*/React.createElement("
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
fill:
|
|
336
|
+
}, title) : null, /*#__PURE__*/React.createElement("circle", {
|
|
337
|
+
cx: 12,
|
|
338
|
+
cy: 12,
|
|
339
|
+
r: 12,
|
|
340
|
+
fill: "#fff"
|
|
341
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
342
|
+
d: "M15.598 12.01c0 .2-.07.393-.197.547l-4.284 5.134a.858.858 0 0 1-1.319-1.095l3.838-4.587-3.7-4.586a.855.855 0 0 1 .128-1.206.857.857 0 0 1 1.25.12l4.138 5.133a.855.855 0 0 1 .146.54Z",
|
|
343
|
+
fill: "#3C393E"
|
|
342
344
|
}));
|
|
343
345
|
|
|
344
346
|
const SvgPrev = ({
|
|
345
347
|
title,
|
|
346
348
|
titleId,
|
|
347
|
-
fillColor,
|
|
348
349
|
...props
|
|
349
350
|
}) => /*#__PURE__*/React.createElement("svg", _extends({
|
|
350
351
|
width: "24",
|
|
@@ -355,11 +356,15 @@ const SvgPrev = ({
|
|
|
355
356
|
"aria-labelledby": titleId
|
|
356
357
|
}, props), title ? /*#__PURE__*/React.createElement("title", {
|
|
357
358
|
id: titleId
|
|
358
|
-
}, title) : null, /*#__PURE__*/React.createElement("
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
359
|
+
}, title) : null, /*#__PURE__*/React.createElement("circle", {
|
|
360
|
+
cx: 12,
|
|
361
|
+
cy: 12,
|
|
362
|
+
r: 12,
|
|
363
|
+
transform: "rotate(180 12 12)",
|
|
364
|
+
fill: "#fff"
|
|
365
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
366
|
+
d: "M8.402 11.99c0-.2.07-.393.197-.547l4.284-5.134a.858.858 0 0 1 1.319 1.095l-3.838 4.587 3.7 4.586a.856.856 0 0 1-.128 1.206.856.856 0 0 1-1.25-.12L8.547 12.53a.855.855 0 0 1-.146-.54Z",
|
|
367
|
+
fill: "#3C393E"
|
|
363
368
|
}));
|
|
364
369
|
|
|
365
370
|
const SvgCloseIcon = ({
|
|
@@ -796,7 +801,7 @@ const Input = ({
|
|
|
796
801
|
}
|
|
797
802
|
}
|
|
798
803
|
if (type === 'number') {
|
|
799
|
-
const regNum = /^\d+(\.)?(
|
|
804
|
+
const regNum = /^\d+(\.)?(^\d+)?$/;
|
|
800
805
|
if (!regNum.test(currentValue)) {
|
|
801
806
|
const newStr = currentValue.replace(/[^\d+]/g, '');
|
|
802
807
|
setInnerValue(newStr);
|
|
@@ -905,18 +910,24 @@ const Input = ({
|
|
|
905
910
|
} else {
|
|
906
911
|
setInnerValue(value);
|
|
907
912
|
if (type === 'tel') {
|
|
908
|
-
|
|
909
|
-
|
|
910
|
-
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
913
|
+
// TODO: discussion
|
|
914
|
+
// if (!phoneNumberRegex.test(value)) {
|
|
915
|
+
// if (value === '') {
|
|
916
|
+
// setInnerErrorMessage('');
|
|
917
|
+
// } else {
|
|
918
|
+
// telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
919
|
+
// }
|
|
920
|
+
// } else {
|
|
921
|
+
// if (value.length < 8) {
|
|
922
|
+
// telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
923
|
+
// } else if (value.length > 8) {
|
|
924
|
+
// setInnerValue(value.substr(0, 8));
|
|
925
|
+
// }
|
|
926
|
+
// }
|
|
927
|
+
if (value.length <= 8) {
|
|
928
|
+
setInnerValue(value);
|
|
914
929
|
} else {
|
|
915
|
-
|
|
916
|
-
telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
917
|
-
} else if (value.length > 8) {
|
|
918
|
-
setInnerValue(value.substr(0, 8));
|
|
919
|
-
}
|
|
930
|
+
setInnerValue(value.substr(0, 8));
|
|
920
931
|
}
|
|
921
932
|
}
|
|
922
933
|
if (type === 'number') {
|
|
@@ -979,7 +990,7 @@ const Input = ({
|
|
|
979
990
|
}
|
|
980
991
|
}
|
|
981
992
|
} else if (floatToFix === 0) {
|
|
982
|
-
const floatNumParts = typeof value === 'string' ?
|
|
993
|
+
const floatNumParts = typeof value === 'string' ? value.split('.') : value;
|
|
983
994
|
const int = floatNumParts[0];
|
|
984
995
|
if (floatNumParts && floatNumParts.length > 0 && floatToFix === 0) {
|
|
985
996
|
setInnerValue(`${int}`);
|
|
@@ -1588,7 +1599,7 @@ const Select = ({
|
|
|
1588
1599
|
}
|
|
1589
1600
|
}) : defaultOption ? defaultOption : ''), /*#__PURE__*/React__default.createElement("div", {
|
|
1590
1601
|
className: `${styles$8['select-content-top-icon']}`
|
|
1591
|
-
}, !disabled && multiple && newSelected.length > 1 && /*#__PURE__*/React__default.createElement("span", null, newSelected.length), (showCloseIcon
|
|
1602
|
+
}, !disabled && multiple && newSelected.length > 1 && /*#__PURE__*/React__default.createElement("span", null, newSelected.length), (showCloseIcon || configStyles.SELECT.showCloseIcon) && !disabled && newSelected && newSelected.length > 0 && /*#__PURE__*/React__default.createElement("div", {
|
|
1592
1603
|
className: `${styles$8['close-icon']}`,
|
|
1593
1604
|
onClick: disabled ? _ => _ : handleClearSelect,
|
|
1594
1605
|
style: {
|
|
@@ -1625,10 +1636,10 @@ const Select = ({
|
|
|
1625
1636
|
padding: optionItemPadding ? optionItemPadding : configStyles.SELECT.optionItemPadding,
|
|
1626
1637
|
fontSize: optionItemFontSize ? optionItemFontSize : configStyles.SELECT.optionItemFontSize,
|
|
1627
1638
|
boxSizing: optionItemBoxSizing ? optionItemBoxSizing : configStyles.SELECT.optionItemBoxSizing,
|
|
1628
|
-
minHeight:
|
|
1639
|
+
minHeight: optionItemMinHeight ? optionItemMinHeight : configStyles.SELECT.optionItemMinHeight,
|
|
1629
1640
|
fontWeight: optionItemFontWeight ? optionItemFontWeight : configStyles.SELECT.optionItemFontWeight,
|
|
1630
1641
|
lineHeight: dots || configStyles.SELECT.dots ? '46px' : optionItemLineHeight ? optionItemLineHeight : configStyles.SELECT.optionItemLineHeight,
|
|
1631
|
-
marginBottom:
|
|
1642
|
+
marginBottom: optionItemMarginBottom ? optionItemMarginBottom : configStyles.SELECT.optionItemMarginBottom,
|
|
1632
1643
|
backgroundColor: optionItemBackgroudColor ? optionItemBackgroudColor : configStyles.SELECT.optionItemBackgroudColor
|
|
1633
1644
|
}
|
|
1634
1645
|
}, multiple && multipleCheckbox ? /*#__PURE__*/React__default.createElement(SingleCheckbox, {
|
package/dist/index.js
CHANGED
|
@@ -353,7 +353,6 @@ styleInject(css_248z$d);
|
|
|
353
353
|
const SvgNext = ({
|
|
354
354
|
title,
|
|
355
355
|
titleId,
|
|
356
|
-
fillColor,
|
|
357
356
|
...props
|
|
358
357
|
}) => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
359
358
|
width: "24",
|
|
@@ -364,17 +363,19 @@ const SvgNext = ({
|
|
|
364
363
|
"aria-labelledby": titleId
|
|
365
364
|
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
366
365
|
id: titleId
|
|
367
|
-
}, title) : null, /*#__PURE__*/React__namespace.createElement("
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
fill:
|
|
366
|
+
}, title) : null, /*#__PURE__*/React__namespace.createElement("circle", {
|
|
367
|
+
cx: 12,
|
|
368
|
+
cy: 12,
|
|
369
|
+
r: 12,
|
|
370
|
+
fill: "#fff"
|
|
371
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
372
|
+
d: "M15.598 12.01c0 .2-.07.393-.197.547l-4.284 5.134a.858.858 0 0 1-1.319-1.095l3.838-4.587-3.7-4.586a.855.855 0 0 1 .128-1.206.857.857 0 0 1 1.25.12l4.138 5.133a.855.855 0 0 1 .146.54Z",
|
|
373
|
+
fill: "#3C393E"
|
|
372
374
|
}));
|
|
373
375
|
|
|
374
376
|
const SvgPrev = ({
|
|
375
377
|
title,
|
|
376
378
|
titleId,
|
|
377
|
-
fillColor,
|
|
378
379
|
...props
|
|
379
380
|
}) => /*#__PURE__*/React__namespace.createElement("svg", _extends({
|
|
380
381
|
width: "24",
|
|
@@ -385,11 +386,15 @@ const SvgPrev = ({
|
|
|
385
386
|
"aria-labelledby": titleId
|
|
386
387
|
}, props), title ? /*#__PURE__*/React__namespace.createElement("title", {
|
|
387
388
|
id: titleId
|
|
388
|
-
}, title) : null, /*#__PURE__*/React__namespace.createElement("
|
|
389
|
-
|
|
390
|
-
|
|
391
|
-
|
|
392
|
-
|
|
389
|
+
}, title) : null, /*#__PURE__*/React__namespace.createElement("circle", {
|
|
390
|
+
cx: 12,
|
|
391
|
+
cy: 12,
|
|
392
|
+
r: 12,
|
|
393
|
+
transform: "rotate(180 12 12)",
|
|
394
|
+
fill: "#fff"
|
|
395
|
+
}), /*#__PURE__*/React__namespace.createElement("path", {
|
|
396
|
+
d: "M8.402 11.99c0-.2.07-.393.197-.547l4.284-5.134a.858.858 0 0 1 1.319 1.095l-3.838 4.587 3.7 4.586a.856.856 0 0 1-.128 1.206.856.856 0 0 1-1.25-.12L8.547 12.53a.855.855 0 0 1-.146-.54Z",
|
|
397
|
+
fill: "#3C393E"
|
|
393
398
|
}));
|
|
394
399
|
|
|
395
400
|
const SvgCloseIcon = ({
|
|
@@ -826,7 +831,7 @@ const Input = ({
|
|
|
826
831
|
}
|
|
827
832
|
}
|
|
828
833
|
if (type === 'number') {
|
|
829
|
-
const regNum = /^\d+(\.)?(
|
|
834
|
+
const regNum = /^\d+(\.)?(^\d+)?$/;
|
|
830
835
|
if (!regNum.test(currentValue)) {
|
|
831
836
|
const newStr = currentValue.replace(/[^\d+]/g, '');
|
|
832
837
|
setInnerValue(newStr);
|
|
@@ -935,18 +940,24 @@ const Input = ({
|
|
|
935
940
|
} else {
|
|
936
941
|
setInnerValue(value);
|
|
937
942
|
if (type === 'tel') {
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
943
|
+
// TODO: discussion
|
|
944
|
+
// if (!phoneNumberRegex.test(value)) {
|
|
945
|
+
// if (value === '') {
|
|
946
|
+
// setInnerErrorMessage('');
|
|
947
|
+
// } else {
|
|
948
|
+
// telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
949
|
+
// }
|
|
950
|
+
// } else {
|
|
951
|
+
// if (value.length < 8) {
|
|
952
|
+
// telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
953
|
+
// } else if (value.length > 8) {
|
|
954
|
+
// setInnerValue(value.substr(0, 8));
|
|
955
|
+
// }
|
|
956
|
+
// }
|
|
957
|
+
if (value.length <= 8) {
|
|
958
|
+
setInnerValue(value);
|
|
944
959
|
} else {
|
|
945
|
-
|
|
946
|
-
telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
947
|
-
} else if (value.length > 8) {
|
|
948
|
-
setInnerValue(value.substr(0, 8));
|
|
949
|
-
}
|
|
960
|
+
setInnerValue(value.substr(0, 8));
|
|
950
961
|
}
|
|
951
962
|
}
|
|
952
963
|
if (type === 'number') {
|
|
@@ -1009,7 +1020,7 @@ const Input = ({
|
|
|
1009
1020
|
}
|
|
1010
1021
|
}
|
|
1011
1022
|
} else if (floatToFix === 0) {
|
|
1012
|
-
const floatNumParts = typeof value === 'string' ?
|
|
1023
|
+
const floatNumParts = typeof value === 'string' ? value.split('.') : value;
|
|
1013
1024
|
const int = floatNumParts[0];
|
|
1014
1025
|
if (floatNumParts && floatNumParts.length > 0 && floatToFix === 0) {
|
|
1015
1026
|
setInnerValue(`${int}`);
|
|
@@ -1618,7 +1629,7 @@ const Select = ({
|
|
|
1618
1629
|
}
|
|
1619
1630
|
}) : defaultOption ? defaultOption : ''), /*#__PURE__*/React__default["default"].createElement("div", {
|
|
1620
1631
|
className: `${styles$8['select-content-top-icon']}`
|
|
1621
|
-
}, !disabled && multiple && newSelected.length > 1 && /*#__PURE__*/React__default["default"].createElement("span", null, newSelected.length), (showCloseIcon
|
|
1632
|
+
}, !disabled && multiple && newSelected.length > 1 && /*#__PURE__*/React__default["default"].createElement("span", null, newSelected.length), (showCloseIcon || configStyles.SELECT.showCloseIcon) && !disabled && newSelected && newSelected.length > 0 && /*#__PURE__*/React__default["default"].createElement("div", {
|
|
1622
1633
|
className: `${styles$8['close-icon']}`,
|
|
1623
1634
|
onClick: disabled ? _ => _ : handleClearSelect,
|
|
1624
1635
|
style: {
|
|
@@ -1655,10 +1666,10 @@ const Select = ({
|
|
|
1655
1666
|
padding: optionItemPadding ? optionItemPadding : configStyles.SELECT.optionItemPadding,
|
|
1656
1667
|
fontSize: optionItemFontSize ? optionItemFontSize : configStyles.SELECT.optionItemFontSize,
|
|
1657
1668
|
boxSizing: optionItemBoxSizing ? optionItemBoxSizing : configStyles.SELECT.optionItemBoxSizing,
|
|
1658
|
-
minHeight:
|
|
1669
|
+
minHeight: optionItemMinHeight ? optionItemMinHeight : configStyles.SELECT.optionItemMinHeight,
|
|
1659
1670
|
fontWeight: optionItemFontWeight ? optionItemFontWeight : configStyles.SELECT.optionItemFontWeight,
|
|
1660
1671
|
lineHeight: dots || configStyles.SELECT.dots ? '46px' : optionItemLineHeight ? optionItemLineHeight : configStyles.SELECT.optionItemLineHeight,
|
|
1661
|
-
marginBottom:
|
|
1672
|
+
marginBottom: optionItemMarginBottom ? optionItemMarginBottom : configStyles.SELECT.optionItemMarginBottom,
|
|
1662
1673
|
backgroundColor: optionItemBackgroudColor ? optionItemBackgroudColor : configStyles.SELECT.optionItemBackgroudColor
|
|
1663
1674
|
}
|
|
1664
1675
|
}, multiple && multipleCheckbox ? /*#__PURE__*/React__default["default"].createElement(SingleCheckbox, {
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
const SvgNext = ({ title, titleId,
|
|
2
|
+
const SvgNext = ({ title, titleId, ...props }) => (
|
|
3
3
|
<svg
|
|
4
4
|
width="24"
|
|
5
5
|
height="24"
|
|
@@ -10,11 +10,10 @@ const SvgNext = ({ title, titleId, fillColor, ...props }) => (
|
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
13
|
+
<circle cx={12} cy={12} r={12} fill="#fff" />
|
|
13
14
|
<path
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
d="M12 24c6.627 0 12-5.373 12-12S18.627 0 12 0 0 5.373 0 12s5.373 12 12 12Zm3.4-11.443a.854.854 0 0 0 .198-.548.855.855 0 0 0-.146-.539l-4.137-5.134a.857.857 0 0 0-1.251-.12.856.856 0 0 0-.129 1.207l3.701 4.586-3.838 4.587a.856.856 0 0 0 .739 1.4.858.858 0 0 0 .58-.305l4.284-5.134Z"
|
|
17
|
-
fill={fillColor ? fillColor : '#fff'}
|
|
15
|
+
d="M15.598 12.01c0 .2-.07.393-.197.547l-4.284 5.134a.858.858 0 0 1-1.319-1.095l3.838-4.587-3.7-4.586a.855.855 0 0 1 .128-1.206.857.857 0 0 1 1.25.12l4.138 5.133a.855.855 0 0 1 .146.54Z"
|
|
16
|
+
fill="#3C393E"
|
|
18
17
|
/>
|
|
19
18
|
</svg>
|
|
20
19
|
);
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as React from "react";
|
|
2
|
-
const SvgPrev = ({ title, titleId,
|
|
2
|
+
const SvgPrev = ({ title, titleId, ...props }) => (
|
|
3
3
|
<svg
|
|
4
4
|
width="24"
|
|
5
5
|
height="24"
|
|
@@ -10,11 +10,10 @@ const SvgPrev = ({ title, titleId, fillColor, ...props }) => (
|
|
|
10
10
|
{...props}
|
|
11
11
|
>
|
|
12
12
|
{title ? <title id={titleId}>{title}</title> : null}
|
|
13
|
+
<circle cx={12} cy={12} r={12} transform="rotate(180 12 12)" fill="#fff" />
|
|
13
14
|
<path
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
d="M12 0C5.373 0 0 5.373 0 12s5.373 12 12 12 12-5.373 12-12S18.627 0 12 0ZM8.6 11.443a.855.855 0 0 0-.198.548c-.013.19.038.38.146.539l4.137 5.133a.857.857 0 0 0 1.251.12.856.856 0 0 0 .129-1.206l-3.701-4.586 3.838-4.587a.856.856 0 0 0-.739-1.4.858.858 0 0 0-.58.305l-4.284 5.134Z"
|
|
17
|
-
fill={fillColor ? fillColor : '#fff'}
|
|
15
|
+
d="M8.402 11.99c0-.2.07-.393.197-.547l4.284-5.134a.858.858 0 0 1 1.319 1.095l-3.838 4.587 3.7 4.586a.856.856 0 0 1-.128 1.206.856.856 0 0 1-1.25-.12L8.547 12.53a.855.855 0 0 1-.146-.54Z"
|
|
16
|
+
fill="#3C393E"
|
|
18
17
|
/>
|
|
19
18
|
</svg>
|
|
20
19
|
);
|
|
@@ -136,7 +136,7 @@ export const Input = ({
|
|
|
136
136
|
}
|
|
137
137
|
|
|
138
138
|
if (type === 'number') {
|
|
139
|
-
const regNum = /^\d+(\.)?(
|
|
139
|
+
const regNum = /^\d+(\.)?(^\d+)?$/;
|
|
140
140
|
if (!regNum.test(currentValue)) {
|
|
141
141
|
const newStr = currentValue.replace(/[^\d+]/g, '');
|
|
142
142
|
setInnerValue(newStr);
|
|
@@ -254,20 +254,26 @@ export const Input = ({
|
|
|
254
254
|
} else {
|
|
255
255
|
setInnerValue(value);
|
|
256
256
|
if (type === 'tel') {
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
257
|
+
// TODO: discussion
|
|
258
|
+
// if (!phoneNumberRegex.test(value)) {
|
|
259
|
+
// if (value === '') {
|
|
260
|
+
// setInnerErrorMessage('');
|
|
261
|
+
// } else {
|
|
262
|
+
// telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
263
|
+
// }
|
|
264
|
+
// } else {
|
|
265
|
+
// if (value.length < 8) {
|
|
266
|
+
// telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
267
|
+
// } else if (value.length > 8) {
|
|
268
|
+
// setInnerValue(value.substr(0, 8));
|
|
269
|
+
// }
|
|
270
|
+
// }
|
|
271
|
+
if (value.length <= 8) {
|
|
272
|
+
setInnerValue(value);
|
|
263
273
|
} else {
|
|
264
|
-
|
|
265
|
-
telErrorMessage ? setInnerErrorMessage(telErrorMessage) : setInnerErrorMessage(configStyles.INPUT.telErrorMessage);
|
|
266
|
-
} else if (value.length > 8) {
|
|
267
|
-
setInnerValue(value.substr(0, 8));
|
|
268
|
-
}
|
|
274
|
+
setInnerValue(value.substr(0, 8));
|
|
269
275
|
}
|
|
270
|
-
|
|
276
|
+
}
|
|
271
277
|
|
|
272
278
|
if (type === 'number') {
|
|
273
279
|
const regNum = /^\d+(\.)?(\d+)?$/;
|
|
@@ -330,7 +336,7 @@ export const Input = ({
|
|
|
330
336
|
}
|
|
331
337
|
}
|
|
332
338
|
} else if (floatToFix === 0) {
|
|
333
|
-
const floatNumParts = typeof value === 'string' ?
|
|
339
|
+
const floatNumParts = typeof value === 'string' ? value.split('.') : value;
|
|
334
340
|
const int = floatNumParts[0];
|
|
335
341
|
if (floatNumParts && floatNumParts.length > 0 && floatToFix === 0) {
|
|
336
342
|
setInnerValue(`${int}`);
|
|
@@ -270,7 +270,7 @@ export const Select = ({
|
|
|
270
270
|
!disabled && multiple && newSelected.length > 1 && <span>{newSelected.length}</span>
|
|
271
271
|
}
|
|
272
272
|
|
|
273
|
-
{(showCloseIcon
|
|
273
|
+
{(showCloseIcon || configStyles.SELECT.showCloseIcon) && !disabled && newSelected && newSelected.length > 0 &&
|
|
274
274
|
<div
|
|
275
275
|
className={`${styles['close-icon']}`}
|
|
276
276
|
onClick={disabled ? _ => _ : handleClearSelect}
|
|
@@ -326,16 +326,15 @@ export const Select = ({
|
|
|
326
326
|
padding: optionItemPadding ? optionItemPadding : configStyles.SELECT.optionItemPadding,
|
|
327
327
|
fontSize: optionItemFontSize ? optionItemFontSize : configStyles.SELECT.optionItemFontSize,
|
|
328
328
|
boxSizing: optionItemBoxSizing ? optionItemBoxSizing : configStyles.SELECT.optionItemBoxSizing,
|
|
329
|
-
minHeight:
|
|
329
|
+
minHeight: optionItemMinHeight ? optionItemMinHeight : configStyles.SELECT.optionItemMinHeight,
|
|
330
330
|
fontWeight: optionItemFontWeight ? optionItemFontWeight : configStyles.SELECT.optionItemFontWeight,
|
|
331
331
|
lineHeight: dots || configStyles.SELECT.dots ? '46px' : optionItemLineHeight ? optionItemLineHeight : configStyles.SELECT.optionItemLineHeight,
|
|
332
|
-
marginBottom:
|
|
332
|
+
marginBottom: optionItemMarginBottom ? optionItemMarginBottom : configStyles.SELECT.optionItemMarginBottom,
|
|
333
333
|
backgroundColor: optionItemBackgroudColor ? optionItemBackgroudColor : configStyles.SELECT.optionItemBackgroudColor,
|
|
334
334
|
}}
|
|
335
335
|
>
|
|
336
336
|
{multiple && multipleCheckbox ? <SingleCheckbox checked={option.checked} /> : ''}
|
|
337
337
|
{option[keyNames.name]}
|
|
338
|
-
|
|
339
338
|
</div>
|
|
340
339
|
})
|
|
341
340
|
}
|
|
@@ -326,6 +326,7 @@ import StackAlt from './assets/stackalt.svg';
|
|
|
326
326
|
```
|
|
327
327
|
{
|
|
328
328
|
dots: false, // for options, cut text and add dots
|
|
329
|
+
showCloseIcon: false, // for select reset icon, when prop exist or true is show, otherwise is hide
|
|
329
330
|
marginTop: '10px', // for error message postion from top
|
|
330
331
|
labelWeight: '500', // for label font weight
|
|
331
332
|
labelColor: '#3C393E', // for label color
|
package/tui.config.js
CHANGED
|
@@ -182,7 +182,7 @@ module.exports = {
|
|
|
182
182
|
// default properties for <Select /> component
|
|
183
183
|
SELECT: {
|
|
184
184
|
dots: false, // for options, cut text and add dots
|
|
185
|
-
showCloseIcon:
|
|
185
|
+
showCloseIcon: false, // for select reset icon, when prop exist or true is show, otherwise is hide
|
|
186
186
|
marginTop: '10px', // for error message postion from top
|
|
187
187
|
labelWeight: '500', // for label font weight
|
|
188
188
|
labelColor: '#3C393E', // for label color
|
|
@@ -217,7 +217,7 @@ module.exports = {
|
|
|
217
217
|
optionItemCursor: 'pointer', // for option cursor
|
|
218
218
|
optionItemMinHeight: '46px', // for option min height
|
|
219
219
|
optionItemFontWeight: '500', // for option font weight
|
|
220
|
-
optionItemLineHeight: '
|
|
220
|
+
optionItemLineHeight: '25px', // for option line height
|
|
221
221
|
optionItemPadding: '0px 15px', // for option padding
|
|
222
222
|
optionItemMarginBottom: '2px', // for option margin bottom
|
|
223
223
|
optionItemColorHover: '#00236A', // for option color ( when hover )
|