@aeria-ui/ui 0.0.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.
- package/LICENSE +19 -0
- package/README.md +11 -0
- package/dist/activation-c458cc9b.js +83 -0
- package/dist/components/aeria-accordion/aeria-accordion.vue.d.ts +24 -0
- package/dist/components/aeria-badge/aeria-badge.vue.d.ts +22 -0
- package/dist/components/aeria-bare-button/aeria-bare-button.vue.d.ts +25 -0
- package/dist/components/aeria-button/aeria-button.vue.d.ts +30 -0
- package/dist/components/aeria-card/aeria-card.vue.d.ts +25 -0
- package/dist/components/aeria-context-menu/aeria-context-menu.vue.d.ts +38 -0
- package/dist/components/aeria-crud/_internals/components/aeria-filter-panel/aeria-filter-panel.vue.d.ts +6 -0
- package/dist/components/aeria-crud/_internals/components/aeria-insert-panel/aeria-insert-panel.vue.d.ts +7 -0
- package/dist/components/aeria-crud/_internals/helpers.d.ts +6 -0
- package/dist/components/aeria-crud/_internals/layouts/aeria-grid/aeria-grid.vue.d.ts +18 -0
- package/dist/components/aeria-crud/_internals/layouts/aeria-tabular/aeria-tabular.vue.d.ts +24 -0
- package/dist/components/aeria-crud/_internals/layouts/index.d.ts +98 -0
- package/dist/components/aeria-crud/_internals/store.d.ts +24 -0
- package/dist/components/aeria-crud/aeria-crud.vue.d.ts +45 -0
- package/dist/components/aeria-grid/aeria-grid.vue.d.ts +21 -0
- package/dist/components/aeria-icon/aeria-icon.vue.d.ts +27 -0
- package/dist/components/aeria-info/aeria-info.vue.d.ts +22 -0
- package/dist/components/aeria-main/aeria-main.vue.d.ts +9 -0
- package/dist/components/aeria-menu/aeria-menu.vue.d.ts +7 -0
- package/dist/components/aeria-pagination/aeria-pagination.vue.d.ts +19 -0
- package/dist/components/aeria-panel/aeria-panel.vue.d.ts +75 -0
- package/dist/components/aeria-picture/aeria-picture.vue.d.ts +37 -0
- package/dist/components/aeria-table/aeria-table.vue.d.ts +42 -0
- package/dist/components/aeria-tabs/aeria-tabs.vue.d.ts +23 -0
- package/dist/components/dashboard/aeria-crud-topbar/aeria-crud-topbar.vue.d.ts +14 -0
- package/dist/components/dashboard/aeria-password-form/aeria-password-form.vue.d.ts +36 -0
- package/dist/components/dashboard/aeria-prompt/aeria-prompt.vue.d.ts +23 -0
- package/dist/components/dashboard/aeria-toast/aeria-toast.vue.d.ts +25 -0
- package/dist/components/dashboard/index.d.ts +4 -0
- package/dist/components/form/aeria-checkbox/aeria-checkbox.vue.d.ts +84 -0
- package/dist/components/form/aeria-file/aeria-file.vue.d.ts +26 -0
- package/dist/components/form/aeria-form/_internals/helpers.d.ts +4 -0
- package/dist/components/form/aeria-form/aeria-form.vue.d.ts +88 -0
- package/dist/components/form/aeria-input/aeria-input.vue.d.ts +35 -0
- package/dist/components/form/aeria-options/aeria-options.vue.d.ts +41 -0
- package/dist/components/form/aeria-search/_internals/components/aeria-search-container/aeria-search-container.vue.d.ts +26 -0
- package/dist/components/form/aeria-search/_internals/components/aeria-search-item/aeria-search-item.vue.d.ts +31 -0
- package/dist/components/form/aeria-search/aeria-search.vue.d.ts +40 -0
- package/dist/components/form/aeria-select/aeria-select.vue.d.ts +31 -0
- package/dist/components/form/aeria-switch/aeria-switch.vue.d.ts +34 -0
- package/dist/components/form/index.d.ts +8 -0
- package/dist/components/form/types.d.ts +9 -0
- package/dist/components/index.d.ts +20 -0
- package/dist/components/utils/aeria-async.d.ts +41 -0
- package/dist/components/utils/index.d.ts +1 -0
- package/dist/crud-view-0cee3962.js +31 -0
- package/dist/index-8ee4cf77.js +3259 -0
- package/dist/index.d.ts +2 -0
- package/dist/less/main.less +3 -0
- package/dist/less/polyfill.less +37 -0
- package/dist/less/spinner.less +47 -0
- package/dist/less/theme.less +10 -0
- package/dist/less/utilities.less +27 -0
- package/dist/password-change-845c176d.js +53 -0
- package/dist/profile-dc78782e.js +133 -0
- package/dist/routes.d.ts +4 -0
- package/dist/signin-596dcc4b.js +83 -0
- package/dist/signup-33a15c17.js +112 -0
- package/dist/style.css +1 -0
- package/dist/ui.js +42 -0
- package/dist/views/dashboard/crud-view/crud-view.vue.d.ts +21 -0
- package/dist/views/dashboard/user/password-change/password-change.vue.d.ts +2 -0
- package/dist/views/dashboard/user/profile/profile.vue.d.ts +9 -0
- package/dist/views/user/activation.vue.d.ts +2 -0
- package/dist/views/user/signin.vue.d.ts +2 -0
- package/dist/views/user/signup.vue.d.ts +2 -0
- package/package.json +52 -0
- package/themes/dark.less +21 -0
- package/themes/light.less +21 -0
- package/vue.d.ts +7 -0
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
closeHint?: boolean;
|
|
3
|
+
modelValue?: any;
|
|
4
|
+
title?: string;
|
|
5
|
+
float?: boolean;
|
|
6
|
+
fixedRight?: boolean;
|
|
7
|
+
floating?: boolean;
|
|
8
|
+
loading?: boolean;
|
|
9
|
+
bordered?: boolean;
|
|
10
|
+
animate?: boolean;
|
|
11
|
+
overlay?: boolean;
|
|
12
|
+
invisibleOverlay?: boolean;
|
|
13
|
+
collapsed?: boolean;
|
|
14
|
+
collapsible?: boolean;
|
|
15
|
+
fullAeriaidth?: boolean;
|
|
16
|
+
fill?: boolean;
|
|
17
|
+
fillFooter?: boolean;
|
|
18
|
+
transparent?: boolean;
|
|
19
|
+
transparentMobile?: boolean;
|
|
20
|
+
outerHeader?: boolean;
|
|
21
|
+
overlayLayer?: number;
|
|
22
|
+
};
|
|
23
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
24
|
+
collapsible: boolean;
|
|
25
|
+
closeHint: boolean;
|
|
26
|
+
modelValue: boolean;
|
|
27
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
28
|
+
"update:modelValue": (value: boolean) => void;
|
|
29
|
+
"update:collapsed": (value: boolean) => void;
|
|
30
|
+
"update:closeHint": (value: boolean) => void;
|
|
31
|
+
overlayClick: () => void;
|
|
32
|
+
close: () => void;
|
|
33
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
34
|
+
collapsible: boolean;
|
|
35
|
+
closeHint: boolean;
|
|
36
|
+
modelValue: boolean;
|
|
37
|
+
}>>> & {
|
|
38
|
+
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
39
|
+
"onUpdate:collapsed"?: ((value: boolean) => any) | undefined;
|
|
40
|
+
"onUpdate:closeHint"?: ((value: boolean) => any) | undefined;
|
|
41
|
+
onOverlayClick?: (() => any) | undefined;
|
|
42
|
+
onClose?: (() => any) | undefined;
|
|
43
|
+
}, {
|
|
44
|
+
closeHint: boolean;
|
|
45
|
+
modelValue: any;
|
|
46
|
+
collapsible: boolean;
|
|
47
|
+
}, {}>, {
|
|
48
|
+
header?(_: {}): any;
|
|
49
|
+
extra?(_: {}): any;
|
|
50
|
+
default?(_: {}): any;
|
|
51
|
+
footer?(_: {}): any;
|
|
52
|
+
}>;
|
|
53
|
+
export default _default;
|
|
54
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
55
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
56
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
57
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
58
|
+
} : {
|
|
59
|
+
type: import('vue').PropType<T[K]>;
|
|
60
|
+
required: true;
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
type __VLS_WithDefaults<P, D> = {
|
|
64
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
65
|
+
default: D[K];
|
|
66
|
+
}> : P[K];
|
|
67
|
+
};
|
|
68
|
+
type __VLS_Prettify<T> = {
|
|
69
|
+
[K in keyof T]: T[K];
|
|
70
|
+
} & {};
|
|
71
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
72
|
+
new (): {
|
|
73
|
+
$slots: S;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
url?: string;
|
|
3
|
+
fileId?: string;
|
|
4
|
+
modelValue?: string;
|
|
5
|
+
objectFit?: string;
|
|
6
|
+
bordered?: boolean;
|
|
7
|
+
width?: string;
|
|
8
|
+
height?: string;
|
|
9
|
+
expandable?: boolean;
|
|
10
|
+
meta?: {
|
|
11
|
+
created_at: string;
|
|
12
|
+
updated_at: string;
|
|
13
|
+
owner: {
|
|
14
|
+
name: string;
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>, {
|
|
19
|
+
fallback?(_: {}): any;
|
|
20
|
+
default?(_: {}): any;
|
|
21
|
+
caption?(_: {}): any;
|
|
22
|
+
}>;
|
|
23
|
+
export default _default;
|
|
24
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
25
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
26
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
27
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
28
|
+
} : {
|
|
29
|
+
type: import('vue').PropType<T[K]>;
|
|
30
|
+
required: true;
|
|
31
|
+
};
|
|
32
|
+
};
|
|
33
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
34
|
+
new (): {
|
|
35
|
+
$slots: S;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
import type { Property, CollectionAction } from '@aeriajs/types';
|
|
2
|
+
import { type Ref } from 'vue';
|
|
3
|
+
type Props = {
|
|
4
|
+
columns?: Record<string, Property>;
|
|
5
|
+
rows?: any;
|
|
6
|
+
collection?: string | Ref<string>;
|
|
7
|
+
checkbox?: boolean;
|
|
8
|
+
actions?: (CollectionAction<any> & {
|
|
9
|
+
action: string;
|
|
10
|
+
click: (...args: any[]) => void;
|
|
11
|
+
})[];
|
|
12
|
+
layout?: any;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
15
|
+
itemClick: (value: any) => void;
|
|
16
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
17
|
+
onItemClick?: ((value: any) => any) | undefined;
|
|
18
|
+
}, {}, {}>, Partial<Record<`row-${string}`, (_: {
|
|
19
|
+
store: import("@aeria-ui/state-management").Store | null;
|
|
20
|
+
column: string;
|
|
21
|
+
property: Property;
|
|
22
|
+
row: any;
|
|
23
|
+
}) => any>> & {
|
|
24
|
+
thead?(_: {}): any;
|
|
25
|
+
tbody?(_: {}): any;
|
|
26
|
+
tfoot?(_: {}): any;
|
|
27
|
+
}>;
|
|
28
|
+
export default _default;
|
|
29
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
30
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
31
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
32
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
33
|
+
} : {
|
|
34
|
+
type: import('vue').PropType<T[K]>;
|
|
35
|
+
required: true;
|
|
36
|
+
};
|
|
37
|
+
};
|
|
38
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
39
|
+
new (): {
|
|
40
|
+
$slots: S;
|
|
41
|
+
};
|
|
42
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
query?: string;
|
|
3
|
+
param?: string;
|
|
4
|
+
dropdown?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>, Partial<Record<string, (_: {}) => any>> & Partial<Record<NonNullable<string | import("vue-router").LocationQueryValue[]>, (_: {}) => any>> & Partial<Record<string, (_: {}) => any>> & {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
+
} : {
|
|
15
|
+
type: import('vue').PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
collection?: string;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>;
|
|
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
|
+
};
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
modelValue: Record<string, any> & {
|
|
3
|
+
password: string;
|
|
4
|
+
confirmation: string;
|
|
5
|
+
};
|
|
6
|
+
};
|
|
7
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
+
"update:modelValue": (value: Record<string, any> & {
|
|
9
|
+
password: string;
|
|
10
|
+
confirmation: string;
|
|
11
|
+
}) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
13
|
+
"onUpdate:modelValue"?: ((value: Record<string, any> & {
|
|
14
|
+
password: string;
|
|
15
|
+
confirmation: string;
|
|
16
|
+
}) => any) | undefined;
|
|
17
|
+
}, {}, {}>, {
|
|
18
|
+
default?(_: {
|
|
19
|
+
passwordError: string | undefined;
|
|
20
|
+
}): any;
|
|
21
|
+
}>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
25
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
26
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
27
|
+
} : {
|
|
28
|
+
type: import('vue').PropType<T[K]>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
33
|
+
new (): {
|
|
34
|
+
$slots: S;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
import type { PromptAction } from '@aeria-ui/web';
|
|
2
|
+
type Props = {
|
|
3
|
+
title?: string;
|
|
4
|
+
actions: PromptAction[];
|
|
5
|
+
};
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>, {
|
|
7
|
+
default?(_: {}): any;
|
|
8
|
+
}>;
|
|
9
|
+
export default _default;
|
|
10
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
11
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
12
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
13
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
14
|
+
} : {
|
|
15
|
+
type: import('vue').PropType<T[K]>;
|
|
16
|
+
required: true;
|
|
17
|
+
};
|
|
18
|
+
};
|
|
19
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
new (): {
|
|
21
|
+
$slots: S;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import type { Icon } from '@aeriajs/types';
|
|
2
|
+
type Props = {
|
|
3
|
+
idx: number;
|
|
4
|
+
itr: number;
|
|
5
|
+
date: string;
|
|
6
|
+
icon?: Icon;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>>, {}, {}>, {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
}>;
|
|
11
|
+
export default _default;
|
|
12
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
13
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
14
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
15
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
16
|
+
} : {
|
|
17
|
+
type: import('vue').PropType<T[K]>;
|
|
18
|
+
required: true;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
22
|
+
new (): {
|
|
23
|
+
$slots: S;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
export { default as AeriaPrompt, } from './aeria-prompt/aeria-prompt.vue';
|
|
2
|
+
export { default as AeriaToast, } from './aeria-toast/aeria-toast.vue';
|
|
3
|
+
export { default as AeriaCrudTopbar, } from './aeria-crud-topbar/aeria-crud-topbar.vue';
|
|
4
|
+
export { default as AeriaPasswordForm, } from './aeria-password-form/aeria-password-form.vue';
|
|
@@ -0,0 +1,84 @@
|
|
|
1
|
+
import type { ArrayProperty, EnumProperty, BooleanProperty, Property } from '@aeriajs/types';
|
|
2
|
+
import type { FormFieldProps } from '../types';
|
|
3
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<FormFieldProps<any, (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").RefProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & Omit<import("@aeriajs/types").RefProperty, "$ref"> & {
|
|
4
|
+
$ref: "file";
|
|
5
|
+
accept?: readonly string[] | undefined;
|
|
6
|
+
extensions?: readonly string[] | undefined;
|
|
7
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase) | (EnumProperty & import("@aeriajs/types").PropertyBase & ArrayProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").FixedObjectProperty & {
|
|
8
|
+
type: "object";
|
|
9
|
+
default?: any;
|
|
10
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase & {
|
|
11
|
+
variable: true;
|
|
12
|
+
} & {
|
|
13
|
+
type: "object";
|
|
14
|
+
default?: any;
|
|
15
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase & {
|
|
16
|
+
additionalProperties: Property;
|
|
17
|
+
} & {
|
|
18
|
+
type: "object";
|
|
19
|
+
default?: any;
|
|
20
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").StringProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").NumberProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & BooleanProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").LiteralProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").GetterProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").RefProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase & Omit<import("@aeriajs/types").RefProperty, "$ref"> & {
|
|
21
|
+
$ref: "file";
|
|
22
|
+
accept?: readonly string[] | undefined;
|
|
23
|
+
extensions?: readonly string[] | undefined;
|
|
24
|
+
}) | (ArrayProperty & import("@aeriajs/types").PropertyBase & EnumProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase) | (ArrayProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").LiteralProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").GetterProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").RefProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase & Omit<import("@aeriajs/types").RefProperty, "$ref"> & {
|
|
25
|
+
$ref: "file";
|
|
26
|
+
accept?: readonly string[] | undefined;
|
|
27
|
+
extensions?: readonly string[] | undefined;
|
|
28
|
+
}) | (BooleanProperty & import("@aeriajs/types").PropertyBase & EnumProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase) | (BooleanProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").LiteralProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").GetterProperty)> & {
|
|
29
|
+
value?: any;
|
|
30
|
+
variant?: string | undefined;
|
|
31
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
32
|
+
"update:modelValue": (value: any) => void;
|
|
33
|
+
change: (value: any) => void;
|
|
34
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FormFieldProps<any, (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").RefProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & Omit<import("@aeriajs/types").RefProperty, "$ref"> & {
|
|
35
|
+
$ref: "file";
|
|
36
|
+
accept?: readonly string[] | undefined;
|
|
37
|
+
extensions?: readonly string[] | undefined;
|
|
38
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase) | (EnumProperty & import("@aeriajs/types").PropertyBase & ArrayProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").FixedObjectProperty & {
|
|
39
|
+
type: "object";
|
|
40
|
+
default?: any;
|
|
41
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase & {
|
|
42
|
+
variable: true;
|
|
43
|
+
} & {
|
|
44
|
+
type: "object";
|
|
45
|
+
default?: any;
|
|
46
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase & {
|
|
47
|
+
additionalProperties: Property;
|
|
48
|
+
} & {
|
|
49
|
+
type: "object";
|
|
50
|
+
default?: any;
|
|
51
|
+
}) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").StringProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").NumberProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & BooleanProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").LiteralProperty) | (EnumProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").GetterProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").RefProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase & Omit<import("@aeriajs/types").RefProperty, "$ref"> & {
|
|
52
|
+
$ref: "file";
|
|
53
|
+
accept?: readonly string[] | undefined;
|
|
54
|
+
extensions?: readonly string[] | undefined;
|
|
55
|
+
}) | (ArrayProperty & import("@aeriajs/types").PropertyBase & EnumProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase) | (ArrayProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").LiteralProperty) | (ArrayProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").GetterProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").RefProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase & Omit<import("@aeriajs/types").RefProperty, "$ref"> & {
|
|
56
|
+
$ref: "file";
|
|
57
|
+
accept?: readonly string[] | undefined;
|
|
58
|
+
extensions?: readonly string[] | undefined;
|
|
59
|
+
}) | (BooleanProperty & import("@aeriajs/types").PropertyBase & EnumProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase) | (BooleanProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").LiteralProperty) | (BooleanProperty & import("@aeriajs/types").PropertyBase & import("@aeriajs/types").GetterProperty)> & {
|
|
60
|
+
value?: any;
|
|
61
|
+
variant?: string | undefined;
|
|
62
|
+
}>>> & {
|
|
63
|
+
onChange?: ((value: any) => any) | undefined;
|
|
64
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
65
|
+
}, {}, {}>, {
|
|
66
|
+
description?(_: {}): any;
|
|
67
|
+
default?(_: {}): any;
|
|
68
|
+
hint?(_: {}): any;
|
|
69
|
+
}>;
|
|
70
|
+
export default _default;
|
|
71
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
72
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
73
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
74
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
75
|
+
} : {
|
|
76
|
+
type: import('vue').PropType<T[K]>;
|
|
77
|
+
required: true;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
81
|
+
new (): {
|
|
82
|
+
$slots: S;
|
|
83
|
+
};
|
|
84
|
+
};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import type { Property, FileProperty } from '@aeriajs/types';
|
|
2
|
+
import type { FormFieldProps } from '../types';
|
|
3
|
+
type Props = FormFieldProps<any, Property & FileProperty> & {
|
|
4
|
+
meta?: Record<string, any>;
|
|
5
|
+
modelValue?: any;
|
|
6
|
+
content?: any;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: any) => void;
|
|
10
|
+
change: (value: any) => void;
|
|
11
|
+
"update:content": (value: any) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
13
|
+
onChange?: ((value: any) => any) | undefined;
|
|
14
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
15
|
+
"onUpdate:content"?: ((value: any) => any) | undefined;
|
|
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
|
+
};
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { type Property } from '@aeriajs/types';
|
|
2
|
+
export declare const getComponent: (property: Property, customComponents: Record<string, any>) => any;
|
|
3
|
+
export declare const pushToArray: (modelValue: any[] | undefined, property: Property) => number;
|
|
4
|
+
export declare const spliceFromArray: (modelValue: any[], index: number) => void;
|
|
@@ -0,0 +1,88 @@
|
|
|
1
|
+
import type { Property, Condition } from '@aeriajs/types';
|
|
2
|
+
import type { FormFieldProps } from '../types';
|
|
3
|
+
import { type Ref } from 'vue';
|
|
4
|
+
type LayoutConfig = {
|
|
5
|
+
span?: string;
|
|
6
|
+
verticalSpacing?: string;
|
|
7
|
+
optionsColumns?: number;
|
|
8
|
+
if?: Condition<any>;
|
|
9
|
+
component?: {
|
|
10
|
+
name: string;
|
|
11
|
+
props?: object;
|
|
12
|
+
};
|
|
13
|
+
};
|
|
14
|
+
type Props = FormFieldProps<any> & {
|
|
15
|
+
form?: Record<string, Property>;
|
|
16
|
+
collection?: string | Ref<string>;
|
|
17
|
+
isReadOnly?: boolean;
|
|
18
|
+
searchOnly?: boolean;
|
|
19
|
+
layout?: {
|
|
20
|
+
fields: Record<string, LayoutConfig>;
|
|
21
|
+
};
|
|
22
|
+
required?: string[];
|
|
23
|
+
formComponents?: Record<string, any>;
|
|
24
|
+
propertyComponents?: Record<string, any>;
|
|
25
|
+
omitFormHeader?: boolean;
|
|
26
|
+
omitInputLabels?: boolean;
|
|
27
|
+
innerInputLabel?: boolean;
|
|
28
|
+
validationErrors?: Record<string, any> | null;
|
|
29
|
+
highlightRequired?: boolean;
|
|
30
|
+
focus?: boolean;
|
|
31
|
+
};
|
|
32
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
33
|
+
isReadOnly: boolean;
|
|
34
|
+
searchony: boolean;
|
|
35
|
+
validationErrors: null;
|
|
36
|
+
highlightRequired: boolean;
|
|
37
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
38
|
+
input: (value: any) => void;
|
|
39
|
+
"update:modelValue": (value: any) => void;
|
|
40
|
+
change: (value: any) => void;
|
|
41
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
42
|
+
isReadOnly: boolean;
|
|
43
|
+
searchony: boolean;
|
|
44
|
+
validationErrors: null;
|
|
45
|
+
highlightRequired: boolean;
|
|
46
|
+
}>>> & {
|
|
47
|
+
onChange?: ((value: any) => any) | undefined;
|
|
48
|
+
onInput?: ((value: any) => any) | undefined;
|
|
49
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
50
|
+
}, {
|
|
51
|
+
isReadOnly: boolean;
|
|
52
|
+
validationErrors: Record<string, any> | null;
|
|
53
|
+
highlightRequired: boolean;
|
|
54
|
+
}, {}>, Partial<Record<`field-${string}`, (_: {
|
|
55
|
+
propery: Property;
|
|
56
|
+
properyName: string;
|
|
57
|
+
modelValue: any;
|
|
58
|
+
}) => any>> & {
|
|
59
|
+
header?(_: {}): any;
|
|
60
|
+
default?(_: {}): any;
|
|
61
|
+
after?(_: {}): any;
|
|
62
|
+
footer?(_: {
|
|
63
|
+
isInsertReady: boolean;
|
|
64
|
+
}): any;
|
|
65
|
+
}>;
|
|
66
|
+
export default _default;
|
|
67
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
68
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
69
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
70
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
71
|
+
} : {
|
|
72
|
+
type: import('vue').PropType<T[K]>;
|
|
73
|
+
required: true;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
type __VLS_WithDefaults<P, D> = {
|
|
77
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
78
|
+
default: D[K];
|
|
79
|
+
}> : P[K];
|
|
80
|
+
};
|
|
81
|
+
type __VLS_Prettify<T> = {
|
|
82
|
+
[K in keyof T]: T[K];
|
|
83
|
+
} & {};
|
|
84
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
85
|
+
new (): {
|
|
86
|
+
$slots: S;
|
|
87
|
+
};
|
|
88
|
+
};
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
import type { Property, NumberProperty, StringProperty } from '@aeriajs/types';
|
|
2
|
+
import type { FormFieldProps } from '../types';
|
|
3
|
+
type InputType = string | number | Date | null | undefined;
|
|
4
|
+
type InputVariant = 'normal' | 'bold' | 'light';
|
|
5
|
+
type Props = FormFieldProps<InputType, Property & (NumberProperty | StringProperty)> & {
|
|
6
|
+
variant?: InputVariant;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
input: (value: InputType) => void;
|
|
10
|
+
"update:modelValue": (value: InputType) => void;
|
|
11
|
+
change: (value: any) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
13
|
+
onChange?: ((value: any) => any) | undefined;
|
|
14
|
+
onInput?: ((value: InputType) => any) | undefined;
|
|
15
|
+
"onUpdate:modelValue"?: ((value: InputType) => any) | undefined;
|
|
16
|
+
}, {}, {}>, {
|
|
17
|
+
default?(_: {}): any;
|
|
18
|
+
description?(_: {}): any;
|
|
19
|
+
hint?(_: {}): any;
|
|
20
|
+
}>;
|
|
21
|
+
export default _default;
|
|
22
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
23
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
24
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
25
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
26
|
+
} : {
|
|
27
|
+
type: import('vue').PropType<T[K]>;
|
|
28
|
+
required: true;
|
|
29
|
+
};
|
|
30
|
+
};
|
|
31
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
32
|
+
new (): {
|
|
33
|
+
$slots: S;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
import type { ArrayProperty, EnumProperty } from '@aeriajs/types';
|
|
2
|
+
import type { FormFieldProps } from '../types';
|
|
3
|
+
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<FormFieldProps<any>, "property"> & {
|
|
4
|
+
property: EnumProperty | (ArrayProperty & {
|
|
5
|
+
items: EnumProperty;
|
|
6
|
+
});
|
|
7
|
+
columns?: number | undefined;
|
|
8
|
+
}>, {
|
|
9
|
+
columns: number;
|
|
10
|
+
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
|
+
"update:modelValue": (value: any) => void;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<FormFieldProps<any>, "property"> & {
|
|
13
|
+
property: EnumProperty | (ArrayProperty & {
|
|
14
|
+
items: EnumProperty;
|
|
15
|
+
});
|
|
16
|
+
columns?: number | undefined;
|
|
17
|
+
}>, {
|
|
18
|
+
columns: number;
|
|
19
|
+
}>>> & {
|
|
20
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
21
|
+
}, {
|
|
22
|
+
columns: number;
|
|
23
|
+
}, {}>;
|
|
24
|
+
export default _default;
|
|
25
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
26
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
27
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
28
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
29
|
+
} : {
|
|
30
|
+
type: import('vue').PropType<T[K]>;
|
|
31
|
+
required: true;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
type __VLS_WithDefaults<P, D> = {
|
|
35
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
36
|
+
default: D[K];
|
|
37
|
+
}> : P[K];
|
|
38
|
+
};
|
|
39
|
+
type __VLS_Prettify<T> = {
|
|
40
|
+
[K in keyof T]: T[K];
|
|
41
|
+
} & {};
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
type Props = {
|
|
2
|
+
observeScroll?: boolean;
|
|
3
|
+
};
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
|
+
endReached: (value: boolean) => void;
|
|
6
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
7
|
+
onEndReached?: ((value: boolean) => any) | undefined;
|
|
8
|
+
}, {}, {}>, {
|
|
9
|
+
default?(_: {}): any;
|
|
10
|
+
footer?(_: {}): any;
|
|
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_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
new (): {
|
|
24
|
+
$slots: S;
|
|
25
|
+
};
|
|
26
|
+
};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
import type { SearchProperty } from '../../../../types';
|
|
2
|
+
type Props = {
|
|
3
|
+
item: Record<string, any>;
|
|
4
|
+
indexes: readonly string[];
|
|
5
|
+
modelValue?: any;
|
|
6
|
+
property: SearchProperty;
|
|
7
|
+
};
|
|
8
|
+
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: any) => void;
|
|
10
|
+
change: (value: Record<string, any>) => void;
|
|
11
|
+
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
12
|
+
onChange?: ((value: Record<string, any>) => any) | undefined;
|
|
13
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
|
+
}, {}, {}>, {
|
|
15
|
+
default?(_: {}): any;
|
|
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_WithTemplateSlots<T, S> = T & {
|
|
28
|
+
new (): {
|
|
29
|
+
$slots: S;
|
|
30
|
+
};
|
|
31
|
+
};
|