@parasutcom/fds 0.1.25 → 0.1.26
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.ts +13 -0
- package/dist/index.js +8602 -8009
- package/dist/styles.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -16,6 +16,7 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
16
16
|
import { JSXElementConstructor } from 'react';
|
|
17
17
|
import { Menu } from '@base-ui/react/menu';
|
|
18
18
|
import { OTPInput } from 'input-otp';
|
|
19
|
+
import { Popover as Popover_2 } from '@base-ui/react/popover';
|
|
19
20
|
import { Progress as Progress_2 } from '@base-ui/react/progress';
|
|
20
21
|
import { Radio } from '@base-ui/react/radio';
|
|
21
22
|
import { RadioGroup as RadioGroup_2 } from '@base-ui/react/radio-group';
|
|
@@ -780,6 +781,18 @@ export declare function PaginationNext({ className, ...props }: React_2.Componen
|
|
|
780
781
|
|
|
781
782
|
export declare function PaginationPrevious({ className, ...props }: React_2.ComponentProps<typeof PaginationLink>): JSX.Element;
|
|
782
783
|
|
|
784
|
+
export declare function Popover({ ...props }: Popover_2.Root.Props): JSX.Element;
|
|
785
|
+
|
|
786
|
+
export declare function PopoverContent({ className, align, alignOffset, side, sideOffset, ...props }: Popover_2.Popup.Props & Pick<Popover_2.Positioner.Props, "align" | "alignOffset" | "side" | "sideOffset">): JSX.Element;
|
|
787
|
+
|
|
788
|
+
export declare function PopoverDescription({ className, ...props }: Popover_2.Description.Props): JSX.Element;
|
|
789
|
+
|
|
790
|
+
export declare function PopoverHeader({ className, ...props }: React_2.ComponentProps<"div">): JSX.Element;
|
|
791
|
+
|
|
792
|
+
export declare function PopoverTitle({ className, ...props }: Popover_2.Title.Props): JSX.Element;
|
|
793
|
+
|
|
794
|
+
export declare function PopoverTrigger({ ...props }: Popover_2.Trigger.Props): JSX.Element;
|
|
795
|
+
|
|
783
796
|
export declare function Progress({ className, children, value, ...props }: Progress_2.Root.Props): JSX.Element;
|
|
784
797
|
|
|
785
798
|
export declare function ProgressIndicator({ className, ...props }: Progress_2.Indicator.Props): JSX.Element;
|