Skip to content

Commit

Permalink
Release version 2.0.0-reedsy.1.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Action committed Oct 23, 2023
1 parent c0297f5 commit 835a30f
Show file tree
Hide file tree
Showing 25 changed files with 3,361 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,4 @@ node_modules/
npm-debug.log
coverage/
dist/
!packages/floating-vue/dist
29 changes: 29 additions & 0 deletions packages/floating-vue/dist/components/Dropdown.vue.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
declare const Component: import("vue").DefineComponent<{
theme: {
type: StringConstructor;
default: any;
};
}, unknown, unknown, {
finalTheme(): string;
}, {
getTargetNodes(): unknown[];
}, {
computed: {
themeClass(): string[];
};
} | {
methods: {
show(...args: any[]): any;
hide(...args: any[]): any;
dispose(...args: any[]): any;
onResize(...args: any[]): any;
};
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
theme: {
type: StringConstructor;
default: any;
};
}>>, {
theme: string;
}, {}>;
export default Component;
29 changes: 29 additions & 0 deletions packages/floating-vue/dist/components/Menu.vue.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
declare const Component: import("vue").DefineComponent<{
theme: {
type: StringConstructor;
default: any;
};
}, unknown, unknown, {
finalTheme(): string;
}, {
getTargetNodes(): unknown[];
}, {
computed: {
themeClass(): string[];
};
} | {
methods: {
show(...args: any[]): any;
hide(...args: any[]): any;
dispose(...args: any[]): any;
onResize(...args: any[]): any;
};
}, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
theme: {
type: StringConstructor;
default: any;
};
}>>, {
theme: string;
}, {}>;
export default Component;
Loading

0 comments on commit 835a30f

Please sign in to comment.