@goodhood-web/ui 1.12.0-development.30 → 1.12.0-development.32
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/index.js +60 -60
- package/index.mjs +1881 -1862
- package/lib/Molecules/Card/Card.d.ts +1 -1
- package/lib/Molecules/Card/Card.types.d.ts +1 -0
- package/lib/Molecules/Card/CardBody/CardBody.d.ts +1 -1
- package/lib/Molecules/Card/CardBody/CardBody.types.d.ts +1 -0
- package/package.json +1 -1
- package/style.css +1 -1
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CardProps } from './Card.types';
|
|
2
2
|
|
|
3
|
-
declare const Card: ({ allowedElement, ariaLabel, as: Tag, borderRadius, children, className, role, }: CardProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare const Card: ({ allowedElement, ariaLabel, as: Tag, borderRadius, children, className, role, withoutPadding, }: CardProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default Card;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { CardBodyProps } from './CardBody.types';
|
|
2
2
|
|
|
3
|
-
declare const CardBody: ({ children, className }: CardBodyProps) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
declare const CardBody: ({ children, className, withoutPadding }: CardBodyProps) => import("react/jsx-runtime").JSX.Element;
|
|
4
4
|
export default CardBody;
|