@aeria-ui/ui 0.0.32 → 0.0.34
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/dist/{activation-b2a947e0.js → activation-d238ff2c.js} +1 -1
- package/dist/components/aeria-accordion/aeria-accordion.vue.d.ts +1 -1
- package/dist/components/aeria-badge/aeria-badge.vue.d.ts +1 -1
- package/dist/components/aeria-bare-button/aeria-bare-button.vue.d.ts +2 -2
- package/dist/components/aeria-button/aeria-button.vue.d.ts +3 -2
- package/dist/components/aeria-card/aeria-card.vue.d.ts +1 -1
- package/dist/components/aeria-context-menu/aeria-context-menu.vue.d.ts +2 -2
- package/dist/components/aeria-crud/_internals/components/aeria-filter-panel/aeria-filter-panel.vue.d.ts +2 -2
- package/dist/components/aeria-crud/_internals/components/aeria-insert-panel/aeria-insert-panel.vue.d.ts +1 -1
- package/dist/components/aeria-crud/_internals/helpers.d.ts +4 -3
- package/dist/components/aeria-crud/_internals/layouts/aeria-grid/aeria-grid.vue.d.ts +3 -2
- package/dist/components/aeria-crud/_internals/layouts/aeria-tabular/aeria-tabular.vue.d.ts +3 -2
- package/dist/components/aeria-crud/_internals/layouts/index.d.ts +29 -28
- package/dist/components/aeria-crud/_internals/store.d.ts +9 -8
- package/dist/components/aeria-crud/aeria-crud.vue.d.ts +6 -6
- package/dist/components/aeria-grid/aeria-grid.vue.d.ts +1 -1
- package/dist/components/aeria-icon/aeria-icon.vue.d.ts +3 -2
- package/dist/components/aeria-info/aeria-info.vue.d.ts +1 -1
- package/dist/components/aeria-main/aeria-main.vue.d.ts +1 -1
- package/dist/components/aeria-menu/aeria-menu.vue.d.ts +1 -1
- package/dist/components/aeria-pagination/aeria-pagination.vue.d.ts +4 -3
- package/dist/components/aeria-panel/aeria-panel.vue.d.ts +3 -3
- package/dist/components/aeria-picture/aeria-picture.vue.d.ts +1 -1
- package/dist/components/aeria-table/aeria-table.vue.d.ts +6 -5
- package/dist/components/aeria-tabs/aeria-tabs.vue.d.ts +1 -1
- package/dist/components/dashboard/aeria-crud-topbar/aeria-crud-topbar.vue.d.ts +1 -1
- package/dist/components/dashboard/aeria-password-form/aeria-password-form.vue.d.ts +2 -2
- package/dist/components/dashboard/aeria-prompt/aeria-prompt.vue.d.ts +3 -2
- package/dist/components/dashboard/aeria-toast/aeria-toast.vue.d.ts +3 -2
- package/dist/components/form/aeria-checkbox/aeria-checkbox.vue.d.ts +18 -17
- package/dist/components/form/aeria-file/aeria-file.vue.d.ts +5 -4
- package/dist/components/form/aeria-form/_internals/helpers.d.ts +2 -1
- package/dist/components/form/aeria-form/aeria-form.vue.d.ts +7 -6
- package/dist/components/form/aeria-input/aeria-input.vue.d.ts +5 -4
- package/dist/components/form/aeria-options/aeria-options.vue.d.ts +6 -5
- package/dist/components/form/aeria-search/_internals/components/aeria-search-container/aeria-search-container.vue.d.ts +2 -2
- package/dist/components/form/aeria-search/_internals/components/aeria-search-item/aeria-search-item.vue.d.ts +4 -3
- package/dist/components/form/aeria-search/aeria-search.vue.d.ts +5 -4
- package/dist/components/form/aeria-select/aeria-select.vue.d.ts +5 -4
- package/dist/components/form/aeria-switch/aeria-switch.vue.d.ts +7 -6
- package/dist/components/form/types.d.ts +2 -1
- package/dist/components/utils/aeria-async.d.ts +3 -3
- package/dist/{crud-view-232aa79c.js → crud-view-1bbc1387.js} +1 -1
- package/dist/{index-0c058b56.js → index-75991f90.js} +288 -269
- package/dist/{password-change-f12b3652.js → password-change-6277346e.js} +1 -1
- package/dist/{profile-d956dbdb.js → profile-1660e4f2.js} +1 -1
- package/dist/routes.d.ts +3 -2
- package/dist/{signin-72b3b697.js → signin-0db1eb4f.js} +1 -1
- package/dist/{signup-0257e6aa.js → signup-57507eb3.js} +1 -1
- package/dist/style.css +1 -1
- package/dist/ui.js +1 -1
- package/dist/views/dashboard/crud-view/crud-view.vue.d.ts +1 -1
- package/dist/views/dashboard/user/password-change/password-change.vue.d.ts +1 -1
- package/dist/views/dashboard/user/profile/profile.vue.d.ts +1 -1
- package/dist/views/user/activation.vue.d.ts +1 -1
- package/dist/views/user/signin.vue.d.ts +1 -1
- package/dist/views/user/signup.vue.d.ts +1 -1
- package/package.json +2 -2
|
@@ -1,62 +1,63 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
1
|
+
import { FormFieldProps } from '../types';
|
|
2
|
+
import { ArrayProperty, EnumProperty, BooleanProperty, Property } from '@aeriajs/types';
|
|
3
|
+
|
|
4
|
+
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
5
|
$ref: "file";
|
|
5
6
|
accept?: readonly string[] | undefined;
|
|
6
7
|
extensions?: readonly string[] | undefined;
|
|
7
|
-
}) | (EnumProperty & import(
|
|
8
|
+
}) | (EnumProperty & import('@aeriajs/types').PropertyBase) | (EnumProperty & import('@aeriajs/types').PropertyBase & ArrayProperty) | (EnumProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').FixedObjectProperty & {
|
|
8
9
|
type: "object";
|
|
9
10
|
default?: any;
|
|
10
|
-
}) | (EnumProperty & import(
|
|
11
|
+
}) | (EnumProperty & import('@aeriajs/types').PropertyBase & {
|
|
11
12
|
variable: true;
|
|
12
13
|
} & {
|
|
13
14
|
type: "object";
|
|
14
15
|
default?: any;
|
|
15
|
-
}) | (EnumProperty & import(
|
|
16
|
+
}) | (EnumProperty & import('@aeriajs/types').PropertyBase & {
|
|
16
17
|
additionalProperties: Property;
|
|
17
18
|
} & {
|
|
18
19
|
type: "object";
|
|
19
20
|
default?: any;
|
|
20
|
-
}) | (EnumProperty & import(
|
|
21
|
+
}) | (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').GetterProperty) | (EnumProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
|
|
21
22
|
$ref: "file";
|
|
22
23
|
accept?: readonly string[] | undefined;
|
|
23
24
|
extensions?: readonly string[] | undefined;
|
|
24
|
-
}) | (ArrayProperty & import(
|
|
25
|
+
}) | (ArrayProperty & import('@aeriajs/types').PropertyBase & EnumProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase) | (ArrayProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
|
|
25
26
|
$ref: "file";
|
|
26
27
|
accept?: readonly string[] | undefined;
|
|
27
28
|
extensions?: readonly string[] | undefined;
|
|
28
|
-
}) | (BooleanProperty & import(
|
|
29
|
+
}) | (BooleanProperty & import('@aeriajs/types').PropertyBase & EnumProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase) | (BooleanProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty)> & {
|
|
29
30
|
value?: any;
|
|
30
31
|
variant?: string | undefined;
|
|
31
|
-
}>, {}, unknown, {}, {}, import(
|
|
32
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
32
33
|
"update:modelValue": (value: any) => void;
|
|
33
34
|
change: (value: any) => void;
|
|
34
|
-
}, string, import(
|
|
35
|
+
}, 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
36
|
$ref: "file";
|
|
36
37
|
accept?: readonly string[] | undefined;
|
|
37
38
|
extensions?: readonly string[] | undefined;
|
|
38
|
-
}) | (EnumProperty & import(
|
|
39
|
+
}) | (EnumProperty & import('@aeriajs/types').PropertyBase) | (EnumProperty & import('@aeriajs/types').PropertyBase & ArrayProperty) | (EnumProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').FixedObjectProperty & {
|
|
39
40
|
type: "object";
|
|
40
41
|
default?: any;
|
|
41
|
-
}) | (EnumProperty & import(
|
|
42
|
+
}) | (EnumProperty & import('@aeriajs/types').PropertyBase & {
|
|
42
43
|
variable: true;
|
|
43
44
|
} & {
|
|
44
45
|
type: "object";
|
|
45
46
|
default?: any;
|
|
46
|
-
}) | (EnumProperty & import(
|
|
47
|
+
}) | (EnumProperty & import('@aeriajs/types').PropertyBase & {
|
|
47
48
|
additionalProperties: Property;
|
|
48
49
|
} & {
|
|
49
50
|
type: "object";
|
|
50
51
|
default?: any;
|
|
51
|
-
}) | (EnumProperty & import(
|
|
52
|
+
}) | (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').GetterProperty) | (EnumProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
|
|
52
53
|
$ref: "file";
|
|
53
54
|
accept?: readonly string[] | undefined;
|
|
54
55
|
extensions?: readonly string[] | undefined;
|
|
55
|
-
}) | (ArrayProperty & import(
|
|
56
|
+
}) | (ArrayProperty & import('@aeriajs/types').PropertyBase & EnumProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase) | (ArrayProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty) | (ArrayProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
|
|
56
57
|
$ref: "file";
|
|
57
58
|
accept?: readonly string[] | undefined;
|
|
58
59
|
extensions?: readonly string[] | undefined;
|
|
59
|
-
}) | (BooleanProperty & import(
|
|
60
|
+
}) | (BooleanProperty & import('@aeriajs/types').PropertyBase & EnumProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase) | (BooleanProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty) | (BooleanProperty & import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty)> & {
|
|
60
61
|
value?: any;
|
|
61
62
|
variant?: string | undefined;
|
|
62
63
|
}>>> & {
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { FormFieldProps } from '../types';
|
|
2
|
+
import { Property, FileProperty } from '@aeriajs/types';
|
|
3
|
+
|
|
3
4
|
type Props = FormFieldProps<any, Property & FileProperty> & {
|
|
4
5
|
meta?: Record<string, any>;
|
|
5
6
|
modelValue?: any;
|
|
6
7
|
content?: any;
|
|
7
8
|
};
|
|
8
|
-
declare const _default: import(
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
10
|
change: (value: string | ArrayBuffer | null) => void;
|
|
10
11
|
"update:content": (value: string | ArrayBuffer | null) => void;
|
|
11
12
|
"update:modelValue": (value: File | null) => void;
|
|
12
|
-
}, string, import(
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
13
14
|
onChange?: ((value: string | ArrayBuffer | null) => any) | undefined;
|
|
14
15
|
"onUpdate:modelValue"?: ((value: File | null) => any) | undefined;
|
|
15
16
|
"onUpdate:content"?: ((value: string | ArrayBuffer | null) => any) | undefined;
|
|
@@ -1,4 +1,5 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { Property } from '@aeriajs/types';
|
|
2
|
+
|
|
2
3
|
export declare const getComponent: (property: Property, customComponents: Record<string, any>) => any;
|
|
3
4
|
export declare const pushToArray: (modelValue: any[] | undefined, property: Property) => number;
|
|
4
5
|
export declare const spliceFromArray: (modelValue: any[], index: number) => void;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
import {
|
|
1
|
+
import { Ref } from 'vue';
|
|
2
|
+
import { FormFieldProps } from '../types';
|
|
3
|
+
import { Property, Condition } from '@aeriajs/types';
|
|
4
|
+
|
|
4
5
|
type LayoutConfig = {
|
|
5
6
|
span?: string;
|
|
6
7
|
verticalSpacing?: string;
|
|
@@ -29,16 +30,16 @@ type Props = FormFieldProps<any> & {
|
|
|
29
30
|
highlightRequired?: boolean;
|
|
30
31
|
focus?: boolean;
|
|
31
32
|
};
|
|
32
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
33
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
33
34
|
isReadOnly: boolean;
|
|
34
35
|
searchony: boolean;
|
|
35
36
|
validationErrors: null;
|
|
36
37
|
highlightRequired: boolean;
|
|
37
|
-
}>, {}, unknown, {}, {}, import(
|
|
38
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
38
39
|
input: (value: any) => void;
|
|
39
40
|
"update:modelValue": (value: any) => void;
|
|
40
41
|
change: (value: any) => void;
|
|
41
|
-
}, string, import(
|
|
42
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
42
43
|
isReadOnly: boolean;
|
|
43
44
|
searchony: boolean;
|
|
44
45
|
validationErrors: null;
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { FormFieldProps } from '../types';
|
|
2
|
+
import { Property, NumberProperty, StringProperty } from '@aeriajs/types';
|
|
3
|
+
|
|
3
4
|
type InputType = string | number | Date | null | undefined;
|
|
4
5
|
type InputVariant = 'normal' | 'bold' | 'light';
|
|
5
6
|
type Props = FormFieldProps<InputType, Property & (NumberProperty | StringProperty)> & {
|
|
6
7
|
variant?: InputVariant;
|
|
7
8
|
};
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
10
|
input: (value: InputType) => void;
|
|
10
11
|
"update:modelValue": (value: InputType) => void;
|
|
11
12
|
change: (value: any) => void;
|
|
12
|
-
}, string, import(
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
13
14
|
onChange?: ((value: any) => any) | undefined;
|
|
14
15
|
onInput?: ((value: InputType) => any) | undefined;
|
|
15
16
|
"onUpdate:modelValue"?: ((value: InputType) => any) | undefined;
|
|
@@ -1,15 +1,16 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
1
|
+
import { FormFieldProps } from '../types';
|
|
2
|
+
import { ArrayProperty, EnumProperty } from '@aeriajs/types';
|
|
3
|
+
|
|
4
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<FormFieldProps<any>, "property"> & {
|
|
4
5
|
property: EnumProperty | (ArrayProperty & {
|
|
5
6
|
items: EnumProperty;
|
|
6
7
|
});
|
|
7
8
|
columns?: number | undefined;
|
|
8
9
|
}>, {
|
|
9
10
|
columns: number;
|
|
10
|
-
}>, {}, unknown, {}, {}, import(
|
|
11
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
12
|
"update:modelValue": (value: any) => void;
|
|
12
|
-
}, string, import(
|
|
13
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<FormFieldProps<any>, "property"> & {
|
|
13
14
|
property: EnumProperty | (ArrayProperty & {
|
|
14
15
|
items: EnumProperty;
|
|
15
16
|
});
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
type Props = {
|
|
2
2
|
observeScroll?: boolean;
|
|
3
3
|
};
|
|
4
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
5
5
|
endReached: (value: boolean) => void;
|
|
6
|
-
}, string, import(
|
|
6
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
7
7
|
onEndReached?: ((value: boolean) => any) | undefined;
|
|
8
8
|
}, {}, {}>, {
|
|
9
9
|
default?(_: {}): any;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { SearchProperty } from '../../../../types';
|
|
2
|
+
|
|
2
3
|
type Props = {
|
|
3
4
|
item: Record<string, any>;
|
|
4
5
|
indexes: readonly string[];
|
|
5
6
|
modelValue?: any;
|
|
6
7
|
property: SearchProperty;
|
|
7
8
|
};
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
10
|
"update:modelValue": (value: any) => void;
|
|
10
11
|
change: (value: Record<string, any>) => void;
|
|
11
|
-
}, string, import(
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
12
13
|
onChange?: ((value: Record<string, any>) => any) | undefined;
|
|
13
14
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
15
|
}, {}, {}>, {
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import
|
|
1
|
+
import { FormFieldProps, SearchProperty } from '../types';
|
|
2
|
+
|
|
2
3
|
type Props = Omit<FormFieldProps<any>, 'property' | 'propertyName'> & {
|
|
3
4
|
property: SearchProperty;
|
|
4
5
|
propertyName: string;
|
|
5
6
|
selectOnly?: boolean;
|
|
6
7
|
panel?: any;
|
|
7
8
|
};
|
|
8
|
-
declare const _default: import(
|
|
9
|
+
declare const _default: import('vue').DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
9
10
|
panel: undefined;
|
|
10
|
-
}>, {}, unknown, {}, {}, import(
|
|
11
|
+
}>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
12
|
"update:modelValue": (event: any) => void;
|
|
12
13
|
change: (event: any) => void;
|
|
13
14
|
"update:panel": (event: boolean) => void;
|
|
14
|
-
}, string, import(
|
|
15
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
15
16
|
panel: undefined;
|
|
16
17
|
}>>> & {
|
|
17
18
|
onChange?: ((event: any) => any) | undefined;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
1
|
+
import { FormFieldProps } from '../types';
|
|
2
|
+
import { Property, EnumProperty, BooleanProperty } from '@aeriajs/types';
|
|
3
|
+
|
|
3
4
|
type Props = FormFieldProps<any, Property & (EnumProperty | BooleanProperty)> & {
|
|
4
5
|
booleanRef?: boolean;
|
|
5
6
|
multiple?: boolean | number;
|
|
6
7
|
noOutline?: boolean;
|
|
7
8
|
};
|
|
8
|
-
declare const _default: __VLS_WithTemplateSlots<import(
|
|
9
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<Props>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
10
|
"update:modelValue": (value: any) => void;
|
|
10
11
|
change: (value: any) => void;
|
|
11
|
-
}, string, import(
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & {
|
|
12
13
|
onChange?: ((value: any) => any) | undefined;
|
|
13
14
|
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
14
15
|
}, {}, {}>, {
|
|
@@ -1,17 +1,18 @@
|
|
|
1
|
-
import
|
|
2
|
-
import
|
|
3
|
-
|
|
1
|
+
import { FormFieldProps } from '../types';
|
|
2
|
+
import { BooleanProperty } from '@aeriajs/types';
|
|
3
|
+
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<__VLS_TypePropsToRuntimeProps<FormFieldProps<any, (import('@aeriajs/types').PropertyBase & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
|
|
4
5
|
$ref: "file";
|
|
5
6
|
accept?: readonly string[] | undefined;
|
|
6
7
|
extensions?: readonly string[] | undefined;
|
|
7
|
-
} & BooleanProperty) | (import(
|
|
8
|
+
} & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').EnumProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty & BooleanProperty)>>, {}, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
8
9
|
"update:modelValue": (value: boolean) => void;
|
|
9
10
|
change: (value: boolean) => void;
|
|
10
|
-
}, string, import(
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<FormFieldProps<any, (import('@aeriajs/types').PropertyBase & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').RefProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & Omit<import('@aeriajs/types').RefProperty, "$ref"> & {
|
|
11
12
|
$ref: "file";
|
|
12
13
|
accept?: readonly string[] | undefined;
|
|
13
14
|
extensions?: readonly string[] | undefined;
|
|
14
|
-
} & BooleanProperty) | (import(
|
|
15
|
+
} & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').EnumProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').GetterProperty & BooleanProperty) | (import('@aeriajs/types').PropertyBase & import('@aeriajs/types').ConstProperty & BooleanProperty)>>>> & {
|
|
15
16
|
onChange?: ((value: boolean) => any) | undefined;
|
|
16
17
|
"onUpdate:modelValue"?: ((value: boolean) => any) | undefined;
|
|
17
18
|
}, {}, {}>, {
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
export declare const AeriaAsync: import(
|
|
1
|
+
export declare const AeriaAsync: import('vue').DefineComponent<{
|
|
2
2
|
initialValue: StringConstructor;
|
|
3
3
|
promise: {
|
|
4
4
|
new (executor: (resolve: (value: string | PromiseLike<string>) => void, reject: (reason?: any) => void) => void): Promise<string>;
|
|
@@ -18,9 +18,9 @@ export declare const AeriaAsync: import("vue").DefineComponent<{
|
|
|
18
18
|
withResolvers<T_11>(): PromiseWithResolvers<T_11>;
|
|
19
19
|
readonly [Symbol.species]: PromiseConstructor;
|
|
20
20
|
};
|
|
21
|
-
}, () => import(
|
|
21
|
+
}, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
|
|
22
22
|
[key: string]: any;
|
|
23
|
-
}>, unknown, {}, {}, import(
|
|
23
|
+
}>, unknown, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
24
24
|
initialValue: StringConstructor;
|
|
25
25
|
promise: {
|
|
26
26
|
new (executor: (resolve: (value: string | PromiseLike<string>) => void, reject: (reason?: any) => void) => void): Promise<string>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { defineComponent as e, openBlock as t, createBlock as r, createSlots as c, withCtx as i, renderSlot as l, createCommentVNode as n } from "vue";
|
|
2
|
-
import { d as m } from "./index-
|
|
2
|
+
import { d as m } from "./index-75991f90.js";
|
|
3
3
|
import "@aeria-ui/i18n";
|
|
4
4
|
import "@aeria-ui/core";
|
|
5
5
|
import "@aeria-ui/state-management";
|