@validationcloud/fractal-ui 1.14.0 → 1.15.0

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 ScrollArea.Root>;
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 ScrollArea.Viewport>;
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 ScrollArea.Scrollbar>;
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 ScrollArea.Thumb>;
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 ScrollArea.Corner>;
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 _default: {
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 default _default;
20
+ export {};
@@ -1,5 +1,5 @@
1
1
  import { Meta, StoryObj } from '@storybook/react';
2
- import { default as ScrollArea } from './scroll-area';
2
+ import { ScrollArea } from './scroll-area';
3
3
  declare const meta: Meta<typeof ScrollArea.Root>;
4
4
  export default meta;
5
5
  type Story = StoryObj<typeof meta>;
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 { default as ScrollArea } from './components/scroll-area/scroll-area';
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';
@@ -76,6 +76,7 @@
76
76
  linear-gradient(0deg, #23222e -9.23%, #303047 110.36%);
77
77
  --background-image-gradient12: linear-gradient(269deg, #fff 11.19%, #e4e7f5 50.65%, #d2d8ee 76.77%, #3d476d 112.51%);
78
78
  --background-image-gradient13: radial-gradient(circle, #1a1d1f 0%, #1a1d1f 45%, #6f767e 100%);
79
+ --background-image-gradient14: linear-gradient(327deg, #fff 0%, #e4e7f5 38.95%, #d2d8ee 64.79%, #3d476d 100%);
79
80
  --background-image-angular: conic-gradient(
80
81
  from 180deg at 50% 50%,
81
82
  #eb9eab 0deg,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@validationcloud/fractal-ui",
3
3
  "private": false,
4
- "version": "1.14.0",
4
+ "version": "1.15.0",
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
  ".": {