@autoafleveren/ui 0.4.0 → 0.7.0

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.
Files changed (56) hide show
  1. package/dist/config/eslint.cjs +3 -1
  2. package/dist/config/tailwind/config.cjs +17 -3
  3. package/dist/icons.cjs +3 -3
  4. package/dist/icons.js +640 -627
  5. package/dist/types/components/AppAlert/AppAlert.vue.d.ts +1 -1
  6. package/dist/types/components/AppAvatar/AppAvatar.vue.d.ts +29 -0
  7. package/dist/types/components/AppAvatar/DefaultAvatar.vue.d.ts +2 -0
  8. package/dist/types/components/AppAvatar/index.d.ts +3 -0
  9. package/dist/types/components/AppBadge/AppBadge.vue.d.ts +6 -1
  10. package/dist/types/components/AppBadge/index.d.ts +3 -1
  11. package/dist/types/components/AppButton/AppButton.vue.d.ts +1 -1
  12. package/dist/types/components/AppButton/ButtonIconSlot.vue.d.ts +1 -1
  13. package/dist/types/components/AppCard/AppCard.vue.d.ts +1 -1
  14. package/dist/types/components/AppCard/CardAction.vue.d.ts +1 -1
  15. package/dist/types/components/AppCard/CardIconSlot.vue.d.ts +1 -1
  16. package/dist/types/components/AppConfirm/AppConfirm.vue.d.ts +68 -0
  17. package/dist/types/components/AppConfirm/index.d.ts +1 -0
  18. package/dist/types/components/AppInput/AppInput.vue.d.ts +37 -80
  19. package/dist/types/components/AppInput/Input.vue.d.ts +25 -0
  20. package/dist/types/components/AppInput/InputIconSlot.vue.d.ts +1 -1
  21. package/dist/types/components/AppInput/LocationInput.vue.d.ts +34 -0
  22. package/dist/types/components/AppInput/__mocks__/location.d.ts +2 -0
  23. package/dist/types/components/AppInput/choice.d.ts +5 -0
  24. package/dist/types/components/AppInput/datepicker.d.ts +7 -0
  25. package/dist/types/components/AppInput/index.d.ts +18 -3
  26. package/dist/types/components/AppInput/location.d.ts +3 -0
  27. package/dist/types/components/AppInputLabel/AppInputLabel.vue.d.ts +19 -0
  28. package/dist/types/components/AppLicensePlate/AppLicensePlate.vue.d.ts +2 -2
  29. package/dist/types/components/AppLoader/AppLoader.vue.d.ts +1 -1
  30. package/dist/types/components/AppMaps/AppMaps.vue.d.ts +1 -3
  31. package/dist/types/components/AppNavigationMenu/AppNavigationMenu.vue.d.ts +1 -1
  32. package/dist/types/components/AppNavigationMenu/Mobile.vue.d.ts +1 -1
  33. package/dist/types/components/AppNavigationMenu/NavigationItem.vue.d.ts +1 -1
  34. package/dist/types/components/AppNavigationMenu/SupportItem.vue.d.ts +1 -1
  35. package/dist/types/components/AppTimeline/AppTimeline.vue.d.ts +19 -0
  36. package/dist/types/components/AppTimeline/AppTimelineItem.vue.d.ts +30 -0
  37. package/dist/types/components/AppTimeline/AppTimelineItemIcon.vue.d.ts +12 -0
  38. package/dist/types/components/AppTimeline/__mocks__/timeline.d.ts +4 -0
  39. package/dist/types/components/index.d.ts +6 -0
  40. package/dist/types/composables/index.d.ts +2 -0
  41. package/dist/types/composables/useConfirm/index.d.ts +9 -0
  42. package/dist/types/composables/useGoogleApi/index.d.ts +4 -0
  43. package/dist/types/composables/useNavigation/index.d.ts +15 -12
  44. package/dist/types/icons/LocationMarkerIcon.vue.d.ts +1 -1
  45. package/dist/types/icons/PartyPopperIcon.vue.d.ts +2 -0
  46. package/dist/types/icons/index.d.ts +1 -0
  47. package/dist/types/icons/status/ErrorIcon.vue.d.ts +1 -1
  48. package/dist/types/icons/status/SuccessIcon.vue.d.ts +1 -1
  49. package/dist/types/icons/status/WarningIcon.vue.d.ts +1 -1
  50. package/dist/types/layouts/Auth/Auth.vue.d.ts +1 -1
  51. package/dist/types/layouts/Base/Base.vue.d.ts +1 -1
  52. package/dist/ui-library.css +1 -1
  53. package/dist/ui.cjs +11 -6
  54. package/dist/ui.css +1 -1
  55. package/dist/ui.js +4767 -4152
  56. package/package.json +7 -7
