@agility/plenum-ui 2.1.20-rc7 → 2.1.20-rc8
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 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/types/stories/molecules/inputs/InputLabel/InputLabel.d.ts +1 -0
- package/dist/types/stories/molecules/inputs/checkbox/Checkbox.d.ts +2 -0
- package/package.json +1 -1
- package/stories/molecules/inputs/InputLabel/InputLabel.tsx +5 -2
- package/stories/molecules/inputs/checkbox/Checkbox.tsx +11 -2
- package/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect.tsx +1 -0
package/dist/index.d.ts
CHANGED
|
@@ -501,6 +501,7 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabe
|
|
|
501
501
|
isFocused?: boolean;
|
|
502
502
|
label?: string;
|
|
503
503
|
truncateLabel?: boolean;
|
|
504
|
+
fullWidthLabel?: boolean;
|
|
504
505
|
}
|
|
505
506
|
/** Comment */
|
|
506
507
|
const InputLabel: FC<IInputLabelProps>;
|
|
@@ -612,6 +613,8 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox' {
|
|
|
612
613
|
className?: string;
|
|
613
614
|
/** Truncate label */
|
|
614
615
|
truncateLabel?: boolean;
|
|
616
|
+
/** Full width label */
|
|
617
|
+
fullWidthLabel?: boolean;
|
|
615
618
|
}
|
|
616
619
|
/** Comment */
|
|
617
620
|
const Checkbox: FC<ICheckboxProps>;
|