@bagelink/vue 0.0.85 → 0.0.93
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 +30 -30
- 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 +3 -3
- 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 +2 -2
- 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 +11 -11
- package/dist/components/form/inputs/DurationInput.vue.d.ts +11 -11
- package/dist/components/form/inputs/EmailInput.vue.d.ts +11 -11
- package/dist/components/form/inputs/FloatInput.vue.d.ts +11 -11
- package/dist/components/form/inputs/IntInput.vue.d.ts +11 -11
- package/dist/components/form/inputs/JSONInput.vue.d.ts +11 -11
- 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 +11 -11
- package/dist/components/form/inputs/ReadOnlyInput.vue.d.ts +2 -2
- package/dist/components/form/inputs/RichTextEditor.vue.d.ts +11 -11
- package/dist/components/form/inputs/SelectField.vue.d.ts +6 -6
- package/dist/components/form/inputs/TableField.vue.d.ts +5 -5
- package/dist/components/form/inputs/TextInput.vue.d.ts +22 -22
- package/dist/utils/index.d.ts +1 -1
- package/package.json +2 -2
- package/tsconfig.json +0 -2
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
import { 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;
|
|
4
|
+
icon?: MaterialIcons;
|
|
5
|
+
'icon.end'?: MaterialIcons;
|
|
6
|
+
color?: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
|
|
7
|
+
flat?: boolean;
|
|
8
|
+
thin?: boolean;
|
|
9
|
+
type?: "button" | "reset" | "submit";
|
|
10
|
+
loading?: boolean;
|
|
11
|
+
role?: string;
|
|
12
|
+
value?: string;
|
|
13
|
+
to?: string;
|
|
14
|
+
round?: boolean;
|
|
15
|
+
is?: string;
|
|
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;
|
|
26
|
+
icon?: MaterialIcons;
|
|
27
|
+
'icon.end'?: MaterialIcons;
|
|
28
|
+
color?: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
|
|
29
|
+
flat?: boolean;
|
|
30
|
+
thin?: boolean;
|
|
31
|
+
type?: "button" | "reset" | "submit";
|
|
32
|
+
loading?: boolean;
|
|
33
|
+
role?: string;
|
|
34
|
+
value?: string;
|
|
35
|
+
to?: string;
|
|
36
|
+
round?: boolean;
|
|
37
|
+
is?: string;
|
|
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
|
-
|
|
49
|
-
|
|
47
|
+
type: "button" | "reset" | "submit";
|
|
48
|
+
color: "light" | "black" | "blue" | "gray" | "green" | "red" | "gray-light";
|
|
49
|
+
round: boolean;
|
|
50
50
|
disabled: boolean;
|
|
51
|
+
role: string;
|
|
51
52
|
loading: boolean;
|
|
52
53
|
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>[];
|
|
4
|
+
title?: string;
|
|
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>[];
|
|
11
|
+
title?: string;
|
|
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"?: (
|
|
12
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
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?: (
|
|
5
|
+
onDelete?: (id: string) => void;
|
|
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?: (
|
|
15
|
+
onDelete?: (id: string) => void;
|
|
16
16
|
$t: (key: string) => string;
|
|
17
17
|
}>, {
|
|
18
18
|
$t: (key: string) => string;
|
|
19
19
|
}>>> & {
|
|
20
|
-
"onUpdate:modelValue"?: (
|
|
21
|
-
onSubmit?: (
|
|
20
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
21
|
+
onSubmit?: (...args: any[]) => any;
|
|
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;
|
|
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;
|
|
5
5
|
}>>>, {}, {}>, {
|
|
6
6
|
default?(_: {}): any;
|
|
7
7
|
subtitle?(_: {}): any;
|
|
@@ -13,9 +13,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
open: boolean;
|
|
14
14
|
searchPlaceholder: string;
|
|
15
15
|
}>>> & {
|
|
16
|
-
onSearch?: (
|
|
17
|
-
onAdd?: (
|
|
18
|
-
onDebounce?: (
|
|
16
|
+
onSearch?: (...args: any[]) => any;
|
|
17
|
+
onAdd?: (...args: any[]) => any;
|
|
18
|
+
onDebounce?: (...args: any[]) => any;
|
|
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;
|
|
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;
|
|
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;
|
|
4
|
+
title?: string;
|
|
5
|
+
dismissable?: boolean;
|
|
6
|
+
actions?: BtnOptions[];
|
|
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;
|
|
11
|
+
title?: string;
|
|
12
|
+
dismissable?: boolean;
|
|
13
|
+
actions?: BtnOptions[];
|
|
14
14
|
}>>> & {
|
|
15
|
-
"onUpdate:isModalVisible"?: (
|
|
15
|
+
"onUpdate:isModalVisible"?: (...args: any[]) => any;
|
|
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;
|
|
5
|
+
title?: string;
|
|
6
|
+
dismissable?: boolean;
|
|
7
|
+
actions?: BtnOptions[];
|
|
8
8
|
schema: FormKitSchemaDefinition | (() => FormKitSchemaDefinition);
|
|
9
|
-
modelValue?: Record<string, any
|
|
10
|
-
onSubmit?: (
|
|
11
|
-
onDelete?: (
|
|
9
|
+
modelValue?: Record<string, any>;
|
|
10
|
+
onSubmit?: (formData: any) => Promise<void>;
|
|
11
|
+
onDelete?: (id: string) => void;
|
|
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;
|
|
17
|
+
title?: string;
|
|
18
|
+
dismissable?: boolean;
|
|
19
|
+
actions?: BtnOptions[];
|
|
20
20
|
schema: FormKitSchemaDefinition | (() => FormKitSchemaDefinition);
|
|
21
|
-
modelValue?: Record<string, any
|
|
22
|
-
onSubmit?: (
|
|
23
|
-
onDelete?: (
|
|
21
|
+
modelValue?: Record<string, any>;
|
|
22
|
+
onSubmit?: (formData: any) => Promise<void>;
|
|
23
|
+
onDelete?: (id: string) => void;
|
|
24
24
|
}>>> & {
|
|
25
|
-
"onUpdate:modelValue"?: (
|
|
26
|
-
"onUpdate:isModalVisible"?: (
|
|
25
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
26
|
+
"onUpdate:isModalVisible"?: (...args: any[]) => any;
|
|
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;
|
|
8
|
+
}[];
|
|
9
|
+
homeIcon?: MaterialIcons;
|
|
10
|
+
homeLabel?: string;
|
|
11
|
+
homeTo?: string;
|
|
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;
|
|
22
|
+
}[];
|
|
23
|
+
homeIcon?: MaterialIcons;
|
|
24
|
+
homeLabel?: string;
|
|
25
|
+
homeTo?: string;
|
|
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?: (
|
|
4
|
+
onClick?: (event: MouseEvent) => void;
|
|
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?: (
|
|
8
|
+
onClick?: (event: MouseEvent) => void;
|
|
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;
|
|
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;
|
|
12
12
|
modelValue: string;
|
|
13
13
|
}>, {
|
|
14
14
|
elementId: string;
|
|
15
15
|
modelValue: string;
|
|
16
16
|
}>>> & {
|
|
17
|
-
"onUpdate:modelValue"?: (
|
|
18
|
-
"onKeydown.meta.enter"?: (
|
|
17
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
18
|
+
"onKeydown.meta.enter"?: (...args: any[]) => any;
|
|
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;
|
|
4
4
|
tabs: string[];
|
|
5
|
-
modelValue?: string
|
|
5
|
+
modelValue?: string;
|
|
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;
|
|
11
11
|
tabs: string[];
|
|
12
|
-
modelValue?: string
|
|
12
|
+
modelValue?: string;
|
|
13
13
|
router: Router;
|
|
14
14
|
}>>> & {
|
|
15
|
-
"onUpdate:modelValue"?: (
|
|
15
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
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[];
|
|
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[];
|
|
9
9
|
}>>> & {
|
|
10
|
-
onSelect?: (
|
|
10
|
+
onSelect?: (...args: any[]) => any;
|
|
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;
|
|
3
|
+
showMarks?: boolean;
|
|
4
|
+
flood?: number;
|
|
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;
|
|
14
|
+
showMarks?: boolean;
|
|
15
|
+
flood?: number;
|
|
16
16
|
modelValue: {
|
|
17
17
|
value: number;
|
|
18
18
|
title?: string;
|
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import { MaterialIcons } from '../../types/materialIcons';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
icon: MaterialIcons;
|
|
4
|
-
size?: number
|
|
4
|
+
size?: number;
|
|
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;
|
|
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;
|
|
6
|
+
small?: boolean;
|
|
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;
|
|
15
|
+
small?: boolean;
|
|
16
16
|
}>, {
|
|
17
17
|
editMode: boolean;
|
|
18
18
|
}>>> & {
|
|
19
|
-
"onUpdate:modelValue"?: (
|
|
19
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
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"?: (
|
|
8
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
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;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
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;
|
|
16
|
+
editMode?: boolean;
|
|
17
|
+
small?: boolean;
|
|
18
18
|
}>, {
|
|
19
19
|
editMode: boolean;
|
|
20
20
|
}>>> & {
|
|
21
|
-
"onUpdate:modelValue"?: (
|
|
21
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
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;
|
|
6
|
+
small?: boolean;
|
|
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;
|
|
16
|
+
small?: boolean;
|
|
17
17
|
}>, {
|
|
18
18
|
editMode: boolean;
|
|
19
19
|
small: boolean;
|
|
20
20
|
}>>> & {
|
|
21
|
-
"onUpdate:modelValue"?: (
|
|
21
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -1,45 +1,45 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
description?: string
|
|
3
|
-
label?: string
|
|
2
|
+
description?: string;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
useId?: false
|
|
5
|
+
useId?: false;
|
|
6
6
|
bagelApp?: any;
|
|
7
7
|
entity: string;
|
|
8
8
|
editMode: boolean;
|
|
9
9
|
filters?: any;
|
|
10
|
-
small?: boolean
|
|
10
|
+
small?: boolean;
|
|
11
11
|
}>, {
|
|
12
12
|
description: string;
|
|
13
13
|
label: string;
|
|
14
14
|
useId: boolean;
|
|
15
15
|
filters: {};
|
|
16
|
-
bagelApp:
|
|
16
|
+
bagelApp: any;
|
|
17
17
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
18
18
|
"update:modelValue": (...args: any[]) => void;
|
|
19
19
|
selected: (...args: any[]) => void;
|
|
20
20
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
21
|
-
description?: string
|
|
22
|
-
label?: string
|
|
21
|
+
description?: string;
|
|
22
|
+
label?: string;
|
|
23
23
|
modelValue: any;
|
|
24
|
-
useId?: false
|
|
24
|
+
useId?: false;
|
|
25
25
|
bagelApp?: any;
|
|
26
26
|
entity: string;
|
|
27
27
|
editMode: boolean;
|
|
28
28
|
filters?: any;
|
|
29
|
-
small?: boolean
|
|
29
|
+
small?: boolean;
|
|
30
30
|
}>, {
|
|
31
31
|
description: string;
|
|
32
32
|
label: string;
|
|
33
33
|
useId: boolean;
|
|
34
34
|
filters: {};
|
|
35
|
-
bagelApp:
|
|
35
|
+
bagelApp: any;
|
|
36
36
|
}>>> & {
|
|
37
|
-
"onUpdate:modelValue"?: (
|
|
38
|
-
onSelected?: (
|
|
37
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
38
|
+
onSelected?: (...args: any[]) => any;
|
|
39
39
|
}, {
|
|
40
40
|
label: string;
|
|
41
|
-
description: string;
|
|
42
41
|
filters: any;
|
|
42
|
+
description: string;
|
|
43
43
|
useId: false;
|
|
44
44
|
bagelApp: any;
|
|
45
45
|
}, {}>;
|
|
@@ -2,11 +2,11 @@ import { 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
|
|
7
|
-
required?: boolean
|
|
8
|
-
pattern?: string
|
|
9
|
-
nativeInputAttrs?: Record<string, any
|
|
5
|
+
editMode?: boolean;
|
|
6
|
+
small?: boolean;
|
|
7
|
+
required?: boolean;
|
|
8
|
+
pattern?: string;
|
|
9
|
+
nativeInputAttrs?: Record<string, any>;
|
|
10
10
|
}>, {
|
|
11
11
|
editMode: boolean;
|
|
12
12
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
@@ -14,15 +14,15 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
14
14
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
15
15
|
field: BagelField;
|
|
16
16
|
modelValue: any;
|
|
17
|
-
editMode?: boolean
|
|
18
|
-
small?: boolean
|
|
19
|
-
required?: boolean
|
|
20
|
-
pattern?: string
|
|
21
|
-
nativeInputAttrs?: Record<string, any
|
|
17
|
+
editMode?: boolean;
|
|
18
|
+
small?: boolean;
|
|
19
|
+
required?: boolean;
|
|
20
|
+
pattern?: string;
|
|
21
|
+
nativeInputAttrs?: Record<string, any>;
|
|
22
22
|
}>, {
|
|
23
23
|
editMode: boolean;
|
|
24
24
|
}>>> & {
|
|
25
|
-
"onUpdate:modelValue"?: (
|
|
25
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
26
26
|
}, {
|
|
27
27
|
editMode: boolean;
|
|
28
28
|
}, {}>;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -2,11 +2,11 @@ import { BagelField } from '../../../types/BagelField';
|
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_TypePropsToRuntimeProps<{
|
|
3
3
|
field: BagelField;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
small?: boolean
|
|
5
|
+
small?: boolean;
|
|
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
|
field: BagelField;
|
|
8
8
|
modelValue: any;
|
|
9
|
-
small?: boolean
|
|
9
|
+
small?: boolean;
|
|
10
10
|
}>>>, {}, {}>;
|
|
11
11
|
export default _default;
|
|
12
12
|
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
@@ -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;
|
|
3
|
+
label?: string;
|
|
4
4
|
modelValue: any;
|
|
5
|
-
placeholder?: string
|
|
6
|
-
editMode?: boolean
|
|
7
|
-
small?: boolean
|
|
5
|
+
placeholder?: string;
|
|
6
|
+
editMode?: boolean;
|
|
7
|
+
small?: boolean;
|
|
8
8
|
}>, {
|
|
9
9
|
description: string;
|
|
10
10
|
editMode: boolean;
|
|
@@ -13,19 +13,19 @@ 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;
|
|
17
|
+
label?: string;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
placeholder?: string
|
|
20
|
-
editMode?: boolean
|
|
21
|
-
small?: boolean
|
|
19
|
+
placeholder?: string;
|
|
20
|
+
editMode?: boolean;
|
|
21
|
+
small?: boolean;
|
|
22
22
|
}>, {
|
|
23
23
|
description: string;
|
|
24
24
|
editMode: boolean;
|
|
25
25
|
placeholder: string;
|
|
26
26
|
label: string;
|
|
27
27
|
}>>> & {
|
|
28
|
-
"onUpdate:modelValue"?: (
|
|
28
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
29
29
|
}, {
|
|
30
30
|
label: string;
|
|
31
31
|
description: string;
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
import { type SelectBagelField } from '../../../types/BagelField';
|
|
2
2
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<SelectBagelField, "key"> & {
|
|
3
|
-
editMode?: boolean
|
|
3
|
+
editMode?: boolean;
|
|
4
4
|
field: SelectBagelField;
|
|
5
5
|
modelValue: any;
|
|
6
|
-
small?: boolean
|
|
6
|
+
small?: boolean;
|
|
7
7
|
}>, {
|
|
8
8
|
description: string;
|
|
9
9
|
editMode: boolean;
|
|
@@ -13,18 +13,18 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
13
13
|
"update:modelValue": (...args: any[]) => void;
|
|
14
14
|
selected: (...args: any[]) => void;
|
|
15
15
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Omit<SelectBagelField, "key"> & {
|
|
16
|
-
editMode?: boolean
|
|
16
|
+
editMode?: boolean;
|
|
17
17
|
field: SelectBagelField;
|
|
18
18
|
modelValue: any;
|
|
19
|
-
small?: boolean
|
|
19
|
+
small?: boolean;
|
|
20
20
|
}>, {
|
|
21
21
|
description: string;
|
|
22
22
|
editMode: boolean;
|
|
23
23
|
label: string;
|
|
24
24
|
placeholder: string;
|
|
25
25
|
}>>> & {
|
|
26
|
-
"onUpdate:modelValue"?: (
|
|
27
|
-
onSelected?: (
|
|
26
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
27
|
+
onSelected?: (...args: any[]) => any;
|
|
28
28
|
}, {
|
|
29
29
|
label: string;
|
|
30
30
|
description: string;
|
|
@@ -1,25 +1,25 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
description?: string
|
|
2
|
+
description?: string;
|
|
3
3
|
meta: Record<string, any>;
|
|
4
4
|
fieldname: string;
|
|
5
5
|
bagelApp?: any;
|
|
6
6
|
modelValue: any;
|
|
7
7
|
}>, {
|
|
8
8
|
description: string;
|
|
9
|
-
bagelApp:
|
|
9
|
+
bagelApp: any;
|
|
10
10
|
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
11
11
|
"update:modelValue": (...args: any[]) => void;
|
|
12
12
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
-
description?: string
|
|
13
|
+
description?: string;
|
|
14
14
|
meta: Record<string, any>;
|
|
15
15
|
fieldname: string;
|
|
16
16
|
bagelApp?: any;
|
|
17
17
|
modelValue: any;
|
|
18
18
|
}>, {
|
|
19
19
|
description: string;
|
|
20
|
-
bagelApp:
|
|
20
|
+
bagelApp: any;
|
|
21
21
|
}>>> & {
|
|
22
|
-
"onUpdate:modelValue"?: (
|
|
22
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
23
23
|
}, {
|
|
24
24
|
description: string;
|
|
25
25
|
bagelApp: any;
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
2
|
-
id?: string
|
|
3
|
-
title?: string
|
|
4
|
-
placeholder?: string
|
|
5
|
-
modelValue?: string
|
|
6
|
-
label?: string
|
|
7
|
-
editMode?: boolean
|
|
8
|
-
small?: boolean
|
|
9
|
-
required?: boolean
|
|
10
|
-
pattern?: string
|
|
11
|
-
nativeInputAttrs?: Record<string, any
|
|
2
|
+
id?: string;
|
|
3
|
+
title?: string;
|
|
4
|
+
placeholder?: string;
|
|
5
|
+
modelValue?: string;
|
|
6
|
+
label?: string;
|
|
7
|
+
editMode?: boolean;
|
|
8
|
+
small?: boolean;
|
|
9
|
+
required?: boolean;
|
|
10
|
+
pattern?: string;
|
|
11
|
+
nativeInputAttrs?: Record<string, any>;
|
|
12
12
|
}>, {
|
|
13
13
|
editMode: boolean;
|
|
14
14
|
modelValue: string;
|
|
@@ -16,22 +16,22 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
16
16
|
"update:modelValue": (...args: any[]) => void;
|
|
17
17
|
debounce: (...args: any[]) => void;
|
|
18
18
|
}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
19
|
-
id?: string
|
|
20
|
-
title?: string
|
|
21
|
-
placeholder?: string
|
|
22
|
-
modelValue?: string
|
|
23
|
-
label?: string
|
|
24
|
-
editMode?: boolean
|
|
25
|
-
small?: boolean
|
|
26
|
-
required?: boolean
|
|
27
|
-
pattern?: string
|
|
28
|
-
nativeInputAttrs?: Record<string, any
|
|
19
|
+
id?: string;
|
|
20
|
+
title?: string;
|
|
21
|
+
placeholder?: string;
|
|
22
|
+
modelValue?: string;
|
|
23
|
+
label?: string;
|
|
24
|
+
editMode?: boolean;
|
|
25
|
+
small?: boolean;
|
|
26
|
+
required?: boolean;
|
|
27
|
+
pattern?: string;
|
|
28
|
+
nativeInputAttrs?: Record<string, any>;
|
|
29
29
|
}>, {
|
|
30
30
|
editMode: boolean;
|
|
31
31
|
modelValue: string;
|
|
32
32
|
}>>> & {
|
|
33
|
-
"onUpdate:modelValue"?: (
|
|
34
|
-
onDebounce?: (
|
|
33
|
+
"onUpdate:modelValue"?: (...args: any[]) => any;
|
|
34
|
+
onDebounce?: (...args: any[]) => any;
|
|
35
35
|
}, {
|
|
36
36
|
modelValue: string;
|
|
37
37
|
editMode: boolean;
|
package/dist/utils/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import type { BagelField } from '../types/BagelField';
|
|
|
2
2
|
export declare const debounce: (fn: () => void, delay?: number) => void;
|
|
3
3
|
export declare const keyToLabel: (key: string) => string;
|
|
4
4
|
export declare function computeFields(modelValue: Record<string, any>): BagelField[];
|
|
5
|
-
export declare const copyText: (text: string, cb?: (
|
|
5
|
+
export declare const copyText: (text: string, cb?: (msg: string) => void) => Promise<void>;
|
|
6
6
|
export declare const useFormkit: () => unknown;
|
|
7
7
|
export declare const initials: (...strArr: string[]) => string;
|
|
8
8
|
export declare const parseLocale: (str: string, $t?: (_str: string) => string) => string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bagelink/vue",
|
|
3
3
|
"type": "module",
|
|
4
|
-
"version": "0.0.
|
|
4
|
+
"version": "0.0.93",
|
|
5
5
|
"description": "Bagel core sdk packages",
|
|
6
6
|
"author": {
|
|
7
7
|
"name": "Neveh Allon",
|
|
@@ -65,7 +65,7 @@
|
|
|
65
65
|
"prosemirror-state": "^1.4.3",
|
|
66
66
|
"prosemirror-view": "^1.32.4",
|
|
67
67
|
"@vue-macros/reactivity-transform": "^0.4.0",
|
|
68
|
-
"@bagelink/sdk": "0.0.
|
|
68
|
+
"@bagelink/sdk": "0.0.93"
|
|
69
69
|
},
|
|
70
70
|
"peerDependencies": {
|
|
71
71
|
"@bagelink/sdk": "*"
|