@@ -20,7 +20,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
20
20
  title: string;
21
21
  description: string;
22
22
  withIcon: boolean;
23
- }>, {
23
+ }, {}>, {
24
24
  icon?(_: {
25
25
  type: "success" | "warning" | "error";
26
26
  }): any;
@@ -0,0 +1,29 @@
1
+ import type { Props } from './index.d';
2
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
3
+ size: string;
4
+ src: undefined;
5
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
6
+ size: string;
7
+ src: undefined;
8
+ }>>>, {
9
+ size: "small" | "medium" | "large";
10
+ src: string;
11
+ }, {}>;
12
+ export default _default;
13
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
14
+ type __VLS_TypePropsToRuntimeProps<T> = {
15
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
16
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
17
+ } : {
18
+ type: import('vue').PropType<T[K]>;
19
+ required: true;
20
+ };
21
+ };
22
+ type __VLS_WithDefaults<P, D> = {
23
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
24
+ default: D[K];
25
+ }> : P[K];
26
+ };
27
+ type __VLS_Prettify<T> = {
28
+ [K in keyof T]: T[K];
29
+ } & {};
@@ -0,0 +1,2 @@
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
+ export default _default;
@@ -0,0 +1,3 @@
1
+ import type { Size } from './index.d';
2
+ export declare const sizes: readonly ["small", "medium", "large"];
3
+ export declare const domClassesPerSize: Record<Size, string[]>;
@@ -1,14 +1,19 @@
1
1
  declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
2
2
  type?: "default" | "success" | "warning" | "error" | undefined;
3
+ size?: "medium" | "large" | undefined;
3
4
  }>, {
4
5
  type: string;
6
+ size: string;
5
7
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
6
8
  type?: "default" | "success" | "warning" | "error" | undefined;
9
+ size?: "medium" | "large" | undefined;
7
10
  }>, {
8
11
  type: string;
12
+ size: string;
9
13
  }>>>, {
10
14
  type: "default" | "success" | "warning" | "error";
11
- }>, {
15
+ size: "medium" | "large";
16
+ }, {}>, {
12
17
  leadingIcon?(_: {}): any;
13
18
  default?(_: {}): any;
14
19
  trailingIcon?(_: {}): any;
@@ -1,3 +1,5 @@
1
- import type { Type } from './index.d';
1
+ import type { Size, Type } from './index.d';
2
2
  export declare const types: readonly ["default", "success", "warning", "error"];
3
+ export declare const sizes: readonly ["medium", "large"];
3
4
  export declare const domClassesPerType: Record<Type, string[]>;
5
+ export declare const domClassesPerSize: Record<Size, string[]>;
@@ -29,7 +29,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
29
29
  loading: boolean;
30
30
  colorType: ColorType;
31
31
  disabled: boolean;
32
- }>, {
32
+ }, {}>, {
33
33
  leadingIcon?(_: {}): any;
34
34
  default?(_: {}): any;
35
35
  trailingIcon?(_: {}): any;
@@ -2,7 +2,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
2
2
  loading?: boolean | undefined;
3
3
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
4
  loading?: boolean | undefined;
5
- }>>>, {}>, {
5
+ }>>>, {}, {}>, {
6
6
  default?(_: {}): any;
7
7
  }>;
8
8
  export default _default;
@@ -24,7 +24,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
24
24
  icon: string;
