@rackbops/ui-react 0.2.1 → 0.2.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/Card.d.ts +6 -5
- package/package.json +1 -1
package/dist/Card.d.ts
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
import { type HTMLAttributes, type RefAttributes } from "react";
|
|
2
2
|
export interface CardProps extends HTMLAttributes<HTMLDivElement>, RefAttributes<HTMLDivElement> {
|
|
3
3
|
/**
|
|
4
|
-
* Raised elevation
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
*
|
|
4
|
+
* Raised elevation, mapping to `.rb-card--raised`. Styled by every theme with
|
|
5
|
+
* a second elevation tier; a sanctioned no-op in the three nazuraki ports --
|
|
6
|
+
* luminous-precision and neon-butterfly have no second tier upstream, and
|
|
7
|
+
* summer-cloud's is `--floating` (already carried over), so `--raised` would
|
|
8
|
+
* only duplicate it. Documented in STANDARD.md 5.3 and contract.json's
|
|
9
|
+
* allowlist, where it falls through to the base card.
|
|
9
10
|
*/
|
|
10
11
|
raised?: boolean;
|
|
11
12
|
}
|