@televet/kibble-ui 1.10.0 → 1.10.2-beta.2f7t90e.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.
Files changed (66) hide show
  1. package/build/components/Avatar/avatar.component.d.ts +26 -0
  2. package/build/components/Avatar/avatar.config.d.ts +2 -0
  3. package/build/components/Avatar/avatar.types.d.ts +1 -0
  4. package/build/components/Avatar/index.d.ts +3 -0
  5. package/build/components/AvatarGroup/avatarGroup.component.d.ts +13 -0
  6. package/build/components/AvatarGroup/avatarGroup.utilities.d.ts +6 -0
  7. package/build/components/AvatarGroup/index.d.ts +1 -0
  8. package/build/components/Button/button.component.d.ts +13 -0
  9. package/build/components/Button/button.config.d.ts +16 -0
  10. package/build/components/Button/button.model.d.ts +5 -0
  11. package/build/components/Button/button.records.d.ts +2 -0
  12. package/build/components/Button/button.types.d.ts +8 -0
  13. package/build/components/Button/index.d.ts +3 -0
  14. package/build/components/Drawer/drawer.config.d.ts +13 -0
  15. package/build/components/Drawer/drawer.records.d.ts +13 -0
  16. package/build/components/Drawer/index.d.ts +1 -0
  17. package/build/components/Forms/Checkbox/checkbox.component.d.ts +7 -0
  18. package/build/components/Forms/Checkbox/checkbox.config.d.ts +2 -0
  19. package/build/components/Forms/Checkbox/checkbox.types.d.ts +2 -0
  20. package/build/components/Forms/Checkbox/components/CheckboxGroup/checkboxGroup.component.d.ts +15 -0
  21. package/build/components/Forms/Checkbox/index.d.ts +5 -0
  22. package/build/components/Forms/Radio/components/RadioGroup/radioGroup.component.d.ts +3 -2
  23. package/build/components/Forms/Radio/index.d.ts +1 -1
  24. package/build/components/Forms/Radio/radio.types.d.ts +0 -1
  25. package/build/components/Forms/index.d.ts +1 -0
  26. package/build/components/Icon/icon.component.d.ts +8 -0
  27. package/build/components/Icon/icon.config.d.ts +3 -0
  28. package/build/components/Icon/icon.records.d.ts +3 -0
  29. package/build/components/Icon/icon.types.d.ts +3 -0
  30. package/build/components/Icon/index.d.ts +2 -0
  31. package/build/components/Logo/index.d.ts +2 -0
  32. package/build/components/Logo/logo.component.d.ts +14 -0
  33. package/build/components/Logo/logo.config.d.ts +6 -0
  34. package/build/components/Logo/logo.records.d.ts +6 -0
  35. package/build/components/Logo/logo.types.d.ts +3 -0
  36. package/build/components/Logo/logos.d.ts +22 -0
  37. package/build/components/MediaAndIcons/AvatarGroup/avatarGroup.component.d.ts +13 -0
  38. package/build/components/MediaAndIcons/AvatarGroup/avatarGroup.utilities.d.ts +6 -0
  39. package/build/components/MediaAndIcons/AvatarGroup/index.d.ts +1 -0
  40. package/build/components/MediaAndIcons/Icon/icon.types.d.ts +1 -1
  41. package/build/components/Overlay/Menu/Components/MenuList/menuList.component.d.ts +5 -1
  42. package/build/components/Overlay/Menu/menu.component.d.ts +1 -3
  43. package/build/components/Textarea/index.d.ts +3 -0
  44. package/build/components/Textarea/textarea.component.d.ts +5 -0
  45. package/build/components/Textarea/textarea.config.d.ts +2 -0
  46. package/build/components/Textarea/textarea.types.d.ts +2 -0
  47. package/build/components/Tooltip/index.d.ts +3 -0
  48. package/build/components/Tooltip/tooltip.component.d.ts +8 -0
  49. package/build/components/Tooltip/tooltip.config.d.ts +8 -0
  50. package/build/components/Tooltip/tooltip.model.d.ts +4 -0
  51. package/build/components/Tooltip/tooltip.records.d.ts +9 -0
  52. package/build/components/Tooltip/tooltip.types.d.ts +4 -0
  53. package/build/components/Typography/Heading/heading.records.d.ts +2 -0
  54. package/build/components/Typography/Text/text.records.d.ts +2 -0
  55. package/build/index.js +483 -303
  56. package/build/index.js.map +1 -1
  57. package/build/providers/ThemeProvider/index.d.ts +4 -0
  58. package/build/providers/index.d.ts +1 -0
  59. package/build/shared/types.d.ts +1 -0
  60. package/build/theme/theme.model.d.ts +37 -0
  61. package/build/theme/theme.record.d.ts +2 -0
  62. package/build/theme/theme.types.d.ts +1 -0
  63. package/build/theme/tokens/colors/color.model.d.ts +74 -0
  64. package/build/theme/tokens/colors/color.type.d.ts +8 -0
  65. package/build/theme/tokens/shadows.d.ts +14 -0
  66. package/package.json +2 -2
