@deframe-sdk/components 0.1.38 → 0.1.39

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
@@ -721,6 +721,9 @@
721
721
  .h-\[844px\] {
722
722
  height: 844px;
723
723
  }
724
+ .h-\[calc\(100vh-48px\)\] {
725
+ height: calc(100vh - 48px);
726
+ }
724
727
  .h-\[min\(620px\,calc\(100vh-64px\)\)\] {
725
728
  height: min(620px, calc(100vh - 64px));
726
729
  }
@@ -2986,6 +2989,9 @@
2986
2989
  .text-yellow-800 {
2987
2990
  color: var(--color-yellow-800);
2988
2991
  }
2992
+ .lowercase {
2993
+ text-transform: lowercase;
2994
+ }
2989
2995
  .uppercase {
2990
2996
  text-transform: uppercase;
2991
2997
  }
@@ -3899,6 +3905,26 @@
3899
3905
  appearance: none;
3900
3906
  }
3901
3907
  }
3908
+ .\[\&\:\:-webkit-scrollbar\]\:w-\[6px\] {
3909
+ &::-webkit-scrollbar {
3910
+ width: 6px;
3911
+ }
3912
+ }
3913
+ .\[\&\:\:-webkit-scrollbar-thumb\]\:rounded-full {
3914
+ &::-webkit-scrollbar-thumb {
3915
+ border-radius: calc(infinity * 1px);
3916
+ }
3917
+ }
3918
+ .\[\&\:\:-webkit-scrollbar-thumb\]\:bg-\[color\:var\(--deframe-widget-color-border-secondary\)\] {
3919
+ &::-webkit-scrollbar-thumb {
3920
+ background-color: var(--deframe-widget-color-border-secondary);
3921
+ }
3922
+ }
3923
+ .\[\&\:\:-webkit-scrollbar-track\]\:bg-transparent {
3924
+ &::-webkit-scrollbar-track {
3925
+ background-color: transparent;
3926
+ }
3927
+ }
3902
3928
  }
3903
3929
  .deframe-widget.widget-theme--rounded, .deframe-widget.rounded {
3904
3930
  --deframe-widget-font-family: "Space Grotesk", "Avenir Next", sans-serif;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@deframe-sdk/components",
3
- "version": "0.1.38",
3
+ "version": "0.1.39",
4
4
  "packageManager": "pnpm@9.0.0",
5
5
  "description": "Deframe SDK React component library",
6
6
  "engines": {