@deframe-sdk/components 0.1.66 → 0.1.67

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/styles.css CHANGED
@@ -253,6 +253,9 @@
253
253
  .inset-0 {
254
254
  inset: calc(var(--spacing) * 0);
255
255
  }
256
+ .inset-y-0 {
257
+ inset-block: calc(var(--spacing) * 0);
258
+ }
256
259
  .top-0 {
257
260
  top: calc(var(--spacing) * 0);
258
261
  }
@@ -322,6 +325,9 @@
322
325
  .left-6 {
323
326
  left: calc(var(--spacing) * 6);
324
327
  }
328
+ .left-full {
329
+ left: 100%;
330
+ }
325
331
  .z-10 {
326
332
  z-index: 10;
327
333
  }
@@ -331,6 +337,9 @@
331
337
  .z-\[1\] {
332
338
  z-index: 1;
333
339
  }
340
+ .z-\[2\] {
341
+ z-index: 2;
342
+ }
334
343
  .z-\[9999\] {
335
344
  z-index: 9999;
336
345
  }
@@ -910,6 +919,9 @@
910
919
  .w-\[32px\] {
911
920
  width: 32px;
912
921
  }
922
+ .w-\[33\%\] {
923
+ width: 33%;
924
+ }
913
925
  .w-\[36px\] {
914
926
  width: 36px;
915
927
  }
@@ -1105,6 +1117,9 @@
1105
1117
  .origin-left {
1106
1118
  transform-origin: 0;
1107
1119
  }
1120
+ .origin-right {
1121
+ transform-origin: 100%;
1122
+ }
1108
1123
  .-translate-x-1\/2 {
1109
1124
  --tw-translate-x: calc(calc(1/2 * 100%) * -1);
1110
1125
  translate: var(--tw-translate-x) var(--tw-translate-y);
@@ -1186,8 +1201,8 @@
1186
1201
  .grid-cols-\[1fr_100px\] {
1187
1202
  grid-template-columns: 1fr 100px;
1188
1203
  }
1189
- .grid-cols-\[1fr_100px_100px_100px\] {
1190
- grid-template-columns: 1fr 100px 100px 100px;
1204
+ .grid-cols-\[1fr_100px_100px_100px_100px\] {
1205
+ grid-template-columns: 1fr 100px 100px 100px 100px;
1191
1206
  }
1192
1207
  .grid-cols-\[1fr_100px_130px\] {
1193
1208
  grid-template-columns: 1fr 100px 130px;
@@ -3296,6 +3311,16 @@
3296
3311
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3297
3312
  transition-duration: var(--tw-duration, var(--default-transition-duration));
3298
3313
  }
3314
+ .transition-\[width\,transform\] {
3315
+ transition-property: width,transform;
3316
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3317
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3318
+ }
3319
+ .transition-\[width\] {
3320
+ transition-property: width;
3321
+ transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
3322
+ transition-duration: var(--tw-duration, var(--default-transition-duration));
3323
+ }
3299
3324
  .transition-all {
3300
3325
  transition-property: all;
3301
3326
  transition-timing-function: var(--tw-ease, var(--default-transition-timing-function));
@@ -3337,6 +3362,10 @@
3337
3362
  --tw-duration: 300ms;
3338
3363
  transition-duration: 300ms;
3339
3364
  }
3365
+ .duration-500 {
3366
+ --tw-duration: 500ms;
3367
+ transition-duration: 500ms;
3368
+ }
3340
3369
  .ease-out {
3341
3370
  --tw-ease: var(--ease-out);
3342
3371
  transition-timing-function: var(--ease-out);
@@ -3365,6 +3394,21 @@
3365
3394
  rotate: 180deg;
3366
3395
  }
3367
3396
  }
3397
+ .group-hover\:w-\[80\%\] {
3398
+ &:is(:where(.group):hover *) {
3399
+ @media (hover: hover) {
3400
+ width: 80%;
3401
+ }
3402
+ }
3403
+ }
3404
+ .group-hover\:-translate-x-3 {
3405
+ &:is(:where(.group):hover *) {
3406
+ @media (hover: hover) {
3407
+ --tw-translate-x: calc(var(--spacing) * -3);
3408
+ translate: var(--tw-translate-x) var(--tw-translate-y);
3409
+ }
3410
+ }
3411
+ }
3368
3412
  .group-hover\:translate-x-0 {
3369
3413
  &:is(:where(.group):hover *) {
3370
3414
  @media (hover: hover) {
@@ -3373,6 +3417,23 @@
3373
3417
  }
3374
3418
  }
3375
3419
  }
3420
+ .group-hover\:scale-110 {
3421
+ &:is(:where(.group):hover *) {
3422
+ @media (hover: hover) {
3423
+ --tw-scale-x: 110%;
3424
+ --tw-scale-y: 110%;
3425
+ --tw-scale-z: 110%;
3426
+ scale: var(--tw-scale-x) var(--tw-scale-y);
3427
+ }
3428
+ }
3429
+ }
3430
+ .group-hover\:scale-\[1\.04\] {
3431
+ &:is(:where(.group):hover *) {
3432
+ @media (hover: hover) {
3433
+ scale: 1.04;
3434
+ }
3435
+ }
3436
+ }
3376
3437
  .group-hover\:opacity-100 {
3377
3438
  &:is(:where(.group):hover *) {
3378
3439
  @media (hover: hover) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deframe-sdk/components",
3
- "version": "0.1.66",
3
+ "version": "0.1.67",
4
4
  "packageManager": "pnpm@9.0.0",
5
5
  "description": "Deframe SDK React component library",
6
6
  "engines": {