Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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