test-stpr-ui-kit 0.5.42 → 0.5.44
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/test-stpr-ui-kit.es.d.ts +5 -4
- package/dist/test-stpr-ui-kit.js +1313 -1308
- package/dist/test-stpr-ui-kit.umd.cjs +11 -11
- package/package.json +1 -1
|
@@ -182,7 +182,8 @@ export declare enum EIconName {
|
|
|
182
182
|
AddUser = "addUser",
|
|
183
183
|
AddFile = "addFile",
|
|
184
184
|
Calendar = "calendar",
|
|
185
|
-
ArrowBottom = "arrowBottom"
|
|
185
|
+
ArrowBottom = "arrowBottom",
|
|
186
|
+
UserRight = "userRight"
|
|
186
187
|
}
|
|
187
188
|
|
|
188
189
|
export declare const EllipsisTextWithTooltip: default_2.FC<EllipsisTextWithTooltipProps>;
|
|
@@ -391,7 +392,7 @@ declare interface SelectProps {
|
|
|
391
392
|
isAbsolutePositionError?: boolean;
|
|
392
393
|
placeholder?: string;
|
|
393
394
|
variant?: TSelectVariant;
|
|
394
|
-
value?: string;
|
|
395
|
+
value?: string | null | number;
|
|
395
396
|
name: string;
|
|
396
397
|
onChange: TOnChangeSelect;
|
|
397
398
|
onMouseEnter?: () => void;
|
|
@@ -561,7 +562,7 @@ export declare type TOnChangeInput = (event: default_2.ChangeEvent<HTMLInputElem
|
|
|
561
562
|
}) => void;
|
|
562
563
|
|
|
563
564
|
export declare type TOnChangeSelect = (event: default_2.MouseEvent<HTMLDivElement, MouseEvent>, data: {
|
|
564
|
-
value: string | null;
|
|
565
|
+
value: string | null | number;
|
|
565
566
|
name: string;
|
|
566
567
|
}) => void;
|
|
567
568
|
|
|
@@ -593,7 +594,7 @@ export declare type TPaneItem = {
|
|
|
593
594
|
declare type TProgressWrapperAnimationVariant = "pulse" | "backgroundProgress";
|
|
594
595
|
|
|
595
596
|
export declare type TSelectOption = {
|
|
596
|
-
value: string | null;
|
|
597
|
+
value: string | null | number;
|
|
597
598
|
label: string;
|
|
598
599
|
key?: string;
|
|
599
600
|
};
|