@agility/plenum-ui 2.0.0 → 2.0.1

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 CHANGED
@@ -594,6 +594,8 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox' {
594
594
  hasBorder?: boolean;
595
595
  /** any arbitrary classNames to add to the wrapper */
596
596
  className?: string;
597
+ /** Label ClassName */
598
+ labelClassName?: string;
597
599
  }
598
600
  /** Comment */
599
601
  const Checkbox: FC<ICheckboxProps>;
@@ -758,15 +760,6 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select' {
758
760
  const Select: React.FC<ISelectProps>;
759
761
  export default Select;
760
762
 
761
- }
762
- declare module '@agility/plenum-ui/stories/molecules/inputs/select/Select.stories' {
763
- import type { Meta, StoryObj } from "@storybook/react";
764
- import Select from "@agility/plenum-ui/stories/molecules/inputs/select/Select";
765
- const meta: Meta<typeof Select>;
766
- type Story = StoryObj<typeof Select>;
767
- export const DefaultSelect: Story;
768
- export default meta;
769
-
770
763
  }
771
764
  declare module '@agility/plenum-ui/stories/molecules/inputs/select/index' {
772
765
  import Select, { ISelectProps, ISimpleSelectOptions } from "@agility/plenum-ui/stories/molecules/inputs/select/Select";
@@ -815,15 +808,6 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea' {
815
808
  const Textarea: React.FC<ITextareaProps>;
816
809
  export default Textarea;
817
810
 
818
- }
819
- declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea.stories' {
820
- import type { Meta, StoryObj } from "@storybook/react";
821
- import Textarea from "@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea";
822
- const meta: Meta<typeof Textarea>;
823
- type Story = StoryObj<typeof Textarea>;
824
- export const DefaultTextarea: Story;
825
- export default meta;
826
-
827
811
  }
828
812
  declare module '@agility/plenum-ui/stories/molecules/inputs/textArea/index' {
829
813
  import TextArea, { ITextareaProps } from "@agility/plenum-ui/stories/molecules/inputs/textArea/TextArea";