@ssa-ui-kit/core 1.1.0 → 1.1.1

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/.storybook/style.css +4 -0
  2. package/dist/components/Button/fixtures.d.ts +16 -16
  3. package/dist/components/FullscreenModeContext.d.ts +14 -0
  4. package/dist/components/Icon/icons/Maximize.d.ts +3 -0
  5. package/dist/components/Icon/icons/all.d.ts +1 -0
  6. package/dist/components/Icon/icons/iconsList.d.ts +1 -1
  7. package/dist/components/PieChart/PieChart.d.ts +4 -1
  8. package/dist/components/PieChart/PieChartBases.d.ts +5 -0
  9. package/dist/components/PieChart/PieChartHeader.d.ts +2 -0
  10. package/dist/components/PieChart/PieChartLegend.d.ts +1 -1
  11. package/dist/components/PieChart/PieChartLegendList.d.ts +2 -0
  12. package/dist/components/PieChart/PieChartLegendListItem.d.ts +13 -0
  13. package/dist/components/PieChart/PieChartLegendMarker.d.ts +1 -0
  14. package/dist/components/PieChart/stories/fixtures.d.ts +5 -0
  15. package/dist/components/PieChart/styles.d.ts +3 -0
  16. package/dist/components/PieChart/types.d.ts +10 -4
  17. package/dist/components/WidgetCard/Content.d.ts +5 -0
  18. package/dist/components/WidgetCard/Header.d.ts +9 -0
  19. package/dist/components/WidgetCard/Title.d.ts +3 -0
  20. package/dist/components/WidgetCard/WidgetCard.d.ts +2 -0
  21. package/dist/components/WidgetCard/WidgetCardBase.d.ts +6 -0
  22. package/dist/components/WidgetCard/WithWidgetCard.d.ts +4 -0
  23. package/dist/components/WidgetCard/index.d.ts +5 -0
  24. package/dist/components/WidgetCard/types.d.ts +13 -0
  25. package/dist/components/WithLink.d.ts +7 -0
  26. package/dist/components/index.d.ts +59 -56
  27. package/dist/index.js +1 -1
  28. package/dist/index.js.map +1 -1
  29. package/dist/types/emotion.d.ts +1 -0
  30. package/package.json +3 -3
  31. package/src/components/FullscreenModeContext.tsx +62 -0
  32. package/src/components/Icon/icons/Maximize.tsx +26 -0
  33. package/src/components/Icon/icons/all.ts +1 -0
  34. package/src/components/Pagination/components/RowsPerPageDropdown/RowsPerPageDropdown.tsx +5 -7
  35. package/src/components/PieChart/PieChart.stories.tsx +70 -2
  36. package/src/components/PieChart/PieChart.tsx +82 -30
  37. package/src/components/PieChart/PieChartBases.tsx +32 -5
  38. package/src/components/PieChart/PieChartHeader.tsx +43 -0
  39. package/src/components/PieChart/PieChartLegend.tsx +83 -20
  40. package/src/components/PieChart/PieChartLegendList.tsx +10 -6
  41. package/src/components/PieChart/PieChartLegendListItem.tsx +30 -0
  42. package/src/components/PieChart/PieChartLegendMarker.tsx +9 -3
  43. package/src/components/PieChart/colorPalettes.ts +4 -0
  44. package/src/components/PieChart/stories/fixtures.ts +53 -0
  45. package/src/components/PieChart/styles.ts +24 -0
  46. package/src/components/PieChart/types.ts +13 -4
  47. package/src/components/SegmentedPieChart/SegmentedPieChart.tsx +1 -1
  48. package/src/components/WidgetCard/Content.tsx +19 -0
  49. package/src/components/WidgetCard/Header.tsx +45 -0
  50. package/src/components/WidgetCard/Title.tsx +10 -0
  51. package/src/components/WidgetCard/WidgetCard.tsx +38 -0
  52. package/src/components/WidgetCard/WidgetCardBase.tsx +27 -0
  53. package/src/components/WidgetCard/WithWidgetCard.tsx +18 -0
  54. package/src/components/WidgetCard/index.ts +5 -0
  55. package/src/components/WidgetCard/types.ts +14 -0
  56. package/src/components/WithLink.tsx +30 -0
  57. package/src/components/index.ts +59 -56
  58. package/src/themes/main.ts +1 -0
  59. package/src/types/emotion.ts +1 -0
  60. package/tsbuildcache +1 -1
  61. package/tsconfig.build.json +2 -0
  62. /package/src/components/LinksTabBar/{LinksTabBar.spec.tsx → LinksTabBar.specBackup.tsx} +0 -0
  63. /package/src/components/WithVisibleLG/{WithVisibleLG.spec.tsx → WithVisibleLG.specBackup.tsx} +0 -0
  64. /package/src/components/WithVisibleMD/{WithVisibleMD.spec.tsx → WithVisibleMD.specBackup.tsx} +0 -0
  65. /package/src/components/WithVisibleSM/{WithVisibleSM.spec.tsx → WithVisibleSM.specBackup.tsx} +0 -0
  66. /package/src/components/WithVisibleUpToLG/{WithVisibleUpToLG.spec.tsx → WithVisibleUpToLG.specBackup.tsx} +0 -0
