@trackunit/react-drawer 1.7.53 → 1.7.54
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-drawer",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.54",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"react": "19.0.0",
|
|
11
11
|
"react-swipeable": "^7.0.1",
|
|
12
|
-
"@trackunit/react-components": "1.9.
|
|
13
|
-
"@trackunit/css-class-variance-utilities": "1.7.
|
|
14
|
-
"@trackunit/ui-icons": "1.7.
|
|
15
|
-
"@trackunit/i18n-library-translation": "1.7.
|
|
16
|
-
"@trackunit/react-test-setup": "1.4.
|
|
12
|
+
"@trackunit/react-components": "1.9.54",
|
|
13
|
+
"@trackunit/css-class-variance-utilities": "1.7.38",
|
|
14
|
+
"@trackunit/ui-icons": "1.7.39",
|
|
15
|
+
"@trackunit/i18n-library-translation": "1.7.45",
|
|
16
|
+
"@trackunit/react-test-setup": "1.4.38"
|
|
17
17
|
},
|
|
18
18
|
"module": "./index.esm.js",
|
|
19
19
|
"main": "./index.cjs.js",
|
|
@@ -1,10 +1,26 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { StoryObj } from "@storybook/react-webpack5";
|
|
2
|
+
import { ReactElement } from "react";
|
|
2
3
|
import { SwipeableDrawer } from "../SwipeableDrawer/SwipeableDrawer";
|
|
3
|
-
import { Drawer } from "./Drawer";
|
|
4
|
+
import { Drawer, type DrawerProps } from "./Drawer";
|
|
4
5
|
type Story = StoryObj<typeof Drawer | typeof SwipeableDrawer>;
|
|
5
|
-
declare const meta:
|
|
6
|
+
declare const meta: {
|
|
7
|
+
title: string;
|
|
8
|
+
component: {
|
|
9
|
+
({ open, onClose, hasOverlay, position, children, dataTestId, className, renderInPortal, keepMountedWhenClosed, containerClassName, ref, ...others }: DrawerProps): import("react/jsx-runtime").JSX.Element | null;
|
|
10
|
+
displayName: string;
|
|
11
|
+
};
|
|
12
|
+
tags: string[];
|
|
13
|
+
parameters: {
|
|
14
|
+
docs: {
|
|
15
|
+
source: {
|
|
16
|
+
type: string;
|
|
17
|
+
excludeDecorators: boolean;
|
|
18
|
+
};
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
6
22
|
export default meta;
|
|
7
|
-
export declare const
|
|
23
|
+
export declare const PackageName: () => ReactElement;
|
|
8
24
|
export declare const Default: Story;
|
|
9
25
|
export declare const InPortal: Story;
|
|
10
26
|
export declare const Toggleable: Story;
|