@digo-labs/ui 0.1.17 → 0.1.19

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.
Files changed (35) hide show
  1. package/dist/aws/aws-block-group.d.ts +22 -0
  2. package/dist/aws/aws-block.d.ts +21 -0
  3. package/dist/aws/aws-shape.d.ts +13 -0
  4. package/dist/blocks/drawing-toolbar.d.ts +35 -0
  5. package/dist/blocks/toolbar-items.d.ts +78 -0
  6. package/dist/components/carousel.d.ts +39 -0
  7. package/dist/components/drawing-canvas.d.ts +9 -0
  8. package/dist/components/lottie.d.ts +26 -0
  9. package/dist/components/toolbar.d.ts +41 -0
  10. package/dist/effects/brick-grid.d.ts +47 -0
  11. package/dist/effects/brick.d.ts +28 -0
  12. package/dist/index.d.ts +13 -1
  13. package/dist/index.js +8103 -5166
  14. package/dist/index.js.map +1 -1
  15. package/dist/providers/aws-unit-provider.d.ts +8 -0
  16. package/dist/providers/drawing-provider.d.ts +91 -0
  17. package/dist/styles/aws-block-group.d.ts +45 -0
  18. package/dist/styles/aws-block.d.ts +45 -0
  19. package/dist/styles/aws-shape.d.ts +45 -0
  20. package/dist/styles/brick-grid.d.ts +85 -0
  21. package/dist/styles/brick.d.ts +61 -0
  22. package/dist/styles/carousel.d.ts +107 -0
  23. package/dist/styles/command.d.ts +5 -5
  24. package/dist/styles/drawing-canvas.d.ts +53 -0
  25. package/dist/styles/index.d.ts +10 -0
  26. package/dist/styles/lottie.d.ts +37 -0
  27. package/dist/styles/menu.d.ts +5 -5
  28. package/dist/styles/toolbar-items.d.ts +117 -0
  29. package/dist/styles/toolbar.d.ts +173 -0
  30. package/dist/utils/brick-grid-helpers.d.ts +62 -0
  31. package/dist/utils/carousel-helpers.d.ts +17 -0
  32. package/dist/utils/drawing-helpers.d.ts +31 -0
  33. package/dist/utils/motion-presets.d.ts +5 -0
  34. package/package.json +4 -4
  35. package/dist/outdated/lottie.d.ts +0 -8