@@ -1,11 +1,17 @@
1
1
  import styled from '@emotion/styled';
2
2
  import Badge from '@components/Badge';
3
3
 
4
- export const PieChartLegendMarker = styled(Badge)<{ background?: string }>`
5
- display: inline-block;
4
+ export const PieChartLegendMarker = styled(Badge)<{
5
+ background?: string;
6
+ isFullscreenMode?: boolean;
7
+ }>`
8
+ display: flex;
9
+ align-self: center;
10
+ margin-right: 12px;
11
+ margin-left: 12px;
12
+ margin-top: ${({ isFullscreenMode }) => !isFullscreenMode && '2px'};
6
13
 
7
14
  padding: 0;
8
- margin-right: 12px;
9
15
 
10
16
  width: 8px;
11
17
  height: 8px;
@@ -10,6 +10,8 @@ export const getBalancePalette = (theme: Theme) => {
10
10
  'turquoise',
11
11
  'pink',
12
12
  'purple',
13
+ '#6C94F7',
14
+ '#55D6D2',
13
15
  ] as unknown as Array<keyof MainColors>;
14
16
 
15
17
  const pieChartColors = [
@@ -21,6 +23,8 @@ export const getBalancePalette = (theme: Theme) => {
21
23
  theme.colors.turquoise,
22
24
  theme.colors.pink,
23
25
  theme.colors.purple,
26
+ '#6C94F7',
27
+ '#55D6D2',
24
28
  ] as unknown as string[];
25
29
 
26
30
  return { legendColorNames, pieChartColors };
@@ -37,3 +37,56 @@ export const accountData = [
37
37
  label: 'Other',
38
38
  },
39
39
  ];
40
+
41
+ export const eventsDataBig = [
42
+ {
43
+ id: 1,
44
+ value: 500,
45
+ label: 'Event first',
46
+ },
47
+ {
48
+ id: 2,
49
+ value: 305,
50
+ label: 'Event second',
51
+ },
52
+ {
53
+ id: 3,
54
+ value: 789,
55
+ label: 'Event third',
56
+ },
57
+ {
58
+ id: 4,
59
+ value: 120,
60
+ label: 'Event fourth',
61
+ },
62
+ {
63
+ id: 5,
64
+ value: 39,
65
+ label: 'Event fifth',
66
+ },
67
+ {
68
+ id: 6,
69
+ value: 995,
70
+ label: 'Event sixth',
71
+ },
72
+ {
73
+ id: 7,
74
+ value: 753,
75
+ label: 'Event seventh',
76
+ },
77
+ {
78
+ id: 8,
79
+ value: 183,
80
+ label: 'Event eighth',
81
+ },
82
+ {
83
+ id: 9,
84
+ value: 683,
85
+ label: 'Event ninth',
86
+ },
87
+ {
88
+ id: 10,
89
+ value: 359,
90
+ label: 'Event tenth',
91
+ },
92
+ ];
@@ -0,0 +1,24 @@
1
+ import styled from '@emotion/styled';
2
+ import Button from '@components/Button';
3
+
4
+ export const PieChartButton = styled(Button)`
5
+ height: auto;
6
+ padding: 0;
7
+ background: none;
8
+ box-shadow: none;
9
+
10
+ &:hover,
11
+ &:focus {
12
+ background: none;
13
+ box-shadow: none;
14
+ &:before {
15
+ display: none;
16
+ }
17
+ }
18
+
19
+ &:hover {
20
+ svg path {
21
+ fill: ${({ theme }) => theme.colors.greyDarker};
22
+ }
23
+ }
24
+ `;
@@ -1,13 +1,21 @@
1
1
  import { SerializedStyles } from '@emotion/react';
