@bagelink/vue 0.0.91 → 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 +1 -2
- package/dist/components/Comments.vue.d.ts +0 -1
- package/dist/components/ContactSubmissions.vue.d.ts +0 -1
- package/dist/components/DataPreview.vue.d.ts +0 -1
- package/dist/components/DropDown.vue.d.ts +0 -1
- package/dist/components/FormSchema.vue.d.ts +1 -2
- package/dist/components/LangText.vue.d.ts +0 -1
- package/dist/components/ListItem.vue.d.ts +0 -1
- package/dist/components/ListView.vue.d.ts +2 -3
- package/dist/components/MaterialIcon.vue.d.ts +0 -1
- package/dist/components/Modal.vue.d.ts +0 -1
- package/dist/components/ModalForm.vue.d.ts +0 -1
- package/dist/components/NavBar.vue.d.ts +0 -1
- package/dist/components/PageTitle.vue.d.ts +0 -1
- package/dist/components/PersonPreviewFormkit.vue.d.ts +0 -1
- package/dist/components/RTXEditor.vue.d.ts +0 -1
- package/dist/components/RouterWrapper.vue.d.ts +0 -1
- package/dist/components/TabbedLayout.vue.d.ts +0 -1
- package/dist/components/TableSchema.vue.d.ts +0 -1
- package/dist/components/TopBar.vue.d.ts +0 -1
- package/dist/components/charts/BarChart.vue.d.ts +0 -1
- package/dist/components/form/MaterialIcon.vue.d.ts +1 -2
- package/dist/components/form/inputs/CheckInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/Checkbox.vue.d.ts +0 -1
- package/dist/components/form/inputs/CurrencyInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/DatetimeInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/DurationInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/EmailInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/FloatInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/IntInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/JSONInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/LinkField.vue.d.ts +1 -2
- package/dist/components/form/inputs/Password.vue.d.ts +0 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts +1 -2
- package/dist/components/form/inputs/ReadOnlyInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/RichTextEditor.vue.d.ts +1 -2
- package/dist/components/form/inputs/SelectField.vue.d.ts +1 -2
- package/dist/components/form/inputs/TableField.vue.d.ts +0 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts +0 -1
- package/dist/components/form/inputs/index.d.ts +0 -1
- package/dist/components/formkit/AddressArray.vue.d.ts +0 -1
- package/dist/components/formkit/BankDetailsArray.vue.d.ts +0 -1
- package/dist/components/formkit/ContactArrayFormKit.vue.d.ts +0 -1
- package/dist/components/formkit/FileUploader.vue.d.ts +0 -1
- package/dist/components/formkit/MiscFields.vue.d.ts +0 -1
- package/dist/components/formkit/Toggle.vue.d.ts +0 -1
- package/dist/components/formkit/index.d.ts +0 -1
- package/dist/components/index.d.ts +1 -1
- package/dist/components/whatsapp/form/TextVariableExamples.vue.d.ts +0 -1
- package/dist/components/whatsapp/interfaces.d.ts +0 -1
- package/dist/index.cjs +453 -256
- package/dist/index.d.ts +0 -1
- package/dist/index.mjs +453 -256
- package/dist/plugins/bagel.d.ts +0 -1
- package/dist/plugins/modal.d.ts +0 -1
- package/dist/style.css +246 -244
- package/dist/types/BagelField.d.ts +0 -1
- package/dist/types/BtnOptions.d.ts +1 -2
- package/dist/types/Person.d.ts +0 -1
- package/dist/types/file.d.ts +0 -1
- package/dist/types/index.d.ts +0 -1
- package/dist/types/materialIcons.d.ts +1 -0
- package/dist/utils/index.d.ts +1 -1
- package/dist/utils/objects.d.ts +0 -1
- package/dist/utils/strings.d.ts +0 -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 -32
- package/vite.config.ts +2 -2
- package/dist/components/Btn.vue.d.ts.map +0 -1
- package/dist/components/Comments.vue.d.ts.map +0 -1
- package/dist/components/ContactSubmissions.vue.d.ts.map +0 -1
- package/dist/components/DataPreview.vue.d.ts.map +0 -1
- package/dist/components/DropDown.vue.d.ts.map +0 -1
- package/dist/components/FormSchema.vue.d.ts.map +0 -1
- package/dist/components/LangText.vue.d.ts.map +0 -1
- package/dist/components/ListItem.vue.d.ts.map +0 -1
- package/dist/components/ListView.vue.d.ts.map +0 -1
- package/dist/components/MaterialIcon.vue.d.ts.map +0 -1
- package/dist/components/Modal.vue.d.ts.map +0 -1
- package/dist/components/ModalForm.vue.d.ts.map +0 -1
- package/dist/components/NavBar.vue.d.ts.map +0 -1
- package/dist/components/PageTitle.vue.d.ts.map +0 -1
- package/dist/components/PersonPreviewFormkit.vue.d.ts.map +0 -1
- package/dist/components/RTXEditor.vue.d.ts.map +0 -1
- package/dist/components/RouterWrapper.vue.d.ts.map +0 -1
- package/dist/components/TabbedLayout.vue.d.ts.map +0 -1
- package/dist/components/TableSchema.vue.d.ts.map +0 -1
- package/dist/components/TopBar.vue.d.ts.map +0 -1
- package/dist/components/charts/BarChart.vue.d.ts.map +0 -1
- package/dist/components/form/MaterialIcon.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/CheckInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/Checkbox.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/CurrencyInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/DateInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/DatetimeInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/DurationInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/EmailInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/FloatInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/IntInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/JSONInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/LinkField.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/Password.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/PasswordInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/ReadOnlyInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/RichTextEditor.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/SelectField.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/TableField.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/TextInput.vue.d.ts.map +0 -1
- package/dist/components/form/inputs/index.d.ts.map +0 -1
- package/dist/components/formkit/AddressArray.vue.d.ts.map +0 -1
- package/dist/components/formkit/BankDetailsArray.vue.d.ts.map +0 -1
- package/dist/components/formkit/ContactArrayFormKit.vue.d.ts.map +0 -1
- package/dist/components/formkit/FileUploader.vue.d.ts.map +0 -1
- package/dist/components/formkit/MiscFields.vue.d.ts.map +0 -1
- package/dist/components/formkit/Toggle.vue.d.ts.map +0 -1
- package/dist/components/formkit/index.d.ts.map +0 -1
- package/dist/components/index.d.ts.map +0 -1
- package/dist/components/whatsapp/form/TextVariableExamples.vue.d.ts.map +0 -1
- package/dist/components/whatsapp/interfaces.d.ts.map +0 -1
- package/dist/index.d.ts.map +0 -1
- package/dist/plugins/bagel.d.ts.map +0 -1
- package/dist/plugins/modal.d.ts.map +0 -1
- package/dist/types/BagelField.d.ts.map +0 -1
- package/dist/types/BtnOptions.d.ts.map +0 -1
- package/dist/types/Person.d.ts.map +0 -1
- package/dist/types/file.d.ts.map +0 -1
- package/dist/types/index.d.ts.map +0 -1
- package/dist/utils/index.d.ts.map +0 -1
- package/dist/utils/objects.d.ts.map +0 -1
- package/dist/utils/strings.d.ts.map +0 -1
- /package/src/types/{materialIcons.d.ts → materialIcons.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
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
3
|
disabled?: boolean | undefined;
|
|
4
4
|
icon?: MaterialIcons | undefined;
|
|
@@ -77,4 +77,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
77
77
|
$slots: S;
|
|
78
78
|
};
|
|
79
79
|
};
|
|
80
|
-
//# sourceMappingURL=Btn.vue.d.ts.map
|
|
@@ -17,8 +17,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
17
17
|
}>, {
|
|
18
18
|
$t: (key: string) => string;
|
|
19
19
|
}>>> & {
|
|
20
|
-
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
21
20
|
onSubmit?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
22
22
|
}, {
|
|
23
23
|
$t: (key: string) => string;
|
|
24
24
|
}, {}>;
|
|
@@ -40,4 +40,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
40
40
|
type __VLS_Prettify<T> = {
|
|
41
41
|
[K in keyof T]: T[K];
|
|
42
42
|
} & {};
|
|
43
|
-
//# sourceMappingURL=FormSchema.vue.d.ts.map
|
|
@@ -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,8 +13,8 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<__
|
|
|
13
13
|
open: boolean;
|
|
14
14
|
searchPlaceholder: string;
|
|
15
15
|
}>>> & {
|
|
16
|
-
onSearch?: ((...args: any[]) => any) | undefined;
|
|
17
16
|
onAdd?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
onSearch?: ((...args: any[]) => any) | undefined;
|
|
18
18
|
onDebounce?: ((...args: any[]) => any) | undefined;
|
|
19
19
|
}, {}, {}>, {
|
|
20
20
|
default?(_: {}): any;
|
|
@@ -34,4 +34,3 @@ type __VLS_WithTemplateSlots<T, S> = T & {
|
|
|
34
34
|
$slots: S;
|
|
35
35
|
};
|
|
36
36
|
};
|
|
37
|
-
//# sourceMappingURL=ListView.vue.d.ts.map
|
|
@@ -1,3 +1,2 @@
|
|
|
1
1
|
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
|
|
2
2
|
export default _default;
|
|
3
|
-
//# sourceMappingURL=RouterWrapper.vue.d.ts.map
|
|
@@ -1,4 +1,4 @@
|
|
|
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
4
|
size?: number | undefined;
|
|
@@ -16,4 +16,3 @@ type __VLS_TypePropsToRuntimeProps<T> = {
|
|
|
16
16
|
required: true;
|
|
17
17
|
};
|
|
18
18
|
};
|
|
19
|
-
//# sourceMappingURL=MaterialIcon.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=DatetimeInput.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=DurationInput.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=EmailInput.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=FloatInput.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=IntInput.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=JSONInput.vue.d.ts.map
|
|
@@ -37,8 +37,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
37
37
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
38
38
|
onSelected?: ((...args: any[]) => any) | undefined;
|
|
39
39
|
}, {
|
|
40
|
-
label: string;
|
|
41
40
|
description: string;
|
|
41
|
+
label: string;
|
|
42
42
|
filters: any;
|
|
43
43
|
useId: false;
|
|
44
44
|
bagelApp: any;
|
|
@@ -61,4 +61,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
61
61
|
type __VLS_Prettify<T> = {
|
|
62
62
|
[K in keyof T]: T[K];
|
|
63
63
|
} & {};
|
|
64
|
-
//# sourceMappingURL=LinkField.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=PasswordInput.vue.d.ts.map
|
|
@@ -27,8 +27,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
27
27
|
}>>> & {
|
|
28
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
|
}, {}>;
|
|
@@ -50,4 +50,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
50
50
|
type __VLS_Prettify<T> = {
|
|
51
51
|
[K in keyof T]: T[K];
|
|
52
52
|
} & {};
|
|
53
|
-
//# sourceMappingURL=RichTextEditor.vue.d.ts.map
|
|
@@ -26,8 +26,8 @@ declare const _default: import("vue").DefineComponent<__VLS_WithDefaults<__VLS_T
|
|
|
26
26
|
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
|
|
27
27
|
onSelected?: ((...args: any[]) => any) | undefined;
|
|
28
28
|
}, {
|
|
29
|
-
label: string;
|
|
30
29
|
description: string;
|
|
30
|
+
label: string;
|
|
31
31
|
placeholder: string;
|
|
32
32
|
editMode: boolean;
|
|
33
33
|
}, {}>;
|
|
@@ -49,4 +49,3 @@ type __VLS_WithDefaults<P, D> = {
|
|
|
49
49
|
type __VLS_Prettify<T> = {
|
|
50
50
|
[K in keyof T]: T[K];
|
|
51
51
|
} & {};
|
|
52
|
-
//# sourceMappingURL=SelectField.vue.d.ts.map
|
|
@@ -7,4 +7,3 @@ declare const FileUpload: import("@formkit/core").FormKitTypeDefinition;
|
|
|
7
7
|
declare const TextVariables: import("@formkit/core").FormKitTypeDefinition;
|
|
8
8
|
declare const PersonPreview: import("@formkit/core").FormKitTypeDefinition;
|
|
9
9
|
export { TextVariables, ContactArray, PersonPreview, Address, BankDetails, MiscFields, ToggleSwitch, FileUpload, };
|
|
10
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
export * as LangText from './LangText.vue';
|
|
1
2
|
export * as RTXEditor from './RTXEditor.vue';
|
|
2
3
|
export * as MaterialIcon from './MaterialIcon.vue';
|
|
3
4
|
export * as NavBar from './NavBar.vue';
|
|
@@ -18,4 +19,3 @@ export * as TableSchema from './TableSchema.vue';
|
|
|
18
19
|
export * as TopBar from './TopBar.vue';
|
|
19
20
|
export * as RouterWrapper from './RouterWrapper.vue';
|
|
20
21
|
export * as ContactSubmissions from './ContactSubmissions.vue';
|
|
21
|
-
//# sourceMappingURL=index.d.ts.map
|