@livepeer/design-system 1.1.0 → 1.1.2
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 +43 -3
- package/dist/components/Accordion.d.ts +4 -4
- package/dist/components/AlertDialog.d.ts +2 -1
- package/dist/components/Avatar.d.ts +1 -1
- package/dist/components/Checkbox.d.ts +1 -1
- package/dist/components/ContextMenu.d.ts +3 -3
- package/dist/components/Dialog.d.ts +1 -1
- package/dist/components/DropdownMenu.d.ts +3 -3
- package/dist/components/Heading.d.ts +1 -1
- package/dist/components/Label.d.ts +1 -1
- package/dist/components/Menu.d.ts +2 -2
- package/dist/components/Paragraph.d.ts +1 -1
- package/dist/components/Popover.d.ts +1 -1
- package/dist/components/ProgressBar.d.ts +1 -1
- package/dist/components/Radio.d.ts +1 -1
- package/dist/components/RadioCard.d.ts +1 -1
- package/dist/components/Select.d.ts +1 -1
- package/dist/components/Sheet.d.ts +1 -1
- package/dist/components/Slider.d.ts +1 -1
- package/dist/components/Switch.d.ts +1 -1
- package/dist/components/Tabs.d.ts +1 -1
- package/dist/components/VerifiedBadge.d.ts +1 -1
- package/dist/index.es.js +132 -148
- package/dist/index.js +132 -148
- package/dist/stitches.config.d.ts +2 -2
- package/package.json +1 -1
|
@@ -754,5 +754,5 @@ declare type SliderPrimitiveProps = React.ComponentProps<typeof SliderPrimitive.
|
|
|
754
754
|
declare type SliderProps = SliderPrimitiveProps & {
|
|
755
755
|
css?: CSS;
|
|
756
756
|
};
|
|
757
|
-
export declare const Slider: React.ForwardRefExoticComponent<
|
|
757
|
+
export declare const Slider: React.ForwardRefExoticComponent<Omit<SliderProps, "ref"> & React.RefAttributes<HTMLSpanElement>>;
|
|
758
758
|
export {};
|
|
@@ -757,7 +757,7 @@ declare type SwitchPrimitiveProps = React.ComponentProps<typeof SwitchPrimitive.
|
|
|
757
757
|
declare type SwitchProps = SwitchPrimitiveProps & SwitchVariants & {
|
|
758
758
|
css?: CSS;
|
|
759
759
|
};
|
|
760
|
-
export declare const Switch: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<
|
|
760
|
+
export declare const Switch: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Omit<SwitchProps, "ref"> & React.RefAttributes<HTMLButtonElement>>, {}, {
|
|
761
761
|
bp1: "(min-width: 520px)";
|
|
762
762
|
bp2: "(min-width: 900px)";
|
|
763
763
|
bp3: "(min-width: 1200px)";
|
|
@@ -2251,7 +2251,7 @@ export declare const TabsTrigger: import("@stitches/react/types/styled-component
|
|
|
2251
2251
|
};
|
|
2252
2252
|
};
|
|
2253
2253
|
}>>;
|
|
2254
|
-
export declare const TabsList: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<
|
|
2254
|
+
export declare const TabsList: import("@stitches/react/types/styled-component").StyledComponent<React.ForwardRefExoticComponent<Omit<TabsListProps, "ref"> & React.RefAttributes<HTMLDivElement>>, {}, {
|
|
2255
2255
|
bp1: "(min-width: 520px)";
|
|
2256
2256
|
bp2: "(min-width: 900px)";
|
|
2257
2257
|
bp3: "(min-width: 1200px)";
|
|
@@ -758,5 +758,5 @@ declare const StyledVerifiedBadge: import("@stitches/react/types/styled-componen
|
|
|
758
758
|
declare type VerifiedBadgeProps = React.ComponentProps<typeof StyledVerifiedBadge> & {
|
|
759
759
|
css?: CSS;
|
|
760
760
|
};
|
|
761
|
-
export declare const VerifiedBadge: React.ForwardRefExoticComponent<
|
|
761
|
+
export declare const VerifiedBadge: React.ForwardRefExoticComponent<Omit<VerifiedBadgeProps, "ref"> & React.RefAttributes<HTMLDivElement>>;
|
|
762
762
|
export {};
|