Skip to content

Commit

Permalink
Merge pull request #43 from webdevnerdstuff/dev
Browse files Browse the repository at this point in the history
fixing build
  • Loading branch information
webdevnerdstuff authored Nov 11, 2024
2 parents b07eb46 + 135ef57 commit bee5704
Show file tree
Hide file tree
Showing 12 changed files with 86 additions and 62 deletions.
22 changes: 11 additions & 11 deletions dist/plugin/VResizeDrawer.vue.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { Props } from './types';
import { VNavigationDrawer } from 'vuetify/components';
import { Props } from './types';
declare function __VLS_template(): {
slots: {
handle?(_: {}): any;
Expand All @@ -20,9 +20,9 @@ declare function __VLS_template(): {
tag: string;
sticky: boolean;
modelValue: boolean | null;
scrim: string | boolean;
tile: boolean;
floating: boolean;
scrim: string | boolean;
touchless: boolean;
disableResizeWatcher: boolean;
disableRouteWatcher: boolean;
Expand Down Expand Up @@ -86,9 +86,9 @@ declare function __VLS_template(): {
tag: string;
sticky: boolean;
modelValue: boolean | null;
scrim: string | boolean;
tile: boolean;
floating: boolean;
scrim: string | boolean;
touchless: boolean;
disableResizeWatcher: boolean;
disableRouteWatcher: boolean;
Expand Down Expand Up @@ -148,9 +148,9 @@ declare function __VLS_template(): {
sticky: boolean;
modelValue: boolean | null;
rounded: string | number | boolean;
scrim: string | boolean;
tile: boolean;
floating: boolean;
scrim: string | boolean;
touchless: boolean;
disableResizeWatcher: boolean;
disableRouteWatcher: boolean;
Expand Down Expand Up @@ -184,9 +184,9 @@ declare function __VLS_template(): {
tag: string;
sticky: boolean;
modelValue: boolean | null;
scrim: string | boolean;
tile: boolean;
floating: boolean;
scrim: string | boolean;
touchless: boolean;
disableResizeWatcher: boolean;
disableRouteWatcher: boolean;
Expand Down Expand Up @@ -248,9 +248,9 @@ declare function __VLS_template(): {
sticky: boolean;
modelValue: boolean | null;
rounded: string | number | boolean;
scrim: string | boolean;
tile: boolean;
floating: boolean;
scrim: string | boolean;
touchless: boolean;
disableResizeWatcher: boolean;
disableRouteWatcher: boolean;
Expand Down Expand Up @@ -290,10 +290,11 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
"onHandle:touchstart"?: ((...args: any[]) => any) | undefined;
"onUpdate:modelValue"?: ((...args: any[]) => any) | undefined;
}>, {
location: "bottom" | "end" | "start" | "left" | "right" | "top";
absolute: VNavigationDrawer["absolute"];
theme: string;
tag: VNavigationDrawer["tag"];
name: string;
absolute: VNavigationDrawer["absolute"];
expandOnHover: VNavigationDrawer["expandOnHover"];
floating: VNavigationDrawer["floating"];
modelValue: VNavigationDrawer["modelValue"];
Expand All @@ -303,13 +304,13 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
temporary: VNavigationDrawer["temporary"];
touchless: boolean;
width: VNavigationDrawer["width"];
location: "bottom" | "top" | "start" | "end" | "left" | "right";
handlePosition: import('./types').HandlePositions;
handleIconSize: import('vuetify/lib/components/index.mjs').VIcon["size"];
handleIcon: string;
saveWidth: boolean;
saveHeight: boolean;
storageName: string;
storageType: import('./types').StorageType;
handlePosition: import('./types').HandlePositions;
handleIconSize: import('vuetify/lib/components/index.mjs').VIcon["size"];
handleColor: string;
height: string | number;
maxWidth: VNavigationDrawer["width"];
Expand All @@ -318,7 +319,6 @@ declare const __VLS_component: import('vue').DefineComponent<Props, {}, {}, {},
maxHeight: string | number;
minHeight: string | number;
handleBorderWidth: number | string;
handleIcon: string;
resizable: boolean;
widthSnapBack: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { App } from 'vue';
import { GlobalOptions } from './types';
import { App } from 'vue';
import { default as VResizeDrawer } from './VResizeDrawer.vue';
export declare const globalOptions: unique symbol;
export declare function createVResizeDrawer(options?: GlobalOptions): {
Expand Down
4 changes: 2 additions & 2 deletions dist/plugin/types/index.d.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { CSSProperties, MaybeRef } from 'vue';
import { IconOptions, ThemeInstance } from 'vuetify';
import { default as VResizeDrawer } from '../VResizeDrawer.vue';
import { VIcon, VNavigationDrawer } from 'vuetify/components';
import { default as VResizeDrawer } from '../VResizeDrawer.vue';
export * from '../index';
export type Classes = {
[key: string]: boolean | undefined;
Expand Down Expand Up @@ -130,7 +130,7 @@ export interface UseGetIcon {
name: Props['handlePosition'];
}): Props['handleIcon'];
}
declare module "vue" {
declare module 'vue' {
interface ComponentCustomProperties {
}
interface GlobalComponents {
Expand Down
2 changes: 1 addition & 1 deletion dist/plugin/utils/globals.d.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
declare const defaultWidth = 256;
declare const componentName = "v-resize-drawer";
export { defaultWidth, componentName };
export { defaultWidth, componentName, };
4 changes: 2 additions & 2 deletions dist/scss/_mixins.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* @source vuetify/packages/vuetify/src/styles/tools/_functions.sass
*/
@function breakpoint-min($name, $breakpoints) {
$min: map-get($breakpoints, $name);
$min: map.get($breakpoints, $name);
@return if($min !=0, $min, null);
}

Expand All @@ -33,7 +33,7 @@
}

@mixin make-grid-columns($columns: settings.$grid-columns, $gutter: settings.$grid-gutter, $breakpoints: settings.$grid-breakpoints) {
@each $breakpoint in map-keys($breakpoints) {
@each $breakpoint in map.keys($breakpoints) {
$infix: tools.breakpoint-infix($breakpoint, $breakpoints);

@include media-breakpoint-up($breakpoint, $breakpoints) {
Expand Down
2 changes: 1 addition & 1 deletion dist/vuetify-resize-drawer.cjs.js

Large diffs are not rendered by default.

Loading

0 comments on commit bee5704

Please sign in to comment.