25
25
  bordered: boolean;
26
26
  actions: Action[];
27
- }>, {
27
+ }, {}>, {
28
28
  icon?(_: {}): any;
29
29
  title?(_: {}): any;
30
30
  default?(_: {}): any;
@@ -3,7 +3,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
3
3
  item: Action;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
5
  item: Action;
6
- }>>>, {}>;
6
+ }>>>, {}, {}>;
7
7
  export default _default;
8
8
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
9
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -3,7 +3,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
3
3
  icon?: string | Component | undefined;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
5
  icon?: string | Component | undefined;
6
- }>>>, {}>, {
6
+ }>>>, {}, {}>, {
7
7
  default?(_: {}): any;
8
8
  }>;
9
9
  export default _default;
@@ -0,0 +1,68 @@
1
+ import type { Component } from 'vue';
2
+ import type { ConfirmProps } from './index.d';
3
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ConfirmProps>, {
4
+ type: string;
5
+ confirmButtonText: string;
6
+ cancelButtonText: string;
7
+ withBackdrop: boolean;
8
+ preventBackdropClose: boolean;
9
+ icon: undefined;
10
+ html: boolean;
11
+ title: string;
12
+ content: string;
13
+ extendedIconDomClasses: string;
14
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
15
+ close: (value: boolean) => void;
16
+ confirmed: (value: true) => void;
17
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ConfirmProps>, {
18
+ type: string;
19
+ confirmButtonText: string;
20
+ cancelButtonText: string;
21
+ withBackdrop: boolean;
22
+ preventBackdropClose: boolean;
23
+ icon: undefined;
24
+ html: boolean;
25
+ title: string;
26
+ content: string;
27
+ extendedIconDomClasses: string;
28
+ }>>> & {
29
+ onClose?: ((value: boolean) => any) | undefined;
30
+ onConfirmed?: ((value: true) => any) | undefined;
31
+ }, {
32
+ html: boolean;
33
+ title: string;
34
+ type: import("./index.d").ConfirmType;
35
+ icon: string | Component;
36
+ content: string;
37
+ confirmButtonText: string;
38
+ cancelButtonText: string;
39
+ withBackdrop: boolean;
40
+ preventBackdropClose: boolean;
41
+ extendedIconDomClasses: string;
42
+ }, {}>, {
43
+ title?(_: {}): any;
44
+ default?(_: {}): any;
45
+ }>;
46
+ export default _default;
47
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
48
+ type __VLS_TypePropsToRuntimeProps<T> = {
49
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
50
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
51
+ } : {
52
+ type: import('vue').PropType<T[K]>;
53
+ required: true;
54
+ };
55
+ };
56
+ type __VLS_WithDefaults<P, D> = {
57
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
58
+ default: D[K];
59
+ }> : P[K];
60
+ };
61
+ type __VLS_WithTemplateSlots<T, S> = T & {
62
+ new (): {
63
+ $slots: S;
64
+ };
65
+ };
66
+ type __VLS_Prettify<T> = {
67
+ [K in keyof T]: T[K];
68
+ } & {};
@@ -0,0 +1 @@
1
+ export declare const types: readonly ["default", "success", "error"];
@@ -1,84 +1,41 @@
1
1
  import '@vuepic/vue-datepicker/dist/main.css';
