@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/dist/truss.css CHANGED
@@ -135,6 +135,8 @@
135
135
  .transition { transition: background-color 200ms cubic-bezier(0.4, 0, 0.2, 1), border-color 200ms cubic-bezier(0.4, 0, 0.2, 1), box-shadow 200ms cubic-bezier(0.4, 0, 0.2, 1), left 200ms cubic-bezier(0.4, 0, 0.2, 1), right 200ms cubic-bezier(0.4, 0, 0.2, 1), margin 200ms cubic-bezier(0.4, 0, 0.2, 1), width 200ms cubic-bezier(0.4, 0, 0.2, 1), opacity 200ms cubic-bezier(0.4, 0, 0.2, 1); }
136
136
  /* @truss p:2000 c:transitionHeight */
137
137
  .transitionHeight { transition: height 200ms cubic-bezier(0.4, 0, 0.2, 1); }
138
+ /* @truss p:2000 c:transitionTop */
139
+ .transitionTop { transition: top 200ms cubic-bezier(0.4, 0, 0.2, 1); }
138
140
  /* @truss p:2000 c:transitionTransform */
139
141
  .transitionTransform { transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1); }
140
142
  /* @truss p:2000 c:transitionWidth */
@@ -539,8 +541,6 @@
539
541
  .z1 { z-index: 1; }
540
542
  /* @truss p:3000 c:z2 */
541
543
  .z2 { z-index: 2; }
542
- /* @truss p:3000 c:zIndex_auto */
543
- .zIndex_auto { z-index: auto; }
544
544
  /* @truss p:3000 c:z_10 */
545
545
  .z_10 { z-index: 10; }
546
546
  /* @truss p:3000 c:z_999999 */
@@ -577,8 +577,6 @@
577
577
  .textAlign_var { text-align: var(--textAlign); }
578
578
  /* @truss p:3000.5 c:transform_var */
579
579
  .transform_var { transform: var(--transform); }
580
- /* @truss p:3000.5 c:zIndex_var */
581
- .zIndex_var { z-index: var(--zIndex); }
582
580
  /* @truss p:3000.5 c:z_var */
583
581
  .z_var { z-index: var(--zIndex); }
584
582
  /* @truss p:3092 c:d_cursorNotAllowed */
@@ -789,6 +787,8 @@
789
787
  .mta { margin-top: auto; }
790
788
  /* @truss p:4000 c:mw0 */
791
789
  .mw0 { min-width: 0; }
790
+ /* @truss p:4000 c:mw100 */
791
+ .mw100 { min-width: 100%; }
792
792
  /* @truss p:4000 c:mw_32px */
793
793
  .mw_32px { min-width: 32px; }
794
794
  /* @truss p:4000 c:mw_fit_content */
@@ -967,6 +967,8 @@
967
967
  .w_max_content { width: max-content; }
968
968
  /* @truss p:4000 c:wa */
969
969
  .wa { width: auto; }
970
+ /* @truss p:4000 c:wfc */
971
+ .wfc { width: fit-content; }
970
972
  /* @truss p:4000 c:width_100dvw */
971
973
  .width_100dvw { width: 100dvw; }
972
974
  /* @truss p:4000 c:width_fit_content */
@@ -1070,8 +1072,6 @@
1070
1072
  /* @truss @property */
1071
1073
  @property --zIndex { syntax: "*"; inherits: false; }
1072
1074
  /* @truss @property */
1073
- @property --zIndex { syntax: "*"; inherits: false; }
1074
- /* @truss @property */
1075
1075
  @property --h_backgroundColor { syntax: "*"; inherits: false; }
1076
1076
  /* @truss @property */
1077
1077
  @property --borderBottomWidth { syntax: "*"; inherits: false; }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@homebound/beam",
3
- "version": "3.16.0",
3
+ "version": "3.17.0",
4
4
  "type": "module",
5
5
  "author": "Homebound",
6
6
  "license": "MIT",
@@ -11,7 +11,8 @@
11
11
  "files": [
12
12
  "dist",
13
13
  "!dist/**/*.{stories,test}.*",
14
- "!dist/setupTests.*"
14
+ "!dist/setupTests.*",
15
+ "docs/layout-shells.md"
15
16
  ],
16
17
  "engines": {
17
18
  "node": "~22.14.0"
@@ -28,7 +29,8 @@
28
29
  "require": "./dist/utils/rtlUtils.cjs"
29
30
  },
30
31
  "./Css.json": "./dist/Css.json",
31
- "./index.css": "./dist/index.css"
32
+ "./index.css": "./dist/index.css",
33
+ "./docs/layout-shells.md": "./docs/layout-shells.md"
32
34
  },
33
35
  "scripts": {
34
36
  "start": "yarn storybook",