@agility/plenum-ui 2.2.1 → 2.2.3
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 +3 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/tailwind.css +26 -45
- package/dist/types/stories/atoms/Typography/Label/Label.d.ts +2 -1
- package/dist/types/stories/atoms/Typography/Paragraph/Paragraph.d.ts +1 -1
- package/package.json +1 -1
- package/stories/atoms/Typography/Label/Label.tsx +7 -2
- package/stories/atoms/Typography/Paragraph/Paragraph.tsx +6 -5
- package/stories/molecules/inputs/InputCounter/InputCounter.tsx +5 -9
- package/stories/molecules/inputs/InputField/InputField.tsx +21 -21
- package/stories/molecules/inputs/InputLabel/InputLabel.tsx +10 -15
- package/stories/molecules/inputs/TextInput/TextInput.tsx +7 -15
- package/stories/molecules/inputs/combobox/ComboBox.tsx +1 -9
- package/stories/molecules/inputs/select/Select.tsx +1 -11
- package/stories/molecules/inputs/textArea/TextArea.tsx +1 -9
package/dist/index.d.ts
CHANGED
|
@@ -76,8 +76,9 @@ declare module '@agility/plenum-ui/stories/atoms/Typography/Label/Label' {
|
|
|
76
76
|
size?: LabelSize;
|
|
77
77
|
children: React.ReactNode;
|
|
78
78
|
className?: string;
|
|
79
|
+
htmlFor?: string;
|
|
79
80
|
}
|
|
80
|
-
export default function Label({ as, size, children, className }: LabelProps): import("react/jsx-runtime").JSX.Element;
|
|
81
|
+
export default function Label({ as, size, children, className, htmlFor }: LabelProps): import("react/jsx-runtime").JSX.Element;
|
|
81
82
|
export {};
|
|
82
83
|
|
|
83
84
|
}
|
|
@@ -104,7 +105,7 @@ declare module '@agility/plenum-ui/stories/atoms/Typography/Label/index' {
|
|
|
104
105
|
}
|
|
105
106
|
declare module '@agility/plenum-ui/stories/atoms/Typography/Paragraph/Paragraph' {
|
|
106
107
|
type ParagraphAs = "span" | "p" | "label" | "strong" | "em";
|
|
107
|
-
type ParagraphSize = "lg" | "md" | "sm" | "xs";
|
|
108
|
+
type ParagraphSize = "xl" | "lg" | "md" | "sm" | "xs";
|
|
108
109
|
export interface ParagraphProps {
|
|
109
110
|
as?: ParagraphAs;
|
|
110
111
|
size?: ParagraphSize;
|