@homebound/beam 3.16.0 → 3.17.0
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/README.md +4 -0
- package/dist/Css.json +1 -0
- package/dist/index.cjs +1377 -1017
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +43 -28
- package/dist/index.d.ts +43 -28
- package/dist/index.js +1114 -760
- package/dist/index.js.map +1 -1
- package/dist/truss.css +6 -6
- package/package.json +5 -3
package/README.md
CHANGED
|
@@ -6,6 +6,10 @@ Homebound's React component design system.
|
|
|
6
6
|
|
|
7
7
|
_To see the latest designs, check out the [Figma](https://www.figma.com/file/aWUE4pPeUTgrYZ4vaTYZQU/%E2%9C%A8Beam-Design-System-Refresh?node-id=0%3A1) file._
|
|
8
8
|
|
|
9
|
+
## Page layout shells
|
|
10
|
+
|
|
11
|
+
Standard **app shell** composition (global nav + body, sidebar + content, page header + body) is implemented as **`NavbarLayout`**, **`SideNavLayout`**, and **`PageHeaderLayout`** from this package. Source lives in **`src/layouts/`** (sibling of `src/components/`). Full setup and composition rules: [`docs/layouts.md`](docs/layouts.md) — also published in the npm package at `node_modules/@homebound/beam/docs/layouts.md`.
|
|
12
|
+
|
|
9
13
|
## Getting Started
|
|
10
14
|
|
|
11
15
|
```bash
|
package/dist/Css.json
CHANGED
|
@@ -902,6 +902,7 @@
|
|
|
902
902
|
"transitionOpacity": {"kind":"static","defs":{"transition":"opacity 200ms cubic-bezier(0.4, 0, 0.2, 1)"}},
|
|
903
903
|
"transitionTransform": {"kind":"static","defs":{"transition":"transform 200ms cubic-bezier(0.4, 0, 0.2, 1)"}},
|
|
904
904
|
"transitionHeight": {"kind":"static","defs":{"transition":"height 200ms cubic-bezier(0.4, 0, 0.2, 1)"}},
|
|
905
|
+
"transitionTop": {"kind":"static","defs":{"transition":"top 200ms cubic-bezier(0.4, 0, 0.2, 1)"}},
|
|
905
906
|
"bsh0": {"kind":"static","defs":{"boxShadow":"none"}},
|
|
906
907
|
"bshBasic": {"kind":"static","defs":{"boxShadow":"0px 4px 8px rgba(53, 53, 53, 0.08), 0px 2px 16px rgba(53, 53, 53, 0.03);"}},
|
|
907
908
|
"bshHover": {"kind":"static","defs":{"boxShadow":"0px 4px 8px rgba(53, 53, 53, 0.1), 0px 2px 24px rgba(53, 53, 53, 0.08);"}},
|