@agility/plenum-ui 2.0.0-rc41 → 2.0.0-rc43
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 -4
- package/dist/index.js +1 -1
- package/dist/index.js.map +3 -3
- package/dist/types/stories/molecules/inputs/InputField/InputField.d.ts +2 -4
- package/package.json +1 -1
- package/stories/atoms/loaders/NProgress/RadialProgress.tsx +0 -2
- package/stories/molecules/inputs/InputField/InputField.tsx +22 -20
- package/stories/molecules/inputs/checkbox/Checkbox.stories.ts +1 -1
- package/stories/molecules/inputs/radio/Radio.stories.ts +2 -2
- package/stories/molecules/inputs/toggleSwitch/ToggleSwitch.stories.tsx +15 -16
- package/stories/organisms/ButtonDropdown/ButtonDropdown.stories.tsx +1 -1
- package/stories/organisms/DropdownComponent/DropdownComponent.tsx +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -459,11 +459,9 @@ declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/InputFiel
|
|
|
459
459
|
clientSideCheck?: boolean;
|
|
460
460
|
/** Placeholder text */
|
|
461
461
|
placeholder?: string;
|
|
462
|
-
/**ref for input */
|
|
463
|
-
ref?: React.Ref<HTMLInputElement>;
|
|
464
462
|
}
|
|
465
|
-
const
|
|
466
|
-
export default
|
|
463
|
+
const _InputField: React.ForwardRefExoticComponent<IInputFieldProps & React.RefAttributes<HTMLInputElement>>;
|
|
464
|
+
export default _InputField;
|
|
467
465
|
|
|
468
466
|
}
|
|
469
467
|
declare module '@agility/plenum-ui/stories/molecules/inputs/InputField/index' {
|