@xqmsg/ui-core 0.19.5 → 0.19.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.
- package/dist/theme/components/form-error.d.ts +0 -1
- package/dist/theme/components/form-label.d.ts +0 -1
- package/dist/theme/components/form.d.ts +0 -1
- package/dist/ui-core.cjs.development.js +9 -9
- package/dist/ui-core.cjs.development.js.map +1 -1
- package/dist/ui-core.cjs.production.min.js +1 -1
- package/dist/ui-core.cjs.production.min.js.map +1 -1
- package/dist/ui-core.esm.js +9 -9
- package/dist/ui-core.esm.js.map +1 -1
- package/package.json +1 -1
- package/src/components/input/index.tsx +1 -1
- package/src/theme/components/form-error.ts +2 -2
- package/src/theme/components/form-label.ts +2 -2
- package/src/theme/components/form.ts +2 -2
- package/src/theme/components/table.ts +1 -1
- package/src/theme/foundations/colors.ts +1 -1
|
@@ -298,7 +298,7 @@ var fill = {
|
|
|
298
298
|
primary: '#74748033',
|
|
299
299
|
secondary: '#74748029',
|
|
300
300
|
tertiary: '#7474801F',
|
|
301
|
-
quaternary: '
|
|
301
|
+
quaternary: '#7474800D'
|
|
302
302
|
},
|
|
303
303
|
success: '#d8f1b8',
|
|
304
304
|
error: '#ffbdb9',
|
|
@@ -1976,7 +1976,7 @@ function Input(_ref) {
|
|
|
1976
1976
|
id: name,
|
|
1977
1977
|
isInvalid: isInvalid,
|
|
1978
1978
|
position: "relative",
|
|
1979
|
-
py: label || helperText || isInvalid ?
|
|
1979
|
+
py: label || helperText || isInvalid ? 5 : 0
|
|
1980
1980
|
}, label && inputType !== 'checkbox' && /*#__PURE__*/React__default.createElement(Label$1, {
|
|
1981
1981
|
tooltipText: tooltipText,
|
|
1982
1982
|
label: label,
|
|
@@ -3490,10 +3490,10 @@ function baseStyleRequiredIndicator() {
|
|
|
3490
3490
|
|
|
3491
3491
|
function baseStyleHelperText() {
|
|
3492
3492
|
return {
|
|
3493
|
-
mt: 1,
|
|
3493
|
+
// mt: 1,
|
|
3494
3494
|
ml: 1,
|
|
3495
3495
|
color: colors.label.secondary.light,
|
|
3496
|
-
fontSize: '
|
|
3496
|
+
fontSize: '11px'
|
|
3497
3497
|
};
|
|
3498
3498
|
}
|
|
3499
3499
|
|
|
@@ -3516,9 +3516,9 @@ function baseStyleText() {
|
|
|
3516
3516
|
color: colors.label.error,
|
|
3517
3517
|
position: 'absolute',
|
|
3518
3518
|
bottom: 0,
|
|
3519
|
-
mt: 1,
|
|
3519
|
+
// mt: 1,
|
|
3520
3520
|
ml: 1,
|
|
3521
|
-
fontSize: '
|
|
3521
|
+
fontSize: '11px'
|
|
3522
3522
|
};
|
|
3523
3523
|
}
|
|
3524
3524
|
|
|
@@ -3542,12 +3542,12 @@ var FormError = {
|
|
|
3542
3542
|
};
|
|
3543
3543
|
|
|
3544
3544
|
var baseStyle$6 = {
|
|
3545
|
-
fontSize: '
|
|
3545
|
+
fontSize: '11px',
|
|
3546
3546
|
position: 'absolute',
|
|
3547
3547
|
top: 0,
|
|
3548
3548
|
display: 'flex',
|
|
3549
3549
|
ml: 1,
|
|
3550
|
-
mb: 1,
|
|
3550
|
+
// mb: 1,
|
|
3551
3551
|
color: colors.label.primary.light,
|
|
3552
3552
|
opacity: 1
|
|
3553
3553
|
};
|
|
@@ -3847,7 +3847,7 @@ var baseStyle$b = {
|
|
|
3847
3847
|
td: {
|
|
3848
3848
|
h: '26px ',
|
|
3849
3849
|
lineHeight: 'normal',
|
|
3850
|
-
bg: colors.fill.light.
|
|
3850
|
+
bg: colors.fill.light.quaternary,
|
|
3851
3851
|
_first: {
|
|
3852
3852
|
borderTopLeftRadius: 'md',
|
|
3853
3853
|
borderBottomLeftRadius: 'md'
|