@agility/plenum-ui 2.0.5 → 2.0.6
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 +36 -5
- package/dist/index.js +1 -1
- package/dist/index.js.map +4 -4
- package/dist/types/stories/index.d.ts +3 -3
- package/dist/types/stories/organisms/AnimatedFormInputWithAddons/AnimatedFormInputWithAddons.d.ts +21 -0
- package/dist/types/stories/organisms/AnimatedFormInputWithAddons/index.d.ts +3 -0
- package/dist/types/stories/organisms/index.d.ts +3 -2
- package/package.json +1 -1
- package/stories/index.ts +7 -3
- package/stories/organisms/index.ts +5 -3
package/dist/index.d.ts
CHANGED
|
@@ -402,9 +402,9 @@ declare module '@agility/plenum-ui/stories/atoms/loaders/index' {
|
|
|
402
402
|
declare module '@agility/plenum-ui/stories/index' {
|
|
403
403
|
import { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, UnifiedIconName, IconName, FAIconName, BTNActionType, Avatar, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName } from "@agility/plenum-ui/stories/atoms/index";
|
|
404
404
|
import { ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, TextInput, ITextInputProps, ISimpleSelectOptions } from "@agility/plenum-ui/stories/molecules/index";
|
|
405
|
-
import { IAnimatedLabelInputProps, AnimatedLabelTextArea, IAnimatedLabelTextAreaProps, IButtonDropdownProps, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, TextInputSelect, ITextInputSelectProps } from "@agility/plenum-ui/stories/organisms/index";
|
|
406
|
-
export type { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, ITextInputSelectProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, IAnimatedLabelInputProps, IAnimatedLabelTextAreaProps, IButtonDropdownProps, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, UnifiedIconName, IconName, FAIconName, BTNActionType, ITextInputProps, ISimpleSelectOptions };
|
|
407
|
-
export { Avatar, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, AnimatedLabelInput, AnimatedLabelTextArea, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName, TextInput, TextInputSelect };
|
|
405
|
+
import { IAnimatedLabelInputProps, AnimatedLabelTextArea, IAnimatedLabelTextAreaProps, IButtonDropdownProps, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, AnimatedLabelInput, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, TextInputSelect, ITextInputSelectProps, IAnimatedFormInputWithAddons, AnimatedFormInputWithAddons } from "@agility/plenum-ui/stories/organisms/index";
|
|
406
|
+
export type { IAvatarProps, IBadgeProps, IButtonProps, ICapsuleProps, ITextInputSelectProps, IDynamicIconProps, IIconWithShadowProps, ILoaderProps, IRadialProgressProps, ICheckboxProps, IComboboxProps, IInputFieldProps, IInputLabelProps, INestedInputButtonProps, IRadioProps, ISelectProps, ITextareaProps, IToggleSwitchProps, AcceptedInputTypes, IAnimatedLabelInputProps, IAnimatedLabelTextAreaProps, IButtonDropdownProps, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, UnifiedIconName, IconName, FAIconName, BTNActionType, ITextInputProps, ISimpleSelectOptions, IAnimatedFormInputWithAddons };
|
|
407
|
+
export { Avatar, Checkbox, Combobox, InputField, InputLabel, NestedInputButton, Radio, Select, Textarea, ToggleSwitch, AnimatedLabelInput, AnimatedLabelTextArea, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, Badge, Button, Capsule, DynamicIcon, IconWithShadow, Loader, RadialProgress, isFAIcon, isHeroIcon, isTablerIcon, isUnifiedIconName, TextInput, TextInputSelect, AnimatedFormInputWithAddons };
|
|
408
408
|
|
|
409
409
|
}
|
|
410
410
|
declare module '@agility/plenum-ui/stories/molecules/index' {
|
|
@@ -844,6 +844,36 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/toggleSwitch/index'
|
|
|
844
844
|
export type { IToggleSwitchProps };
|
|
845
845
|
export default ToggleSwitch;
|
|
846
846
|
|
|
847
|
+
}
|
|
848
|
+
declare module '@agility/plenum-ui/stories/organisms/AnimatedFormInputWithAddons/AnimatedFormInputWithAddons' {
|
|
849
|
+
import React from "react";
|
|
850
|
+
import { IInputFieldProps } from "@/stories/molecules/inputs/InputField";
|
|
851
|
+
import { INestedInputButtonProps } from "@/stories/molecules";
|
|
852
|
+
interface ILabelProps extends React.DetailedHTMLProps<React.LabelHTMLAttributes<HTMLLabelElement>, HTMLLabelElement> {
|
|
853
|
+
display: string;
|
|
854
|
+
}
|
|
855
|
+
export interface IAnimatedFormInputWithAddons extends Omit<IInputFieldProps, "handleChange"> {
|
|
856
|
+
id: string;
|
|
857
|
+
containerStyles?: string;
|
|
858
|
+
message?: string;
|
|
859
|
+
required?: boolean;
|
|
860
|
+
isError?: boolean;
|
|
861
|
+
isShowCounter?: boolean;
|
|
862
|
+
maxLength?: number;
|
|
863
|
+
label: ILabelProps;
|
|
864
|
+
handleChange: (value: string) => void;
|
|
865
|
+
labelClassName?: string;
|
|
866
|
+
addonBTN: INestedInputButtonProps;
|
|
867
|
+
}
|
|
868
|
+
const AnimatedFormInputWithAddons: React.FC<IAnimatedFormInputWithAddons>;
|
|
869
|
+
export default AnimatedFormInputWithAddons;
|
|
870
|
+
|
|
871
|
+
}
|
|
872
|
+
declare module '@agility/plenum-ui/stories/organisms/AnimatedFormInputWithAddons/index' {
|
|
873
|
+
import AnimatedFormInputWithAddons, { IAnimatedFormInputWithAddons } from "@agility/plenum-ui/stories/organisms/AnimatedFormInputWithAddons/AnimatedFormInputWithAddons";
|
|
874
|
+
export type { IAnimatedFormInputWithAddons };
|
|
875
|
+
export default AnimatedFormInputWithAddons;
|
|
876
|
+
|
|
847
877
|
}
|
|
848
878
|
declare module '@agility/plenum-ui/stories/organisms/AnimatedLabelInput/AnimatedLabelInput' {
|
|
849
879
|
import React from "react";
|
|
@@ -1126,8 +1156,9 @@ declare module '@agility/plenum-ui/stories/organisms/index' {
|
|
|
1126
1156
|
import EmptySectionPlaceholder, { IEmptySectionPlaceholderProps } from "@agility/plenum-ui/stories/organisms/EmptySectionPlaceholder/index";
|
|
1127
1157
|
import FormInputWithAddons, { IFormInputWithAddonsProps } from "@agility/plenum-ui/stories/organisms/FormInputWithAddons/index";
|
|
1128
1158
|
import TextInputSelect, { ITextInputSelectProps } from "@agility/plenum-ui/stories/organisms/TextInputSelect/index";
|
|
1129
|
-
|
|
1130
|
-
export {
|
|
1159
|
+
import AnimatedFormInputWithAddons, { IAnimatedFormInputWithAddons } from "@agility/plenum-ui/stories/organisms/AnimatedFormInputWithAddons/index";
|
|
1160
|
+
export type { IAnimatedLabelInputProps, IAnimatedLabelTextAreaProps, IButtonDropdownProps, IDropdownProps, IEmptySectionPlaceholderProps, IItemProp, IFormInputWithAddonsProps, ITextInputSelectProps, IAnimatedFormInputWithAddons };
|
|
1161
|
+
export { AnimatedLabelInput, AnimatedLabelTextArea, ButtonDropdown, Dropdown, EmptySectionPlaceholder, FormInputWithAddons, TextInputSelect, AnimatedFormInputWithAddons };
|
|
1131
1162
|
|
|
1132
1163
|
}
|
|
1133
1164
|
declare module '@agility/plenum-ui/utils/types' {
|