2
- import type { Type, DateTimeModelValue } from './index.d';
3
- declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
4
- type?: Type | undefined;
5
- readonly?: boolean | undefined;
6
- disabled?: boolean | undefined;
7
- loading?: boolean | undefined;
8
- required?: boolean | undefined;
9
- hasError?: boolean | undefined;
10
- errorMessage?: string | undefined;
11
- modelValue?: string | undefined | number | Date | DateTimeModelValue;
12
- label?: string | undefined;
13
- }>, {
14
- type: string;
15
- disabled: boolean;
16
- readonly: boolean;
17
- loading: boolean;
18
- required: boolean;
19
- hasError: boolean;
20
- label: undefined;
21
- errorMessage: string;
22
- modelValue: undefined;
23
- }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
24
- "update:modelValue": (value: string | number | Date | DateTimeModelValue) => void;
25
- }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
26
- type?: Type | undefined;
27
- readonly?: boolean | undefined;
28
- disabled?: boolean | undefined;
29
- loading?: boolean | undefined;
30
- required?: boolean | undefined;
31
- hasError?: boolean | undefined;
32
- errorMessage?: string | undefined;
33
- modelValue?: string | undefined | number | Date | DateTimeModelValue;
34
- label?: string | undefined;
35
- }>, {
36
- type: string;
37
- disabled: boolean;
38
- readonly: boolean;
39
- loading: boolean;
40
- required: boolean;
41
- hasError: boolean;
42
- label: undefined;
43
- errorMessage: string;
44
- modelValue: undefined;
45
- }>>> & {
46
- "onUpdate:modelValue"?: ((value: string | number | Date | DateTimeModelValue) => any) | undefined;
47
- }, {
48
- label: string;
49
- type: Type;
50
- required: boolean;
51
- loading: boolean;
52
- disabled: boolean;
53
- readonly: boolean;
54
- hasError: boolean;
55
- errorMessage: string;
56
- modelValue: string | number | Date | DateTimeModelValue;
57
- }>, {
58
- label?(_: {}): any;
59
- leadingIcon?(_: {}): any;
60
- trailingIcon?(_: {}): any;
61
- }>;
62
- export default _default;
63
- type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
64
- type __VLS_TypePropsToRuntimeProps<T> = {
65
- [K in keyof T]-?: {} extends Pick<T, K> ? {
66
- type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
67
- } : {
68
- type: import('vue').PropType<T[K]>;
69
- required: true;
2
+ import type { AppInputProps } from './index.d';
3
+ declare const _default: <ModelValue>(__VLS_props: AppInputProps<ModelValue> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
4
+ props: AppInputProps<ModelValue>;
5
+ expose(exposed: {}): void;
6
+ attrs: any;
7
+ slots: {
8
+ label?(_: {}): any;
9
+ leadingIcon?(_: {}): any;
10
+ default?(_: {}): any;
11
+ trailingIcon?(_: {}): any;
70
12
  };
71
- };
72
- type __VLS_WithDefaults<P, D> = {
73
- [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
74
- default: D[K];
75
- }> : P[K];
76
- };
77
- type __VLS_WithTemplateSlots<T, S> = T & {
78
- new (): {
79
- $slots: S;
13
+ emit: (event: 'update:modelValue', value: ModelValue) => void;
14
+ }, "slots" | "attrs" | "emit"> | undefined, __VLS_setup?: {
15
+ props: AppInputProps<ModelValue>;
16
+ expose(exposed: {}): void;
17
+ attrs: any;
18
+ slots: {
19
+ label?(_: {}): any;
20
+ leadingIcon?(_: {}): any;
21
+ default?(_: {}): any;
22
+ trailingIcon?(_: {}): any;
80
23
  };
24
+ emit: (event: 'update:modelValue', value: ModelValue) => void;
25
+ }) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
26
+ [key: string]: any;
27
+ }> & {
28
+ __ctx?: {
29
+ props: AppInputProps<ModelValue>;
30
+ expose(exposed: {}): void;
31
+ attrs: any;
32
+ slots: {
33
+ label?(_: {}): any;
34
+ leadingIcon?(_: {}): any;
35
+ default?(_: {}): any;
36
+ trailingIcon?(_: {}): any;
37
+ };
38
+ emit: (event: 'update:modelValue', value: ModelValue) => void;
39
+ } | undefined;
81
40
  };
82
- type __VLS_Prettify<T> = {
83
- [K in keyof T]: T[K];
84
- } & {};
41
+ export default _default;
@@ -0,0 +1,25 @@
1
+ import type { InputProps } from './index.d';
2
+ declare const _default: <ModelValue>(__VLS_props: InputProps<ModelValue> & import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, __VLS_ctx?: Pick<{
3
+ props: InputProps<ModelValue>;
4
+ expose(exposed: {}): void;
5
+ attrs: any;
6
+ slots: {};
7
+ emit: (event: 'update:modelValue', value: ModelValue) => void;
8
+ }, "slots" | "attrs" | "emit"> | undefined, __VLS_setup?: {
9
+ props: InputProps<ModelValue>;
10
+ expose(exposed: {}): void;
11
+ attrs: any;
12
+ slots: {};
13
+ emit: (event: 'update:modelValue', value: ModelValue) => void;
14
+ }) => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
15
+ [key: string]: any;
16
+ }> & {
17
+ __ctx?: {
18
+ props: InputProps<ModelValue>;
19
+ expose(exposed: {}): void;
20
+ attrs: any;
21
+ slots: {};
22
+ emit: (event: 'update:modelValue', value: ModelValue) => void;
23
+ } | undefined;
24
+ };
25
+ export default _default;
@@ -2,7 +2,7 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
2
2
  loading?: boolean | undefined;
