@datawire-ai/busyfile-design-library 1.29.2 → 1.29.4
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/index.js +887 -880
- package/dist/index.umd.cjs +8 -8
- package/dist/types/index.d.ts +4 -1
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -154,6 +154,8 @@ export declare interface DividerProps extends React_2.ComponentProps<typeof Sepa
|
|
|
154
154
|
size?: 1 | 2 | 3 | 4;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
|
+
export declare const EmailInput: (props: InputWithLabelProps) => JSX.Element;
|
|
158
|
+
|
|
157
159
|
declare interface InitialsAvatarProps extends BaseAvatarProps {
|
|
158
160
|
type: 'initials';
|
|
159
161
|
initials: string;
|
|
@@ -293,11 +295,12 @@ declare interface Page404Props {
|
|
|
293
295
|
href?: string;
|
|
294
296
|
}
|
|
295
297
|
|
|
296
|
-
export declare const PasswordInput: ({ label, showForgot, onValidityChange, customValidator, showPasswordValidation, labelClassName, ...props }: PasswordInputProps) => JSX.Element;
|
|
298
|
+
export declare const PasswordInput: ({ label, showForgot, forgotPasswordUrl, onValidityChange, customValidator, showPasswordValidation, labelClassName, ...props }: PasswordInputProps) => JSX.Element;
|
|
297
299
|
|
|
298
300
|
declare interface PasswordInputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, 'size'> {
|
|
299
301
|
label: string;
|
|
300
302
|
showForgot?: boolean;
|
|
303
|
+
forgotPasswordUrl?: string;
|
|
301
304
|
showPasswordValidation?: boolean;
|
|
302
305
|
labelClassName?: string;
|
|
303
306
|
onValidityChange?: (isValid: boolean, requirements: Requirement[]) => void;
|