@tolle_/tolle-ui 0.0.9-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.
- package/esm2022/lib/button.component.mjs +5 -2
- package/esm2022/lib/modal.component.mjs +2 -2
- package/esm2022/lib/select.component.mjs +14 -14
- package/fesm2022/tolle_-tolle-ui.mjs +18 -15
- package/fesm2022/tolle_-tolle-ui.mjs.map +1 -1
- package/lib/button.component.d.ts +2 -1
- package/package.json +1 -1
- package/theme.css +10 -0
|
@@ -2,9 +2,10 @@ 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?: "
|
|
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
|
+
disabled?: boolean | null | undefined;
|
|
8
9
|
} & import("class-variance-authority/types").ClassProp) | undefined) => string;
|
|
9
10
|
export type ButtonProps = VariantProps<typeof buttonVariants>;
|
|
10
11
|
export declare class ButtonComponent {
|
package/package.json
CHANGED
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
|
+
}
|