3
3
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
4
4
  loading?: boolean | undefined;
5
- }>>>, {}>, {
5
+ }>>>, {}, {}>, {
6
6
  default?(_: {}): any;
7
7
  }>;
8
8
  export default _default;
@@ -0,0 +1,34 @@
1
+ /// <reference types="google.maps" />
2
+ import type { LocationModelValue, LocationInputProps } from './index.d';
3
+ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<LocationInputProps>, {
4
+ placeholder: string;
5
+ placeOptions: null;
6
+ }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7
+ "update:modelValue": (value: LocationModelValue) => void;
8
+ }, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<LocationInputProps>, {
9
+ placeholder: string;
10
+ placeOptions: null;
11
+ }>>> & {
12
+ "onUpdate:modelValue"?: ((value: LocationModelValue) => any) | undefined;
13
+ }, {
14
+ placeholder: string;
15
+ placeOptions: google.maps.places.AutocompleteOptions | null;
16
+ }, {}>;
17
+ export default _default;
18
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
19
+ type __VLS_TypePropsToRuntimeProps<T> = {
20
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
21
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
22
+ } : {
23
+ type: import('vue').PropType<T[K]>;
24
+ required: true;
25
+ };
26
+ };
27
+ type __VLS_WithDefaults<P, D> = {
28
+ [K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
29
+ default: D[K];
30
+ }> : P[K];
31
+ };
32
+ type __VLS_Prettify<T> = {
33
+ [K in keyof T]: T[K];
34
+ } & {};
@@ -0,0 +1,2 @@
1
+ import type { LocationModelValue } from '../index.d';
2
+ export declare const location: LocationModelValue;
@@ -0,0 +1,5 @@
1
+ import type { ChoiceType, InputType } from './index.d';
2
+ export declare const choiceInputTypes: readonly ["radio", "checkbox"];
3
+ export declare function isChoiceInputCheck(inputType: InputType): inputType is ChoiceType;
4
+ export declare const defaultChoiceInputDomClasses = "peer text-zinc-700 appearance-none h-5 w-5 border\n border-zinc-300 cursor-pointer checked:!border-[5px] checked:border-primary disabled:border-10\n disabled:!border-zinc-100 disabled:cursor-not-allowed focus:border-2 focus:border-primary\n focus-visible:outline-none";
5
+ export declare function getChoiceInputDomClasses(inputType: InputType, hasError: boolean): Record<string, boolean>;
@@ -0,0 +1,7 @@
1
+ import type { Component } from 'vue';
2
+ import type { VueDatePickerProps } from '@vuepic/vue-datepicker';
3
+ import type { DatePickerType, InputType } from './index.d';
4
+ export declare const datePickerTypes: readonly ["date", "datetime", "time", "year", "month", "week"];
5
+ export declare const datePickerIconPerType: Record<DatePickerType, Component>;
6
+ export declare function isDatePickerCheck(inputType: InputType): inputType is DatePickerType;
7
+ export declare function getDatePickerProps(datePickerType: DatePickerType, inputUuid: string): VueDatePickerProps;
@@ -1,3 +1,18 @@
1
- import type { Component } from 'vue';
2
- import type { DatePickerType } from './index.d';
3
- export declare const datePickerIconPerType: Record<DatePickerType, Component>;
1
+ import type { Component, Slots, InputHTMLAttributes } from 'vue';
2
+ import type { IconPosition, InputType } from './index.d';
3
+ export declare const generalInputTypes: readonly ["email", "number", "search", "tel", "text", "url", "password", "textarea"];
4
+ export declare const inputTypes: readonly ["email", "number", "search", "tel", "text", "url", "password", "textarea", "radio", "checkbox", "date", "datetime", "time", "year", "month", "week"];
5
+ export declare const appInputPropDefaults: {
6
+ readonly disabled: false;
7
+ readonly readonly: false;
8
+ readonly loading: false;
9
+ readonly required: false;
10
+ readonly hasError: false;
11
+ readonly label: undefined;
12
+ readonly errorMessage: "";
13
+ };
14
+ export declare function getInputComponent(inputType: InputType): string | Component;
15
+ export declare function mustRenderDefaultSlot(inputType: InputType, slots: Slots, label?: string): boolean;
16
+ export declare function mustRenderIconSlot(position: IconPosition, inputType: InputType, isLoading: boolean, slots: Slots): boolean;
17
+ export declare const defaultInputDomClasses = "block h-12 w-full appearance-none rounded-lg border bg-white\n text-sm placeholder:text-zinc-300 hover:bg-zinc-100 focus:outline-none focus:ring-1 focus:ring-zinc-300\n disabled:cursor-not-allowed disabled:border-zinc-100 disabled:bg-zinc-100 sm:text-sm";
18
+ export declare function getInputDomClasses(inputType: InputType, isDisabled: boolean, loading: boolean, hasError: boolean, slots: Slots, attributes: InputHTMLAttributes): Record<string, boolean>;
@@ -0,0 +1,3 @@
1
+ import type { LocationType, InputType } from './index.d';
2
+ export declare const locationTypes: readonly ["location"];
3
+ export declare function isLocationInputCheck(inputType: InputType): inputType is LocationType;
@@ -0,0 +1,19 @@
1
+ import type { Props } from './index.d';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>, {
3
+ default?(_: {}): any;
4
+ }>;
5
+ export default _default;
6
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
+ type __VLS_TypePropsToRuntimeProps<T> = {
8
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
9
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
+ } : {
11
+ type: import('vue').PropType<T[K]>;
12
+ required: true;
13
+ };
14
+ };
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -11,9 +11,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
11
11
  license: undefined;
