test-stpr-ui-kit 0.5.84 → 0.5.86
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 +44 -44
- package/package.json +1 -1
|
@@ -291,22 +291,7 @@ declare interface IDatePickerProps extends Omit<IDatePickerInputProps, "classNam
|
|
|
291
291
|
classNamePortalRoot?: string;
|
|
292
292
|
}
|
|
293
293
|
|
|
294
|
-
declare interface
|
|
295
|
-
device: {
|
|
296
|
-
isDesktop: boolean;
|
|
297
|
-
isTablet: boolean;
|
|
298
|
-
isMobile: boolean;
|
|
299
|
-
};
|
|
300
|
-
}
|
|
301
|
-
|
|
302
|
-
export declare const InfoTooltip: default_2.FC<InfoTooltipProps>;
|
|
303
|
-
|
|
304
|
-
declare interface InfoTooltipProps extends Omit<TooltipProps, "trigger"> {
|
|
305
|
-
}
|
|
306
|
-
|
|
307
|
-
export declare const Input: default_2.ForwardRefExoticComponent<Omit<InputProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
|
|
308
|
-
|
|
309
|
-
declare interface InputProps {
|
|
294
|
+
export declare interface IInputProps {
|
|
310
295
|
name: string;
|
|
311
296
|
variant?: TInputVariant;
|
|
312
297
|
onChange?: TOnChangeInput;
|
|
@@ -334,6 +319,48 @@ declare interface InputProps {
|
|
|
334
319
|
maskChar?: string;
|
|
335
320
|
}
|
|
336
321
|
|
|
322
|
+
declare interface IMediaContext {
|
|
323
|
+
device: {
|
|
324
|
+
isDesktop: boolean;
|
|
325
|
+
isTablet: boolean;
|
|
326
|
+
isMobile: boolean;
|
|
327
|
+
};
|
|
328
|
+
}
|
|
329
|
+
|
|
330
|
+
export declare const InfoTooltip: default_2.FC<InfoTooltipProps>;
|
|
331
|
+
|
|
332
|
+
declare interface InfoTooltipProps extends Omit<TooltipProps, "trigger"> {
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
export declare const Input: default_2.ForwardRefExoticComponent<Omit<IInputProps, "ref"> & default_2.RefAttributes<HTMLInputElement>>;
|
|
336
|
+
|
|
337
|
+
export declare interface ISelectProps {
|
|
338
|
+
options: TSelectOption[];
|
|
339
|
+
isAbsolutePositionError?: boolean;
|
|
340
|
+
placeholder?: string;
|
|
341
|
+
variant?: TSelectVariant;
|
|
342
|
+
value?: string | null | number;
|
|
343
|
+
name: string;
|
|
344
|
+
onChange?: TOnChangeSelect;
|
|
345
|
+
onBlur?: TOnBlurSelect;
|
|
346
|
+
onMouseEnter?: () => void;
|
|
347
|
+
error?: string;
|
|
348
|
+
label?: string;
|
|
349
|
+
infoTooltipText?: string;
|
|
350
|
+
tooltipPosition?: ETooltipPosition;
|
|
351
|
+
disabled?: boolean;
|
|
352
|
+
required?: boolean;
|
|
353
|
+
maxHeightList?: number;
|
|
354
|
+
isVisibleDefaultTitle?: boolean;
|
|
355
|
+
isScrollableList?: boolean;
|
|
356
|
+
classNameRoot?: string;
|
|
357
|
+
classNameError?: string;
|
|
358
|
+
classNameLabel?: string;
|
|
359
|
+
classNameBaseTooltipRoot?: string;
|
|
360
|
+
isSearchable?: boolean;
|
|
361
|
+
searchPlaceholder?: string;
|
|
362
|
+
}
|
|
363
|
+
|
|
337
364
|
export declare const Label: default_2.FC<LabelProps>;
|
|
338
365
|
|
|
339
366
|
declare interface LabelProps {
|
|
@@ -401,34 +428,7 @@ export declare interface ProgressWrapperProps extends PropsWithChildren {
|
|
|
401
428
|
onSuccessLoaded?: () => void;
|
|
402
429
|
}
|
|
403
430
|
|
|
404
|
-
export declare const Select: default_2.FC<
|
|
405
|
-
|
|
406
|
-
declare interface SelectProps {
|
|
407
|
-
options: TSelectOption[];
|
|
408
|
-
isAbsolutePositionError?: boolean;
|
|
409
|
-
placeholder?: string;
|
|
410
|
-
variant?: TSelectVariant;
|
|
411
|
-
value?: string | null | number;
|
|
412
|
-
name: string;
|
|
413
|
-
onChange?: TOnChangeSelect;
|
|
414
|
-
onBlur?: TOnBlurSelect;
|
|
415
|
-
onMouseEnter?: () => void;
|
|
416
|
-
error?: string;
|
|
417
|
-
label?: string;
|
|
418
|
-
infoTooltipText?: string;
|
|
419
|
-
tooltipPosition?: ETooltipPosition;
|
|
420
|
-
disabled?: boolean;
|
|
421
|
-
required?: boolean;
|
|
422
|
-
maxHeightList?: number;
|
|
423
|
-
isVisibleDefaultTitle?: boolean;
|
|
424
|
-
isScrollableList?: boolean;
|
|
425
|
-
classNameRoot?: string;
|
|
426
|
-
classNameError?: string;
|
|
427
|
-
classNameLabel?: string;
|
|
428
|
-
classNameBaseTooltipRoot?: string;
|
|
429
|
-
isSearchable?: boolean;
|
|
430
|
-
searchPlaceholder?: string;
|
|
431
|
-
}
|
|
431
|
+
export declare const Select: default_2.FC<ISelectProps>;
|
|
432
432
|
|
|
433
433
|
export declare const Skeleton: default_2.FC<SkeletonProps>;
|
|
434
434
|
|