globalfy-design-system 0.56.0 → 0.57.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/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Globalfy Design System
2
2
 
3
- Shared Components Library ready to use on React Globalfy projects
3
+ Shared Components Library ready to use on React Globalfy projects.
4
4
 
5
5
  ## Working on the project
6
6
 
@@ -1,2 +1,2 @@
1
1
  import { RadioGroupProps } from "./RadioGroup.types";
2
- export declare const RadioGroup: ({ options, labelPosition }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
2
+ export declare const RadioGroup: ({ options, labelPosition, orientation }: RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
@@ -1,7 +1,7 @@
1
1
  import { StoryObj } from "@storybook/react";
2
2
  declare const meta: {
3
3
  title: string;
4
- component: ({ options, labelPosition }: import("./RadioGroup.types").RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
4
+ component: ({ options, labelPosition, orientation }: import("./RadioGroup.types").RadioGroupProps) => import("react/jsx-runtime").JSX.Element;
5
5
  tags: string[];
6
6
  };
7
7
  export default meta;
@@ -7,4 +7,5 @@ export type RadioGroupOption = {
7
7
  export type RadioGroupProps = {
8
8
  options: RadioGroupOption[];
9
9
  labelPosition?: "left" | "right";
10
+ orientation?: "vertical" | "horizontal";
10
11
  };
@@ -16,3 +16,4 @@ export * from "./Input";
16
16
  export * from "./Popover";
17
17
  export * from "./DatePicker";
18
18
  export * from "./Tag";
19
+ export * from "./ToastContainer";