@bigbinary/neetoui 4.4.4 → 4.4.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/CHANGELOG.md +4 -4
- package/formik.cjs.js +13 -4
- package/formik.js +13 -4
- package/index.cjs.js +13 -5
- package/index.css +1 -1
- package/index.d.ts +0 -1
- package/index.js +13 -5
- package/layouts.cjs.js +4 -5
- package/layouts.js +4 -5
- package/package.json +7 -3
package/index.d.ts
CHANGED
|
@@ -124,7 +124,6 @@ export interface AlertProps {
|
|
|
124
124
|
export type AvatarProps = {
|
|
125
125
|
size?: "small" | "medium" | "large" | "extraLarge";
|
|
126
126
|
user?: { name: string; imageUrl: string };
|
|
127
|
-
isSquare?: boolean;
|
|
128
127
|
status?: "online" | "idle" | "offline";
|
|
129
128
|
onClick?: React.MouseEventHandler<HTMLSpanElement>;
|
|
130
129
|
showTooltip?: boolean;
|