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.
@@ -10,7 +10,7 @@ export declare const styles: import("tailwind-variants").TVReturnType<{
10
10
  shape: {
11
11
  square: string;
12
12
  };
13
- }, undefined, "h-icon-md [&>.second-part]:fill-brand-500", {
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, "h-icon-md [&>.second-part]:fill-brand-500", unknown, unknown, 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;
@@ -1,6 +1,6 @@
1
1
  import { tv } from "tailwind-variants";
2
2
  export const styles = tv({
3
- base: 'h-icon-md [&>.second-part]:fill-brand-500',
3
+ base: '[&>.second-part]:fill-brand-500',
4
4
  variants: {
5
5
  theme: {
6
6
  light: '',
@@ -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 mx-1 py-2.5">
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()}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tera-system-ui",
3
- "version": "0.1.61",
3
+ "version": "0.1.63",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "npm run customPrepublish && npm run generate-index && vite build && npm run package && npm run postpublish",