-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from webdevnerdstuff/dev
v3.1.0
- Loading branch information
Showing
69 changed files
with
3,672 additions
and
3,839 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
npx lint-staged && npm run test:build |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
node-version=20.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
19 | ||
20.10.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { UseDrawerClasses, UseHandleContainerClasses, UseHandleIconClasses } from '../../types'; | ||
import { UseDrawerClasses, UseHandleContainerClasses, UseHandleIconClasses } from '../types'; | ||
export declare const useDrawerClasses: UseDrawerClasses; | ||
export declare const useHandleContainerClasses: UseHandleContainerClasses; | ||
export declare const useHandleIconClasses: UseHandleIconClasses; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import { UseConvertToUnit } from '../../types'; | ||
import { UseConvertToUnit } from '../types'; | ||
export declare const useConvertToUnit: UseConvertToUnit; | ||
export declare const useConvertToNumber: (val: string | number) => number; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
import { UseGetIcon } from '../../types'; | ||
import { UseGetIcon } from '../types'; | ||
export declare const useGetIcon: UseGetIcon; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
import { UseSetStorage } from '../../types'; | ||
import { UseSetStorage } from '../types'; | ||
export declare function useGetStorage(storageType: string, storageName: string): string | null; | ||
export declare const useSetStorage: UseSetStorage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { UseDrawerStyles, UseHandleContainerStyles, UseHandleIconStyles } from '../../types'; | ||
import { UseDrawerStyles, UseHandleContainerStyles, UseHandleIconStyles } from '../types'; | ||
export declare const useDrawerStyles: UseDrawerStyles; | ||
export declare const useHandleContainerStyles: UseHandleContainerStyles; | ||
export declare const useHandleIconStyles: UseHandleIconStyles; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,9 @@ | ||
export { default as VResizeDrawer } from '../plugin/VResizeDrawer.vue'; | ||
import type { App } from 'vue'; | ||
import type { GlobalOptions } from './types'; | ||
import VResizeDrawer from './VResizeDrawer.vue'; | ||
export declare const globalOptions: unique symbol; | ||
export declare function createVResizeDrawer(options?: GlobalOptions): { | ||
install: (app: App) => void; | ||
}; | ||
export default VResizeDrawer; | ||
export { VResizeDrawer, }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
import { Props } from '../../types'; | ||
import { Props } from '../types'; | ||
export declare const AllProps: Props; |
Oops, something went wrong.