@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 +2 -18
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/tailwind.css +25 -0
- package/dist/types/stories/molecules/inputs/checkbox/Checkbox.d.ts +2 -0
- package/package.json +2 -2
- package/stories/molecules/inputs/InputLabel/InputLabel.tsx +5 -5
- package/stories/molecules/inputs/TextInput/TextInput.stories.tsx +31 -1
- package/stories/molecules/inputs/TextInput/TextInput.tsx +5 -3
- package/stories/molecules/inputs/checkbox/Checkbox.tsx +6 -2
- package/stories/molecules/inputs/select/Select.stories.tsx +53 -0
- package/stories/molecules/inputs/select/Select.tsx +1 -1
- package/stories/molecules/inputs/textArea/{TextArea.stories.ts → TextArea.stories.tsx} +24 -1
- package/stories/molecules/inputs/textArea/TextArea.tsx +1 -1
- package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.stories.tsx +22 -1
- package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +21 -8
- package/tailwind.config.js +57 -0
- package/dist/types/stories/molecules/inputs/select/Select.stories.d.ts +0 -6
- package/dist/types/stories/molecules/inputs/textArea/TextArea.stories.d.ts +0 -6
- package/stories/molecules/inputs/select/Select.stories.ts +0 -23
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";
|