@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 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
- /** Label ClassName */
614
- labelClassName?: string;
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;