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.
@@ -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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dfh-ui-library",
3
- "version": "1.14.52",
3
+ "version": "1.14.54",
4
4
  "description": "",
5
5
  "scripts": {
6
6
  "build": "rimraf dist && tsc --project tsconfig.json && rollup -c --bundleConfigAsCjs --environment NODE_ENV:production",