bianic-ui 1.6.0 → 1.7.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.
Files changed (112) hide show
  1. package/dist/cjs/index.js +28 -21
  2. package/dist/cjs/lib.css +1 -1
  3. package/dist/cjs/types/components/Button/Button.d.ts +2 -14
  4. package/dist/cjs/types/components/Button/PropInterfaceButton.d.ts +14 -0
  5. package/dist/cjs/types/components/Button/buttonConfigs.d.ts +1 -0
  6. package/dist/cjs/types/components/Forms/Group/FormGroup.d.ts +8 -0
  7. package/dist/cjs/types/components/Forms/Group/FormGroupButton.d.ts +5 -0
  8. package/dist/cjs/types/components/Forms/Group/FormGroupLabel.d.ts +9 -0
  9. package/dist/cjs/types/components/Forms/Group/Simulation.d.ts +6 -0
  10. package/dist/cjs/types/components/Forms/Group/configs.d.ts +4 -0
  11. package/dist/cjs/types/components/Forms/Group/index.d.ts +4 -0
  12. package/dist/cjs/types/components/Forms/TextInput/PropsInterface.d.ts +20 -0
  13. package/dist/cjs/types/components/Forms/TextInput/Simulation.d.ts +2 -1
  14. package/dist/cjs/types/components/Forms/TextInput/index.d.ts +3 -21
  15. package/dist/cjs/types/components/Icons/AlertRoundedSquare.d.ts +4 -0
  16. package/dist/cjs/types/components/Icons/CubeHeader.d.ts +4 -0
  17. package/dist/cjs/types/components/Icons/Discrepancy.d.ts +4 -0
  18. package/dist/cjs/types/components/Icons/FQAnalytical.d.ts +4 -0
  19. package/dist/cjs/types/components/Icons/FQGetaway.d.ts +4 -0
  20. package/dist/cjs/types/components/Icons/FQModeler.d.ts +4 -0
  21. package/dist/cjs/types/components/Icons/FQOperation.d.ts +4 -0
  22. package/dist/cjs/types/components/Icons/FQWelldone.d.ts +4 -0
  23. package/dist/cjs/types/components/Icons/Flowqount.d.ts +4 -0
  24. package/dist/cjs/types/components/Icons/Inlet.d.ts +4 -0
  25. package/dist/cjs/types/components/Icons/Legend.d.ts +4 -0
  26. package/dist/cjs/types/components/Icons/ModelBalance.d.ts +4 -0
  27. package/dist/cjs/types/components/Icons/Outlet.d.ts +4 -0
  28. package/dist/cjs/types/components/Icons/SelectAllAdd.d.ts +4 -0
  29. package/dist/cjs/types/components/Icons/SelectAllRemove.d.ts +4 -0
  30. package/dist/cjs/types/components/Icons/Spinner.d.ts +4 -0
  31. package/dist/cjs/types/components/Icons/Stack.d.ts +4 -0
  32. package/dist/cjs/types/components/Icons/index.d.ts +21 -4
  33. package/dist/cjs/types/components/Pills/Pills.d.ts +4 -3
  34. package/dist/cjs/types/components/Pills/config.d.ts +4 -0
  35. package/dist/cjs/types/stories/Form/Group/GroupButton.stories.d.ts +17 -0
  36. package/dist/cjs/types/stories/Form/Group/SampleTest.stories.d.ts +13 -0
  37. package/dist/cjs/types/stories/Form/TextInput/TextInputSimulation.stories.d.ts +13 -0
  38. package/dist/cjs/types/stories/Icons/AlertRoundedSquare.stories.d.ts +14 -0
  39. package/dist/cjs/types/stories/Icons/CubeHeader.stories.d.ts +14 -0
  40. package/dist/cjs/types/stories/Icons/Discrepancy.stories.d.ts +14 -0
  41. package/dist/cjs/types/stories/Icons/FQAnalytical.stories.d.ts +14 -0
  42. package/dist/cjs/types/stories/Icons/FQGetaway.stories.d.ts +14 -0
  43. package/dist/cjs/types/stories/Icons/FQModeler.stories.d.ts +14 -0
  44. package/dist/cjs/types/stories/Icons/FQOperation.stories.d.ts +14 -0
  45. package/dist/cjs/types/stories/Icons/FQWelldone.stories.d.ts +14 -0
  46. package/dist/cjs/types/stories/Icons/Flowqount.stories.d.ts +14 -0
  47. package/dist/cjs/types/stories/Icons/Inlet.stories.d.ts +14 -0
  48. package/dist/cjs/types/stories/Icons/Legend.stories.d.ts +14 -0
  49. package/dist/cjs/types/stories/Icons/ModalBalance.stories.d.ts +14 -0
  50. package/dist/cjs/types/stories/Icons/Outlet.stories.d.ts +14 -0
  51. package/dist/cjs/types/stories/Icons/SelectAllAdd.stories.d.ts +14 -0
  52. package/dist/cjs/types/stories/Icons/SelectAllRemove.stories.d.ts +14 -0
  53. package/dist/cjs/types/stories/Icons/Spinner.stories.d.ts +14 -0
  54. package/dist/cjs/types/stories/Icons/Stack.stories.d.ts +14 -0
  55. package/dist/esm/index.js +28 -21
  56. package/dist/esm/lib.css +1 -1
  57. package/dist/esm/types/components/Button/Button.d.ts +2 -14
  58. package/dist/esm/types/components/Button/PropInterfaceButton.d.ts +14 -0
  59. package/dist/esm/types/components/Button/buttonConfigs.d.ts +1 -0
  60. package/dist/esm/types/components/Forms/Group/FormGroup.d.ts +8 -0
  61. package/dist/esm/types/components/Forms/Group/FormGroupButton.d.ts +5 -0
  62. package/dist/esm/types/components/Forms/Group/FormGroupLabel.d.ts +9 -0
  63. package/dist/esm/types/components/Forms/Group/Simulation.d.ts +6 -0
  64. package/dist/esm/types/components/Forms/Group/configs.d.ts +4 -0
  65. package/dist/esm/types/components/Forms/Group/index.d.ts +4 -0
  66. package/dist/esm/types/components/Forms/TextInput/PropsInterface.d.ts +20 -0
  67. package/dist/esm/types/components/Forms/TextInput/Simulation.d.ts +2 -1
  68. package/dist/esm/types/components/Forms/TextInput/index.d.ts +3 -21
  69. package/dist/esm/types/components/Icons/AlertRoundedSquare.d.ts +4 -0
  70. package/dist/esm/types/components/Icons/CubeHeader.d.ts +4 -0
  71. package/dist/esm/types/components/Icons/Discrepancy.d.ts +4 -0
  72. package/dist/esm/types/components/Icons/FQAnalytical.d.ts +4 -0
  73. package/dist/esm/types/components/Icons/FQGetaway.d.ts +4 -0
  74. package/dist/esm/types/components/Icons/FQModeler.d.ts +4 -0
  75. package/dist/esm/types/components/Icons/FQOperation.d.ts +4 -0
  76. package/dist/esm/types/components/Icons/FQWelldone.d.ts +4 -0
  77. package/dist/esm/types/components/Icons/Flowqount.d.ts +4 -0
  78. package/dist/esm/types/components/Icons/Inlet.d.ts +4 -0
  79. package/dist/esm/types/components/Icons/Legend.d.ts +4 -0
  80. package/dist/esm/types/components/Icons/ModelBalance.d.ts +4 -0
  81. package/dist/esm/types/components/Icons/Outlet.d.ts +4 -0
  82. package/dist/esm/types/components/Icons/SelectAllAdd.d.ts +4 -0
  83. package/dist/esm/types/components/Icons/SelectAllRemove.d.ts +4 -0
  84. package/dist/esm/types/components/Icons/Spinner.d.ts +4 -0
  85. package/dist/esm/types/components/Icons/Stack.d.ts +4 -0
  86. package/dist/esm/types/components/Icons/index.d.ts +21 -4
  87. package/dist/esm/types/components/Pills/Pills.d.ts +4 -3
  88. package/dist/esm/types/components/Pills/config.d.ts +4 -0
  89. package/dist/esm/types/stories/Form/Group/GroupButton.stories.d.ts +17 -0
  90. package/dist/esm/types/stories/Form/Group/SampleTest.stories.d.ts +13 -0
  91. package/dist/esm/types/stories/Form/TextInput/TextInputSimulation.stories.d.ts +13 -0
  92. package/dist/esm/types/stories/Icons/AlertRoundedSquare.stories.d.ts +14 -0
  93. package/dist/esm/types/stories/Icons/CubeHeader.stories.d.ts +14 -0
  94. package/dist/esm/types/stories/Icons/Discrepancy.stories.d.ts +14 -0
  95. package/dist/esm/types/stories/Icons/FQAnalytical.stories.d.ts +14 -0
  96. package/dist/esm/types/stories/Icons/FQGetaway.stories.d.ts +14 -0
  97. package/dist/esm/types/stories/Icons/FQModeler.stories.d.ts +14 -0
  98. package/dist/esm/types/stories/Icons/FQOperation.stories.d.ts +14 -0
  99. package/dist/esm/types/stories/Icons/FQWelldone.stories.d.ts +14 -0
  100. package/dist/esm/types/stories/Icons/Flowqount.stories.d.ts +14 -0
  101. package/dist/esm/types/stories/Icons/Inlet.stories.d.ts +14 -0
  102. package/dist/esm/types/stories/Icons/Legend.stories.d.ts +14 -0
  103. package/dist/esm/types/stories/Icons/ModalBalance.stories.d.ts +14 -0
  104. package/dist/esm/types/stories/Icons/Outlet.stories.d.ts +14 -0
  105. package/dist/esm/types/stories/Icons/SelectAllAdd.stories.d.ts +14 -0
  106. package/dist/esm/types/stories/Icons/SelectAllRemove.stories.d.ts +14 -0
  107. package/dist/esm/types/stories/Icons/Spinner.stories.d.ts +14 -0
  108. package/dist/esm/types/stories/Icons/Stack.stories.d.ts +14 -0
  109. package/dist/index.d.ts +14 -12
  110. package/package.json +1 -1
  111. /package/dist/cjs/types/stories/FileTree/{FileTree.stories.d.ts → FIleTree.stories.d.ts} +0 -0
  112. /package/dist/esm/types/stories/FileTree/{FileTree.stories.d.ts → FIleTree.stories.d.ts} +0 -0
