@veracity/vui 2.20.0 → 2.20.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@veracity/vui",
3
- "version": "2.20.0",
3
+ "version": "2.20.2",
4
4
  "description": "Veracity UI is a React component library crafted for use within Veracity applications and pages. Based on Styled Components and @xstyled.",
5
5
  "module": "./dist/esm/index.js",
6
6
  "main": "./dist/cjs/index.js",
@@ -25,11 +25,10 @@ export const InputInputBase = styled.input`
25
25
 
26
26
  /** Displays an input element within the Input component. */
27
27
  export const InputInput = vui<'input', InputInputProps>((props, ref) => {
28
- const { type, className, autoComplete, ...rest } = props
28
+ const { className, autoComplete, ...rest } = props
29
29
  const inputProps = useInputContext()
30
30
  const mergedProps = { ...inputProps, ...props }
31
31
  const styles = useStyleConfig('Input', mergedProps)
32
-
33
32
  const aliasedProps = filterUndefined({
34
33
  'aria-disabled': mergedProps.disabled,
35
34
  'aria-label': mergedProps.ariaLabel,
@@ -86,6 +86,7 @@ export const Sidemenu = vui<'div', SidemenuProps>((props, ref) => {
86
86
  justifyContent={justifyContent}
87
87
  minH={size === 'lg' ? '56px' : '40px'}
88
88
  onClick={onToggle}
89
+ size="md"
89
90
  variant={isDark ? 'tertiaryLight' : 'tertiaryDark'}
90
91
  w="100%"
91
92
  >
@@ -63,6 +63,7 @@ export const SidemenuItem = vui<'button', SidemenuItemProps>((props, ref) => {
63
63
  justifyContent: 'space-between',
64
64
  onClick: () => onClick?.(),
65
65
  p: 0,
66
+ size: 'md',
66
67
  variant: isDark ? 'tertiaryLight' : 'tertiaryDark',
67
68
  w: '100%',
68
69
  ...styles.item,