@ssa-ui-kit/core 2.30.0 → 2.32.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 (34) hide show
  1. package/dist/components/Chip/Chip.d.ts +2 -0
  2. package/dist/components/Chip/constants.d.ts +22 -0
  3. package/dist/components/Chip/helpers.d.ts +13 -0
  4. package/dist/components/Chip/index.d.ts +2 -0
  5. package/dist/components/Chip/styles.d.ts +35 -0
  6. package/dist/components/Chip/types.d.ts +23 -0
  7. package/dist/components/DatePicker/styles.d.ts +0 -1
  8. package/dist/components/DateRangePicker/components/DatesListWrapper.d.ts +0 -1
  9. package/dist/components/DateRangePicker/styles.d.ts +0 -2
  10. package/dist/components/Filters/FilterBlockWrapper.d.ts +0 -1
  11. package/dist/components/JsonSchemaForm/constants.d.ts +1 -0
  12. package/dist/components/JsonSchemaForm/index.d.ts +2 -0
  13. package/dist/components/JsonSchemaForm/types.d.ts +6 -0
  14. package/dist/components/PersonInfo/PersonInfo.d.ts +3 -0
  15. package/dist/components/PersonInfo/PersonInfoAvatar.d.ts +3 -0
  16. package/dist/components/PersonInfo/PersonInfoBadges.d.ts +8 -0
  17. package/dist/components/PersonInfo/PersonInfoCounter.d.ts +3 -0
  18. package/dist/components/PersonInfo/PersonInfoIcon.d.ts +7 -0
  19. package/dist/components/PersonInfo/PersonInfoValue.d.ts +3 -0
  20. package/dist/components/PersonInfo/constants.d.ts +9 -0
  21. package/dist/components/PersonInfo/helpers.d.ts +11 -0
  22. package/dist/components/PersonInfo/index.d.ts +2 -0
  23. package/dist/components/PersonInfo/styles.d.ts +71 -0
  24. package/dist/components/PersonInfo/types.d.ts +48 -0
  25. package/dist/components/Tooltip/types.d.ts +1 -0
  26. package/dist/components/Typeahead/components/TypeaheadOption.d.ts +1 -1
  27. package/dist/components/Typeahead/styles.d.ts +4 -1
  28. package/dist/components/Typeahead/types.d.ts +1 -0
  29. package/dist/components/UserProfile/styles.d.ts +0 -2
  30. package/dist/components/Wrapper/Wrapper.d.ts +0 -1
  31. package/dist/components/index.d.ts +2 -0
  32. package/dist/index.js +772 -78
  33. package/dist/index.js.map +1 -1
  34. package/package.json +3 -3
