@tolle_/tolle-ui 0.0.10-beta → 0.0.11-beta

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.
@@ -2,7 +2,7 @@ import { type VariantProps } from 'class-variance-authority';
2
2
  import * as i0 from "@angular/core";
3
3
  declare const buttonVariants: (props?: ({
4
4
  variant?: "default" | "destructive" | "outline" | "secondary" | "ghost" | "link" | null | undefined;
5
- size?: "default" | "xs" | "sm" | "lg" | "icon-xs" | "icon-sm" | "icon" | "icon-lg" | null | undefined;
5
+ size?: "xs" | "sm" | "default" | "lg" | "icon-xs" | "icon-sm" | "icon" | "icon-lg" | null | undefined;
6
6
  block?: boolean | null | undefined;
7
7
  readonly?: boolean | null | undefined;
8
8
  disabled?: boolean | null | undefined;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tolle_/tolle-ui",
3
- "version": "0.0.10-beta",
3
+ "version": "0.0.11-beta",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
package/theme.css CHANGED
@@ -200,3 +200,13 @@
200
200
  backdrop-filter: blur(4px);
201
201
  z-index: 50;
202
202
  }
203
+
204
+ /* Hide scrollbar for modern browsers */
205
+ .scrollbar-hidden::-webkit-scrollbar {
206
+ display: none; /* Chrome, Safari, and Opera */
207
+ }
208
+
209
+ .scrollbar-hidden {
210
+ -ms-overflow-style: none; /* IE and Edge */
211
+ scrollbar-width: none; /* Firefox */
212
+ }