@xqmsg/ui-core 0.19.4 → 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/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "0.19.4",
2
+ "version": "0.19.6",
3
3
  "license": "MIT",
4
4
  "main": "dist/index.js",
5
5
  "typings": "dist/index.d.ts",
@@ -246,7 +246,7 @@ export function Input<T extends FieldValues>({
246
246
  id={name}
247
247
  isInvalid={isInvalid}
248
248
  position="relative"
249
- py={label || helperText || isInvalid ? 6 : 0}
249
+ py={label || helperText || isInvalid ? 5 : 0}
250
250
  >
251
251
  {label && inputType !== 'checkbox' && (
252
252
  <Label
@@ -21,7 +21,7 @@ export const Toolbar: React.FC<ToolbarProps> = ({
21
21
  <Flex flexDirection="column" borderBottom="0.5px solid #3C3C432E">
22
22
  <Flex
23
23
  height="52px"
24
- px="13px"
24
+ px="32px"
25
25
  alignItems="center"
26
26
  justifyContent="space-between"
27
27
  background="white"
@@ -7,9 +7,9 @@ function baseStyleText() {
7
7
  color: colors.label.error,
8
8
  position: 'absolute',
9
9
  bottom: 0,
10
- mt: 1,
10
+ // mt: 1,
11
11
  ml: 1,
12
- fontSize: '13px',
12
+ fontSize: '11px',
13
13
  };
14
14
  }
15
15
 
@@ -1,12 +1,12 @@
1
1
  import colors from '../foundations/colors';
2
2
 
3
3
  const baseStyle = {
4
- fontSize: '13px',
4
+ fontSize: '11px',
5
5
  position: 'absolute',
6
6
  top: 0,
7
7
  display: 'flex',
8
8
  ml: 1,
9
- mb: 1,
9
+ // mb: 1,
10
10
  color: colors.label.primary.light,
11
11
  opacity: 1,
12
12
  };
@@ -11,10 +11,10 @@ function baseStyleRequiredIndicator() {
11
11
 
12
12
  function baseStyleHelperText() {
13
13
  return {
14
- mt: 1,
14
+ // mt: 1,
15
15
  ml: 1,
16
16
  color: colors.label.secondary.light,
17
- fontSize: '13px',
17
+ fontSize: '11px',
18
18
  };
19
19
  }
20
20
 
@@ -17,7 +17,7 @@ const baseStyle = {
17
17
  td: {
18
18
  h: '26px ',
19
19
  lineHeight: 'normal',
20
- bg: colors.fill.light.tertiary,
20
+ bg: colors.fill.light.quaternary,
21
21
  _first: {
22
22
  borderTopLeftRadius: 'md',
23
23
  borderBottomLeftRadius: 'md',
@@ -79,7 +79,7 @@ const fill = {
79
79
  primary: '#74748033',
80
80
  secondary: '#74748029',
81
81
  tertiary: '#7474801F',
82
- quaternary: ':#7474800D',
82
+ quaternary: '#7474800D',
83
83
  },
84
84
  success: '#d8f1b8',
85
85
  error: '#ffbdb9',