@homebound/beam 3.9.0 → 3.10.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/Css.json +7 -3
- package/dist/index.cjs +2056 -1493
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +20 -2
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +179 -48
- package/dist/index.d.ts +179 -48
- package/dist/index.js +1969 -1407
- package/dist/index.js.map +1 -1
- package/dist/truss.css +25 -9
- package/package.json +1 -1
package/dist/truss.css
CHANGED
|
@@ -132,7 +132,13 @@
|
|
|
132
132
|
/* @truss p:2000 c:tdn */
|
|
133
133
|
.tdn { text-decoration: none; }
|
|
134
134
|
/* @truss p:2000 c:transition */
|
|
135
|
-
.transition { transition: background-color 200ms, border-color 200ms, box-shadow 200ms, left 200ms, right 200ms, margin 200ms; }
|
|
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
|
+
/* @truss p:2000 c:transitionHeight */
|
|
137
|
+
.transitionHeight { transition: height 200ms cubic-bezier(0.4, 0, 0.2, 1); }
|
|
138
|
+
/* @truss p:2000 c:transitionTransform */
|
|
139
|
+
.transitionTransform { transition: transform 200ms cubic-bezier(0.4, 0, 0.2, 1); }
|
|
140
|
+
/* @truss p:2000 c:transitionWidth */
|
|
141
|
+
.transitionWidth { transition: width 200ms cubic-bezier(0.4, 0, 0.2, 1); }
|
|
136
142
|
/* @truss p:2000 c:transition_all_240ms */
|
|
137
143
|
.transition_all_240ms { transition: all 240ms; }
|
|
138
144
|
/* @truss p:2000 c:transition_all_3s_ease_in_out */
|
|
@@ -483,6 +489,8 @@
|
|
|
483
489
|
.textIndent_neg999px { text-indent: -999px; }
|
|
484
490
|
/* @truss p:3000 c:to_ellipsis */
|
|
485
491
|
.to_ellipsis { text-overflow: ellipsis; }
|
|
492
|
+
/* @truss p:3000 c:transform_rotate_180deg */
|
|
493
|
+
.transform_rotate_180deg { transform: rotate(180deg); }
|
|
486
494
|
/* @truss p:3000 c:transform_translateX_50 */
|
|
487
495
|
.transform_translateX_50 { transform: translateX(-50%); }
|
|
488
496
|
/* @truss p:3000 c:transform_translateZ_0 */
|
|
@@ -531,14 +539,8 @@
|
|
|
531
539
|
.z1 { z-index: 1; }
|
|
532
540
|
/* @truss p:3000 c:z2 */
|
|
533
541
|
.z2 { z-index: 2; }
|
|
534
|
-
/* @truss p:3000 c:
|
|
535
|
-
.
|
|
536
|
-
/* @truss p:3000 c:z4 */
|
|
537
|
-
.z4 { z-index: 4; }
|
|
538
|
-
/* @truss p:3000 c:z5 */
|
|
539
|
-
.z5 { z-index: 5; }
|
|
540
|
-
/* @truss p:3000 c:z9999 */
|
|
541
|
-
.z9999 { z-index: 9999; }
|
|
542
|
+
/* @truss p:3000 c:zIndex_auto */
|
|
543
|
+
.zIndex_auto { z-index: auto; }
|
|
542
544
|
/* @truss p:3000 c:z_10 */
|
|
543
545
|
.z_10 { z-index: 10; }
|
|
544
546
|
/* @truss p:3000 c:z_1000 */
|
|
@@ -577,6 +579,8 @@
|
|
|
577
579
|
.textAlign_var { text-align: var(--textAlign); }
|
|
578
580
|
/* @truss p:3000.5 c:transform_var */
|
|
579
581
|
.transform_var { transform: var(--transform); }
|
|
582
|
+
/* @truss p:3000.5 c:zIndex_var */
|
|
583
|
+
.zIndex_var { z-index: var(--zIndex); }
|
|
580
584
|
/* @truss p:3000.5 c:z_var */
|
|
581
585
|
.z_var { z-index: var(--zIndex); }
|
|
582
586
|
/* @truss p:3092 c:d_cursorNotAllowed */
|
|
@@ -679,6 +683,8 @@
|
|
|
679
683
|
.left_100 { left: calc(var(--t-spacing) * 100); }
|
|
680
684
|
/* @truss p:4000 c:left_2px */
|
|
681
685
|
.left_2px { left: 2px; }
|
|
686
|
+
/* @truss p:4000 c:marginLeft_auto */
|
|
687
|
+
.marginLeft_auto { margin-left: auto; }
|
|
682
688
|
/* @truss p:4000 c:maxh_50 */
|
|
683
689
|
.maxh_50 { max-height: 50%; }
|
|
684
690
|
/* @truss p:4000 c:maxh_74px */
|
|
@@ -805,6 +811,8 @@
|
|
|
805
811
|
.pb2 { padding-bottom: calc(var(--t-spacing) * 2); }
|
|
806
812
|
/* @truss p:4000 c:pb3 */
|
|
807
813
|
.pb3 { padding-bottom: calc(var(--t-spacing) * 3); }
|
|
814
|
+
/* @truss p:4000 c:pb4 */
|
|
815
|
+
.pb4 { padding-bottom: calc(var(--t-spacing) * 4); }
|
|
808
816
|
/* @truss p:4000 c:pb_12px */
|
|
809
817
|
.pb_12px { padding-bottom: 12px; }
|
|
810
818
|
/* @truss p:4000 c:pb_25px */
|
|
@@ -867,6 +875,8 @@
|
|
|
867
875
|
.pt2 { padding-top: calc(var(--t-spacing) * 2); }
|
|
868
876
|
/* @truss p:4000 c:pt3 */
|
|
869
877
|
.pt3 { padding-top: calc(var(--t-spacing) * 3); }
|
|
878
|
+
/* @truss p:4000 c:pt5 */
|
|
879
|
+
.pt5 { padding-top: calc(var(--t-spacing) * 5); }
|
|
870
880
|
/* @truss p:4000 c:pt_12px */
|
|
871
881
|
.pt_12px { padding-top: 12px; }
|
|
872
882
|
/* @truss p:4000 c:pt_25px */
|
|
@@ -883,6 +893,8 @@
|
|
|
883
893
|
.right0 { right: calc(var(--t-spacing) * 0); }
|
|
884
894
|
/* @truss p:4000 c:right1 */
|
|
885
895
|
.right1 { right: calc(var(--t-spacing) * 1); }
|
|
896
|
+
/* @truss p:4000 c:right2 */
|
|
897
|
+
.right2 { right: calc(var(--t-spacing) * 2); }
|
|
886
898
|
/* @truss p:4000 c:right3 */
|
|
887
899
|
.right3 { right: calc(var(--t-spacing) * 3); }
|
|
888
900
|
/* @truss p:4000 c:right_12px */
|
|
@@ -891,6 +903,8 @@
|
|
|
891
903
|
.top0 { top: calc(var(--t-spacing) * 0); }
|
|
892
904
|
/* @truss p:4000 c:top1 */
|
|
893
905
|
.top1 { top: calc(var(--t-spacing) * 1); }
|
|
906
|
+
/* @truss p:4000 c:top2 */
|
|
907
|
+
.top2 { top: calc(var(--t-spacing) * 2); }
|
|
894
908
|
/* @truss p:4000 c:top3 */
|
|
895
909
|
.top3 { top: calc(var(--t-spacing) * 3); }
|
|
896
910
|
/* @truss p:4000 c:top_2px */
|
|
@@ -1054,6 +1068,8 @@
|
|
|
1054
1068
|
/* @truss @property */
|
|
1055
1069
|
@property --zIndex { syntax: "*"; inherits: false; }
|
|
1056
1070
|
/* @truss @property */
|
|
1071
|
+
@property --zIndex { syntax: "*"; inherits: false; }
|
|
1072
|
+
/* @truss @property */
|
|
1057
1073
|
@property --h_backgroundColor { syntax: "*"; inherits: false; }
|
|
1058
1074
|
/* @truss @property */
|
|
1059
1075
|
@property --borderBottomWidth { syntax: "*"; inherits: false; }
|