@agility/plenum-ui 2.1.20-rc1 → 2.1.20-rc2
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 +2 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/types/stories/atoms/icons/IconWithShadow.d.ts +1 -0
- package/dist/types/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect.d.ts +1 -0
- package/package.json +4 -4
- package/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect.tsx +5 -9
package/dist/index.d.ts
CHANGED
|
@@ -318,6 +318,7 @@ 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" />
|
|
321
322
|
import { IDynamicIconProps } from "@agility/plenum-ui/stories/atoms/icons/DynamicIcon";
|
|
322
323
|
export interface IIconWithShadowProps extends IDynamicIconProps {
|
|
323
324
|
}
|
|
@@ -1037,6 +1038,7 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownWithMultiSelect/Dro
|
|
|
1037
1038
|
|
|
1038
1039
|
}
|
|
1039
1040
|
declare module '@agility/plenum-ui/stories/organisms/DropdownWithMultiSelect/DropdownWithMultiSelect' {
|
|
1041
|
+
/// <reference types="react" />
|
|
1040
1042
|
export interface MultiSelectItemProps {
|
|
1041
1043
|
label: string;
|
|
1042
1044
|
onClick?(): void;
|