@bagelink/vue 0.0.93 → 0.0.95
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/components/Btn.vue.d.ts +31 -31
- package/dist/components/DataPreview.vue.d.ts +4 -4
- package/dist/components/DropDown.vue.d.ts +1 -1
- package/dist/components/FormSchema.vue.d.ts +4 -4
- package/dist/components/ListItem.vue.d.ts +2 -2
- package/dist/components/ListView.vue.d.ts +4 -4
- package/dist/components/MaterialIcon.vue.d.ts +2 -2
- package/dist/components/Modal.vue.d.ts +9 -9
- package/dist/components/ModalForm.vue.d.ts +16 -16
- package/dist/components/NavBar.vue.d.ts +10 -10
- package/dist/components/PersonPreviewFormkit.vue.d.ts +2 -2
- package/dist/components/RTXEditor.vue.d.ts +4 -4
- package/dist/components/TabbedLayout.vue.d.ts +5 -5
- package/dist/components/TableSchema.vue.d.ts +3 -3
- package/dist/components/charts/BarChart.vue.d.ts +6 -6
- package/dist/components/form/MaterialIcon.vue.d.ts +3 -3
- package/dist/components/form/inputs/CheckInput.vue.d.ts +5 -5
- package/dist/components/form/inputs/Checkbox.vue.d.ts +1 -1
- package/dist/components/form/inputs/CurrencyInput.vue.d.ts +7 -7
- package/dist/components/form/inputs/DateInput.vue.d.ts +5 -5
- package/dist/components/form/inputs/DatetimeInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/DurationInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/EmailInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/FloatInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/IntInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/JSONInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/LinkField.vue.d.ts +13 -13
- package/dist/components/form/inputs/Password.vue.d.ts +11 -11
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +12 -12
- package/dist/components/form/inputs/ReadOnlyInput.vue.d.ts +2 -2
- package/dist/components/form/inputs/RichTextEditor.vue.d.ts +12 -12
- package/dist/components/form/inputs/SelectField.vue.d.ts +7 -7
- package/dist/components/form/inputs/TableField.vue.d.ts +5 -5
- package/dist/components/form/inputs/TextInput.vue.d.ts +22 -22
- package/dist/components/index.d.ts +1 -0
- package/dist/index.cjs +453 -256
- package/dist/index.mjs +453 -256
- package/dist/style.css +246 -244
- package/dist/types/BtnOptions.d.ts +1 -1
- package/dist/types/materialIcons.d.ts +1 -0
- package/dist/utils/index.d.ts +2 -1
- package/package.json +2 -2
- package/src/components/Btn.vue +4 -3
- package/src/components/Comments.vue +2 -2
- package/src/components/ContactArray.vue +2 -2
- package/src/components/ContactSubmissions.vue +2 -2
- package/src/components/DataPreview.vue +1 -1
- package/src/components/DropDown.vue +3 -2
- package/src/components/FileUploader.vue +1 -1
- package/src/components/FormKitTable.vue +2 -2
- package/src/components/FormSchema.vue +2 -2
- package/src/components/ListView.vue +2 -2
- package/src/components/MaterialIcon.vue +1 -1
- package/src/components/Modal.vue +2 -2
- package/src/components/ModalForm.vue +3 -3
- package/src/components/NavBar.vue +2 -1
- package/src/components/PersonPreview.vue +4 -4
- package/src/components/PersonPreviewFormkit.vue +4 -4
- package/src/components/RouterWrapper.vue +0 -2
- package/src/components/TableSchema.vue +2 -2
- package/src/components/form/ItemRef.vue +4 -3
- package/src/components/form/MaterialIcon.vue +1 -1
- package/src/components/form/PlainInputField.vue +2 -2
- package/src/components/form/inputs/CheckInput.vue +1 -1
- package/src/components/form/inputs/Checkbox.vue +1 -1
- package/src/components/form/inputs/ColorPicker.vue +1 -1
- package/src/components/form/inputs/CurrencyInput.vue +1 -1
- package/src/components/form/inputs/DateInput.vue +1 -1
- package/src/components/form/inputs/DynamicLinkField.vue +2 -1
- package/src/components/form/inputs/LinkField.vue +1 -1
- package/src/components/form/inputs/Password.vue +3 -3
- package/src/components/form/inputs/PlainText.vue +1 -1
- package/src/components/form/inputs/ReadOnlyInput.vue +1 -1
- package/src/components/form/inputs/SelectField.vue +2 -2
- package/src/components/form/inputs/TableField.vue +3 -3
- package/src/components/form/inputs/TextArea.vue +1 -1
- package/src/components/form/inputs/TextInput.vue +1 -1
- package/src/components/formkit/AddressArray.vue +4 -3
- package/src/components/formkit/BankDetailsArray.vue +3 -3
- package/src/components/formkit/ContactArrayFormKit.vue +4 -3
- package/src/components/formkit/FileUploader.vue +3 -2
- package/src/components/formkit/MiscFields.vue +1 -1
- package/src/components/index.ts +1 -0
- package/src/components/whatsapp/form/MsgTemplate.vue +3 -2
- package/src/components/whatsapp/form/TextVariableExamples.vue +1 -1
- package/src/plugins/modal.ts +1 -1
- package/src/types/BtnOptions.ts +1 -1
- package/src/utils/index.ts +3 -1
- package/src/utils/objects.ts +1 -1
- package/tsconfig.json +40 -31
- package/vite.config.ts +2 -2
- /package/src/types/{materialIcons.d.ts → materialIcons.ts} +0 -0
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import { MaterialIcons } from '../types/materialIcons';
|
|
1
|
+
import type { MaterialIcons } from '../types/materialIcons';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
disabled?: boolean;
|
|
4
|
-
icon?: MaterialIcons;
|
|
5
|
-
'icon.end'?: MaterialIcons;
|
|
6
|
-
color?: "light" | "
|
|
7
|
-
flat?: boolean;
|
|
8
|
-
thin?: boolean;
|
|
9
|
-
type?: "button" | "
|
|
10
|
-
loading?: boolean;
|
|
11
|
-
role?: string;
|
|
12
|
-
value?: string;
|
|
13
|
-
to?: string;
|
|
14
|
-
round?: boolean;
|
|
15
|
-
is?: string;
|
|
3
|
+
disabled?: boolean | undefined;
|
|
4
|
+
icon?: MaterialIcons | undefined;
|
|
5
|
+
'icon.end'?: MaterialIcons | undefined;
|
|
6
|
+
color?: "light" | "red" | "gray" | "black" | "blue" | "gray-light" | "green" | undefined;
|
|
7
|
+
flat?: boolean | undefined;
|
|
8
|
+
thin?: boolean | undefined;
|
|
9
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
10
|
+
loading?: boolean | undefined;
|
|
11
|
+
role?: string | undefined;
|
|
12
|
+
value?: string | undefined;
|
|
13
|
+
to?: string | undefined;
|
|
14
|
+
round?: boolean | undefined;
|
|
15
|
+
is?: string | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
loading: boolean;
|
|
18
18
|
round: boolean;
|
|
@@ -22,19 +22,19 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
22
22
|
role: string;
|
|
23
23
|
is: string;
|
|
24
24
|
}>, {}, 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<{
|
|
25
|
-
disabled?: boolean;
|
|
26
|
-
icon?: MaterialIcons;
|
|
27
|
-
'icon.end'?: MaterialIcons;
|
|
28
|
-
color?: "light" | "
|
|
29
|
-
flat?: boolean;
|
|
30
|
-
thin?: boolean;
|
|
31
|
-
type?: "button" | "
|
|
32
|
-
loading?: boolean;
|
|
33
|
-
role?: string;
|
|
34
|
-
value?: string;
|
|
35
|
-
to?: string;
|
|
36
|
-
round?: boolean;
|
|
37
|
-
is?: string;
|
|
25
|
+
disabled?: boolean | undefined;
|
|
26
|
+
icon?: MaterialIcons | undefined;
|
|
27
|
+
'icon.end'?: MaterialIcons | undefined;
|
|
28
|
+
color?: "light" | "red" | "gray" | "black" | "blue" | "gray-light" | "green" | undefined;
|
|
29
|
+
flat?: boolean | undefined;
|
|
30
|
+
thin?: boolean | undefined;
|
|
31
|
+
type?: "button" | "submit" | "reset" | undefined;
|
|
32
|
+
loading?: boolean | undefined;
|
|
33
|
+
role?: string | undefined;
|
|
34
|
+
value?: string | undefined;
|
|
35
|
+
to?: string | undefined;
|
|
36
|
+
round?: boolean | undefined;
|
|
37
|
+
is?: string | undefined;
|
|
38
38
|
}>, {
|
|
39
39
|
loading: boolean;
|
|
40
40
|
round: boolean;
|
|
@@ -44,13 +44,13 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
44
44
|
role: string;
|
|
45
45
|
is: string;
|
|
46
46
|
}>>>, {
|
|
47
|
-
type: "button" | "
|
|
48
|
-
color: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
|
|
49
|
-
round: boolean;
|
|
50
|
-
disabled: boolean;
|
|
47
|
+
type: "button" | "submit" | "reset";
|
|
51
48
|
role: string;
|
|
49
|
+
color: "light" | "red" | "gray" | "black" | "blue" | "gray-light" | "green";
|
|
50
|
+
disabled: boolean;
|
|
52
51
|
loading: boolean;
|
|
53
52
|
is: string;
|
|
53
|
+
round: boolean;
|
|
54
54
|
}, {}>, {
|
|
55
55
|
default?(_: {}): any;
|
|
56
56
|
}>;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
data: Record<string, any>;
|
|
3
|
-
schema?: Record<string, any>[];
|
|
4
|
-
title?: string;
|
|
3
|
+
schema?: Record<string, any>[] | undefined;
|
|
4
|
+
title?: string | undefined;
|
|
5
5
|
$t: (str: string) => string;
|
|
6
6
|
}>, {
|
|
7
7
|
$t: (str: string) => string;
|
|
8
8
|
}>, {}, 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<{
|
|
9
9
|
data: Record<string, any>;
|
|
10
|
-
schema?: Record<string, any>[];
|
|
11
|
-
title?: string;
|
|
10
|
+
schema?: Record<string, any>[] | undefined;
|
|
11
|
+
title?: string | undefined;
|
|
12
12
|
$t: (str: string) => string;
|
|
13
13
|
}>, {
|
|
14
14
|
$t: (str: string) => string;
|
|
@@ -9,6 +9,6 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
9
9
|
options: ArrayConstructor;
|
|
10
10
|
placeholder: StringConstructor;
|
|
11
11
|
}>> & {
|
|
12
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
12
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
13
13
|
}, {}, {}>;
|
|
14
14
|
export default _default;
|
|
@@ -2,7 +2,7 @@ import { type FormKitSchemaDefinition } from '@formkit/core';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
modelValue?: any;
|
|
4
4
|
schema: FormKitSchemaDefinition;
|
|
5
|
-
onDelete?: (id: string) => void;
|
|
5
|
+
onDelete?: ((id: string) => void) | undefined;
|
|
6
6
|
$t: (key: string) => string;
|
|
7
7
|
}>, {
|
|
8
8
|
$t: (key: string) => string;
|
|
@@ -12,13 +12,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
12
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
13
|
modelValue?: any;
|
|
14
14
|
schema: FormKitSchemaDefinition;
|
|
15
|
-
onDelete?: (id: string) => void;
|
|
15
|
+
onDelete?: ((id: string) => void) | undefined;
|
|
16
16
|
$t: (key: string) => string;
|
|
17
17
|
}>, {
|
|
18
18
|
$t: (key: string) => string;
|
|
19
19
|
}>>> & {
|
|
20
|
-
|
|
21
|
-
|
|
20
|
+
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
$t: (key: string) => string;
|
|
24
24
|
}, {}>;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
to?: string;
|
|
2
|
+
to?: string | 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
|
-
to?: string;
|
|
4
|
+
to?: string | undefined;
|
|
5
5
|
}>>>, {}, {}>, {
|
|
6
6
|
default?(_: {}): any;
|
|
7
7
|
subtitle?(_: {}): any;
|
|
@@ -4,8 +4,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
4
4
|
open: boolean;
|
|
5
5
|
searchPlaceholder: string;
|
|
6
6
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
7
|
-
search: (...args: any[]) => void;
|
|
8
7
|
add: (...args: any[]) => void;
|
|
8
|
+
search: (...args: any[]) => void;
|
|
9
9
|
debounce: (...args: any[]) => void;
|
|
10
10
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
11
11
|
enableAdd: boolean;
|
|
@@ -13,9 +13,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
open: boolean;
|
|
14
14
|
searchPlaceholder: string;
|
|
15
15
|
}>>> & {
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
onDebounce?: (...args: any[]) => any;
|
|
16
|
+
onAdd?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
18
|
+
onDebounce?: ((...args: any[]) => any) | undefined;
|
|
19
19
|
}, {}, {}>, {
|
|
20
20
|
default?(_: {}): any;
|
|
21
21
|
}>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import type { MaterialIcons } from '../types/materialIcons';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
icon: MaterialIcons;
|
|
4
|
-
size?: number;
|
|
4
|
+
size?: number | undefined;
|
|
5
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
icon: MaterialIcons;
|
|
7
|
-
size?: number;
|
|
7
|
+
size?: number | undefined;
|
|
8
8
|
}>>>, {}, {}>;
|
|
9
9
|
export default _default;
|
|
10
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { BtnOptions } from '../types/BtnOptions';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
side?: boolean;
|
|
4
|
-
title?: string;
|
|
5
|
-
dismissable?: boolean;
|
|
6
|
-
actions?: BtnOptions[];
|
|
3
|
+
side?: boolean | undefined;
|
|
4
|
+
title?: string | undefined;
|
|
5
|
+
dismissable?: boolean | undefined;
|
|
6
|
+
actions?: BtnOptions[] | undefined;
|
|
7
7
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
8
|
"update:isModalVisible": (...args: any[]) => void;
|
|
9
9
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
-
side?: boolean;
|
|
11
|
-
title?: string;
|
|
12
|
-
dismissable?: boolean;
|
|
13
|
-
actions?: BtnOptions[];
|
|
10
|
+
side?: boolean | undefined;
|
|
11
|
+
title?: string | undefined;
|
|
12
|
+
dismissable?: boolean | undefined;
|
|
13
|
+
actions?: BtnOptions[] | undefined;
|
|
14
14
|
}>>> & {
|
|
15
|
-
"onUpdate:isModalVisible"?: (...args: any[]) => any;
|
|
15
|
+
"onUpdate:isModalVisible"?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
}, {}, {}>, {
|
|
17
17
|
toolbar?(_: {}): any;
|
|
18
18
|
default?(_: {}): any;
|
|
@@ -1,29 +1,29 @@
|
|
|
1
1
|
import { type FormKitSchemaDefinition } from '@formkit/core';
|
|
2
2
|
import { BtnOptions } from '../types/BtnOptions';
|
|
3
3
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
-
side?: boolean;
|
|
5
|
-
title?: string;
|
|
6
|
-
dismissable?: boolean;
|
|
7
|
-
actions?: BtnOptions[];
|
|
4
|
+
side?: boolean | undefined;
|
|
5
|
+
title?: string | undefined;
|
|
6
|
+
dismissable?: boolean | undefined;
|
|
7
|
+
actions?: BtnOptions[] | undefined;
|
|
8
8
|
schema: FormKitSchemaDefinition | (() => FormKitSchemaDefinition);
|
|
9
|
-
modelValue?: Record<string, any
|
|
10
|
-
onSubmit?: (formData: any) => Promise<void
|
|
11
|
-
onDelete?: (id: string) => void;
|
|
9
|
+
modelValue?: Record<string, any> | undefined;
|
|
10
|
+
onSubmit?: ((formData: any) => Promise<void>) | undefined;
|
|
11
|
+
onDelete?: ((id: string) => void) | undefined;
|
|
12
12
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
13
13
|
"update:modelValue": (...args: any[]) => void;
|
|
14
14
|
"update:isModalVisible": (...args: any[]) => void;
|
|
15
15
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
16
|
-
side?: boolean;
|
|
17
|
-
title?: string;
|
|
18
|
-
dismissable?: boolean;
|
|
19
|
-
actions?: BtnOptions[];
|
|
16
|
+
side?: boolean | undefined;
|
|
17
|
+
title?: string | undefined;
|
|
18
|
+
dismissable?: boolean | undefined;
|
|
19
|
+
actions?: BtnOptions[] | undefined;
|
|
20
20
|
schema: FormKitSchemaDefinition | (() => FormKitSchemaDefinition);
|
|
21
|
-
modelValue?: Record<string, any
|
|
22
|
-
onSubmit?: (formData: any) => Promise<void
|
|
23
|
-
onDelete?: (id: string) => void;
|
|
21
|
+
modelValue?: Record<string, any> | undefined;
|
|
22
|
+
onSubmit?: ((formData: any) => Promise<void>) | undefined;
|
|
23
|
+
onDelete?: ((id: string) => void) | undefined;
|
|
24
24
|
}>>> & {
|
|
25
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
26
|
-
"onUpdate:isModalVisible"?: (...args: any[]) => any;
|
|
25
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
26
|
+
"onUpdate:isModalVisible"?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
}, {}, {}>, {
|
|
28
28
|
toolbar?(_: {}): any;
|
|
29
29
|
}>;
|
|
@@ -4,11 +4,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
4
4
|
label: string;
|
|
5
5
|
to: string;
|
|
6
6
|
materialIcon: MaterialIcons;
|
|
7
|
-
localized?: string;
|
|
8
|
-
}[];
|
|
9
|
-
homeIcon?: MaterialIcons;
|
|
10
|
-
homeLabel?: string;
|
|
11
|
-
homeTo?: string;
|
|
7
|
+
localized?: string | undefined;
|
|
8
|
+
}[] | undefined;
|
|
9
|
+
homeIcon?: MaterialIcons | undefined;
|
|
10
|
+
homeLabel?: string | undefined;
|
|
11
|
+
homeTo?: string | undefined;
|
|
12
12
|
}>, {
|
|
13
13
|
homeIcon: string;
|
|
14
14
|
homeLabel: string;
|
|
@@ -18,11 +18,11 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
18
18
|
label: string;
|
|
19
19
|
to: string;
|
|
20
20
|
materialIcon: MaterialIcons;
|
|
21
|
-
localized?: string;
|
|
22
|
-
}[];
|
|
23
|
-
homeIcon?: MaterialIcons;
|
|
24
|
-
homeLabel?: string;
|
|
25
|
-
homeTo?: string;
|
|
21
|
+
localized?: string | undefined;
|
|
22
|
+
}[] | undefined;
|
|
23
|
+
homeIcon?: MaterialIcons | undefined;
|
|
24
|
+
homeLabel?: string | undefined;
|
|
25
|
+
homeTo?: string | undefined;
|
|
26
26
|
}>, {
|
|
27
27
|
homeIcon: string;
|
|
28
28
|
homeLabel: string;
|
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import type { FormKitSchemaDefinition } from '@formkit/core';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
context: Record<string, any>;
|
|
4
|
-
onClick?: (event: MouseEvent) => void;
|
|
4
|
+
onClick?: ((event: MouseEvent) => void) | undefined;
|
|
5
5
|
personSchema: () => FormKitSchemaDefinition;
|
|
6
6
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
context: Record<string, any>;
|
|
8
|
-
onClick?: (event: MouseEvent) => void;
|
|
8
|
+
onClick?: ((event: MouseEvent) => void) | undefined;
|
|
9
9
|
personSchema: () => FormKitSchemaDefinition;
|
|
10
10
|
}>>>, {}, {}>;
|
|
11
11
|
export default _default;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
elementId?: string;
|
|
2
|
+
elementId?: string | undefined;
|
|
3
3
|
modelValue: string;
|
|
4
4
|
}>, {
|
|
5
5
|
elementId: string;
|
|
@@ -8,14 +8,14 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
8
8
|
"update:modelValue": (...args: any[]) => void;
|
|
9
9
|
"keydown.meta.enter": (...args: any[]) => void;
|
|
10
10
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
11
|
-
elementId?: string;
|
|
11
|
+
elementId?: string | undefined;
|
|
12
12
|
modelValue: string;
|
|
13
13
|
}>, {
|
|
14
14
|
elementId: string;
|
|
15
15
|
modelValue: string;
|
|
16
16
|
}>>> & {
|
|
17
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
18
|
-
"onKeydown.meta.enter"?: (...args: any[]) => any;
|
|
17
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
18
|
+
"onKeydown.meta.enter"?: ((...args: any[]) => any) | undefined;
|
|
19
19
|
}, {
|
|
20
20
|
elementId: string;
|
|
21
21
|
modelValue: string;
|
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import type { Router } from 'vue-router';
|
|
2
2
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
|
-
title?: string;
|
|
3
|
+
title?: string | undefined;
|
|
4
4
|
tabs: string[];
|
|
5
|
-
modelValue?: string;
|
|
5
|
+
modelValue?: string | undefined;
|
|
6
6
|
router: Router;
|
|
7
7
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
8
|
"update:modelValue": (...args: any[]) => void;
|
|
9
9
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
-
title?: string;
|
|
10
|
+
title?: string | undefined;
|
|
11
11
|
tabs: string[];
|
|
12
|
-
modelValue?: string;
|
|
12
|
+
modelValue?: string | undefined;
|
|
13
13
|
router: Router;
|
|
14
14
|
}>>> & {
|
|
15
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
15
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
16
16
|
}, {}, {}>, Partial<Record<string, (_: {
|
|
17
17
|
key: string;
|
|
18
18
|
}) => any>> & {
|
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
2
|
data: any[];
|
|
3
|
-
schema?: any[];
|
|
3
|
+
schema?: any[] | undefined;
|
|
4
4
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
5
5
|
select: (...args: any[]) => void;
|
|
6
6
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
7
7
|
data: any[];
|
|
8
|
-
schema?: any[];
|
|
8
|
+
schema?: any[] | undefined;
|
|
9
9
|
}>>> & {
|
|
10
|
-
onSelect?: (...args: any[]) => any;
|
|
10
|
+
onSelect?: ((...args: any[]) => any) | undefined;
|
|
11
11
|
}, {}, {}>, Partial<Record<any, (_: {
|
|
12
12
|
row: any;
|
|
13
13
|
field: any;
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
title?: string;
|
|
3
|
-
showMarks?: boolean;
|
|
4
|
-
flood?: number;
|
|
2
|
+
title?: string | undefined;
|
|
3
|
+
showMarks?: boolean | undefined;
|
|
4
|
+
flood?: number | undefined;
|
|
5
5
|
modelValue: {
|
|
6
6
|
value: number;
|
|
7
7
|
title?: string;
|
|
@@ -10,9 +10,9 @@ declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimePr
|
|
|
10
10
|
data?: Record<string, any>[];
|
|
11
11
|
}[];
|
|
12
12
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
-
title?: string;
|
|
14
|
-
showMarks?: boolean;
|
|
15
|
-
flood?: number;
|
|
13
|
+
title?: string | undefined;
|
|
14
|
+
showMarks?: boolean | undefined;
|
|
15
|
+
flood?: number | undefined;
|
|
16
16
|
modelValue: {
|
|
17
17
|
value: number;
|
|
18
18
|
title?: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import { MaterialIcons } from '../../types/materialIcons';
|
|
1
|
+
import type { MaterialIcons } from '../../types/materialIcons';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
icon: MaterialIcons;
|
|
4
|
-
size?: number;
|
|
4
|
+
size?: number | undefined;
|
|
5
5
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
6
|
icon: MaterialIcons;
|
|
7
|
-
size?: number;
|
|
7
|
+
size?: number | undefined;
|
|
8
8
|
}>>>, {}, {}>;
|
|
9
9
|
export default _default;
|
|
10
10
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -2,8 +2,8 @@ import { BagelField } from '../../../types';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
field: BagelField;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
editMode?: boolean;
|
|
6
|
-
small?: boolean;
|
|
5
|
+
editMode?: boolean | undefined;
|
|
6
|
+
small?: boolean | undefined;
|
|
7
7
|
}>, {
|
|
8
8
|
editMode: boolean;
|
|
9
9
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -11,12 +11,12 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
11
11
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
12
12
|
field: BagelField;
|
|
13
13
|
modelValue: any;
|
|
14
|
-
editMode?: boolean;
|
|
15
|
-
small?: boolean;
|
|
14
|
+
editMode?: boolean | undefined;
|
|
15
|
+
small?: boolean | undefined;
|
|
16
16
|
}>, {
|
|
17
17
|
editMode: boolean;
|
|
18
18
|
}>>> & {
|
|
19
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
19
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
20
20
|
}, {
|
|
21
21
|
editMode: boolean;
|
|
22
22
|
}, {}>;
|
|
@@ -5,7 +5,7 @@ declare const _default: import("vue").DefineComponent<{
|
|
|
5
5
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
6
6
|
modelValue: BooleanConstructor;
|
|
7
7
|
}>> & {
|
|
8
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
8
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
9
9
|
}, {
|
|
10
10
|
modelValue: boolean;
|
|
11
11
|
}, {}>;
|
|
@@ -2,9 +2,9 @@ import { BagelField } from '../../../types';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
field: BagelField;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
editMode?: boolean;
|
|
7
|
-
small?: boolean;
|
|
5
|
+
placeholder?: string | undefined;
|
|
6
|
+
editMode?: boolean | undefined;
|
|
7
|
+
small?: boolean | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
editMode: boolean;
|
|
10
10
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -12,13 +12,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
12
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
13
|
field: BagelField;
|
|
14
14
|
modelValue: any;
|
|
15
|
-
placeholder?: string;
|
|
16
|
-
editMode?: boolean;
|
|
17
|
-
small?: boolean;
|
|
15
|
+
placeholder?: string | undefined;
|
|
16
|
+
editMode?: boolean | undefined;
|
|
17
|
+
small?: boolean | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
editMode: boolean;
|
|
20
20
|
}>>> & {
|
|
21
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
21
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
editMode: boolean;
|
|
24
24
|
}, {}>;
|
|
@@ -2,8 +2,8 @@ import type { BagelField } from '../../../types/BagelField';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
field: BagelField;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
editMode?: boolean;
|
|
6
|
-
small?: boolean;
|
|
5
|
+
editMode?: boolean | undefined;
|
|
6
|
+
small?: boolean | undefined;
|
|
7
7
|
}>, {
|
|
8
8
|
editMode: boolean;
|
|
9
9
|
small: boolean;
|
|
@@ -12,13 +12,13 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
12
12
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
13
|
field: BagelField;
|
|
14
14
|
modelValue: any;
|
|
15
|
-
editMode?: boolean;
|
|
16
|
-
small?: boolean;
|
|
15
|
+
editMode?: boolean | undefined;
|
|
16
|
+
small?: boolean | undefined;
|
|
17
17
|
}>, {
|
|
18
18
|
editMode: boolean;
|
|
19
19
|
small: boolean;
|
|
20
20
|
}>>> & {
|
|
21
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
21
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
small: boolean;
|
|
24
24
|
editMode: boolean;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
description?: string;
|
|
3
|
-
label?: string;
|
|
2
|
+
description?: string | undefined;
|
|
3
|
+
label?: string | undefined;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
editMode?: boolean;
|
|
7
|
-
small?: boolean;
|
|
5
|
+
placeholder?: string | undefined;
|
|
6
|
+
editMode?: boolean | undefined;
|
|
7
|
+
small?: boolean | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,22 +13,22 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
13
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
"update:modelValue": (...args: any[]) => void;
|
|
15
15
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
|
-
description?: string;
|
|
17
|
-
label?: string;
|
|
16
|
+
description?: string | undefined;
|
|
17
|
+
label?: string | undefined;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string;
|
|
20
|
-
editMode?: boolean;
|
|
21
|
-
small?: boolean;
|
|
19
|
+
placeholder?: string | undefined;
|
|
20
|
+
editMode?: boolean | undefined;
|
|
21
|
+
small?: boolean | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
28
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
}, {
|
|
30
|
-
label: string;
|
|
31
30
|
description: string;
|
|
31
|
+
label: string;
|
|
32
32
|
placeholder: string;
|
|
33
33
|
editMode: boolean;
|
|
34
34
|
}, {}>;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
description?: string;
|
|
3
|
-
label?: string;
|
|
2
|
+
description?: string | undefined;
|
|
3
|
+
label?: string | undefined;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string;
|
|
6
|
-
editMode?: boolean;
|
|
7
|
-
small?: boolean;
|
|
5
|
+
placeholder?: string | undefined;
|
|
6
|
+
editMode?: boolean | undefined;
|
|
7
|
+
small?: boolean | undefined;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,22 +13,22 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
13
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
14
14
|
"update:modelValue": (...args: any[]) => void;
|
|
15
15
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
16
|
-
description?: string;
|
|
17
|
-
label?: string;
|
|
16
|
+
description?: string | undefined;
|
|
17
|
+
label?: string | undefined;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string;
|
|
20
|
-
editMode?: boolean;
|
|
21
|
-
small?: boolean;
|
|
19
|
+
placeholder?: string | undefined;
|
|
20
|
+
editMode?: boolean | undefined;
|
|
21
|
+
small?: boolean | undefined;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
28
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
29
29
|
}, {
|
|
30
|
-
label: string;
|
|
31
30
|
description: string;
|
|
31
|
+
label: string;
|
|
32
32
|
placeholder: string;
|
|
33
33
|
editMode: boolean;
|
|
34
34
|
}, {}>;
|