@stachelock/ui 0.6.2 → 0.6.4
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/AvatarIcon-kcEI0AWe.js +4 -0
- package/dist/AvatarImage-YFR2etb8.js +4 -0
- package/dist/AvatarInitials-B7wCnBX9.js +4 -0
- package/dist/ImageDropzoneInput.vue_vue_type_script_setup_true_lang-7JWDfxD2.js +393 -0
- package/dist/index.js +1988 -1975
- package/dist/inputs/AddressInput.d.ts +1 -0
- package/dist/inputs/AddressInput.js +639 -0
- package/dist/inputs/ImageDropzoneInput.d.ts +1 -0
- package/dist/inputs/ImageDropzoneInput.js +4 -0
- package/dist/src/components/avatars/AvatarIcon.d.ts +18 -0
- package/dist/src/components/avatars/AvatarImage.d.ts +25 -0
- package/dist/src/components/avatars/AvatarInitials.d.ts +15 -0
- package/dist/src/components/avatars/AvatarWithText.d.ts +129 -0
- package/dist/src/components/avatars/index.d.ts +4 -0
- package/dist/src/components/formatters/DateFormatter.d.ts +119 -0
- package/dist/src/components/formatters/DateRangeFormatter.d.ts +63 -0
- package/dist/src/components/formatters/index.d.ts +2 -0
- package/dist/src/components/icons/brands/DiscordBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/FacebookBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/GitHubBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/InstagramBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/LinkedInBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/PinterestBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/SnapchatBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/ThreadsBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/TikTokBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/TwitchBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/XBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/YouTubeBrandIcon.d.ts +2 -0
- package/dist/src/components/icons/brands/index.d.ts +12 -0
- package/dist/src/components/icons/index.d.ts +1 -0
- package/dist/src/components/index.d.ts +3 -0
- package/dist/src/components/inputs/DatepickerInput.d.ts +5 -5
- package/dist/src/components/inputs/ImageDropzoneInput.d.ts +326 -0
- package/dist/src/components/inputs/index.d.ts +1 -0
- package/dist/src/components/wrappers/BackgroundGradientWrapper.d.ts +1 -1
- package/dist/style.css +1 -1
- package/dist/ui.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
export type RoundedType = 'square' | 'rounded' | 'rounded-md' | 'rounded-lg' | 'rounded-full';
|
|
2
|
+
export interface ImageData {
|
|
3
|
+
url?: string;
|
|
4
|
+
public_id?: string;
|
|
5
|
+
}
|
|
6
|
+
type __VLS_Props = {
|
|
7
|
+
/** Size of the avatar (Tailwind scale) */
|
|
8
|
+
size: number | string;
|
|
9
|
+
/** Image object with url and optional public_id */
|
|
10
|
+
image: ImageData | null;
|
|
11
|
+
/** Alt text for the image */
|
|
12
|
+
altText?: string;
|
|
13
|
+
/** Corner rounding style */
|
|
14
|
+
rounded: RoundedType;
|
|
15
|
+
/** Skeleton type for loading */
|
|
16
|
+
skeleton?: 'user' | 'photo';
|
|
17
|
+
/** Ring/border classes */
|
|
18
|
+
ring?: string;
|
|
19
|
+
};
|
|
20
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {} & {
|
|
21
|
+
error: (error: unknown) => any;
|
|
22
|
+
}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
23
|
+
onError?: ((error: unknown) => any) | undefined;
|
|
24
|
+
}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLDivElement>;
|
|
25
|
+
export default _default;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
export type RoundedType = 'square' | 'rounded' | 'rounded-md' | 'rounded-lg' | 'rounded-full';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
/** Size of the avatar (Tailwind scale) */
|
|
4
|
+
size: number;
|
|
5
|
+
/** Background color class */
|
|
6
|
+
color: string;
|
|
7
|
+
/** Initials to display */
|
|
8
|
+
initials: string;
|
|
9
|
+
/** Corner rounding style */
|
|
10
|
+
rounded?: RoundedType;
|
|
11
|
+
/** Text color class */
|
|
12
|
+
textColor?: string;
|
|
13
|
+
};
|
|
14
|
+
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
|
|
15
|
+
export default _default;
|
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
import { PropType, FunctionalComponent, HTMLAttributes, VNodeProps } from 'vue';
|
|
2
|
+
export interface ImageData {
|
|
3
|
+
url?: string;
|
|
4
|
+
public_id?: string;
|
|
5
|
+
}
|
|
6
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
7
|
+
/** Which avatar component to use */
|
|
8
|
+
componentName: {
|
|
9
|
+
type: PropType<"AvatarIcon" | "AvatarImage" | "AvatarInitials">;
|
|
10
|
+
default: string;
|
|
11
|
+
};
|
|
12
|
+
/** Primary text */
|
|
13
|
+
title: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
required: false;
|
|
16
|
+
};
|
|
17
|
+
/** Secondary text */
|
|
18
|
+
subtitle: {
|
|
19
|
+
type: StringConstructor;
|
|
20
|
+
required: false;
|
|
21
|
+
};
|
|
22
|
+
/** Avatar size (Tailwind scale) */
|
|
23
|
+
size: {
|
|
24
|
+
type: NumberConstructor;
|
|
25
|
+
default: number;
|
|
26
|
+
};
|
|
27
|
+
/** Background color for initials/icon */
|
|
28
|
+
color: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
default: string;
|
|
31
|
+
};
|
|
32
|
+
/** Initials for AvatarInitials */
|
|
33
|
+
initials: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
default: string;
|
|
36
|
+
};
|
|
37
|
+
/** Image data for AvatarImage */
|
|
38
|
+
image: {
|
|
39
|
+
type: PropType<ImageData | null>;
|
|
40
|
+
default: null;
|
|
41
|
+
};
|
|
42
|
+
/** Alt text for AvatarImage */
|
|
43
|
+
altText: {
|
|
44
|
+
type: StringConstructor;
|
|
45
|
+
default: string;
|
|
46
|
+
};
|
|
47
|
+
/** Icon for AvatarIcon */
|
|
48
|
+
iconComponent: {
|
|
49
|
+
type: PropType<FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>>;
|
|
50
|
+
default: null;
|
|
51
|
+
};
|
|
52
|
+
/** Corner rounding style */
|
|
53
|
+
rounded: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
default: string;
|
|
56
|
+
};
|
|
57
|
+
/** Skeleton type for loading */
|
|
58
|
+
skeleton: {
|
|
59
|
+
type: PropType<"user" | "photo">;
|
|
60
|
+
default: string;
|
|
61
|
+
};
|
|
62
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
63
|
+
/** Which avatar component to use */
|
|
64
|
+
componentName: {
|
|
65
|
+
type: PropType<"AvatarIcon" | "AvatarImage" | "AvatarInitials">;
|
|
66
|
+
default: string;
|
|
67
|
+
};
|
|
68
|
+
/** Primary text */
|
|
69
|
+
title: {
|
|
70
|
+
type: StringConstructor;
|
|
71
|
+
required: false;
|
|
72
|
+
};
|
|
73
|
+
/** Secondary text */
|
|
74
|
+
subtitle: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
required: false;
|
|
77
|
+
};
|
|
78
|
+
/** Avatar size (Tailwind scale) */
|
|
79
|
+
size: {
|
|
80
|
+
type: NumberConstructor;
|
|
81
|
+
default: number;
|
|
82
|
+
};
|
|
83
|
+
/** Background color for initials/icon */
|
|
84
|
+
color: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
default: string;
|
|
87
|
+
};
|
|
88
|
+
/** Initials for AvatarInitials */
|
|
89
|
+
initials: {
|
|
90
|
+
type: StringConstructor;
|
|
91
|
+
default: string;
|
|
92
|
+
};
|
|
93
|
+
/** Image data for AvatarImage */
|
|
94
|
+
image: {
|
|
95
|
+
type: PropType<ImageData | null>;
|
|
96
|
+
default: null;
|
|
97
|
+
};
|
|
98
|
+
/** Alt text for AvatarImage */
|
|
99
|
+
altText: {
|
|
100
|
+
type: StringConstructor;
|
|
101
|
+
default: string;
|
|
102
|
+
};
|
|
103
|
+
/** Icon for AvatarIcon */
|
|
104
|
+
iconComponent: {
|
|
105
|
+
type: PropType<FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>>;
|
|
106
|
+
default: null;
|
|
107
|
+
};
|
|
108
|
+
/** Corner rounding style */
|
|
109
|
+
rounded: {
|
|
110
|
+
type: StringConstructor;
|
|
111
|
+
default: string;
|
|
112
|
+
};
|
|
113
|
+
/** Skeleton type for loading */
|
|
114
|
+
skeleton: {
|
|
115
|
+
type: PropType<"user" | "photo">;
|
|
116
|
+
default: string;
|
|
117
|
+
};
|
|
118
|
+
}>> & Readonly<{}>, {
|
|
119
|
+
rounded: string;
|
|
120
|
+
image: ImageData | null;
|
|
121
|
+
color: string;
|
|
122
|
+
size: number;
|
|
123
|
+
skeleton: "user" | "photo";
|
|
124
|
+
initials: string;
|
|
125
|
+
iconComponent: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>;
|
|
126
|
+
altText: string;
|
|
127
|
+
componentName: "AvatarIcon" | "AvatarImage" | "AvatarInitials";
|
|
128
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, HTMLDivElement>;
|
|
129
|
+
export default _default;
|
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import { PropType, FunctionalComponent, HTMLAttributes, VNodeProps } from 'vue';
|
|
2
|
+
/**
|
|
3
|
+
* Represents various date input types
|
|
4
|
+
*/
|
|
5
|
+
export type DateInputValue = Date | string | number | null | undefined | {
|
|
6
|
+
_seconds: number;
|
|
7
|
+
_nanoseconds: number;
|
|
8
|
+
} | {
|
|
9
|
+
seconds: number;
|
|
10
|
+
nanoseconds: number;
|
|
11
|
+
} | {
|
|
12
|
+
month: string | number;
|
|
13
|
+
year: string | number;
|
|
14
|
+
} | {
|
|
15
|
+
toDate: () => Date;
|
|
16
|
+
};
|
|
17
|
+
declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
18
|
+
/** The date to format */
|
|
19
|
+
date: {
|
|
20
|
+
type: PropType<DateInputValue>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
/** dayjs format string */
|
|
24
|
+
format: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
default: string;
|
|
27
|
+
};
|
|
28
|
+
/** Optional secondary date for relative display */
|
|
29
|
+
secondaryRelativeDate: {
|
|
30
|
+
type: PropType<DateInputValue>;
|
|
31
|
+
default: undefined;
|
|
32
|
+
};
|
|
33
|
+
/** Suffix for relative date */
|
|
34
|
+
secondarySuffix: {
|
|
35
|
+
type: StringConstructor;
|
|
36
|
+
default: string;
|
|
37
|
+
};
|
|
38
|
+
/** Optional icon to display before the date */
|
|
39
|
+
leadingIcon: {
|
|
40
|
+
type: PropType<FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>>;
|
|
41
|
+
default: undefined;
|
|
42
|
+
};
|
|
43
|
+
/** Control visibility of date components */
|
|
44
|
+
display: {
|
|
45
|
+
type: PropType<{
|
|
46
|
+
date: boolean;
|
|
47
|
+
secondaryRelativeDate: boolean;
|
|
48
|
+
}>;
|
|
49
|
+
default: () => {
|
|
50
|
+
date: boolean;
|
|
51
|
+
secondaryRelativeDate: boolean;
|
|
52
|
+
};
|
|
53
|
+
};
|
|
54
|
+
/** Add spacing between elements */
|
|
55
|
+
space: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
60
|
+
/** The date to format */
|
|
61
|
+
date: {
|
|
62
|
+
type: PropType<DateInputValue>;
|
|
63
|
+
required: true;
|
|
64
|
+
};
|
|
65
|
+
/** dayjs format string */
|
|
66
|
+
format: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
};
|
|
70
|
+
/** Optional secondary date for relative display */
|
|
71
|
+
secondaryRelativeDate: {
|
|
72
|
+
type: PropType<DateInputValue>;
|
|
73
|
+
default: undefined;
|
|
74
|
+
};
|
|
75
|
+
/** Suffix for relative date */
|
|
76
|
+
secondarySuffix: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
default: string;
|
|
79
|
+
};
|
|
80
|
+
/** Optional icon to display before the date */
|
|
81
|
+
leadingIcon: {
|
|
82
|
+
type: PropType<FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>>;
|
|
83
|
+
default: undefined;
|
|
84
|
+
};
|
|
85
|
+
/** Control visibility of date components */
|
|
86
|
+
display: {
|
|
87
|
+
type: PropType<{
|
|
88
|
+
date: boolean;
|
|
89
|
+
secondaryRelativeDate: boolean;
|
|
90
|
+
}>;
|
|
91
|
+
default: () => {
|
|
92
|
+
date: boolean;
|
|
93
|
+
secondaryRelativeDate: boolean;
|
|
94
|
+
};
|
|
95
|
+
};
|
|
96
|
+
/** Add spacing between elements */
|
|
97
|
+
space: {
|
|
98
|
+
type: BooleanConstructor;
|
|
99
|
+
default: boolean;
|
|
100
|
+
};
|
|
101
|
+
}>> & Readonly<{}>, {
|
|
102
|
+
leadingIcon: FunctionalComponent<HTMLAttributes & VNodeProps, {}, any, {}>;
|
|
103
|
+
display: {
|
|
104
|
+
date: boolean;
|
|
105
|
+
secondaryRelativeDate: boolean;
|
|
106
|
+
};
|
|
107
|
+
space: boolean;
|
|
108
|
+
format: string;
|
|
109
|
+
secondaryRelativeDate: DateInputValue;
|
|
110
|
+
secondarySuffix: string;
|
|
111
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>, {
|
|
112
|
+
default?(_: {}): any;
|
|
113
|
+
}>;
|
|
114
|
+
export default _default;
|
|
115
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
116
|
+
new (): {
|
|
117
|
+
$slots: S;
|
|
118
|
+
};
|
|
119
|
+
};
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { PropType } from 'vue';
|
|
2
|
+
/**
|
|
3
|
+
* Represents various date input types
|
|
4
|
+
*/
|
|
5
|
+
export type DateInputValue = Date | string | number | null | undefined | {
|
|
6
|
+
_seconds: number;
|
|
7
|
+
_nanoseconds: number;
|
|
8
|
+
} | {
|
|
9
|
+
seconds: number;
|
|
10
|
+
nanoseconds: number;
|
|
11
|
+
} | {
|
|
12
|
+
month: string | number;
|
|
13
|
+
year: string | number;
|
|
14
|
+
} | {
|
|
15
|
+
toDate: () => Date;
|
|
16
|
+
};
|
|
17
|
+
declare const _default: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
|
|
18
|
+
/** Start date of the range */
|
|
19
|
+
startDate: {
|
|
20
|
+
type: PropType<DateInputValue>;
|
|
21
|
+
required: true;
|
|
22
|
+
};
|
|
23
|
+
/** End date of the range */
|
|
24
|
+
endDate: {
|
|
25
|
+
type: PropType<DateInputValue>;
|
|
26
|
+
required: true;
|
|
27
|
+
};
|
|
28
|
+
/** dayjs format string */
|
|
29
|
+
format: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
default: string;
|
|
32
|
+
};
|
|
33
|
+
/** Show duration between dates */
|
|
34
|
+
useCalculateTimeBetween: {
|
|
35
|
+
type: BooleanConstructor;
|
|
36
|
+
default: boolean;
|
|
37
|
+
};
|
|
38
|
+
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
|
|
39
|
+
/** Start date of the range */
|
|
40
|
+
startDate: {
|
|
41
|
+
type: PropType<DateInputValue>;
|
|
42
|
+
required: true;
|
|
43
|
+
};
|
|
44
|
+
/** End date of the range */
|
|
45
|
+
endDate: {
|
|
46
|
+
type: PropType<DateInputValue>;
|
|
47
|
+
required: true;
|
|
48
|
+
};
|
|
49
|
+
/** dayjs format string */
|
|
50
|
+
format: {
|
|
51
|
+
type: StringConstructor;
|
|
52
|
+
default: string;
|
|
53
|
+
};
|
|
54
|
+
/** Show duration between dates */
|
|
55
|
+
useCalculateTimeBetween: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: boolean;
|
|
58
|
+
};
|
|
59
|
+
}>> & Readonly<{}>, {
|
|
60
|
+
format: string;
|
|
61
|
+
useCalculateTimeBetween: boolean;
|
|
62
|
+
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
|
63
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import('vue').DefineComponent<{}, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, SVGSVGElement>;
|
|
2
|
+
export default _default;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export { default as DiscordBrandIcon } from './DiscordBrandIcon';
|
|
2
|
+
export { default as FacebookBrandIcon } from './FacebookBrandIcon';
|
|
3
|
+
export { default as GitHubBrandIcon } from './GitHubBrandIcon';
|
|
4
|
+
export { default as InstagramBrandIcon } from './InstagramBrandIcon';
|
|
5
|
+
export { default as LinkedInBrandIcon } from './LinkedInBrandIcon';
|
|
6
|
+
export { default as PinterestBrandIcon } from './PinterestBrandIcon';
|
|
7
|
+
export { default as SnapchatBrandIcon } from './SnapchatBrandIcon';
|
|
8
|
+
export { default as ThreadsBrandIcon } from './ThreadsBrandIcon';
|
|
9
|
+
export { default as TikTokBrandIcon } from './TikTokBrandIcon';
|
|
10
|
+
export { default as TwitchBrandIcon } from './TwitchBrandIcon';
|
|
11
|
+
export { default as XBrandIcon } from './XBrandIcon';
|
|
12
|
+
export { default as YouTubeBrandIcon } from './YouTubeBrandIcon';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './brands';
|
|
@@ -17,11 +17,14 @@ export { default as ProgressBar } from './UiProgressBar';
|
|
|
17
17
|
export { default as RadialProgressBar } from './UiRadialProgressBar';
|
|
18
18
|
export { default as Table } from './UiTable';
|
|
19
19
|
export { default as Transition } from './UiTransition';
|
|
20
|
+
export * from './avatars';
|
|
20
21
|
export * from './calendars';
|
|
21
22
|
export * from './charts';
|
|
22
23
|
export * from './collection-editor';
|
|
23
24
|
export * from './empty-state';
|
|
25
|
+
export * from './formatters';
|
|
24
26
|
export * from './forms';
|
|
27
|
+
export * from './icons';
|
|
25
28
|
export * from './inputs';
|
|
26
29
|
export * from './layouts';
|
|
27
30
|
export * from './loading';
|
|
@@ -739,6 +739,7 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
739
739
|
cancelText: string;
|
|
740
740
|
highlight: Date[] | DatepickerHighlight | ((date: Date) => boolean);
|
|
741
741
|
monthPicker: boolean;
|
|
742
|
+
startDate: string | Date;
|
|
742
743
|
is24: boolean;
|
|
743
744
|
enableTimePicker: boolean;
|
|
744
745
|
multiCalendars: number | boolean | {
|
|
@@ -767,7 +768,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
767
768
|
openMenu?: boolean | undefined;
|
|
768
769
|
format?: string | undefined;
|
|
769
770
|
};
|
|
770
|
-
startDate: string | Date;
|
|
771
771
|
noToday: boolean;
|
|
772
772
|
altPosition: boolean | ((el: HTMLElement | undefined) => {
|
|
773
773
|
top: string | number;
|
|
@@ -985,6 +985,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
985
985
|
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
986
986
|
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
987
987
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
988
|
+
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
989
|
+
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
988
990
|
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
989
991
|
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
990
992
|
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
@@ -1015,7 +1017,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1015
1017
|
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
1016
1018
|
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | 3 | 4 | 5 | 6 | "0" | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | 3 | 4 | 5 | 6 | "0" | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
1017
1019
|
readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1018
|
-
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1019
1020
|
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1020
1021
|
readonly inputClassName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1021
1022
|
readonly menuClassName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -1047,7 +1048,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1047
1048
|
format?: string | string[] | ((value: string) => Date | null) | undefined;
|
|
1048
1049
|
} | undefined> | null | undefined;
|
|
1049
1050
|
readonly monthNameFormat?: import('vue').Prop<"long" | "short" | undefined, "long" | "short" | undefined> | null | undefined;
|
|
1050
|
-
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1051
1051
|
readonly hideOffsetDates?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1052
1052
|
readonly autoRange?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1053
1053
|
readonly noToday?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
@@ -1494,6 +1494,8 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1494
1494
|
readonly vertical?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1495
1495
|
readonly autocomplete?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1496
1496
|
readonly monthPicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1497
|
+
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1498
|
+
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1497
1499
|
readonly is24?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1498
1500
|
readonly enableTimePicker?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1499
1501
|
readonly multiCalendars?: import('vue').Prop<import('@vuepic/vue-datepicker').DpOptionEnabled | Partial<{
|
|
@@ -1524,7 +1526,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1524
1526
|
readonly maxTime?: import('vue').Prop<import('@vuepic/vue-datepicker').PartialTimeObj | undefined, import('@vuepic/vue-datepicker').PartialTimeObj | undefined> | null | undefined;
|
|
1525
1527
|
readonly weekStart?: import('vue').Prop<0 | 1 | 2 | 3 | 4 | 5 | 6 | "0" | "1" | "2" | "3" | "4" | "5" | "6" | undefined, 0 | 1 | 2 | 3 | 4 | 5 | 6 | "0" | "1" | "2" | "3" | "4" | "5" | "6" | undefined> | null | undefined;
|
|
1526
1528
|
readonly readonly?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1527
|
-
readonly format?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1528
1529
|
readonly previewFormat?: import('vue').Prop<string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined, string | ((date: Date) => string) | ((dates: Date[]) => string) | undefined> | null | undefined;
|
|
1529
1530
|
readonly inputClassName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
1530
1531
|
readonly menuClassName?: import('vue').Prop<string | undefined, string | undefined> | null | undefined;
|
|
@@ -1556,7 +1557,6 @@ declare const _default: __VLS_WithTemplateSlots<import('vue').DefineComponent<im
|
|
|
1556
1557
|
format?: string | string[] | ((value: string) => Date | null) | undefined;
|
|
1557
1558
|
} | undefined> | null | undefined;
|
|
1558
1559
|
readonly monthNameFormat?: import('vue').Prop<"long" | "short" | undefined, "long" | "short" | undefined> | null | undefined;
|
|
1559
|
-
readonly startDate?: import('vue').Prop<string | Date | undefined, string | Date | undefined> | null | undefined;
|
|
1560
1560
|
readonly hideOffsetDates?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|
|
1561
1561
|
readonly autoRange?: import('vue').Prop<string | number | undefined, string | number | undefined> | null | undefined;
|
|
1562
1562
|
readonly noToday?: import('vue').Prop<boolean | undefined, boolean | undefined> | null | undefined;
|