tera-system-ui 0.1.61 → 0.1.63
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/components/brand-logo/BrandLogo.d.ts +2 -2
- package/dist/components/brand-logo/BrandLogo.js +1 -1
- package/dist/components/dialog/Dialog.svelte +1 -1
- package/dist/components/slider/Slider.svelte +1 -1
- package/dist/components/tera-ui-context/TeraUiContext.svelte +0 -2
- package/package.json +1 -1
|
@@ -10,7 +10,7 @@ export declare const styles: import("tailwind-variants").TVReturnType<{
|
|
|
10
10
|
shape: {
|
|
11
11
|
square: string;
|
|
12
12
|
};
|
|
13
|
-
}, undefined, "
|
|
13
|
+
}, undefined, "[&>.second-part]:fill-brand-500", {
|
|
14
14
|
theme: {
|
|
15
15
|
light: string;
|
|
16
16
|
dark: string;
|
|
@@ -28,7 +28,7 @@ export declare const styles: import("tailwind-variants").TVReturnType<{
|
|
|
28
28
|
shape: {
|
|
29
29
|
square: string;
|
|
30
30
|
};
|
|
31
|
-
}, undefined, "
|
|
31
|
+
}, undefined, "[&>.second-part]:fill-brand-500", unknown, unknown, undefined>>;
|
|
32
32
|
type BrandLogoVariants = VariantProps<typeof styles>;
|
|
33
33
|
export interface BrandLogoProps extends HTMLAttributes<HTMLDivElement>, BrandLogoVariants {
|
|
34
34
|
children?: Snippet;
|
|
@@ -85,7 +85,7 @@
|
|
|
85
85
|
<button class=""></button>
|
|
86
86
|
{#if (closeButton)}
|
|
87
87
|
<form method="dialog">
|
|
88
|
-
<Button class="absolute right-1 top-1 [&>svg]:opacity-45 [&>svg]:hover:opacity-90 z-10" icon
|
|
88
|
+
<Button class="!absolute right-1 top-1 [&>svg]:opacity-45 [&>svg]:hover:opacity-90 z-10" icon
|
|
89
89
|
variant="ghost"
|
|
90
90
|
size="md">
|
|
91
91
|
<IconX/>
|
|
@@ -134,7 +134,7 @@
|
|
|
134
134
|
</script>
|
|
135
135
|
|
|
136
136
|
|
|
137
|
-
<div bind:this={slider} class="cursor-pointer w-full relative
|
|
137
|
+
<div bind:this={slider} class="cursor-pointer w-full relative px-1 py-2.5">
|
|
138
138
|
<div data-slider-rail bind:this={sliderRail} class="w-full h-1.5 bg-neutral-token-4 rounded-full overflow-hidden hover:bg-neutral-token-5 transition-colors duration-200">
|
|
139
139
|
<div data-slider-track bind:this={sliderTrack} class="rounded-full w-full h-full bg-neutral-token-13"></div>
|
|
140
140
|
</div>
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
<script lang="ts">
|
|
2
2
|
import {type TeraUiContextProps} from "./TeraUiContext";
|
|
3
3
|
import {setGlobalContext} from "./global-context";
|
|
4
|
-
import {setLocale} from "../../paraglide/runtime";
|
|
5
4
|
|
|
6
5
|
let {
|
|
7
6
|
children,
|
|
@@ -22,7 +21,6 @@
|
|
|
22
21
|
// ...props
|
|
23
22
|
// })
|
|
24
23
|
|
|
25
|
-
setLocale(language)
|
|
26
24
|
</script>
|
|
27
25
|
|
|
28
26
|
{@render children()}
|