@homebound/beam 3.76.0 → 3.78.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/index.cjs +930 -868
- package/dist/index.cjs.map +1 -1
- package/dist/index.css +8 -0
- package/dist/index.css.map +1 -1
- package/dist/index.d.cts +17 -3
- package/dist/index.d.ts +17 -3
- package/dist/index.js +836 -775
- package/dist/index.js.map +1 -1
- package/dist/truss.css +14 -0
- package/package.json +1 -1
package/dist/truss.css
CHANGED
|
@@ -201,10 +201,14 @@
|
|
|
201
201
|
.animationDuration_800ms { animation-duration: 800ms; }
|
|
202
202
|
/* @truss p:3000 c:animationIterationCount_infinite */
|
|
203
203
|
.animationIterationCount_infinite { animation-iteration-count: infinite; }
|
|
204
|
+
/* @truss p:3000 c:animationName_aiStarLoader */
|
|
205
|
+
.animationName_aiStarLoader { animation-name: aiStarLoader; }
|
|
204
206
|
/* @truss p:3000 c:animationName_loadingDots */
|
|
205
207
|
.animationName_loadingDots { animation-name: loadingDots; }
|
|
206
208
|
/* @truss p:3000 c:animationName_spin */
|
|
207
209
|
.animationName_spin { animation-name: spin; }
|
|
210
|
+
/* @truss p:3000 c:animationTimingFunction_ease_in_out */
|
|
211
|
+
.animationTimingFunction_ease_in_out { animation-timing-function: ease-in-out; }
|
|
208
212
|
/* @truss p:3000 c:animationTimingFunction_linear */
|
|
209
213
|
.animationTimingFunction_linear { animation-timing-function: linear; }
|
|
210
214
|
/* @truss p:3000 c:appearance_none */
|
|
@@ -491,6 +495,8 @@
|
|
|
491
495
|
.to_ellipsis { text-overflow: ellipsis; }
|
|
492
496
|
/* @truss p:3000 c:transform_rotate_180deg */
|
|
493
497
|
.transform_rotate_180deg { transform: rotate(180deg); }
|
|
498
|
+
/* @truss p:3000 c:transform_scale_0_5 */
|
|
499
|
+
.transform_scale_0_5 { transform: scale(0.5); }
|
|
494
500
|
/* @truss p:3000 c:transform_scale_0_75_translateY_100 */
|
|
495
501
|
.transform_scale_0_75_translateY_100 { transform: scale(0.75) translateY(100%); }
|
|
496
502
|
/* @truss p:3000 c:transform_scale_1_translateY_0 */
|
|
@@ -553,6 +559,10 @@
|
|
|
553
559
|
.z_999999 { z-index: 999999; }
|
|
554
560
|
/* @truss p:3000.5 c:ai_var */
|
|
555
561
|
.ai_var { align-items: var(--alignItems); }
|
|
562
|
+
/* @truss p:3000.5 c:animationDelay_var */
|
|
563
|
+
.animationDelay_var { animation-delay: var(--animationDelay); }
|
|
564
|
+
/* @truss p:3000.5 c:animationDuration_var */
|
|
565
|
+
.animationDuration_var { animation-duration: var(--animationDuration); }
|
|
556
566
|
/* @truss p:3000.5 c:backgroundImage_var */
|
|
557
567
|
.backgroundImage_var { background-image: var(--backgroundImage); }
|
|
558
568
|
/* @truss p:3000.5 c:bgColor_var */
|
|
@@ -1100,6 +1110,10 @@
|
|
|
1100
1110
|
/* @truss @property */
|
|
1101
1111
|
@property --alignItems { syntax: "*"; inherits: false; }
|
|
1102
1112
|
/* @truss @property */
|
|
1113
|
+
@property --animationDelay { syntax: "*"; inherits: false; }
|
|
1114
|
+
/* @truss @property */
|
|
1115
|
+
@property --animationDuration { syntax: "*"; inherits: false; }
|
|
1116
|
+
/* @truss @property */
|
|
1103
1117
|
@property --backgroundImage { syntax: "*"; inherits: false; }
|
|
1104
1118
|
/* @truss @property */
|
|
1105
1119
|
@property --backgroundColor { syntax: "*"; inherits: false; }
|