test-stpr-ui-kit 0.1.8 → 0.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.
- package/dist/style.css +1 -1
- package/dist/test-stpr-ui-kit.es.d.ts +14 -4
- package/dist/test-stpr-ui-kit.es.js +2448 -2433
- 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,20 +300,27 @@ export declare interface TextProps {
|
|
|
297
300
|
classNameRoot?: string;
|
|
298
301
|
style?: default_2.CSSProperties;
|
|
299
302
|
onClick?: MouseEventHandler<HTMLElement>;
|
|
300
|
-
|
|
303
|
+
isEllipsis?: boolean;
|
|
301
304
|
isCursorPointer?: boolean;
|
|
302
305
|
isCursorPointerByOnClick?: boolean;
|
|
303
|
-
type?: "h1" | "h3" | "p1" | "p2";
|
|
306
|
+
type?: "h1" | "h3" | "p1" | "p2" | "description" | "link";
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
export declare const TextWithLabel: default_2.FC<TextWithLabelProps>;
|
|
310
|
+
|
|
311
|
+
export declare interface TextWithLabelProps extends TextProps {
|
|
312
|
+
label: string;
|
|
304
313
|
}
|
|
305
314
|
|
|
306
315
|
export declare const Tooltip: default_2.FC<TooltipProps>;
|
|
307
316
|
|
|
308
317
|
export declare interface TooltipProps extends BaseTooltipProps {
|
|
309
318
|
hover?: boolean;
|
|
310
|
-
|
|
319
|
+
isToggleClick?: boolean;
|
|
311
320
|
isVisibleTooltip?: boolean;
|
|
312
321
|
trigger?: default_2.ReactNode;
|
|
313
322
|
triggerAction?: () => void;
|
|
323
|
+
actionOnClose?: () => void;
|
|
314
324
|
classNameTooltip?: string;
|
|
315
325
|
classNameTriggerTooltip?: string;
|
|
316
326
|
}
|