Skip to content

Commit 191a25e

Browse files
committed
update deps to match shadcn-vue@latest amd rebuild
1 parent ea9ee0f commit 191a25e

File tree

139 files changed

+6781
-7522
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

139 files changed

+6781
-7522
lines changed

dist/gooey.js

Lines changed: 5029 additions & 4968 deletions
Large diffs are not rendered by default.

dist/gooey.umd.cjs

Lines changed: 12 additions & 12 deletions
Large diffs are not rendered by default.

dist/types/components/accordion/Accord.vue.d.ts

Lines changed: 17 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -6,43 +6,27 @@ interface Item {
66
interface ExtendedAccordionRootProps extends AccordionRootProps {
77
content?: Item[] | Record<string, Item>;
88
}
9-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ExtendedAccordionRootProps>, {
10-
type: string;
11-
collapsible: boolean;
12-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
13-
"update:modelValue": (value: string | string[] | undefined) => void;
14-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_WithDefaults<__VLS_TypePropsToRuntimeProps<ExtendedAccordionRootProps>, {
15-
type: string;
16-
collapsible: boolean;
17-
}>>> & Readonly<{
18-
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
19-
}>, {
20-
collapsible: boolean;
21-
type: "single" | "multiple";
22-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, Partial<Record<string, (_: {
9+
declare var __VLS_14: string, __VLS_15: {
2310
item: Item;
24-
}) => any>> & Partial<Record<string, (_: {
11+
}, __VLS_22: string, __VLS_23: {
2512
item: Item;
26-
}) => any>>>;
27-
export default _default;
28-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
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-
};
3613
};
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];
14+
type __VLS_Slots = {} & {
15+
[K in NonNullable<typeof __VLS_14>]?: (props: typeof __VLS_15) => any;
16+
} & {
17+
[K in NonNullable<typeof __VLS_22>]?: (props: typeof __VLS_23) => any;
4118
};
42-
type __VLS_Prettify<T> = {
43-
[K in keyof T]: T[K];
44-
} & {};
45-
type __VLS_WithTemplateSlots<T, S> = T & {
19+
declare const __VLS_component: import("vue").DefineComponent<ExtendedAccordionRootProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
20+
"update:modelValue": (value: string | string[] | undefined) => any;
21+
}, string, import("vue").PublicProps, Readonly<ExtendedAccordionRootProps> & Readonly<{
22+
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
23+
}>, {
24+
type: "multiple" | "single";
25+
collapsible: boolean;
26+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
27+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
28+
export default _default;
29+
type __VLS_WithSlots<T, S> = T & {
4630
new (): {
4731
$slots: S;
4832
};

dist/types/components/accordion/Accordion.vue.d.ts

Lines changed: 11 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,17 @@
11
import { type AccordionRootProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionRootProps<string | string[], import("radix-vue/dist/shared/types").SingleOrMultipleType>>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3-
"update:modelValue": (value: string | string[] | undefined) => void;
4-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionRootProps<string | string[], import("radix-vue/dist/shared/types").SingleOrMultipleType>>>> & Readonly<{
2+
type __VLS_Props = AccordionRootProps;
3+
declare var __VLS_6: {};
4+
type __VLS_Slots = {} & {
5+
default?: (props: typeof __VLS_6) => any;
6+
};
7+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
8+
"update:modelValue": (value: string | string[] | undefined) => any;
9+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
510
"onUpdate:modelValue"?: ((value: string | string[] | undefined) => any) | undefined;
6-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
}>;
11+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
12+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
913
export default _default;
10-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11-
type __VLS_TypePropsToRuntimeProps<T> = {
12-
[K in keyof T]-?: {} extends Pick<T, K> ? {
13-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14-
} : {
15-
type: import('vue').PropType<T[K]>;
16-
required: true;
17-
};
18-
};
19-
type __VLS_WithTemplateSlots<T, S> = T & {
14+
type __VLS_WithSlots<T, S> = T & {
2015
new (): {
2116
$slots: S;
2217
};

dist/types/components/accordion/AccordionContent.vue.d.ts

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
11
import { type AccordionContentProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionContentProps & {
3-
class?: any;
4-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionContentProps & {
5-
class?: any;
6-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
}>;
9-
export default _default;
10-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11-
type __VLS_TypePropsToRuntimeProps<T> = {
12-
[K in keyof T]-?: {} extends Pick<T, K> ? {
13-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14-
} : {
15-
type: import('vue').PropType<T[K]>;
16-
required: true;
17-
};
2+
import { type HTMLAttributes } from "vue";
3+
type __VLS_Props = AccordionContentProps & {
4+
class?: HTMLAttributes["class"];
185
};
19-
type __VLS_WithTemplateSlots<T, S> = T & {
6+
declare var __VLS_6: {};
7+
type __VLS_Slots = {} & {
8+
default?: (props: typeof __VLS_6) => any;
9+
};
10+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12+
export default _default;
13+
type __VLS_WithSlots<T, S> = T & {
2014
new (): {
2115
$slots: S;
2216
};

dist/types/components/accordion/AccordionItem.vue.d.ts

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
11
import { type AccordionItemProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionItemProps & {
3-
class?: any;
4-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionItemProps & {
5-
class?: any;
6-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
}>;
9-
export default _default;
10-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11-
type __VLS_TypePropsToRuntimeProps<T> = {
12-
[K in keyof T]-?: {} extends Pick<T, K> ? {
13-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14-
} : {
15-
type: import('vue').PropType<T[K]>;
16-
required: true;
17-
};
2+
import { type HTMLAttributes } from "vue";
3+
type __VLS_Props = AccordionItemProps & {
4+
class?: HTMLAttributes["class"];
185
};
19-
type __VLS_WithTemplateSlots<T, S> = T & {
6+
declare var __VLS_6: {};
7+
type __VLS_Slots = {} & {
8+
default?: (props: typeof __VLS_6) => any;
9+
};
10+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12+
export default _default;
13+
type __VLS_WithSlots<T, S> = T & {
2014
new (): {
2115
$slots: S;
2216
};

dist/types/components/accordion/AccordionTrigger.vue.d.ts

Lines changed: 13 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,18 @@
11
import { type AccordionTriggerProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionTriggerProps & {
3-
class?: any;
4-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AccordionTriggerProps & {
5-
class?: any;
6-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
icon?(_: {}): any;
9-
}>;
10-
export default _default;
11-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
12-
type __VLS_TypePropsToRuntimeProps<T> = {
13-
[K in keyof T]-?: {} extends Pick<T, K> ? {
14-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
15-
} : {
16-
type: import('vue').PropType<T[K]>;
17-
required: true;
18-
};
2+
import { type HTMLAttributes } from "vue";
3+
type __VLS_Props = AccordionTriggerProps & {
4+
class?: HTMLAttributes["class"];
195
};
20-
type __VLS_WithTemplateSlots<T, S> = T & {
6+
declare var __VLS_10: {}, __VLS_12: {};
7+
type __VLS_Slots = {} & {
8+
default?: (props: typeof __VLS_10) => any;
9+
} & {
10+
icon?: (props: typeof __VLS_12) => any;
11+
};
12+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
13+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
14+
export default _default;
15+
type __VLS_WithSlots<T, S> = T & {
2116
new (): {
2217
$slots: S;
2318
};

dist/types/components/alert-dialog/AlertDialog.vue.d.ts

Lines changed: 10 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
11
import { type AlertDialogProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AlertDialogProps>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
3-
"update:open": (value: boolean) => void;
4-
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AlertDialogProps>>> & Readonly<{
2+
declare var __VLS_6: {};
3+
type __VLS_Slots = {} & {
4+
default?: (props: typeof __VLS_6) => any;
5+
};
6+
declare const __VLS_component: import("vue").DefineComponent<AlertDialogProps, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
7+
"update:open": (value: boolean) => any;
8+
}, string, import("vue").PublicProps, Readonly<AlertDialogProps> & Readonly<{
59
"onUpdate:open"?: ((value: boolean) => any) | undefined;
6-
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
}>;
10+
}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
912
export default _default;
10-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11-
type __VLS_TypePropsToRuntimeProps<T> = {
12-
[K in keyof T]-?: {} extends Pick<T, K> ? {
13-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14-
} : {
15-
type: import('vue').PropType<T[K]>;
16-
required: true;
17-
};
18-
};
19-
type __VLS_WithTemplateSlots<T, S> = T & {
13+
type __VLS_WithSlots<T, S> = T & {
2014
new (): {
2115
$slots: S;
2216
};

dist/types/components/alert-dialog/AlertDialogAction.vue.d.ts

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1+
import { type HTMLAttributes } from "vue";
12
import { type AlertDialogActionProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AlertDialogActionProps & {
3-
class?: any;
4-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AlertDialogActionProps & {
5-
class?: any;
6-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
}>;
9-
export default _default;
10-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11-
type __VLS_TypePropsToRuntimeProps<T> = {
12-
[K in keyof T]-?: {} extends Pick<T, K> ? {
13-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14-
} : {
15-
type: import('vue').PropType<T[K]>;
16-
required: true;
17-
};
3+
type __VLS_Props = AlertDialogActionProps & {
4+
class?: HTMLAttributes["class"];
185
};
19-
type __VLS_WithTemplateSlots<T, S> = T & {
6+
declare var __VLS_6: {};
7+
type __VLS_Slots = {} & {
8+
default?: (props: typeof __VLS_6) => any;
9+
};
10+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12+
export default _default;
13+
type __VLS_WithSlots<T, S> = T & {
2014
new (): {
2115
$slots: S;
2216
};

dist/types/components/alert-dialog/AlertDialogCancel.vue.d.ts

Lines changed: 11 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,16 @@
1+
import { type HTMLAttributes } from "vue";
12
import { type AlertDialogCancelProps } from "radix-vue";
2-
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AlertDialogCancelProps & {
3-
class?: any;
4-
}>>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<__VLS_TypePropsToRuntimeProps<AlertDialogCancelProps & {
5-
class?: any;
6-
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>, {
7-
default?(_: {}): any;
8-
}>;
9-
export default _default;
10-
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
11-
type __VLS_TypePropsToRuntimeProps<T> = {
12-
[K in keyof T]-?: {} extends Pick<T, K> ? {
13-
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
14-
} : {
15-
type: import('vue').PropType<T[K]>;
16-
required: true;
17-
};
3+
type __VLS_Props = AlertDialogCancelProps & {
4+
class?: HTMLAttributes["class"];
185
};
19-
type __VLS_WithTemplateSlots<T, S> = T & {
6+
declare var __VLS_6: {};
7+
type __VLS_Slots = {} & {
8+
default?: (props: typeof __VLS_6) => any;
9+
};
10+
declare const __VLS_component: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
11+
declare const _default: __VLS_WithSlots<typeof __VLS_component, __VLS_Slots>;
12+
export default _default;
13+
type __VLS_WithSlots<T, S> = T & {
2014
new (): {
2115
$slots: S;
2216
};

0 commit comments

Comments
 (0)