@tuwaio/nova-connect 1.0.0-fix-test-alpha.56.a984de3 → 1.0.0-fix-test-alpha.57.ba01e3f

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.css CHANGED
@@ -406,6 +406,9 @@
406
406
  .novacon\:transform {
407
407
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
408
408
  }
409
+ .novacon\:animate-\[float_var\(--float-duration\,3000ms\)_var\(--float-ease\,ease-in-out\)_var\(--float-delay\,0ms\)_infinite_var\(--float-direction\,normal\)\] {
410
+ animation: float var(--float-duration,3000ms) var(--float-ease,ease-in-out) var(--float-delay,0ms) infinite var(--float-direction,normal);
411
+ }
409
412
  .novacon\:animate-pulse {
410
413
  animation: var(--novacon-animate-pulse);
411
414
  }
@@ -424,6 +427,10 @@
424
427
  .novacon\:cursor-wait {
425
428
  cursor: wait;
426
429
  }
430
+ .novacon\:touch-pan-x {
431
+ --tw-pan-x: pan-x;
432
+ touch-action: var(--tw-pan-x,) var(--tw-pan-y,) var(--tw-pinch-zoom,);
433
+ }
427
434
  .novacon\:flex-col {
428
435
  flex-direction: column;
429
436
  }
@@ -469,6 +476,13 @@
469
476
  .novacon\:gap-4 {
470
477
  gap: calc(var(--novacon-spacing) * 4);
471
478
  }
479
+ .novacon\:space-y-1 {
480
+ :where(& > :not(:last-child)) {
481
+ --tw-space-y-reverse: 0;
482
+ margin-block-start: calc(calc(var(--novacon-spacing) * 1) * var(--tw-space-y-reverse));
483
+ margin-block-end: calc(calc(var(--novacon-spacing) * 1) * calc(1 - var(--tw-space-y-reverse)));
484
+ }
485
+ }
472
486
  .novacon\:space-y-2 {
473
487
  :where(& > :not(:last-child)) {
474
488
  --tw-space-y-reverse: 0;
@@ -747,6 +761,10 @@
747
761
  .novacon\:text-\[10px\] {
748
762
  font-size: 10px;
749
763
  }
764
+ .novacon\:leading-\[0\] {
765
+ --tw-leading: 0;
766
+ line-height: 0;
767
+ }
750
768
  .novacon\:leading-relaxed {
751
769
  --tw-leading: var(--novacon-leading-relaxed);
752
770
  line-height: var(--novacon-leading-relaxed);
@@ -821,6 +839,10 @@
821
839
  --tw-shadow: 0 25px 50px -12px var(--tw-shadow-color, rgb(0 0 0 / 0.25));
822
840
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
823
841
  }
842
+ .novacon\:shadow-lg {
843
+ --tw-shadow: 0 10px 15px -3px var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 4px 6px -4px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
844
+ box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
845
+ }
824
846
  .novacon\:shadow-sm {
825
847
  --tw-shadow: 0 1px 3px 0 var(--tw-shadow-color, rgb(0 0 0 / 0.1)), 0 1px 2px -1px var(--tw-shadow-color, rgb(0 0 0 / 0.1));
826
848
  box-shadow: var(--tw-inset-shadow), var(--tw-inset-ring-shadow), var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
@@ -1725,6 +1747,18 @@
1725
1747
  syntax: "*";
1726
1748
  inherits: false;
1727
1749
  }
1750
+ @property --tw-pan-x {
1751
+ syntax: "*";
1752
+ inherits: false;
1753
+ }
1754
+ @property --tw-pan-y {
1755
+ syntax: "*";
1756
+ inherits: false;
1757
+ }
1758
+ @property --tw-pinch-zoom {
1759
+ syntax: "*";
1760
+ inherits: false;
1761
+ }
1728
1762
  @property --tw-space-y-reverse {
1729
1763
  syntax: "*";
1730
1764
  inherits: false;
@@ -1907,6 +1941,15 @@
1907
1941
  filter: blur(var(--tw-exit-blur,0));
1908
1942
  }
1909
1943
  }
1944
+ @keyframes float {
1945
+ 0%,
1946
+ 100% {
1947
+ transform: translateY(0);
1948
+ }
1949
+ 50% {
1950
+ transform: translateY(-10px);
1951
+ }
1952
+ }
1910
1953
  @keyframes rotate {
1911
1954
  0% {
1912
1955
  transform: rotate(0deg);
@@ -1926,6 +1969,9 @@
1926
1969
  --tw-rotate-z: initial;
1927
1970
  --tw-skew-x: initial;
1928
1971
  --tw-skew-y: initial;
1972
+ --tw-pan-x: initial;
1973
+ --tw-pan-y: initial;
1974
+ --tw-pinch-zoom: initial;
1929
1975
  --tw-space-y-reverse: 0;
1930
1976
  --tw-space-x-reverse: 0;
1931
1977
  --tw-border-style: solid;