@moontra/moonui 0.1.1 → 2.0.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.
- package/LICENSE +21 -0
- package/README.md +282 -34
- package/dist/index.d.mts +204 -9
- package/dist/index.d.ts +204 -9
- package/dist/index.js +1510 -802
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +1205 -571
- package/dist/index.mjs.map +1 -0
- package/package.json +24 -8
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2024 MoonUI
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,24 +1,33 @@
|
|
|
1
|
-
# MoonUI
|
|
1
|
+
# MoonUI - Modern React Component Library
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
[](https://www.npmjs.com/package/@moontra/moonui)
|
|
4
|
+
[](https://opensource.org/licenses/MIT)
|
|
5
|
+
[](https://www.typescriptlang.org/)
|
|
6
|
+
|
|
7
|
+
A premium React component library built on top of Radix UI and Tailwind CSS. Fully customizable, accessible, and production-ready components for modern web applications.
|
|
4
8
|
|
|
5
9
|
## Features
|
|
6
10
|
|
|
7
|
-
-
|
|
8
|
-
-
|
|
9
|
-
- ♿ **
|
|
10
|
-
-
|
|
11
|
-
-
|
|
12
|
-
-
|
|
11
|
+
- 🎨 **Beautiful by default** - Carefully crafted components with modern design
|
|
12
|
+
- 🌙 **Dark mode ready** - Built-in dark mode support with smooth transitions
|
|
13
|
+
- ♿ **Fully accessible** - WAI-ARIA compliant components built on Radix UI
|
|
14
|
+
- 🎯 **TypeScript first** - Written in TypeScript with complete type definitions
|
|
15
|
+
- 🎨 **Highly customizable** - Easy to customize with Tailwind CSS
|
|
16
|
+
- 📦 **Tree-shakeable** - Only import what you need
|
|
17
|
+
- 🚀 **Production ready** - Used in production by many companies
|
|
13
18
|
|
|
14
19
|
## Installation
|
|
15
20
|
|
|
16
21
|
```bash
|
|
17
|
-
npm install moonui
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
+
npm install @moontra/moonui
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
yarn add @moontra/moonui
|
|
27
|
+
```
|
|
28
|
+
|
|
29
|
+
```bash
|
|
30
|
+
pnpm add @moontra/moonui
|
|
22
31
|
```
|
|
23
32
|
|
|
24
33
|
## Setup
|
|
@@ -174,42 +183,281 @@ Add the following CSS variables to your global CSS file:
|
|
|
174
183
|
}
|
|
175
184
|
```
|
|
176
185
|
|
|
177
|
-
## Usage
|
|
186
|
+
## Installation & Usage
|
|
187
|
+
|
|
188
|
+
### Recommended: Use MoonUI CLI
|
|
189
|
+
|
|
190
|
+
The best way to use MoonUI is through our CLI tool, which gives you full control over the components:
|
|
191
|
+
|
|
192
|
+
```bash
|
|
193
|
+
# Install CLI globally
|
|
194
|
+
npm install -g @moontra/moonui-cli
|
|
195
|
+
|
|
196
|
+
# Initialize MoonUI in your project
|
|
197
|
+
moonui init
|
|
198
|
+
|
|
199
|
+
# Add components
|
|
200
|
+
moonui add button card badge
|
|
201
|
+
```
|
|
178
202
|
|
|
179
|
-
|
|
180
|
-
|
|
203
|
+
Then import from your project:
|
|
204
|
+
```tsx
|
|
205
|
+
import { Button } from '@/components/ui/button'
|
|
206
|
+
import { Card } from '@/components/ui/card'
|
|
207
|
+
import { Badge } from '@/components/ui/badge'
|
|
181
208
|
|
|
182
|
-
|
|
209
|
+
function App() {
|
|
183
210
|
return (
|
|
184
|
-
<
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
211
|
+
<Card>
|
|
212
|
+
<h2>Welcome to MoonUI</h2>
|
|
213
|
+
<p>Build beautiful interfaces with ease</p>
|
|
214
|
+
<Button variant="primary">Get Started</Button>
|
|
215
|
+
<Badge>New</Badge>
|
|
216
|
+
</Card>
|
|
217
|
+
)
|
|
188
218
|
}
|
|
189
219
|
```
|
|
190
220
|
|
|
191
|
-
|
|
221
|
+
### Alternative: Direct NPM Usage
|
|
222
|
+
|
|
223
|
+
You can also use components directly from NPM (limited customization):
|
|
224
|
+
|
|
225
|
+
```tsx
|
|
226
|
+
import { Button, Card, Badge } from '@moontra/moonui'
|
|
227
|
+
```
|
|
228
|
+
|
|
229
|
+
### Advanced Examples
|
|
230
|
+
|
|
231
|
+
#### Interactive Components
|
|
232
|
+
```tsx
|
|
233
|
+
import {
|
|
234
|
+
MagneticButton,
|
|
235
|
+
SpotlightCard,
|
|
236
|
+
GestureDrawer,
|
|
237
|
+
SwipeableCard
|
|
238
|
+
} from '@moontra/moonui'
|
|
192
239
|
|
|
193
|
-
|
|
240
|
+
function InteractiveDemo() {
|
|
241
|
+
return (
|
|
242
|
+
<div className="space-y-6">
|
|
243
|
+
{/* Magnetic Button with mouse following effect */}
|
|
244
|
+
<MagneticButton strength={0.3}>
|
|
245
|
+
Hover for magnetic effect
|
|
246
|
+
</MagneticButton>
|
|
247
|
+
|
|
248
|
+
{/* Card with spotlight effect */}
|
|
249
|
+
<SpotlightCard>
|
|
250
|
+
<h3>Interactive Card</h3>
|
|
251
|
+
<p>Move your mouse around to see the spotlight effect</p>
|
|
252
|
+
</SpotlightCard>
|
|
253
|
+
|
|
254
|
+
{/* Swipeable Card for mobile */}
|
|
255
|
+
<SwipeableCard onSwipeLeft={() => console.log('Swiped left')}>
|
|
256
|
+
<p>Swipe me on mobile devices</p>
|
|
257
|
+
</SwipeableCard>
|
|
258
|
+
</div>
|
|
259
|
+
)
|
|
260
|
+
}
|
|
261
|
+
```
|
|
194
262
|
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
263
|
+
#### Performance Components
|
|
264
|
+
```tsx
|
|
265
|
+
import {
|
|
266
|
+
VirtualList,
|
|
267
|
+
MemoryEfficientData,
|
|
268
|
+
LazyComponent,
|
|
269
|
+
OptimizedImage
|
|
270
|
+
} from '@moontra/moonui'
|
|
271
|
+
|
|
272
|
+
function PerformanceDemo() {
|
|
273
|
+
const largeDataset = Array.from({ length: 10000 }, (_, i) => ({
|
|
274
|
+
id: i,
|
|
275
|
+
name: `Item ${i}`
|
|
276
|
+
}))
|
|
277
|
+
|
|
278
|
+
return (
|
|
279
|
+
<div>
|
|
280
|
+
{/* Virtualized list for large datasets */}
|
|
281
|
+
<VirtualList
|
|
282
|
+
items={largeDataset}
|
|
283
|
+
itemHeight={50}
|
|
284
|
+
renderItem={({ item }) => <div key={item.id}>{item.name}</div>}
|
|
285
|
+
/>
|
|
286
|
+
|
|
287
|
+
{/* Memory efficient data handling */}
|
|
288
|
+
<MemoryEfficientData
|
|
289
|
+
data={largeDataset}
|
|
290
|
+
chunkSize={100}
|
|
291
|
+
renderChunk={(chunk) => (
|
|
292
|
+
<div>{chunk.map(item => <div key={item.id}>{item.name}</div>)}</div>
|
|
293
|
+
)}
|
|
294
|
+
/>
|
|
295
|
+
|
|
296
|
+
{/* Lazy loaded component */}
|
|
297
|
+
<LazyComponent>
|
|
298
|
+
<OptimizedImage
|
|
299
|
+
src="/large-image.jpg"
|
|
300
|
+
alt="Optimized image"
|
|
301
|
+
loading="lazy"
|
|
302
|
+
/>
|
|
303
|
+
</LazyComponent>
|
|
304
|
+
</div>
|
|
305
|
+
)
|
|
306
|
+
}
|
|
307
|
+
```
|
|
308
|
+
|
|
309
|
+
## Available Components (50+ Components)
|
|
310
|
+
|
|
311
|
+
### Core Components
|
|
312
|
+
- **Button** - Multiple variants with loading states
|
|
313
|
+
- **Card** - Flexible container with header/footer support
|
|
314
|
+
- **Badge** - Status indicators and labels
|
|
315
|
+
- **Input** - Text input with validation
|
|
316
|
+
- **Textarea** - Multi-line text input
|
|
317
|
+
- **Label** - Form labels with accessibility
|
|
318
|
+
- **Separator** - Visual dividers
|
|
319
|
+
|
|
320
|
+
### Form Components
|
|
321
|
+
- **Select** - Dropdown selection with search
|
|
322
|
+
- **Switch** - Toggle switches
|
|
323
|
+
- **Checkbox** - Single and group checkboxes
|
|
324
|
+
- **RadioGroup** - Radio button groups
|
|
325
|
+
- **Slider** - Range and single value sliders
|
|
326
|
+
- **Color Picker** - Color selection component
|
|
327
|
+
- **Date Picker** - Calendar-based date selection
|
|
328
|
+
|
|
329
|
+
### Layout Components
|
|
330
|
+
- **Dialog** - Modal dialogs and overlays
|
|
331
|
+
- **Sheet** - Slide-out panels
|
|
332
|
+
- **Tabs** - Tabbed content areas
|
|
333
|
+
- **Accordion** - Collapsible content sections
|
|
334
|
+
- **Collapsible** - Expandable content
|
|
335
|
+
- **Command** - Command palette interface
|
|
336
|
+
- **Aspect Ratio** - Responsive aspect ratio containers
|
|
337
|
+
|
|
338
|
+
### Data Display
|
|
339
|
+
- **Alert** - Notification and status messages
|
|
340
|
+
- **Avatar** - User profile images with fallbacks
|
|
341
|
+
- **Progress** - Progress bars and indicators
|
|
342
|
+
- **Skeleton** - Loading state placeholders
|
|
343
|
+
- **Table** - Data tables with sorting
|
|
344
|
+
- **Data Table** - Advanced data grid
|
|
345
|
+
- **Tooltip** - Contextual help text
|
|
346
|
+
- **Calendar** - Date display and navigation
|
|
347
|
+
|
|
348
|
+
### Navigation
|
|
349
|
+
- **Breadcrumb** - Navigation breadcrumbs
|
|
350
|
+
- **Dropdown Menu** - Context menus
|
|
351
|
+
- **Navigation Menu** - Main navigation
|
|
352
|
+
- **Pagination** - Page navigation controls
|
|
353
|
+
|
|
354
|
+
### Feedback & Overlays
|
|
355
|
+
- **Toast** - Temporary notifications
|
|
356
|
+
- **Popover** - Floating content containers
|
|
357
|
+
- **Hover Card** - Hover-triggered content
|
|
358
|
+
|
|
359
|
+
### Interactive Components
|
|
360
|
+
- **Animated Button** - Buttons with micro-interactions
|
|
361
|
+
- **Draggable List** - Drag and drop sortable lists
|
|
362
|
+
- **Floating Action Button** - FAB with expandable menu
|
|
363
|
+
- **Gesture Drawer** - Touch-gesture driven drawers
|
|
364
|
+
- **Hover Card 3D** - 3D hover effects
|
|
365
|
+
- **Magnetic Button** - Mouse-following magnetic effects
|
|
366
|
+
- **Spotlight Card** - Interactive spotlight effects
|
|
367
|
+
- **Swipeable Card** - Touch swipe interactions
|
|
368
|
+
- **Pinch Zoom** - Touch zoom functionality
|
|
369
|
+
|
|
370
|
+
### Performance & Utility
|
|
371
|
+
- **Error Boundary** - React error boundaries
|
|
372
|
+
- **File Upload** - File upload with progress
|
|
373
|
+
- **GitHub Stars** - GitHub repository stats
|
|
374
|
+
- **Health Check** - System health monitoring
|
|
375
|
+
- **Lazy Component** - Code splitting support
|
|
376
|
+
- **Locked Component** - Access control wrapper
|
|
377
|
+
- **Memory Efficient Data** - Optimized data handling
|
|
378
|
+
- **Optimized Image** - Performance-optimized images
|
|
379
|
+
- **Performance Debugger** - Performance analysis tools
|
|
380
|
+
- **Performance Monitor** - Real-time performance tracking
|
|
381
|
+
- **Simple Editor** - Basic text editor
|
|
382
|
+
- **Rich Text Editor** - Advanced WYSIWYG editor
|
|
383
|
+
- **Virtual List** - Virtualized large lists
|
|
384
|
+
- **Moon Logo** - MoonUI branding component
|
|
385
|
+
|
|
386
|
+
### Specialized
|
|
387
|
+
- **Toggle** - Toggle switches with states
|
|
388
|
+
|
|
389
|
+
## Pro Components
|
|
390
|
+
|
|
391
|
+
Looking for more advanced enterprise-grade components? Check out [MoonUI Pro](https://moonui.dev/pro) for:
|
|
392
|
+
|
|
393
|
+
- 📊 **Advanced Data Table** - Enterprise data grid with filtering, sorting, export
|
|
394
|
+
- 📈 **Advanced Charts** - Interactive charts with real-time data
|
|
395
|
+
- 📅 **Calendar Pro** - Full-featured calendar with events and scheduling
|
|
396
|
+
- 📝 **Rich Text Editor Pro** - WYSIWYG editor with AI assistance and collaboration
|
|
397
|
+
- 📤 **File Upload Pro** - Advanced file handling with cloud storage
|
|
398
|
+
- 🗂️ **Kanban Board** - Drag & drop project management
|
|
399
|
+
- 📍 **Timeline** - Interactive project timelines
|
|
400
|
+
- 🚀 **Memory Efficient Data** - Large dataset handling
|
|
401
|
+
- 📊 **Virtual List Pro** - Performance virtualization
|
|
402
|
+
- And many more enterprise features...
|
|
199
403
|
|
|
200
404
|
## Documentation
|
|
201
405
|
|
|
202
|
-
|
|
406
|
+
Visit [moonui.dev/docs](https://moonui.dev/docs) for full documentation.
|
|
203
407
|
|
|
204
|
-
##
|
|
408
|
+
## Customization
|
|
205
409
|
|
|
206
|
-
MoonUI
|
|
410
|
+
MoonUI components are built with customization in mind. You can easily customize them using:
|
|
207
411
|
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
412
|
+
### 1. CSS Variables
|
|
413
|
+
```css
|
|
414
|
+
:root {
|
|
415
|
+
--primary: 222.2 47.4% 11.2%;
|
|
416
|
+
--primary-foreground: 210 40% 98%;
|
|
417
|
+
}
|
|
418
|
+
```
|
|
419
|
+
|
|
420
|
+
### 2. Tailwind Classes
|
|
421
|
+
```tsx
|
|
422
|
+
<Button className="bg-blue-500 hover:bg-blue-600">
|
|
423
|
+
Custom Button
|
|
424
|
+
</Button>
|
|
425
|
+
```
|
|
426
|
+
|
|
427
|
+
### 3. Component Variants
|
|
428
|
+
```tsx
|
|
429
|
+
<Button variant="destructive" size="lg">
|
|
430
|
+
Delete
|
|
431
|
+
</Button>
|
|
211
432
|
```
|
|
212
433
|
|
|
434
|
+
## Theme Provider
|
|
435
|
+
|
|
436
|
+
Use the ThemeProvider to enable theme support:
|
|
437
|
+
|
|
438
|
+
```tsx
|
|
439
|
+
import { ThemeProvider } from '@moontra/moonui'
|
|
440
|
+
|
|
441
|
+
function App() {
|
|
442
|
+
return (
|
|
443
|
+
<ThemeProvider defaultTheme="dark">
|
|
444
|
+
{/* Your app */}
|
|
445
|
+
</ThemeProvider>
|
|
446
|
+
)
|
|
447
|
+
}
|
|
448
|
+
```
|
|
449
|
+
|
|
450
|
+
## Requirements
|
|
451
|
+
|
|
452
|
+
- React 18.0.0 or higher
|
|
453
|
+
- Tailwind CSS 3.0.0 or higher
|
|
454
|
+
|
|
213
455
|
## License
|
|
214
456
|
|
|
215
|
-
MIT
|
|
457
|
+
MIT License - see the [LICENSE](LICENSE) file for details.
|
|
458
|
+
|
|
459
|
+
## Support
|
|
460
|
+
|
|
461
|
+
- Documentation: [moonui.dev/docs](https://moonui.dev/docs)
|
|
462
|
+
- Discord: [Join our community](https://discord.gg/moonui)
|
|
463
|
+
- GitHub Issues: [Report bugs](https://github.com/moontra/moonui/issues)
|
package/dist/index.d.mts
CHANGED
|
@@ -4,15 +4,23 @@ import React__default, { ReactNode } from 'react';
|
|
|
4
4
|
import * as class_variance_authority_dist_types from 'class-variance-authority/dist/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
7
|
+
import * as LabelPrimitive from '@radix-ui/react-label';
|
|
8
|
+
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
7
9
|
import * as SelectPrimitive from '@radix-ui/react-select';
|
|
8
10
|
import * as SwitchPrimitives from '@radix-ui/react-switch';
|
|
9
|
-
import * as
|
|
11
|
+
import * as SheetPrimitive from '@radix-ui/react-dialog';
|
|
10
12
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
11
13
|
import * as AvatarPrimitive from '@radix-ui/react-avatar';
|
|
12
14
|
import * as CheckboxPrimitive from '@radix-ui/react-checkbox';
|
|
13
15
|
import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
14
16
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
15
17
|
import * as CollapsiblePrimitive from '@radix-ui/react-collapsible';
|
|
18
|
+
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
19
|
+
import * as DropdownMenuPrimitive from '@radix-ui/react-dropdown-menu';
|
|
20
|
+
import * as NavigationMenuPrimitive from '@radix-ui/react-navigation-menu';
|
|
21
|
+
import * as HoverCardPrimitive from '@radix-ui/react-hover-card';
|
|
22
|
+
import * as _radix_ui_react_context from '@radix-ui/react-context';
|
|
23
|
+
import * as MenubarPrimitive from '@radix-ui/react-menubar';
|
|
16
24
|
|
|
17
25
|
/**
|
|
18
26
|
* Utility function for merging Tailwind CSS classes with clsx/cva
|
|
@@ -177,6 +185,14 @@ type CardProps = React$1.ComponentProps<typeof Card>;
|
|
|
177
185
|
type InputProps = React$1.InputHTMLAttributes<HTMLInputElement>;
|
|
178
186
|
declare const Input: React$1.ForwardRefExoticComponent<InputProps & React$1.RefAttributes<HTMLInputElement>>;
|
|
179
187
|
|
|
188
|
+
interface TextareaProps extends React$1.TextareaHTMLAttributes<HTMLTextAreaElement> {
|
|
189
|
+
}
|
|
190
|
+
declare const Textarea: React$1.ForwardRefExoticComponent<TextareaProps & React$1.RefAttributes<HTMLTextAreaElement>>;
|
|
191
|
+
|
|
192
|
+
declare const Label: React$1.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React$1.RefAttributes<HTMLLabelElement>, "ref"> & VariantProps<(props?: class_variance_authority_dist_types.ClassProp) => string> & React$1.RefAttributes<HTMLLabelElement>>;
|
|
193
|
+
|
|
194
|
+
declare const Separator: React$1.ForwardRefExoticComponent<Omit<SeparatorPrimitive.SeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
195
|
+
|
|
180
196
|
declare const Select: React$1.FC<SelectPrimitive.SelectProps>;
|
|
181
197
|
declare const SelectGroup: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
182
198
|
declare const SelectValue: React$1.ForwardRefExoticComponent<SelectPrimitive.SelectValueProps & React$1.RefAttributes<HTMLSpanElement>>;
|
|
@@ -196,9 +212,9 @@ declare const Switch: React$1.ForwardRefExoticComponent<Omit<SwitchPrimitives.Sw
|
|
|
196
212
|
* Enhances user experience with variants, sizes and rich features.
|
|
197
213
|
* Provides a premium appearance with dark and light mode compatibility and fluid animations.
|
|
198
214
|
*/
|
|
199
|
-
declare const Dialog: React$1.FC<
|
|
200
|
-
declare const DialogTrigger: React$1.ForwardRefExoticComponent<
|
|
201
|
-
declare const DialogClose: React$1.ForwardRefExoticComponent<
|
|
215
|
+
declare const Dialog: React$1.FC<SheetPrimitive.DialogProps>;
|
|
216
|
+
declare const DialogTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
217
|
+
declare const DialogClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
202
218
|
declare const overlayVariants: (props?: {
|
|
203
219
|
variant?: "default" | "minimal" | "subtle" | "blur";
|
|
204
220
|
animation?: "default" | "slow" | "fast";
|
|
@@ -210,7 +226,7 @@ declare const dialogContentVariants: (props?: {
|
|
|
210
226
|
animation?: "default" | "none" | "zoom" | "fade" | "slide";
|
|
211
227
|
position?: "default" | "bottom" | "top";
|
|
212
228
|
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
213
|
-
interface DialogContentProps extends Omit<React$1.ComponentPropsWithoutRef<typeof
|
|
229
|
+
interface DialogContentProps extends Omit<React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, 'title' | 'description'>, VariantProps<typeof dialogContentVariants> {
|
|
214
230
|
hideCloseButton?: boolean;
|
|
215
231
|
overlayVariant?: VariantProps<typeof overlayVariants>['variant'];
|
|
216
232
|
overlayAnimation?: VariantProps<typeof overlayVariants>['animation'];
|
|
@@ -236,8 +252,8 @@ declare const DialogFooter: {
|
|
|
236
252
|
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
237
253
|
displayName: string;
|
|
238
254
|
};
|
|
239
|
-
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<
|
|
240
|
-
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<
|
|
255
|
+
declare const DialogTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
256
|
+
declare const DialogDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
241
257
|
/**
|
|
242
258
|
* Dialog-Form integration for use with form support
|
|
243
259
|
* Used to integrate form submission processes into the modal
|
|
@@ -725,7 +741,7 @@ declare const popoverContentVariants: (props?: {
|
|
|
725
741
|
declare const Popover: React$1.FC<PopoverPrimitive.PopoverProps>;
|
|
726
742
|
declare const PopoverTrigger: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
727
743
|
declare const PopoverAnchor: React$1.ForwardRefExoticComponent<PopoverPrimitive.PopoverAnchorProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
728
|
-
interface PopoverContentProps extends React$1.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>, VariantProps<typeof popoverContentVariants> {
|
|
744
|
+
interface PopoverContentProps extends Omit<React$1.ComponentPropsWithoutRef<typeof PopoverPrimitive.Content>, 'side'>, VariantProps<typeof popoverContentVariants> {
|
|
729
745
|
/**
|
|
730
746
|
* Popover'ın arka plan bulanıklığı etkin mi
|
|
731
747
|
*/
|
|
@@ -906,4 +922,183 @@ declare const CommandShortcut: {
|
|
|
906
922
|
displayName: string;
|
|
907
923
|
};
|
|
908
924
|
|
|
909
|
-
|
|
925
|
+
declare const toggleVariants: (props?: {
|
|
926
|
+
variant?: "default" | "outline";
|
|
927
|
+
size?: "default" | "sm" | "lg";
|
|
928
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
929
|
+
interface ToggleProps extends React$1.ButtonHTMLAttributes<HTMLButtonElement>, VariantProps<typeof toggleVariants> {
|
|
930
|
+
pressed?: boolean;
|
|
931
|
+
onPressedChange?: (pressed: boolean) => void;
|
|
932
|
+
}
|
|
933
|
+
declare const Toggle: React$1.ForwardRefExoticComponent<ToggleProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
934
|
+
|
|
935
|
+
declare const Slider: React$1.ForwardRefExoticComponent<Omit<SliderPrimitive.SliderProps & React$1.RefAttributes<HTMLSpanElement>, "ref"> & React$1.RefAttributes<HTMLSpanElement>>;
|
|
936
|
+
|
|
937
|
+
declare const DropdownMenu: React$1.FC<DropdownMenuPrimitive.DropdownMenuProps>;
|
|
938
|
+
declare const DropdownMenuTrigger: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
939
|
+
declare const DropdownMenuGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
940
|
+
declare const DropdownMenuPortal: React$1.FC<DropdownMenuPrimitive.DropdownMenuPortalProps>;
|
|
941
|
+
declare const DropdownMenuSub: React$1.FC<DropdownMenuPrimitive.DropdownMenuSubProps>;
|
|
942
|
+
declare const DropdownMenuRadioGroup: React$1.ForwardRefExoticComponent<DropdownMenuPrimitive.DropdownMenuRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
943
|
+
declare const DropdownMenuSubTrigger: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
944
|
+
inset?: boolean;
|
|
945
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
946
|
+
declare const DropdownMenuSubContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
947
|
+
declare const DropdownMenuContent: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
948
|
+
declare const DropdownMenuItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
949
|
+
inset?: boolean;
|
|
950
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
951
|
+
declare const DropdownMenuCheckboxItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
952
|
+
declare const DropdownMenuRadioItem: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
953
|
+
declare const DropdownMenuLabel: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
954
|
+
inset?: boolean;
|
|
955
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
956
|
+
declare const DropdownMenuSeparator: React$1.ForwardRefExoticComponent<Omit<DropdownMenuPrimitive.DropdownMenuSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
957
|
+
declare const DropdownMenuShortcut: {
|
|
958
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
959
|
+
displayName: string;
|
|
960
|
+
};
|
|
961
|
+
|
|
962
|
+
declare const NavigationMenu: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuProps & React$1.RefAttributes<HTMLElement>, "ref"> & React$1.RefAttributes<HTMLElement>>;
|
|
963
|
+
declare const NavigationMenuList: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuListProps & React$1.RefAttributes<HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
964
|
+
declare const NavigationMenuItem: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuItemProps & React$1.RefAttributes<HTMLLIElement>>;
|
|
965
|
+
declare const navigationMenuTriggerStyle: (props?: class_variance_authority_dist_types.ClassProp) => string;
|
|
966
|
+
declare const NavigationMenuTrigger: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
967
|
+
declare const NavigationMenuContent: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
968
|
+
declare const NavigationMenuLink: React$1.ForwardRefExoticComponent<NavigationMenuPrimitive.NavigationMenuLinkProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
969
|
+
declare const NavigationMenuViewport: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuViewportProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
970
|
+
declare const NavigationMenuIndicator: React$1.ForwardRefExoticComponent<Omit<NavigationMenuPrimitive.NavigationMenuIndicatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
971
|
+
|
|
972
|
+
declare const Sheet: React$1.FC<SheetPrimitive.DialogProps>;
|
|
973
|
+
declare const SheetTrigger: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogTriggerProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
974
|
+
declare const SheetClose: React$1.ForwardRefExoticComponent<SheetPrimitive.DialogCloseProps & React$1.RefAttributes<HTMLButtonElement>>;
|
|
975
|
+
declare const SheetPortal: React$1.FC<SheetPrimitive.DialogPortalProps>;
|
|
976
|
+
declare const SheetOverlay: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogOverlayProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
977
|
+
declare const sheetVariants: (props?: {
|
|
978
|
+
side?: "left" | "right" | "bottom" | "top";
|
|
979
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
980
|
+
interface SheetContentProps extends React$1.ComponentPropsWithoutRef<typeof SheetPrimitive.Content>, VariantProps<typeof sheetVariants> {
|
|
981
|
+
}
|
|
982
|
+
declare const SheetContent: React$1.ForwardRefExoticComponent<SheetContentProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
983
|
+
declare const SheetHeader: {
|
|
984
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
985
|
+
displayName: string;
|
|
986
|
+
};
|
|
987
|
+
declare const SheetFooter: {
|
|
988
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLDivElement>): react_jsx_runtime.JSX.Element;
|
|
989
|
+
displayName: string;
|
|
990
|
+
};
|
|
991
|
+
declare const SheetTitle: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogTitleProps & React$1.RefAttributes<HTMLHeadingElement>, "ref"> & React$1.RefAttributes<HTMLHeadingElement>>;
|
|
992
|
+
declare const SheetDescription: React$1.ForwardRefExoticComponent<Omit<SheetPrimitive.DialogDescriptionProps & React$1.RefAttributes<HTMLParagraphElement>, "ref"> & React$1.RefAttributes<HTMLParagraphElement>>;
|
|
993
|
+
|
|
994
|
+
declare const HoverCard: React$1.FC<HoverCardPrimitive.HoverCardProps>;
|
|
995
|
+
declare const HoverCardTrigger: React$1.ForwardRefExoticComponent<HoverCardPrimitive.HoverCardTriggerProps & React$1.RefAttributes<HTMLAnchorElement>>;
|
|
996
|
+
declare const HoverCardContent: React$1.ForwardRefExoticComponent<Omit<HoverCardPrimitive.HoverCardContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
997
|
+
|
|
998
|
+
declare const Pagination: {
|
|
999
|
+
({ className, ...props }: React$1.ComponentProps<"nav">): react_jsx_runtime.JSX.Element;
|
|
1000
|
+
displayName: string;
|
|
1001
|
+
};
|
|
1002
|
+
declare const PaginationContent: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLUListElement>, HTMLUListElement>, "ref"> & React$1.RefAttributes<HTMLUListElement>>;
|
|
1003
|
+
declare const PaginationItem: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.LiHTMLAttributes<HTMLLIElement>, HTMLLIElement>, "ref"> & React$1.RefAttributes<HTMLLIElement>>;
|
|
1004
|
+
type PaginationLinkProps = {
|
|
1005
|
+
isActive?: boolean;
|
|
1006
|
+
} & Pick<ButtonProps, "size"> & React$1.ComponentProps<"a">;
|
|
1007
|
+
declare const PaginationLink: {
|
|
1008
|
+
({ className, isActive, size, ...props }: PaginationLinkProps): react_jsx_runtime.JSX.Element;
|
|
1009
|
+
displayName: string;
|
|
1010
|
+
};
|
|
1011
|
+
declare const PaginationPrevious: {
|
|
1012
|
+
({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
1013
|
+
displayName: string;
|
|
1014
|
+
};
|
|
1015
|
+
declare const PaginationNext: {
|
|
1016
|
+
({ className, ...props }: React$1.ComponentProps<typeof PaginationLink>): react_jsx_runtime.JSX.Element;
|
|
1017
|
+
displayName: string;
|
|
1018
|
+
};
|
|
1019
|
+
declare const PaginationEllipsis: {
|
|
1020
|
+
({ className, ...props }: React$1.ComponentProps<"span">): react_jsx_runtime.JSX.Element;
|
|
1021
|
+
displayName: string;
|
|
1022
|
+
};
|
|
1023
|
+
|
|
1024
|
+
declare const MenubarMenu: {
|
|
1025
|
+
(props: MenubarPrimitive.MenubarMenuProps & {
|
|
1026
|
+
__scopeMenubar?: _radix_ui_react_context.Scope;
|
|
1027
|
+
}): react_jsx_runtime.JSX.Element;
|
|
1028
|
+
displayName: string;
|
|
1029
|
+
};
|
|
1030
|
+
declare const MenubarGroup: React$1.ForwardRefExoticComponent<MenubarPrimitive.MenubarGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1031
|
+
declare const MenubarPortal: React$1.FC<MenubarPrimitive.MenubarPortalProps>;
|
|
1032
|
+
declare const MenubarSub: React$1.FC<MenubarPrimitive.MenubarSubProps>;
|
|
1033
|
+
declare const MenubarRadioGroup: React$1.ForwardRefExoticComponent<MenubarPrimitive.MenubarRadioGroupProps & React$1.RefAttributes<HTMLDivElement>>;
|
|
1034
|
+
declare const Menubar: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1035
|
+
declare const MenubarTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
1036
|
+
declare const MenubarSubTrigger: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubTriggerProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1037
|
+
inset?: boolean;
|
|
1038
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1039
|
+
declare const MenubarSubContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSubContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1040
|
+
declare const MenubarContent: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1041
|
+
declare const MenubarItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1042
|
+
inset?: boolean;
|
|
1043
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1044
|
+
declare const MenubarCheckboxItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarCheckboxItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1045
|
+
declare const MenubarRadioItem: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarRadioItemProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1046
|
+
declare const MenubarLabel: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarLabelProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & {
|
|
1047
|
+
inset?: boolean;
|
|
1048
|
+
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1049
|
+
declare const MenubarSeparator: React$1.ForwardRefExoticComponent<Omit<MenubarPrimitive.MenubarSeparatorProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
1050
|
+
declare const MenubarShortcut: {
|
|
1051
|
+
({ className, ...props }: React$1.HTMLAttributes<HTMLSpanElement>): react_jsx_runtime.JSX.Element;
|
|
1052
|
+
displayName: string;
|
|
1053
|
+
};
|
|
1054
|
+
|
|
1055
|
+
type SortDirection = "asc" | "desc" | null;
|
|
1056
|
+
declare const tableVariants: (props?: {
|
|
1057
|
+
variant?: "default" | "minimal" | "card" | "bordered" | "striped";
|
|
1058
|
+
size?: "default" | "sm" | "lg";
|
|
1059
|
+
} & class_variance_authority_dist_types.ClassProp) => string;
|
|
1060
|
+
interface ColumnDefinition<T> {
|
|
1061
|
+
id: string;
|
|
1062
|
+
header: React$1.ReactNode;
|
|
1063
|
+
accessorKey?: keyof T;
|
|
1064
|
+
cell?: (row: T) => React$1.ReactNode;
|
|
1065
|
+
sortable?: boolean;
|
|
1066
|
+
}
|
|
1067
|
+
interface TableProps<T> extends React$1.HTMLAttributes<HTMLTableElement>, VariantProps<typeof tableVariants> {
|
|
1068
|
+
/** Shows data loading state */
|
|
1069
|
+
loading?: boolean;
|
|
1070
|
+
/** Column used for sorting */
|
|
1071
|
+
sortColumn?: string;
|
|
1072
|
+
/** Sort direction */
|
|
1073
|
+
sortDirection?: SortDirection;
|
|
1074
|
+
/** Function called when sorting changes */
|
|
1075
|
+
onSortChange?: (column: string, direction: SortDirection) => void;
|
|
1076
|
+
/** Custom content for empty state */
|
|
1077
|
+
emptyContent?: React$1.ReactNode;
|
|
1078
|
+
/** Selected row ids */
|
|
1079
|
+
selectedRowIds?: string[];
|
|
1080
|
+
/** Function called when row selection changes */
|
|
1081
|
+
onRowSelectionChange?: (selectedRowIds: string[]) => void;
|
|
1082
|
+
/** Disable row selection */
|
|
1083
|
+
disableRowSelection?: boolean;
|
|
1084
|
+
/** Function to extract unique id for each row */
|
|
1085
|
+
getRowId?: (row: T) => string;
|
|
1086
|
+
}
|
|
1087
|
+
declare const Table: React$1.ForwardRefExoticComponent<TableProps<unknown> & React$1.RefAttributes<HTMLTableElement>>;
|
|
1088
|
+
declare const TableHeader: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1089
|
+
declare const TableBody: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1090
|
+
declare const TableFooter: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableSectionElement> & React$1.RefAttributes<HTMLTableSectionElement>>;
|
|
1091
|
+
declare const TableRow: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableRowElement> & React$1.RefAttributes<HTMLTableRowElement>>;
|
|
1092
|
+
interface TableHeadProps extends React$1.ThHTMLAttributes<HTMLTableCellElement> {
|
|
1093
|
+
/** Sortable state for this column */
|
|
1094
|
+
sortable?: boolean;
|
|
1095
|
+
/** Current sort state for this column */
|
|
1096
|
+
sorted?: SortDirection;
|
|
1097
|
+
/** Function called when sorting changes */
|
|
1098
|
+
onSort?: () => void;
|
|
1099
|
+
}
|
|
1100
|
+
declare const TableHead: React$1.ForwardRefExoticComponent<TableHeadProps & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1101
|
+
declare const TableCell: React$1.ForwardRefExoticComponent<React$1.TdHTMLAttributes<HTMLTableCellElement> & React$1.RefAttributes<HTMLTableCellElement>>;
|
|
1102
|
+
declare const TableCaption: React$1.ForwardRefExoticComponent<React$1.HTMLAttributes<HTMLTableCaptionElement> & React$1.RefAttributes<HTMLTableCaptionElement>>;
|
|
1103
|
+
|
|
1104
|
+
export { Accordion, AccordionContent, AccordionContentProps, AccordionItem, AccordionItemProps, AccordionTrigger, AccordionTriggerProps, Alert, AlertDescription, AlertProps, AlertTitle, AspectRatio, AspectRatioProps, Avatar, AvatarFallback, AvatarImage, Badge, BadgeProps, Breadcrumb, BreadcrumbEllipsis, BreadcrumbEllipsisProps, BreadcrumbItem, BreadcrumbItemProps, BreadcrumbList, BreadcrumbListProps, BreadcrumbProps, BreadcrumbSeparator, BreadcrumbSeparatorProps, Button, ButtonProps, Card, CardContent, CardDescription, CardFooter, CardHeader, CardProps, CardTitle, Checkbox, CheckboxGroup, CheckboxLabel, CheckboxProps, CheckboxWithLabel, Collapsible, CollapsibleContent, CollapsibleContentProps, CollapsibleTrigger, CollapsibleTriggerProps, ColumnDefinition, Command, CommandDialog, CommandDialogProps, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, Dialog, DialogClose, DialogContent, DialogDescription, DialogFooter, DialogForm, DialogHeader, DialogTitle, DialogTrigger, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, HoverCard, HoverCardContent, HoverCardTrigger, Input, InputProps, Label, Menubar, MenubarCheckboxItem, MenubarContent, MenubarGroup, MenubarItem, MenubarLabel, MenubarMenu, MenubarPortal, MenubarRadioGroup, MenubarRadioItem, MenubarSeparator, MenubarShortcut, MenubarSub, MenubarSubContent, MenubarSubTrigger, MenubarTrigger, NavigationMenu, NavigationMenuContent, NavigationMenuIndicator, NavigationMenuItem, NavigationMenuLink, NavigationMenuList, NavigationMenuTrigger, NavigationMenuViewport, Pagination, PaginationContent, PaginationEllipsis, PaginationItem, PaginationLink, PaginationNext, PaginationPrevious, Popover, PopoverAnchor, PopoverClose, PopoverContent, PopoverContentProps, PopoverFooter, PopoverHeader, PopoverSeparator, PopoverTrigger, Progress, ProgressProps, RadioGroup, RadioGroupItem, RadioGroupItemProps, RadioItemWithLabel, RadioLabel, Select, SelectContent, SelectGroup, SelectItem, SelectLabel, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, Skeleton, SkeletonAvatar, SkeletonAvatarProps, SkeletonCard, SkeletonCardProps, SkeletonProps, SkeletonText, SkeletonTextProps, Slider, SortDirection, Switch, SwitchProps, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, TableRow, Tabs, TabsContent, TabsList, TabsTrigger, Textarea, TextareaProps, ThemeColors, ThemeConfig, ThemeProvider, ThemeProviderProps, Toast, ToastContainer, ToastProps, ToastProvider, Toggle, ToggleProps, Tooltip, TooltipContentProps, TooltipProps, accordionContentVariants, accordionItemVariants, accordionTriggerVariants, aspectRatioVariants, badgeVariants, buttonVariants, cn, collapsibleContentVariants, collapsibleTriggerVariants, combineRefs, commandGroupVariants, commandInputVariants, commandItemVariants, commandListVariants, commandVariants, createCssVariables, debounce, formatCurrency, generateId, get, navigationMenuTriggerStyle, popoverContentVariants, progressVariants, skeletonVariants, toastVariants, toggleVariants, tooltipContentVariants, useTheme, useToast };
|