@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 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;