@ssa-ui-kit/core 3.0.0 → 3.2.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 (76) hide show
  1. package/dist/components/Button/Button.d.ts +8 -8
  2. package/dist/components/Button/types.d.ts +12 -8
  3. package/dist/components/Chip/constants.d.ts +7 -0
  4. package/dist/components/Chip/helpers.d.ts +1 -1
  5. package/dist/components/Chip/styles.d.ts +4 -0
  6. package/dist/components/CollapsibleNavBar/CollapsibleNavBar.d.ts +1 -1
  7. package/dist/components/CollapsibleNavBar/types.d.ts +13 -0
  8. package/dist/components/Dropdown/Dropdown.d.ts +1 -1
  9. package/dist/components/Dropdown/types.d.ts +33 -1
  10. package/dist/components/DropdownOption/DropdownOption.d.ts +2 -0
  11. package/dist/components/DropdownToggle/DropdownToggle.d.ts +2 -1
  12. package/dist/components/DropdownToggle/types.d.ts +5 -3
  13. package/dist/components/Icon/icons/Assessment.d.ts +1 -1
  14. package/dist/components/Icon/icons/Award.d.ts +3 -0
  15. package/dist/components/Icon/icons/Bench.d.ts +3 -0
  16. package/dist/components/Icon/icons/Briefcase.d.ts +3 -0
  17. package/dist/components/Icon/icons/Building.d.ts +3 -0
  18. package/dist/components/Icon/icons/CalendarSchedule.d.ts +3 -0
  19. package/dist/components/Icon/icons/Camera.d.ts +3 -0
  20. package/dist/components/Icon/icons/CardText.d.ts +3 -0
  21. package/dist/components/Icon/icons/Case.d.ts +3 -0
  22. package/dist/components/Icon/icons/Comments.d.ts +3 -0
  23. package/dist/components/Icon/icons/Compensation.d.ts +3 -0
  24. package/dist/components/Icon/icons/Contacts.d.ts +3 -0
  25. package/dist/components/Icon/icons/CopyLink.d.ts +3 -0
  26. package/dist/components/Icon/icons/Delete.d.ts +3 -0
  27. package/dist/components/Icon/icons/DiamondRing.d.ts +3 -0
  28. package/dist/components/Icon/icons/Document.d.ts +3 -0
  29. package/dist/components/Icon/icons/Documents.d.ts +3 -0
  30. package/dist/components/Icon/icons/Education.d.ts +3 -0
  31. package/dist/components/Icon/icons/EmployeeBlackboard.d.ts +3 -0
  32. package/dist/components/Icon/icons/EmployeeProfile.d.ts +3 -0
  33. package/dist/components/Icon/icons/Export.d.ts +3 -0
  34. package/dist/components/Icon/icons/FileMark.d.ts +3 -0
  35. package/dist/components/Icon/icons/FilePdf.d.ts +3 -0
  36. package/dist/components/Icon/icons/FileWord.d.ts +3 -0
  37. package/dist/components/Icon/icons/FollowLink.d.ts +3 -0
  38. package/dist/components/Icon/icons/Form.d.ts +3 -0
  39. package/dist/components/Icon/icons/Gender.d.ts +3 -0
  40. package/dist/components/Icon/icons/Gift.d.ts +3 -0
  41. package/dist/components/Icon/icons/Inventory.d.ts +3 -0
  42. package/dist/components/Icon/icons/Link.d.ts +3 -0
  43. package/dist/components/Icon/icons/OfficeChair.d.ts +3 -0
  44. package/dist/components/Icon/icons/OpenBook.d.ts +3 -0
  45. package/dist/components/Icon/icons/Report.d.ts +1 -1
  46. package/dist/components/Icon/icons/Results.d.ts +3 -0
  47. package/dist/components/Icon/icons/Signature.d.ts +3 -0
  48. package/dist/components/Icon/icons/Summery.d.ts +3 -0
  49. package/dist/components/Icon/icons/Team.d.ts +3 -0
  50. package/dist/components/Icon/icons/TechnicalReview.d.ts +3 -0
  51. package/dist/components/Icon/icons/TennisBall.d.ts +3 -0
  52. package/dist/components/Icon/icons/Timeline.d.ts +3 -0
  53. package/dist/components/Icon/icons/UnionCircle.d.ts +3 -0
  54. package/dist/components/Icon/icons/Url.d.ts +3 -0
  55. package/dist/components/Icon/icons/all.d.ts +40 -1
  56. package/dist/components/Icon/icons/iconsList.d.ts +1 -1
  57. package/dist/components/MultipleDropdown/index.d.ts +1 -0
  58. package/dist/components/MultipleDropdown/types.d.ts +83 -0
  59. package/dist/components/PersonInfo/PersonInfo.d.ts +78 -0
  60. package/dist/components/PersonInfo/PersonInfoAvatar.d.ts +6 -0
  61. package/dist/components/PersonInfo/PersonInfoBadges.d.ts +6 -0
  62. package/dist/components/PersonInfo/PersonInfoCounter.d.ts +6 -0
  63. package/dist/components/PersonInfo/PersonInfoIcon.d.ts +5 -0
  64. package/dist/components/PersonInfo/PersonInfoValue.d.ts +5 -0
  65. package/dist/components/PersonInfo/constants.d.ts +5 -0
  66. package/dist/components/PersonInfo/helpers.d.ts +5 -0
  67. package/dist/components/PersonInfo/index.d.ts +4 -0
  68. package/dist/components/PersonInfo/types.d.ts +54 -0
  69. package/dist/components/Textarea/TextareaBase.d.ts +6 -1
  70. package/dist/components/Textarea/types.d.ts +14 -0
  71. package/dist/components/Typeahead/styles.d.ts +1 -1
  72. package/dist/index.js +2109 -287
  73. package/dist/index.js.map +1 -1
  74. package/dist/types/emotion.d.ts +3 -1
  75. package/package.json +3 -3
  76. package/dist/components/Icon/icons/Company.d.ts +0 -3
