@fabio.caffarello/react-design-system 3.12.0 → 3.13.0
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/granular/index.js +393 -389
- package/dist/granular/index.js.map +1 -1
- package/dist/granular/ui/components/ButtonGroup/ButtonGroup.js +68 -0
- package/dist/granular/ui/components/ButtonGroup/ButtonGroup.js.map +1 -0
- package/dist/granular/ui/primitives/Dot/Dot.js +99 -0
- package/dist/granular/ui/primitives/Dot/Dot.js.map +1 -0
- package/dist/index.cjs +60 -60
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +1327 -1218
- package/dist/index.js.map +1 -1
- package/dist/ui/components/ButtonGroup/ButtonGroup.d.ts +2 -2
- package/dist/ui/components/index.d.ts +2 -0
- package/dist/ui/primitives/index.d.ts +2 -0
- package/package.json +1 -1
|
@@ -8,8 +8,8 @@ export interface ButtonGroupProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
8
8
|
/**
|
|
9
9
|
* ButtonGroup Component
|
|
10
10
|
*
|
|
11
|
-
* A group of buttons displayed together.
|
|
12
|
-
*
|
|
11
|
+
* A group of buttons displayed together. A component — composed from
|
|
12
|
+
* `Button` primitives.
|
|
13
13
|
*
|
|
14
14
|
* @example
|
|
15
15
|
* ```tsx
|
|
@@ -85,3 +85,5 @@ export { default as HeroSection } from "./HeroSection";
|
|
|
85
85
|
export type { HeroSectionProps, HeroSectionVariant, HeroSectionAlign, } from "./HeroSection";
|
|
86
86
|
export { default as TabsAsLinks } from "./TabsAsLinks";
|
|
87
87
|
export type { TabsAsLinksProps, TabAsLink, TabsAsLinksVariant, } from "./TabsAsLinks";
|
|
88
|
+
export { ButtonGroup } from "./ButtonGroup";
|
|
89
|
+
export type { ButtonGroupProps } from "./ButtonGroup";
|
|
@@ -38,3 +38,5 @@ export type { SliderProps, SliderVariant, SliderSize } from "./Slider";
|
|
|
38
38
|
export * from "./Chip";
|
|
39
39
|
export type { ChipProps, ChipVariant, ChipSize } from "./Chip";
|
|
40
40
|
export * from "./Avatar";
|
|
41
|
+
export { Dot } from "./Dot";
|
|
42
|
+
export type { DotProps, DotVariant, DotSize } from "./Dot";
|