@agility/plenum-ui 2.0.3 → 2.0.4
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/organisms/FormInputWithAddons/FormInputWithAddons.d.ts +2 -0
- package/package.json +1 -1
- package/stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx +2 -2
- package/stories/organisms/FormInputWithAddons/FormInputWithAddons.stories.tsx +19 -0
- package/stories/organisms/FormInputWithAddons/FormInputWithAddons.tsx +8 -0
package/dist/index.d.ts
CHANGED
|
@@ -1014,6 +1014,7 @@ declare module '@agility/plenum-ui/stories/organisms/FormInputWithAddons/FormInp
|
|
|
1014
1014
|
import { IDynamicIconProps } from "@/stories/atoms/icons";
|
|
1015
1015
|
import React from "react";
|
|
1016
1016
|
import { IInputFieldProps, AcceptedInputTypes } from "@/stories/molecules/inputs/InputField";
|
|
1017
|
+
import { INestedInputButtonProps } from "@/stories/molecules/inputs/NestedInputButton";
|
|
1017
1018
|
export interface IFormInputWithAddonsProps extends Omit<IInputFieldProps, "type"> {
|
|
1018
1019
|
leadIcon?: IDynamicIconProps;
|
|
1019
1020
|
leadLabel?: string;
|
|
@@ -1029,6 +1030,7 @@ declare module '@agility/plenum-ui/stories/organisms/FormInputWithAddons/FormInp
|
|
|
1029
1030
|
leadIconClassNames?: string;
|
|
1030
1031
|
customIconClass?: string;
|
|
1031
1032
|
type: AcceptedInputTypes;
|
|
1033
|
+
addonBTN?: INestedInputButtonProps;
|
|
1032
1034
|
}
|
|
1033
1035
|
const FormInputWithAddons: React.FC<IFormInputWithAddonsProps>;
|
|
1034
1036
|
export default FormInputWithAddons;
|