@everlywell/ui-kit 0.28.1 → 1.1.0

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.
@@ -68,6 +68,6 @@ declare const _default: {
68
68
  variant?: undefined;
69
69
  colorScheme?: string | undefined;
70
70
  } | undefined;
71
- parts: ("label" | "container" | "icon" | "control")[];
71
+ parts: ("container" | "icon" | "label" | "control")[];
72
72
  };
73
73
  export default _default;
@@ -1,11 +1,3 @@
1
- import { IconButtonProps as ChakraIconButtonProps, ThemingProps } from '@chakra-ui/react';
2
- import React from 'react';
3
- import { ICON_SET, IconKey } from '../../media/Icon/Icon';
4
- export type IconButtonProps = Omit<ChakraIconButtonProps, 'icon'> & ThemingProps<'IconButton'> & {
5
- icon: IconKey;
6
- };
7
- declare const IconButton: React.ForwardRefExoticComponent<Omit<ChakraIconButtonProps, "icon"> & ThemingProps<"IconButton"> & {
8
- icon: IconKey;
9
- } & React.RefAttributes<unknown>>;
10
- export { ICON_SET };
11
- export default IconButton;
1
+ import { IconButton as ChakraIconButton, IconButtonProps as ChakraIconButtonProps } from '@chakra-ui/react';
2
+ export type IconButtonProps = ChakraIconButtonProps;
3
+ export default ChakraIconButton;
@@ -49,7 +49,7 @@ declare const _default: {
49
49
  sm: {
50
50
  button: {};
51
51
  item: {
52
- fontSize: ("2xs" | "sm")[];
52
+ fontSize: ("sm" | "2xs")[];
53
53
  paddingX: string;
54
54
  paddingY: string;
55
55
  };
@@ -64,7 +64,7 @@ declare const _default: {
64
64
  };
65
65
  md: {
66
66
  item: {
67
- fontSize: ("3xs" | "lg")[];
67
+ fontSize: ("lg" | "3xs")[];
68
68
  paddingX: string;
69
69
  paddingY: string;
70
70
  };
@@ -4,7 +4,7 @@ interface RadioProps extends UseRadioProps {
4
4
  children?: ReactNode;
5
5
  removeCircle?: boolean;
6
6
  }
7
- declare const Radio: import("@chakra-ui/system/dist/system.types").ComponentWithAs<"input", RadioProps>;
7
+ declare const Radio: import("@chakra-ui/react").ComponentWithAs<"input", RadioProps>;
8
8
  export default Radio;
9
9
  export { RadioGroup, useRadio, useRadioGroup };
10
10
  export type { RadioProps, UseRadioProps, RadioGroupProps };
@@ -65,6 +65,6 @@ declare const _default: {
65
65
  variant?: undefined;
66
66
  colorScheme?: string | undefined;
67
67
  } | undefined;
68
- parts: ("tab" | "tablist" | "tabpanel" | "tabpanels" | "root" | "indicator")[];
68
+ parts: ("tab" | "tabpanel" | "tabpanels" | "root" | "tablist" | "indicator")[];
69
69
  };
70
70
  export default _default;