@@ -2,16 +2,16 @@ import { ButtonProps } from './types';
2
2
  /**
3
3
  * Button - Interactive button component for user actions.
4
4
  *
5
- * Variant colors are driven entirely by `theme.palette` — each variant reads
6
- * `palette.<variant>.main` for the default background, `palette.<variant>.dark`
7
- * for hover and active states, and `palette.<variant>.light` for focus state.
8
- * Override any palette entry in a custom theme to restyle a variant without
9
- * affecting other components.
5
+ * Variant colors are driven entirely by `theme.palette` for solid variants — each
6
+ * reads `palette.<variant>.main` (default), `palette.<variant>.dark` (hover/active),
7
+ * `palette.<variant>.light` (focus). Override any palette entry in a custom theme
8
+ * to restyle a variant without affecting other components.
10
9
  *
11
- * ### Variants (default: `tertiary`)
10
+ * ### Variants (default: `custom`)
11
+ * - `custom` — transparent, dark text; recommended for low-emphasis actions (default)
12
12
  * - `primary` — blue, high emphasis, white text
13
13
  * - `secondary` — grey, medium emphasis, dark text
14
- * - `tertiary` — transparent background, dark text, focus outline only (default)
14
+ * - `tertiary` — legacy; same as custom; prefer `custom` instead
15
15
  * - `error` — red, destructive actions, white text
16
16
  * - `warning` — orange, caution actions, white text
17
17
  * - `success` — green, confirmation actions, white text
@@ -21,7 +21,7 @@ import { ButtonProps } from './types';
21
21
  *
22
22
  * @example
23
23
  * ```tsx
24
- * // No variant passed → tertiary (transparent ghost button)
24
+ * // No variant passed → custom (transparent, recommended)
25
25
  * <Button text="Cancel" onClick={handleCancel} />
26
26
  * ```
27
27
  *
@@ -1,4 +1,4 @@
1
- import { AriaAttributes } from 'react';
1
+ import React, { AriaAttributes } from 'react';
2
2
  import { SerializedStyles, Theme } from '@emotion/react';
3
3
  import { MouseEventHandler } from 'react';
4
4
  /**
@@ -72,9 +72,11 @@ export interface ButtonProps extends ButtonAriaProps {
72
72
  */