@@ -1,17 +1,5 @@
1
- import React, { ComponentPropsWithoutRef } from 'react';
2
- interface ButtonProps extends ComponentPropsWithoutRef<'button'> {
3
- className?: string;
4
- disabled?: boolean;
5
- iconRight?: React.ReactNode;
6
- iconLeft?: React.ReactNode;
7
- right?: React.ReactNode;
8
- left?: React.ReactNode;
9
- label?: string;
10
- radius?: 'default' | 'full-rounded';
11
- size?: 'lg' | 'md' | 'sm' | 'tn';
12
- minWidth?: number;
13
- variant?: 'default' | 'danger' | 'info' | 'link' | 'primary' | 'subtle' | 'subtle-link' | 'success' | 'warning' | 'default-outlined' | 'danger-outlined' | 'info-outlined' | 'primary-outlined' | 'success-outlined' | 'warning-outlined';
14
- }
1
+ import React from 'react';
2
+ import { ButtonProps } from './PropInterfaceButton';
15
3
  declare function Button({ label, className, disabled, radius, size, variant, iconLeft, iconRight, left, right, minWidth, ...props }: ButtonProps): React.JSX.Element;
16
4
  declare namespace Button {
17
5
  var defaultProps: {
@@ -0,0 +1,14 @@
1
+ import { ComponentPropsWithoutRef } from "react";
2
+ export interface ButtonProps extends ComponentPropsWithoutRef<'button'> {
3
+ className?: string;
4
+ disabled?: boolean;
5
+ iconRight?: React.ReactNode;
6
+ iconLeft?: React.ReactNode;
7
+ right?: React.ReactNode;
8
+ left?: React.ReactNode;
9
+ label?: string;
10
+ radius?: 'default' | 'full-rounded';
11
+ size?: 'lg' | 'md' | 'sm' | 'tn';
12
+ minWidth?: number;
13
+ variant?: 'default' | 'danger' | 'info' | 'link' | 'primary' | 'subtle' | 'subtle-link' | 'success' | 'warning' | 'default-outlined' | 'danger-outlined' | 'info-outlined' | 'primary-outlined' | 'success-outlined' | 'warning-outlined' | 'form-group';
14
+ }
@@ -52,4 +52,5 @@ export declare const variantConfig: {
52
52
  'success-outlined': string;
53
53
  'warning-outlined': string;
54
54
  'danger-outlined': string;
55
+ 'form-group': string;
55
56
  };
@@ -0,0 +1,8 @@
1
+ import React from 'react';
2
+ import './style.css';
3
+ interface FormGroupProps extends React.HTMLAttributes<HTMLDivElement> {
4
+ children?: React.ReactNode;
5
+ size?: 'md' | 'sm';
6
+ }
7
+ declare const FormGroup: ({ children, size }: FormGroupProps) => React.JSX.Element;
8
+ export default FormGroup;
@@ -0,0 +1,5 @@
1
+ import React from 'react';
2
+ import './style.css';
3
+ import { ButtonProps } from '../../Button/PropInterfaceButton';
4
+ declare const FormGroupButton: ({ ...props }: ButtonProps) => React.JSX.Element;
5
+ export default FormGroupButton;
@@ -0,0 +1,9 @@
1
+ import React, { ComponentPropsWithoutRef } from 'react';
2
+ interface FormGroupLabelProps extends ComponentPropsWithoutRef<'label'> {
3
+ text?: string;
4
+ iconLeft?: React.ReactNode;
5
+ iconRight?: React.ReactNode;
6
+ size?: 'md' | 'sm';
7
+ }
8
+ declare const FormGroupLabel: ({ iconLeft, iconRight, size, text, ...props }: FormGroupLabelProps) => React.JSX.Element;
9
+ export default FormGroupLabel;
@@ -0,0 +1,6 @@
1
+ import React from 'react';
2
+ export interface FormGroupSimulationProps {
3
+ size?: 'md' | 'sm';
4
+ }
5
+ declare const FormGroupSimulation: ({ size }: FormGroupSimulationProps) => React.JSX.Element;
6
+ export default FormGroupSimulation;
@@ -0,0 +1,4 @@
1
+ export declare const labelSizeConfig: {
2
+ md: string;
3
+ sm: string;
4
+ };
@@ -0,0 +1,4 @@
1
+ import FormGroup from './FormGroup';
2
+ import FormGroupButton from './FormGroupButton';
3
+ import FormGroupLabel from './FormGroupLabel';
4
+ export { FormGroup, FormGroupButton, FormGroupLabel };
@@ -0,0 +1,20 @@
1
+ import { ChangeEvent, ComponentPropsWithoutRef } from 'react';
2
+ interface TextInputProps extends Omit<ComponentPropsWithoutRef<'input'>, 'size'> {
3
+ descText?: string;
4
+ disabled?: boolean;
5
+ icon?: React.ReactNode;
6
+ id?: string;
7
+ size?: 'md' | 'sm';
8
+ isValid?: boolean | null;
9
+ label?: string;
10
+ placeholder?: string;
11
+ readOnly?: boolean;
12
+ variant?: 'password' | 'text' | 'number' | 'date' | 'text-transparent';
13
+ value?: string;
14
+ onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
15
+ maxLength?: number;
16
+ inputClassName?: string;
17
+ isFlatRight?: boolean;
18
+ actionElement?: React.ReactNode;
19
+ }
20
+ export default TextInputProps;
@@ -1,8 +1,9 @@
1
1
  import React from 'react';
2
+ import TextInputProps from './PropsInterface';
2
3
  interface TextInputSimulationProps {
3
4
  size?: 'md' | 'sm';
4
5
  backgroundColor?: string;
5
6
  }
6
- export declare const TextInputSimulationComponent: ({ size, }: TextInputSimulationProps) => React.JSX.Element;
7
+ export declare const TextInputSimulationComponent: ({ size, ...props }: TextInputProps) => React.JSX.Element;
7
8
  export declare const TransparentTextInputSimulationComponent: ({ backgroundColor, size, }: TextInputSimulationProps) => React.JSX.Element;
8
9
  export {};
@@ -1,23 +1,5 @@
1
- import React, { ChangeEvent, ComponentPropsWithoutRef } from 'react';
2
- interface TextInputProps extends Omit<ComponentPropsWithoutRef<'input'>, 'size'> {
3
- descText?: string;
4
- disabled?: boolean;
5
- icon?: React.ReactNode;
6
- id?: string;
7
- size?: 'md' | 'sm';
8
- isValid?: boolean | null;
9
- label?: string;
10
- placeholder?: string;
11
- readOnly?: boolean;
12
- variant?: 'password' | 'text' | 'number' | 'date' | 'text-transparent';
13
- value?: string;
14
- onChange?: (event: ChangeEvent<HTMLInputElement>) => void;
15
- maxLength?: number;
16
- inputClassName?: string;
17
- isFlatRight?: boolean;
18
- actionElement?: React.ReactNode;
19
- autoComplete?: string;
20
- }
1
+ import React from 'react';
2
+ import TextInputProps from './PropsInterface';
21
3
  declare function TextInput({ descText, disabled, icon, id, size, isValid, label, placeholder, readOnly, required, variant, value, onChange, maxLength, inputClassName, isFlatRight, actionElement, autoComplete, ...props }: TextInputProps): React.JSX.Element;
22
4
  declare namespace TextInput {
23
5
  var defaultProps: {
@@ -31,7 +13,7 @@ declare namespace TextInput {
31
13
  placeholder: string;
32
14
  readOnly: boolean;
33
15
  variant: string;
34
- value: string;
16
+ value: undefined;
35
17
  onChange: () => void;
36
18
  inputClassName: string;
37
19
  isFlatRight: boolean;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const AlertRoundedSquare: ({ className, fill, size, }: IconProps) => React.JSX.Element;
4
+ export default AlertRoundedSquare;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const CubeHeader: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default CubeHeader;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Discrepancy: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Discrepancy;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const FQAnalytical: ({ className, fill, size, }: IconProps) => React.JSX.Element;
4
+ export default FQAnalytical;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const FQGetaway: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default FQGetaway;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const FQModeler: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default FQModeler;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const FQOperation: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default FQOperation;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const FQWelldone: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default FQWelldone;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Flowqount: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Flowqount;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Inlet: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Inlet;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Legend: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Legend;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const ModalBalance: ({ className, fill, size, }: IconProps) => React.JSX.Element;
4
+ export default ModalBalance;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Outlet: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Outlet;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const SelectAllAdd: ({ className, fill, size, }: IconProps) => React.JSX.Element;
4
+ export default SelectAllAdd;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const SelectAllRemove: ({ className, fill, size, }: IconProps) => React.JSX.Element;
4
+ export default SelectAllRemove;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Spinner: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Spinner;
@@ -0,0 +1,4 @@
1
+ import React from 'react';
2
+ import { IconProps } from './interface';
3
+ declare const Stack: ({ className, fill, size }: IconProps) => React.JSX.Element;
4
+ export default Stack;
@@ -1,4 +1,21 @@
1
- export { default as BiaNode } from './Node';
2
- export { default as BiaPort } from './Port';
3
- export { default as BiaExposedPort } from './ExposedPort';
4
- export { default as BiaVirtualPort } from './VirtualPort';
1
+ export { default as BCNode } from './Node';
2
+ export { default as BCPort } from './Port';
3
+ export { default as BCExposedPort } from './ExposedPort';
4
+ export { default as BCVirtualPort } from './VirtualPort';
5
+ export { default as BCAlertRoundedSquare } from './AlertRoundedSquare';
6
+ export { default as BCStack } from './Stack';
7
+ export { default as BCDiscrepancy } from './Discrepancy';
8
+ export { default as BCModalBalance } from './ModelBalance';
9
+ export { default as BCCubeHeader } from './CubeHeader';
10
+ export { default as BCLegend } from './Legend';
11
+ export { default as BCSelectAllRemove } from './SelectAllRemove';
12
+ export { default as BCSelectAllAdd } from './SelectAllAdd';
13
+ export { default as BCFQWelldone } from './FQWelldone';
14
+ export { default as BCFQOperation } from './FQOperation';
15
+ export { default as BCFQModeler } from './FQModeler';
16
+ export { default as BCFQGetaway } from './FQGetaway';
17
+ export { default as BCFQAnalytical } from './FQAnalytical';
18
+ export { default as BCFlowqount } from './Flowqount';
19
+ export { default as BCSpinner } from './Spinner';
20
+ export { default as BCOutlet } from './Outlet';
21
+ export { default as BCInlet } from './Inlet';
@@ -4,12 +4,13 @@ export interface PillsProps extends ComponentPropsWithoutRef<'button'> {
4
4
  selected: boolean;
5
5
  iconLeft?: React.ReactNode;
6
6
  iconRight?: React.ReactNode;
7
+ size?: 'small' | 'medium';
7
8
  }
8
- declare function Piils({ title, iconLeft, iconRight, selected, onClick, ...props }: PillsProps): React.JSX.Element;
9
- declare namespace Piils {
9
+ declare function Pills({ title, iconLeft, iconRight, selected, onClick, size, ...props }: PillsProps): React.JSX.Element;
10
+ declare namespace Pills {
10
11
  var defaultProps: {
11
12
  iconLeft: null;
12
13
  iconRight: null;
13
14
  };
14
15
  }
15
- export default Piils;
16
+ export default Pills;
@@ -8,4 +8,8 @@ declare const activeConfig: {
8
8
  true: Config;
9
9
  false: Config;
10
10
  };
11
+ export declare const sizingConfig: {
12
+ small: string;
13
+ medium: string;
14
+ };
11
15
  export default activeConfig;
@@ -0,0 +1,17 @@
1
+ /// <reference types="react" />
2
+ import type { StoryObj } from '@storybook/react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ ...props }: import("../../../components/Button/PropInterfaceButton").ButtonProps) => import("react").JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ argsTypes: {
10
+ size: {
11
+ description: string;
12
+ };
13
+ };
14
+ };
15
+ export default meta;
16
+ type Story = StoryObj<typeof meta>;
17
+ export declare const FormGroupButtonExample: Story;
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import type { StoryObj } from '@storybook/react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ size }: import("../../../components/Forms/Group/Simulation").FormGroupSimulationProps) => import("react").JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ args: {};
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const TestSample: Story;
@@ -0,0 +1,13 @@
1
+ /// <reference types="react" />
2
+ import type { StoryObj } from '@storybook/react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ size, ...props }: import("../../../components/Forms/TextInput/PropsInterface").default) => import("react").JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ args: {};
10
+ };
11
+ export default meta;
12
+ type Story = StoryObj<typeof meta>;
13
+ export declare const TextInputSimulation: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size, }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;
@@ -0,0 +1,14 @@
1
+ import type { StoryObj } from '@storybook/react';
2
+ import React from 'react';
3
+ declare const meta: {
4
+ title: string;
5
+ component: ({ className, fill, size }: import("../../components/Icons/interface").IconProps) => React.JSX.Element;
6
+ parameters: {
7
+ layout: string;
8
+ };
9
+ tags: string[];
10
+ args: {};
11
+ };
12
+ export default meta;
13
+ type Story = StoryObj<typeof meta>;
14
+ export declare const Preview: Story;