test-stpr-ui-kit 0.1.7 → 0.1.9
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.
- package/dist/style.css +1 -1
- package/dist/test-stpr-ui-kit.es.d.ts +11 -4
- package/dist/test-stpr-ui-kit.es.js +2747 -2701
- package/dist/test-stpr-ui-kit.umd.js +20 -20
- package/package.json +1 -1
|
@@ -32,13 +32,14 @@ export declare interface AccordionProps extends default_2.PropsWithChildren {
|
|
|
32
32
|
classNameChildrenWrapper?: string;
|
|
33
33
|
}
|
|
34
34
|
|
|
35
|
-
export declare const BaseTooltip: default_2.
|
|
35
|
+
export declare const BaseTooltip: default_2.ForwardRefExoticComponent<BaseTooltipProps & default_2.RefAttributes<HTMLDivElement>>;
|
|
36
36
|
|
|
37
37
|
export declare interface BaseTooltipProps {
|
|
38
38
|
position?: ETooltipPosition;
|
|
39
39
|
text?: string | ReactNode;
|
|
40
40
|
noPadding?: boolean;
|
|
41
41
|
classNameRoot?: string;
|
|
42
|
+
classNameContentRoot?: string;
|
|
42
43
|
}
|
|
43
44
|
|
|
44
45
|
export declare const Button: default_2.FC<ButtonProps>;
|
|
@@ -109,7 +110,9 @@ export declare enum EIconName {
|
|
|
109
110
|
Copy = "copy",
|
|
110
111
|
Close = "close",
|
|
111
112
|
PlusSquare = "plusSquare",
|
|
112
|
-
WarningColor = "warningColor"
|
|
113
|
+
WarningColor = "warningColor",
|
|
114
|
+
Dots = "dots",
|
|
115
|
+
HistoryClock = "historyClock"
|
|
113
116
|
}
|
|
114
117
|
|
|
115
118
|
export declare enum ETooltipPosition {
|
|
@@ -215,6 +218,7 @@ export { SelectChevronDownIcon }
|
|
|
215
218
|
export declare type SelectOption = {
|
|
216
219
|
value: string | null;
|
|
217
220
|
label: string;
|
|
221
|
+
key?: string;
|
|
218
222
|
};
|
|
219
223
|
|
|
220
224
|
export declare interface SelectProps {
|
|
@@ -296,6 +300,7 @@ export declare interface TextProps {
|
|
|
296
300
|
classNameRoot?: string;
|
|
297
301
|
style?: default_2.CSSProperties;
|
|
298
302
|
onClick?: MouseEventHandler<HTMLElement>;
|
|
303
|
+
isEllipsis?: boolean;
|
|
299
304
|
isLink?: boolean;
|
|
300
305
|
isCursorPointer?: boolean;
|
|
301
306
|
isCursorPointerByOnClick?: boolean;
|
|
@@ -306,11 +311,13 @@ export declare const Tooltip: default_2.FC<TooltipProps>;
|
|
|
306
311
|
|
|
307
312
|
export declare interface TooltipProps extends BaseTooltipProps {
|
|
308
313
|
hover?: boolean;
|
|
309
|
-
|
|
314
|
+
isToggleClick?: boolean;
|
|
315
|
+
isVisibleTooltip?: boolean;
|
|
310
316
|
trigger?: default_2.ReactNode;
|
|
311
317
|
triggerAction?: () => void;
|
|
318
|
+
actionOnClose?: () => void;
|
|
319
|
+
classNameTooltip?: string;
|
|
312
320
|
classNameTriggerTooltip?: string;
|
|
313
|
-
classNameRootBaseTooltip?: string;
|
|
314
321
|
}
|
|
315
322
|
|
|
316
323
|
export declare type TPaneItem = {
|