@agility/plenum-ui 2.0.6 → 2.0.7
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 +1 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/types/stories/molecules/inputs/NestedInputButton/NestedInputButton.d.ts +1 -4
- package/package.json +1 -1
- package/stories/molecules/inputs/NestedInputButton/NestedInputButton.tsx +17 -12
- package/stories/organisms/AnimatedFormInputWithAddons/AnimatedFormInputWithAddons.stories.tsx +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -497,7 +497,7 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/InputLabel/index' {
|
|
|
497
497
|
declare module '@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/NestedInputButton' {
|
|
498
498
|
import React from "react";
|
|
499
499
|
import { IDynamicIconProps } from "@/stories/atoms/icons";
|
|
500
|
-
export interface INestedInputButtonProps {
|
|
500
|
+
export interface INestedInputButtonProps extends Omit<React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>, "ref"> {
|
|
501
501
|
/** Icon to be included*/
|
|
502
502
|
icon?: IDynamicIconProps;
|
|
503
503
|
/** CTA label */
|
|
@@ -506,9 +506,6 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/NestedInputButton/Ne
|
|
|
506
506
|
align: "left" | "right";
|
|
507
507
|
/** Show the CTA without Background color and a border seperator */
|
|
508
508
|
isClear?: boolean;
|
|
509
|
-
/** Onclick callback */
|
|
510
|
-
onClickHandler?(): void;
|
|
511
|
-
buttonProps?: React.DetailedHTMLProps<React.ButtonHTMLAttributes<HTMLButtonElement>, HTMLButtonElement>;
|
|
512
509
|
}
|
|
513
510
|
const NestedInputButton: React.FC<INestedInputButtonProps>;
|
|
514
511
|
export default NestedInputButton;
|