@@ -0,0 +1,26 @@
1
+ import { AvatarProps as CAvatarProps, Placement } from '@chakra-ui/react';
2
+ import { CSSProperties } from 'react';
3
+ import { AvatarSize } from './avatar.types';
4
+ export declare enum AvatarVariant {
5
+ Green = "green",
6
+ Red = "red",
7
+ Blue = "blue",
8
+ Comet = "comet",
9
+ Number = "number",
10
+ Dashed = "dashed",
11
+ Image = "image"
12
+ }
13
+ export interface AvatarProps extends CAvatarProps {
14
+ name: string;
15
+ size?: AvatarSize;
16
+ isClinic?: boolean;
17
+ showTooltip?: boolean;
18
+ tooltipPlacement?: Placement;
19
+ style?: CSSProperties;
20
+ handleClick?: () => void;
21
+ showRemoveButton?: boolean;
22
+ handleRemoveButtonClick?: () => void;
23
+ variant?: AvatarVariant;
24
+ tooltipText?: string;
25
+ }
26
+ export declare const Avatar: ({ name, src, isClinic, size, showTooltip, tooltipPlacement, style, handleClick, showRemoveButton, handleRemoveButtonClick, variant, tooltipText, ...rest }: AvatarProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { ComponentStyleConfig } from '@chakra-ui/react';
2
+ export declare const AvatarConfig: ComponentStyleConfig;
@@ -0,0 +1 @@
1
+ export declare type AvatarSize = 'xs' | 'sm' | 'md' | 'lg';
@@ -0,0 +1,3 @@
1
+ export * from './avatar.component';
2
+ export * from './avatar.types';
3
+ export * from './avatar.config';
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { AvatarProps, AvatarSize } from 'components/Avatar';
3
+ export interface AvatarGroupProps {
4
+ avatars: AvatarProps[];
5
+ max?: number;
6
+ size?: AvatarSize;
7
+ handleAddButtonClick?: () => void;
8
+ showAddButton?: boolean;
9
+ addButtonTooltipText?: string;
10
+ showRemoveAvatarButton?: boolean;
11
+ handleRemoveButtonClick?: () => void;
12
+ }
13
+ export declare const AvatarGroup: ({ avatars, max, size, handleAddButtonClick, showAddButton, addButtonTooltipText, showRemoveAvatarButton, handleRemoveButtonClick, }: AvatarGroupProps) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ export declare const avatarSizeMap: {
2
+ xs: string;
3
+ sm: string;
4
+ md: string;
5
+ lg: string;
6
+ };
@@ -0,0 +1 @@
1
+ export * from './avatarGroup.component';
@@ -0,0 +1,13 @@
1
+ import React, { ReactNode } from 'react';
2
+ import { ButtonProps as ChakraButtonProps } from '@chakra-ui/react';
3
+ import { IconName } from '../Icon';
4
+ import { ButtonSizeType, ButtonVariantType } from './button.types';
5
+ export interface ButtonProps extends ChakraButtonProps {
6
+ children?: ReactNode;
7
+ variant?: ButtonVariantType;
8
+ size?: ButtonSizeType;
9
+ iconName?: IconName;
10
+ iconPosition?: 'left' | 'right';
11
+ darkMode?: boolean;
12
+ }
13
+ export declare const Button: React.ForwardRefExoticComponent<ButtonProps & React.RefAttributes<HTMLButtonElement>>;
@@ -0,0 +1,16 @@
1
+ import { ButtonStyleType } from './button.types';
2
+ export declare const ButtonVariantConfig: ButtonStyleType;
3
+ export declare const ButtonSizeConfig: {
4
+ lg: {
5
+ p: string;
6
+ };
7
+ md: {
8
+ p: string;
9
+ };
10
+ sm: {
11
+ p: string;
12
+ };
13
+ xs: {
14
+ p: string;
15
+ };
16
+ };
@@ -0,0 +1,5 @@
1
+ import { ButtonColorOptions } from './button.types';
2
+ import { AdaptiveColorMap } from '../../theme/tokens';
3
+ export interface ButtonVariantConfig extends AdaptiveColorMap<ButtonColorOptions> {
4
+ variant: 'solid' | 'outline' | 'ghost';
5
+ }
@@ -0,0 +1,2 @@
1
+ import { ButtonStyleConfig } from './button.types';
2
+ export declare const ButtonConfig: ButtonStyleConfig;
@@ -0,0 +1,8 @@
1
+ import { AdaptiveColorMap } from '../../theme/tokens';
2
+ export interface ButtonVariantConfigType extends AdaptiveColorMap<ButtonColorOptionsType> {
3
+ variant: 'solid' | 'outline' | 'ghost';
4
+ }
5
+ export declare type ButtonVariantType = 'primary' | 'primaryDestructive' | 'secondary' | 'secondaryDestructive' | 'secondarySubtle' | 'secondarySubtleDestructive' | 'tertiary' | 'tertiaryDestructive' | 'ghost' | 'ghostNeutral' | 'ghostDestructive';
6
+ export declare type ButtonColorOptionsType = 'content' | 'default' | 'hover' | 'active' | 'border';
7
+ export declare type ButtonSizeType = 'xs' | 'sm' | 'md' | 'lg';
8
+ export declare type ButtonStyleType = Record<ButtonVariantType, ButtonVariantConfigType>;
@@ -0,0 +1,3 @@
1
+ export * from './button.component';
2
+ export * from './button.types';
3
+ export * from './button.config';
@@ -0,0 +1,13 @@
1
+ export declare const DrawerConfig: {
2
+ variants: {
3
+ alwaysOpen: {
4
+ parts: string[];
5
+ dialog: {
6
+ pointerEvents: string;
7
+ };
8
+ dialogContainer: {
9
+ pointerEvents: string;
10
+ };
11
+ };
12
+ };
13
+ };
@@ -0,0 +1,13 @@
1
+ export declare const DrawerConfig: {
2
+ variants: {
3
+ alwaysOpen: {
4
+ parts: string[];
5
+ dialog: {
6
+ pointerEvents: string;
7
+ };
8
+ dialogContainer: {
9
+ pointerEvents: string;
10
+ };
11
+ };
12
+ };
13
+ };
@@ -0,0 +1 @@
1
+ export * from './drawer.config';
@@ -0,0 +1,7 @@
1
+ import { CheckboxProps as CCheckboxProps } from '@chakra-ui/react';
2
+ import { CheckboxSize, CheckboxVariant } from './checkbox.types';
3
+ export interface CheckboxProps extends CCheckboxProps {
4
+ size?: CheckboxSize;
5
+ variant?: CheckboxVariant;
6
+ }
7
+ export declare const Checkbox: ({ children, size, variant, isIndeterminate, ...rest }: CheckboxProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { ComponentStyleConfig } from '@chakra-ui/react';
2
+ export declare const CheckboxConfig: ComponentStyleConfig;
@@ -0,0 +1,2 @@
1
+ export declare type CheckboxSize = 'sm' | 'md' | 'lg';
2
+ export declare type CheckboxVariant = 'square' | 'round';
@@ -0,0 +1,15 @@
1
+ import { CheckboxGroupProps as CCheckboxGroupProps, SystemProps } from '@chakra-ui/react';
2
+ import { WithFormControlProps } from 'components/Forms/FormControl/formControl.component';
3
+ import React from 'react';
4
+ import { FlexDirection } from 'shared/types';
5
+ import { CheckboxProps } from '../../checkbox.component';
6
+ import { CheckboxSize } from '../../checkbox.types';
7
+ export interface CheckboxGroupProps extends WithFormControlProps, CCheckboxGroupProps {
8
+ size?: CheckboxSize;
9
+ checkboxes: CheckboxProps[];
10
+ direction?: FlexDirection;
11
+ spacing?: SystemProps['margin'];
12
+ $isFieldInline?: boolean;
13
+ }
14
+ declare const WrappedCheckboxGroup: React.FC<CheckboxGroupProps & WithFormControlProps>;
15
+ export { WrappedCheckboxGroup as CheckboxGroup };
@@ -0,0 +1,5 @@
1
+ export { CheckboxGroup as CCheckboxGroup, useCheckbox, useCheckboxGroup } from '@chakra-ui/react';
2
+ export * from './components/CheckboxGroup/checkboxGroup.component';
3
+ export * from './checkbox.component';
4
+ export * from './checkbox.config';
5
+ export * from './checkbox.types';
@@ -1,12 +1,13 @@
1
1
  import { RadioGroupProps as CRadioGroupProps, SystemProps } from '@chakra-ui/react';
2
2
  import { WithFormControlProps } from 'components/Forms/FormControl/formControl.component';
3
3
  import React from 'react';
4
+ import { FlexDirection } from 'shared/types';
4
5
  import { RadioProps } from '../../radio.component';
5
- import { RadioGroupDirection, RadioSize } from '../../radio.types';
6
+ import { RadioSize } from '../../radio.types';
6
7
  export interface RadioGroupProps extends WithFormControlProps, CRadioGroupProps {
7
8
  size?: RadioSize;
8
9
  radios: RadioProps[];
9
- direction?: RadioGroupDirection;
10
+ direction?: FlexDirection;
10
11
  spacing?: SystemProps['margin'];
11
12
  $isFieldInline?: boolean;
12
13
  }
@@ -1,4 +1,4 @@
1
- export { RadioGroup as CRadioGroup, useRadioGroup, useRadioGroupContext } from '@chakra-ui/react';
1
+ export { RadioGroup as CRadioGroup, useRadio, useRadioGroup } from '@chakra-ui/react';
2
2
  export * from './components/RadioGroup/radioGroup.component';
3
3
  export * from './radio.component';
4
4
  export * from './radio.config';
@@ -1,2 +1 @@
1
1
  export declare type RadioSize = 'sm' | 'md' | 'lg';
2
- export declare type RadioGroupDirection = 'row' | 'column';
@@ -1,4 +1,5 @@
1
1
  export * from './Button';
2
+ export * from './Checkbox';
2
3
  export * from './Textarea';
3
4
  export * from './TextInput';
4
5
  export * from './Radio';
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { IconColor, IconName, IconsSize } from './icon.types';
3
+ export interface IconProps {
4
+ name: IconName;
5
+ size?: IconsSize;
6
+ color?: IconColor;
7
+ }
8
+ export declare const Icon: React.ForwardRefExoticComponent<IconProps & React.RefAttributes<any>>;
@@ -0,0 +1,3 @@
1
+ import { IconName, IconsSize } from './icon.types';
2
+ export declare const IconMap: Record<IconName, any>;
3
+ export declare const IconSizeMap: Record<IconsSize, number>;
@@ -0,0 +1,3 @@
1
+ import { IconName, IconsSize } from './icon.types';
2
+ export declare const IconMap: Record<IconName, any>;
3
+ export declare const IconSizeMap: Record<IconsSize, number>;
@@ -0,0 +1,3 @@
1
+ export declare type IconName = 'alertCircle' | 'animalBird' | 'animalCat' | 'animalCow' | 'animalDog' | 'animalHorse' | 'arrowDownRight' | 'arrowCircle' | 'arrowLeft' | 'arrowRight' | 'arrowsIn' | 'arrowsOut' | 'article' | 'asterisk' | 'bell' | 'bellRinging' | 'bookmarkFilled' | 'bookmarkOutlined' | 'brush' | 'caduceus' | 'calendarDate' | 'calendarCheck' | 'calendarInfo' | 'calendarPen' | 'calendarOutlined' | 'camera' | 'cameraFlip' | 'cameraOff' | 'cancel' | 'cellphone' | 'cellphoneAlert' | 'chainLink' | 'chatBubbleFilled' | 'chatBubbleOutlined' | 'checkmark' | 'checkmarkBox' | 'checkmarkCircle' | 'checkmarkList' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUp' | 'circleDotted' | 'clock' | 'close' | 'closeCircle' | 'code' | 'conversation' | 'creditCardHand' | 'crossClipboard' | 'crossPaw' | 'crossHatPerson' | 'dogHouse' | 'dogHouseOutlined' | 'dollar' | 'dollarCircle' | 'dotsCircle' | 'dotsHorizontal' | 'dotsVertical' | 'doubleArrowCircle' | 'download' | 'dragDrop' | 'emailSend' | 'envelopeFilled' | 'envelopeOutlined' | 'eyedropper' | 'eyeOpen' | 'eyeSlash' | 'faceScreen' | 'formsFilled' | 'formsOutlined' | 'funnelFilled' | 'funnelOutlined' | 'gear' | 'grid' | 'horizontalLines' | 'house' | 'infoCircleFilled' | 'infoCircleOutlined' | 'input' | 'invoice' | 'invoiceOutlined' | 'largeTextInput' | 'list' | 'locationMarker' | 'locationMarkerGround' | 'lockRectangle' | 'lockRound' | 'loudspeaker' | 'magnifyingGlass' | 'manHeadset' | 'message' | 'messages' | 'messageClipboard' | 'messageEllipses' | 'messageGear' | 'messageLink' | 'microphone' | 'microphoneMute' | 'moveLeft' | 'moveRight' | 'multipleChoice' | 'notification' | 'paperAirplane' | 'paperAirplane2' | 'paperAirplaneRight' | 'paperclip' | 'paperPen' | 'paw' | 'paw2' | 'pawMagnifyingGlass' | 'pawOutlined' | 'pdfLogo' | 'pen' | 'penSquare' | 'person' | 'personAdd' | 'phone' | 'phoneButtons' | 'phoneDown' | 'phoneRing' | 'pill' | 'pillHand' | 'playingCards' | 'plus' | 'questionMark' | 'questionMarkCircle' | 'quilInk' | 'reactLogo' | 'record' | 'report' | 'robot' | 'smileyFace' | 'smileyFacePlus' | 'star' | 'star2' | 'star2Outlined' | 'starCircle' | 'team' | 'textEdit' | 'thumbsUp' | 'trashcan' | 'twoSquares' | 'upload' | 'videoCamera' | 'warningSign' | 'website';
2
+ export declare type IconsSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
3
+ export declare type IconColor = 'default' | 'subtle' | 'inactive' | 'active' | 'success' | 'warning' | 'error' | 'currentColor';
@@ -0,0 +1,2 @@
1
+ export * from './icon.component';
2
+ export * from './icon.types';
@@ -0,0 +1,2 @@
1
+ export * from './logo.component';
2
+ export * from './logo.types';
@@ -0,0 +1,14 @@
1
+ /// <reference types="react" />
2
+ import { LogoHoliday, LogoType, LogoColor } from './logo.types';
3
+ export interface ILogoProps {
4
+ type?: LogoType;
5
+ color?: LogoColor;
6
+ holiday?: LogoHoliday;
7
+ height?: number;
8
+ width?: number;
9
+ handleClick?: () => void;
10
+ }
11
+ export declare const Logo: {
12
+ ({ type, color, holiday, height, width, handleClick, }: ILogoProps): JSX.Element;
13
+ displayName: string;
14
+ };
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { Props } from 'framer-motion/types/types';
3
+ import { LogoColor, LogoHoliday } from './logo.types';
4
+ export declare const holidaysLogoIconMap: Record<LogoHoliday, React.FC<Props>>;
5
+ export declare const logoIconMap: Record<LogoColor, React.FC<Props>>;
6
+ export declare const fullLogoMap: Record<LogoColor, React.FC<Props>>;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ import { Props } from 'framer-motion/types/types';
3
+ import { LogoColor, LogoHoliday } from './logo.types';
4
+ export declare const holidaysLogoIconMap: Record<LogoHoliday, React.FC<Props>>;
5
+ export declare const logoIconMap: Record<LogoColor, React.FC<Props>>;
6
+ export declare const fullLogoMap: Record<LogoColor, React.FC<Props>>;
@@ -0,0 +1,3 @@
1
+ export declare type LogoHoliday = 'newYears' | 'valentines' | 'stPatricks' | 'easter1' | 'easter2' | 'easter3' | 'easter4' | 'easter5' | 'easter6' | 'mothersDay' | 'memorialDay' | 'fathersDay' | 'halloween' | 'thanksgiving' | 'christmas';
2
+ export declare type LogoType = 'full' | 'icon';
3
+ export declare type LogoColor = 'teal' | 'black' | 'white';
@@ -0,0 +1,22 @@
1
+ import { ReactComponent as TealLogo } from '../../assets/logos/teal.svg';
2
+ import { ReactComponent as TealLogoIcon } from '../../assets/logos/tealIcon.svg';
3
+ import { ReactComponent as BlackLogo } from '../../assets/logos/black.svg';
4
+ import { ReactComponent as BlackLogoIcon } from '../../assets/logos/blackIcon.svg';
5
+ import { ReactComponent as WhiteLogo } from '../../assets/logos/white.svg';
6
+ import { ReactComponent as WhiteLogoIcon } from '../../assets/logos/whiteIcon.svg';
7
+ import { ReactComponent as NewYearsLogoIcon } from '../../assets/logos/holidays/newYears.svg';
8
+ import { ReactComponent as ValentinesLogoIcon } from '../../assets/logos/holidays/valentines.svg';
9
+ import { ReactComponent as StPatricksLogoIcon } from '../../assets/logos/holidays/stPatricks.svg';
10
+ import { ReactComponent as Easter1LogoIcon } from '../../assets/logos/holidays/easter1.svg';
11
+ import { ReactComponent as Easter2LogoIcon } from '../../assets/logos/holidays/easter2.svg';
12
+ import { ReactComponent as Easter3LogoIcon } from '../../assets/logos/holidays/easter3.svg';
13
+ import { ReactComponent as Easter4LogoIcon } from '../../assets/logos/holidays/easter4.svg';
14
+ import { ReactComponent as Easter5LogoIcon } from '../../assets/logos/holidays/easter5.svg';
15
+ import { ReactComponent as Easter6LogoIcon } from '../../assets/logos/holidays/easter6.svg';
16
+ import { ReactComponent as MothersDayLogoIcon } from '../../assets/logos/holidays/mothersDay.svg';
17
+ import { ReactComponent as MemorialDayLogoIcon } from '../../assets/logos/holidays/memorialDay.svg';
18
+ import { ReactComponent as FathersDayLogoIcon } from '../../assets/logos/holidays/fathersDay.svg';
19
+ import { ReactComponent as HalloweenLogoIcon } from '../../assets/logos/holidays/halloween.svg';
20
+ import { ReactComponent as ThanksgivingLogoIcon } from '../../assets/logos/holidays/thanksgiving.svg';
21
+ import { ReactComponent as ChristmasLogoIcon } from '../../assets/logos/holidays/christmas.svg';
22
+ export { TealLogo, TealLogoIcon, BlackLogo, BlackLogoIcon, WhiteLogo, WhiteLogoIcon, NewYearsLogoIcon, ValentinesLogoIcon, StPatricksLogoIcon, Easter1LogoIcon, Easter2LogoIcon, Easter3LogoIcon, Easter4LogoIcon, Easter5LogoIcon, Easter6LogoIcon, MothersDayLogoIcon, MemorialDayLogoIcon, FathersDayLogoIcon, HalloweenLogoIcon, ThanksgivingLogoIcon, ChristmasLogoIcon, };
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import { AvatarProps, AvatarSize } from 'components/MediaAndIcons/Avatar';
3
+ export interface AvatarGroupProps {
4
+ avatars: AvatarProps[];
5
+ max?: number;
6
+ size?: AvatarSize;
7
+ handleAddButtonClick?: () => void;
8
+ showAddButton?: boolean;
9
+ addButtonTooltipText?: string;
10
+ showRemoveAvatarButton?: boolean;
11
+ handleRemoveButtonClick?: () => void;
12
+ }
13
+ export declare const AvatarGroup: ({ avatars, max, size, handleAddButtonClick, showAddButton, addButtonTooltipText, showRemoveAvatarButton, handleRemoveButtonClick, }: AvatarGroupProps) => JSX.Element;
@@ -0,0 +1,6 @@
1
+ export declare const avatarSizeMap: {
2
+ xs: string;
3
+ sm: string;
4
+ md: string;
5
+ lg: string;
6
+ };
@@ -0,0 +1 @@
1
+ export * from './avatarGroup.component';
@@ -1,3 +1,3 @@
1
- export declare type IconName = 'alertCircle' | 'animalBird' | 'animalCat' | 'animalCow' | 'animalDog' | 'animalHorse' | 'arrowCircle' | 'arrowDown' | 'arrowDownRight' | 'arrowLeft' | 'arrowRight' | 'arrowUp' | 'arrowsIn' | 'arrowsOut' | 'article' | 'asterisk' | 'award' | 'bell' | 'bone' | 'bellRinging' | 'bookmarkFilled' | 'bookmarkOutlined' | 'brush' | 'bulkSelect' | 'buttons' | 'caduceus' | 'calendarDate' | 'calendarCheck' | 'calendarInfo' | 'calendarPen' | 'calendarOutlined' | 'camera' | 'cameraFlip' | 'cameraOff' | 'cancel' | 'cellphone' | 'cellphoneAlert' | 'chainLink' | 'chatBubbleFilled' | 'chatBubbleOutlined' | 'checkmark' | 'checkmarkBox' | 'checkmarkCircle' | 'checkmarkList' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUp' | 'chevronUpDown' | 'circleDotted' | 'clockGear' | 'clock' | 'close' | 'closeCircle' | 'closedSign' | 'code' | 'conversation' | 'creditCardHand' | 'crossClipboard' | 'crossPaw' | 'crossHatPerson' | 'dogHouse' | 'dogHouseOutlined' | 'dollar' | 'dollarCircle' | 'dotsCircle' | 'dotsHorizontal' | 'dotsVertical' | 'doubleArrowCircle' | 'download' | 'dragDrop' | 'emailSend' | 'envelopeFilled' | 'envelopeOutlined' | 'eyedropper' | 'eyeOpen' | 'eyeSlash' | 'externalLink' | 'faceScreen' | 'formsFilled' | 'formsOutlined' | 'funnelFilled' | 'funnelOutlined' | 'gear' | 'grid' | 'horizontalLines' | 'house' | 'infoCircleFilled' | 'infoCircleOutlined' | 'input' | 'invoice' | 'invoiceOutlined' | 'kanbanBoard' | 'largeTextInput' | 'list' | 'locationMarker' | 'locationMarkerGround' | 'lockRectangle' | 'lockRound' | 'loudspeaker' | 'magnifyingGlass' | 'mailbox' | 'manHeadset' | 'mergeTags' | 'message' | 'messages' | 'messageClipboard' | 'messageEllipses' | 'messageGearOutlined' | 'messageGear' | 'messageLink' | 'microphone' | 'microphoneMute' | 'minus' | 'moveLeft' | 'moveRight' | 'multipleChoice' | 'notification' | 'paperAirplane' | 'paperAirplane2' | 'paperAirplaneRight' | 'paperclip' | 'paperPen' | 'paw' | 'paw2' | 'pawMagnifyingGlass' | 'pawOutlined' | 'pdfLogo' | 'pen' | 'penSquare' | 'person' | 'personAdd' | 'phone' | 'phoneButtons' | 'phoneDown' | 'phoneRing' | 'pill' | 'pillHand' | 'playingCards' | 'plus' | 'questionMark' | 'questionMarkCircle' | 'quilInk' | 'reactLogo' | 'record' | 'report' | 'robot' | 'robotOutlined' | 'smileyFace' | 'smileyFacePlus' | 'sort' | 'star' | 'star2' | 'star2Outlined' | 'starCircle' | 'stop' | 'stopRecording' | 'team' | 'televetV' | 'textEdit' | 'thumbsUp' | 'trashcan' | 'twoSquares' | 'upload' | 'videoCamera' | 'warningSign' | 'website' | 'wrench';
1
+ export declare type IconName = 'alertCircle' | 'animalBird' | 'animalCat' | 'animalCow' | 'animalDog' | 'animalHorse' | 'arrowCircle' | 'arrowDown' | 'arrowDownRight' | 'arrowLeft' | 'arrowRight' | 'arrowUp' | 'arrowsIn' | 'arrowsOut' | 'article' | 'asterisk' | 'award' | 'bell' | 'bone' | 'bellRinging' | 'bookmarkFilled' | 'bookmarkOutlined' | 'brush' | 'bulkSelect' | 'buttons' | 'caduceus' | 'calendarDate' | 'calendarCheck' | 'calendarInfo' | 'calendarPen' | 'calendarOutlined' | 'camera' | 'cameraFlip' | 'cameraOff' | 'cancel' | 'cellphone' | 'cellphoneAlert' | 'chainLink' | 'chatBubbleFilled' | 'chatBubbleOutlined' | 'checkmark' | 'checkmarkBox' | 'checkmarkCircle' | 'checkmarkList' | 'chevronDown' | 'chevronLeft' | 'chevronRight' | 'chevronUp' | 'chevronUpDown' | 'circleDotted' | 'clockGear' | 'clock' | 'close' | 'closeCircle' | 'closedSign' | 'code' | 'conversation' | 'creditCardHand' | 'crossClipboard' | 'crossPaw' | 'crossHatPerson' | 'dogHouse' | 'dogHouseOutlined' | 'dollar' | 'dollarCircle' | 'dotsCircle' | 'dotsHorizontal' | 'dotsVertical' | 'doubleArrowCircle' | 'download' | 'dragDrop' | 'emailSend' | 'envelopeFilled' | 'envelopeOutlined' | 'eyedropper' | 'eyeOpen' | 'eyeSlash' | 'externalLink' | 'faceScreen' | 'formsFilled' | 'formsOutlined' | 'funnelFilled' | 'funnelOutlined' | 'gear' | 'grid' | 'horizontalLines' | 'house' | 'infoCircleFilled' | 'infoCircleOutlined' | 'input' | 'invoice' | 'invoiceOutlined' | 'kanbanBoard' | 'largeTextInput' | 'list' | 'locationMarker' | 'locationMarkerGround' | 'lockRectangle' | 'lockRound' | 'loudspeaker' | 'magnifyingGlass' | 'mailbox' | 'manHeadset' | 'mergeTags' | 'message' | 'messages' | 'messageClipboard' | 'messageEllipses' | 'messageGearOutlined' | 'messageGear' | 'messageLink' | 'microphone' | 'microphoneMute' | 'minus' | 'moveLeft' | 'moveRight' | 'multipleChoice' | 'notification' | 'paperAirplane' | 'paperAirplane2' | 'paperAirplaneRight' | 'paperclip' | 'paperPen' | 'paw' | 'paw2' | 'pawMagnifyingGlass' | 'pawOutlined' | 'pdfLogo' | 'pen' | 'penSquare' | 'person' | 'personAdd' | 'phone' | 'phoneButtons' | 'phoneDown' | 'phoneRing' | 'pill' | 'pillHand' | 'playingCards' | 'plus' | 'questionMark' | 'questionMarkCircle' | 'quilInk' | 'reactLogo' | 'record' | 'report' | 'robot' | 'robotLink' | 'robotOutlined' | 'smileyFace' | 'smileyFacePlus' | 'sort' | 'star' | 'star2' | 'star2Outlined' | 'starCircle' | 'stop' | 'stopRecording' | 'team' | 'televetV' | 'textEdit' | 'thumbsUp' | 'trashcan' | 'twoSquares' | 'upload' | 'videoCamera' | 'warningSign' | 'website' | 'wrench';
2
2
  export declare type IconsSize = 'xs' | 'sm' | 'md' | 'lg' | 'xl' | '2xl';
3
3
  export declare type IconColor = 'default' | 'subtle' | 'inactive' | 'active' | 'success' | 'warning' | 'error' | 'currentColor';
@@ -10,6 +10,10 @@ export interface MenuListProps extends CMenuListProps {
10
10
  onMenuItemSelect?: ((selectedItem: MenuItemProps) => void) | ((selectedItem: MenuItemProps) => Promise<void>);
11
11
  onMenuItemSelectAll?: ((selectedItems: MenuItemProps[]) => void) | ((selectedItems: MenuItemProps[]) => Promise<void>);
12
12
  searchPlaceholder?: string;
13
+ minW?: string;
14
+ maxW?: string;
15
+ maxH?: string;
16
+ isMatchWidthSet?: boolean;
13
17
  }
14
- declare const MenuList: ({ canSelectAll, canSelectGroups, children, isGrouped, isMultiSelect, isSearchable, menuItems, onMenuItemSelect, onMenuItemSelectAll, searchPlaceholder, ...rest }: MenuListProps) => JSX.Element;
18
+ declare const MenuList: ({ canSelectAll, canSelectGroups, children, isGrouped, isMatchWidthSet, isMultiSelect, isSearchable, menuItems, onMenuItemSelect, onMenuItemSelectAll, searchPlaceholder, minW, maxW, maxH, ...rest }: MenuListProps) => JSX.Element;
15
19
  export default MenuList;
@@ -1,16 +1,14 @@
1
1
  import { FunctionComponent, ReactNode } from 'react';
2
2
  import { MenuProps as CMenuProps } from '@chakra-ui/react';
3
- import { MenuContainerProps } from './Components/MenuContainer/menuContainer.component';
4
3
  import { MenuButtonProps } from './Components/MenuButton/menuButton.component';
5
4
  import { MenuItemProps } from './Components/MenuItem/menuItem.component';
6
5
  import { MenuListProps } from './Components/MenuList/menuList.component';
7
6
  export interface MenuProps extends Omit<CMenuProps, 'children'> {
8
7
  buttonConfig?: MenuButtonProps;
9
- containerConfig?: MenuContainerProps;
10
8
  CustomTriggerElement?: FunctionComponent;
11
9
  listConfig?: MenuListProps;
12
10
  menuItems: MenuItemProps[];
13
11
  onMenuClose?: (value: (string | undefined)[]) => void;
14
12
  children?: ReactNode;
15
13
  }
16
- export declare const BetaMenu: ({ buttonConfig, containerConfig, CustomTriggerElement, listConfig, menuItems, onMenuClose, ...props }: MenuProps) => JSX.Element;
14
+ export declare const BetaMenu: ({ buttonConfig, CustomTriggerElement, listConfig, menuItems, onMenuClose, isLazy, ...props }: MenuProps) => JSX.Element;
@@ -0,0 +1,3 @@
1
+ export * from './textarea.component';
2
+ export * from './textarea.types';
3
+ export * from './textarea.config';
@@ -0,0 +1,5 @@
1
+ /// <reference types="react" />
2
+ import { TextareaProps as CTextareaProps } from '@chakra-ui/react';
3
+ export interface TextareaProps extends CTextareaProps {
4
+ }
5
+ export declare const Textarea: (props: TextareaProps) => JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { ComponentStyleConfig } from '@chakra-ui/react';
2
+ export declare const TextareaConfig: ComponentStyleConfig;
@@ -0,0 +1,2 @@
1
+ export declare type TextareaSize = 'sm' | 'md' | 'lg';
2
+ export declare type TextareaResizeOrientation = 'horizontal' | 'vertical' | 'none';
@@ -0,0 +1,3 @@
1
+ export * from './tooltip.component';
2
+ export * from './tooltip.types';
3
+ export * from './tooltip.config';
@@ -0,0 +1,8 @@
1
+ /// <reference types="react" />
2
+ import { PlacementWithLogical, TooltipProps as ChakraTooltipProps } from '@chakra-ui/react';
3
+ export interface TooltipProps extends ChakraTooltipProps {
4
+ label: string;
5
+ placement?: PlacementWithLogical;
6
+ titleCaseLabel?: boolean;
7
+ }
8
+ export declare const Tooltip: ({ children, label, openDelay, placement, titleCaseLabel, ...rest }: TooltipProps) => JSX.Element;
@@ -0,0 +1,8 @@
1
+ import { TooltipStyleConfig } from './tooltip.types';
2
+ export declare const TooltipGlobalStyle: {
3
+ '[id^=tooltip]': {
4
+ padding: string;
5
+ borderRadius: string;
6
+ };
7
+ };
8
+ export declare const TooltipConfig: TooltipStyleConfig;
@@ -0,0 +1,4 @@
1
+ import { AdaptiveColor } from '../../theme/tokens';
2
+ export interface TooltipStyleConfig {
3
+ color: AdaptiveColor;
4
+ }
@@ -0,0 +1,9 @@
1
+ import { TooltipStyleConfig } from './tooltip.model';
2
+ export declare const TooltipGlobalStyle: {
3
+ '[id^=tooltip]': {
4
+ padding: string;
5
+ borderRadius: string;
6
+ textTransform: string;
7
+ };
8
+ };
9
+ export declare const TooltipConfig: TooltipStyleConfig;
@@ -0,0 +1,4 @@
1
+ import { AdaptiveColor } from '../../theme/tokens';
2
+ export interface TooltipStyleConfig {
3
+ color: AdaptiveColor;
4
+ }
@@ -0,0 +1,2 @@
1
+ import { HeadingStyleConfig } from './heading.types';
2
+ export declare const HeadingConfig: HeadingStyleConfig;
@@ -0,0 +1,2 @@
1
+ import { ComponentStyleConfig } from '@chakra-ui/theme';
2
+ export declare const TextConfig: ComponentStyleConfig;