@stachelock/ui 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +304 -0
- package/dist/CheckboxInput-rWkcde69.js +5 -0
- package/dist/CheckboxInput-rWkcde69.js.map +1 -0
- package/dist/ComboboxInput-B98P_8CZ.js +5 -0
- package/dist/ComboboxInput-B98P_8CZ.js.map +1 -0
- package/dist/SelectInput-B5liNv7H.js +5 -0
- package/dist/SelectInput-B5liNv7H.js.map +1 -0
- package/dist/SwitchInput-D1k9O8gn.js +5 -0
- package/dist/SwitchInput-D1k9O8gn.js.map +1 -0
- package/dist/TextAreaInput-Di6Kstic.js +5 -0
- package/dist/TextAreaInput-Di6Kstic.js.map +1 -0
- package/dist/UiLoading-BuzCrLqO.js +5 -0
- package/dist/UiLoading-BuzCrLqO.js.map +1 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +4763 -0
- package/dist/index.js.map +1 -0
- package/dist/index.umd.cjs +11 -0
- package/dist/index.umd.cjs.map +1 -0
- package/dist/src/components/UiAvatar.d.ts +57 -0
- package/dist/src/components/UiAvatar.d.ts.map +1 -0
- package/dist/src/components/UiBadge.d.ts +44 -0
- package/dist/src/components/UiBadge.d.ts.map +1 -0
- package/dist/src/components/UiBreadcrumb.d.ts +3 -0
- package/dist/src/components/UiBreadcrumb.d.ts.map +1 -0
- package/dist/src/components/UiButton.d.ts +119 -0
- package/dist/src/components/UiButton.d.ts.map +1 -0
- package/dist/src/components/UiLoading.d.ts +36 -0
- package/dist/src/components/UiLoading.d.ts.map +1 -0
- package/dist/src/components/UiLoadingDots.d.ts +53 -0
- package/dist/src/components/UiLoadingDots.d.ts.map +1 -0
- package/dist/src/components/UiModal.d.ts +102 -0
- package/dist/src/components/UiModal.d.ts.map +1 -0
- package/dist/src/components/UiNavLink.d.ts +73 -0
- package/dist/src/components/UiNavLink.d.ts.map +1 -0
- package/dist/src/components/UiProgressBar.d.ts +35 -0
- package/dist/src/components/UiProgressBar.d.ts.map +1 -0
- package/dist/src/components/UiRadialProgressBar.d.ts +43 -0
- package/dist/src/components/UiRadialProgressBar.d.ts.map +1 -0
- package/dist/src/components/UiTable.d.ts +94 -0
- package/dist/src/components/UiTable.d.ts.map +1 -0
- package/dist/src/components/UiTextInput.d.ts +108 -0
- package/dist/src/components/UiTextInput.d.ts.map +1 -0
- package/dist/src/components/UiTransition.d.ts +41 -0
- package/dist/src/components/UiTransition.d.ts.map +1 -0
- package/dist/src/components/calendars/CalendarDashboard.d.ts +32 -0
- package/dist/src/components/calendars/CalendarDashboard.d.ts.map +1 -0
- package/dist/src/components/calendars/CalendarHeader.d.ts +26 -0
- package/dist/src/components/calendars/CalendarHeader.d.ts.map +1 -0
- package/dist/src/components/calendars/DayCalendar.d.ts +24 -0
- package/dist/src/components/calendars/DayCalendar.d.ts.map +1 -0
- package/dist/src/components/calendars/EventCard.d.ts +19 -0
- package/dist/src/components/calendars/EventCard.d.ts.map +1 -0
- package/dist/src/components/calendars/EventsList.d.ts +24 -0
- package/dist/src/components/calendars/EventsList.d.ts.map +1 -0
- package/dist/src/components/calendars/MonthCalendar.d.ts +36 -0
- package/dist/src/components/calendars/MonthCalendar.d.ts.map +1 -0
- package/dist/src/components/calendars/WeekCalendar.d.ts +24 -0
- package/dist/src/components/calendars/WeekCalendar.d.ts.map +1 -0
- package/dist/src/components/calendars/YearCalendar.d.ts +18 -0
- package/dist/src/components/calendars/YearCalendar.d.ts.map +1 -0
- package/dist/src/components/calendars/index.d.ts +9 -0
- package/dist/src/components/calendars/index.d.ts.map +1 -0
- package/dist/src/components/forms/DynamicForm.d.ts +70 -0
- package/dist/src/components/forms/DynamicForm.d.ts.map +1 -0
- package/dist/src/components/forms/DynamicFormField.d.ts +25 -0
- package/dist/src/components/forms/DynamicFormField.d.ts.map +1 -0
- package/dist/src/components/forms/FormFieldWrapper.d.ts +108 -0
- package/dist/src/components/forms/FormFieldWrapper.d.ts.map +1 -0
- package/dist/src/components/forms/index.d.ts +4 -0
- package/dist/src/components/forms/index.d.ts.map +1 -0
- package/dist/src/components/index.d.ts +18 -0
- package/dist/src/components/index.d.ts.map +1 -0
- package/dist/src/components/inputs/CheckboxInput.d.ts +68 -0
- package/dist/src/components/inputs/CheckboxInput.d.ts.map +1 -0
- package/dist/src/components/inputs/ComboboxInput.d.ts +76 -0
- package/dist/src/components/inputs/ComboboxInput.d.ts.map +1 -0
- package/dist/src/components/inputs/InputsShowcase.d.ts +3 -0
- package/dist/src/components/inputs/InputsShowcase.d.ts.map +1 -0
- package/dist/src/components/inputs/SelectInput.d.ts +67 -0
- package/dist/src/components/inputs/SelectInput.d.ts.map +1 -0
- package/dist/src/components/inputs/SwitchInput.d.ts +80 -0
- package/dist/src/components/inputs/SwitchInput.d.ts.map +1 -0
- package/dist/src/components/inputs/TagifyInput.d.ts +183 -0
- package/dist/src/components/inputs/TagifyInput.d.ts.map +1 -0
- package/dist/src/components/inputs/TextAreaInput.d.ts +68 -0
- package/dist/src/components/inputs/TextAreaInput.d.ts.map +1 -0
- package/dist/src/components/inputs/index.d.ts +8 -0
- package/dist/src/components/inputs/index.d.ts.map +1 -0
- package/dist/src/components/layouts/DashboardLayout.d.ts +33 -0
- package/dist/src/components/layouts/DashboardLayout.d.ts.map +1 -0
- package/dist/src/components/layouts/DefaultLayout.d.ts +58 -0
- package/dist/src/components/layouts/DefaultLayout.d.ts.map +1 -0
- package/dist/src/components/layouts/HeaderLayout.d.ts +15 -0
- package/dist/src/components/layouts/HeaderLayout.d.ts.map +1 -0
- package/dist/src/components/layouts/NavigationGroup.d.ts +25 -0
- package/dist/src/components/layouts/NavigationGroup.d.ts.map +1 -0
- package/dist/src/components/layouts/NavigationItem.d.ts +30 -0
- package/dist/src/components/layouts/NavigationItem.d.ts.map +1 -0
- package/dist/src/components/layouts/SidebarLayout.d.ts +27 -0
- package/dist/src/components/layouts/SidebarLayout.d.ts.map +1 -0
- package/dist/src/components/layouts/index.d.ts +7 -0
- package/dist/src/components/layouts/index.d.ts.map +1 -0
- package/dist/src/composables/index.d.ts +4 -0
- package/dist/src/composables/index.d.ts.map +1 -0
- package/dist/src/composables/useCalendar.d.ts +146 -0
- package/dist/src/composables/useCalendar.d.ts.map +1 -0
- package/dist/src/composables/useFormValidation.d.ts +52 -0
- package/dist/src/composables/useFormValidation.d.ts.map +1 -0
- package/dist/src/composables/useModal.d.ts +36 -0
- package/dist/src/composables/useModal.d.ts.map +1 -0
- package/dist/src/dev.d.ts +2 -0
- package/dist/src/dev.d.ts.map +1 -0
- package/dist/src/index.d.ts +11 -0
- package/dist/src/index.d.ts.map +1 -0
- package/dist/src/plugin.d.ts +21 -0
- package/dist/src/plugin.d.ts.map +1 -0
- package/dist/src/types/avatars.d.ts +10 -0
- package/dist/src/types/avatars.d.ts.map +1 -0
- package/dist/src/types/badges.d.ts +10 -0
- package/dist/src/types/badges.d.ts.map +1 -0
- package/dist/src/types/calendars.d.ts +28 -0
- package/dist/src/types/calendars.d.ts.map +1 -0
- package/dist/src/types/form.d.ts +86 -0
- package/dist/src/types/form.d.ts.map +1 -0
- package/dist/src/types/forms.d.ts +17 -0
- package/dist/src/types/forms.d.ts.map +1 -0
- package/dist/src/types/index.d.ts +13 -0
- package/dist/src/types/index.d.ts.map +1 -0
- package/dist/src/types/inputs.d.ts +22 -0
- package/dist/src/types/inputs.d.ts.map +1 -0
- package/dist/src/types/layouts.d.ts +41 -0
- package/dist/src/types/layouts.d.ts.map +1 -0
- package/dist/src/types/loading.d.ts +11 -0
- package/dist/src/types/loading.d.ts.map +1 -0
- package/dist/src/types/navigation.d.ts +18 -0
- package/dist/src/types/navigation.d.ts.map +1 -0
- package/dist/src/types/tables.d.ts +24 -0
- package/dist/src/types/tables.d.ts.map +1 -0
- package/dist/src/types/transitions.d.ts +16 -0
- package/dist/src/types/transitions.d.ts.map +1 -0
- package/dist/src/types/ui.d.ts +353 -0
- package/dist/src/types/ui.d.ts.map +1 -0
- package/dist/src/utils/calendar.d.ts +50 -0
- package/dist/src/utils/calendar.d.ts.map +1 -0
- package/dist/src/utils/component-registry.d.ts +48 -0
- package/dist/src/utils/component-registry.d.ts.map +1 -0
- package/dist/src/utils/id.d.ts +13 -0
- package/dist/src/utils/id.d.ts.map +1 -0
- package/dist/src/utils/index.d.ts +4 -0
- package/dist/src/utils/index.d.ts.map +1 -0
- package/dist/style.css +1 -0
- package/package.json +143 -0
- package/tailwind.config.js +110 -0
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
import { Row } from '@tanstack/vue-table';
|
|
3
|
+
|
|
4
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
5
|
+
data: {
|
|
6
|
+
type: PropType<any[]>;
|
|
7
|
+
required: true;
|
|
8
|
+
};
|
|
9
|
+
columns: {
|
|
10
|
+
type: PropType<any[]>;
|
|
11
|
+
required: true;
|
|
12
|
+
};
|
|
13
|
+
truncate: {
|
|
14
|
+
type: PropType<{
|
|
15
|
+
column: string;
|
|
16
|
+
length: number;
|
|
17
|
+
link?: string | undefined;
|
|
18
|
+
}[]>;
|
|
19
|
+
default: () => never[];
|
|
20
|
+
};
|
|
21
|
+
isLoading: {
|
|
22
|
+
type: BooleanConstructor;
|
|
23
|
+
default: boolean;
|
|
24
|
+
};
|
|
25
|
+
mobileConfig: {
|
|
26
|
+
type: PropType<{
|
|
27
|
+
titleColumn?: string | undefined;
|
|
28
|
+
primaryColumns?: string[] | undefined;
|
|
29
|
+
secondaryColumns?: string[] | undefined;
|
|
30
|
+
expandableColumns?: string[] | undefined;
|
|
31
|
+
maxPrimaryColumns?: number | undefined;
|
|
32
|
+
}>;
|
|
33
|
+
default: () => {};
|
|
34
|
+
};
|
|
35
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
36
|
+
data: {
|
|
37
|
+
type: PropType<any[]>;
|
|
38
|
+
required: true;
|
|
39
|
+
};
|
|
40
|
+
columns: {
|
|
41
|
+
type: PropType<any[]>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
truncate: {
|
|
45
|
+
type: PropType<{
|
|
46
|
+
column: string;
|
|
47
|
+
length: number;
|
|
48
|
+
link?: string | undefined;
|
|
49
|
+
}[]>;
|
|
50
|
+
default: () => never[];
|
|
51
|
+
};
|
|
52
|
+
isLoading: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
default: boolean;
|
|
55
|
+
};
|
|
56
|
+
mobileConfig: {
|
|
57
|
+
type: PropType<{
|
|
58
|
+
titleColumn?: string | undefined;
|
|
59
|
+
primaryColumns?: string[] | undefined;
|
|
60
|
+
secondaryColumns?: string[] | undefined;
|
|
61
|
+
expandableColumns?: string[] | undefined;
|
|
62
|
+
maxPrimaryColumns?: number | undefined;
|
|
63
|
+
}>;
|
|
64
|
+
default: () => {};
|
|
65
|
+
};
|
|
66
|
+
}>> & Readonly<{}>, {
|
|
67
|
+
truncate: {
|
|
68
|
+
column: string;
|
|
69
|
+
length: number;
|
|
70
|
+
link?: string | undefined;
|
|
71
|
+
}[];
|
|
72
|
+
isLoading: boolean;
|
|
73
|
+
mobileConfig: {
|
|
74
|
+
titleColumn?: string | undefined;
|
|
75
|
+
primaryColumns?: string[] | undefined;
|
|
76
|
+
secondaryColumns?: string[] | undefined;
|
|
77
|
+
expandableColumns?: string[] | undefined;
|
|
78
|
+
maxPrimaryColumns?: number | undefined;
|
|
79
|
+
};
|
|
80
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
81
|
+
title?(_: {}): any;
|
|
82
|
+
description?(_: {}): any;
|
|
83
|
+
right?(_: {}): any;
|
|
84
|
+
"row:actions"?(_: {
|
|
85
|
+
row: Row<any>;
|
|
86
|
+
}): any;
|
|
87
|
+
}>;
|
|
88
|
+
export default _default;
|
|
89
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
90
|
+
new (): {
|
|
91
|
+
$slots: S;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
//# sourceMappingURL=UiTable.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiTable.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UiTable.vue"],"names":[],"mappings":"AAuGA;AAGA,OAAO,KAAK,EAAE,QAAQ,EAAE,MAAM,KAAK,CAAC;AAGpC,OAAO,KAAK,EAAyB,GAAG,EAAsB,MAAM,qBAAqB,CAAC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAm2B1F,wBAAwG;AACxG,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
import { TextInputType } from '../types/ui';
|
|
2
|
+
|
|
3
|
+
interface TextInputProps extends TextInputType {
|
|
4
|
+
boxShadow?: boolean;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TextInputProps>, {
|
|
7
|
+
type: string;
|
|
8
|
+
value: string;
|
|
9
|
+
label: string;
|
|
10
|
+
successMessage: string;
|
|
11
|
+
placeholder: string;
|
|
12
|
+
rules: () => {};
|
|
13
|
+
validateOnMount: boolean;
|
|
14
|
+
disabled: boolean;
|
|
15
|
+
disabledMessage: string;
|
|
16
|
+
inputClass: string;
|
|
17
|
+
inputStyle: string;
|
|
18
|
+
spellcheck: boolean;
|
|
19
|
+
capitalize: boolean;
|
|
20
|
+
lazy: boolean;
|
|
21
|
+
transformFunction: (v: string) => string;
|
|
22
|
+
tertiaryLabel: string;
|
|
23
|
+
colorfulValidation: boolean;
|
|
24
|
+
showValidCheck: boolean;
|
|
25
|
+
showErrors: boolean;
|
|
26
|
+
boxShadow: boolean;
|
|
27
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
error: (error: string | null) => void;
|
|
29
|
+
blur: (event: Event) => void;
|
|
30
|
+
focus: (event: Event) => void;
|
|
31
|
+
"update:value": (value: string) => void;
|
|
32
|
+
"update:validity": (isValid: boolean) => void;
|
|
33
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TextInputProps>, {
|
|
34
|
+
type: string;
|
|
35
|
+
value: string;
|
|
36
|
+
label: string;
|
|
37
|
+
successMessage: string;
|
|
38
|
+
placeholder: string;
|
|
39
|
+
rules: () => {};
|
|
40
|
+
validateOnMount: boolean;
|
|
41
|
+
disabled: boolean;
|
|
42
|
+
disabledMessage: string;
|
|
43
|
+
inputClass: string;
|
|
44
|
+
inputStyle: string;
|
|
45
|
+
spellcheck: boolean;
|
|
46
|
+
capitalize: boolean;
|
|
47
|
+
lazy: boolean;
|
|
48
|
+
transformFunction: (v: string) => string;
|
|
49
|
+
tertiaryLabel: string;
|
|
50
|
+
colorfulValidation: boolean;
|
|
51
|
+
showValidCheck: boolean;
|
|
52
|
+
showErrors: boolean;
|
|
53
|
+
boxShadow: boolean;
|
|
54
|
+
}>>> & Readonly<{
|
|
55
|
+
onError?: ((error: string | null) => any) | undefined;
|
|
56
|
+
onBlur?: ((event: Event) => any) | undefined;
|
|
57
|
+
onFocus?: ((event: Event) => any) | undefined;
|
|
58
|
+
"onUpdate:value"?: ((value: string) => any) | undefined;
|
|
59
|
+
"onUpdate:validity"?: ((isValid: boolean) => any) | undefined;
|
|
60
|
+
}>, {
|
|
61
|
+
lazy: boolean;
|
|
62
|
+
type: string;
|
|
63
|
+
label: string;
|
|
64
|
+
disabled: boolean;
|
|
65
|
+
placeholder: string;
|
|
66
|
+
tertiaryLabel: string;
|
|
67
|
+
successMessage: string;
|
|
68
|
+
showErrors: boolean;
|
|
69
|
+
showValidCheck: boolean;
|
|
70
|
+
colorfulValidation: boolean;
|
|
71
|
+
disabledMessage: string;
|
|
72
|
+
boxShadow: boolean;
|
|
73
|
+
value: string;
|
|
74
|
+
rules: any;
|
|
75
|
+
validateOnMount: boolean;
|
|
76
|
+
inputClass: string | string[];
|
|
77
|
+
inputStyle: string;
|
|
78
|
+
spellcheck: boolean;
|
|
79
|
+
capitalize: boolean;
|
|
80
|
+
transformFunction: (value: string) => string;
|
|
81
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
82
|
+
prefix?(_: {}): any;
|
|
83
|
+
"input-right"?(_: {}): any;
|
|
84
|
+
}>;
|
|
85
|
+
export default _default;
|
|
86
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
87
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
88
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
89
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
90
|
+
} : {
|
|
91
|
+
type: import('vue').PropType<T[K]>;
|
|
92
|
+
required: true;
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
type __VLS_WithDefaults<P, D> = {
|
|
96
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
97
|
+
default: D[K];
|
|
98
|
+
}> : P[K];
|
|
99
|
+
};
|
|
100
|
+
type __VLS_Prettify<T> = {
|
|
101
|
+
[K in keyof T]: T[K];
|
|
102
|
+
} & {};
|
|
103
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
104
|
+
new (): {
|
|
105
|
+
$slots: S;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
//# sourceMappingURL=UiTextInput.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiTextInput.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UiTextInput.vue"],"names":[],"mappings":"AAiCA;AAMA,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,aAAa,CAAC;AAQjD,UAAU,cAAe,SAAQ,aAAa;IAC5C,SAAS,CAAC,EAAE,OAAO,CAAA;CACpB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuQD,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
interface TransitionProps {
|
|
2
|
+
show: boolean;
|
|
3
|
+
type?: 'fade' | 'scale' | 'slide-up' | 'slide-down';
|
|
4
|
+
duration?: 'fast' | 'normal' | 'slow';
|
|
5
|
+
}
|
|
6
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TransitionProps>, {
|
|
7
|
+
type: string;
|
|
8
|
+
duration: string;
|
|
9
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<TransitionProps>, {
|
|
10
|
+
type: string;
|
|
11
|
+
duration: string;
|
|
12
|
+
}>>> & Readonly<{}>, {
|
|
13
|
+
type: "fade" | "scale" | "slide-up" | "slide-down";
|
|
14
|
+
duration: "fast" | "normal" | "slow";
|
|
15
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
16
|
+
default?(_: {}): any;
|
|
17
|
+
}>;
|
|
18
|
+
export default _default;
|
|
19
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
20
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
21
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
22
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
23
|
+
} : {
|
|
24
|
+
type: import('vue').PropType<T[K]>;
|
|
25
|
+
required: true;
|
|
26
|
+
};
|
|
27
|
+
};
|
|
28
|
+
type __VLS_WithDefaults<P, D> = {
|
|
29
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
30
|
+
default: D[K];
|
|
31
|
+
}> : P[K];
|
|
32
|
+
};
|
|
33
|
+
type __VLS_Prettify<T> = {
|
|
34
|
+
[K in keyof T]: T[K];
|
|
35
|
+
} & {};
|
|
36
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
37
|
+
new (): {
|
|
38
|
+
$slots: S;
|
|
39
|
+
};
|
|
40
|
+
};
|
|
41
|
+
//# sourceMappingURL=UiTransition.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UiTransition.vue.d.ts","sourceRoot":"","sources":["../../../src/components/UiTransition.vue"],"names":[],"mappings":"AAYA;AAIA,UAAU,eAAe;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,IAAI,CAAC,EAAE,MAAM,GAAG,OAAO,GAAG,UAAU,GAAG,YAAY,CAAC;IACpD,QAAQ,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,MAAM,CAAC;CACvC;;;;;;;;;;;;;AAqID,wBAAwG;AACxG,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC;AACxD,KAAK,uBAAuB,CAAC,CAAC,EAAE,CAAC,IAAI,CAAC,GAAG;IAAE,QAAO;QAClD,MAAM,EAAE,CAAC,CAAC;KACT,CAAA;CAAE,CAAC"}
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
import { CalendarDay, ListEvent } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
days: CalendarDay[];
|
|
5
|
+
events: ListEvent[];
|
|
6
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
showAll: (...args: any[]) => void;
|
|
8
|
+
selectDay: (...args: any[]) => void;
|
|
9
|
+
doubleSelectDay: (...args: any[]) => void;
|
|
10
|
+
newEvent: (...args: any[]) => void;
|
|
11
|
+
monthChange: (...args: any[]) => void;
|
|
12
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
13
|
+
days: CalendarDay[];
|
|
14
|
+
events: ListEvent[];
|
|
15
|
+
}>>> & Readonly<{
|
|
16
|
+
onShowAll?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
onSelectDay?: ((...args: any[]) => any) | undefined;
|
|
18
|
+
onDoubleSelectDay?: ((...args: any[]) => any) | undefined;
|
|
19
|
+
onNewEvent?: ((...args: any[]) => any) | undefined;
|
|
20
|
+
onMonthChange?: ((...args: any[]) => any) | undefined;
|
|
21
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
22
|
+
export default _default;
|
|
23
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
24
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
25
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
26
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
27
|
+
} : {
|
|
28
|
+
type: import('vue').PropType<T[K]>;
|
|
29
|
+
required: true;
|
|
30
|
+
};
|
|
31
|
+
};
|
|
32
|
+
//# sourceMappingURL=CalendarDashboard.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CalendarDashboard.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/CalendarDashboard.vue"],"names":[],"mappings":"AAyBA;AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;;UAsOvD,WAAW,EAAE;YACX,SAAS,EAAE;;;;;;;;UADb,WAAW,EAAE;YACX,SAAS,EAAE;;;;;;;;AAPrB,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
import { CalendarDay, Month } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
view: 'day' | 'week' | 'month' | 'year';
|
|
5
|
+
selectedRange: CalendarDay[] | Month[] | null;
|
|
6
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
changeRange: (...args: any[]) => void;
|
|
8
|
+
changeView: (...args: any[]) => void;
|
|
9
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
10
|
+
view: 'day' | 'week' | 'month' | 'year';
|
|
11
|
+
selectedRange: CalendarDay[] | Month[] | null;
|
|
12
|
+
}>>> & Readonly<{
|
|
13
|
+
onChangeRange?: ((...args: any[]) => any) | undefined;
|
|
14
|
+
onChangeView?: ((...args: any[]) => any) | undefined;
|
|
15
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
18
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
19
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
20
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
21
|
+
} : {
|
|
22
|
+
type: import('vue').PropType<T[K]>;
|
|
23
|
+
required: true;
|
|
24
|
+
};
|
|
25
|
+
};
|
|
26
|
+
//# sourceMappingURL=CalendarHeader.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CalendarHeader.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/CalendarHeader.vue"],"names":[],"mappings":"AAiBA;AAKA,OAAO,KAAK,EAAE,WAAW,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;;UA+JR,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM;mBAAiB,WAAW,EAAE,GAAG,KAAK,EAAE,GAAG,IAAI;;;;;UAAhF,KAAK,GAAG,MAAM,GAAG,OAAO,GAAG,MAAM;mBAAiB,WAAW,EAAE,GAAG,KAAK,EAAE,GAAG,IAAI;;;;;AALnI,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { CalendarDay } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
days: Array<CalendarDay>;
|
|
5
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
selectDay: (...args: any[]) => void;
|
|
7
|
+
"select:event": (...args: any[]) => void;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
days: Array<CalendarDay>;
|
|
10
|
+
}>>> & Readonly<{
|
|
11
|
+
onSelectDay?: ((...args: any[]) => any) | undefined;
|
|
12
|
+
"onSelect:event"?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=DayCalendar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DayCalendar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/DayCalendar.vue"],"names":[],"mappings":"AAoDA;AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;;UAwaD,MAAM,WAAW,CAAC;;;;;UAAlB,MAAM,WAAW,CAAC;;;;;AALrE,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { ListEvent } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
4
|
+
event: {
|
|
5
|
+
type: () => ListEvent;
|
|
6
|
+
required: true;
|
|
7
|
+
};
|
|
8
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
"navigate-to-event": (...args: any[]) => void;
|
|
10
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
11
|
+
event: {
|
|
12
|
+
type: () => ListEvent;
|
|
13
|
+
required: true;
|
|
14
|
+
};
|
|
15
|
+
}>> & Readonly<{
|
|
16
|
+
"onNavigate-to-event"?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
18
|
+
export default _default;
|
|
19
|
+
//# sourceMappingURL=EventCard.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventCard.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/EventCard.vue"],"names":[],"mappings":"AAyCA;AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;;;oBA+WxB,SAAS;;;;;;;oBAAT,SAAS;;;;;;AAPnC,wBAYG"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { ListEvent } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
events: ListEvent[];
|
|
5
|
+
showAllButton?: boolean | undefined;
|
|
6
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
7
|
+
"show:all": (...args: any[]) => void;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
events: ListEvent[];
|
|
10
|
+
showAllButton?: boolean | undefined;
|
|
11
|
+
}>>> & Readonly<{
|
|
12
|
+
"onShow:all"?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=EventsList.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"EventsList.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/EventsList.vue"],"names":[],"mappings":"AAyCA;AAIA,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,kBAAkB,CAAC;;YAqVxC,SAAS,EAAE;;;;;YAAX,SAAS,EAAE;;;;;AANrB,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
import { CalendarDay } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
days: Array<CalendarDay>;
|
|
5
|
+
events?: {
|
|
6
|
+
id: string | number;
|
|
7
|
+
datetime: string;
|
|
8
|
+
start_time?: string | undefined;
|
|
9
|
+
}[] | undefined;
|
|
10
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
11
|
+
selectDay: (...args: any[]) => void;
|
|
12
|
+
"select:event": (...args: any[]) => void;
|
|
13
|
+
doubleSelectDay: (...args: any[]) => void;
|
|
14
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
15
|
+
days: Array<CalendarDay>;
|
|
16
|
+
events?: {
|
|
17
|
+
id: string | number;
|
|
18
|
+
datetime: string;
|
|
19
|
+
start_time?: string | undefined;
|
|
20
|
+
}[] | undefined;
|
|
21
|
+
}>>> & Readonly<{
|
|
22
|
+
onSelectDay?: ((...args: any[]) => any) | undefined;
|
|
23
|
+
"onSelect:event"?: ((...args: any[]) => any) | undefined;
|
|
24
|
+
onDoubleSelectDay?: ((...args: any[]) => any) | undefined;
|
|
25
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
26
|
+
export default _default;
|
|
27
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
28
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
29
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
30
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
31
|
+
} : {
|
|
32
|
+
type: import('vue').PropType<T[K]>;
|
|
33
|
+
required: true;
|
|
34
|
+
};
|
|
35
|
+
};
|
|
36
|
+
//# sourceMappingURL=MonthCalendar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MonthCalendar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/MonthCalendar.vue"],"names":[],"mappings":"AAiDA;AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;;UAwS5C,MAAM,WAAW,CAAC;;YACH,MAAM,GAAG,MAAM;kBAAY,MAAM;;;;;;;;UADhD,MAAM,WAAW,CAAC;;YACH,MAAM,GAAG,MAAM;kBAAY,MAAM;;;;;;;;AAPxD,wBAUG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { CalendarDay } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
days: Array<CalendarDay>;
|
|
5
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
6
|
+
selectDay: (...args: any[]) => void;
|
|
7
|
+
"select:event": (...args: any[]) => void;
|
|
8
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
+
days: Array<CalendarDay>;
|
|
10
|
+
}>>> & Readonly<{
|
|
11
|
+
onSelectDay?: ((...args: any[]) => any) | undefined;
|
|
12
|
+
"onSelect:event"?: ((...args: any[]) => any) | undefined;
|
|
13
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
14
|
+
export default _default;
|
|
15
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
16
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
17
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
18
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
19
|
+
} : {
|
|
20
|
+
type: import('vue').PropType<T[K]>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
};
|
|
24
|
+
//# sourceMappingURL=WeekCalendar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"WeekCalendar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/WeekCalendar.vue"],"names":[],"mappings":"AAkEA;AAGA,OAAO,KAAK,EAAE,WAAW,EAAE,MAAM,kBAAkB,CAAC;;UAuhBD,MAAM,WAAW,CAAC;;;;;UAAlB,MAAM,WAAW,CAAC;;;;;AALrE,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Month } from '../../utils/calendar';
|
|
2
|
+
|
|
3
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
4
|
+
months: Array<Month>;
|
|
5
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
6
|
+
months: Array<Month>;
|
|
7
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
export default _default;
|
|
9
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
10
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
11
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
12
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
13
|
+
} : {
|
|
14
|
+
type: import('vue').PropType<T[K]>;
|
|
15
|
+
required: true;
|
|
16
|
+
};
|
|
17
|
+
};
|
|
18
|
+
//# sourceMappingURL=YearCalendar.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"YearCalendar.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/YearCalendar.vue"],"names":[],"mappings":"AAYA;AAEA,OAAO,KAAK,EAAE,KAAK,EAAE,MAAM,kBAAkB,CAAC;;YA+HO,MAAM,KAAK,CAAC;;YAAZ,MAAM,KAAK,CAAC;;AALjE,wBAMG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export { default as CalendarDashboard } from './CalendarDashboard';
|
|
2
|
+
export { default as CalendarHeader } from './CalendarHeader';
|
|
3
|
+
export { default as DayCalendar } from './DayCalendar';
|
|
4
|
+
export { default as EventCard } from './EventCard';
|
|
5
|
+
export { default as EventsList } from './EventsList';
|
|
6
|
+
export { default as MonthCalendar } from './MonthCalendar';
|
|
7
|
+
export { default as WeekCalendar } from './WeekCalendar';
|
|
8
|
+
export { default as YearCalendar } from './YearCalendar';
|
|
9
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/components/calendars/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,OAAO,IAAI,iBAAiB,EAAE,MAAM,yBAAyB,CAAC;AACvE,OAAO,EAAE,OAAO,IAAI,cAAc,EAAE,MAAM,sBAAsB,CAAC;AACjE,OAAO,EAAE,OAAO,IAAI,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAC3D,OAAO,EAAE,OAAO,IAAI,SAAS,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,IAAI,UAAU,EAAE,MAAM,kBAAkB,CAAC;AACzD,OAAO,EAAE,OAAO,IAAI,aAAa,EAAE,MAAM,qBAAqB,CAAC;AAC/D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC;AAC7D,OAAO,EAAE,OAAO,IAAI,YAAY,EAAE,MAAM,oBAAoB,CAAC"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
import { DynamicFormSchema, DynamicFormField, ButtonVariant } from '../../types/form';
|
|
2
|
+
|
|
3
|
+
interface Props {
|
|
4
|
+
schema: DynamicFormSchema;
|
|
5
|
+
modelValue?: Record<string, any>;
|
|
6
|
+
loading?: boolean;
|
|
7
|
+
showActions?: boolean;
|
|
8
|
+
showCancelButton?: boolean;
|
|
9
|
+
submitButtonText?: string;
|
|
10
|
+
cancelButtonText?: string;
|
|
11
|
+
submitButtonVariant?: ButtonVariant;
|
|
12
|
+
actionsAlignment?: 'left' | 'center' | 'right';
|
|
13
|
+
formError?: string;
|
|
14
|
+
}
|
|
15
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
16
|
+
showActions: boolean;
|
|
17
|
+
showCancelButton: boolean;
|
|
18
|
+
submitButtonVariant: string;
|
|
19
|
+
actionsAlignment: string;
|
|
20
|
+
}>>, {
|
|
21
|
+
validate: () => Promise<boolean>;
|
|
22
|
+
reset: () => void;
|
|
23
|
+
setFieldValue: (fieldName: string, value: any) => void;
|
|
24
|
+
getFieldValue: (fieldName: string) => any;
|
|
25
|
+
formData: Record<string, any>;
|
|
26
|
+
formRef: import('vue').Ref<HTMLFormElement | undefined, HTMLFormElement | undefined>;
|
|
27
|
+
}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
28
|
+
"update:modelValue": (value: Record<string, any>) => void;
|
|
29
|
+
submit: (data: Record<string, any>, ctx: {
|
|
30
|
+
setErrors: (errors: Record<string, string>) => void;
|
|
31
|
+
}) => void;
|
|
32
|
+
cancel: () => void;
|
|
33
|
+
"field-change": (field: DynamicFormField, value: any, formData: Record<string, any>) => void;
|
|
34
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<Props>, {
|
|
35
|
+
showActions: boolean;
|
|
36
|
+
showCancelButton: boolean;
|
|
37
|
+
submitButtonVariant: string;
|
|
38
|
+
actionsAlignment: string;
|
|
39
|
+
}>>> & Readonly<{
|
|
40
|
+
onCancel?: (() => any) | undefined;
|
|
41
|
+
onSubmit?: ((data: Record<string, any>, ctx: {
|
|
42
|
+
setErrors: (errors: Record<string, string>) => void;
|
|
43
|
+
}) => any) | undefined;
|
|
44
|
+
"onUpdate:modelValue"?: ((value: Record<string, any>) => any) | undefined;
|
|
45
|
+
"onField-change"?: ((field: DynamicFormField, value: any, formData: Record<string, any>) => any) | undefined;
|
|
46
|
+
}>, {
|
|
47
|
+
showActions: boolean;
|
|
48
|
+
showCancelButton: boolean;
|
|
49
|
+
submitButtonVariant: ButtonVariant;
|
|
50
|
+
actionsAlignment: "center" | "right" | "left";
|
|
51
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
52
|
+
export default _default;
|
|
53
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
54
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
55
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
56
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
57
|
+
} : {
|
|
58
|
+
type: import('vue').PropType<T[K]>;
|
|
59
|
+
required: true;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
type __VLS_WithDefaults<P, D> = {
|
|
63
|
+
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
64
|
+
default: D[K];
|
|
65
|
+
}> : P[K];
|
|
66
|
+
};
|
|
67
|
+
type __VLS_Prettify<T> = {
|
|
68
|
+
[K in keyof T]: T[K];
|
|
69
|
+
} & {};
|
|
70
|
+
//# sourceMappingURL=DynamicForm.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicForm.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/DynamicForm.vue"],"names":[],"mappings":"AA+FA;AAOA,OAAO,KAAK,EACV,iBAAiB,EAEjB,gBAAgB,EAChB,aAAa,EACd,MAAM,kBAAkB,CAAA;AAIzB,UAAU,KAAK;IACb,MAAM,EAAE,iBAAiB,CAAA;IACzB,UAAU,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;IAChC,OAAO,CAAC,EAAE,OAAO,CAAA;IACjB,WAAW,CAAC,EAAE,OAAO,CAAA;IACrB,gBAAgB,CAAC,EAAE,OAAO,CAAA;IAC1B,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,gBAAgB,CAAC,EAAE,MAAM,CAAA;IACzB,mBAAmB,CAAC,EAAE,aAAa,CAAA;IACnC,gBAAgB,CAAC,EAAE,MAAM,GAAG,QAAQ,GAAG,OAAO,CAAA;IAC9C,SAAS,CAAC,EAAE,MAAM,CAAA;CACnB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAihBD,wBAQG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC;AAC9M,KAAK,kBAAkB,CAAC,CAAC,EAAE,CAAC,IAAI;KAE1B,CAAC,IAAI,MAAM,IAAI,CAAC,CAAC,EAAE,MAAM,CAAC,CAAC,GAAG,CAAC,SAAS,MAAM,CAAC,GAAG,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,GAAG;QACxE,OAAO,EAAE,CAAC,CAAC,CAAC,CAAC,CAAA;KACb,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CACT,CAAC;AACN,KAAK,cAAc,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC;CAAG,GAAG,EAAE,CAAC"}
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { DynamicFormField } from '../../types/form';
|
|
2
|
+
|
|
3
|
+
interface Props {
|
|
4
|
+
field: DynamicFormField;
|
|
5
|
+
modelValue?: any;
|
|
6
|
+
formData?: Record<string, any>;
|
|
7
|
+
}
|
|
8
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {
|
|
9
|
+
"update:modelValue": (value: any) => void;
|
|
10
|
+
"field-change": (field: DynamicFormField, value: any) => void;
|
|
11
|
+
}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<Props>>> & Readonly<{
|
|
12
|
+
"onUpdate:modelValue"?: ((value: any) => any) | undefined;
|
|
13
|
+
"onField-change"?: ((field: DynamicFormField, value: any) => any) | undefined;
|
|
14
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
15
|
+
export default _default;
|
|
16
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
17
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
18
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
19
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
20
|
+
} : {
|
|
21
|
+
type: import('vue').PropType<T[K]>;
|
|
22
|
+
required: true;
|
|
23
|
+
};
|
|
24
|
+
};
|
|
25
|
+
//# sourceMappingURL=DynamicFormField.vue.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"DynamicFormField.vue.d.ts","sourceRoot":"","sources":["../../../../src/components/forms/DynamicFormField.vue"],"names":[],"mappings":"AA4BA;AAKA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,kBAAkB,CAAA;AAIxD,UAAU,KAAK;IACb,KAAK,EAAE,gBAAgB,CAAA;IACvB,UAAU,CAAC,EAAE,GAAG,CAAA;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAA;CAC/B;;;;;;;;AAwSD,wBAOG;AACH,KAAK,sBAAsB,CAAC,CAAC,IAAI,CAAC,SAAS,SAAS,GAAG,KAAK,GAAG,CAAC,CAAC;AACjE,KAAK,6BAA6B,CAAC,CAAC,IAAI;KAAG,CAAC,IAAI,MAAM,CAAC,CAAC,CAAC,GAAG,EAAE,SAAS,IAAI,CAAC,CAAC,EAAE,CAAC,CAAC,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,sBAAsB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAA;KAAE,GAAG;QAAE,IAAI,EAAE,OAAO,KAAK,EAAE,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAAC,QAAQ,EAAE,IAAI,CAAA;KAAE;CAAE,CAAC"}
|