@agility/plenum-ui 2.0.0-rc45 → 2.0.0-rc47
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 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/tailwind.css +58 -0
- package/dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts +3 -1
- package/package.json +1 -1
- package/stories/organisms/DropdownComponent/Dropdown.stories.tsx +24 -0
- package/stories/organisms/DropdownComponent/DropdownComponent.tsx +15 -4
package/dist/index.d.ts
CHANGED
|
@@ -936,7 +936,7 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownC
|
|
|
936
936
|
export interface IItemProp {
|
|
937
937
|
icon?: IDynamicIconProps;
|
|
938
938
|
iconPosition?: "trailing" | "leading";
|
|
939
|
-
label: string;
|
|
939
|
+
label: string | JSX.Element;
|
|
940
940
|
onClick?(): void;
|
|
941
941
|
isEmphasized?: boolean;
|
|
942
942
|
key: React.Key;
|
|
@@ -961,6 +961,8 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownC
|
|
|
961
961
|
alignmentAxis: number | null;
|
|
962
962
|
}>;
|
|
963
963
|
disabled?: boolean;
|
|
964
|
+
onFocus?: () => void;
|
|
965
|
+
onBlur?: () => void;
|
|
964
966
|
}
|
|
965
967
|
export const defaultClassNames: {
|
|
966
968
|
groupClassname: string;
|