dgz-ui 1.3.13 → 1.3.15

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/README.md CHANGED
@@ -1,25 +1,99 @@
1
- # Components
2
-
3
- - Accordion
4
- - Alert
5
- - Alert Dialog
6
- - Avatar
7
- - Badge
8
- - Breadcrumb
9
- - Button
10
- - Calendar
11
- - Card
12
- - Collapsible
13
- - Dialog
14
- - Dropdown
15
- - Form
16
- - Pagination
17
- - Popover
18
- - Progress
19
- - Scroll Area
20
- - Separator
21
- - Sheet
22
- - Skeleton
23
- - Tab
24
- - Table
25
- - Tooltip
1
+ # dgz-ui
2
+
3
+ [![NPM Version](https://img.shields.io/npm/v/dgz-ui)](https://www.npmjs.com/package/dgz-ui)
4
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
5
+
6
+ Custom UI library built with React, Radix UI, Tailwind CSS v4, and TypeScript.
7
+
8
+ ## Features
9
+
10
+ - 🚀 **Modern Stack**: Built with React 19, TypeScript, and Tailwind CSS 4.
11
+ - 🎨 **Beautifully Styled**: Includes a comprehensive set of UI components.
12
+ - ♿ **Accessible**: Built on top of Radix UI primitives for accessibility.
13
+ - 🛠️ **Customizable**: Easy to extend and customize.
14
+ - 📦 **Tree-shakeable**: Import only what you need.
15
+
16
+ ## Installation
17
+
18
+ ```bash
19
+ npm install dgz-ui
20
+ ```
21
+
22
+ ## Setup
23
+
24
+ To use the styles, import the CSS file in your root entry file (e.g., `main.tsx`, `App.tsx`, or `index.js`).
25
+
26
+ ```tsx
27
+ import 'dgz-ui/dist/dgz-ui.css';
28
+ ```
29
+
30
+ ## Usage
31
+
32
+ Import components directly from the package:
33
+
34
+ ```tsx
35
+ import { Button } from 'dgz-ui';
36
+
37
+ function App() {
38
+ return (
39
+ <Button variant="default" onClick={() => console.log('Clicked!')}>
40
+ Click me
41
+ </Button>
42
+ );
43
+ }
44
+ ```
45
+
46
+ You can also import specific components to optimize bundle size:
47
+
48
+ ```tsx
49
+ import { Alert, AlertTitle, AlertDescription } from 'dgz-ui/alert';
50
+
51
+ <Alert>
52
+ <AlertTitle>Heads up!</AlertTitle>
53
+ <AlertDescription>
54
+ This is a description inside an alert component.
55
+ </AlertDescription>
56
+ </Alert>;
57
+ ```
58
+
59
+ ## Components
60
+
61
+ The library includes the following components:
62
+
63
+ - **Accordion**: Vertically stacked set of interactive headings.
64
+ - **Alert**: Displays a callout for user attention.
65
+ - **Alert Dialog**: A modal dialog that interrupts the user with important content.
66
+ - **Avatar**: An image element with a fallback for representing the user.
67
+ - **Badge**: Displays a status or a count.
68
+ - **Breadcrumb**: Displays the path to the current resource.
69
+ - **Button**: Displays a button or a component that looks like a button.
70
+ - **Calendar**: Date and time pickers.
71
+ - **Card**: Displays a card with header, content, and footer.
72
+ - **Collapsible**: An interactive component which expands/collapses a panel.
73
+ - **Dialog**: A window overlaid on either the primary window or another dialog window.
74
+ - **Dropdown Menu**: Displays a menu to the user — such as a set of actions or functions — triggered by a button.
75
+ - **Form**: Building blocks for forms, including Inputs, Checkboxes, Selects, Switches, Radio Groups, and Textareas.
76
+ - **Pagination**: Pagination controls.
77
+ - **Popover**: Displays rich content in a portal, triggered by a button.
78
+ - **Progress**: Displays an indicator showing the completion progress of a task.
79
+ - **Scroll Area**: Augments native scroll functionality for custom, cross-browser styling.
80
+ - **Separator**: Visually or semantically separates content.
81
+ - **Sheet**: Extends the Dialog component to display content that complements the main screen.
82
+ - **Skeleton**: Used to show a placeholder while content is loading.
83
+ - **Tabs**: A set of layered sections of content—known as tab panels—that are displayed one at a time.
84
+ - **Table**: A responsive table component.
85
+ - **Tooltip**: A popup that displays information related to an element when the element receives keyboard focus or the mouse hovers over it.
86
+
87
+ ## Requirements
88
+
89
+ - React >= 19
90
+ - React DOM >= 19
91
+ - Tailwind CSS >= 4
92
+
93
+ ## License
94
+
95
+ This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.
96
+
97
+ ## Author
98
+
99
+ [Alisher Khayrillaev](https://github.com/Alisher1119)
@@ -1,3 +1,9 @@
1
+ /**
2
+ * Root component of the application.
3
+ * Currently renders the TimePicker component for demonstration or testing purposes.
4
+ *
5
+ * @returns {JSX.Element} The rendered App component.
6
+ */
1
7
  declare function App(): import("react/jsx-runtime").JSX.Element;
2
8
  export default App;
3
9
  //# sourceMappingURL=App.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../src/App.tsx"],"names":[],"mappings":"AAEA,iBAAS,GAAG,4CAMX;AAED,eAAe,GAAG,CAAC"}
1
+ {"version":3,"file":"App.d.ts","sourceRoot":"","sources":["../../src/App.tsx"],"names":[],"mappings":"AAEA;;;;;GAKG;AACH,iBAAS,GAAG,4CAMX;AAED,eAAe,GAAG,CAAC"}
@@ -1,2 +1,8 @@
1
+ /**
2
+ * Custom hook to detect if the current viewport width is considered "mobile".
3
+ * Uses a breakpoint of 768px.
4
+ *
5
+ * @returns {boolean} `true` if the viewport width is less than 768px, `false` otherwise.
6
+ */
1
7
  export declare function useIsMobile(): boolean;
2
8
  //# sourceMappingURL=use-mobile.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"use-mobile.d.ts","sourceRoot":"","sources":["../../../src/hooks/use-mobile.ts"],"names":[],"mappings":"AAIA,wBAAgB,WAAW,YAc1B"}
1
+ {"version":3,"file":"use-mobile.d.ts","sourceRoot":"","sources":["../../../src/hooks/use-mobile.ts"],"names":[],"mappings":"AAIA;;;;;GAKG;AACH,wBAAgB,WAAW,YAc1B"}
@@ -1,3 +1,7 @@
1
+ /**
2
+ * @fileoverview Main entry point for the dgz-ui library.
3
+ * Exports all UI components and utility functions.
4
+ */
1
5
  export * from './ui/alert';
2
6
  export * from './ui/alert-dialog';
3
7
  export * from './ui/avatar';
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAE/B,OAAO,aAAa,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAAA;;;GAGG;AAEH,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,cAAc,iBAAiB,CAAC;AAChC,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,eAAe,CAAC;AAC9B,cAAc,aAAa,CAAC;AAC5B,cAAc,eAAe,CAAC;AAC9B,cAAc,WAAW,CAAC;AAC1B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,kBAAkB,CAAC;AACjC,cAAc,gBAAgB,CAAC;AAC/B,cAAc,YAAY,CAAC;AAC3B,cAAc,UAAU,CAAC;AACzB,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,eAAe,CAAC;AAC9B,cAAc,kBAAkB,CAAC;AAGjC,cAAc,gBAAgB,CAAC;AAE/B,OAAO,aAAa,CAAC"}
@@ -1,3 +1,7 @@
1
1
  import dayjs, { Dayjs } from 'dayjs';
2
+ /**
3
+ * Re-export of dayjs with customParseFormat plugin extended.
4
+ * Use this instance throughout the application for consistent date handling.
5
+ */
2
6
  export { dayjs, Dayjs };
3
7
  //# sourceMappingURL=day.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"day.d.ts","sourceRoot":"","sources":["../../../src/lib/day.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAIrC,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC"}
1
+ {"version":3,"file":"day.d.ts","sourceRoot":"","sources":["../../../src/lib/day.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,EAAE,KAAK,EAAE,MAAM,OAAO,CAAC;AAIrC;;;GAGG;AACH,OAAO,EAAE,KAAK,EAAE,KAAK,EAAE,CAAC"}
@@ -1,2 +1,5 @@
1
+ /**
2
+ * @fileoverview Library utilities export.
3
+ */
1
4
  export * from './utils.ts';
2
5
  //# sourceMappingURL=index.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/index.ts"],"names":[],"mappings":"AAAA,cAAc,YAAY,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/lib/index.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,cAAc,YAAY,CAAC"}
@@ -1,3 +1,10 @@
1
1
  import { type ClassValue } from 'clsx';
2
+ /**
3
+ * Merges class names using `clsx` and `tailwind-merge`.
4
+ * This allows for conditional class names and resolves conflicting Tailwind CSS classes.
5
+ *
6
+ * @param {...ClassValue[]} inputs - Class names or conditional class objects.
7
+ * @returns {string} The merged class string.
8
+ */
2
9
  export declare function cn(...inputs: ClassValue[]): string;
3
10
  //# sourceMappingURL=utils.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,UAAU,EAAE,MAAM,MAAM,CAAC;AAG7C,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
1
+ {"version":3,"file":"utils.d.ts","sourceRoot":"","sources":["../../../src/lib/utils.ts"],"names":[],"mappings":"AAAA,OAAO,EAAQ,KAAK,UAAU,EAAE,MAAM,MAAM,CAAC;AAG7C;;;;;;GAMG;AACH,wBAAgB,EAAE,CAAC,GAAG,MAAM,EAAE,UAAU,EAAE,UAEzC"}
@@ -4,7 +4,13 @@ import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
4
4
  * AlertDialog primitives for critical confirmation dialogs.
5
5
  */
6
6
  declare const AlertDialog: React.FC<AlertDialogPrimitive.AlertDialogProps>;
7
+ /**
8
+ * Trigger that opens the dialog.
9
+ */
7
10
  declare const AlertDialogTrigger: React.ForwardRefExoticComponent<AlertDialogPrimitive.AlertDialogTriggerProps & React.RefAttributes<HTMLButtonElement>>;
11
+ /**
12
+ * Renders the dialog content in a portal to escape the parent container.
13
+ */
8
14
  declare const AlertDialogPortal: React.FC<AlertDialogPrimitive.AlertDialogPortalProps>;
9
15
  /**
10
16
  * AlertDialogOverlay - Background overlay for the alert dialog.
@@ -1 +1 @@
1
- {"version":3,"file":"alert-dialog.d.ts","sourceRoot":"","sources":["../../../../src/ui/alert-dialog/alert-dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,oBAAoB,MAAM,8BAA8B,CAAC;AAIrE;;GAEG;AACH,QAAA,MAAM,WAAW,iDAA4B,CAAC;AAE9C,QAAA,MAAM,kBAAkB,wHAA+B,CAAC;AAExD,QAAA,MAAM,iBAAiB,uDAA8B,CAAC;AAEtD;;GAEG;AACH,QAAA,MAAM,kBAAkB,wKAYtB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,kBAAkB,wKAetB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB;8BAGpB,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,iBAAiB;8BAGpB,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAEtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,gBAAgB,8KASpB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,sBAAsB,wLAS1B,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,iBAAiB,6KASrB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB,6KASrB,CAAC;AAGH,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EACtB,iBAAiB,EACjB,iBAAiB,GAClB,CAAC"}
1
+ {"version":3,"file":"alert-dialog.d.ts","sourceRoot":"","sources":["../../../../src/ui/alert-dialog/alert-dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,oBAAoB,MAAM,8BAA8B,CAAC;AAIrE;;GAEG;AACH,QAAA,MAAM,WAAW,iDAA4B,CAAC;AAE9C;;GAEG;AACH,QAAA,MAAM,kBAAkB,wHAA+B,CAAC;AAExD;;GAEG;AACH,QAAA,MAAM,iBAAiB,uDAA8B,CAAC;AAEtD;;GAEG;AACH,QAAA,MAAM,kBAAkB,wKAYtB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,kBAAkB,wKAetB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB;8BAGpB,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,iBAAiB;8BAGpB,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAEtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,gBAAgB,8KASpB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,sBAAsB,wLAS1B,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,iBAAiB,6KASrB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB,6KASrB,CAAC;AAGH,OAAO,EACL,WAAW,EACX,iBAAiB,EACjB,kBAAkB,EAClB,kBAAkB,EAClB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,gBAAgB,EAChB,sBAAsB,EACtB,iBAAiB,EACjB,iBAAiB,GAClB,CAAC"}
@@ -43,5 +43,10 @@ declare const DialogTitle: React.ForwardRefExoticComponent<Omit<DialogPrimitive.
43
43
  * DialogDescription - Additional descriptive text for the dialog.
44
44
  */
45
45
  declare const DialogDescription: React.ForwardRefExoticComponent<Omit<DialogPrimitive.DialogDescriptionProps & React.RefAttributes<HTMLParagraphElement>, "ref"> & React.RefAttributes<HTMLParagraphElement>>;
46
- export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, };
46
+ interface DialogContainerProps {
47
+ triggerProps?: React.ComponentPropsWithoutRef<typeof DialogTrigger>;
48
+ contentProps?: React.ComponentPropsWithoutRef<typeof DialogContent>;
49
+ closeProps?: React.ComponentPropsWithoutRef<typeof DialogClose>;
50
+ }
51
+ export { Dialog, DialogPortal, DialogOverlay, DialogClose, DialogTrigger, DialogContent, DialogHeader, DialogFooter, DialogTitle, DialogDescription, type DialogContainerProps, };
47
52
  //# sourceMappingURL=dialog.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../../../src/ui/dialog/dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAI1D;;;GAGG;AACH,QAAA,MAAM,MAAM,uCAAuB,CAAC;AAEpC,QAAA,MAAM,aAAa,8GAA0B,CAAC;AAE9C,QAAA,MAAM,YAAY,6CAAyB,CAAC;AAE5C,QAAA,MAAM,WAAW,4GAAwB,CAAC;AAE1C;;GAEG;AACH,QAAA,MAAM,aAAa,8JAYjB,CAAC;AAGH,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,wBAAwB,CAC7D,OAAO,eAAe,CAAC,OAAO,CAC/B,GAAG;IACF,cAAc,CAAC,EAAE,IAAI,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,QAAA,MAAM,aAAa;qBANA,IAAI;wCA6BrB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,YAAY;8BAGf,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,YAAY;8BAGf,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,WAAW,oKAYf,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB,8KASrB,CAAC;AAGH,OAAO,EACL,MAAM,EACN,YAAY,EACZ,aAAa,EACb,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,iBAAiB,GAClB,CAAC"}
1
+ {"version":3,"file":"dialog.d.ts","sourceRoot":"","sources":["../../../../src/ui/dialog/dialog.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,eAAe,MAAM,wBAAwB,CAAC;AAI1D;;;GAGG;AACH,QAAA,MAAM,MAAM,uCAAuB,CAAC;AAEpC,QAAA,MAAM,aAAa,8GAA0B,CAAC;AAE9C,QAAA,MAAM,YAAY,6CAAyB,CAAC;AAE5C,QAAA,MAAM,WAAW,4GAAwB,CAAC;AAE1C;;GAEG;AACH,QAAA,MAAM,aAAa,8JAYjB,CAAC;AAGH,MAAM,MAAM,kBAAkB,GAAG,KAAK,CAAC,wBAAwB,CAC7D,OAAO,eAAe,CAAC,OAAO,CAC/B,GAAG;IACF,cAAc,CAAC,EAAE,IAAI,CAAC;CACvB,CAAC;AAEF;;GAEG;AACH,QAAA,MAAM,aAAa;qBANA,IAAI;wCA6BrB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,YAAY;8BAGf,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,YAAY;8BAGf,KAAK,CAAC,cAAc,CAAC,cAAc,CAAC;;CAQtC,CAAC;AAGF;;GAEG;AACH,QAAA,MAAM,WAAW,oKAYf,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB,8KASrB,CAAC;AAGH,UAAU,oBAAoB;IAC5B,YAAY,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,aAAa,CAAC,CAAC;IACpE,YAAY,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,aAAa,CAAC,CAAC;IACpE,UAAU,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,WAAW,CAAC,CAAC;CACjE;AAED,OAAO,EACL,MAAM,EACN,YAAY,EACZ,aAAa,EACb,WAAW,EACX,aAAa,EACb,aAAa,EACb,YAAY,EACZ,YAAY,EACZ,WAAW,EACX,iBAAiB,EACjB,KAAK,oBAAoB,GAC1B,CAAC"}
@@ -54,5 +54,12 @@ declare const DropdownMenuShortcut: {
54
54
  ({ className, ...props }: React.HTMLAttributes<HTMLSpanElement>): import("react/jsx-runtime").JSX.Element;
55
55
  displayName: string;
56
56
  };
57
- export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuGroup, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, };
57
+ interface DropdownContainerProps {
58
+ triggerProps?: React.ComponentPropsWithoutRef<typeof DropdownMenuTrigger>;
59
+ contentProps?: React.ComponentPropsWithoutRef<typeof DropdownMenuContent>;
60
+ menuItemProps?: React.ComponentPropsWithoutRef<typeof DropdownMenuItem>;
61
+ subTriggerProps?: React.ComponentPropsWithoutRef<typeof DropdownMenuSubTrigger>;
62
+ subContentProps?: React.ComponentPropsWithoutRef<typeof DropdownMenuSubContent>;
63
+ }
64
+ export { DropdownMenu, DropdownMenuTrigger, DropdownMenuContent, DropdownMenuItem, DropdownMenuCheckboxItem, DropdownMenuRadioItem, DropdownMenuLabel, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuGroup, DropdownMenuPortal, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuRadioGroup, type DropdownContainerProps, };
58
65
  //# sourceMappingURL=dropdown-menu.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"dropdown-menu.d.ts","sourceRoot":"","sources":["../../../../src/ui/dropdown/dropdown-menu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,qBAAqB,MAAM,+BAA+B,CAAC;AAIvE;;GAEG;AACH,QAAA,MAAM,YAAY,mDAA6B,CAAC;AAEhD,QAAA,MAAM,mBAAmB,0HAAgC,CAAC;AAE1D,QAAA,MAAM,iBAAiB,qHAA8B,CAAC;AAEtD,QAAA,MAAM,kBAAkB,yDAA+B,CAAC;AAExD,QAAA,MAAM,eAAe,sDAA4B,CAAC;AAElD,QAAA,MAAM,sBAAsB,0HAAmC,CAAC;AAEhE;;GAEG;AACH,QAAA,MAAM,sBAAsB;YAGhB,OAAO;wCAejB,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,sBAAsB,6KAY1B,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,mBAAmB,0KAevB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,gBAAgB;YAGV,OAAO;wCAYjB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,wBAAwB,+KAoB5B,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,qBAAqB,4KAmBzB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB;YAGX,OAAO;wCAYjB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,qBAAqB,4KASzB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,oBAAoB;8BAGvB,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;;CAOvC,CAAC;AAGF,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,gBAAgB,EAChB,wBAAwB,EACxB,qBAAqB,EACrB,iBAAiB,EACjB,qBAAqB,EACrB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,GACvB,CAAC"}
1
+ {"version":3,"file":"dropdown-menu.d.ts","sourceRoot":"","sources":["../../../../src/ui/dropdown/dropdown-menu.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,qBAAqB,MAAM,+BAA+B,CAAC;AAIvE;;GAEG;AACH,QAAA,MAAM,YAAY,mDAA6B,CAAC;AAEhD,QAAA,MAAM,mBAAmB,0HAAgC,CAAC;AAE1D,QAAA,MAAM,iBAAiB,qHAA8B,CAAC;AAEtD,QAAA,MAAM,kBAAkB,yDAA+B,CAAC;AAExD,QAAA,MAAM,eAAe,sDAA4B,CAAC;AAElD,QAAA,MAAM,sBAAsB,0HAAmC,CAAC;AAEhE;;GAEG;AACH,QAAA,MAAM,sBAAsB;YAGhB,OAAO;wCAejB,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,sBAAsB,6KAY1B,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,mBAAmB,0KAevB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,gBAAgB;YAGV,OAAO;wCAYjB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,wBAAwB,+KAoB5B,CAAC;AAIH;;GAEG;AACH,QAAA,MAAM,qBAAqB,4KAmBzB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,iBAAiB;YAGX,OAAO;wCAYjB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,qBAAqB,4KASzB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,oBAAoB;8BAGvB,KAAK,CAAC,cAAc,CAAC,eAAe,CAAC;;CAOvC,CAAC;AAGF,UAAU,sBAAsB;IAC9B,YAAY,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,CAAC;IAC1E,YAAY,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,mBAAmB,CAAC,CAAC;IAC1E,aAAa,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,CAAC;IACxE,eAAe,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAC9C,OAAO,sBAAsB,CAC9B,CAAC;IACF,eAAe,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAC9C,OAAO,sBAAsB,CAC9B,CAAC;CACH;AAED,OAAO,EACL,YAAY,EACZ,mBAAmB,EACnB,mBAAmB,EACnB,gBAAgB,EAChB,wBAAwB,EACxB,qBAAqB,EACrB,iBAAiB,EACjB,qBAAqB,EACrB,oBAAoB,EACpB,iBAAiB,EACjB,kBAAkB,EAClB,eAAe,EACf,sBAAsB,EACtB,sBAAsB,EACtB,sBAAsB,EACtB,KAAK,sBAAsB,GAC5B,CAAC"}
@@ -18,7 +18,18 @@ export interface FormItemProps<TFieldValues extends FieldValues> {
18
18
  * Form - Context provider from react-hook-form for nested fields.
19
19
  */
20
20
  declare const Form: <TFieldValues extends FieldValues, TContext = any, TTransformedValues = TFieldValues>(props: import("react-hook-form").FormProviderProps<TFieldValues, TContext, TTransformedValues>) => React.JSX.Element;
21
+ /**
22
+ * FormField - Wrapper component that provides context for a single form field.
23
+ * Connects the field to react-hook-form via the Controller component.
24
+ */
21
25
  declare const FormField: <TFieldValues extends FieldValues = FieldValues, TName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>({ ...props }: ControllerProps<TFieldValues, TName>) => import("react/jsx-runtime").JSX.Element;
26
+ /**
27
+ * Custom hook to access form field context.
28
+ * Used internally by form components to access field state (error, dirty, etc.) and IDs.
29
+ *
30
+ * @returns {object} Field state and ID properties.
31
+ * @throws {Error} If used outside of a <FormField>.
32
+ */
22
33
  declare const useFormField: () => {
23
34
  invalid: boolean;
24
35
  isDirty: boolean;
@@ -31,10 +42,28 @@ declare const useFormField: () => {
31
42
  formDescriptionId: string;
32
43
  formMessageId: string;
33
44
  };
45
+ /**
46
+ * FormItem - Container for a form field, label, and error message.
47
+ * Provides a unique ID context for accessibility.
48
+ */
34
49
  declare const FormItem: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLDivElement> & React.RefAttributes<HTMLDivElement>>;
50
+ /**
51
+ * FormLabel - Label component that automatically associates with the form control.
52
+ * Styles change based on the field's error state.
53
+ */
35
54
  declare const FormLabel: React.ForwardRefExoticComponent<Omit<LabelPrimitive.LabelProps & React.RefAttributes<HTMLLabelElement>, "ref"> & React.RefAttributes<HTMLLabelElement>>;
55
+ /**
56
+ * FormControl - Wrapper for the input element.
57
+ * Handles ARIA attributes for accessibility (id, aria-describedby, aria-invalid).
58
+ */
36
59
  declare const FormControl: React.ForwardRefExoticComponent<Omit<import("@radix-ui/react-slot").SlotProps & React.RefAttributes<HTMLElement>, "ref"> & React.RefAttributes<HTMLElement>>;
60
+ /**
61
+ * FormDescription - Helper text displayed below the form control.
62
+ */
37
63
  declare const FormDescription: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
64
+ /**
65
+ * FormMessage - Displays validation error messages.
66
+ */
38
67
  declare const FormMessage: React.ForwardRefExoticComponent<React.HTMLAttributes<HTMLParagraphElement> & React.RefAttributes<HTMLParagraphElement>>;
39
68
  export { useFormField, Form, FormItem, FormLabel, FormControl, FormDescription, FormMessage, FormField, };
40
69
  //# sourceMappingURL=form.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../../../src/ui/form/form.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AAExD,OAAO,EACL,KAAK,OAAO,EAEZ,KAAK,eAAe,EACpB,KAAK,SAAS,EACd,KAAK,WAAW,EAEhB,KAAK,eAAe,EAEpB,KAAK,eAAe,EACrB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC;;GAEG;AACH,MAAM,WAAW,aAAa,CAAC,YAAY,SAAS,WAAW;IAC7D,QAAQ,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACzC,OAAO,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,CAAC;IAChC,IAAI,CAAC,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,eAAe,CAAC,YAAY,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC,CAAC;IAC/D,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,QAAA,MAAM,IAAI,4MAAe,CAAC;AAa1B,QAAA,MAAM,SAAS,GACb,YAAY,SAAS,WAAW,GAAG,WAAW,EAC9C,KAAK,SAAS,SAAS,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,YAAY,CAAC,EAC/D,cAEC,eAAe,CAAC,YAAY,EAAE,KAAK,CAAC,4CAMtC,CAAC;AAEF,QAAA,MAAM,YAAY;;;;;;;;;;;CAqBjB,CAAC;AAUF,QAAA,MAAM,QAAQ,6GAeZ,CAAC;AAGH,QAAA,MAAM,SAAS,yJAkBb,CAAC;AAGH,QAAA,MAAM,WAAW,8JAoBf,CAAC;AAGH,QAAA,MAAM,eAAe,yHAcnB,CAAC;AAGH,QAAA,MAAM,WAAW,yHAqBf,CAAC;AAGH,OAAO,EACL,YAAY,EACZ,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,WAAW,EACX,eAAe,EACf,WAAW,EACX,SAAS,GACV,CAAC"}
1
+ {"version":3,"file":"form.d.ts","sourceRoot":"","sources":["../../../../src/ui/form/form.tsx"],"names":[],"mappings":"AAEA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,cAAc,MAAM,uBAAuB,CAAC;AAExD,OAAO,EACL,KAAK,OAAO,EAEZ,KAAK,eAAe,EACpB,KAAK,SAAS,EACd,KAAK,WAAW,EAEhB,KAAK,eAAe,EAEpB,KAAK,eAAe,EACrB,MAAM,iBAAiB,CAAC;AAGzB,OAAO,KAAK,EAAE,SAAS,EAAE,MAAM,OAAO,CAAC;AAEvC;;GAEG;AACH,MAAM,WAAW,aAAa,CAAC,YAAY,SAAS,WAAW;IAC7D,QAAQ,CAAC,EAAE,eAAe,CAAC,YAAY,CAAC,CAAC;IACzC,OAAO,CAAC,EAAE,OAAO,CAAC,YAAY,CAAC,CAAC;IAChC,IAAI,CAAC,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC;IAC/B,KAAK,CAAC,EAAE,eAAe,CAAC,YAAY,EAAE,SAAS,CAAC,YAAY,CAAC,CAAC,CAAC;IAC/D,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,UAAU,CAAC,EAAE,SAAS,CAAC;IACvB,aAAa,CAAC,EAAE,OAAO,CAAC;CACzB;AAED;;GAEG;AACH,QAAA,MAAM,IAAI,4MAAe,CAAC;AAa1B;;;GAGG;AACH,QAAA,MAAM,SAAS,GACb,YAAY,SAAS,WAAW,GAAG,WAAW,EAC9C,KAAK,SAAS,SAAS,CAAC,YAAY,CAAC,GAAG,SAAS,CAAC,YAAY,CAAC,EAC/D,cAEC,eAAe,CAAC,YAAY,EAAE,KAAK,CAAC,4CAMtC,CAAC;AAEF;;;;;;GAMG;AACH,QAAA,MAAM,YAAY;;;;;;;;;;;CAqBjB,CAAC;AAUF;;;GAGG;AACH,QAAA,MAAM,QAAQ,6GAeZ,CAAC;AAGH;;;GAGG;AACH,QAAA,MAAM,SAAS,yJAkBb,CAAC;AAGH;;;GAGG;AACH,QAAA,MAAM,WAAW,8JAoBf,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,eAAe,yHAcnB,CAAC;AAGH;;GAEG;AACH,QAAA,MAAM,WAAW,yHAqBf,CAAC;AAGH,OAAO,EACL,YAAY,EACZ,IAAI,EACJ,QAAQ,EACR,SAAS,EACT,WAAW,EACX,eAAe,EACf,WAAW,EACX,SAAS,GACV,CAAC"}
@@ -1,4 +1,4 @@
1
- import { type ReactNode } from 'react';
1
+ import { type ComponentPropsWithoutRef, type ReactNode } from 'react';
2
2
  import { type GroupBase } from 'react-select';
3
3
  import { type CreatableProps } from 'react-select/creatable';
4
4
  /**
@@ -21,7 +21,7 @@ export type Option = {
21
21
  * @property {boolean} [error] - When true, applies error styles.
22
22
  * @property {boolean} [canAddItem=false] - If true, allows creating new options inline.
23
23
  */
24
- export interface ReactSelectProps extends Omit<CreatableProps<Option | Option['value'], boolean, GroupBase<Option | Option['value']>>, 'options'> {
24
+ export interface ReactSelectProps extends Omit<CreatableProps<Option | Option['value'], boolean, GroupBase<Option | Option['value']>> & ComponentPropsWithoutRef<'div'>, 'options'> {
25
25
  options: Option[];
26
26
  label?: ReactNode;
27
27
  containerClassName?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"react-select.d.ts","sourceRoot":"","sources":["../../../../src/ui/form/react-select.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,SAAS,EAKf,MAAM,OAAO,CAAC;AACf,OAAe,EAGb,KAAK,SAAS,EAOf,MAAM,cAAc,CAAC;AAGtB,OAAwB,EAAE,KAAK,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE9E;;;;;GAKG;AACH,MAAM,MAAM,MAAM,GAAG;IACnB,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC;AAWF;;;;;;;;;GASG;AACH,MAAM,WAAW,gBACf,SAAQ,IAAI,CACV,cAAc,CACZ,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,EACxB,OAAO,EACP,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,CACpC,EACD,SAAS,CACV;IACD,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,GAAI,yHAWzB,gBAAgB,4CA6MlB,CAAC"}
1
+ {"version":3,"file":"react-select.d.ts","sourceRoot":"","sources":["../../../../src/ui/form/react-select.tsx"],"names":[],"mappings":"AAAA,OAAO,EACL,KAAK,wBAAwB,EAC7B,KAAK,SAAS,EAKf,MAAM,OAAO,CAAC;AACf,OAAe,EAGb,KAAK,SAAS,EAOf,MAAM,cAAc,CAAC;AAGtB,OAAwB,EAAE,KAAK,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAE9E;;;;;GAKG;AACH,MAAM,MAAM,MAAM,GAAG;IACnB,KAAK,EAAE,SAAS,CAAC;IACjB,KAAK,EAAE,MAAM,GAAG,MAAM,CAAC;CACxB,CAAC;AAWF;;;;;;;;;GASG;AACH,MAAM,WAAW,gBACf,SAAQ,IAAI,CACV,cAAc,CACZ,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,EACxB,OAAO,EACP,SAAS,CAAC,MAAM,GAAG,MAAM,CAAC,OAAO,CAAC,CAAC,CACpC,GACC,wBAAwB,CAAC,KAAK,CAAC,EACjC,SAAS,CACV;IACD,OAAO,EAAE,MAAM,EAAE,CAAC;IAClB,KAAK,CAAC,EAAE,SAAS,CAAC;IAClB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,KAAK,CAAC,EAAE,OAAO,CAAC;IAChB,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED;;;;;;GAMG;AACH,eAAO,MAAM,WAAW,GAAI,yHAWzB,gBAAgB,4CA6MlB,CAAC"}
@@ -9,5 +9,9 @@ declare const PopoverTrigger: React.ForwardRefExoticComponent<PopoverPrimitive.P
9
9
  * PopoverContent - The floating panel that appears near the trigger.
10
10
  */
11
11
  declare const PopoverContent: React.ForwardRefExoticComponent<Omit<PopoverPrimitive.PopoverContentProps & React.RefAttributes<HTMLDivElement>, "ref"> & React.RefAttributes<HTMLDivElement>>;
12
- export { Popover, PopoverTrigger, PopoverContent };
12
+ interface PopoverContainerProps {
13
+ triggerProps?: React.ComponentPropsWithoutRef<typeof PopoverTrigger>;
14
+ contentProps?: React.ComponentPropsWithoutRef<typeof PopoverContent>;
15
+ }
16
+ export { Popover, PopoverTrigger, PopoverContent, type PopoverContainerProps };
13
17
  //# sourceMappingURL=popover.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../../src/ui/popover/popover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAG5D;;GAEG;AACH,QAAA,MAAM,OAAO,yCAAwB,CAAC;AAEtC,QAAA,MAAM,cAAc,gHAA2B,CAAC;AAEhD;;GAEG;AACH,QAAA,MAAM,cAAc,gKAgBlB,CAAC;AAGH,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,CAAC"}
1
+ {"version":3,"file":"popover.d.ts","sourceRoot":"","sources":["../../../../src/ui/popover/popover.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAG5D;;GAEG;AACH,QAAA,MAAM,OAAO,yCAAwB,CAAC;AAEtC,QAAA,MAAM,cAAc,gHAA2B,CAAC;AAEhD;;GAEG;AACH,QAAA,MAAM,cAAc,gKAgBlB,CAAC;AAGH,UAAU,qBAAqB;IAC7B,YAAY,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,CAAC;IACrE,YAAY,CAAC,EAAE,KAAK,CAAC,wBAAwB,CAAC,OAAO,cAAc,CAAC,CAAC;CACtE;AAED,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,cAAc,EAAE,KAAK,qBAAqB,EAAE,CAAC"}
@@ -1,5 +1,15 @@
1
1
  import * as React from 'react';
2
2
  import * as ProgressPrimitive from '@radix-ui/react-progress';
3
+ /**
4
+ * Progress component - Displays an indicator showing the completion progress of a task.
5
+ * Built on Radix UI Progress primitive.
6
+ *
7
+ * @param className - Additional CSS classes.
8
+ * @param value - The progress value (0-100).
9
+ * @param children - Optional content overlaid on the progress bar.
10
+ * @param props - Other props passed to the root element.
11
+ * @returns {JSX.Element} The rendered Progress component.
12
+ */
3
13
  declare function Progress({ className, value, children, ...props }: React.ComponentProps<typeof ProgressPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
4
14
  export { Progress };
5
15
  //# sourceMappingURL=progress.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../../../src/ui/progress/progress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,iBAAiB,MAAM,0BAA0B,CAAC;AAG9D,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,2CAwBrD;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
1
+ {"version":3,"file":"progress.d.ts","sourceRoot":"","sources":["../../../../src/ui/progress/progress.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,KAAK,MAAM,OAAO,CAAC;AAC/B,OAAO,KAAK,iBAAiB,MAAM,0BAA0B,CAAC;AAG9D;;;;;;;;;GASG;AACH,iBAAS,QAAQ,CAAC,EAChB,SAAS,EACT,KAAK,EACL,QAAQ,EACR,GAAG,KAAK,EACT,EAAE,KAAK,CAAC,cAAc,CAAC,OAAO,iBAAiB,CAAC,IAAI,CAAC,2CAwBrD;AAED,OAAO,EAAE,QAAQ,EAAE,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dgz-ui",
3
- "version": "1.3.13",
3
+ "version": "1.3.15",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "dist"