@@ -0,0 +1,22 @@
1
+ import { AwsBlockGroupBehavior, AwsBlockGroupFit, AwsBlockIdentity, AwsBlockPose } from '@digo-labs/common';
2
+ import { CSSProperties } from 'react';
3
+ import { Transition } from 'motion/react';
4
+ import { AwsBlockTransition } from './aws-block';
5
+ import { ComponentStylesProps } from '../utils/styles';
6
+ export interface AwsBlockGroupTransition extends AwsBlockTransition {
7
+ move: Transition;
8
+ }
9
+ type Properties = RootProperties & ComponentStylesProps<'awsBlockGroup'>;
10
+ export declare function AwsBlockGroup(properties: Properties): import("react").JSX.Element;
11
+ interface RootProperties {
12
+ blocks: Record<string, AwsBlockIdentity>;
13
+ poses: AwsBlockPose[];
14
+ behavior?: AwsBlockGroupBehavior;
15
+ pose?: number;
16
+ onPose?: (pose: number) => void;
17
+ fit?: AwsBlockGroupFit;
18
+ transition?: Partial<AwsBlockGroupTransition>;
19
+ className?: string;
20
+ style?: CSSProperties;
21
+ }
22
+ export {};
@@ -0,0 +1,21 @@
1
+ import { AwsBlockSize, AwsGlyphFamily, AwsGlyphStage, AwsPaletteColor } from '@digo-labs/common';
2
+ import { CSSProperties } from 'react';
3
+ import { Transition } from 'motion/react';
4
+ import { ComponentStylesProps } from '../utils/styles';
5
+ export interface AwsBlockTransition {
6
+ enter: Transition;
7
+ resize: Transition;
8
+ }
9
+ type Properties = RootProperties & ComponentStylesProps<'awsBlock'>;
10
+ export declare function AwsBlock(properties: Properties): import("react").JSX.Element;
11
+ interface RootProperties {
12
+ color?: AwsPaletteColor;
13
+ size?: AwsBlockSize;
14
+ family?: AwsGlyphFamily;
15
+ stage?: AwsGlyphStage;
16
+ onStage?: (stage: AwsGlyphStage) => void;
17
+ transition?: Partial<AwsBlockTransition>;
18
+ className?: string;
19
+ style?: CSSProperties;
20
+ }
21
+ export {};
@@ -0,0 +1,13 @@
1
+ import { AwsGlyphFamily, AwsGlyphStage } from '@digo-labs/common';
2
+ import { CSSProperties } from 'react';
3
+ import { ComponentStylesProps } from '../utils/styles';
4
+ type Properties = RootProperties & ComponentStylesProps<'awsShape'>;
5
+ export declare function AwsShape(properties: Properties): import("react").JSX.Element;
6
+ interface RootProperties {
7
+ family: AwsGlyphFamily;
8
+ stage?: AwsGlyphStage;
9
+ onStage?: (stage: AwsGlyphStage) => void;
10
+ className?: string;
11
+ style?: CSSProperties;
12
+ }
13
+ export {};
@@ -0,0 +1,35 @@
1
+ import { ClearToolbarItem, HistoryToolbarItems, Icon, RedoToolbarItem, Toolbar, ToolbarToggle, UndoToolbarItem, ZoomToolbarItem } from '..';
2
+ import { ComponentProps } from 'react';
3
+ import { DrawingTool } from '../providers/drawing-provider';
4
+ interface Properties extends ComponentProps<typeof Toolbar> {
5
+ minSize?: number;
6
+ maxSize?: number;
7
+ palette?: string[];
8
+ withCustomColor?: boolean;
9
+ }
10
+ export declare function DrawingToolbar(properties: Properties): import("react").JSX.Element;
11
+ interface DrawingToolbarToolProperties extends ComponentProps<typeof ToolbarToggle> {
12
+ tool: DrawingTool;
13
+ icon?: ComponentProps<typeof Icon>['icon'];
14
+ }
15
+ export declare function DrawingToolbarTool(properties: DrawingToolbarToolProperties): import("react").JSX.Element;
16
+ interface DrawingToolbarPenProperties {
17
+ minSize?: number;
18
+ maxSize?: number;
19
+ palette?: string[];
20
+ withCustomColor?: boolean;
21
+ className?: string;
22
+ }
23
+ export declare function DrawingToolbarPen(properties: DrawingToolbarPenProperties): import("react").JSX.Element;
24
+ interface DrawingToolbarEraserProperties {
25
+ minSize?: number;
26
+ maxSize?: number;
27
+ className?: string;
28
+ }
29
+ export declare function DrawingToolbarEraser(properties: DrawingToolbarEraserProperties): import("react").JSX.Element;
30
+ export declare function DrawingToolbarHistory(properties: ComponentProps<typeof HistoryToolbarItems>): import("react").JSX.Element;
31
+ export declare function DrawingToolbarUndo(properties: ComponentProps<typeof UndoToolbarItem>): import("react").JSX.Element;
32
+ export declare function DrawingToolbarRedo(properties: ComponentProps<typeof RedoToolbarItem>): import("react").JSX.Element;
33
+ export declare function DrawingToolbarClear(properties: ComponentProps<typeof ClearToolbarItem>): import("react").JSX.Element;
34
+ export declare function DrawingToolbarZoom(properties: ComponentProps<typeof ZoomToolbarItem>): import("react").JSX.Element;
35
+ export {};
@@ -0,0 +1,78 @@
1
+ import { ToolbarButton, ToolbarGroup } from '..';
2
+ import { ComponentProps } from 'react';
3
+ import { DrawingEraserMode } from '../providers/drawing-provider';
4
+ import { ComponentStylesProps } from '../utils/styles';
5
+ export declare const DEFAULT_TOOLBAR_MIN_SIZE = 2;
6
+ export declare const DEFAULT_TOOLBAR_MAX_SIZE = 24;
7
+ export declare const DEFAULT_TOOLBAR_COLORS: string[];
8
+ type ToolbarSizeIconProperties = ToolbarSizeIconRootProperties & ComponentStylesProps<'toolbarItems'>;
9
+ export declare function ToolbarSizeIcon(properties: ToolbarSizeIconProperties): import("react").JSX.Element;
10
+ interface ToolbarSizeIconRootProperties {
11
+ size?: number;
12
+ min?: number;
13
+ max?: number;
14
+ className?: string;
15
+ }
16
+ type ToolbarSizesProperties = ToolbarSizesRootProperties & ComponentStylesProps<'toolbarItems'>;
17
+ export declare function ToolbarSizes(properties: ToolbarSizesProperties): import("react").JSX.Element;
18
+ interface ToolbarSizesRootProperties {
19
+ value?: number;
20
+ onValueChange?: (size: number) => void;
21
+ min?: number;
22
+ max?: number;
23
+ disabled?: boolean;
24
+ className?: string;
25
+ }
26
+ type ToolbarColorsProperties = ToolbarColorsRootProperties & ComponentStylesProps<'toolbarItems'>;
27
+ export declare function ToolbarColors(properties: ToolbarColorsProperties): import("react").JSX.Element;
28
+ interface ToolbarColorsRootProperties {
29
+ colors?: string[];
30
+ value?: string;
31
+ onValueChange?: (color: string) => void;
32
+ withCustom?: boolean;
33
+ className?: string;
34
+ }
35
+ type PenToolbarItemProperties = PenToolbarItemRootProperties & ComponentStylesProps<'toolbarItems'>;
36
+ export declare function PenToolbarItem(properties: PenToolbarItemProperties): import("react").JSX.Element;
37
+ interface PenToolbarItemRootProperties {
38
+ pressed?: boolean;
39
+ onPressedChange?: (pressed: boolean) => void;
40
+ color?: string;
41
+ onColorChange?: (color: string) => void;
42
+ size?: number;
43
+ onSizeChange?: (size: number) => void;
44
+ minSize?: number;
45
+ maxSize?: number;
46
+ palette?: string[];
47
+ withCustomColor?: boolean;
48
+ classNames?: ComponentStylesProps<'toolbarItems'>['classNames'];
49
+ className?: string;
50
+ }
51
+ type EraserToolbarItemProperties = EraserToolbarItemRootProperties & ComponentStylesProps<'toolbarItems'>;
52
+ export declare function EraserToolbarItem(properties: EraserToolbarItemProperties): import("react").JSX.Element;
53
+ interface EraserToolbarItemRootProperties {
54
+ pressed?: boolean;
55
+ onPressedChange?: (pressed: boolean) => void;
56
+ size?: number;
57
+ onSizeChange?: (size: number) => void;
58
+ minSize?: number;
59
+ maxSize?: number;
60
+ mode?: DrawingEraserMode;
61
+ onModeChange?: (mode: DrawingEraserMode) => void;
62
+ classNames?: ComponentStylesProps<'toolbarItems'>['classNames'];
63
+ className?: string;
64
+ }
65
+ type ZoomToolbarItemProperties = ZoomToolbarItemRootProperties & ComponentStylesProps<'toolbarItems'>;
66
+ export declare function ZoomToolbarItem(properties: ZoomToolbarItemProperties): import("react").JSX.Element;
67
+ interface ZoomToolbarItemRootProperties {
68
+ zoom?: number;
69
+ onZoomIn?: () => void;
70
+ onZoomOut?: () => void;
71
+ onFit?: () => void;
72
+ className?: string;
73
+ }
74
+ export declare function UndoToolbarItem(properties: ComponentProps<typeof ToolbarButton>): import("react").JSX.Element;
75
+ export declare function RedoToolbarItem(properties: ComponentProps<typeof ToolbarButton>): import("react").JSX.Element;
76
+ export declare function ClearToolbarItem(properties: ComponentProps<typeof ToolbarButton>): import("react").JSX.Element;
77
+ export declare function HistoryToolbarItems(properties: ComponentProps<typeof ToolbarGroup>): import("react").JSX.Element;
78
+ export {};
@@ -0,0 +1,39 @@
1
+ import { Orientation } from '@digo-labs/common';
2
+ import { ComponentProps } from 'react';
3
+ import { Transition } from 'motion/react';
4
+ import { CarouselCurve } from '../utils/carousel-helpers';
5
+ import { ComponentStylesProps } from '../utils/styles';
6
+ export type { CarouselCurve } from '../utils/carousel-helpers';
7
+ export declare function carouselCurve(distance: number): number;
8
+ interface ContextProperties {
9
+ value: string | undefined;
10
+ count: number;
11
+ activeIndex: number;
12
+ expandedSize: number;
13
+ orientation: Orientation;
14
+ goTo: (index: number) => void;
15
+ step: (direction: number) => void;
16
+ }
17
+ export declare function useCarousel(): ContextProperties;
18
+ interface ItemContextProperties {
19
+ value: string;
20
+ active: boolean;
21
+ }
22
+ export declare function useCarouselItem(): ItemContextProperties;
23
+ type Properties = RootProperties & ComponentStylesProps<'carousel'>;
24
+ export declare function Carousel(properties: Properties): import("react").JSX.Element;
25
+ interface RootProperties extends ComponentProps<'div'> {
26
+ value?: string;
27
+ defaultValue?: string;
28
+ onValueChange?: (value: string) => void;
29
+ items?: number;
30
+ expanded?: number;
31
+ gap?: number;
32
+ curve?: CarouselCurve;
33
+ transition?: Transition;
34
+ orientation?: Orientation;
35
+ }
36
+ interface ItemProperties extends ComponentProps<'div'> {
37
+ value: string;
38
+ }
39
+ export declare function CarouselItem(properties: ItemProperties): import("react").JSX.Element;
@@ -0,0 +1,9 @@
1
+ import { ComponentProps } from 'react';
2
+ import { ComponentStylesProps } from '../utils/styles';
3
+ export type DrawingCanvasInputs = 'auto' | 'all' | 'pen';
4
+ type Properties = RootProperties & ComponentStylesProps<'drawingCanvas'>;
5
+ export declare function DrawingCanvas(properties: Properties): import("react").JSX.Element;
6
+ interface RootProperties extends ComponentProps<'div'> {
7
+ inputs?: DrawingCanvasInputs;
8
+ }
9
+ export {};
@@ -0,0 +1,26 @@
1
+ import { CSSProperties, Ref } from 'react';
2
+ import { AnimationDirection, AnimationItem, AnimationSegment, BMCompleteEvent, BMCompleteLoopEvent, BMEnterFrameEvent, BMSegmentStartEvent, SVGRendererConfig } from 'lottie-web/build/player/lottie_light';
3
+ import { ComponentStylesProps } from '../utils/styles';
4
+ type Properties = RootProperties & ComponentStylesProps<'lottie'>;
5
+ export declare function Lottie(properties: Properties): import("react").JSX.Element;
6
+ interface RootProperties {
7
+ data?: object;
8
+ path?: string;
9
+ loop?: boolean | number;
10
+ autoplay?: boolean;
11
+ speed?: number;
12
+ direction?: AnimationDirection;
13
+ initialSegment?: AnimationSegment;
14
+ rendererSettings?: SVGRendererConfig;
15
+ onComplete?: (event: BMCompleteEvent) => void;
16
+ onLoopComplete?: (event: BMCompleteLoopEvent) => void;
17
+ onEnterFrame?: (event: BMEnterFrameEvent) => void;
18
+ onSegmentStart?: (event: BMSegmentStartEvent) => void;
19
+ onDOMLoaded?: () => void;
20
+ onDataReady?: () => void;
21
+ onError?: () => void;
22
+ ref?: Ref<AnimationItem | null>;
23
+ className?: string;
24
+ style?: CSSProperties;
25
+ }
26
+ export {};
@@ -0,0 +1,41 @@
1
+ import { Icon, Slider, Tabs, Toggle } from '..';
2
+ import { ComponentProps } from 'react';
3
+ import { PopoverPopup, PopoverTrigger } from './popover';
4
+ import { Toolbar as ToolbarPrimitive } from '@base-ui/react/toolbar';
5
+ import { ToggleGroup as ToggleGroupPrimitive } from '@base-ui/react/toggle-group';
6
+ import { ComponentStylesProps } from '../utils/styles';
7
+ type Properties = RootProperties & ComponentStylesProps<'toolbar'>;
8
+ export declare function Toolbar(properties: Properties): import("react").JSX.Element;
9
+ type RootProperties = ToolbarPrimitive.Root.Props;
10
+ export declare function ToolbarGroup(properties: ToolbarPrimitive.Group.Props): import("react").JSX.Element;
11
+ interface ToolbarButtonProperties extends ToolbarPrimitive.Button.Props {
12
+ tooltip?: string;
13
+ }
14
+ export declare function ToolbarButton(properties: ToolbarButtonProperties): import("react").JSX.Element;
15
+ interface ToolbarToggleProperties extends ComponentProps<typeof Toggle> {
16
+ tooltip?: string;
17
+ }
18
+ export declare function ToolbarToggle(properties: ToolbarToggleProperties): import("react").JSX.Element;
19
+ export declare function ToolbarToggleGroup(properties: ToggleGroupPrimitive.Props): import("react").JSX.Element;
20
+ export interface ToolbarTab {
21
+ value: string;
22
+ icon: ComponentProps<typeof Icon>['icon'];
23
+ tooltip?: string;
24
+ }
25
+ interface ToolbarTabsProperties extends Omit<ComponentProps<typeof Tabs>, 'children'> {
26
+ tabs: ToolbarTab[];
27
+ }
28
+ export declare function ToolbarTabs(properties: ToolbarTabsProperties): import("react").JSX.Element;
29
+ export declare function ToolbarArtToggle(properties: ToolbarToggleProperties): import("react").JSX.Element;
30
+ export declare function ToolbarIcon(properties: ComponentProps<typeof Icon>): import("react").JSX.Element;
31
+ export declare function ToolbarSlider(properties: ComponentProps<typeof Slider>): import("react").JSX.Element;
32
+ export declare function ToolbarSeparator(properties: ToolbarPrimitive.Separator.Props): import("react").JSX.Element;
33
+ export declare const ToolbarMenu: typeof import('@base-ui/react').PopoverRoot;
34
+ export declare function ToolbarMenuTrigger(properties: ComponentProps<typeof PopoverTrigger>): import("react").JSX.Element;
35
+ interface ToolbarMenuPopupProperties extends ComponentProps<typeof Toolbar> {
36
+ side?: ComponentProps<typeof PopoverPopup>['side'];
37
+ align?: ComponentProps<typeof PopoverPopup>['align'];
38
+ sideOffset?: ComponentProps<typeof PopoverPopup>['sideOffset'];
39
+ }
40
+ export declare function ToolbarMenuPopup(properties: ToolbarMenuPopupProperties): import("react").JSX.Element;
41
+ export {};
@@ -0,0 +1,47 @@
1
+ import { BrickColor } from '@digo-labs/common';
2
+ import { CSSProperties, ReactNode } from 'react';
3
+ import { Transition } from 'motion/react';
4
+ import { BrickOrigin } from './brick';
5
+ import { ComponentStylesProps } from '../utils/styles';
6
+ export type BrickGridMode = 'noise' | 'cluster' | 'image' | 'path' | 'loading';
7
+ export type BrickGridLines = 'lines' | 'none';
8
+ export type BrickGridDistribution = 'edges' | 'fill';
9
+ export type BrickGridWave = 'clockwise' | 'counterclockwise' | 'left-to-right' | 'right-to-left' | 'top-to-bottom' | 'bottom-to-top';
10
+ type Properties = RootProperties & ComponentStylesProps<'brickGrid'>;
11
+ export declare function BrickGrid(properties: Properties): import("react").JSX.Element;
12
+ interface RootProperties {
13
+ mode?: BrickGridMode;
14
+ cellSize?: number;
15
+ gap?: number;
16
+ colors?: BrickColor[];
17
+ density?: number;
18
+ tempo?: number;
19
+ seed?: number;
20
+ interval?: number;
21
+ maxSize?: number;
22
+ src?: string;
23
+ imageOpacity?: number;
24
+ threshold?: number;
25
+ path?: string;
26
+ filled?: boolean;
27
+ loadingSize?: number;
28
+ wave?: BrickGridWave;
29
+ distribution?: BrickGridDistribution;
30
+ grid?: BrickGridLines;
31
+ transition?: Transition;
32
+ className?: string;
33
+ style?: CSSProperties;
34
+ children?: ReactNode;
35
+ }
36
+ interface ItemProperties {
37
+ colSpan?: number;
38
+ rowSpan?: number;
39
+ colStart?: number;
40
+ rowStart?: number;
41
+ origin?: BrickOrigin;
42
+ className?: string;
43
+ style?: CSSProperties;
44
+ children?: ReactNode;
45
+ }
46
+ export declare function BrickGridItem(properties: ItemProperties): import("react").JSX.Element;
47
+ export {};
@@ -0,0 +1,28 @@
1
+ import { BrickGlyph, BrickColor } from '@digo-labs/common';
2
+ import { CSSProperties } from 'react';
3
+ import { Transition } from 'motion/react';
4
+ import { ComponentStylesProps } from '../utils/styles';
5
+ export type BrickAnimation = 'none' | 'pulse' | 'rotate';
6
+ export type BrickOrigin = 'top-left' | 'top-right' | 'bottom-left' | 'bottom-right';
7
+ export declare const brickOriginClasses: {
8
+ 'top-left': string;
9
+ 'top-right': string;
10
+ 'bottom-left': string;
11
+ 'bottom-right': string;
12
+ };
13
+ type Properties = RootProperties & ComponentStylesProps<'brick'>;
14
+ export declare function Brick(properties: Properties): import("react").JSX.Element;
15
+ interface RootProperties {
16
+ glyph: BrickGlyph;
17
+ size?: number;
18
+ color?: BrickColor;
19
+ glyphColor?: BrickColor;
20
+ origin?: BrickOrigin;
21
+ animation?: BrickAnimation;
22
+ interval?: number;
23
+ delay?: number;
24
+ transition?: Transition;
25
+ className?: string;
26
+ style?: CSSProperties;
27
+ }
28
+ export {};
package/dist/index.d.ts CHANGED
@@ -1,11 +1,15 @@
1
1
  export * from './animation/motion-animate-presence';
