@agility/plenum-ui 2.0.0-rc57 → 2.0.0-rc59
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/AnimatedLabelInput/AnimatedLabelInput.d.ts +2 -0
- package/package.json +1 -1
- package/stories/molecules/inputs/InputCounter/InputCounter.tsx +1 -1
- package/stories/molecules/inputs/TextInput/TextInput.tsx +1 -1
- package/stories/organisms/AnimatedLabelInput/AnimatedLabelInput.tsx +12 -2
package/dist/index.d.ts
CHANGED
|
@@ -873,6 +873,8 @@ declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/Animated
|
|
|
873
873
|
message?: string;
|
|
874
874
|
required?: boolean;
|
|
875
875
|
isError?: boolean;
|
|
876
|
+
isShowCounter?: boolean;
|
|
877
|
+
maxLength?: number;
|
|
876
878
|
label: ILabelProps;
|
|
877
879
|
handleChange: (value: string) => void;
|
|
878
880
|
}
|