sodtrack-web-ui 0.40.1 → 0.41.1
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/alert-dialog.d.mts +9 -2
- package/dist/alert-dialog.d.ts +9 -2
- package/dist/alert-dialog.js +50 -1
- package/dist/alert-dialog.mjs +1 -1
- package/dist/chip-form-complementary.d.mts +3 -3
- package/dist/chip-form-complementary.d.ts +3 -3
- package/dist/chip-form-complementary.js +1 -1
- package/dist/chip-form-complementary.mjs +1 -1
- package/dist/chip-form.d.mts +3 -3
- package/dist/chip-form.d.ts +3 -3
- package/dist/chip-form.js +1 -1
- package/dist/chip-form.mjs +1 -1
- package/dist/chip-status-complementary.d.mts +1 -1
- package/dist/chip-status-complementary.d.ts +1 -1
- package/dist/{chunk-T4UDNW5L.mjs → chunk-433WSESP.mjs} +1 -1
- package/dist/{chunk-WJOAAVA2.mjs → chunk-4XAUEW6X.mjs} +1 -1
- package/dist/chunk-ALTRFQVR.mjs +1 -0
- package/dist/chunk-DC3X5JDM.mjs +1 -0
- package/dist/{chunk-XKRLLYFH.mjs → chunk-GF3AWDCV.mjs} +1 -1
- package/dist/chunk-J4IO5B32.mjs +1 -0
- package/dist/chunk-XJBYOFJV.mjs +1 -0
- package/dist/data-table.js +1 -1
- package/dist/data-table.mjs +1 -1
- package/dist/dialog.d.mts +18 -11
- package/dist/dialog.d.ts +18 -11
- package/dist/dialog.js +10 -2
- package/dist/dialog.mjs +1 -1
- package/dist/drawer.d.mts +9 -9
- package/dist/drawer.d.ts +9 -9
- package/dist/drawer.js +2 -2
- package/dist/drawer.mjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +2 -2
- package/dist/index.mjs +1 -1
- package/dist/list-item-arrow.css +1 -1
- package/dist/list-item-arrow.mjs +1 -1
- package/dist/list-item-checkbox.css +1 -1
- package/dist/list-item-checkbox.mjs +1 -1
- package/dist/list-item.css +1 -1
- package/dist/list-item.mjs +1 -1
- package/dist/tab.d.mts +1 -1
- package/dist/tab.d.ts +1 -1
- package/dist/tailwind-preset.js +1 -1
- package/dist/tailwind-preset.mjs +1 -1
- package/package.json +8 -8
- package/dist/chunk-JPWIH42K.mjs +0 -1
- package/dist/chunk-L7ZRDDXQ.mjs +0 -1
- package/dist/chunk-MQTPN3EG.mjs +0 -1
- package/dist/chunk-ZZCCUOH3.mjs +0 -1
package/dist/index.d.ts
CHANGED
|
@@ -10,11 +10,11 @@ export { ChipStatus, ChipStatusSizeType, ChipStatusSizes, ChipStatusTypeType, Ch
|
|
|
10
10
|
export { ScrollArea, ScrollAreaProps, ScrollBar } from './scrollarea.js';
|
|
11
11
|
export { ColumnDef, default as DataTable, DataTableProps, PaginationState } from './data-table.js';
|
|
12
12
|
export { Drawer, DrawerClose, DrawerContent, DrawerDescription, DrawerFooter, DrawerHeader, DrawerOverlay, DrawerPortal, DrawerSizes, DrawerTitle, DrawerTrigger } from './drawer.js';
|
|
13
|
-
export { Dialog,
|
|
13
|
+
export { Dialog, DialogActionButton, DialogBody, DialogCloseButton, DialogContent, DialogDescription, DialogExtraButton, DialogFooter, DialogHeader, DialogOverlay, DialogPortal, DialogTitle, DialogTrigger } from './dialog.js';
|
|
14
14
|
export { Toggle, ToggleProps } from './toggle.js';
|
|
15
15
|
export { RadioGroup, RadioGroupItem } from './radio.js';
|
|
16
16
|
export { Separator } from './separator.js';
|
|
17
|
-
export { AlertDialog,
|
|
17
|
+
export { AlertDialog, AlertDialogActionButton, AlertDialogBody, AlertDialogCloseButton, AlertDialogContent, AlertDialogDescription, AlertDialogExtraButton, AlertDialogFooter, AlertDialogHeader, AlertDialogOverlay, AlertDialogPortal, AlertDialogTitle, AlertDialogTrigger } from './alert-dialog.js';
|
|
18
18
|
import { LucideProps } from 'lucide-react';
|
|
19
19
|
import React__default, { HTMLAttributes, FC } from 'react';
|
|
20
20
|
export { Checkbox, CheckboxSize, CheckboxSizes } from './checkbox.js';
|
|
@@ -40,8 +40,8 @@ export { Avatar } from './avatar.js';
|
|
|
40
40
|
export { SearchBar } from './search-bar.js';
|
|
41
41
|
export { ChipFormComplementary, ChipFormComplementaryVariants, ChipFormComplementaryVariantsClassNames, ChipFormComplementaryVariantsType } from './chip-form-complementary.js';
|
|
42
42
|
export { ChipStatusComplementary, ChipStatusComplementarySizeType, ChipStatusComplementarySizes, ChipStatusComplementaryVariantType, ChipStatusComplementaryVariants } from './chip-status-complementary.js';
|
|
43
|
-
import * as
|
|
44
|
-
export { DialogPrimitive };
|
|
43
|
+
import * as Dialog from '@radix-ui/react-dialog';
|
|
44
|
+
export { Dialog as DialogPrimitive };
|
|
45
45
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
46
46
|
export { AccordionPrimitive };
|
|
47
47
|
import 'tailwind-variants';
|