@agility/plenum-ui 2.1.7 → 2.1.9
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 -0
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/tailwind.css +20204 -5
- package/dist/types/stories/organisms/DropdownComponent/DropdownComponent.d.ts +2 -0
- package/dist/types/stories/organisms/TextInputSelect/TextInputSelect.d.ts +1 -0
- package/package.json +1 -1
- package/stories/organisms/DropdownComponent/DropdownComponent.tsx +6 -3
- package/stories/organisms/TextInputSelect/TextInputSelect.tsx +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -990,6 +990,7 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownC
|
|
|
990
990
|
buttonClassname?: ClassNameWithAutocomplete;
|
|
991
991
|
iconClassname?: ClassNameWithAutocomplete;
|
|
992
992
|
iconSpacingClassname?: ClassNameWithAutocomplete;
|
|
993
|
+
dividerClassname?: ClassNameWithAutocomplete;
|
|
993
994
|
placement?: Placement;
|
|
994
995
|
offsetOptions?: Partial<{
|
|
995
996
|
mainAxis: number;
|
|
@@ -1010,6 +1011,7 @@ declare module '@agility/plenum-ui/stories/organisms/DropdownComponent/DropdownC
|
|
|
1010
1011
|
buttonClassname: string;
|
|
1011
1012
|
iconClassname: string;
|
|
1012
1013
|
iconSpacingClassname: string;
|
|
1014
|
+
dividerClassname: string;
|
|
1013
1015
|
};
|
|
1014
1016
|
/** Comment */
|
|
1015
1017
|
const Dropdown: React.FC<IDropdownProps>;
|
|
@@ -1155,6 +1157,7 @@ declare module '@agility/plenum-ui/stories/organisms/TextInputSelect/TextInputSe
|
|
|
1155
1157
|
onChange?(value: string): void;
|
|
1156
1158
|
/** Callback on input select field */
|
|
1157
1159
|
onSelectOption?(value: string): void;
|
|
1160
|
+
selectInputClassName?: string;
|
|
1158
1161
|
}
|
|
1159
1162
|
const TextInputSelect: FC<ITextInputSelectProps>;
|
|
1160
1163
|
export default TextInputSelect;
|