@aurora-ds/components 1.1.2 → 1.1.3

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 CHANGED
@@ -841,6 +841,12 @@ declare const Box: FC<BoxProps>;
841
841
  type CardProps = BoxProps & {
842
842
  /** Visual style. @default 'outlined' */
843
843
  variant?: CardVariant;
844
+ /**
845
+ * Inner padding using a spacing token. Use `'none'` when composing with
846
+ * `Card.Header` / `Card.Body`, which manage their own spacing.
847
+ * @default 'md'
848
+ */
849
+ padding?: keyof Theme['spacing'];
844
850
  };
845
851
 
846
852
  type CardHeaderProps = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aurora-ds/components",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "type": "module",
5
5
  "description": "Aurora DS - React Components Library",
6
6
  "main": "dist/cjs/index.js",