@aurora-ds/components 1.1.0 → 1.1.1
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/cjs/index.js +2 -3
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +2 -3
- package/dist/esm/index.js.map +1 -1
- package/dist/index.d.ts +2 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -836,12 +836,9 @@ type BoxStyleProps = {
|
|
|
836
836
|
*/
|
|
837
837
|
declare const Box: FC<BoxProps>;
|
|
838
838
|
|
|
839
|
-
type CardProps =
|
|
840
|
-
|
|
841
|
-
/** Visual style. @default 'elevated' */
|
|
839
|
+
type CardProps = BoxProps & {
|
|
840
|
+
/** Visual style. @default 'outlined' */
|
|
842
841
|
variant?: CardVariant;
|
|
843
|
-
/** Inner padding using a spacing token. @default 'none' */
|
|
844
|
-
padding?: keyof Theme['spacing'];
|
|
845
842
|
};
|
|
846
843
|
|
|
847
844
|
type CardHeaderProps = {
|