@autoafleveren/ui 0.9.25 → 0.9.27

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.
@@ -15,5 +15,5 @@ export declare function getInputComponent(inputType: InputType): string | Compon
15
15
  export declare function isLicenseInputCheck(inputType: InputType): boolean;
16
16
  export declare function mustRenderDefaultSlot(inputType: InputType, slots: Slots, label?: string): boolean;
17
17
  export declare function mustRenderIconSlot(position: IconPosition, inputType: InputType, isLoading: boolean, slots: Slots): boolean;
18
- export declare const defaultInputDomClasses = "block h-12 w-full appearance-none rounded-lg\n placeholder:text-zinc-300 focus:outline-none\n disabled:cursor-not-allowed disabled:border-zinc-100 disabled:bg-zinc-100";
18
+ export declare const defaultInputDomClasses = "block h-12 w-full appearance-none rounded-lg\n placeholder:text-zinc-300 focus:outline-none\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";
19
19
  export declare function getInputDomClasses(inputType: InputType, isDisabled: boolean, loading: boolean, hasError: boolean, isOpen: boolean, slots: Slots, attributes: InputHTMLAttributes): Record<string, boolean>;
@@ -1,3 +1,4 @@
1
+ import type { OpenDirection } from './index.d';
1
2
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
2
3
  label: {
3
4
  type: import("vue").PropType<string>;
@@ -22,6 +23,14 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
22
23
  type: import("vue").PropType<boolean>;
23
24
  default: boolean;
24
25
  };
26
+ openDirection: {
27
+ type: import("vue").PropType<OpenDirection>;
28
+ default: string;
29
+ };
30
+ dropdownClasses: {
31
+ type: import("vue").PropType<string>;
32
+ default: undefined;
33
+ };
25
34
  }, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
26
35
  label: {
27
36
  type: import("vue").PropType<string>;
@@ -46,12 +55,22 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
46
55
  type: import("vue").PropType<boolean>;
47
56
  default: boolean;
48
57
  };
58
+ openDirection: {
59
+ type: import("vue").PropType<OpenDirection>;
60
+ default: string;
61
+ };
62
+ dropdownClasses: {
63
+ type: import("vue").PropType<string>;
64
+ default: undefined;
65
+ };
49
66
  }>>, {
50
67
  label: string;
51
68
  errorMessage: string;
52
69
  wrapperClasses: string;
53
70
  optionLabel: string;
54
71
  fetchOnOpen: boolean;
72
+ openDirection: OpenDirection;
73
+ dropdownClasses: string;
55
74
  }, {}>, Partial<Record<NonNullable<"option" | "placeholder" | "list" | "tag" | "caret" | "clear" | "spinner" | "groupLabel" | "afterlist" | "beforelist" | "multiplelabel" | "singlelabel" | "infinite" | "nooptions" | "noresults">, (_: {
56
75
  classes: string | undefined;
57
76
  }) => any>> & {