@digo-labs/ui 0.1.13 → 0.1.16
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/dist/blocks/auth-guard.d.ts +3 -0
- package/dist/blocks/breadcrumb-nav.d.ts +18 -0
- package/dist/blocks/dropzone.d.ts +1 -1
- package/dist/blocks/gate.d.ts +9 -0
- package/dist/blocks/login-card.d.ts +16 -0
- package/dist/blocks/menu-items.d.ts +8 -0
- package/dist/blocks/user-avatar.d.ts +10 -0
- package/dist/blocks/user-info.d.ts +9 -0
- package/dist/blocks/user-menu.d.ts +18 -0
- package/dist/components/avatar.d.ts +10 -0
- package/dist/components/badge.d.ts +6 -0
- package/dist/components/breadcrumb.d.ts +13 -0
- package/dist/components/circular-progress.d.ts +17 -0
- package/dist/components/collapsible.d.ts +3 -3
- package/dist/components/drawer.d.ts +1 -1
- package/dist/components/masonry.d.ts +1 -0
- package/dist/components/menu.d.ts +41 -0
- package/dist/components/navigation-menu.d.ts +28 -0
- package/dist/components/resizable.d.ts +10 -0
- package/dist/components/scene.d.ts +18 -0
- package/dist/components/sidebar.d.ts +24 -1
- package/dist/components/slide.d.ts +35 -0
- package/dist/components/table-of-contents.d.ts +6 -0
- package/dist/components/toast.d.ts +1 -0
- package/dist/cursors/cursor-bracket.d.ts +1 -0
- package/dist/effects/crt-screen.d.ts +13 -0
- package/dist/effects/glass-container.d.ts +2 -2
- package/dist/effects/impact-body.d.ts +15 -0
- package/dist/effects/model.d.ts +5 -0
- package/dist/effects/organism.d.ts +17 -0
- package/dist/effects/react-cube.d.ts +14 -0
- package/dist/effects/stickers.d.ts +17 -0
- package/dist/hooks/use-in-view.d.ts +4 -0
- package/dist/hooks/use-media-query.d.ts +10 -0
- package/dist/hooks/use-timer.d.ts +1 -1
- package/dist/index.d.ts +26 -3
- package/dist/index.js +15245 -9003
- package/dist/index.js.map +1 -1
- package/dist/pages/loading-page.d.ts +8 -0
- package/dist/pages/login-page.d.ts +8 -0
- package/dist/presets/curated/airbnb.d.ts +2 -0
- package/dist/presets/curated/cyber.d.ts +2 -0
- package/dist/presets/curated/digo.d.ts +2 -0
- package/dist/presets/curated/editorial.d.ts +2 -0
- package/dist/presets/curated/factory.d.ts +2 -0
- package/dist/presets/curated/index.d.ts +10 -3
- package/dist/presets/curated/shadcn.d.ts +2 -0
- package/dist/presets/curated/studio.d.ts +2 -0
- package/dist/presets/curated/terminal.d.ts +2 -0
- package/dist/presets/curated/web-10.d.ts +2 -0
- package/dist/presets/curated/windows-98.d.ts +2 -0
- package/dist/presets/index.d.ts +1 -0
- package/dist/providers/portal-provider.d.ts +9 -0
- package/dist/styles/avatar.d.ts +61 -0
- package/dist/styles/badge.d.ts +189 -0
- package/dist/styles/breadcrumb-nav.d.ts +53 -0
- package/dist/styles/breadcrumb.d.ts +85 -0
- package/dist/styles/circular-progress.d.ts +69 -0
- package/dist/styles/crt-screen.d.ts +288 -0
- package/dist/styles/image-dropzone.d.ts +5 -5
- package/dist/styles/image.d.ts +5 -5
- package/dist/styles/index.d.ts +13 -0
- package/dist/styles/login-card.d.ts +109 -0
- package/dist/styles/masonry.d.ts +16 -8
- package/dist/styles/menu.d.ts +165 -0
- package/dist/styles/navigation-menu.d.ts +120 -0
- package/dist/styles/pagination.d.ts +5 -5
- package/dist/styles/placeholder.d.ts +57 -44
- package/dist/styles/resizable.d.ts +61 -0
- package/dist/styles/scene.d.ts +37 -0
- package/dist/styles/sidebar.d.ts +16 -0
- package/dist/styles/slide.d.ts +180 -0
- package/dist/styles/table-of-contents.d.ts +61 -5
- package/dist/styles/user-info.d.ts +61 -0
- package/dist/styles/user-menu.d.ts +61 -0
- package/package.json +4 -3
- package/dist/effects/border-trail.d.ts +0 -10
- package/dist/effects/cube-scene.d.ts +0 -11
- package/dist/effects/draggable-container.d.ts +0 -10
- package/dist/effects/marquee-bar.d.ts +0 -6
- package/dist/presets/curated/default.d.ts +0 -2
- package/dist/presets/curated/ocean.d.ts +0 -2
- package/dist/presets/curated/retro-futuristic.d.ts +0 -2
package/dist/index.d.ts
CHANGED
|
@@ -1,13 +1,17 @@
|
|
|
1
1
|
export * from './animation/motion-animate-presence';
|
|
2
2
|
export * from './other/animations';
|
|
3
3
|
export * from './blocks/auth-guard';
|
|
4
|
+
export * from './blocks/breadcrumb-nav';
|
|
4
5
|
export * from './blocks/card';
|
|
5
6
|
export * from './blocks/chat-thread';
|
|
6
7
|
export * from './blocks/command-button';
|
|
7
8
|
export * from './blocks/copy-paste-button';
|
|
8
9
|
export * from './blocks/dropzone';
|
|
9
10
|
export * from './blocks/font-picker';
|
|
11
|
+
export * from './blocks/gate';
|
|
10
12
|
export * from './blocks/image-dropzone';
|
|
13
|
+
export * from './blocks/login-card';
|
|
14
|
+
export * from './blocks/menu-items';
|
|
11
15
|
export * from './blocks/navbar';
|
|
12
16
|
export * from './blocks/palette-picker';
|
|
13
17
|
export * from './blocks/parameter-text';
|
|
@@ -35,12 +39,19 @@ export * from './blocks/google-signin-button';
|
|
|
35
39
|
export * from './blocks/switch-theme';
|
|
36
40
|
export * from './blocks/toggle-theme';
|
|
37
41
|
export * from './blocks/transparent-background';
|
|
42
|
+
export * from './blocks/user-avatar';
|
|
43
|
+
export * from './blocks/user-info';
|
|
44
|
+
export * from './blocks/user-menu';
|
|
38
45
|
export * from './components/accordion';
|
|
39
46
|
export * from './components/alert';
|
|
40
47
|
export * from './components/autocomplete';
|
|
48
|
+
export * from './components/avatar';
|
|
49
|
+
export * from './components/badge';
|
|
50
|
+
export * from './components/breadcrumb';
|
|
41
51
|
export * from './components/button';
|
|
42
52
|
export * from './components/chart';
|
|
43
53
|
export * from './components/checkbox';
|
|
54
|
+
export * from './components/circular-progress';
|
|
44
55
|
export * from './components/code-block';
|
|
45
56
|
export * from './components/collapsible';
|
|
46
57
|
export * from './components/color-area';
|
|
@@ -66,6 +77,7 @@ export * from './components/input';
|
|
|
66
77
|
export * from './components/label';
|
|
67
78
|
export * from './components/masonry';
|
|
68
79
|
export * from './components/kbd';
|
|
80
|
+
export * from './components/menu';
|
|
69
81
|
export * from './components/navigation-menu';
|
|
70
82
|
export * from './components/number-field';
|
|
71
83
|
export * from './components/pagination';
|
|
@@ -74,10 +86,13 @@ export * from './components/parameter-group';
|
|
|
74
86
|
export * from './components/popover';
|
|
75
87
|
export * from './components/progress';
|
|
76
88
|
export * from './components/reorder-list';
|
|
89
|
+
export * from './components/resizable';
|
|
90
|
+
export * from './components/scene';
|
|
77
91
|
export * from './components/scroll-area';
|
|
78
92
|
export * from './components/select';
|
|
79
93
|
export * from './components/separator';
|
|
80
94
|
export * from './components/sidebar';
|
|
95
|
+
export * from './components/slide';
|
|
81
96
|
export * from './components/spacer';
|
|
82
97
|
export * from './components/slider';
|
|
83
98
|
export * from './components/spinner';
|
|
@@ -96,23 +111,26 @@ export * from './cursors/cursor-container';
|
|
|
96
111
|
export * from './cursors/cursor-clipping';
|
|
97
112
|
export * from './cursors/cursor-bracket';
|
|
98
113
|
export * from './effects/border-glow';
|
|
99
|
-
export * from './effects/
|
|
114
|
+
export * from './effects/crt-screen';
|
|
100
115
|
export * from './effects/dark-veil';
|
|
101
116
|
export * from './effects/dissolve-overlay';
|
|
102
117
|
export * from './effects/dot-grid';
|
|
103
|
-
export * from './effects/draggable-container';
|
|
104
118
|
export * from './effects/faulty-terminal';
|
|
105
119
|
export * from './effects/floating-lines';
|
|
106
120
|
export * from './effects/glass-container';
|
|
107
121
|
export * from './effects/grainient';
|
|
108
122
|
export * from './effects/image-transition';
|
|
123
|
+
export * from './effects/impact-body';
|
|
109
124
|
export * from './effects/infinite-menu';
|
|
110
125
|
export * from './effects/iridescence';
|
|
111
126
|
export * from './effects/letter-swap';
|
|
112
|
-
export * from './effects/marquee-bar';
|
|
113
127
|
export * from './effects/marquee';
|
|
128
|
+
export * from './effects/model';
|
|
114
129
|
export * from './effects/noise';
|
|
115
130
|
export * from './effects/orb';
|
|
131
|
+
export * from './effects/organism';
|
|
132
|
+
export * from './effects/react-cube';
|
|
133
|
+
export * from './effects/stickers';
|
|
116
134
|
export * from './effects/text-morph';
|
|
117
135
|
export * from './effects/text-pressure';
|
|
118
136
|
export * from './effects/text-roll';
|
|
@@ -124,11 +142,16 @@ export * from './effects/text-type';
|
|
|
124
142
|
export * from './hooks/use-animated-value';
|
|
125
143
|
export * from './hooks/use-element-size';
|
|
126
144
|
export * from './hooks/use-focus-size';
|
|
145
|
+
export * from './hooks/use-in-view';
|
|
146
|
+
export * from './hooks/use-media-query';
|
|
127
147
|
export * from './hooks/use-preloaded-image';
|
|
128
148
|
export * from './hooks/use-stopwatch';
|
|
129
149
|
export * from './hooks/use-timer';
|
|
150
|
+
export * from './pages/loading-page';
|
|
151
|
+
export * from './pages/login-page';
|
|
130
152
|
export * from './providers/command-provider';
|
|
131
153
|
export * from './providers/design-system-provider';
|
|
154
|
+
export * from './providers/portal-provider';
|
|
132
155
|
export * as baseStyles from './styles';
|
|
133
156
|
export * from './presets';
|
|
134
157
|
export * from './utils/motion-presets';
|