@agility/plenum-ui 2.1.20-rc2 → 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 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/tailwind.css +21235 -1059
- package/dist/types/stories/atoms/icons/IconWithShadow.d.ts +0 -1
- 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/dist/types/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect.d.ts +0 -1
- package/package.json +4 -4
- 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 +13 -6
package/dist/index.d.ts
CHANGED
|
@@ -318,7 +318,6 @@ declare module '@agility/plenum-ui/stories/atoms/icons/DynamicIcon.stories' {
|
|
|
318
318
|
|
|
319
319
|
}
|
|
320
320
|
declare module '@agility/plenum-ui/stories/atoms/icons/IconWithShadow' {
|
|
321
|
-
/// <reference types="react" />
|
|
322
321
|
import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
|
|
323
322
|
export interface IIconWithShadowProps extends IDynamicIconProps {
|
|
324
323
|
}
|
|
@@ -501,6 +500,7 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/InputLabe
|
|
|
501
500
|
isActive?: boolean;
|
|
502
501
|
isFocused?: boolean;
|
|
503
502
|
label?: string;
|
|
503
|
+
truncateLabel?: boolean;
|
|
504
504
|
}
|
|
505
505
|
/** Comment */
|
|
506
506
|
const InputLabel: FC<IInputLabelProps>;
|
|
@@ -610,8 +610,8 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/checkbox/Checkbox' {
|
|
|
610
610
|
hasBorder?: boolean;
|
|
611
611
|
/** any arbitrary classNames to add to the wrapper */
|
|
612
612
|
className?: string;
|
|
613
|
-
/**
|
|
614
|
-
|
|
613
|
+
/** Truncate label */
|
|
614
|
+
truncateLabel?: boolean;
|
|
615
615
|
}
|
|
616
616
|
/** Comment */
|
|
617
617
|
const Checkbox: FC<ICheckboxProps>;
|
|
@@ -1038,7 +1038,6 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownWithMultiSelect/Dro
|
|
|
1038
1038
|
|
|
1039
1039
|
}
|
|
1040
1040
|
declare module '@agility/plenum-ui/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect' {
|
|
1041
|
-
/// <reference types="react" />
|
|
1042
1041
|
export interface MultiSelectItemProps {
|
|
1043
1042
|
label: string;
|
|
1044
1043
|
onClick?(): void;
|