@@ -0,0 +1,2 @@
1
+ import { ChipProps } from './types';
2
+ export declare const Chip: import("react").ForwardRefExoticComponent<ChipProps & import("react").RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,22 @@
1
+ export declare const VARIANTS: {
2
+ readonly OUTLINED: "outlined";
3
+ readonly FILLED: "filled";
4
+ };
5
+ export declare const COLORS: {
6
+ readonly DEFAULT: "default";
7
+ readonly PRIMARY: "primary";
8
+ readonly SUCCESS: "success";
9
+ readonly ERROR: "error";
10
+ readonly INFO: "info";
11
+ readonly WARNING: "warning";
12
+ };
13
+ export declare const mapSizes: {
14
+ small: import("@emotion/react").SerializedStyles;
15
+ medium: import("@emotion/react").SerializedStyles;
16
+ large: import("@emotion/react").SerializedStyles;
17
+ };
18
+ export declare const ICON_SIZES: {
19
+ readonly small: 12;
20
+ readonly medium: 14;
21
+ readonly large: 16;
22
+ };
@@ -0,0 +1,13 @@
1
+ import { Theme } from '@emotion/react';
2
+ import { ChipProps } from './types';
3
+ type SemanticColor = Exclude<ChipProps['color'], 'default' | undefined>;
4
+ type ColorConfig = {
5
+ main: string;
6
+ bg: string;
7
+ };
8
+ export declare const colorMap: (theme: Theme) => Record<SemanticColor, ColorConfig>;
9
+ export declare const getVariantColors: (theme: Theme, variant: ChipProps["variant"], color: ChipProps["color"], disabled: boolean) => {
10
+ chipStyles: import("@emotion/react").SerializedStyles;
11
+ iconColor: string | undefined;
12
+ };
13
+ export {};
@@ -0,0 +1,2 @@
1
+ export * from './Chip';
2
+ export type { ChipProps, ChipVariant, ChipColor, ChipSize } from './types';
@@ -0,0 +1,35 @@
1
+ import { Theme } from '@emotion/react';
2
+ import { CommonProps } from '../../types/emotion';
3
+ export declare const ChipBase: import("@emotion/styled").StyledComponent<{
4
+ theme?: Theme;
5
+ as?: React.ElementType;
6
+ } & CommonProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
7
+ export declare const small: import("@emotion/react").SerializedStyles;
8
+ export declare const medium: import("@emotion/react").SerializedStyles;
9
+ export declare const large: import("@emotion/react").SerializedStyles;
10
+ export declare const filled: (theme: Theme) => import("@emotion/react").SerializedStyles;
11
+ export declare const filledDisabled: (theme: Theme) => import("@emotion/react").SerializedStyles;
12
+ export declare const outlined: (theme: Theme) => import("@emotion/react").SerializedStyles;
13
+ export declare const outlinedDisabled: (theme: Theme) => import("@emotion/react").SerializedStyles;
14
+ export declare const clickable: import("@emotion/react").SerializedStyles;
15
+ export declare const clickableDisabled: import("@emotion/react").SerializedStyles;
16
+ export declare const IconWrapper: import("@emotion/styled").StyledComponent<{
17
+ theme?: Theme;
18
+ as?: React.ElementType;
19
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
20
+ export declare const AvatarWrapper: import("@emotion/styled").StyledComponent<{
21
+ theme?: Theme;
22
+ as?: React.ElementType;
23
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
24
+ export declare const TitleWrapper: import("@emotion/styled").StyledComponent<{
25
+ theme?: Theme;
26
+ as?: React.ElementType;
27
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
28
+ export declare const LabelWrapper: import("@emotion/styled").StyledComponent<{
29
+ theme?: Theme;
30
+ as?: React.ElementType;
31
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
32
+ export declare const DeleteIconButton: import("@emotion/styled").StyledComponent<{
33
+ theme?: Theme;
34
+ as?: React.ElementType;
35
+ }, import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
@@ -0,0 +1,23 @@
1
+ import { CommonProps } from '../../types/emotion';
2
+ import { Interpolation, Theme } from '@emotion/react';
3
+ import { ReactNode, MouseEventHandler } from 'react';
4
+ import { IconProps } from '../Icon/types';
5
+ export type ChipVariant = 'filled' | 'outlined';
6
+ export type ChipColor = 'default' | 'primary' | 'success' | 'error' | 'info' | 'warning';
7
+ export type ChipSize = 'small' | 'medium' | 'large';
8
+ export interface ChipProps extends CommonProps {
9
+ label: ReactNode;
10
+ title?: ReactNode;
11
+ variant?: ChipVariant;
12
+ color?: ChipColor;
13
+ size?: ChipSize;
14
+ disabled?: boolean;
15
+ icon?: IconProps['name'];
16
+ avatar?: ReactNode;
17
+ onDelete?: MouseEventHandler<HTMLButtonElement>;
18
+ deleteIcon?: IconProps['name'];
19
+ showIcon?: boolean;
20
+ onClick?: MouseEventHandler<HTMLDivElement>;
21
+ clickable?: boolean;
22
+ css?: Interpolation<Theme>;
23
+ }
@@ -2,7 +2,6 @@ export declare const DaysViewCell: import("@emotion/styled").StyledComponent<{
2
2
  theme?: import("@emotion/react").Theme;
3
3
  as?: React.ElementType;
4
4
  } & {
5
- avatarSize?: number;
6
5
  direction?: string;
7
6
  alignItems?: string;
8
7
  fade?: boolean;
@@ -2,7 +2,6 @@ export declare const DatesListWrapper: import("@emotion/styled").StyledComponent
2
2
  theme?: import("@emotion/react").Theme;
3
3
  as?: React.ElementType;
4
4
  } & {
5
- avatarSize?: number;
6
5
  direction?: string;
7
6
  alignItems?: string;
8
7
  fade?: boolean;
@@ -2,7 +2,6 @@ export declare const DaysViewCell: import("@emotion/styled").StyledComponent<{
2
2
  theme?: import("@emotion/react").Theme;
3
3
  as?: React.ElementType;
4
4
  } & {
5
- avatarSize?: number;
6
5
  direction?: string;
7
6
  alignItems?: string;
8
7
  fade?: boolean;
@@ -38,7 +37,6 @@ export declare const TriggerWrapper: import("@emotion/styled").StyledComponent<{
38
37
  theme?: import("@emotion/react").Theme;
39
38
  as?: React.ElementType;
40
39
  } & {
41
- avatarSize?: number;
42
40
  direction?: string;
43
41
  alignItems?: string;
44
42
  fade?: boolean;
@@ -2,7 +2,6 @@ export declare const FilterBlockWrapper: import("@emotion/styled").StyledCompone
2
2
  theme?: import("@emotion/react").Theme;
3
3
  as?: React.ElementType;
4
4
  } & {
5
- avatarSize?: number;
6
5
  direction?: string;
7
6
  alignItems?: string;
8
7
  fade?: boolean;
@@ -0,0 +1 @@
1
+ export declare const DEFAULT_AVATAR_SIZE = 24;
@@ -11,3 +11,5 @@ declare const Form: import("@emotion/styled").StyledComponent<FormProps<unknown,
11
11
  theme?: import("@emotion/react").Theme;
12
12
  }, {}, {}>;
13
13
  export { Form, Templates, Theme, Widgets, Fields, generateTemplates, generateWidgets, generateFields, };
14
+ export * from './constants';
15
+ export type * from './types';
@@ -0,0 +1,6 @@
1
+ export type SelectOptionSchemaExtension = {
2
+ avatar?: string;
3
+ };
4
+ export type SelectWidgetUiOptions = {
5
+ typeaheadAvatarSize?: number;
6
+ };
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { PersonInfoProps } from './types';
3
+ export declare const PersonInfo: React.ForwardRefExoticComponent<PersonInfoProps & React.RefAttributes<HTMLDivElement>>;
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { PersonInfoAvatarProps } from './types';
3
+ export declare const PersonInfoAvatar: React.FC<PersonInfoAvatarProps>;
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import { PersonInfoStyles } from './types';
3
+ interface PersonInfoBadgesProps {
4
+ badges: React.ReactNode | (string | React.ReactNode)[];
5
+ styles?: PersonInfoStyles;
6
+ }
7
+ export declare const PersonInfoBadges: React.FC<PersonInfoBadgesProps>;
8
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { PersonInfoCounterProps } from './types';
3
+ export declare const PersonInfoCounter: React.FC<PersonInfoCounterProps>;
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ import type { IconProps } from '../Icon/types';
3
+ interface PersonInfoIconProps {
4
+ icon: IconProps['name'] | React.ReactNode;
5
+ }
6
+ export declare const PersonInfoIcon: React.FC<PersonInfoIconProps>;
7
+ export {};
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ import { PersonInfoValueProps } from './types';
3
+ export declare const PersonInfoValue: React.FC<PersonInfoValueProps>;
@@ -0,0 +1,9 @@
1
+ import type { Theme } from '@emotion/react';
2
+ type BadgeColorName = keyof MainColors;
3
+ export declare const DEFAULT_BADGE_COLORS: Array<keyof MainColors>;
4
+ interface BadgeColorConfig {
5
+ text: string;
6
+ bg: string;
7
+ }
8
+ export declare const BADGE_COLORS: (theme: Theme) => Record<BadgeColorName, BadgeColorConfig>;
9
+ export {};
@@ -0,0 +1,11 @@
1
+ export declare const getLinkAttributes: (link?: string, openLinkInNewTab?: boolean) => {
2
+ as: "a";
3
+ href: string | undefined;
4
+ target: string | undefined;
5
+ rel: string | undefined;
6
+ } | {
7
+ as?: undefined;
8
+ href?: undefined;
9
+ target?: undefined;
10
+ rel?: undefined;
11
+ };
@@ -0,0 +1,2 @@
1
+ export * from './PersonInfo';
2
+ export * from './types';
@@ -0,0 +1,71 @@
1
+ import { Interpolation, Theme } from '@emotion/react';
2
+ import { CommonProps } from '../../types/emotion';
3
+ export declare const PersonInfoBase: import("@emotion/styled").StyledComponent<{
4
+ theme?: Theme;
5
+ as?: React.ElementType;
6
+ } & CommonProps, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
7
+ export declare const PersonInfoHeader: import("@emotion/styled").StyledComponent<{
8
+ theme?: Theme;
9
+ as?: React.ElementType;
10
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
11
+ export declare const IconWrapper: import("@emotion/styled").StyledComponent<{
12
+ theme?: Theme;
13
+ as?: React.ElementType;
14
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
15
+ export declare const TitleWrapper: import("@emotion/styled").StyledComponent<{
16
+ theme?: Theme;
17
+ as?: React.ElementType;
18
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
19
+ export declare const Title: import("@emotion/styled").StyledComponent<{
20
+ theme?: Theme;
21
+ as?: React.ElementType;
22
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
23
+ export declare const Row: import("@emotion/styled").StyledComponent<{
24
+ theme?: Theme;
25
+ as?: React.ElementType;
26
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
27
+ export declare const TextBase: import("@emotion/styled").StyledComponent<{
28
+ theme?: Theme;
29
+ as?: React.ElementType;
30
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
31
+ export declare const ValueWithCounter: import("@emotion/styled").StyledComponent<{
32
+ theme?: Theme;
33
+ as?: React.ElementType;
34
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
35
+ export declare const Counter: import("@emotion/styled").StyledComponent<{
36
+ theme?: Theme;
37
+ as?: React.ElementType;
38
+ } & import("react").ClassAttributes<HTMLSpanElement> & import("react").HTMLAttributes<HTMLSpanElement> & {
39
+ theme?: Theme;
40
+ }, {}, {}>;
41
+ export declare const CounterTooltipContent: import("@emotion/styled").StyledComponent<{
42
+ theme?: Theme;
43
+ as?: React.ElementType;
44
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
45
+ export declare const CounterTooltipList: import("@emotion/styled").StyledComponent<{
46
+ theme?: Theme;
47
+ as?: React.ElementType;
48
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
49
+ export declare const AttributesList: import("@emotion/styled").StyledComponent<{
50
+ theme?: Theme;
51
+ as?: React.ElementType;
52
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
53
+ export declare const AvatarWrapper: import("@emotion/styled").StyledComponent<{
54
+ theme?: Theme;
55
+ as?: React.ElementType;
56
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
57
+ export declare const BadgeWrapper: import("@emotion/styled").StyledComponent<{
58
+ theme?: Theme;
59
+ as?: React.ElementType;
60
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
61
+ export declare const StyledBadge: import("@emotion/styled").StyledComponent<Omit<Omit<import("react").HTMLProps<HTMLDivElement>, "size"> & import("../Badge/types").BadgeProps, "ref"> & import("react").RefAttributes<HTMLDivElement> & {
62
+ theme?: Theme;
63
+ }, {}, {}>;
64
+ export declare const CustomBadge: import("@emotion/styled").StyledComponent<{
65
+ theme?: Theme;
66
+ as?: React.ElementType;
67
+ } & {
68
+ colorName: keyof MainColors;
69
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
70
+ export declare const personInfoValueLinkStyles: Interpolation<Theme>;
71
+ export declare const avatarWrapperLinkStyles: Interpolation<Theme>;
@@ -0,0 +1,48 @@
1
+ import { ReactNode } from 'react';
2
+ import { Interpolation, Theme } from '@emotion/react';
3
+ import { CommonProps } from '../../types/emotion';
4
+ import { IconProps } from '../Icon/types';
5
+ import { getLinkAttributes } from './helpers';
6
+ type PersonInfoStyleKeys = 'title' | 'avatarName' | 'counter' | 'attributes' | 'badge' | 'badgeItem' | 'value' | 'description';
7
+ export type PersonInfoStyles = Partial<Record<PersonInfoStyleKeys, Interpolation<Theme>>>;
8
+ export interface PersonInfoCounterTooltipUser {
9
+ id: string | number;
10
+ name: string;
11
+ avatar: string;
12
+ link?: string;
13
+ openLinkInNewTab?: boolean;
14
+ }
15
+ export interface PersonInfoCounterTooltip {
16
+ users: PersonInfoCounterTooltipUser[];
17
+ }
18
+ export type PersonInfoLinkAttributes = ReturnType<typeof getLinkAttributes>;
19
+ export interface PersonInfoValueProps {
20
+ value: string;
21
+ css?: Interpolation<Theme>;
22
+ linkAttributes?: PersonInfoLinkAttributes;
23
+ }
24
+ export interface PersonInfoProps extends CommonProps {
25
+ title: string;
26
+ icon?: IconProps['name'] | ReactNode;
27
+ value?: string;
28
+ badges?: ReactNode | (string | ReactNode)[];
29
+ avatar?: string;
30
+ counterTooltip?: PersonInfoCounterTooltip;
31
+ attributes?: (string | ReactNode)[];
32
+ description?: string;
33
+ styles?: PersonInfoStyles;
34
+ link?: string;
35
+ openLinkInNewTab?: boolean;
36
+ }
37
+ export interface PersonInfoAvatarProps {
38
+ avatar?: string;
39
+ value?: string;
40
+ styles?: PersonInfoStyles;
41
+ link?: string;
42
+ openLinkInNewTab?: boolean;
43
+ }
44
+ export interface PersonInfoCounterProps {
45
+ counterTooltip?: PersonInfoCounterTooltip;
46
+ css?: PersonInfoStyles['counter'];
47
+ }
48
+ export {};
@@ -12,6 +12,7 @@ export interface TooltipProps extends CommonProps {
12
12
  enableClick?: boolean;
13
13
  enableClientPoint?: boolean;
14
14
  offsetOptions?: OffsetOptions;
15
+ allowHoverContent?: boolean;
15
16
  size?: TooltipSize;
16
17
  hasArrow?: boolean;
17
18
  arrowProps?: TooltipArrowProps;
@@ -1,2 +1,2 @@
1
1
  import { TypeaheadItemProps } from '../types';
2
- export declare const TypeaheadOption: ({ children, ...rest }: TypeaheadItemProps) => import("@emotion/react/jsx-runtime").JSX.Element;
2
+ export declare const TypeaheadOption: ({ children, avatar, ...rest }: TypeaheadItemProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -18,6 +18,10 @@ export declare const TypeaheadItem: import("@emotion/styled").StyledComponent<{
18
18
  } & {
19
19
  isDisabled?: boolean;
20
20
  }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLDivElement>, HTMLDivElement>, {}>;
21
+ export declare const TypeaheadItemAvatar: import("@emotion/styled").StyledComponent<{
22
+ theme?: Theme;
23
+ as?: React.ElementType;
24
+ }, import("react").DetailedHTMLProps<import("react").HTMLAttributes<HTMLSpanElement>, HTMLSpanElement>, {}>;
21
25
  export declare const TypeaheadItemLabel: import("@emotion/styled").StyledComponent<{
22
26
  theme?: Theme;
23
27
  as?: React.ElementType;
@@ -31,7 +35,6 @@ export declare const TypeaheadInputsGroupWrapper: import("@emotion/styled").Styl
31
35
  theme?: Theme;
32
36
  as?: React.ElementType;
33
37
  } & {
34
- avatarSize?: number;
35
38
  direction?: string;
36
39
  alignItems?: string;
37
40
  fade?: boolean;
@@ -48,5 +48,6 @@ export interface TypeaheadItemProps extends CommonProps {
48
48
  value?: string | number;
49
49
  label?: string | number;
50
50
  children?: React.ReactNode;
51
+ avatar?: React.ReactNode;
51
52
  onClick?: (e: React.MouseEvent<HTMLElement>) => void;
52
53
  }
@@ -8,7 +8,6 @@ export declare const AdditionalInfoWrapper: import("@emotion/styled").StyledComp
8
8
  theme?: Theme;
9
9
  as?: React.ElementType;
10
10
  } & {
11
- avatarSize?: number;
12
11
  direction?: string;
13
12
  alignItems?: string;
14
13
  fade?: boolean;
@@ -21,7 +20,6 @@ export declare const CustomContentWrapper: import("@emotion/styled").StyledCompo
21
20
  theme?: Theme;
22
21
  as?: React.ElementType;
23
22
  } & {
24
- avatarSize?: number;
25
23
  direction?: string;
26
24
  alignItems?: string;
27
25
  fade?: boolean;
@@ -3,7 +3,6 @@ declare const Wrapper: import("@emotion/styled").StyledComponent<{
3
3
  theme?: import("@emotion/react").Theme;
4
4
  as?: React.ElementType;
5
5
  } & {
6
- avatarSize?: number;
7
6
  direction?: string;
8
7
  alignItems?: string;
9
8
  fade?: boolean;
@@ -68,11 +68,13 @@ export * from './AccordionGroup';
68
68
  export * from './AddNewAccountCard';
69
69
  export * from './ButtonGroup';
70
70
  export * from './CardList';
71
+ export * from './Chip';
71
72
  export * from './Charts';
72
73
  export * from './Checkbox';
73
74
  export * from './CollapsibleNavBar';
74
75
  export * from './ColorPicker';
75
76
  export * from './DatePicker';
77
+ export * from './PersonInfo';
76
78
  export * from './DateRangePicker';
77
79
  export * from './Drawer';
78
80
  export * from './Field';