dfh-ui-library 1.14.52 → 1.14.54
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/cjs/index.css +1 -1
- package/dist/cjs/index.css.map +1 -1
- package/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.css +1 -1
- package/dist/esm/index.css.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/components/FormElements/IconInput/IconInput.handler.d.ts +1 -1
- package/dist/esm/types/components/FormElements/IconInput/iconInputLock.d.ts +2 -0
- package/dist/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const handleInputElementClasses: (_inputVariant?: "default" | "large" | "dynamic" | "uploadinput" | "small" | "noborder") => "px-3 py-[9px] bg-white border shadow-sm text-content-default !leading-[20px] text-14s font-normal border-border-default placeholder:text-content-deemphasized focus:outline-none block w-full rounded-md focus:ring-0 [&:is(:hover,:focus)]:border-state-focushover-border" | "px-0 h-8 py-2.5 bg-white border-0 rounded text-black-540 text-14s font-normal placeholder-gray-95 block w-[100px] items-center" | undefined;
|
|
1
|
+
export declare const handleInputElementClasses: (_inputVariant?: "default" | "large" | "dynamic" | "uploadinput" | "small" | "noborder") => "px-3 h-11 bg-white border shadow-sm text-content-default !leading-[20px] text-14s font-normal border-border-default placeholder:text-content-deemphasized focus:outline-none block w-full rounded focus:ring-0 [&:is(:hover,:focus)]:border-state-focushover-border" | "px-3 py-[9px] bg-white border shadow-sm text-content-default !leading-[20px] text-14s font-normal border-border-default placeholder:text-content-deemphasized focus:outline-none block w-full rounded-md focus:ring-0 [&:is(:hover,:focus)]:border-state-focushover-border" | "px-0 h-8 py-2.5 bg-white border-0 rounded text-black-540 text-14s font-normal placeholder-gray-95 block w-[100px] items-center" | undefined;
|
|
@@ -22,6 +22,8 @@ export interface ILockCodeInputProps extends Omit<IHookFormsInputProps, 'type' |
|
|
|
22
22
|
separator?: string;
|
|
23
23
|
leftIcon?: IconName;
|
|
24
24
|
rightIcon?: IconName;
|
|
25
|
+
/** Disable password manager autofill hints */
|
|
26
|
+
disablePasswordManagers?: boolean;
|
|
25
27
|
}
|
|
26
28
|
/**
|
|
27
29
|
* Dynamic Lock Code Input Component
|
package/dist/index.d.ts
CHANGED
|
@@ -1592,6 +1592,8 @@ interface ILockCodeInputProps extends Omit<IHookFormsInputProps, 'type' | 'value
|
|
|
1592
1592
|
separator?: string;
|
|
1593
1593
|
leftIcon?: IconName;
|
|
1594
1594
|
rightIcon?: IconName;
|
|
1595
|
+
/** Disable password manager autofill hints */
|
|
1596
|
+
disablePasswordManagers?: boolean;
|
|
1595
1597
|
}
|
|
1596
1598
|
/**
|
|
1597
1599
|
* Dynamic Lock Code Input Component
|