@autoafleveren/ui 0.14.1 → 0.14.2

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.
@@ -21,6 +21,12 @@ module.exports = {
21
21
  },
22
22
  },
23
23
  fontSize: {
24
+ '4xl': ['1.953rem', {
25
+ lineHeight: '2rem',
26
+ }],
27
+ '3xl': ['1.563rem', {
28
+ lineHeight: '2rem',
29
+ }],
24
30
  '2xl': ['1.25rem', {
25
31
  lineHeight: '1.75rem',
26
32
  }],
@@ -17,5 +17,5 @@ export declare function getInputComponent(inputType: InputType): string | Compon
17
17
  export declare function isLicenseInputCheck(inputType: InputType): boolean;
18
18
  export declare function mustRenderDefaultSlot(inputType: InputType, slots: Slots, label?: string): boolean;
19
19
  export declare function mustRenderIconSlot(position: IconPosition, inputType: InputType, isLoading: boolean, slots: Slots): boolean;
20
- export declare const defaultInputDomClasses = "block h-11 w-full appearance-none rounded-lg\n placeholder:text-zinc-300 focus:outline-none text-base\n disabled:cursor-not-allowed disabled:border-zinc-100 disabled:bg-zinc-100\n read-only:cursor-default read-only:border-zinc-300 read-only:bg-zinc-100";
20
+ export declare const defaultInputDomClasses = "block w-full appearance-none rounded-lg\n placeholder:text-zinc-300 focus:outline-none text-base\n disabled:cursor-not-allowed disabled:border-zinc-100 disabled:bg-zinc-100\n read-only:cursor-default read-only:border-zinc-300 read-only:bg-zinc-100";
21
21
  export declare function getInputDomClasses(inputType: InputType, isDisabled: boolean, loading: boolean, hasError: boolean, isOpen: boolean, slots: Slots, attributes: InputHTMLAttributes): Record<string, boolean>;