@validationcloud/fractal-ui 1.14.0 → 1.14.1
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.
|
@@ -1,20 +1,20 @@
|
|
|
1
|
-
import { ScrollArea } from 'radix-ui';
|
|
1
|
+
import { ScrollArea as RadixScrollArea } from 'radix-ui';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
|
-
type ScrollAreaRootProps = {} & React.ComponentPropsWithoutRef<typeof
|
|
3
|
+
type ScrollAreaRootProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Root>;
|
|
4
4
|
export declare function Root({ className, ...props }: ScrollAreaRootProps): import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
type ScrollAreaViewportProps = {} & React.ComponentPropsWithoutRef<typeof
|
|
5
|
+
type ScrollAreaViewportProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Viewport>;
|
|
6
6
|
export declare function Viewport({ className, ...props }: ScrollAreaViewportProps): import("react/jsx-runtime").JSX.Element;
|
|
7
|
-
type ScrollAreaScrollbarProps = {} & React.ComponentPropsWithoutRef<typeof
|
|
7
|
+
type ScrollAreaScrollbarProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Scrollbar>;
|
|
8
8
|
export declare function Scrollbar({ className, ...props }: ScrollAreaScrollbarProps): import("react/jsx-runtime").JSX.Element;
|
|
9
|
-
type ScrollAreaThumbProps = {} & React.ComponentPropsWithoutRef<typeof
|
|
9
|
+
type ScrollAreaThumbProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Thumb>;
|
|
10
10
|
export declare function Thumb({ className, ...props }: ScrollAreaThumbProps): import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
type ScrollAreaCornerProps = {} & React.ComponentPropsWithoutRef<typeof
|
|
11
|
+
type ScrollAreaCornerProps = {} & React.ComponentPropsWithoutRef<typeof RadixScrollArea.Corner>;
|
|
12
12
|
export declare function Corner({ className, ...props }: ScrollAreaCornerProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
-
declare const
|
|
13
|
+
export declare const ScrollArea: {
|
|
14
14
|
Root: typeof Root;
|
|
15
15
|
Viewport: typeof Viewport;
|
|
16
16
|
Scrollbar: typeof Scrollbar;
|
|
17
17
|
Thumb: typeof Thumb;
|
|
18
18
|
Corner: typeof Corner;
|
|
19
19
|
};
|
|
20
|
-
export
|
|
20
|
+
export {};
|
package/dist/index.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ export { Badge } from './components/badge/badge';
|
|
|
2
2
|
export { Box } from './components/box/box';
|
|
3
3
|
export { Button } from './components/button/button';
|
|
4
4
|
export { DecoratedIcon } from './components/decorated-icon/decorated-icon';
|
|
5
|
-
export {
|
|
5
|
+
export { ScrollArea } from './components/scroll-area/scroll-area';
|
|
6
6
|
export { Icon } from './components/icon/icon';
|
|
7
7
|
export { InputButton } from './components/input-button/input-button';
|
|
8
8
|
export { MountSvgSprite } from './components/mount-svg-sprite/mount-svg-sprite';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@validationcloud/fractal-ui",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.14.
|
|
4
|
+
"version": "1.14.1",
|
|
5
5
|
"module": "./dist/fractal-ui.js",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"files": [
|
|
@@ -15,7 +15,9 @@
|
|
|
15
15
|
"lint": "eslint .",
|
|
16
16
|
"preview": "vite preview",
|
|
17
17
|
"storybook": "storybook dev -p 6006",
|
|
18
|
-
"build-storybook": "storybook build"
|
|
18
|
+
"build-storybook": "storybook build",
|
|
19
|
+
"format": "prettier --write .",
|
|
20
|
+
"typecheck": "tsc --noEmit"
|
|
19
21
|
},
|
|
20
22
|
"exports": {
|
|
21
23
|
".": {
|