@itcase/ui 1.1.11 → 1.1.13
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/cjs/components/Cell/Cell.interface.d.ts +1 -1
- package/dist/cjs/components/Select.js +103 -12
- package/dist/cjs/components/Text/Text.interface.d.ts +1 -1
- package/dist/components/Cell/Cell.interface.d.ts +1 -1
- package/dist/components/Select.js +103 -12
- package/dist/components/Text/Text.interface.d.ts +1 -1
- package/dist/css/components/Dropdown/Dropdown.css +2 -2
- package/package.json +1 -1
|
@@ -31,7 +31,7 @@ export interface ICellProps extends TypeStyleAttributes {
|
|
|
31
31
|
titleTag?: ElementType;
|
|
32
32
|
titleTextColor?: textColorPropsType;
|
|
33
33
|
titleTextSize?: textSizePropsType;
|
|
34
|
-
titleTextTruncate?:
|
|
34
|
+
titleTextTruncate?: boolean;
|
|
35
35
|
titleTextWeight?: textWeightPropsType;
|
|
36
36
|
titleTextWrap?: textWrapPropsType;
|
|
37
37
|
value?: string;
|
|
@@ -53,17 +53,38 @@ var PropTypes__default = /*#__PURE__*/_interopDefault(PropTypes);
|
|
|
53
53
|
var Select__default = /*#__PURE__*/_interopDefault(Select$1);
|
|
54
54
|
var clsx__default = /*#__PURE__*/_interopDefault(clsx);
|
|
55
55
|
|
|
56
|
-
|
|
56
|
+
// For use memo need to check "ClearIndicator" props
|
|
57
|
+
// const SelectClearIndicator = React.memo(
|
|
58
|
+
function SelectClearIndicator(props) {
|
|
59
|
+
const {
|
|
60
|
+
children
|
|
61
|
+
} = props;
|
|
57
62
|
const {
|
|
58
63
|
clearIcon,
|
|
59
64
|
clearIconFill
|
|
60
65
|
} = props.selectProps;
|
|
61
66
|
return /*#__PURE__*/React__namespace.default.createElement(Select$1.components.ClearIndicator, props, clearIcon ? /*#__PURE__*/React__namespace.default.createElement(Icon.Icon, {
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
}) :
|
|
65
|
-
}
|
|
67
|
+
iconFill: clearIconFill,
|
|
68
|
+
SvgImage: clearIcon
|
|
69
|
+
}) : children);
|
|
70
|
+
}
|
|
71
|
+
// ,
|
|
72
|
+
// function arePropsEqual(oldProps, newProps) {
|
|
73
|
+
// const oldClearIcon = oldProps.selectProps.clearIcon
|
|
74
|
+
// const oldClearIconFill = oldProps.selectProps.clearIconFill
|
|
75
|
+
|
|
76
|
+
// const newClearIcon = newProps.selectProps.clearIcon
|
|
77
|
+
// const newClearIconFill = newProps.selectProps.clearIconFill
|
|
78
|
+
|
|
79
|
+
// const isClearIconSame = oldClearIcon === newClearIcon
|
|
80
|
+
// const isClearIconFillSame = oldClearIconFill === newClearIconFill
|
|
81
|
+
|
|
82
|
+
// return isClearIconSame && isClearIconFillSame
|
|
83
|
+
// },
|
|
84
|
+
// )
|
|
85
|
+
|
|
66
86
|
SelectClearIndicator.propTypes = {
|
|
87
|
+
children: PropTypes__default.default.any,
|
|
67
88
|
selectProps: PropTypes__default.default.shape({
|
|
68
89
|
clearIcon: PropTypes__default.default.string,
|
|
69
90
|
clearIconFill: PropTypes__default.default.string
|
|
@@ -74,6 +95,13 @@ SelectClearIndicator.__docgenInfo = {
|
|
|
74
95
|
"methods": [],
|
|
75
96
|
"displayName": "SelectClearIndicator",
|
|
76
97
|
"props": {
|
|
98
|
+
"children": {
|
|
99
|
+
"description": "",
|
|
100
|
+
"type": {
|
|
101
|
+
"name": "any"
|
|
102
|
+
},
|
|
103
|
+
"required": false
|
|
104
|
+
},
|
|
77
105
|
"selectProps": {
|
|
78
106
|
"description": "",
|
|
79
107
|
"type": {
|
|
@@ -7390,7 +7418,12 @@ SelectControl.__docgenInfo = {
|
|
|
7390
7418
|
}
|
|
7391
7419
|
};
|
|
7392
7420
|
|
|
7393
|
-
|
|
7421
|
+
// For use memo need to check "DropdownIndicator" props
|
|
7422
|
+
// const SelectDropdownIndicator = React.memo(
|
|
7423
|
+
function SelectDropdownIndicator(props) {
|
|
7424
|
+
const {
|
|
7425
|
+
children
|
|
7426
|
+
} = props;
|
|
7394
7427
|
const {
|
|
7395
7428
|
dropdownFillHover,
|
|
7396
7429
|
dropdownIcon,
|
|
@@ -7398,13 +7431,40 @@ const SelectDropdownIndicator = props => {
|
|
|
7398
7431
|
dropdownIconShape
|
|
7399
7432
|
} = props.selectProps;
|
|
7400
7433
|
return /*#__PURE__*/React__namespace.default.createElement(Select$1.components.DropdownIndicator, props, dropdownIcon ? /*#__PURE__*/React__namespace.default.createElement(Icon.Icon, {
|
|
7401
|
-
SvgImage: dropdownIcon,
|
|
7402
|
-
iconFill: dropdownIconFill,
|
|
7403
7434
|
fillHover: dropdownFillHover,
|
|
7404
|
-
|
|
7405
|
-
|
|
7406
|
-
|
|
7435
|
+
iconFill: dropdownIconFill,
|
|
7436
|
+
shape: dropdownIconShape,
|
|
7437
|
+
SvgImage: dropdownIcon
|
|
7438
|
+
}) : children);
|
|
7439
|
+
}
|
|
7440
|
+
// ,
|
|
7441
|
+
// function arePropsEqual(oldProps, newProps) {
|
|
7442
|
+
// const oldDropdownFillHover = oldProps.selectProps.dropdownFillHover
|
|
7443
|
+
// const oldDropdownIcon = oldProps.selectProps.dropdownIcon
|
|
7444
|
+
// const oldDropdownIconFill = oldProps.selectProps.dropdownIconFill
|
|
7445
|
+
// const oldDropdownIconShape = oldProps.selectProps.dropdownIconShape
|
|
7446
|
+
|
|
7447
|
+
// const newDropdownFillHover = newProps.selectProps.dropdownFillHover
|
|
7448
|
+
// const newDropdownIcon = newProps.selectProps.dropdownIcon
|
|
7449
|
+
// const newDropdownIconFill = newProps.selectProps.dropdownIconFill
|
|
7450
|
+
// const newDropdownIconShape = newProps.selectProps.dropdownIconShape
|
|
7451
|
+
|
|
7452
|
+
// const isDropdownFillHoverSame = oldDropdownFillHover === newDropdownFillHover
|
|
7453
|
+
// const isDropdownIconSame = oldDropdownIcon === newDropdownIcon
|
|
7454
|
+
// const isDropdownIconFillSame = oldDropdownIconFill === newDropdownIconFill
|
|
7455
|
+
// const isDropdownIconShapeSame = oldDropdownIconShape === newDropdownIconShape
|
|
7456
|
+
|
|
7457
|
+
// return (
|
|
7458
|
+
// isDropdownFillHoverSame &&
|
|
7459
|
+
// isDropdownIconSame &&
|
|
7460
|
+
// isDropdownIconFillSame &&
|
|
7461
|
+
// isDropdownIconShapeSame
|
|
7462
|
+
// )
|
|
7463
|
+
// },
|
|
7464
|
+
// )
|
|
7465
|
+
|
|
7407
7466
|
SelectDropdownIndicator.propTypes = {
|
|
7467
|
+
children: PropTypes__default.default.any,
|
|
7408
7468
|
selectProps: PropTypes__default.default.shape({
|
|
7409
7469
|
// "dropdownIcon" is SvgImage(file.svg)
|
|
7410
7470
|
dropdownFillHover: PropTypes__default.default.string,
|
|
@@ -7418,6 +7478,13 @@ SelectDropdownIndicator.__docgenInfo = {
|
|
|
7418
7478
|
"methods": [],
|
|
7419
7479
|
"displayName": "SelectDropdownIndicator",
|
|
7420
7480
|
"props": {
|
|
7481
|
+
"children": {
|
|
7482
|
+
"description": "",
|
|
7483
|
+
"type": {
|
|
7484
|
+
"name": "any"
|
|
7485
|
+
},
|
|
7486
|
+
"required": false
|
|
7487
|
+
},
|
|
7421
7488
|
"selectProps": {
|
|
7422
7489
|
"description": "",
|
|
7423
7490
|
"type": {
|
|
@@ -7562,6 +7629,19 @@ SelectInput.__docgenInfo = {
|
|
|
7562
7629
|
}
|
|
7563
7630
|
};
|
|
7564
7631
|
|
|
7632
|
+
const SelectLoadingIndicator = props => {
|
|
7633
|
+
const {
|
|
7634
|
+
loadingIndicator
|
|
7635
|
+
} = props.selectProps;
|
|
7636
|
+
// Original indicator
|
|
7637
|
+
// <components.LoadingIndicator {...props}>
|
|
7638
|
+
// </components.LoadingIndicator>
|
|
7639
|
+
return loadingIndicator;
|
|
7640
|
+
};
|
|
7641
|
+
SelectLoadingIndicator.propTypes = {
|
|
7642
|
+
selectProps: PropTypes__default.default.shape({})
|
|
7643
|
+
};
|
|
7644
|
+
|
|
7565
7645
|
const SelectMenu = props => {
|
|
7566
7646
|
const {
|
|
7567
7647
|
elevation,
|
|
@@ -8026,8 +8106,10 @@ const SelectContainer = /*#__PURE__*/React__namespace.default.forwardRef(functio
|
|
|
8026
8106
|
isClearable,
|
|
8027
8107
|
isCreatable,
|
|
8028
8108
|
isDisabled,
|
|
8109
|
+
isLoading,
|
|
8029
8110
|
isMulti,
|
|
8030
8111
|
isSearchable,
|
|
8112
|
+
loadingMessage,
|
|
8031
8113
|
menuItemSize,
|
|
8032
8114
|
noOptionsText,
|
|
8033
8115
|
openMenuOnClick,
|
|
@@ -8046,6 +8128,12 @@ const SelectContainer = /*#__PURE__*/React__namespace.default.forwardRef(functio
|
|
|
8046
8128
|
} = props;
|
|
8047
8129
|
const defaultRef = React.useRef(null);
|
|
8048
8130
|
const selectRef = ref || defaultRef;
|
|
8131
|
+
|
|
8132
|
+
// React-select wai function as "loadingMessage" property
|
|
8133
|
+
const getLoadingMessage = React.useCallback(params => {
|
|
8134
|
+
// const { inputValue } = params
|
|
8135
|
+
return loadingMessage;
|
|
8136
|
+
}, [loadingMessage]);
|
|
8049
8137
|
const borderColorClass = useDeviceTargetClass.useDeviceTargetClass(props, {
|
|
8050
8138
|
prefix: 'border-color_',
|
|
8051
8139
|
propsKey: 'borderColor'
|
|
@@ -8189,7 +8277,8 @@ const SelectContainer = /*#__PURE__*/React__namespace.default.forwardRef(functio
|
|
|
8189
8277
|
Placeholder: SelectPlaceholder,
|
|
8190
8278
|
ValueContainer: SelectValueContainer,
|
|
8191
8279
|
NoOptionsMessage: SelectNoOptions,
|
|
8192
|
-
GroupHeading: SelectGroupHeading
|
|
8280
|
+
GroupHeading: SelectGroupHeading,
|
|
8281
|
+
LoadingIndicator: SelectLoadingIndicator
|
|
8193
8282
|
},
|
|
8194
8283
|
defaultValue: initialValue,
|
|
8195
8284
|
dividerDirection: dividerDirection,
|
|
@@ -8219,8 +8308,10 @@ const SelectContainer = /*#__PURE__*/React__namespace.default.forwardRef(functio
|
|
|
8219
8308
|
inputTextSize: inputTextSizeClass || selectAppearanceItem.inputTextSize,
|
|
8220
8309
|
isClearable: isClearable,
|
|
8221
8310
|
isDisabled: isDisabled,
|
|
8311
|
+
isLoading: isLoading,
|
|
8222
8312
|
isMulti: isMulti,
|
|
8223
8313
|
isSearchable: isSearchable,
|
|
8314
|
+
loadingMessage: getLoadingMessage,
|
|
8224
8315
|
menuAfter: menuAfter,
|
|
8225
8316
|
menuBefore: menuBefore,
|
|
8226
8317
|
menuItemSize: menuItemSize,
|
|
@@ -47,7 +47,7 @@ export interface ITextProps extends ITextThemeColor, TypeStyleAttributes {
|
|
|
47
47
|
textAlign?: textAlignPropsType;
|
|
48
48
|
textColor?: textColorPropsType;
|
|
49
49
|
textStyle?: textStylePropsType;
|
|
50
|
-
textTruncate?:
|
|
50
|
+
textTruncate?: boolean;
|
|
51
51
|
textWeight?: textWeightPropsType;
|
|
52
52
|
textWrap?: textWrapPropsType;
|
|
53
53
|
width?: widthPropsType;
|
|
@@ -31,7 +31,7 @@ export interface ICellProps extends TypeStyleAttributes {
|
|
|
31
31
|
titleTag?: ElementType;
|
|
32
32
|
titleTextColor?: textColorPropsType;
|
|
33
33
|
titleTextSize?: textSizePropsType;
|
|
34
|
-
titleTextTruncate?:
|
|
34
|
+
titleTextTruncate?: boolean;
|
|
35
35
|
titleTextWeight?: textWeightPropsType;
|
|
36
36
|
titleTextWrap?: textWrapPropsType;
|
|
37
37
|
value?: string;
|
|
@@ -27,17 +27,38 @@ import '../Tooltip-CcwyN7PD.js';
|
|
|
27
27
|
import '../Title-BUN57fWw.js';
|
|
28
28
|
import 'lodash/castArray';
|
|
29
29
|
|
|
30
|
-
|
|
30
|
+
// For use memo need to check "ClearIndicator" props
|
|
31
|
+
// const SelectClearIndicator = React.memo(
|
|
32
|
+
function SelectClearIndicator(props) {
|
|
33
|
+
const {
|
|
34
|
+
children
|
|
35
|
+
} = props;
|
|
31
36
|
const {
|
|
32
37
|
clearIcon,
|
|
33
38
|
clearIconFill
|
|
34
39
|
} = props.selectProps;
|
|
35
40
|
return /*#__PURE__*/React__default.createElement(components$1.ClearIndicator, props, clearIcon ? /*#__PURE__*/React__default.createElement(Icon, {
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
}) :
|
|
39
|
-
}
|
|
41
|
+
iconFill: clearIconFill,
|
|
42
|
+
SvgImage: clearIcon
|
|
43
|
+
}) : children);
|
|
44
|
+
}
|
|
45
|
+
// ,
|
|
46
|
+
// function arePropsEqual(oldProps, newProps) {
|
|
47
|
+
// const oldClearIcon = oldProps.selectProps.clearIcon
|
|
48
|
+
// const oldClearIconFill = oldProps.selectProps.clearIconFill
|
|
49
|
+
|
|
50
|
+
// const newClearIcon = newProps.selectProps.clearIcon
|
|
51
|
+
// const newClearIconFill = newProps.selectProps.clearIconFill
|
|
52
|
+
|
|
53
|
+
// const isClearIconSame = oldClearIcon === newClearIcon
|
|
54
|
+
// const isClearIconFillSame = oldClearIconFill === newClearIconFill
|
|
55
|
+
|
|
56
|
+
// return isClearIconSame && isClearIconFillSame
|
|
57
|
+
// },
|
|
58
|
+
// )
|
|
59
|
+
|
|
40
60
|
SelectClearIndicator.propTypes = {
|
|
61
|
+
children: PropTypes.any,
|
|
41
62
|
selectProps: PropTypes.shape({
|
|
42
63
|
clearIcon: PropTypes.string,
|
|
43
64
|
clearIconFill: PropTypes.string
|
|
@@ -48,6 +69,13 @@ SelectClearIndicator.__docgenInfo = {
|
|
|
48
69
|
"methods": [],
|
|
49
70
|
"displayName": "SelectClearIndicator",
|
|
50
71
|
"props": {
|
|
72
|
+
"children": {
|
|
73
|
+
"description": "",
|
|
74
|
+
"type": {
|
|
75
|
+
"name": "any"
|
|
76
|
+
},
|
|
77
|
+
"required": false
|
|
78
|
+
},
|
|
51
79
|
"selectProps": {
|
|
52
80
|
"description": "",
|
|
53
81
|
"type": {
|
|
@@ -7364,7 +7392,12 @@ SelectControl.__docgenInfo = {
|
|
|
7364
7392
|
}
|
|
7365
7393
|
};
|
|
7366
7394
|
|
|
7367
|
-
|
|
7395
|
+
// For use memo need to check "DropdownIndicator" props
|
|
7396
|
+
// const SelectDropdownIndicator = React.memo(
|
|
7397
|
+
function SelectDropdownIndicator(props) {
|
|
7398
|
+
const {
|
|
7399
|
+
children
|
|
7400
|
+
} = props;
|
|
7368
7401
|
const {
|
|
7369
7402
|
dropdownFillHover,
|
|
7370
7403
|
dropdownIcon,
|
|
@@ -7372,13 +7405,40 @@ const SelectDropdownIndicator = props => {
|
|
|
7372
7405
|
dropdownIconShape
|
|
7373
7406
|
} = props.selectProps;
|
|
7374
7407
|
return /*#__PURE__*/React__default.createElement(components$1.DropdownIndicator, props, dropdownIcon ? /*#__PURE__*/React__default.createElement(Icon, {
|
|
7375
|
-
SvgImage: dropdownIcon,
|
|
7376
|
-
iconFill: dropdownIconFill,
|
|
7377
7408
|
fillHover: dropdownFillHover,
|
|
7378
|
-
|
|
7379
|
-
|
|
7380
|
-
|
|
7409
|
+
iconFill: dropdownIconFill,
|
|
7410
|
+
shape: dropdownIconShape,
|
|
7411
|
+
SvgImage: dropdownIcon
|
|
7412
|
+
}) : children);
|
|
7413
|
+
}
|
|
7414
|
+
// ,
|
|
7415
|
+
// function arePropsEqual(oldProps, newProps) {
|
|
7416
|
+
// const oldDropdownFillHover = oldProps.selectProps.dropdownFillHover
|
|
7417
|
+
// const oldDropdownIcon = oldProps.selectProps.dropdownIcon
|
|
7418
|
+
// const oldDropdownIconFill = oldProps.selectProps.dropdownIconFill
|
|
7419
|
+
// const oldDropdownIconShape = oldProps.selectProps.dropdownIconShape
|
|
7420
|
+
|
|
7421
|
+
// const newDropdownFillHover = newProps.selectProps.dropdownFillHover
|
|
7422
|
+
// const newDropdownIcon = newProps.selectProps.dropdownIcon
|
|
7423
|
+
// const newDropdownIconFill = newProps.selectProps.dropdownIconFill
|
|
7424
|
+
// const newDropdownIconShape = newProps.selectProps.dropdownIconShape
|
|
7425
|
+
|
|
7426
|
+
// const isDropdownFillHoverSame = oldDropdownFillHover === newDropdownFillHover
|
|
7427
|
+
// const isDropdownIconSame = oldDropdownIcon === newDropdownIcon
|
|
7428
|
+
// const isDropdownIconFillSame = oldDropdownIconFill === newDropdownIconFill
|
|
7429
|
+
// const isDropdownIconShapeSame = oldDropdownIconShape === newDropdownIconShape
|
|
7430
|
+
|
|
7431
|
+
// return (
|
|
7432
|
+
// isDropdownFillHoverSame &&
|
|
7433
|
+
// isDropdownIconSame &&
|
|
7434
|
+
// isDropdownIconFillSame &&
|
|
7435
|
+
// isDropdownIconShapeSame
|
|
7436
|
+
// )
|
|
7437
|
+
// },
|
|
7438
|
+
// )
|
|
7439
|
+
|
|
7381
7440
|
SelectDropdownIndicator.propTypes = {
|
|
7441
|
+
children: PropTypes.any,
|
|
7382
7442
|
selectProps: PropTypes.shape({
|
|
7383
7443
|
// "dropdownIcon" is SvgImage(file.svg)
|
|
7384
7444
|
dropdownFillHover: PropTypes.string,
|
|
@@ -7392,6 +7452,13 @@ SelectDropdownIndicator.__docgenInfo = {
|
|
|
7392
7452
|
"methods": [],
|
|
7393
7453
|
"displayName": "SelectDropdownIndicator",
|
|
7394
7454
|
"props": {
|
|
7455
|
+
"children": {
|
|
7456
|
+
"description": "",
|
|
7457
|
+
"type": {
|
|
7458
|
+
"name": "any"
|
|
7459
|
+
},
|
|
7460
|
+
"required": false
|
|
7461
|
+
},
|
|
7395
7462
|
"selectProps": {
|
|
7396
7463
|
"description": "",
|
|
7397
7464
|
"type": {
|
|
@@ -7536,6 +7603,19 @@ SelectInput.__docgenInfo = {
|
|
|
7536
7603
|
}
|
|
7537
7604
|
};
|
|
7538
7605
|
|
|
7606
|
+
const SelectLoadingIndicator = props => {
|
|
7607
|
+
const {
|
|
7608
|
+
loadingIndicator
|
|
7609
|
+
} = props.selectProps;
|
|
7610
|
+
// Original indicator
|
|
7611
|
+
// <components.LoadingIndicator {...props}>
|
|
7612
|
+
// </components.LoadingIndicator>
|
|
7613
|
+
return loadingIndicator;
|
|
7614
|
+
};
|
|
7615
|
+
SelectLoadingIndicator.propTypes = {
|
|
7616
|
+
selectProps: PropTypes.shape({})
|
|
7617
|
+
};
|
|
7618
|
+
|
|
7539
7619
|
const SelectMenu = props => {
|
|
7540
7620
|
const {
|
|
7541
7621
|
elevation,
|
|
@@ -8000,8 +8080,10 @@ const SelectContainer = /*#__PURE__*/React__default.forwardRef(function SelectCo
|
|
|
8000
8080
|
isClearable,
|
|
8001
8081
|
isCreatable,
|
|
8002
8082
|
isDisabled,
|
|
8083
|
+
isLoading,
|
|
8003
8084
|
isMulti,
|
|
8004
8085
|
isSearchable,
|
|
8086
|
+
loadingMessage,
|
|
8005
8087
|
menuItemSize,
|
|
8006
8088
|
noOptionsText,
|
|
8007
8089
|
openMenuOnClick,
|
|
@@ -8020,6 +8102,12 @@ const SelectContainer = /*#__PURE__*/React__default.forwardRef(function SelectCo
|
|
|
8020
8102
|
} = props;
|
|
8021
8103
|
const defaultRef = useRef(null);
|
|
8022
8104
|
const selectRef = ref || defaultRef;
|
|
8105
|
+
|
|
8106
|
+
// React-select wai function as "loadingMessage" property
|
|
8107
|
+
const getLoadingMessage = useCallback(params => {
|
|
8108
|
+
// const { inputValue } = params
|
|
8109
|
+
return loadingMessage;
|
|
8110
|
+
}, [loadingMessage]);
|
|
8023
8111
|
const borderColorClass = useDeviceTargetClass(props, {
|
|
8024
8112
|
prefix: 'border-color_',
|
|
8025
8113
|
propsKey: 'borderColor'
|
|
@@ -8163,7 +8251,8 @@ const SelectContainer = /*#__PURE__*/React__default.forwardRef(function SelectCo
|
|
|
8163
8251
|
Placeholder: SelectPlaceholder,
|
|
8164
8252
|
ValueContainer: SelectValueContainer,
|
|
8165
8253
|
NoOptionsMessage: SelectNoOptions,
|
|
8166
|
-
GroupHeading: SelectGroupHeading
|
|
8254
|
+
GroupHeading: SelectGroupHeading,
|
|
8255
|
+
LoadingIndicator: SelectLoadingIndicator
|
|
8167
8256
|
},
|
|
8168
8257
|
defaultValue: initialValue,
|
|
8169
8258
|
dividerDirection: dividerDirection,
|
|
@@ -8193,8 +8282,10 @@ const SelectContainer = /*#__PURE__*/React__default.forwardRef(function SelectCo
|
|
|
8193
8282
|
inputTextSize: inputTextSizeClass || selectAppearanceItem.inputTextSize,
|
|
8194
8283
|
isClearable: isClearable,
|
|
8195
8284
|
isDisabled: isDisabled,
|
|
8285
|
+
isLoading: isLoading,
|
|
8196
8286
|
isMulti: isMulti,
|
|
8197
8287
|
isSearchable: isSearchable,
|
|
8288
|
+
loadingMessage: getLoadingMessage,
|
|
8198
8289
|
menuAfter: menuAfter,
|
|
8199
8290
|
menuBefore: menuBefore,
|
|
8200
8291
|
menuItemSize: menuItemSize,
|
|
@@ -47,7 +47,7 @@ export interface ITextProps extends ITextThemeColor, TypeStyleAttributes {
|
|
|
47
47
|
textAlign?: textAlignPropsType;
|
|
48
48
|
textColor?: textColorPropsType;
|
|
49
49
|
textStyle?: textStylePropsType;
|
|
50
|
-
textTruncate?:
|
|
50
|
+
textTruncate?: boolean;
|
|
51
51
|
textWeight?: textWeightPropsType;
|
|
52
52
|
textWrap?: textWrapPropsType;
|
|
53
53
|
width?: widthPropsType;
|