2
2
  import { ResponsivePie, MayHaveLabel } from '@nivo/pie';
3
- import { CommonProps } from '../..';
3
+ import { CommonProps, WidgetCardProps } from '../..';
4
4
 
5
+ export type PieChartFeatures =
6
+ | 'header'
7
+ | 'fullscreenMode'
8
+ | 'activeItemAnimation';
5
9
  export interface PieChartProps
6
10
  extends CommonProps,
7
11
  React.ComponentProps<typeof ResponsivePie> {
8
12
  title?: React.ReactNode;
9
13
  children?: React.ReactNode;
10
- width?: number;
14
+ width?: string;
15
+ features?: Array<PieChartFeatures>;
16
+ cardProps?: Omit<WidgetCardProps, 'children'>;
17
+ activeHighlight?: boolean;
18
+ onFullscreenModeChange?: (isFullscreenMode: boolean) => void;
11
19
  }
12
20
 
13
21
  export interface PieChartLegendItem extends MayHaveLabel {
@@ -19,14 +27,15 @@ export interface PieChartLegendItem extends MayHaveLabel {
19
27
 
20
28
  export interface PieChartLegendProps {
21
29
  data: Array<PieChartLegendItem>;
30
+ activeHighlight?: boolean;
22
31
  colors?: Array<keyof MainColors | string>;
23
32
  backgroundColors?: Array<string>;
24
- renderValue?: (item: PieChartLegendItem) => NonNullable<React.ReactNode>;
25
- renderLabel?: (item: PieChartLegendItem) => NonNullable<React.ReactNode>;
26
33
  className?: string;
27
34
  markerStyles?: SerializedStyles;
28
35
  currency?: string;
29
36
  labelListStyles?: SerializedStyles;
30
37
  valueListStyles?: SerializedStyles;
31
38
  variant?: 'valueList' | 'withoutValueList';
39
+ renderValue?: (item: PieChartLegendItem) => NonNullable<React.ReactNode>;
40
+ renderLabel?: (item: PieChartLegendItem) => NonNullable<React.ReactNode>;
32
41
  }
@@ -52,7 +52,7 @@ export const SegmentedPieChart = ({
52
52
  data={balanceDataForTheGraph}
53
53
  animate={true}
54
54
  css={{
55
- width: 400,
55
+ width: '400px',
56
56
  margin: '40px 120px',
57
57
  }}
58
58
  isInteractive
@@ -0,0 +1,19 @@
1
+ import styled from '@emotion/styled';
2
+ import CardContent from '@components/CardContent';
3
+
4
+ export const Content = styled(CardContent)<{ isFullscreenMode?: boolean }>`
5
+ max-width: ${({ isFullscreenMode }) => (isFullscreenMode ? '100%' : '406px')};
6
+ width: 100%;
7
+ display: flex;
8
+ justify-content: space-between;
9
+ gap: 5px;
10
+ height: ${({ isFullscreenMode }) => (isFullscreenMode ? '100%' : 'auto')};
11
+
12
+ ${({ theme }) => theme.mediaQueries.md} {
13
+ max-width: initial;
14
+ flex-direction: column;
15
+ justify-content: flex-start;
16
+ align-items: flex-start;
17
+ gap: initial;
18
+ }
19
+ `;
@@ -0,0 +1,45 @@
1
+ import { Fragment } from 'react';
2
+ import { Interpolation, Theme, css, useTheme } from '@emotion/react';
3
+ import CardHeader from '@components/CardHeader';
4
+ import { WidgetCardTitle } from './Title';
5
+ import { WidgetCardProps } from './types';
6
+
7
+ type HeaderProps = {
8
+ className?: string;
9
+ children?: React.ReactNode;
10
+ titleCSS?: Interpolation<Theme>;
11
+ } & Pick<WidgetCardProps, 'title'>;
12
+
13
+ export const Header = ({
14
+ title,
15
+ className,
16
+ children,
17
+ titleCSS,
18
+ }: HeaderProps) => {
19
+ const theme = useTheme();
20
+
21
+ return (
22
+ <CardHeader
23
+ css={css`
24
+ margin-bottom: 5px;
25
+ ${theme.mediaQueries.md} {
26
+ margin-bottom: 10px;
27
+ }
28
+ `}
29
+ className={className}>
30
+ <WidgetCardTitle
31
+ variant="h3"
32
+ weight="bold"
33
+ css={[
34
+ css`
35
+ flex-direction: row;
36
+ width: 100%;
37
+ `,
38
+ titleCSS,
39
+ ]}>
40
+ {title}
41
+ {children && <Fragment>{children}</Fragment>}
42
+ </WidgetCardTitle>
43
+ </CardHeader>
44
+ );
45
+ };
@@ -0,0 +1,10 @@
1
+ import styled from '@emotion/styled';
2
+ import Typography from '@components/Typography';
3
+
4
+ export const WidgetCardTitle = styled(Typography)`
5
+ display: flex;
6
+ font-size: 16px;
7
+ ${({ theme }) => theme.mediaQueries.md} {
8
+ font-size: 20px;
9
+ }
10
+ `;
@@ -0,0 +1,38 @@
1
+ import { useFullscreenMode, WithLink } from '@components';
2
+ import { WidgetCardBase } from './WidgetCardBase';
3
+ import { Header } from './Header';
4
+ import { Content } from './Content';
5
+ import { WidgetCardProps } from './types';
6
+
7
+ export const WidgetCard = ({
8
+ title,
9
+ className,
10
+ wrapperClassName,
11
+ contentClassName,
12
+ headerClassName,
13
+ headerContent,
14
+ link,
15
+ width,
16
+ children,
17
+ onClick,
18
+ }: WidgetCardProps) => {
19
+ const { isFullscreenMode } = useFullscreenMode();
20
+ return (
21
+ <WithLink link={link} onClick={onClick} className={wrapperClassName}>
22
+ <WidgetCardBase
23
+ className={className}
24
+ onClick={link ? undefined : onClick}
25
+ isFullscreenMode={isFullscreenMode}
26
+ width={width}>
27
+ <Header title={title} className={headerClassName}>
28
+ {headerContent}
29
+ </Header>
30
+ <Content
31
+ className={contentClassName}
32
+ isFullscreenMode={isFullscreenMode}>
33
+ {children}
34
+ </Content>
35
+ </WidgetCardBase>
36
+ </WithLink>
37
+ );
38
+ };
@@ -0,0 +1,27 @@
1
+ import styled from '@emotion/styled';
2
+ import Card from '@components/Card';
3
+
4
+ export const WidgetCardBase = styled(Card)<{
5
+ isFullscreenMode?: boolean;
6
+ width?: string;
7
+ }>`
8
+ border-radius: 20px;
9
+ padding: 5px 10px;
10
+ width: ${({ isFullscreenMode, width }) =>
11
+ isFullscreenMode ? '100%' : width};
12
+ height: 100%;
13
+ position: ${({ isFullscreenMode }) =>
14
+ isFullscreenMode ? 'absolute' : 'static'};
15
+ top: ${({ isFullscreenMode }) => isFullscreenMode && 0};
16
+ left: ${({ isFullscreenMode }) => isFullscreenMode && 0};
17
+
18
+ ${({ theme }) => theme.mediaQueries.md} {
19
+ padding: 10px;
20
+ }
21
+
22
+ ${({ theme }) => theme.mediaQueries.lg} {
23
+ padding: 12px 20px 11px;
24
+ }
25
+
26
+ box-shadow: 0 10px 40px 0 ${({ theme }) => theme.colors.greyShadow};
27
+ `;
@@ -0,0 +1,18 @@
1
+ import { PieChartProps } from '@components/PieChart';
2
+ import { WidgetCard } from './WidgetCard';
3
+
4
+ export const WithWidgetCard = ({
5
+ children,
6
+ features = [],
7
+ cardProps = {},
8
+ width,
9
+ }: {
10
+ children: React.ReactNode;
11
+ } & Pick<PieChartProps, 'features' | 'cardProps' | 'width'>) =>
12
+ features && features.includes('header') ? (
13
+ <WidgetCard {...cardProps} width={width}>
14
+ {children}
15
+ </WidgetCard>
16
+ ) : (
17
+ children
18
+ );
@@ -0,0 +1,5 @@
1
+ export * from './WidgetCard';
2
+ export * from './WithWidgetCard';
3
+ export * from './WidgetCardBase';
4
+ export * from './Title';
5
+ export * from './types';
@@ -0,0 +1,14 @@
1
+ import type { To } from 'react-router-dom';
2
+
3
+ export type WidgetCardProps = {
4
+ title?: React.ReactNode;
5
+ className?: string;
6
+ wrapperClassName?: string;
7
+ contentClassName?: string;
8
+ headerClassName?: string;
9
+ headerContent?: React.ReactNode;
10
+ link?: To;
11
+ children?: React.ReactNode;
12
+ width?: string;
13
+ onClick?: () => void;
14
+ };
@@ -0,0 +1,30 @@
1
+ import { Link, To } from 'react-router-dom';
2
+ import { css } from '@emotion/react';
3
+
4
+ export const WithLink = ({
5
+ link,
6
+ onClick,
7
+ children,
8
+ className,
9
+ }: {
10
+ children: React.ReactNode;
11
+ className?: string;
12
+ onClick?: () => void;
13
+ link?: To;
14
+ }) =>
15
+ link ? (
16
+ <Link
17
+ to={link}
18
+ onClick={onClick}
19
+ className={className}
20
+ css={css`
21
+ text-decoration: none;
22
+ div {
23
+ cursor: pointer;
24
+ }
25
+ `}>
26
+ {children}
27
+ </Link>
28
+ ) : (
29
+ children
30
+ );
@@ -1,4 +1,3 @@
1
- export * from './AccordionGroup';
2
1
  export { default as Avatar } from './Avatar';
3
2
  export { default as Badge } from './Badge';
4
3
  export { default as Button } from './Button';
@@ -6,100 +5,104 @@ export { default as Card } from './Card';
6
5
  export { default as CardBase } from './Card/CardBase';
7
6
  export { default as CardContent } from './CardContent';
8
7
  export { default as CardHeader } from './CardHeader';
9
- export { default as ColorPicker } from './ColorPicker';
10
8
  export { default as Checkbox } from './Checkbox';
11
- export * from './Checkbox';
12
- export { default as FormCheckbox } from './FormCheckbox';
13
- export * from './FormCheckbox';
9
+ export { default as ColorPicker } from './ColorPicker';
14
10
  export { default as Dropdown } from './Dropdown';
15
11
  export { default as DropdownArrow } from './DropdownArrow';
16
12
  export { default as DropdownBase } from './DropdownBase';
17
13
  export { default as DropdownOption } from './DropdownOption';
18
14
  export { default as DropdownOptions } from './DropdownOptions';
19
15
  export { default as DropdownToggle } from './DropdownToggle';
20
- export type { DropdownOptionProps } from './DropdownOptions';
16
+ export { default as Form } from './Form';
17
+ export { default as FormAction } from './FormAction';
18
+ export { default as FormCheckbox } from './FormCheckbox';
19
+ export { default as FormGroup } from './FormGroup';
20
+ export { default as FormHelperText } from './FormHelperText';
21
+ export { default as FormRadioGroup } from './FormRadioGroup';
21
22
  export { default as Icon } from './Icon';
22
- export * from './Icon';
23
- export * from './Icon/types';
23
+ export { default as Indicator } from './Indicator';
24
24
  export { default as Input } from './Input';
25
25
  export { default as Label } from './Label';
26
+ export { default as LargeTab } from './LargeTab';
27
+ export { default as Link } from './Link';
26
28
  export { default as Modal } from './Modal';
27
- export { default as ModalDismissButton } from './ModalDismissButton';
28
29
  export { default as ModalContent } from './ModalContent';
29
- export { default as ModalOpenButton } from './ModalOpenButton';
30
30
  export { default as ModalDialog } from './ModalDialog';
31
- export * from './Modal';
32
- export * from './Popover';
31
+ export { default as ModalDismissButton } from './ModalDismissButton';
32
+ export { default as ModalOpenButton } from './ModalOpenButton';
33
33
  export { default as MultipleDropdown } from './MultipleDropdown';
34
34
  export { default as MultipleDropdownNotification } from './MultipleDropdownNotification';
35
35
  export { default as MultipleDropdownOptions } from './MultipleDropdownOptions';
36
+ export { default as NavBar } from './NavBar';
36
37
  export { default as Progress } from './Progress';
37
38
  export { default as ProgressBar } from './ProgressBar';
38
39
  export { default as ProgressCircle } from './ProgressCircle';
40
+ export { default as ProgressInfo } from './ProgressInfo';
39
41
  export { default as ProgressLegend } from './ProgressLegend';
40
42
  export { default as ProgressLegendItem } from './ProgressLegendItem';
41
43
  export { default as ProgressVertical } from './ProgressVertical';
42
- export { default as Stepper } from './Stepper';
44
+ export { default as Radio } from './Radio';
45
+ export { default as RadioGroup } from './RadioGroup';
46
+ export { default as ResponsiveImage } from './ResponsiveImage';
43
47
  export { default as Step } from './Step';
44
48
  export { default as StepConnector } from './StepConnector';
45
49
  export { default as StepLabel } from './StepLabel';
50
+ export { default as Stepper } from './Stepper';
46
51
  export { default as Switch } from './Switch';
47
- export * from './Switch';
52
+ export { default as Tab } from './Tab';
53
+ export { default as TabBar } from './TabBar';
48
54
  export { default as Table } from './Table';
55
+ export { default as TableBody } from './TableBody';
56
+ export { default as TableCell } from './TableCell';
49
57
  export { default as TableHead } from './TableHead';
50
58
  export { default as TableRow } from './TableRow';
51
- export { default as TableCell } from './TableCell';
52
- export { default as TableBody } from './TableBody';
53
- export { default as Tooltip } from './Tooltip';
54
- export { default as TooltipTrigger } from './TooltipTrigger';
55
- export { default as TooltipContent } from './TooltipContent';
56
- export * from './Tooltip';
57
- export { default as TabBar } from './TabBar';
58
- export { default as Tab } from './Tab';
59
- export { default as LargeTab } from './LargeTab';
60
- export * from './TabBar';
61
59
  export { default as Tag } from './Tag';
62
- export * from './Tag';
63
60
  export { default as Textarea } from './Textarea';
64
- export * from './Textarea';
65
61
  export { default as TextField } from './TextField';
66
- export * from './TextField';
62
+ export { default as Tooltip } from './Tooltip';
63
+ export { default as TooltipContent } from './TooltipContent';
64
+ export { default as TooltipTrigger } from './TooltipTrigger';
67
65
  export { default as Typography } from './Typography';
68
- export * from './Typography';
69
66
  export { default as Wrapper } from './Wrapper';
70
- export * from './Wrapper';
71
- export { default as Radio } from './Radio';
72
- export { default as RadioGroup } from './RadioGroup';
73
- export { default as FormRadioGroup } from './FormRadioGroup';
74
- export { default as ResponsiveImage } from './ResponsiveImage';
75
- export * from './ResponsiveImage';
76
- export { default as Form } from './Form';
77
- export { default as FormGroup } from './FormGroup';
78
- export { default as FormAction } from './FormAction';
79
- export { default as FormHelperText } from './FormHelperText';
80
- export { default as Indicator } from './Indicator';
67
+ export * from './AccordionGroup';
68
+ export * from './AddNewAccountCard';
81
69
  export * from './ButtonGroup';
82
- export { default as Link } from './Link';
83
- export * from './WithVisibleLG';
84
- export * from './WithVisibleMD';
85
- export * from './WithVisibleSM';
86
- export * from './WithVisibleUpToLG';
87
- export { default as NavBar } from './NavBar';
88
- export * from './NavBar';
89
- export { default as ProgressInfo } from './ProgressInfo';
90
- export * from './ProgressInfo';
91
70
  export * from './CardList';
92
- export * from './Pagination';
93
- export * from './NotificationCard';
71
+ export * from './Checkbox';
72
+ export * from './CollapsibleNavBar';
73
+ export * from './Filters';
74
+ export * from './FormCheckbox';
75
+ export * from './FullscreenModeContext';
76
+ export * from './Icon';
77
+ export * from './Icon/types';
78
+ export * from './ImageItem';
94
79
  export * from './LinksTabBar';
80
+ export * from './Modal';
81
+ export * from './NavBar';
82
+ export * from './NotificationCard';
95
83
  export * from './NotificationMenu';
96
- export * from './SearchBox';
97
- export * from './UserProfile';
98
- export * from './AddNewAccountCard';
84
+ export * from './Pagination';
99
85
  export * from './PieChart';
86
+ export * from './Popover';
87
+ export * from './ProgressInfo';
88
+ export * from './ResponsiveImage';
89
+ export * from './SearchBox';
100
90
  export * from './SegmentedPieChart';
101
- export * from './CollapsibleNavBar';
102
- export * from './Filters';
91
+ export * from './Switch';
92
+ export * from './TabBar';
103
93
  export * from './TableFilters';
94
+ export * from './Tag';
95
+ export * from './Textarea';
96
+ export * from './TextField';
97
+ export * from './Tooltip';
104
98
  export * from './Typeahead';
105
- export * from './ImageItem';
99
+ export * from './Typography';
100
+ export * from './UserProfile';
101
+ export * from './WidgetCard';
102
+ export * from './WithLink';
103
+ export * from './WithVisibleLG';
104
+ export * from './WithVisibleMD';
105
+ export * from './WithVisibleSM';
106
+ export * from './WithVisibleUpToLG';
107
+ export * from './Wrapper';
108
+ export type { DropdownOptionProps } from './DropdownOptions';
@@ -37,6 +37,7 @@ const main: Theme = {
37
37
  greyGraphite: 'rgba(71, 74, 80, 1)', //#474a50
38
38
  greyGraphite70: 'rgb(122, 124, 127, 0.7)', // #7a7c7f
39
39
  greyShadow: 'rgba(42, 48, 57, 0.08)', // #2a3039
40
+ greyShadow16: 'rgba(42, 48, 57, 0.16)', // #2a303929
40
41
  greyShadowHover: 'rgba(93, 102, 112, 0.24)', // #5d6670
41
42
  greyOutline: 'rgba(208, 210, 220, 1)', // #d0d2dc
42
43
  greyFilterIcon: 'rgb(133, 137, 147)', // #858993
@@ -21,6 +21,7 @@ type Colors = MakeColors<
21
21
  'grey',
22
22
  'grey20',
23
23
  'grey40',
24
+ 'greyShadow16',
24
25
  'greyShadow24',
25
26
  'greyDarker',
26
27
  'greyDarker40',