Initial commit
This commit is contained in:
9
node_modules/vaul/LICENSE.md
generated
vendored
Normal file
9
node_modules/vaul/LICENSE.md
generated
vendored
Normal file
@ -0,0 +1,9 @@
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2023 Emil Kowalski
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
35
node_modules/vaul/README.md
generated
vendored
Normal file
35
node_modules/vaul/README.md
generated
vendored
Normal file
@ -0,0 +1,35 @@
|
||||
https://github.com/emilkowalski/vaul/assets/36730035/fdf8c5e8-ade8-433b-8bb0-4ce10e722516
|
||||
|
||||
Vaul is an unstyled drawer component for React that can be used as a Dialog replacement on tablet and mobile devices. You can read about why and how it was built [here](https://emilkowal.ski/ui/building-a-drawer-component).
|
||||
|
||||
## Usage
|
||||
|
||||
To start using the library, install it in your project:,
|
||||
|
||||
```bash
|
||||
npm install vaul
|
||||
```
|
||||
|
||||
Use the drawer in your app.
|
||||
|
||||
```jsx
|
||||
import { Drawer } from 'vaul';
|
||||
|
||||
function MyComponent() {
|
||||
return (
|
||||
<Drawer.Root>
|
||||
<Drawer.Trigger>Open</Drawer.Trigger>
|
||||
<Drawer.Portal>
|
||||
<Drawer.Content>
|
||||
<Drawer.Title>Title</Drawer.Title>
|
||||
</Drawer.Content>
|
||||
<Drawer.Overlay />
|
||||
</Drawer.Portal>
|
||||
</Drawer.Root>
|
||||
);
|
||||
}
|
||||
```
|
||||
|
||||
## Documentation
|
||||
|
||||
Find the full API reference and examples in the [documentation](https://vaul.emilkowal.ski/getting-started).
|
||||
141
node_modules/vaul/dist/index.d.mts
generated
vendored
Normal file
141
node_modules/vaul/dist/index.d.mts
generated
vendored
Normal file
@ -0,0 +1,141 @@
|
||||
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
||||
import React from 'react';
|
||||
|
||||
interface WithFadeFromProps {
|
||||
/**
|
||||
* Array of numbers from 0 to 100 that corresponds to % of the screen a given snap point should take up.
|
||||
* Should go from least visible. Example `[0.2, 0.5, 0.8]`.
|
||||
* You can also use px values, which doesn't take screen height into account.
|
||||
*/
|
||||
snapPoints: (number | string)[];
|
||||
/**
|
||||
* Index of a `snapPoint` from which the overlay fade should be applied. Defaults to the last snap point.
|
||||
*/
|
||||
fadeFromIndex: number;
|
||||
}
|
||||
interface WithoutFadeFromProps {
|
||||
/**
|
||||
* Array of numbers from 0 to 100 that corresponds to % of the screen a given snap point should take up.
|
||||
* Should go from least visible. Example `[0.2, 0.5, 0.8]`.
|
||||
* You can also use px values, which doesn't take screen height into account.
|
||||
*/
|
||||
snapPoints?: (number | string)[];
|
||||
fadeFromIndex?: never;
|
||||
}
|
||||
type DialogProps = {
|
||||
activeSnapPoint?: number | string | null;
|
||||
setActiveSnapPoint?: (snapPoint: number | string | null) => void;
|
||||
children?: React.ReactNode;
|
||||
open?: boolean;
|
||||
/**
|
||||
* Number between 0 and 1 that determines when the drawer should be closed.
|
||||
* Example: threshold of 0.5 would close the drawer if the user swiped for 50% of the height of the drawer or more.
|
||||
* @default 0.25
|
||||
*/
|
||||
closeThreshold?: number;
|
||||
/**
|
||||
* When `true` the `body` doesn't get any styles assigned from Vaul
|
||||
*/
|
||||
noBodyStyles?: boolean;
|
||||
onOpenChange?: (open: boolean) => void;
|
||||
shouldScaleBackground?: boolean;
|
||||
/**
|
||||
* When `false` we don't change body's background color when the drawer is open.
|
||||
* @default true
|
||||
*/
|
||||
setBackgroundColorOnScale?: boolean;
|
||||
/**
|
||||
* Duration for which the drawer is not draggable after scrolling content inside of the drawer.
|
||||
* @default 500ms
|
||||
*/
|
||||
scrollLockTimeout?: number;
|
||||
/**
|
||||
* When `true`, don't move the drawer upwards if there's space, but rather only change it's height so it's fully scrollable when the keyboard is open
|
||||
*/
|
||||
fixed?: boolean;
|
||||
/**
|
||||
* When `true` only allows the drawer to be dragged by the `<Drawer.Handle />` component.
|
||||
* @default false
|
||||
*/
|
||||
handleOnly?: boolean;
|
||||
/**
|
||||
* When `false` dragging, clicking outside, pressing esc, etc. will not close the drawer.
|
||||
* Use this in comination with the `open` prop, otherwise you won't be able to open/close the drawer.
|
||||
* @default true
|
||||
*/
|
||||
dismissible?: boolean;
|
||||
onDrag?: (event: React.PointerEvent<HTMLDivElement>, percentageDragged: number) => void;
|
||||
onRelease?: (event: React.PointerEvent<HTMLDivElement>, open: boolean) => void;
|
||||
/**
|
||||
* When `false` it allows to interact with elements outside of the drawer without closing it.
|
||||
* @default true
|
||||
*/
|
||||
modal?: boolean;
|
||||
nested?: boolean;
|
||||
onClose?: () => void;
|
||||
/**
|
||||
* Direction of the drawer. Can be `top` or `bottom`, `left`, `right`.
|
||||
* @default 'bottom'
|
||||
*/
|
||||
direction?: 'top' | 'bottom' | 'left' | 'right';
|
||||
/**
|
||||
* Opened by default, skips initial enter animation. Still reacts to `open` state changes
|
||||
* @default false
|
||||
*/
|
||||
defaultOpen?: boolean;
|
||||
/**
|
||||
* When set to `true` prevents scrolling on the document body on mount, and restores it on unmount.
|
||||
* @default false
|
||||
*/
|
||||
disablePreventScroll?: boolean;
|
||||
/**
|
||||
* When `true` Vaul will reposition inputs rather than scroll then into view if the keyboard is in the way.
|
||||
* Setting it to `false` will fall back to the default browser behavior.
|
||||
* @default true when {@link snapPoints} is defined
|
||||
*/
|
||||
repositionInputs?: boolean;
|
||||
/**
|
||||
* Disabled velocity based swiping for snap points.
|
||||
* This means that a snap point won't be skipped even if the velocity is high enough.
|
||||
* Useful if each snap point in a drawer is equally important.
|
||||
* @default false
|
||||
*/
|
||||
snapToSequentialPoint?: boolean;
|
||||
container?: HTMLElement | null;
|
||||
/**
|
||||
* Gets triggered after the open or close animation ends, it receives an `open` argument with the `open` state of the drawer by the time the function was triggered.
|
||||
* Useful to revert any state changes for example.
|
||||
*/
|
||||
onAnimationEnd?: (open: boolean) => void;
|
||||
preventScrollRestoration?: boolean;
|
||||
autoFocus?: boolean;
|
||||
} & (WithFadeFromProps | WithoutFadeFromProps);
|
||||
declare function Root({ open: openProp, onOpenChange, children, onDrag: onDragProp, onRelease: onReleaseProp, snapPoints, shouldScaleBackground, setBackgroundColorOnScale, closeThreshold, scrollLockTimeout, dismissible, handleOnly, fadeFromIndex, activeSnapPoint: activeSnapPointProp, setActiveSnapPoint: setActiveSnapPointProp, fixed, modal, onClose, nested, noBodyStyles, direction, defaultOpen, disablePreventScroll, snapToSequentialPoint, preventScrollRestoration, repositionInputs, onAnimationEnd, container, autoFocus, }: DialogProps): React.JSX.Element;
|
||||
declare const Overlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
type ContentProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>;
|
||||
declare const Content: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
type HandleProps = React.ComponentPropsWithoutRef<'div'> & {
|
||||
preventCycle?: boolean;
|
||||
};
|
||||
declare const Handle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
||||
preventCycle?: boolean | undefined;
|
||||
} & React.RefAttributes<HTMLDivElement>>;
|
||||
declare function NestedRoot({ onDrag, onOpenChange, ...rest }: DialogProps): React.JSX.Element;
|
||||
type PortalProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Portal>;
|
||||
declare function Portal(props: PortalProps): React.JSX.Element;
|
||||
declare const Drawer: {
|
||||
Root: typeof Root;
|
||||
NestedRoot: typeof NestedRoot;
|
||||
Content: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
Overlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
Trigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
||||
Portal: typeof Portal;
|
||||
Handle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
||||
preventCycle?: boolean | undefined;
|
||||
} & React.RefAttributes<HTMLDivElement>>;
|
||||
Close: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
||||
Title: React.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
||||
Description: React.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
||||
};
|
||||
|
||||
export { Content, type ContentProps, type DialogProps, Drawer, Handle, type HandleProps, NestedRoot, Overlay, Portal, Root, type WithFadeFromProps, type WithoutFadeFromProps };
|
||||
141
node_modules/vaul/dist/index.d.ts
generated
vendored
Normal file
141
node_modules/vaul/dist/index.d.ts
generated
vendored
Normal file
@ -0,0 +1,141 @@
|
||||
import * as DialogPrimitive from '@radix-ui/react-dialog';
|
||||
import React from 'react';
|
||||
|
||||
interface WithFadeFromProps {
|
||||
/**
|
||||
* Array of numbers from 0 to 100 that corresponds to % of the screen a given snap point should take up.
|
||||
* Should go from least visible. Example `[0.2, 0.5, 0.8]`.
|
||||
* You can also use px values, which doesn't take screen height into account.
|
||||
*/
|
||||
snapPoints: (number | string)[];
|
||||
/**
|
||||
* Index of a `snapPoint` from which the overlay fade should be applied. Defaults to the last snap point.
|
||||
*/
|
||||
fadeFromIndex: number;
|
||||
}
|
||||
interface WithoutFadeFromProps {
|
||||
/**
|
||||
* Array of numbers from 0 to 100 that corresponds to % of the screen a given snap point should take up.
|
||||
* Should go from least visible. Example `[0.2, 0.5, 0.8]`.
|
||||
* You can also use px values, which doesn't take screen height into account.
|
||||
*/
|
||||
snapPoints?: (number | string)[];
|
||||
fadeFromIndex?: never;
|
||||
}
|
||||
type DialogProps = {
|
||||
activeSnapPoint?: number | string | null;
|
||||
setActiveSnapPoint?: (snapPoint: number | string | null) => void;
|
||||
children?: React.ReactNode;
|
||||
open?: boolean;
|
||||
/**
|
||||
* Number between 0 and 1 that determines when the drawer should be closed.
|
||||
* Example: threshold of 0.5 would close the drawer if the user swiped for 50% of the height of the drawer or more.
|
||||
* @default 0.25
|
||||
*/
|
||||
closeThreshold?: number;
|
||||
/**
|
||||
* When `true` the `body` doesn't get any styles assigned from Vaul
|
||||
*/
|
||||
noBodyStyles?: boolean;
|
||||
onOpenChange?: (open: boolean) => void;
|
||||
shouldScaleBackground?: boolean;
|
||||
/**
|
||||
* When `false` we don't change body's background color when the drawer is open.
|
||||
* @default true
|
||||
*/
|
||||
setBackgroundColorOnScale?: boolean;
|
||||
/**
|
||||
* Duration for which the drawer is not draggable after scrolling content inside of the drawer.
|
||||
* @default 500ms
|
||||
*/
|
||||
scrollLockTimeout?: number;
|
||||
/**
|
||||
* When `true`, don't move the drawer upwards if there's space, but rather only change it's height so it's fully scrollable when the keyboard is open
|
||||
*/
|
||||
fixed?: boolean;
|
||||
/**
|
||||
* When `true` only allows the drawer to be dragged by the `<Drawer.Handle />` component.
|
||||
* @default false
|
||||
*/
|
||||
handleOnly?: boolean;
|
||||
/**
|
||||
* When `false` dragging, clicking outside, pressing esc, etc. will not close the drawer.
|
||||
* Use this in comination with the `open` prop, otherwise you won't be able to open/close the drawer.
|
||||
* @default true
|
||||
*/
|
||||
dismissible?: boolean;
|
||||
onDrag?: (event: React.PointerEvent<HTMLDivElement>, percentageDragged: number) => void;
|
||||
onRelease?: (event: React.PointerEvent<HTMLDivElement>, open: boolean) => void;
|
||||
/**
|
||||
* When `false` it allows to interact with elements outside of the drawer without closing it.
|
||||
* @default true
|
||||
*/
|
||||
modal?: boolean;
|
||||
nested?: boolean;
|
||||
onClose?: () => void;
|
||||
/**
|
||||
* Direction of the drawer. Can be `top` or `bottom`, `left`, `right`.
|
||||
* @default 'bottom'
|
||||
*/
|
||||
direction?: 'top' | 'bottom' | 'left' | 'right';
|
||||
/**
|
||||
* Opened by default, skips initial enter animation. Still reacts to `open` state changes
|
||||
* @default false
|
||||
*/
|
||||
defaultOpen?: boolean;
|
||||
/**
|
||||
* When set to `true` prevents scrolling on the document body on mount, and restores it on unmount.
|
||||
* @default false
|
||||
*/
|
||||
disablePreventScroll?: boolean;
|
||||
/**
|
||||
* When `true` Vaul will reposition inputs rather than scroll then into view if the keyboard is in the way.
|
||||
* Setting it to `false` will fall back to the default browser behavior.
|
||||
* @default true when {@link snapPoints} is defined
|
||||
*/
|
||||
repositionInputs?: boolean;
|
||||
/**
|
||||
* Disabled velocity based swiping for snap points.
|
||||
* This means that a snap point won't be skipped even if the velocity is high enough.
|
||||
* Useful if each snap point in a drawer is equally important.
|
||||
* @default false
|
||||
*/
|
||||
snapToSequentialPoint?: boolean;
|
||||
container?: HTMLElement | null;
|
||||
/**
|
||||
* Gets triggered after the open or close animation ends, it receives an `open` argument with the `open` state of the drawer by the time the function was triggered.
|
||||
* Useful to revert any state changes for example.
|
||||
*/
|
||||
onAnimationEnd?: (open: boolean) => void;
|
||||
preventScrollRestoration?: boolean;
|
||||
autoFocus?: boolean;
|
||||
} & (WithFadeFromProps | WithoutFadeFromProps);
|
||||
declare function Root({ open: openProp, onOpenChange, children, onDrag: onDragProp, onRelease: onReleaseProp, snapPoints, shouldScaleBackground, setBackgroundColorOnScale, closeThreshold, scrollLockTimeout, dismissible, handleOnly, fadeFromIndex, activeSnapPoint: activeSnapPointProp, setActiveSnapPoint: setActiveSnapPointProp, fixed, modal, onClose, nested, noBodyStyles, direction, defaultOpen, disablePreventScroll, snapToSequentialPoint, preventScrollRestoration, repositionInputs, onAnimationEnd, container, autoFocus, }: DialogProps): React.JSX.Element;
|
||||
declare const Overlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
type ContentProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Content>;
|
||||
declare const Content: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
type HandleProps = React.ComponentPropsWithoutRef<'div'> & {
|
||||
preventCycle?: boolean;
|
||||
};
|
||||
declare const Handle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
||||
preventCycle?: boolean | undefined;
|
||||
} & React.RefAttributes<HTMLDivElement>>;
|
||||
declare function NestedRoot({ onDrag, onOpenChange, ...rest }: DialogProps): React.JSX.Element;
|
||||
type PortalProps = React.ComponentPropsWithoutRef<typeof DialogPrimitive.Portal>;
|
||||
declare function Portal(props: PortalProps): React.JSX.Element;
|
||||
declare const Drawer: {
|
||||
Root: typeof Root;
|
||||
NestedRoot: typeof NestedRoot;
|
||||
Content: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
Overlay: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogOverlayProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
||||
Trigger: React.ForwardRefExoticComponent<DialogPrimitive.DialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
|
||||
Portal: typeof Portal;
|
||||
Handle: React.ForwardRefExoticComponent<Omit<React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement>, "ref"> & {
|
||||
preventCycle?: boolean | undefined;
|
||||
} & React.RefAttributes<HTMLDivElement>>;
|
||||
Close: React.ForwardRefExoticComponent<DialogPrimitive.DialogCloseProps & React.RefAttributes<HTMLButtonElement>>;
|
||||
Title: React.ForwardRefExoticComponent<DialogPrimitive.DialogTitleProps & React.RefAttributes<HTMLHeadingElement>>;
|
||||
Description: React.ForwardRefExoticComponent<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>>;
|
||||
};
|
||||
|
||||
export { Content, type ContentProps, type DialogProps, Drawer, Handle, type HandleProps, NestedRoot, Overlay, Portal, Root, type WithFadeFromProps, type WithoutFadeFromProps };
|
||||
1681
node_modules/vaul/dist/index.js
generated
vendored
Normal file
1681
node_modules/vaul/dist/index.js
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
1653
node_modules/vaul/dist/index.mjs
generated
vendored
Normal file
1653
node_modules/vaul/dist/index.mjs
generated
vendored
Normal file
File diff suppressed because one or more lines are too long
69
node_modules/vaul/package.json
generated
vendored
Normal file
69
node_modules/vaul/package.json
generated
vendored
Normal file
@ -0,0 +1,69 @@
|
||||
{
|
||||
"name": "vaul",
|
||||
"version": "1.1.1",
|
||||
"description": "Drawer component for React.",
|
||||
"main": "./dist/index.js",
|
||||
"module": "./dist/index.mjs",
|
||||
"types": "./dist/index.d.ts",
|
||||
"files": [
|
||||
"dist",
|
||||
"style.css"
|
||||
],
|
||||
"exports": {
|
||||
"import": {
|
||||
"types": "./dist/index.d.mts",
|
||||
"default": "./dist/index.mjs"
|
||||
},
|
||||
"require": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"default": "./dist/index.js"
|
||||
}
|
||||
},
|
||||
"scripts": {
|
||||
"type-check": "tsc --noEmit",
|
||||
"build": "pnpm type-check && bunchee && pnpm copy-assets",
|
||||
"copy-assets": "cp -r ./src/style.css ./style.css",
|
||||
"dev": "bunchee --watch",
|
||||
"dev:test": "turbo run dev --filter=test...",
|
||||
"format": "prettier --write .",
|
||||
"test": "playwright test"
|
||||
},
|
||||
"keywords": [
|
||||
"react",
|
||||
"drawer",
|
||||
"dialog",
|
||||
"modal"
|
||||
],
|
||||
"author": "Emil Kowalski <e@emilkowal.ski>",
|
||||
"license": "MIT",
|
||||
"homepage": "https://vaul.emilkowal.ski/",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/emilkowalski/vaul.git"
|
||||
},
|
||||
"bugs": {
|
||||
"url": "https://github.com/emilkowalski/vaul/issues"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@playwright/test": "^1.37.1",
|
||||
"@radix-ui/react-dialog": "^1.0.4",
|
||||
"@types/node": "20.5.7",
|
||||
"@types/react": "18.2.55",
|
||||
"@types/react-dom": "18.2.18",
|
||||
"bunchee": "^5.1.5",
|
||||
"eslint": "^7.32.0",
|
||||
"prettier": "^2.5.1",
|
||||
"react": "^18.2.0",
|
||||
"react-dom": "^18.2.0",
|
||||
"turbo": "1.6",
|
||||
"typescript": "5.2.2"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0",
|
||||
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0"
|
||||
},
|
||||
"packageManager": "pnpm@8.8.0",
|
||||
"dependencies": {
|
||||
"@radix-ui/react-dialog": "^1.1.1"
|
||||
}
|
||||
}
|
||||
256
node_modules/vaul/style.css
generated
vendored
Normal file
256
node_modules/vaul/style.css
generated
vendored
Normal file
@ -0,0 +1,256 @@
|
||||
[data-vaul-drawer] {
|
||||
touch-action: none;
|
||||
will-change: transform;
|
||||
transition: transform 0.5s cubic-bezier(0.32, 0.72, 0, 1);
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='bottom'][data-state='open'] {
|
||||
animation-name: slideFromBottom;
|
||||
}
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='bottom'][data-state='closed'] {
|
||||
animation-name: slideToBottom;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='top'][data-state='open'] {
|
||||
animation-name: slideFromTop;
|
||||
}
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='top'][data-state='closed'] {
|
||||
animation-name: slideToTop;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='left'][data-state='open'] {
|
||||
animation-name: slideFromLeft;
|
||||
}
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='left'][data-state='closed'] {
|
||||
animation-name: slideToLeft;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='right'][data-state='open'] {
|
||||
animation-name: slideFromRight;
|
||||
}
|
||||
[data-vaul-drawer][data-vaul-snap-points='false'][data-vaul-drawer-direction='right'][data-state='closed'] {
|
||||
animation-name: slideToRight;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='true'][data-vaul-drawer-direction='bottom'] {
|
||||
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='true'][data-vaul-drawer-direction='top'] {
|
||||
transform: translate3d(0, calc(var(--initial-transform, 100%) * -1), 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='true'][data-vaul-drawer-direction='left'] {
|
||||
transform: translate3d(calc(var(--initial-transform, 100%) * -1), 0, 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-snap-points='true'][data-vaul-drawer-direction='right'] {
|
||||
transform: translate3d(var(--initial-transform, 100%), 0, 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-delayed-snap-points='true'][data-vaul-drawer-direction='top'] {
|
||||
transform: translate3d(0, var(--snap-point-height, 0), 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-delayed-snap-points='true'][data-vaul-drawer-direction='bottom'] {
|
||||
transform: translate3d(0, var(--snap-point-height, 0), 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-delayed-snap-points='true'][data-vaul-drawer-direction='left'] {
|
||||
transform: translate3d(var(--snap-point-height, 0), 0, 0);
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-delayed-snap-points='true'][data-vaul-drawer-direction='right'] {
|
||||
transform: translate3d(var(--snap-point-height, 0), 0, 0);
|
||||
}
|
||||
|
||||
[data-vaul-overlay][data-vaul-snap-points='false'] {
|
||||
animation-duration: 0.5s;
|
||||
animation-timing-function: cubic-bezier(0.32, 0.72, 0, 1);
|
||||
}
|
||||
[data-vaul-overlay][data-vaul-snap-points='false'][data-state='open'] {
|
||||
animation-name: fadeIn;
|
||||
}
|
||||
[data-vaul-overlay][data-state='closed'] {
|
||||
animation-name: fadeOut;
|
||||
}
|
||||
|
||||
[data-vaul-animate='false'] {
|
||||
animation: none !important;
|
||||
}
|
||||
|
||||
[data-vaul-overlay][data-vaul-snap-points='true'] {
|
||||
opacity: 0;
|
||||
transition: opacity 0.5s cubic-bezier(0.32, 0.72, 0, 1);
|
||||
}
|
||||
|
||||
[data-vaul-overlay][data-vaul-snap-points='true'] {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[data-vaul-drawer]:not([data-vaul-custom-container='true'])::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
background: inherit;
|
||||
background-color: inherit;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-drawer-direction='top']::after {
|
||||
top: initial;
|
||||
bottom: 100%;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 200%;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-drawer-direction='bottom']::after {
|
||||
top: 100%;
|
||||
bottom: initial;
|
||||
left: 0;
|
||||
right: 0;
|
||||
height: 200%;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-drawer-direction='left']::after {
|
||||
left: initial;
|
||||
right: 100%;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 200%;
|
||||
}
|
||||
|
||||
[data-vaul-drawer][data-vaul-drawer-direction='right']::after {
|
||||
left: 100%;
|
||||
right: initial;
|
||||
top: 0;
|
||||
bottom: 0;
|
||||
width: 200%;
|
||||
}
|
||||
|
||||
[data-vaul-overlay][data-vaul-snap-points='true']:not([data-vaul-snap-points-overlay='true']):not(
|
||||
[data-state='closed']
|
||||
) {
|
||||
opacity: 0;
|
||||
}
|
||||
|
||||
[data-vaul-overlay][data-vaul-snap-points-overlay='true'] {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[data-vaul-handle] {
|
||||
display: block;
|
||||
position: relative;
|
||||
opacity: 0.7;
|
||||
background: #e2e2e4;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
height: 5px;
|
||||
width: 32px;
|
||||
border-radius: 1rem;
|
||||
touch-action: pan-y;
|
||||
}
|
||||
|
||||
[data-vaul-handle]:hover,
|
||||
[data-vaul-handle]:active {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
[data-vaul-handle-hitarea] {
|
||||
position: absolute;
|
||||
left: 50%;
|
||||
top: 50%;
|
||||
transform: translate(-50%, -50%);
|
||||
width: max(100%, 2.75rem); /* 44px */
|
||||
height: max(100%, 2.75rem); /* 44px */
|
||||
touch-action: inherit;
|
||||
}
|
||||
|
||||
@media (hover: hover) and (pointer: fine) {
|
||||
[data-vaul-drawer] {
|
||||
user-select: none;
|
||||
}
|
||||
}
|
||||
|
||||
@media (pointer: fine) {
|
||||
[data-vaul-handle-hitarea]: {
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeIn {
|
||||
from {
|
||||
opacity: 0;
|
||||
}
|
||||
to {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes fadeOut {
|
||||
to {
|
||||
opacity: 0;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideFromBottom {
|
||||
from {
|
||||
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideToBottom {
|
||||
to {
|
||||
transform: translate3d(0, var(--initial-transform, 100%), 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideFromTop {
|
||||
from {
|
||||
transform: translate3d(0, calc(var(--initial-transform, 100%) * -1), 0);
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideToTop {
|
||||
to {
|
||||
transform: translate3d(0, calc(var(--initial-transform, 100%) * -1), 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideFromLeft {
|
||||
from {
|
||||
transform: translate3d(calc(var(--initial-transform, 100%) * -1), 0, 0);
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideToLeft {
|
||||
to {
|
||||
transform: translate3d(calc(var(--initial-transform, 100%) * -1), 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideFromRight {
|
||||
from {
|
||||
transform: translate3d(var(--initial-transform, 100%), 0, 0);
|
||||
}
|
||||
to {
|
||||
transform: translate3d(0, 0, 0);
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes slideToRight {
|
||||
to {
|
||||
transform: translate3d(var(--initial-transform, 100%), 0, 0);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user