12
12
  country: string;
13
13
  }>>>, {
14
- license: string;
15
14
  country: "NL";
16
- }>, {
15
+ license: string;
16
+ }, {}>, {
17
17
  default?(_: {}): any;
18
18
  }>;
19
19
  export default _default;
@@ -9,7 +9,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
9
9
  size: string;
10
10
  }>>>, {
11
11
  size: Size;
12
- }>;
12
+ }, {}>;
13
13
  export default _default;
14
14
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
15
15
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,6 +1,5 @@
1
1
  /// <reference types="google.maps" />
2
2
  declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
3
- apiKey: string;
4
3
  withMarker?: boolean | undefined;
5
4
  disableMarkerClick?: boolean | undefined;
6
5
  markerLatitude?: number | null | undefined;
@@ -19,7 +18,6 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
19
18
  disableMarkerClick: boolean;
20
19
  disableUserInteraction: boolean;
21
20
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
22
- apiKey: string;
23
21
  withMarker?: boolean | undefined;
24
22
  disableMarkerClick?: boolean | undefined;
25
23
  markerLatitude?: number | null | undefined;
@@ -46,7 +44,7 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
46
44
  mapCenterLatitude: number | null;
47
45
  mapCenterLongitude: number | null;
48
46
  mapOptions: google.maps.MapOptions | null;
49
- }>;
47
+ }, {}>;
50
48
  export default _default;
51
49
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
52
50
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -3,7 +3,7 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
3
3
  item: NavigationItem;
4
4
  }>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
5
5
  item: NavigationItem;
