Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,12 @@
"globals": "^17.3.0",
"mode-watcher": "^1.0.8",
"paneforge": "1.0.0-next.5",
"phosphor-icons-svelte": "^2.0.9",
"phosphor-svelte": "^3.1.0",
"playwright": "^1.58.2",
"prettier": "^3.8.1",
"prettier-plugin-svelte": "^3.4.1",
"prettier-plugin-tailwindcss": "^0.7.2",
"publint": "^0.3.17",
"phosphor-svelte": "^3.1.0",
"runed": "^0.28.0",
"shadcn-svelte": "^1.2.7",
"svelte": "^5.51.0",
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/CodeBlock.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
import type { ComponentProps } from 'svelte';
import { cn } from '@coral-os/component-library/utils.js';

import CopyIcon from 'phosphor-icons-svelte/IconCopyRegular.svelte';
import CopyIcon from 'phosphor-svelte/lib/CopyIcon';

const {
text = '',
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/Combobox.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import { tick, type ComponentProps, type Snippet } from 'svelte';
import { cn } from '@coral-os/component-library/utils.js';

import CheckIcon from 'phosphor-icons-svelte/IconCheckRegular.svelte';
import CaretUpDownIcon from 'phosphor-icons-svelte/IconCaretUpDownRegular.svelte';
import CheckIcon from 'phosphor-svelte/lib/CheckIcon';
import CaretUpDownIcon from 'phosphor-svelte/lib/CaretUpDownIcon';

type Entry = Value extends string
? { label: string; key?: string; value: Value } | Value
Expand Down
4 changes: 2 additions & 2 deletions src/lib/components/CopyButton.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
import { cn } from '@coral-os/component-library/utils.js';
import type { TooltipTriggerProps } from 'bits-ui';

import IconCopy from 'phosphor-icons-svelte/IconCopyRegular.svelte';
import IconCheck from 'phosphor-icons-svelte/IconCheckRegular.svelte';
import IconCopy from 'phosphor-svelte/lib/CopyIcon';
import IconCheck from 'phosphor-svelte/lib/CheckIcon';

let { class: className, value, ...props }: TooltipTriggerProps & { value?: string } = $props();

Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ModalCollapsible.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import * as Collapsible from '@coral-os/component-library/components/ui/collapsible/index.js';
import { buttonVariants } from '@coral-os/component-library/components/ui/button/index.js';

import CaretRightIcon from 'phosphor-icons-svelte/IconCaretRightRegular.svelte';
import CaretRightIcon from 'phosphor-svelte/lib/CaretRightIcon';

import type { Snippet } from 'svelte';
import { cn } from '@coral-os/component-library/utils.js';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/SidebarLink.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import { page } from '$app/state';
import { cn } from '@coral-os/component-library/utils.js';

import IconCaretRight from 'phosphor-icons-svelte/IconCaretRightRegular.svelte';
import IconCaretRight from 'phosphor-svelte/lib/CaretRightIcon';

const {
title,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/tour/Tour.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
<script lang="ts">
import { cn } from '@coral-os/component-library/utils.js';

import IconX from 'phosphor-icons-svelte/IconXRegular.svelte';
import IconX from 'phosphor-svelte/lib/XIcon';

import * as Popover from '@coral-os/component-library/components/ui/popover/index.js';
import { Button } from '@coral-os/component-library/components/ui/button/index.js';
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
// import EllipsisIcon from "@lucide/svelte/icons/ellipsis";
import EllipsisIcon from 'phosphor-icons-svelte/IconDotsThreeRegular.svelte';
import EllipsisIcon from 'phosphor-svelte/lib/DotsThreeIcon';

import type { HTMLAttributes } from 'svelte/elements';
import { cn, type WithElementRef, type WithoutChildren } from '@coral-os/component-library/utils.js';
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ui/sidebar/sidebar-trigger.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import { Button } from '@coral-os/component-library/components/ui/button/index.js';
import { cn } from '@coral-os/component-library/utils.js';
// import PanelLeftIcon from "@lucide/svelte/icons/panel-left";
import PanelLeftIcon from 'phosphor-icons-svelte/IconSidebarSimpleRegular.svelte';
import PanelLeftIcon from 'phosphor-svelte/lib/SidebarSimpleIcon';
import type { ComponentProps } from 'svelte';
import { useSidebar } from './context.svelte.js';

Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/ui/spinner/spinner.svelte
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<script lang="ts">
import { cn } from '@coral-os/component-library/utils.js';
import SpinnerIcon from 'phosphor-icons-svelte/IconSpinnerGapRegular.svelte';
import SpinnerIcon from 'phosphor-svelte/lib/SpinnerGapIcon';
import type { HTMLAttributes } from 'svelte/elements';

let { class: className, ...restProps }: HTMLAttributes<HTMLDivElement> = $props();
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(library)/components-sidebar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
import { Button } from '@coral-os/component-library/components/ui/button';
import { Badge } from '@coral-os/component-library/components/ui/badge';

import IconArrowSquareOut from 'phosphor-icons-svelte/IconArrowSquareOutRegular.svelte';
import IconArrowSquareOut from 'phosphor-svelte/lib/ArrowSquareOutIcon';

import SunIcon from '@lucide/svelte/icons/sun';
import MoonIcon from '@lucide/svelte/icons/moon';
Expand Down
2 changes: 1 addition & 1 deletion src/routes/(library)/components/button.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import * as Card from '$ui/card';

import IconArchive from 'phosphor-icons-svelte/IconArchiveRegular.svelte';
import IconArchive from 'phosphor-svelte/lib/ArchiveIcon';
import { Separator } from '@coral-os/component-library/components/ui/separator';

let variants = Object.keys(
Expand Down
5 changes: 0 additions & 5 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -2073,11 +2073,6 @@ pathe@^2.0.3:
resolved "https://registry.yarnpkg.com/pathe/-/pathe-2.0.3.tgz#3ecbec55421685b70a9da872b2cff3e1cbed1716"
integrity sha512-WUjGcAqP1gQacoQe+OBJsFA7Ld4DyXuUIjZ5cc75cLHvJ7dtNsTugphxIADwspS+AraAUePCKrSVtPLFj/F88w==

phosphor-icons-svelte@^2.0.9:
version "2.1.0"
resolved "https://registry.yarnpkg.com/phosphor-icons-svelte/-/phosphor-icons-svelte-2.1.0.tgz#a6791f652accb2c1a95e8a060738b84544b364c9"
integrity sha512-gTNxjkc3Wth5stZuVrMWrP07Obv5wUxg9zAqe2tujnLIKa+RaVWNgjOzR+Y9RE3l7bV1PN7dGcBAWR+ps7HA+Q==

phosphor-svelte@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/phosphor-svelte/-/phosphor-svelte-3.1.0.tgz#65eaaac97618c2665d6cbdc048e8f8699105ace0"
Expand Down
Loading