2
2
  export * from './other/animations';
3
+ export * from './aws/aws-block';
4
+ export * from './aws/aws-block-group';
5
+ export * from './aws/aws-shape';
3
6
  export * from './blocks/auth-guard';
4
7
  export * from './blocks/breadcrumb-nav';
5
8
  export * from './blocks/card';
6
9
  export * from './blocks/chat-thread';
7
10
  export * from './blocks/command-button';
8
11
  export * from './blocks/copy-paste-button';
12
+ export * from './blocks/drawing-toolbar';
9
13
  export * from './blocks/dropzone';
10
14
  export * from './blocks/font-picker';
11
15
  export * from './blocks/gate';
@@ -38,6 +42,7 @@ export * from './blocks/prompt-input';
38
42
  export * from './blocks/google-signin-button';
39
43
  export * from './blocks/switch-theme';
40
44
  export * from './blocks/toggle-theme';
45
+ export * from './blocks/toolbar-items';
41
46
  export * from './blocks/transparent-background';
42
47
  export * from './blocks/user-avatar';
43
48
  export * from './blocks/user-info';
@@ -51,6 +56,7 @@ export * from './components/badge';
51
56
  export * from './components/breadcrumb';
52
57
  export * from './components/bubble';
53
58
  export * from './components/button';
