@expressms/smartapp-ui 3.0.0-alpha.5 → 3.0.0-alpha.6
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.
|
@@ -46,10 +46,10 @@ export default (function (_a) {
|
|
|
46
46
|
clearIndicator: function (provided) { return (__assign(__assign({}, provided), { color: 'var(--color-icon-primary) !important', padding: '7px 14px 7px 0' })); },
|
|
47
47
|
// TODO update the skeletons when the design is ready
|
|
48
48
|
loadingMessage: function (provided) { return (__assign(__assign({}, provided), { padding: '2px', overflowY: 'hidden' })); },
|
|
49
|
-
placeholder: function (provided) { return (__assign(__assign({}, provided), { fontFamily: fontFamily, fontSize: '14px', fontWeight: '400', lineHeight: '
|
|
50
|
-
input: function (provided) { return (__assign(__assign({}, provided), { fontSize: '14px', fontWeight: '400', lineHeight: '
|
|
49
|
+
placeholder: function (provided) { return (__assign(__assign({}, provided), { fontFamily: fontFamily, fontSize: '14px', fontWeight: '400', lineHeight: '17px', color: 'var(--color-text-tertiary)', margin: 0 })); },
|
|
50
|
+
input: function (provided) { return (__assign(__assign({}, provided), { fontSize: '14px', fontWeight: '400', lineHeight: '17px', color: 'var(--color-text-primary)', caretColor: 'var(--color-icon-accent)', padding: 0, margin: 0, overflow: 'auto' })); },
|
|
51
51
|
noOptionsMessage: function (provided) { return (__assign(__assign({}, provided), { fontSize: '14px', fontWeight: 400, lineHeight: '18px', color: 'var(--color-text-secondary)', padding: '10px 6px' })); },
|
|
52
|
-
singleValue: function (provided) { return (__assign(__assign({}, provided), { display: 'flex', alignItems: 'center', gap: '8px', fontFamily: fontFamily, fontSize: '14px', fontWeight: 400, lineHeight: '
|
|
52
|
+
singleValue: function (provided) { return (__assign(__assign({}, provided), { display: 'flex', alignItems: 'center', gap: '8px', fontFamily: fontFamily, fontSize: '14px', fontWeight: 400, lineHeight: '17px', color: isDisabled ? 'var(--color-text-secondary)' : 'var(--color-text-primary)', margin: 0 })); },
|
|
53
53
|
option: function (provided) { return (__assign(__assign({}, provided), { display: 'flex', alignItems: 'center', minHeight: optionHeight ? "".concat(optionHeight, "px") : 'auto', height: optionHeight ? "".concat(optionHeight, "px") : 'auto', background: "".concat(COLORS.transparent, " !important"), padding: '0', cursor: 'pointer', boxSizing: 'content-box', '.smartapp-list-item__not-interactive': {
|
|
54
54
|
whiteSpace: 'normal',
|
|
55
55
|
}, '&.smartapp-option-with-tooltip': {
|
|
@@ -41,8 +41,8 @@ export default (function (_a) {
|
|
|
41
41
|
var padding = lastRowNumber === 1 ? "9.5px 12px 9.5px ".concat(paddingLeft) : "3px 4px 3px ".concat(isMaskRepresented ? paddingLeft : '4px');
|
|
42
42
|
return hasValue && isChipsVisible ? __assign(__assign({}, provided), { display: 'flex', gap: '8px', padding: padding }) : __assign(__assign({}, provided), { padding: padding });
|
|
43
43
|
},
|
|
44
|
-
placeholder: function (provided) { return (__assign(__assign({}, provided), { fontFamily: fontFamily, fontSize: '14px', fontWeight: '400', lineHeight: '
|
|
45
|
-
input: function (provided) { return (__assign(__assign({}, provided), { display: isMaxMembersAdded || isDisabled ? 'none' : 'grid', fontSize: '14px', fontWeight: '400', lineHeight: '
|
|
44
|
+
placeholder: function (provided) { return (__assign(__assign({}, provided), { fontFamily: fontFamily, fontSize: '14px', fontWeight: '400', lineHeight: '17px', color: 'var(--color-text-tertiary)', margin: 0 })); },
|
|
45
|
+
input: function (provided) { return (__assign(__assign({}, provided), { display: isMaxMembersAdded || isDisabled ? 'none' : 'grid', fontSize: '14px', fontWeight: '400', lineHeight: '17px', color: 'var(--color-text-primary)', caretColor: 'var(--color-icon-accent)', padding: 0, margin: 0, overflow: 'auto', gridTemplateColumns: 'max-content' })); },
|
|
46
46
|
multiValue: function (provided) { return (__assign(__assign({}, provided), { width: 'auto', background: 'unset', borderRadius: '1000px', margin: 0, '& > div:first-child': {
|
|
47
47
|
maxWidth: '100%',
|
|
48
48
|
}, '&:has(.multi-value-label-counter)': {
|