@xaypay/tui 0.0.89 → 0.0.91
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 +10 -2
- package/dist/index.js +10 -2
- package/package.json +1 -1
- package/src/components/newAutocomplete/NewAutocomplete.stories.js +1 -1
- package/src/components/newAutocomplete/index.js +7 -2
- package/src/components/select/index.js +3 -0
- package/src/stories/configuration.stories.mdx +3 -0
- package/tui.config.js +3 -0
package/dist/index.es.js
CHANGED
|
@@ -1251,6 +1251,7 @@ const Select = ({
|
|
|
1251
1251
|
selectedLineHeight,
|
|
1252
1252
|
selectedHoverColor,
|
|
1253
1253
|
selectedTransition,
|
|
1254
|
+
selectedBackgroundColor,
|
|
1254
1255
|
optionsBoxShadow,
|
|
1255
1256
|
optionsBorderRadius,
|
|
1256
1257
|
optionsBackgroundColor,
|
|
@@ -1409,6 +1410,7 @@ const Select = ({
|
|
|
1409
1410
|
fontWeight: selectedFontWeight ? selectedFontWeight : configStyles.SELECT.selectedFontWeight,
|
|
1410
1411
|
lineHeight: selectedLineHeight ? selectedLineHeight : configStyles.SELECT.selectedLineHeight,
|
|
1411
1412
|
transition: selectedTransition ? selectedTransition : configStyles.SELECT.selectedTransition,
|
|
1413
|
+
backgroundColor: selectedBackgroundColor ? selectedBackgroundColor : configStyles.SELECT.selectedBackgroundColor,
|
|
1412
1414
|
boxShadow: errorMessage ? errorColor ? `0 0 0 2px ${errorColor}` : `0 0 0 2px ${configStyles.SELECT.errorColor}` : isHover ? boxShadowHover ? boxShadowHover : configStyles.SELECT.boxShadowHover : boxShadow ? boxShadow : configStyles.SELECT.boxShadow
|
|
1413
1415
|
},
|
|
1414
1416
|
onClick: disabled ? _ => _ : _ => handleOpenClose(),
|
|
@@ -1526,6 +1528,7 @@ Select.propTypes = {
|
|
|
1526
1528
|
selectedFontWeight: PropTypes.string,
|
|
1527
1529
|
selectedLineHeight: PropTypes.string,
|
|
1528
1530
|
selectedTransition: PropTypes.string,
|
|
1531
|
+
selectedBackgroundColor: PropTypes.string,
|
|
1529
1532
|
optionsBoxShadow: PropTypes.string,
|
|
1530
1533
|
optionsBorderRadius: PropTypes.string,
|
|
1531
1534
|
optionsBackgroundColor: PropTypes.string,
|
|
@@ -3803,6 +3806,7 @@ const NewAutocomplete = ({
|
|
|
3803
3806
|
contentTopDisplay,
|
|
3804
3807
|
contentTopPadding,
|
|
3805
3808
|
contentBottomLeft,
|
|
3809
|
+
innerErrorPadding,
|
|
3806
3810
|
showOptionDuration,
|
|
3807
3811
|
labelRequiredColor,
|
|
3808
3812
|
contentTopMaxWidth,
|
|
@@ -3828,6 +3832,7 @@ const NewAutocomplete = ({
|
|
|
3828
3832
|
contentBottomRowFontSize,
|
|
3829
3833
|
contentBottomRowBoxSizing,
|
|
3830
3834
|
contentBottomInnerDisplay,
|
|
3835
|
+
innerErrorBackgroundColor,
|
|
3831
3836
|
contentBottomRowFontWeight,
|
|
3832
3837
|
contentBottomRowLineHeight,
|
|
3833
3838
|
contentBottomRowAlignItems,
|
|
@@ -3950,13 +3955,14 @@ const NewAutocomplete = ({
|
|
|
3950
3955
|
}))) : innerOptions.length <= 0 ? /*#__PURE__*/React__default.createElement("span", {
|
|
3951
3956
|
style: {
|
|
3952
3957
|
position: 'absolute',
|
|
3958
|
+
zIndex: '9999999999',
|
|
3953
3959
|
color: errorColor ? errorColor : configStyles.NEWAUTOCOMPLETE.errorColor,
|
|
3954
3960
|
fontSize: errorSize ? errorSize : configStyles.NEWAUTOCOMPLETE.errorSize,
|
|
3955
3961
|
top: marginTop ? `calc(100% + ${marginTop})` : `calc(100% + ${configStyles.INPUT.marginTop})`,
|
|
3962
|
+
padding: innerErrorPadding ? innerErrorPadding : configStyles.NEWAUTOCOMPLETE.innerErrorPadding,
|
|
3956
3963
|
height: contentBottomRowHeight ? contentBottomRowHeight : configStyles.NEWAUTOCOMPLETE.contentBottomRowHeight,
|
|
3957
|
-
padding: contentBottomRowPadding ? contentBottomRowPadding : configStyles.NEWAUTOCOMPLETE.contentBottomRowPadding,
|
|
3958
3964
|
lineHeight: contentBottomRowHeight ? contentBottomRowHeight : configStyles.NEWAUTOCOMPLETE.contentBottomRowHeight,
|
|
3959
|
-
backgroundColor:
|
|
3965
|
+
backgroundColor: innerErrorBackgroundColor ? innerErrorBackgroundColor : configStyles.NEWAUTOCOMPLETE.innerErrorBackgroundColor
|
|
3960
3966
|
}
|
|
3961
3967
|
}, innerValue.length >= searchCount ? 'Նման տվյալ առկա չէ' : `Լրացնել առնվազն ${searchCount} նիշ`) : '' : '');
|
|
3962
3968
|
useEffect(() => {
|
|
@@ -4084,6 +4090,7 @@ NewAutocomplete.propTypes = {
|
|
|
4084
4090
|
contentBottomLeft: PropTypes.string,
|
|
4085
4091
|
options: PropTypes.array.isRequired,
|
|
4086
4092
|
labelMarginBottom: PropTypes.string,
|
|
4093
|
+
innerErrorPadding: PropTypes.string,
|
|
4087
4094
|
labelRequiredColor: PropTypes.string,
|
|
4088
4095
|
labelTextTransform: PropTypes.string,
|
|
4089
4096
|
showOptionDuration: PropTypes.string,
|
|
@@ -4108,6 +4115,7 @@ NewAutocomplete.propTypes = {
|
|
|
4108
4115
|
contentBottomRowPadding: PropTypes.string,
|
|
4109
4116
|
contentBottomRowFontSize: PropTypes.string,
|
|
4110
4117
|
contentBottomRowBoxSizing: PropTypes.string,
|
|
4118
|
+
innerErrorBackgroundColor: PropTypes.string,
|
|
4111
4119
|
contentBottomInnerDisplay: PropTypes.string,
|
|
4112
4120
|
contentBottomRowFontWeight: PropTypes.number,
|
|
4113
4121
|
contentBottomRowLineHeight: PropTypes.string,
|
package/dist/index.js
CHANGED
|
@@ -1281,6 +1281,7 @@ const Select = ({
|
|
|
1281
1281
|
selectedLineHeight,
|
|
1282
1282
|
selectedHoverColor,
|
|
1283
1283
|
selectedTransition,
|
|
1284
|
+
selectedBackgroundColor,
|
|
1284
1285
|
optionsBoxShadow,
|
|
1285
1286
|
optionsBorderRadius,
|
|
1286
1287
|
optionsBackgroundColor,
|
|
@@ -1439,6 +1440,7 @@ const Select = ({
|
|
|
1439
1440
|
fontWeight: selectedFontWeight ? selectedFontWeight : configStyles.SELECT.selectedFontWeight,
|
|
1440
1441
|
lineHeight: selectedLineHeight ? selectedLineHeight : configStyles.SELECT.selectedLineHeight,
|
|
1441
1442
|
transition: selectedTransition ? selectedTransition : configStyles.SELECT.selectedTransition,
|
|
1443
|
+
backgroundColor: selectedBackgroundColor ? selectedBackgroundColor : configStyles.SELECT.selectedBackgroundColor,
|
|
1442
1444
|
boxShadow: errorMessage ? errorColor ? `0 0 0 2px ${errorColor}` : `0 0 0 2px ${configStyles.SELECT.errorColor}` : isHover ? boxShadowHover ? boxShadowHover : configStyles.SELECT.boxShadowHover : boxShadow ? boxShadow : configStyles.SELECT.boxShadow
|
|
1443
1445
|
},
|
|
1444
1446
|
onClick: disabled ? _ => _ : _ => handleOpenClose(),
|
|
@@ -1556,6 +1558,7 @@ Select.propTypes = {
|
|
|
1556
1558
|
selectedFontWeight: PropTypes__default["default"].string,
|
|
1557
1559
|
selectedLineHeight: PropTypes__default["default"].string,
|
|
1558
1560
|
selectedTransition: PropTypes__default["default"].string,
|
|
1561
|
+
selectedBackgroundColor: PropTypes__default["default"].string,
|
|
1559
1562
|
optionsBoxShadow: PropTypes__default["default"].string,
|
|
1560
1563
|
optionsBorderRadius: PropTypes__default["default"].string,
|
|
1561
1564
|
optionsBackgroundColor: PropTypes__default["default"].string,
|
|
@@ -3833,6 +3836,7 @@ const NewAutocomplete = ({
|
|
|
3833
3836
|
contentTopDisplay,
|
|
3834
3837
|
contentTopPadding,
|
|
3835
3838
|
contentBottomLeft,
|
|
3839
|
+
innerErrorPadding,
|
|
3836
3840
|
showOptionDuration,
|
|
3837
3841
|
labelRequiredColor,
|
|
3838
3842
|
contentTopMaxWidth,
|
|
@@ -3858,6 +3862,7 @@ const NewAutocomplete = ({
|
|
|
3858
3862
|
contentBottomRowFontSize,
|
|
3859
3863
|
contentBottomRowBoxSizing,
|
|
3860
3864
|
contentBottomInnerDisplay,
|
|
3865
|
+
innerErrorBackgroundColor,
|
|
3861
3866
|
contentBottomRowFontWeight,
|
|
3862
3867
|
contentBottomRowLineHeight,
|
|
3863
3868
|
contentBottomRowAlignItems,
|
|
@@ -3980,13 +3985,14 @@ const NewAutocomplete = ({
|
|
|
3980
3985
|
}))) : innerOptions.length <= 0 ? /*#__PURE__*/React__default["default"].createElement("span", {
|
|
3981
3986
|
style: {
|
|
3982
3987
|
position: 'absolute',
|
|
3988
|
+
zIndex: '9999999999',
|
|
3983
3989
|
color: errorColor ? errorColor : configStyles.NEWAUTOCOMPLETE.errorColor,
|
|
3984
3990
|
fontSize: errorSize ? errorSize : configStyles.NEWAUTOCOMPLETE.errorSize,
|
|
3985
3991
|
top: marginTop ? `calc(100% + ${marginTop})` : `calc(100% + ${configStyles.INPUT.marginTop})`,
|
|
3992
|
+
padding: innerErrorPadding ? innerErrorPadding : configStyles.NEWAUTOCOMPLETE.innerErrorPadding,
|
|
3986
3993
|
height: contentBottomRowHeight ? contentBottomRowHeight : configStyles.NEWAUTOCOMPLETE.contentBottomRowHeight,
|
|
3987
|
-
padding: contentBottomRowPadding ? contentBottomRowPadding : configStyles.NEWAUTOCOMPLETE.contentBottomRowPadding,
|
|
3988
3994
|
lineHeight: contentBottomRowHeight ? contentBottomRowHeight : configStyles.NEWAUTOCOMPLETE.contentBottomRowHeight,
|
|
3989
|
-
backgroundColor:
|
|
3995
|
+
backgroundColor: innerErrorBackgroundColor ? innerErrorBackgroundColor : configStyles.NEWAUTOCOMPLETE.innerErrorBackgroundColor
|
|
3990
3996
|
}
|
|
3991
3997
|
}, innerValue.length >= searchCount ? 'Նման տվյալ առկա չէ' : `Լրացնել առնվազն ${searchCount} նիշ`) : '' : '');
|
|
3992
3998
|
React.useEffect(() => {
|
|
@@ -4114,6 +4120,7 @@ NewAutocomplete.propTypes = {
|
|
|
4114
4120
|
contentBottomLeft: PropTypes__default["default"].string,
|
|
4115
4121
|
options: PropTypes__default["default"].array.isRequired,
|
|
4116
4122
|
labelMarginBottom: PropTypes__default["default"].string,
|
|
4123
|
+
innerErrorPadding: PropTypes__default["default"].string,
|
|
4117
4124
|
labelRequiredColor: PropTypes__default["default"].string,
|
|
4118
4125
|
labelTextTransform: PropTypes__default["default"].string,
|
|
4119
4126
|
showOptionDuration: PropTypes__default["default"].string,
|
|
@@ -4138,6 +4145,7 @@ NewAutocomplete.propTypes = {
|
|
|
4138
4145
|
contentBottomRowPadding: PropTypes__default["default"].string,
|
|
4139
4146
|
contentBottomRowFontSize: PropTypes__default["default"].string,
|
|
4140
4147
|
contentBottomRowBoxSizing: PropTypes__default["default"].string,
|
|
4148
|
+
innerErrorBackgroundColor: PropTypes__default["default"].string,
|
|
4141
4149
|
contentBottomInnerDisplay: PropTypes__default["default"].string,
|
|
4142
4150
|
contentBottomRowFontWeight: PropTypes__default["default"].number,
|
|
4143
4151
|
contentBottomRowLineHeight: PropTypes__default["default"].string,
|
package/package.json
CHANGED
|
@@ -29,7 +29,7 @@ const Template = (args) => {
|
|
|
29
29
|
method: 'GET',
|
|
30
30
|
headers: {
|
|
31
31
|
'Content-Type': 'application/json',
|
|
32
|
-
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.
|
|
32
|
+
'Authorization': 'Bearer eyJ0eXAiOiJKV1QiLCJhbGciOiJSUzI1NiJ9.eyJhdWQiOiIwMjE0NzEyYTllNzQwZWMyMjNhYzE2MGQyNGVkY2UzNyIsImp0aSI6ImE1Mjk4NTU5ZjRiYWMxMzQyOTM3OTIzMTM2ZWQwNTM2ZWI1NjNlMzdhZGJjYjlkOWE1OWE5YjBlODBlM2JkMTJjZDE4YTAxM2NjNWEwOTM2IiwiaWF0IjoxNjg2ODA2NzEyLjgyNjEyLCJuYmYiOjE2ODY4MDY3MTIuODI2MTI4LCJleHAiOjE2ODY4MzE5MTIuODA0MTYxLCJzdWIiOiJtaW5hczg5QG1haWwucnUiLCJzY29wZXMiOlsiZW1haWwiXX0.Laezbf2xobWHCeDsFD_9nrGsPznIqUAz56Y-KyfvGt6x6F7WpxAg5HovIeiaLdhi0wdHWZhYnOMVktlHz-Gw0wdC6i-0IMq27tc968o21sTwp3jkVTl543J334u2-ju-s0nx9Yfcd84ySd499sMlhZRbsxuUPKJTiPAXeG6_tqlnMGRcQPIN24SIY4FLzES2vIQ6SqeiSQm9UQFlf4rmHVE7bEhFUPHXymNLMk8gS7Jm_xdhWtuv2Ei0ipiTApmUwpE4GYnpiHnnrEoZVrJ-sFgFZJekV0theZp5qPvjyLOVaC1rPIwwt8pdQZcfwFGxWWC9J3cEHtPfw9UhIsLi_IjS0OsFWuast6z6qSGVBpymQPA3oA1QSO4iA2UPAC0Yj7cYpYHP1q76jxbnSfYM0ifWwPUanX2OUdMWRMGuwzct7gi2jC3WIwTICahxrKFr_YpbEupxweL2IbxUeGoKCY13bq97C4u7bGELPlhoNHxm2HTD1Gp_sdQcEepJj2OMOvxE3eRCaJwyCtjZgsFpZSZYxo_6cSuCDGb0oxXESMjLPvCrleIXVJykc9ZjiK0gCZzeX83N9QlndsJ4elOcM8dLy0OOvXoojF1o_TMqSw8sD8wjpEo9Bp0MyUs4hPjmiBSrPNSAo9jbpgLYWuTUvCpPXFqmRkZhr4T_hnnuHkk',
|
|
33
33
|
},
|
|
34
34
|
}).then((res)=> {
|
|
35
35
|
return res.json()
|
|
@@ -39,6 +39,7 @@ export const NewAutocomplete = ({
|
|
|
39
39
|
contentTopDisplay,
|
|
40
40
|
contentTopPadding,
|
|
41
41
|
contentBottomLeft,
|
|
42
|
+
innerErrorPadding,
|
|
42
43
|
showOptionDuration,
|
|
43
44
|
labelRequiredColor,
|
|
44
45
|
contentTopMaxWidth,
|
|
@@ -64,6 +65,7 @@ export const NewAutocomplete = ({
|
|
|
64
65
|
contentBottomRowFontSize,
|
|
65
66
|
contentBottomRowBoxSizing,
|
|
66
67
|
contentBottomInnerDisplay,
|
|
68
|
+
innerErrorBackgroundColor,
|
|
67
69
|
contentBottomRowFontWeight,
|
|
68
70
|
contentBottomRowLineHeight,
|
|
69
71
|
contentBottomRowAlignItems,
|
|
@@ -217,13 +219,14 @@ export const NewAutocomplete = ({
|
|
|
217
219
|
<span
|
|
218
220
|
style={{
|
|
219
221
|
position: 'absolute',
|
|
222
|
+
zIndex: '9999999999',
|
|
220
223
|
color: errorColor ? errorColor : configStyles.NEWAUTOCOMPLETE.errorColor,
|
|
221
224
|
fontSize: errorSize ? errorSize : configStyles.NEWAUTOCOMPLETE.errorSize,
|
|
222
225
|
top: marginTop ? `calc(100% + ${marginTop})` : `calc(100% + ${configStyles.INPUT.marginTop})`,
|
|
226
|
+
padding: innerErrorPadding ? innerErrorPadding : configStyles.NEWAUTOCOMPLETE.innerErrorPadding,
|
|
223
227
|
height: contentBottomRowHeight ? contentBottomRowHeight : configStyles.NEWAUTOCOMPLETE.contentBottomRowHeight,
|
|
224
|
-
padding: contentBottomRowPadding ? contentBottomRowPadding : configStyles.NEWAUTOCOMPLETE.contentBottomRowPadding,
|
|
225
228
|
lineHeight: contentBottomRowHeight ? contentBottomRowHeight : configStyles.NEWAUTOCOMPLETE.contentBottomRowHeight,
|
|
226
|
-
backgroundColor:
|
|
229
|
+
backgroundColor: innerErrorBackgroundColor ? innerErrorBackgroundColor : configStyles.NEWAUTOCOMPLETE.innerErrorBackgroundColor,
|
|
227
230
|
}}
|
|
228
231
|
>
|
|
229
232
|
{
|
|
@@ -403,6 +406,7 @@ NewAutocomplete.propTypes = {
|
|
|
403
406
|
contentBottomLeft: PropTypes.string,
|
|
404
407
|
options: PropTypes.array.isRequired,
|
|
405
408
|
labelMarginBottom: PropTypes.string,
|
|
409
|
+
innerErrorPadding: PropTypes.string,
|
|
406
410
|
labelRequiredColor: PropTypes.string,
|
|
407
411
|
labelTextTransform: PropTypes.string,
|
|
408
412
|
showOptionDuration: PropTypes.string,
|
|
@@ -427,6 +431,7 @@ NewAutocomplete.propTypes = {
|
|
|
427
431
|
contentBottomRowPadding: PropTypes.string,
|
|
428
432
|
contentBottomRowFontSize: PropTypes.string,
|
|
429
433
|
contentBottomRowBoxSizing: PropTypes.string,
|
|
434
|
+
innerErrorBackgroundColor: PropTypes.string,
|
|
430
435
|
contentBottomInnerDisplay: PropTypes.string,
|
|
431
436
|
contentBottomRowFontWeight: PropTypes.number,
|
|
432
437
|
contentBottomRowLineHeight: PropTypes.string,
|
|
@@ -49,6 +49,7 @@ export const Select = ({
|
|
|
49
49
|
selectedLineHeight,
|
|
50
50
|
selectedHoverColor,
|
|
51
51
|
selectedTransition,
|
|
52
|
+
selectedBackgroundColor,
|
|
52
53
|
|
|
53
54
|
optionsBoxShadow,
|
|
54
55
|
optionsBorderRadius,
|
|
@@ -233,6 +234,7 @@ export const Select = ({
|
|
|
233
234
|
fontWeight: selectedFontWeight ? selectedFontWeight : configStyles.SELECT.selectedFontWeight,
|
|
234
235
|
lineHeight: selectedLineHeight ? selectedLineHeight : configStyles.SELECT.selectedLineHeight,
|
|
235
236
|
transition: selectedTransition ? selectedTransition : configStyles.SELECT.selectedTransition,
|
|
237
|
+
backgroundColor: selectedBackgroundColor ? selectedBackgroundColor : configStyles.SELECT.selectedBackgroundColor,
|
|
236
238
|
boxShadow: errorMessage ? errorColor ? `0 0 0 2px ${errorColor}` : `0 0 0 2px ${configStyles.SELECT.errorColor}` : isHover ? boxShadowHover ? boxShadowHover : configStyles.SELECT.boxShadowHover : boxShadow ? boxShadow : configStyles.SELECT.boxShadow
|
|
237
239
|
}}
|
|
238
240
|
onClick={disabled ? _ => _ : _ => handleOpenClose()}
|
|
@@ -399,6 +401,7 @@ Select.propTypes = {
|
|
|
399
401
|
selectedFontWeight: PropTypes.string,
|
|
400
402
|
selectedLineHeight: PropTypes.string,
|
|
401
403
|
selectedTransition: PropTypes.string,
|
|
404
|
+
selectedBackgroundColor: PropTypes.string,
|
|
402
405
|
|
|
403
406
|
optionsBoxShadow: PropTypes.string,
|
|
404
407
|
optionsBorderRadius: PropTypes.string,
|
|
@@ -350,6 +350,7 @@ import StackAlt from './assets/stackalt.svg';
|
|
|
350
350
|
selectedBorderColor: '#D1D1D1', // for selected border color
|
|
351
351
|
selectedBoxSizing: 'border-box', // for selected box sizing
|
|
352
352
|
selectedTransition: 'border-color 240ms', // for selected transition
|
|
353
|
+
selectedBackgroundColor: '#FBFBFB', // for selected background color
|
|
353
354
|
|
|
354
355
|
optionsBorderRadius: '6px', // for options block border radius
|
|
355
356
|
optionsBackgroundColor: '#FBFBFB', // for options block background color
|
|
@@ -465,6 +466,8 @@ import StackAlt from './assets/stackalt.svg';
|
|
|
465
466
|
contentDirection: 'column', // for autocomplete parent block flex direction
|
|
466
467
|
contentPosition: 'relative', // for autocomplete parent block position
|
|
467
468
|
showOptionDuration: '640ms', // for autocomplete parent block animation duration
|
|
469
|
+
innerErrorPadding: '0px 15px', // for autocomplete error padding
|
|
470
|
+
innerErrorBackgroundColor: '#FBFBFB', // for autocomplete inner error message background color
|
|
468
471
|
|
|
469
472
|
contentTopWeight: 500, // for autocomplate top block font weight
|
|
470
473
|
contentTopSize: '16px', // for autocomplate top block font size
|
package/tui.config.js
CHANGED
|
@@ -205,6 +205,7 @@ module.exports = {
|
|
|
205
205
|
selectedHoverColor: '#373538', // for selected color ( when hover )
|
|
206
206
|
selectedBoxSizing: 'border-box', // for selected box sizing
|
|
207
207
|
selectedTransition: 'border-color 240ms', // for selected transition
|
|
208
|
+
selectedBackgroundColor: '#FBFBFB', // for selected background color
|
|
208
209
|
|
|
209
210
|
optionsBorderRadius: '6px', // for options block border radius
|
|
210
211
|
optionsBackgroundColor: '#FBFBFB', // for options block background color
|
|
@@ -276,6 +277,8 @@ module.exports = {
|
|
|
276
277
|
contentDirection: 'column', // for autocomplete parent block flex direction
|
|
277
278
|
contentPosition: 'relative', // for autocomplete parent block position
|
|
278
279
|
showOptionDuration: '640ms', // for autocomplete parent block animation duration
|
|
280
|
+
innerErrorPadding: '0px 15px', // for autocomplete error padding
|
|
281
|
+
innerErrorBackgroundColor: 'green', // for autocomplete inner error message background color
|
|
279
282
|
|
|
280
283
|
contentTopWeight: 500, // for autocomplate top block font weight
|
|
281
284
|
contentTopSize: '16px', // for autocomplate top block font size
|