@kayord/ui 0.7.1 → 0.7.3

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.
@@ -1,4 +1,5 @@
1
- <script>import { ArrowDown, ArrowUp } from "lucide-svelte";
1
+ <script>import ArrowDown from "lucide-svelte/icons/arrow-down";
2
+ import ArrowUp from "lucide-svelte/icons/arrow-up";
2
3
  import { fade } from "svelte/transition";
3
4
  import { Button, ProgressLoading, Skeleton } from "../../..";
4
5
  import { Subscribe, Render } from "svelte-headless-table";
@@ -1,6 +1,6 @@
1
1
  <script>import * as DropdownMenu from "../../ui/dropdown-menu";
2
2
  import { Button } from "../../ui/button";
3
- import { MoreHorizontal } from "lucide-svelte";
3
+ import MoreHorizontalIcon from "lucide-svelte/icons/ellipsis";
4
4
  export let id;
5
5
  </script>
6
6
 
@@ -8,7 +8,7 @@ export let id;
8
8
  <DropdownMenu.Trigger asChild let:builder>
9
9
  <Button variant="ghost" builders={[builder]} size="icon" class="relative w-8 h-8 p-0">
10
10
  <span class="sr-only">Open menu</span>
11
- <MoreHorizontal class="w-4 h-4" />
11
+ <MoreHorizontalIcon class="w-4 h-4" />
12
12
  </Button>
13
13
  </DropdownMenu.Trigger>
14
14
  <DropdownMenu.Content>
@@ -1,5 +1,6 @@
1
1
  <script>import { cn } from "../../../utils";
2
- import { Loader2 } from "lucide-svelte";
2
+ import {} from "lucide-svelte";
3
+ import LoaderCircleIcon from "lucide-svelte/icons/loader-circle";
3
4
  let className = void 0;
4
5
  export let isLoading = true;
5
6
  export { className as class };
@@ -7,6 +8,6 @@ export { className as class };
7
8
 
8
9
  {#if isLoading}
9
10
  <div class="flex justify-center">
10
- <Loader2 class={cn("h-8 w-8 animate-spin m-2", className)} {...$$restProps} />
11
+ <LoaderCircleIcon class={cn("h-8 w-8 animate-spin m-2", className)} {...$$restProps} />
11
12
  </div>
12
13
  {/if}
@@ -1,5 +1,6 @@
1
1
  <script>import { toggleMode, mode } from "mode-watcher";
2
- import { Moon, Sun } from "lucide-svelte";
2
+ import Moon from "lucide-svelte/icons/moon";
3
+ import Sun from "lucide-svelte/icons/sun";
3
4
  import { cn } from "../../../utils";
4
5
  let className = void 0;
5
6
  export { className as class };
@@ -1,4 +1,4 @@
1
- <script>import { MoreHorizontal } from "lucide-svelte";
1
+ <script>import MoreHorizontal from "lucide-svelte/icons/ellipsis";
2
2
  import { cn } from "../../../utils.js";
3
3
  let className = void 0;
4
4
  export { className as class };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@kayord/ui",
3
3
  "private": false,
4
- "version": "0.7.1",
4
+ "version": "0.7.3",
5
5
  "exports": {
6
6
  ".": {
7
7
  "types": "./dist/index.d.ts",
@@ -30,12 +30,12 @@
30
30
  },
31
31
  "dependencies": {
32
32
  "@internationalized/date": "^3.5.2",
33
- "bits-ui": "^0.19.5",
33
+ "bits-ui": "^0.19.6",
34
34
  "clsx": "^2.1.0",
35
35
  "cmdk-sv": "^0.0.15",
36
36
  "embla-carousel-svelte": "8.0.0",
37
37
  "formsnap": "^0.5.1",
38
- "lucide-svelte": "^0.354.0",
38
+ "lucide-svelte": "^0.356.0",
39
39
  "mode-watcher": "^0.2.2",
40
40
  "paneforge": "^0.0.2",
41
41
  "svelte-headless-table": "^0.18.2",