73
73
  endIconClassName?: string;
74
74
  /**
75
- * Visual style variant of the button (uses theme.palette)
76
- * - `primary` | `secondary` | `tertiary` | `error` | `warning` | `success`
77
- * @default 'tertiary'
75
+ * Visual style variant of the button (uses theme.palette for solid variants).
76
+ * - `custom` transparent, dark text; recommended for low-emphasis actions (default)
77
+ * - `primary` | `secondary` | `error` | `warning` | `success` — use theme.palette
78
+ * - `tertiary` — legacy; same as custom; prefer `custom` instead
79
+ * @default 'custom'
78
80
  */
79
81
  variant?: keyof ButtonVariants;
80
82
  /**
@@ -108,14 +110,16 @@ export interface ButtonProps extends ButtonAriaProps {
108
110
  }
109
111
  /**
110
112
  * Button variant style functions.
111
- * Each function reads from `theme.palette.<variant>` using the following convention:
112
- * - `main` → default background
113
- * - `dark` → hover and active background
114
- * - `light` → focus background
113
+ * Solid variants (primary, secondary, error, warning, success) read from
114
+ * `theme.palette.<variant>`: main (default), dark (hover/active), light (focus).
115
+ * Custom and tertiary are transparent (no palette); prefer custom to tertiary.
115
116
  */
