@datawire-ai/busyfile-design-library 1.31.1 → 1.33.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/index100.js +3 -3
- package/dist/index101.js +2 -2
- package/dist/index102.js +2 -2
- package/dist/index106.js +5 -5
- package/dist/index107.js +1 -1
- package/dist/index108.js +3 -14
- package/dist/index109.js +46 -10
- package/dist/index110.js +11 -4
- package/dist/index111.js +4 -13
- package/dist/index112.js +12 -3
- package/dist/index113.js +644 -40
- package/dist/index116.js +23 -649
- package/dist/index117.js +15 -18
- package/dist/index118.js +33 -16
- package/dist/index119.js +12 -33
- package/dist/index12.js +28 -30
- package/dist/index120.js +15 -18
- package/dist/index121.js +1 -1
- package/dist/index123.js +1 -1
- package/dist/index30.js +52 -51
- package/dist/index42.js +6 -6
- package/dist/index44.js +9 -9
- package/dist/index46.js +7 -7
- package/dist/index48.js +1 -1
- package/dist/index49.js +5 -5
- package/dist/index50.js +1 -1
- package/dist/index52.js +5 -5
- package/dist/index54.js +1 -1
- package/dist/index55.js +1 -1
- package/dist/index56.js +1 -1
- package/dist/index57.js +1 -1
- package/dist/index59.js +5 -5
- package/dist/index61.js +1 -1
- package/dist/index62.js +1 -1
- package/dist/index63.js +1 -1
- package/dist/index65.js +1 -1
- package/dist/index66.js +1 -1
- package/dist/index67.js +1 -1
- package/dist/index68.js +1 -1
- package/dist/index70.js +1 -1
- package/dist/index71.js +1 -1
- package/dist/index73.js +1 -1
- package/dist/index75.js +7 -7
- package/dist/index78.js +1 -1
- package/dist/index79.js +1 -1
- package/dist/index81.js +1 -1
- package/dist/index82.js +10 -10
- package/dist/index84.js +1 -1
- package/dist/index85.js +5 -5
- package/dist/index86.js +2 -2
- package/dist/index87.js +5 -5
- package/dist/index88.js +1 -1
- package/dist/index90.js +5 -66
- package/dist/index91.js +66 -5
- package/dist/index92.js +33 -51
- package/dist/index93.js +181 -5
- package/dist/index94.js +51 -24
- package/dist/index95.js +7 -69
- package/dist/index96.js +24 -33
- package/dist/index97.js +5 -181
- package/dist/index98.js +69 -7
- package/dist/index99.js +1 -1
- package/dist/types/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index99.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -277,7 +277,6 @@ declare interface InputWithLabelProps extends Omit<React_2.InputHTMLAttributes<H
|
|
|
277
277
|
status?: 'default' | 'error' | 'disabled';
|
|
278
278
|
size?: 'small' | 'medium';
|
|
279
279
|
labelClassName?: string;
|
|
280
|
-
errorClassName?: string;
|
|
281
280
|
}
|
|
282
281
|
|
|
283
282
|
declare interface LinearProgressIndicatorProps extends BaseProgressIndicatorProps {
|
|
@@ -402,7 +401,7 @@ declare interface PasswordInputProps extends Omit<React.InputHTMLAttributes<HTML
|
|
|
402
401
|
customValidator?: (value: string) => Requirement[];
|
|
403
402
|
}
|
|
404
403
|
|
|
405
|
-
export declare const PhoneInput: ({ label, helperText, errorText, size, disabled, labelClassName, onCountryChange, countryOptions, showDialCode, className, onValidityChange, includeDialCodeInValue, requiredOnBlur,
|
|
404
|
+
export declare const PhoneInput: ({ label, helperText, errorText, size, disabled, labelClassName, onCountryChange, countryOptions, showDialCode, className, onValidityChange, includeDialCodeInValue, requiredOnBlur, ...inputProps }: PhoneInputProps) => JSX.Element;
|
|
406
405
|
|
|
407
406
|
export declare interface PhoneInputProps extends Omit<default_2.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
408
407
|
label?: string;
|
|
@@ -418,7 +417,6 @@ export declare interface PhoneInputProps extends Omit<default_2.InputHTMLAttribu
|
|
|
418
417
|
onValidityChange?: (isValid: boolean) => void;
|
|
419
418
|
includeDialCodeInValue?: boolean;
|
|
420
419
|
requiredOnBlur?: boolean;
|
|
421
|
-
errorClassName?: string;
|
|
422
420
|
}
|
|
423
421
|
|
|
424
422
|
declare interface PictureAvatarProps extends BaseAvatarProps {
|
|
@@ -474,6 +472,7 @@ declare interface RangeDatePickerProps {
|
|
|
474
472
|
mode: 'range';
|
|
475
473
|
date: DateRange | undefined;
|
|
476
474
|
setDate: (date: DateRange | undefined) => void;
|
|
475
|
+
disabled?: (date: Date) => boolean;
|
|
477
476
|
}
|
|
478
477
|
|
|
479
478
|
declare interface Requirement {
|
|
@@ -624,6 +623,7 @@ declare interface SingleDatePickerProps {
|
|
|
624
623
|
mode: 'single';
|
|
625
624
|
date: Date | undefined;
|
|
626
625
|
setDate: (date: Date | undefined) => void;
|
|
626
|
+
disabled?: (date: Date) => boolean;
|
|
627
627
|
}
|
|
628
628
|
|
|
629
629
|
export declare function Skeleton({ className, ...props }: React.ComponentProps<'div'>): JSX.Element;
|