test-stpr-ui-kit 0.1.8 → 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 +7 -2
- package/dist/test-stpr-ui-kit.es.js +1981 -1974
- package/dist/test-stpr-ui-kit.umd.js +17 -17
- package/package.json +1 -1
|
@@ -110,7 +110,9 @@ export declare enum EIconName {
|
|
|
110
110
|
Copy = "copy",
|
|
111
111
|
Close = "close",
|
|
112
112
|
PlusSquare = "plusSquare",
|
|
113
|
-
WarningColor = "warningColor"
|
|
113
|
+
WarningColor = "warningColor",
|
|
114
|
+
Dots = "dots",
|
|
115
|
+
HistoryClock = "historyClock"
|
|
114
116
|
}
|
|
115
117
|
|
|
116
118
|
export declare enum ETooltipPosition {
|
|
@@ -216,6 +218,7 @@ export { SelectChevronDownIcon }
|
|
|
216
218
|
export declare type SelectOption = {
|
|
217
219
|
value: string | null;
|
|
218
220
|
label: string;
|
|
221
|
+
key?: string;
|
|
219
222
|
};
|
|
220
223
|
|
|
221
224
|
export declare interface SelectProps {
|
|
@@ -297,6 +300,7 @@ export declare interface TextProps {
|
|
|
297
300
|
classNameRoot?: string;
|
|
298
301
|
style?: default_2.CSSProperties;
|
|
299
302
|
onClick?: MouseEventHandler<HTMLElement>;
|
|
303
|
+
isEllipsis?: boolean;
|
|
300
304
|
isLink?: boolean;
|
|
301
305
|
isCursorPointer?: boolean;
|
|
302
306
|
isCursorPointerByOnClick?: boolean;
|
|
@@ -307,10 +311,11 @@ export declare const Tooltip: default_2.FC<TooltipProps>;
|
|
|
307
311
|
|
|
308
312
|
export declare interface TooltipProps extends BaseTooltipProps {
|
|
309
313
|
hover?: boolean;
|
|
310
|
-
|
|
314
|
+
isToggleClick?: boolean;
|
|
311
315
|
isVisibleTooltip?: boolean;
|
|
312
316
|
trigger?: default_2.ReactNode;
|
|
313
317
|
triggerAction?: () => void;
|
|
318
|
+
actionOnClose?: () => void;
|
|
314
319
|
classNameTooltip?: string;
|
|
315
320
|
classNameTriggerTooltip?: string;
|
|
316
321
|
}
|