116
117
  export interface ButtonVariants {
118
+ /** Recommended transparent variant; no focus outline. */
119
+ custom: (theme: Theme) => SerializedStyles;
117
120
  primary: (theme: Theme) => SerializedStyles;
118
121
  secondary: (theme: Theme) => SerializedStyles;
122
+ /** Legacy transparent variant; prefer custom. */
119
123
  tertiary: (theme: Theme) => SerializedStyles;
120
124
  error: (theme: Theme) => SerializedStyles;
121
125
  warning: (theme: Theme) => SerializedStyles;
@@ -10,6 +10,13 @@ export declare const COLORS: {
10
10
  readonly ERROR: "error";
11
11
  readonly WARNING: "warning";
12
12
  };
13
+ /** Outlined variant background opacity (light color with opacity) */
14
+ export declare const OUTLINED_BG_OPACITY: {
15
+ readonly DEFAULT: 0.08;
16
+ readonly HOVER: 0.24;
17
+ readonly ACTIVE: 0.4;
18
+ readonly DISABLED: 0.24;
19
+ };
13
20
  export declare const mapSizes: {
14
21
  small: import("@emotion/react").SerializedStyles;
15
22
  medium: import("@emotion/react").SerializedStyles;
@@ -12,7 +12,7 @@ type ColorConfig = {
12
12
  darkText?: boolean;
13
13
  };
14
14
  export declare const colorMap: (theme: Theme) => Record<SemanticColor, ColorConfig>;
15
- export declare const getVariantColors: (theme: Theme, variant: ChipProps["variant"], color: ChipProps["color"], disabled: boolean) => {
15
+ export declare const getVariantColors: (theme: Theme, variant: ChipProps["variant"], color: ChipProps["color"], disabled: boolean, isClickable?: boolean) => {
16
16
  chipStyles: import("@emotion/react").SerializedStyles;
17
17
  iconColor: string | undefined;
18
18
  };
@@ -11,7 +11,11 @@ export declare const filled: (theme: Theme) => import("@emotion/react").Serializ
11
11
  export declare const filledDisabled: (theme: Theme) => import("@emotion/react").SerializedStyles;
12
12
  export declare const outlined: (theme: Theme) => import("@emotion/react").SerializedStyles;
13
13
  export declare const outlinedDisabled: (theme: Theme) => import("@emotion/react").SerializedStyles;
14
+ /** Hover/active bg opacity for default (grey) outlined clickable chip */
15
+ export declare const clickableOutlinedDefault: (theme: Theme) => import("@emotion/react").SerializedStyles;
14
16
  export declare const clickable: import("@emotion/react").SerializedStyles;
17
+ /** cursor + transition only; hover/active handled by variant (e.g. outlined bg opacity) */
18
+ export declare const clickableBase: import("@emotion/react").SerializedStyles;
15
19
  export declare const clickableDisabled: import("@emotion/react").SerializedStyles;
16
20
  export declare const IconWrapper: import("@emotion/styled").StyledComponent<{
17
21
  theme?: Theme;
@@ -2,4 +2,4 @@ import { CollapsibleNavBarExtendedProps } from './types';
2
2
  /**
3
3
  * UI Component that shows the collapsible navigation bar
4
4
  */
5
- export declare const CollapsibleNavBar: ({ items, renderLogo, theme, subMenuMaxWidth, showIconTooltip, className, useMatchPattern, onChange, exactMatch, }: CollapsibleNavBarExtendedProps) => import("@emotion/react/jsx-runtime").JSX.Element;
5
+ export declare const CollapsibleNavBar: ({ items, renderLogo, theme, subMenuMaxWidth, showIconTooltip, className, useMatchPattern, onChange, exactMatch, defaultExpanded, }: CollapsibleNavBarExtendedProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -12,13 +12,21 @@ export interface CollapsibleNavBarGroup<T extends NavBarExtendedSubItem = NavBar
12
12
  prefix: string;
13
13
  }
14
14
  export interface CollapsibleNavBarExtendedProps<T extends NavBarExtendedSubItem = NavBarExtendedSubItem> {
15
+ /** Nav items: link items (path, iconName, iconSize, title) or groups with prefix, iconName, iconSize, title, items (sub-items: path, title). */
15
16
  items: Array<CollapsibleNavBarItem | CollapsibleNavBarGroup<T>>;
17
+ /** Logo or branding element (e.g. image or div) shown above the nav. */
16
18
  renderLogo: React.ReactElement;
19
+ /** Visual theme: dark (default) or light sidebar. */
17
20
  theme?: 'default' | 'light';
21
+ /** Optional CSS class for the root. */
18
22
  className?: string;
23
+ /** Max width for submenu panels (e.g. 220). */
19
24
  subMenuMaxWidth?: CSSProperties['maxWidth'];
25
+ /** When true, show tooltips on nav icons when sidebar is collapsed. */
20
26
  showIconTooltip?: boolean;
27
+ /** Custom route matching for active state (e.g. for React Router). */
21
28
  useMatchPattern?: (prefix: string) => string | PathPattern<string>;
29
+ /** Called when the sidebar expand/collapse state changes. */
22
30
  onChange?: (isChecked: boolean) => void;
23
31
  /**
24
32
  * If true, only exact path matches will be considered active.
@@ -26,4 +34,9 @@ export interface CollapsibleNavBarExtendedProps<T extends NavBarExtendedSubItem
26
34
  * @default false
27
35
  */
28
36
  exactMatch?: boolean;
37
+ /**
38
+ * Initial expanded state (sidebar shows icon + text). When false, only icons are shown until the user toggles.
39
+ * @default false
40
+ */
41
+ defaultExpanded?: boolean;
29
42
  }
@@ -88,5 +88,5 @@ import { DropdownProps } from './types';
88
88
  *
89
89
  * @see https://www.w3.org/WAI/ARIA/apg/example-index/combobox/combobox-select-only.html
90
90
  */
91
- declare const Dropdown: <T extends DropdownOptionProps>({ selectedItem, isDisabled, isOpen: isInitOpen, children, onChange: handleChange, className, placeholder, dropdownProps: componentProps, }: DropdownProps<T>) => import("@emotion/react/jsx-runtime").JSX.Element;
91
+ declare const Dropdown: <T extends DropdownOptionProps>({ selectedItem, isDisabled, isOpen: isInitOpen, children, onChange: handleChange, className, placeholder, maxHeight, dropdownProps: componentProps, }: DropdownProps<T>) => import("@emotion/react/jsx-runtime").JSX.Element;
92
92
  export default Dropdown;
@@ -1,4 +1,5 @@
1
1
  import React from 'react';
2
+ import { Interpolation, Theme } from '@emotion/react';
2
3
  import { DropdownOptionProps } from '../DropdownOptions';
3
4
  import { CommonProps } from '../../types/emotion';
4
5
  import { IconProps } from '../Icon/types';
@@ -70,6 +71,11 @@ export interface DropdownProps<P extends DropdownOptionProps> extends CommonProp
70
71
  * When provided, controls dropdown open/closed state externally
71
72
  */
72
73
  isOpen?: boolean;
74
+ /**
75
+ * Max height (px) of the options list; overflow scrolls.
76
+ * @default 200
77
+ */
78
+ maxHeight?: number;
73
79
  /**
74
80
  * Props object for sub-components
75
81
  * Allows fine-grained control over component parts
@@ -78,7 +84,29 @@ export interface DropdownProps<P extends DropdownOptionProps> extends CommonProp
78
84
  /** Props for the wrapper div element */
79
85
  base?: React.HTMLAttributes<HTMLDivElement>;
80
86
  /** Props for the toggle button element (excluding controlled props) */
81
- toggleButton?: Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, ControlledButtonProps>;
87
+ toggleButton?: Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, ControlledButtonProps> & {
88
+ /**
89
+ * Emotion css prop for custom styles on the toggle button.
90
+ * Merged on top of the component's built-in styles, so any rule here
91
+ * overrides the default appearance.
92
+ *
93
+ * @example
94
+ * ```tsx
95
+ * import { css } from '@emotion/react';
96
+ *
97
+ * <Dropdown
98
+ * dropdownProps={{
99
+ * toggleButton: {
100
+ * css: css`background: hotpink; border: none;`,
101
+ * },
102
+ * }}
103
+ * >
104
+ * ...
105
+ * </Dropdown>
106
+ * ```
107
+ */
108
+ css?: Interpolation<Theme>;
109
+ };
82
110
  /** Props for the arrow icon SVG element */
83
111
  toggleButtonArrow?: Omit<IconProps, 'name' | 'size'>;
84
112
  };
@@ -98,4 +126,8 @@ export interface DropdownContextType {
98
126
  * Used to highlight the selected option
99
127
  */
100
128
  activeItem?: DropdownOptionProps | null;
129
+ /**
130
+ * Max height (px) of the options list
131
+ */
132
+ maxHeight?: number;
101
133
  }
@@ -10,6 +10,8 @@ interface DropdownItemProps extends CommonProps {
10
10
  value?: string | number | boolean;
11
11
  label?: string | number;
12
12
  children?: React.ReactNode;
13
+ /** Avatar or icon to display before the option content (e.g. <Avatar size={20} image={url} />) */
14
+ avatar?: React.ReactNode;
13
15
  }
14
16
  declare const DropdownOption: import("@emotion/styled").StyledComponent<{
15
17
  theme?: Theme;
@@ -1,6 +1,7 @@
1
+ import { Theme } from '@emotion/react';
1
2
  import { DropdownToggleProps } from './types';
2
3
  export declare const DropdownToggleBase: import("@emotion/styled").StyledComponent<{
3
- theme?: import("@emotion/react").Theme;
4
+ theme?: Theme;
4
5
  as?: React.ElementType;
5
6
  } & Pick<DropdownToggleProps, "colors" | "disabled" | "isOpen" | "isMultiple" | "selectedCount">, import("react").DetailedHTMLProps<import("react").ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, {}>;
6
7
  declare const DropdownToggle: ({ onClick, onFocus, isOpen, isMultiple, selectedCount, disabled, children, ariaLabelledby, ariaControls, colors, className, ...restProps }: DropdownToggleProps) => import("@emotion/react/jsx-runtime").JSX.Element;
@@ -1,10 +1,12 @@
1
1
  import React from 'react';
2
- import { Theme } from '@emotion/react';
2
+ import { Interpolation, Theme } from '@emotion/react';
3
3
  import { CommonProps } from '../../types/emotion';
4
4
  import { ControlledButtonProps } from '../Dropdown/types';
5
5
  export interface DropdownToggleProps extends CommonProps, Omit<React.ButtonHTMLAttributes<HTMLButtonElement>, ControlledButtonProps> {
6
+ /** Emotion css prop forwarded to the underlying styled button */
7
+ css?: Interpolation<Theme>;
6
8
  onClick: (e: React.MouseEvent<HTMLElement>) => void;
7
- onFocus: (e: React.FocusEvent<HTMLButtonElement, Element>) => void;
9
+ onFocus?: (e: React.FocusEvent<HTMLButtonElement, Element>) => void;
8
10
  isOpen: boolean;
9
11
  isMultiple?: boolean;
10
12
  disabled?: boolean;
@@ -17,5 +19,5 @@ export interface DropdownToggleProps extends CommonProps, Omit<React.ButtonHTMLA
17
19
  }
18
20
  export interface MultipleStylesProps {
19
21
  theme: Theme;
20
- selectedCount?: number;
22
+ isOpen?: boolean;
21
23
  }
@@ -1,3 +1,3 @@
1
1
  import { SVGProps } from '../types';
2
2
  export declare const Assessment: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
- export declare const ICON_NAME = "assessment";
3
+ export declare const ICON_NAME = "clipboard-assessment";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Award: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "award";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Bench: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "bench";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Briefcase: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "briefcase";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Building: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "building";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const CalendarSchedule: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "calendar-schedule";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Camera: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "camera";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const CardText: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "card-text";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Case: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "case";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Comments: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "comments";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Compensation: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "compensation";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Contacts: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "contacts";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const CopyLink: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "copy-link";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Delete: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "delete";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const DiamondRing: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "diamond-ring";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Document: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "document";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Documents: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "documents";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Education: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "education";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const EmployeeBlackboard: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "employee-blackboard";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const EmployeeProfile: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "employee-profile";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Export: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "export";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const FileMark: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "file-mark";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const FilePdf: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "file-pdf";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const FileWord: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "file-word";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const FollowLink: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "follow-link";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Form: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "clipboard-form";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Gender: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "gender";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Gift: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "gift";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Inventory: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "inventory";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Link: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "link";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const OfficeChair: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "office-chair";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const OpenBook: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "open-book";
@@ -1,3 +1,3 @@
1
1
  import { SVGProps } from '../types';
2
2
  export declare const Report: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
- export declare const ICON_NAME = "report";
3
+ export declare const ICON_NAME = "clipboard-report";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Results: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "clipboard-result";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Signature: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "signature";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Summery: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "clipboard-summary";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Team: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "team";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const TechnicalReview: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "clipboard-star";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const TennisBall: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "tennis-ball";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Timeline: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "timeline";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const UnionCircle: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "union-circle";
@@ -0,0 +1,3 @@
1
+ import { SVGProps } from '../types';
2
+ export declare const Url: ({ fill, size, tooltip, ...props }: SVGProps) => import("@emotion/react/jsx-runtime").JSX.Element;
3
+ export declare const ICON_NAME = "url";
@@ -3,15 +3,21 @@ export * as ArrowDown from './ArrowDown';
3
3
  export * as ArrowUp from './ArrowUp';
4
4
  export * as Assessment from './Assessment';
5
5
  export * as Attention from './Attention';
6
+ export * as Award from './Award';
6
7
  export * as BanUser from './BanUser';
8
+ export * as Bench from './Bench';
7
9
  export * as Bin from './Bin';
8
10
  export * as Calendar from './Calendar';
11
+ export * as CalendarSchedule from './CalendarSchedule';
9
12
  export * as CarrotDown from './CarrotDown';
10
13
  export * as CarrotLeft from './CarrotLeft';
11
14
  export * as CarrotRight from './CarrotRight';
12
15
  export * as CarrotUp from './CarrotUp';
16
+ export * as CardText from './CardText';
17
+ export * as Case from './Case';
13
18
  export * as Certification from './Certification';
14
19
  export * as CertificationExpiring from './CertificationExpiring';
20
+ export * as Camera from './Camera';
15
21
  export * as Change from './Change';
16
22
  export * as Chart from './Chart';
17
23
  export * as Check from './Check';
@@ -22,25 +28,47 @@ export * as Circle from './Circle';
22
28
  export * as Circular from './Circular';
23
29
  export * as Clock from './Clock';
24
30
  export * as Cogwheel from './Cogwheel';
25
- export * as Company from './Company';
31
+ export * as Comments from './Comments';
32
+ export * as Briefcase from './Briefcase';
33
+ export * as Building from './Building';
34
+ export * as Compensation from './Compensation';
26
35
  export * as ConfirmEmail from './ConfirmEmail';
36
+ export * as Contacts from './Contacts';
27
37
  export * as Copy from './Copy';
38
+ export * as CopyLink from './CopyLink';
28
39
  export * as Cross from './Cross';
40
+ export * as Delete from './Delete';
41
+ export * as Document from './Document';
42
+ export * as DiamondRing from './DiamondRing';
29
43
  export * as Diet from './Diet';
44
+ export * as Documents from './Documents';
30
45
  export * as Edit from './Edit';
46
+ export * as Education from './Education';
31
47
  export * as Email from './Email';
32
48
  export * as Employee from './Employee';
49
+ export * as EmployeeProfile from './EmployeeProfile';
33
50
  export * as EmployeeTerminated from './EmployeeTerminated';
51
+ export * as EmployeeBlackboard from './EmployeeBlackboard';
34
52
  export * as ExcelDownload from './ExcelDownload';
53
+ export * as Export from './Export';
54
+ export * as FileMark from './FileMark';
55
+ export * as FilePdf from './FilePdf';
56
+ export * as FileWord from './FileWord';
35
57
  export * as Filter from './Filter';
36
58
  export * as FilterFunnel from './FilterFunnel';
59
+ export * as FollowLink from './FollowLink';
37
60
  export * as FTE from './FTE';
61
+ export * as Form from './Form';
38
62
  export * as Geography from './Geography';
63
+ export * as Gender from './Gender';
64
+ export * as Gift from './Gift';
39
65
  export * as Home from './Home';
40
66
  export * as Import from './Import';
41
67
  export * as Information from './Information';
68
+ export * as Inventory from './Inventory';
42
69
  export * as Invisible from './Invisible';
43
70
  export * as Language from './Language';
71
+ export * as Link from './Link';
44
72
  export * as Lock from './Lock';
45
73
  export * as LogIn from './LogIn';
46
74
  export * as LogOut from './LogOut';
@@ -53,6 +81,8 @@ export * as MinusCircleInverted from './MinusCircleInverted';
53
81
  export * as More from './More';
54
82
  export * as MoreVertical from './MoreVertical';
55
83
  export * as Notification from './Notification';
84
+ export * as OfficeChair from './OfficeChair';
85
+ export * as OpenBook from './OpenBook';
56
86
  export * as Pages from './Pages';
57
87
  export * as Party from './Party';
58
88
  export * as Plus from './Plus';
@@ -62,20 +92,29 @@ export * as ProbationPeriod from './ProbationPeriod';
62
92
  export * as ProfilesChanges from './ProfilesChanges';
63
93
  export * as RadioOn from './RadioOn';
64
94
  export * as Report from './Report';
95
+ export * as Results from './Results';
65
96
  export * as Robot from './Robot';
66
97
  export * as Roles from './Roles';
67
98
  export * as Search from './Search';
68
99
  export * as Seniority from './Seniority';
69
100
  export * as Settings from './Settings';
101
+ export * as Signature from './Signature';
70
102
  export * as Sleep from './Sleep';
71
103
  export * as StaffGrowthCoefficient from './StaffGrowthCoefficient';
72
104
  export * as StaffTurnoverCoefficient from './StaffTurnoverCoefficient';
73
105
  export * as Stats from './Stats';
106
+ export * as Summery from './Summery';
107
+ export * as Team from './Team';
108
+ export * as TechnicalReview from './TechnicalReview';
74
109
  export * as TimeTracking from './TimeTracking';
110
+ export * as Timeline from './Timeline';
111
+ export * as TennisBall from './TennisBall';
75
112
  export * as Trainings from './Trainings';
76
113
  export * as UnArchive from './UnArchive';
77
114
  export * as Union from './Union';
115
+ export * as UnionCircle from './UnionCircle';
78
116
  export * as Unlock from './Unlock';
117
+ export * as Url from './Url';
79
118
  export * as User from './User';
80
119
  export * as Visible from './Visible';
81
120
  export * as Warning from './Warning';
@@ -1 +1 @@
1
- export declare const iconsList: ("visible" | "warning" | "archive" | "search" | "arrow-down" | "arrow-up" | "assessment" | "attention" | "ban-user" | "bin" | "calendar" | "carrot-down" | "carrot-left" | "carrot-right" | "carrot-up" | "certification" | "certification-expiring" | "change" | "chart" | "check" | "check-circle" | "check-circle-inverted" | "children" | "circle" | "circular" | "clock" | "cogwheel" | "company" | "confirm-email" | "copy" | "cross" | "diet" | "edit" | "email" | "employee" | "employee-terminated" | "excel-download" | "filter" | "filter-funnel" | "fte" | "geography" | "home" | "import" | "information" | "invisible" | "language" | "lock" | "log-in" | "log-out" | "maximize" | "measurements" | "message" | "minus" | "minus-circle" | "minus-circle-inverted" | "more" | "more-vertical" | "notification" | "pages" | "party" | "plus" | "plus-circle" | "plus-circle-inverted" | "probation-period" | "profiles-changes" | "radio-on" | "report" | "robot" | "roles" | "seniority" | "settings" | "sleep" | "staff-growth-coefficient" | "staff-turnover-coefficient" | "stats" | "time-tracking" | "trainings" | "unarchive" | "union" | "unlock" | "user")[];
1
+ export declare const iconsList: ("visible" | "warning" | "archive" | "document" | "link" | "search" | "arrow-down" | "arrow-up" | "clipboard-assessment" | "attention" | "award" | "ban-user" | "bench" | "bin" | "calendar" | "calendar-schedule" | "carrot-down" | "carrot-left" | "carrot-right" | "carrot-up" | "card-text" | "case" | "certification" | "certification-expiring" | "camera" | "change" | "chart" | "check" | "check-circle" | "check-circle-inverted" | "children" | "circle" | "circular" | "clock" | "cogwheel" | "comments" | "briefcase" | "building" | "compensation" | "confirm-email" | "contacts" | "copy" | "copy-link" | "cross" | "delete" | "diamond-ring" | "diet" | "documents" | "edit" | "education" | "email" | "employee" | "employee-profile" | "employee-terminated" | "employee-blackboard" | "excel-download" | "export" | "file-mark" | "file-pdf" | "file-word" | "filter" | "filter-funnel" | "follow-link" | "fte" | "clipboard-form" | "geography" | "gender" | "gift" | "home" | "import" | "information" | "inventory" | "invisible" | "language" | "lock" | "log-in" | "log-out" | "maximize" | "measurements" | "message" | "minus" | "minus-circle" | "minus-circle-inverted" | "more" | "more-vertical" | "notification" | "office-chair" | "open-book" | "pages" | "party" | "plus" | "plus-circle" | "plus-circle-inverted" | "probation-period" | "profiles-changes" | "radio-on" | "clipboard-report" | "clipboard-result" | "robot" | "roles" | "seniority" | "settings" | "signature" | "sleep" | "staff-growth-coefficient" | "staff-turnover-coefficient" | "stats" | "clipboard-summary" | "team" | "clipboard-star" | "time-tracking" | "timeline" | "tennis-ball" | "trainings" | "unarchive" | "union" | "union-circle" | "unlock" | "url" | "user")[];