test-stpr-ui-kit 0.1.3 → 0.1.5

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.
@@ -14,6 +14,7 @@ import { ReactNode } from 'react';
14
14
  import { default as SelectChevronDownIcon } from '../../images/select-chevron-down.svg?react';
15
15
  import { default as TrashIcon } from '../../images/trash.svg?react';
16
16
  import { default as UploadIcon } from '../../images/upload.svg?react';
17
+ import { default as WarningColorIcon } from '../../images/warning-color.svg?react';
17
18
 
18
19
  export declare const Accordion: default_2.FC<AccordionProps>;
19
20
 
@@ -54,6 +55,7 @@ export declare interface ButtonProps extends default_2.PropsWithChildren {
54
55
  isOnlyIcon?: boolean;
55
56
  iconName?: EIconName;
56
57
  classNameRoot?: string;
58
+ classNameIconContainerRoot?: string;
57
59
  }
58
60
 
59
61
  export declare const Checkbox: default_2.FC<CheckboxProps>;
@@ -106,7 +108,8 @@ export declare enum EIconName {
106
108
  Check = "check",
107
109
  Copy = "copy",
108
110
  Close = "close",
109
- PlusSquare = "plusSquare"
111
+ PlusSquare = "plusSquare",
112
+ WarningColor = "warningColor"
110
113
  }
111
114
 
112
115
  export declare enum ETooltipPosition {
@@ -232,6 +235,7 @@ export declare interface SelectProps {
232
235
  required?: boolean;
233
236
  maxHeightList?: number;
234
237
  isVisibleDefaultTitle?: boolean;
238
+ isScrollableList?: boolean;
235
239
  classNameRoot?: string;
236
240
  classNameError?: string;
237
241
  classNameLabel?: string;
@@ -295,7 +299,7 @@ export declare interface TextProps {
295
299
  isLink?: boolean;
296
300
  isCursorPointer?: boolean;
297
301
  isCursorPointerByOnClick?: boolean;
298
- type?: "h1" | "p1" | "p2";
302
+ type?: "h1" | "h3" | "p1" | "p2";
299
303
  }
300
304
 
301
305
  export declare const Tooltip: default_2.FC<TooltipProps>;
@@ -351,4 +355,6 @@ export declare const useMediaContext: (breakpoints: TBreakpoints) => {
351
355
  };
352
356
  };
353
357
 
358
+ export { WarningColorIcon }
359
+
354
360
  export { }