@sikka/hawa 0.11.10-next → 0.11.11-next
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/index.d.mts +5 -2
- package/dist/index.d.ts +5 -2
- package/dist/index.js +509 -693
- package/dist/index.mjs +12 -209
- package/package.json +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -12,7 +12,6 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
|
12
12
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
13
13
|
import { RowData, ColumnDef } from '@tanstack/react-table';
|
|
14
14
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
15
|
-
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
16
15
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
17
16
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
18
17
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -543,7 +542,11 @@ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPri
|
|
|
543
542
|
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
544
543
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
545
544
|
|
|
546
|
-
|
|
545
|
+
type SeparatorProps = {
|
|
546
|
+
className?: string;
|
|
547
|
+
orientation?: "horizontal" | "vertical";
|
|
548
|
+
};
|
|
549
|
+
declare const Separator: React$1.FC<SeparatorProps>;
|
|
547
550
|
|
|
548
551
|
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
549
552
|
|
package/dist/index.d.ts
CHANGED
|
@@ -12,7 +12,6 @@ import * as PopoverPrimitive from '@radix-ui/react-popover';
|
|
|
12
12
|
import * as SliderPrimitive from '@radix-ui/react-slider';
|
|
13
13
|
import { RowData, ColumnDef } from '@tanstack/react-table';
|
|
14
14
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
15
|
-
import * as SeparatorPrimitive from '@radix-ui/react-separator';
|
|
16
15
|
import * as ProgressPrimitive from '@radix-ui/react-progress';
|
|
17
16
|
import * as TabsPrimitive from '@radix-ui/react-tabs';
|
|
18
17
|
import * as ScrollAreaPrimitive from '@radix-ui/react-scroll-area';
|
|
@@ -543,7 +542,11 @@ declare const AccordionItem: React$1.ForwardRefExoticComponent<Omit<AccordionPri
|
|
|
543
542
|
declare const AccordionTrigger: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & React$1.RefAttributes<HTMLButtonElement>>;
|
|
544
543
|
declare const AccordionContent: React$1.ForwardRefExoticComponent<Omit<AccordionPrimitive.AccordionContentProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
545
544
|
|
|
546
|
-
|
|
545
|
+
type SeparatorProps = {
|
|
546
|
+
className?: string;
|
|
547
|
+
orientation?: "horizontal" | "vertical";
|
|
548
|
+
};
|
|
549
|
+
declare const Separator: React$1.FC<SeparatorProps>;
|
|
547
550
|
|
|
548
551
|
declare const Progress: React$1.ForwardRefExoticComponent<Omit<ProgressPrimitive.ProgressProps & React$1.RefAttributes<HTMLDivElement>, "ref"> & React$1.RefAttributes<HTMLDivElement>>;
|
|
549
552
|
|