@julseb-lib/react 0.1.0 → 0.1.2
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.cjs.js +86 -87
- package/dist/index.es.js +83 -84
- package/dist/index.umd.js +86 -87
- package/dist/lib/components/Avatar/Avatar.tsx +1 -1
- package/dist/lib/components/Avatar/AvatarFunction.tsx +0 -3
- package/dist/lib/components/InputImage/InputImage.tsx +1 -1
- package/dist/lib/components/InputPhone/InputPhone.tsx +308 -308
- package/dist/lib/components/InputPhone/styles.tsx +181 -182
- package/dist/lib/types/component-items.ts +185 -185
- package/package.json +1 -1
|
@@ -12,7 +12,7 @@ import type { ILibInputImage } from "./types"
|
|
|
12
12
|
* @extends HTMLInputElement
|
|
13
13
|
* @param {Object} props - InputImage props.
|
|
14
14
|
* @param {string} [props.data-testid] - Test id for testing purposes.
|
|
15
|
-
*
|
|
15
|
+
* @param {Ref<HTMLInputElement>} [props.ref] - Ref forwarded to the input element.
|
|
16
16
|
* @param {string} props.id - Input id.
|
|
17
17
|
* @param {string} props.value - Image source value.
|
|
18
18
|
* @param {string|number} [props.width=64] - Width of the image/input.
|