6
- }>>>, {}>;
6
+ }>>>, {}, {}>;
7
7
  export default _default;
8
8
  type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
9
9
  type __VLS_TypePropsToRuntimeProps<T> = {
@@ -1,2 +1,2 @@
1
- declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}>;
1
+ declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -0,0 +1,19 @@
1
+ import type { TimelineProps } from './index.d';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<TimelineProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<TimelineProps>>>, {}, {}>, {
3
+ default?(_: {}): any;
4
+ }>;
5
+ export default _default;
6
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
7
+ type __VLS_TypePropsToRuntimeProps<T> = {
8
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
9
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
10
+ } : {
11
+ type: import('vue').PropType<T[K]>;
12
+ required: true;
13
+ };
14
+ };
15
+ type __VLS_WithTemplateSlots<T, S> = T & {
16
+ new (): {
17
+ $slots: S;
18
+ };
19
+ };
@@ -0,0 +1,30 @@
1
+ import type { TimelineItemProps } from '.';
2
+ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<TimelineItemProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<TimelineItemProps>>>, {}, {}>, {
3
+ icon?(_: {
4
+ value: import("vue").Component | undefined;
5
+ }): any;
6
+ date?(_: {
7
+ value: string;
8
+ }): any;
9
+ title?(_: {
10
+ value: string;
11
+ }): any;
12
+ default?(_: {
13
+ value: string;
14
+ }): any;
15
+ }>;
16
+ export default _default;
17
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
18
+ type __VLS_TypePropsToRuntimeProps<T> = {
19
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
20
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
21
+ } : {
22
+ type: import('vue').PropType<T[K]>;
23
+ required: true;
24
+ };
25
+ };
26
+ type __VLS_WithTemplateSlots<T, S> = T & {
27
+ new (): {
28
+ $slots: S;
29
+ };
30
+ };
@@ -0,0 +1,12 @@
1
+ import type { TimelineItemIconProps } from '.';
2
+ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<TimelineItemIconProps>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<TimelineItemIconProps>>>, {}, {}>;
3
+ export default _default;
4
+ type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
5
+ type __VLS_TypePropsToRuntimeProps<T> = {
6
+ [K in keyof T]-?: {} extends Pick<T, K> ? {
7
+ type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
8
+ } : {
9
+ type: import('vue').PropType<T[K]>;
10
+ required: true;
11
+ };
12
+ };
@@ -0,0 +1,4 @@
1
+ import type { TimelineItem } from '../index.d';
2
+ export declare const timelineItemWithIcon: TimelineItem;
3
+ export declare const timelineItem: TimelineItem;
4
+ export declare const timelineItems: TimelineItem[];
@@ -1,9 +1,15 @@
1
1
  export { default as AppAlert } from './AppAlert/AppAlert.vue';
2
+ export { default as AppAvatar } from './AppAvatar/AppAvatar.vue';
2
3
  export { default as AppBadge } from './AppBadge/AppBadge.vue';
3
4
  export { default as AppButton } from './AppButton/AppButton.vue';
4
5
  export { default as AppCard } from './AppCard/AppCard.vue';
6
+ export { default as AppConfirm } from './AppConfirm/AppConfirm.vue';
5
7
  export { default as AppInput } from './AppInput/AppInput.vue';
8
+ export { default as AppInputLabel } from './AppInputLabel/AppInputLabel.vue';
6
9
  export { default as AppLoader } from './AppLoader/AppLoader.vue';
7
10
  export { default as AppMaps } from './AppMaps/AppMaps.vue';
8
11
  export { default as AppNavigationMenu } from './AppNavigationMenu/AppNavigationMenu.vue';
9
12
  export { default as AppLicensePlate } from './AppLicensePlate/AppLicensePlate.vue';
13
+ export { default as AppTimeline } from './AppTimeline/AppTimeline.vue';
14
+ export { default as AppTimelineItem } from './AppTimeline/AppTimelineItem.vue';
15
+ export { default as AppTimelineItemIcon } from './AppTimeline/AppTimelineItemIcon.vue';