@wastedondestiny/destiny-library 1.2.4 → 1.2.5
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/Collapsible.vue.d.ts +14 -37
- package/dist/components/Dropdown.vue.d.ts +12 -34
- package/dist/components/ErrorToast.vue.d.ts +7 -4
- package/dist/components/PlatformIcon.vue.d.ts +7 -21
- package/dist/components/Popup.vue.d.ts +9 -5
- package/dist/components/TheFooter.vue.d.ts +14 -34
- package/dist/components/TheTooltip.vue.d.ts +20 -42
- package/dist/composables/mediaQuery.d.ts +1 -1
- package/dist/destiny-library.js +1454 -1445
- package/dist/destiny-library.umd.cjs +4 -4
- package/package.json +2 -2
|
@@ -1,46 +1,23 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
name: string;
|
|
3
|
-
open?: boolean
|
|
4
|
-
noInteract?: boolean
|
|
5
|
-
}
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
3
|
+
open?: boolean;
|
|
4
|
+
noInteract?: boolean;
|
|
5
|
+
};
|
|
6
|
+
declare var __VLS_1: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
};
|
|
10
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
9
11
|
toggle: (...args: any[]) => void;
|
|
10
|
-
}, string, import("vue").
|
|
11
|
-
name: string;
|
|
12
|
-
open?: boolean | undefined;
|
|
13
|
-
noInteract?: boolean | undefined;
|
|
14
|
-
}>, {
|
|
15
|
-
open: boolean;
|
|
16
|
-
noInteract: boolean;
|
|
17
|
-
}>>> & {
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
18
13
|
onToggle?: ((...args: any[]) => any) | undefined;
|
|
19
|
-
}
|
|
14
|
+
}>, {
|
|
20
15
|
open: boolean;
|
|
21
16
|
noInteract: boolean;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
}>;
|
|
17
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
18
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
25
19
|
export default _default;
|
|
26
|
-
type
|
|
27
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
28
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
29
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
30
|
-
} : {
|
|
31
|
-
type: import('vue').PropType<T[K]>;
|
|
32
|
-
required: true;
|
|
33
|
-
};
|
|
34
|
-
};
|
|
35
|
-
type __VLS_WithDefaults<P, D> = {
|
|
36
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
37
|
-
default: D[K];
|
|
38
|
-
}> : P[K];
|
|
39
|
-
};
|
|
40
|
-
type __VLS_Prettify<T> = {
|
|
41
|
-
[K in keyof T]: T[K];
|
|
42
|
-
} & {};
|
|
43
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
20
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
44
21
|
new (): {
|
|
45
22
|
$slots: S;
|
|
46
23
|
};
|
|
@@ -1,40 +1,18 @@
|
|
|
1
|
-
|
|
2
|
-
width?: string
|
|
3
|
-
side?: boolean
|
|
4
|
-
}
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
}>, {
|
|
11
|
-
width: string;
|
|
12
|
-
side: boolean;
|
|
13
|
-
}>>>, {
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
width?: string;
|
|
3
|
+
side?: boolean;
|
|
4
|
+
};
|
|
5
|
+
declare var __VLS_1: {};
|
|
6
|
+
type __VLS_Slots = {} & {
|
|
7
|
+
default?: (props: typeof __VLS_1) => any;
|
|
8
|
+
};
|
|
9
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
14
10
|
width: string;
|
|
15
11
|
side: boolean;
|
|
16
|
-
}
|
|
17
|
-
|
|
18
|
-
}>;
|
|
12
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
13
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
19
14
|
export default _default;
|
|
20
|
-
type
|
|
21
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
22
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
-
} : {
|
|
25
|
-
type: import('vue').PropType<T[K]>;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
28
|
-
};
|
|
29
|
-
type __VLS_WithDefaults<P, D> = {
|
|
30
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
31
|
-
default: D[K];
|
|
32
|
-
}> : P[K];
|
|
33
|
-
};
|
|
34
|
-
type __VLS_Prettify<T> = {
|
|
35
|
-
[K in keyof T]: T[K];
|
|
36
|
-
} & {};
|
|
37
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
15
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
38
16
|
new (): {
|
|
39
17
|
$slots: S;
|
|
40
18
|
};
|
|
@@ -1,8 +1,11 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare var __VLS_1: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
};
|
|
5
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
6
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
4
7
|
export default _default;
|
|
5
|
-
type
|
|
8
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
6
9
|
new (): {
|
|
7
10
|
$slots: S;
|
|
8
11
|
};
|
|
@@ -1,24 +1,10 @@
|
|
|
1
1
|
import { AccountResult, Parallel, Supporter } from '../types';
|
|
2
|
-
|
|
2
|
+
type __VLS_Props = {
|
|
3
3
|
account: AccountResult;
|
|
4
|
-
supporting?: Supporter
|
|
5
|
-
parallel?: Parallel
|
|
6
|
-
large?: boolean
|
|
7
|
-
noInteract?: boolean
|
|
8
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
|
9
|
-
account: AccountResult;
|
|
10
|
-
supporting?: Supporter | undefined;
|
|
11
|
-
parallel?: Parallel | undefined;
|
|
12
|
-
large?: boolean | undefined;
|
|
13
|
-
noInteract?: boolean | undefined;
|
|
14
|
-
}>>>, {}>;
|
|
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
|
-
};
|
|
4
|
+
supporting?: Supporter;
|
|
5
|
+
parallel?: Parallel;
|
|
6
|
+
large?: boolean;
|
|
7
|
+
noInteract?: boolean;
|
|
24
8
|
};
|
|
9
|
+
declare const _default: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
10
|
+
export default _default;
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
}
|
|
1
|
+
declare var __VLS_1: {}, __VLS_8: {};
|
|
2
|
+
type __VLS_Slots = {} & {
|
|
3
|
+
default?: (props: typeof __VLS_1) => any;
|
|
4
|
+
} & {
|
|
5
|
+
content?: (props: typeof __VLS_8) => any;
|
|
6
|
+
};
|
|
7
|
+
declare const __VLS_component: import("vue").DefineComponent<{}, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
5
9
|
export default _default;
|
|
6
|
-
type
|
|
10
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
7
11
|
new (): {
|
|
8
12
|
$slots: S;
|
|
9
13
|
};
|
|
@@ -1,40 +1,20 @@
|
|
|
1
|
-
|
|
1
|
+
type __VLS_Props = {
|
|
2
2
|
name: string;
|
|
3
|
-
about?: boolean
|
|
4
|
-
patreon?: boolean
|
|
5
|
-
}>, {
|
|
6
|
-
about: boolean;
|
|
7
|
-
}>, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<{
|
|
8
|
-
name: string;
|
|
9
|
-
about?: boolean | undefined;
|
|
10
|
-
patreon?: boolean | undefined;
|
|
11
|
-
}>, {
|
|
12
|
-
about: boolean;
|
|
13
|
-
}>>>, {
|
|
14
|
-
about: boolean;
|
|
15
|
-
}>, {
|
|
16
|
-
default?(_: {}): any;
|
|
17
|
-
privacy?(_: {}): any;
|
|
18
|
-
}>;
|
|
19
|
-
export default _default;
|
|
20
|
-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
|
21
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
22
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
23
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
24
|
-
} : {
|
|
25
|
-
type: import('vue').PropType<T[K]>;
|
|
26
|
-
required: true;
|
|
27
|
-
};
|
|
3
|
+
about?: boolean;
|
|
4
|
+
patreon?: boolean;
|
|
28
5
|
};
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
6
|
+
declare var __VLS_1: {}, __VLS_13: {};
|
|
7
|
+
type __VLS_Slots = {} & {
|
|
8
|
+
default?: (props: typeof __VLS_1) => any;
|
|
9
|
+
} & {
|
|
10
|
+
privacy?: (props: typeof __VLS_13) => any;
|
|
33
11
|
};
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
}
|
|
37
|
-
|
|
12
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
13
|
+
about: boolean;
|
|
14
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
15
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
16
|
+
export default _default;
|
|
17
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
38
18
|
new (): {
|
|
39
19
|
$slots: S;
|
|
40
20
|
};
|
|
@@ -1,48 +1,26 @@
|
|
|
1
|
-
|
|
2
|
-
otherClasses?: string
|
|
3
|
-
warning?: boolean
|
|
4
|
-
noInteract?: boolean
|
|
5
|
-
url?: string
|
|
6
|
-
}
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
}
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
}
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
}
|
|
1
|
+
type __VLS_Props = {
|
|
2
|
+
otherClasses?: string;
|
|
3
|
+
warning?: boolean;
|
|
4
|
+
noInteract?: boolean;
|
|
5
|
+
url?: string;
|
|
6
|
+
};
|
|
7
|
+
declare var __VLS_8: {}, __VLS_11: {}, __VLS_13: {
|
|
8
|
+
hide: () => {};
|
|
9
|
+
};
|
|
10
|
+
type __VLS_Slots = {} & {
|
|
11
|
+
default?: (props: typeof __VLS_8) => any;
|
|
12
|
+
} & {
|
|
13
|
+
icon?: (props: typeof __VLS_11) => any;
|
|
14
|
+
} & {
|
|
15
|
+
content?: (props: typeof __VLS_13) => any;
|
|
16
|
+
};
|
|
17
|
+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, void, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
|
|
18
18
|
noInteract: boolean;
|
|
19
19
|
warning: boolean;
|
|
20
|
-
}
|
|
21
|
-
|
|
22
|
-
icon?(_: {}): any;
|
|
23
|
-
content?(_: {
|
|
24
|
-
hide: () => {};
|
|
25
|
-
}): any;
|
|
26
|
-
}>;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
|
|
27
22
|
export default _default;
|
|
28
|
-
type
|
|
29
|
-
type __VLS_TypePropsToRuntimeProps<T> = {
|
|
30
|
-
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
|
31
|
-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
|
32
|
-
} : {
|
|
33
|
-
type: import('vue').PropType<T[K]>;
|
|
34
|
-
required: true;
|
|
35
|
-
};
|
|
36
|
-
};
|
|
37
|
-
type __VLS_WithDefaults<P, D> = {
|
|
38
|
-
[K in keyof Pick<P, keyof P>]: K extends keyof D ? __VLS_Prettify<P[K] & {
|
|
39
|
-
default: D[K];
|
|
40
|
-
}> : P[K];
|
|
41
|
-
};
|
|
42
|
-
type __VLS_Prettify<T> = {
|
|
43
|
-
[K in keyof T]: T[K];
|
|
44
|
-
} & {};
|
|
45
|
-
type __VLS_WithTemplateSlots<T, S> = T & {
|
|
23
|
+
type __VLS_WithSlots<T, S> = T & {
|
|
46
24
|
new (): {
|
|
47
25
|
$slots: S;
|
|
48
26
|
};
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare function useMediaQuery(query: string): import("vue").Ref<boolean>;
|
|
1
|
+
export declare function useMediaQuery(query: string): import("vue").Ref<boolean, boolean>;
|