59
+ export * from './components/carousel';
54
60
  export * from './components/chart';
55
61
  export * from './components/checkbox';
56
62
  export * from './components/circular-progress';
@@ -67,6 +73,7 @@ export * from './components/combobox';
67
73
  export * from './components/command';
68
74
  export * from './effects/counter';
69
75
  export * from './components/drawer';
76
+ export * from './components/drawing-canvas';
70
77
  export * from './components/empty';
71
78
  export * from './components/field';
72
79
  export * from './components/field-set';
@@ -104,9 +111,11 @@ export * from './components/spinner';
104
111
  export * from './components/steps';
105
112
  export * from './components/switch';
106
113
  export * from './components/loader';
114
+ export * from './components/lottie';
107
115
  export * from './components/tabs';
108
116
  export * from './components/toggle';
109
117
  export * from './components/toggle-group';
118
+ export * from './components/toolbar';
110
119
  export * from './components/table-of-contents';
111
120
  export * from './components/text-area';
112
121
  export * from './components/tint-image';
@@ -116,6 +125,8 @@ export * from './cursors/cursor-container';
116
125
  export * from './cursors/cursor-clipping';
117
126
  export * from './cursors/cursor-bracket';
118
127
  export * from './effects/border-glow';
128
+ export * from './effects/brick';
129
+ export * from './effects/brick-grid';
119
130
  export * from './effects/crt-screen';
120
131
  export * from './effects/dark-veil';
121
132
  export * from './effects/dissolve-overlay';
@@ -154,8 +165,10 @@ export * from './hooks/use-stopwatch';
154
165
  export * from './hooks/use-timer';
155
166
  export * from './pages/loading-page';
156
167
  export * from './pages/login-page';
168
+ export * from './providers/aws-unit-provider';
157
169
  export * from './providers/command-provider';
158
170
  export * from './providers/design-system-provider';
171
+ export * from './providers/drawing-provider';
159
172
  export * from './providers/portal-provider';
160
173
  export * as baseStyles from './styles';
161
174
  export * from './presets';
@@ -164,7 +177,6 @@ export * from './utils/styles';
164
177
  export * from './utils/shiki-highlighter';
165
178
  export * from './utils/code-meta-parser';
166
179
  export * from './utils/helpers';
167
- export * from './outdated/lottie';
168
180
  export * from './outdated/qr-code';
169
181
  export * from './outdated/shape';
170
182
  export * from './outdated/tint';