@agility/plenum-ui 2.1.20-rc1 → 2.1.20-rc3
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 +21235 -1059
- package/dist/types/stories/molecules/inputs/InputLabel/InputLabel.d.ts +1 -0
- package/dist/types/stories/molecules/inputs/checkbox/Checkbox.d.ts +2 -2
- package/package.json +1 -1
- package/stories/molecules/inputs/InputLabel/InputLabel.tsx +4 -2
- package/stories/molecules/inputs/checkbox/Checkbox.tsx +32 -32
- package/stories/organisms/DropdownWithMultiSelect/DropdownItems.ts +1 -168
- package/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect.tsx +6 -3
package/dist/index.d.ts
CHANGED
|
@@ -500,6 +500,7 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabe
|
|
|
500
500
|
isActive?: boolean;
|
|
501
501
|
isFocused?: boolean;
|
|
502
502
|
label?: string;
|
|
503
|
+
truncateLabel?: boolean;
|
|
503
504
|
}
|
|
504
505
|
/** Comment */
|
|
505
506
|
const InputLabel: FC<IInputLabelProps>;
|
|
@@ -609,8 +610,8 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox' {
|
|
|
609
610
|
hasBorder?: boolean;
|
|
610
611
|
/** any arbitrary classNames to add to the wrapper */
|
|
611
612
|
className?: string;
|
|
612
|
-
/**
|
|
613
|
-
|
|
613
|
+
/** Truncate label */
|
|
614
|
+
truncateLabel?: boolean;
|
|
614
615
|
}
|
|
615
616
|
/** Comment */
|
|
616
617
|
const Checkbox: FC<ICheckboxProps>;
|