migrated alias from $docs to $lib
@@ -6,14 +6,14 @@
|
||||
import type { ModalSettings, DrawerSettings } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Docs
|
||||
import DocsLogoFull from '$docs/components/DocsLogos/DocsLogoFull.svelte';
|
||||
import DocsIcon from '$docs/components/DocsIcon/DocsIcon.svelte';
|
||||
import DocsLogoFull from '$lib/components/DocsLogos/DocsLogoFull.svelte';
|
||||
import DocsIcon from '$lib/components/DocsIcon/DocsIcon.svelte';
|
||||
|
||||
// Components & Utilities
|
||||
import { AppBar, LightSwitch, popup, modalStore } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Stores
|
||||
import { storeTheme } from '$docs/stores/stores';
|
||||
import { storeTheme } from '$lib/stores/stores';
|
||||
import { drawerStore } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Local
|
||||
@@ -4,7 +4,7 @@
|
||||
const pkg = __PACKAGE__;
|
||||
|
||||
// Logo
|
||||
import DocsLogoIcon from '$docs/components/DocsLogos/DocsLogoIcon.svelte';
|
||||
import DocsLogoIcon from '$lib/components/DocsLogos/DocsLogoIcon.svelte';
|
||||
|
||||
// Base Classes
|
||||
const cBase = 'bg-surface-50 dark:bg-surface-900 border-t border-surface-500/10 text-xs md:text-base';
|
||||
|
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
|
Before Width: | Height: | Size: 2.6 KiB After Width: | Height: | Size: 2.6 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
@@ -1,10 +1,10 @@
|
||||
<script lang="ts">
|
||||
import { page } from '$app/stores';
|
||||
|
||||
import DocsIcon from '$docs/components/DocsIcon/DocsIcon.svelte';
|
||||
import DocsIcon from '$lib/components/DocsIcon/DocsIcon.svelte';
|
||||
import { AppRail, AppRailTile, AppRailAnchor } from '@skeletonlabs/skeleton';
|
||||
import { drawerStore } from '@skeletonlabs/skeleton';
|
||||
import { menuNavLinks } from '$docs/links';
|
||||
import { menuNavLinks } from '$lib/links';
|
||||
|
||||
// Local
|
||||
let currentRailCategory: keyof typeof menuNavLinks | undefined = undefined;
|
||||
@@ -2,21 +2,21 @@
|
||||
import { page } from '$app/stores';
|
||||
|
||||
// Docs
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Components
|
||||
import { Tab, TabGroup } from '@skeletonlabs/skeleton';
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Partials
|
||||
import Header from '$docs/layouts/DocsShell/partials/Header.svelte';
|
||||
import PanelProps from '$docs/layouts/DocsShell/partials/PanelProps.svelte';
|
||||
import Header from '$lib/layouts/DocsShell/partials/Header.svelte';
|
||||
import PanelProps from '$lib/layouts/DocsShell/partials/PanelProps.svelte';
|
||||
import PanelClasses from './partials/PanelClasses.svelte';
|
||||
import PanelEvents from './partials/PanelEvents.svelte';
|
||||
import PanelKeyboard from './partials/PanelKeyboard.svelte';
|
||||
import PanelParams from './partials/PanelParams.svelte';
|
||||
import PanelSlots from './partials/PanelSlots.svelte';
|
||||
// Utilities
|
||||
import { docShellDefaults } from '$docs/layouts/DocsShell/defaults';
|
||||
import { docShellDefaults } from '$lib/layouts/DocsShell/defaults';
|
||||
|
||||
// Props
|
||||
export let settings: DocsShellSettings;
|
||||
@@ -1,4 +1,4 @@
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
|
||||
export let docShellDefaults: DocsShellSettings = {
|
||||
// Heading
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Props
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Components
|
||||
import { Table } from '@skeletonlabs/skeleton';
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Sveld Mapper
|
||||
import { sveldMapperEvents } from '$docs/layouts/DocsShell/sveldMapper';
|
||||
import { sveldMapperEvents } from '$lib/layouts/DocsShell/sveldMapper';
|
||||
// Components
|
||||
import { Table } from '@skeletonlabs/skeleton';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Components
|
||||
import { Table } from '@skeletonlabs/skeleton';
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Components
|
||||
import { Table } from '@skeletonlabs/skeleton';
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Sveld Mapper
|
||||
import { sveldMapperProps } from '$docs/layouts/DocsShell/sveldMapper';
|
||||
import { sveldMapperProps } from '$lib/layouts/DocsShell/sveldMapper';
|
||||
// Components
|
||||
import { Table } from '@skeletonlabs/skeleton';
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Types
|
||||
import type { DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import type { DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Sveld Mapper
|
||||
import { sveldMapperSlots } from '$docs/layouts/DocsShell/sveldMapper';
|
||||
import { sveldMapperSlots } from '$lib/layouts/DocsShell/sveldMapper';
|
||||
// Components
|
||||
import { Table } from '@skeletonlabs/skeleton';
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { storeVercelProductionMode } from '$docs/stores/stores';
|
||||
import { storeVercelProductionMode } from '$lib/stores/stores';
|
||||
import { TableOfContents } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Props
|
||||
@@ -31,6 +31,7 @@
|
||||
<!-- cspell:disable -->
|
||||
<!-- cspell:disable -->
|
||||
<!-- cspell:disable -->
|
||||
<!-- cspell:disable -->
|
||||
<script
|
||||
async
|
||||
type="text/javascript"
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { menuNavLinks, type List } from '$docs/links';
|
||||
import { menuNavLinks, type List } from '$lib/links';
|
||||
import { modalStore } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Classes
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, clipboard } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { RadioGroup, RadioItem, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Actions
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, SlideToggle, focusTrap } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Accordion, AccordionItem } from '@skeletonlabs/skeleton';
|
||||
// Utilities
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { AppBar, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { AppRail, AppRailTile, CodeBlock, AppRailAnchor } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { AppShell, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Docshell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Types
|
||||
import type { AutocompleteOption, PopupSettings } from '@skeletonlabs/skeleton';
|
||||
// Components
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Avatar, CodeBlock, filter } from '@skeletonlabs/skeleton';
|
||||
// Filter SVGs
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, ConicGradient, Tab, TabGroup, type ConicStop } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { FileButton, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { FileDropzone, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, InputChip, toastStore } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, ListBox, ListBoxItem } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { faker } from '@faker-js/faker';
|
||||
// Docshell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Paginator, Table, CodeBlock, type PaginationSettings } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { ProgressBar, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { ProgressRadial, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
// Components
|
||||
import { RadioGroup, RadioItem, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { RangeSlider, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { SlideToggle, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Stepper, Step, SlideToggle, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Utilities
|
||||
import { ListBox, ListBoxItem, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
import { faker } from '@faker-js/faker';
|
||||
import { writable, type Writable } from 'svelte/store';
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Utils
|
||||
import { tableMapperValues } from '@skeletonlabs/skeleton';
|
||||
// Components
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { TabGroup, Tab, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Components
|
||||
import { CodeBlock, Table, type TableSource } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
</script>
|
||||
|
||||
<LayoutPage>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Components
|
||||
import { Table, CodeBlock, type TableSource } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import DocsThemer from '$docs/layouts/DocsThemer/DocsThemer.svelte';
|
||||
import DocsThemer from '$lib/layouts/DocsThemer/DocsThemer.svelte';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Section Components
|
||||
import SectionInstall from './SectionInstall.svelte';
|
||||
import SectionTailwind from './SectionTailwind.svelte';
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { storeOnboardMethod } from '$docs/stores/stores';
|
||||
import { storeOnboardMethod } from '$lib/stores/stores';
|
||||
// Components
|
||||
import { TabGroup, Tab, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
import { TabGroup, Tab, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Stores
|
||||
import { storeOnboardMethod } from '$docs/stores/stores';
|
||||
import { storeOnboardMethod } from '$lib/stores/stores';
|
||||
export const storeStylesheets: Writable<string> = writable('recommended');
|
||||
export const storeStylesheetElements: Writable<string> = writable('combined');
|
||||
</script>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import { storeOnboardMethod } from '$docs/stores/stores';
|
||||
import { storeOnboardMethod } from '$lib/stores/stores';
|
||||
// Components
|
||||
import { Tab, TabGroup, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import { storeOnboardMethod } from '$docs/stores/stores';
|
||||
import { themes } from '$docs/themes';
|
||||
import { storeOnboardMethod } from '$lib/stores/stores';
|
||||
import { themes } from '$lib/themes';
|
||||
// Components
|
||||
import { TabGroup, Tab, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Components
|
||||
import { Accordion, AccordionItem, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<script lang="ts">
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
</script>
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { writable, type Writable } from 'svelte/store';
|
||||
// Docs
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Utilities
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Stores
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { themes } from '$docs/themes';
|
||||
import { themes } from '$lib/themes';
|
||||
// Docs
|
||||
import LayoutPage from '$docs/layouts/LayoutPage/LayoutPage.svelte';
|
||||
import LayoutPage from '$lib/layouts/LayoutPage/LayoutPage.svelte';
|
||||
// Components
|
||||
import { Tab, TabGroup, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
|
||||
import { Table, type TableSource } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -2,10 +2,10 @@
|
||||
import { faker } from '@faker-js/faker';
|
||||
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$docs/components/DocsPreview/options';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$lib/components/DocsPreview/options';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$docs/components/DocsPreview/options';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$lib/components/DocsPreview/options';
|
||||
// Components
|
||||
import { Avatar, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Avatar, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
// Docs
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$docs/components/DocsPreview/options';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$lib/components/DocsPreview/options';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$docs/components/DocsPreview/options';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$lib/components/DocsPreview/options';
|
||||
// Components
|
||||
import { Avatar, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -2,9 +2,9 @@
|
||||
import { faker } from '@faker-js/faker';
|
||||
import { onMount } from 'svelte/internal';
|
||||
// DocShell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Avatar, CodeBlock, ListBox, ListBoxItem } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$docs/components/DocsPreview/options';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$lib/components/DocsPreview/options';
|
||||
// Components
|
||||
import { CodeBlock, toastStore, type ToastSettings } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { faker } from '@faker-js/faker';
|
||||
// DocShell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
// Docs Shell
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Field Settings
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { faker } from '@faker-js/faker';
|
||||
// DocShell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { faker } from '@faker-js/faker';
|
||||
// Docshell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { Avatar, CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,10 +1,10 @@
|
||||
<script lang="ts">
|
||||
import { faker } from '@faker-js/faker';
|
||||
// Docshell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$docs/components/DocsPreview/options';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
import { variants } from '$lib/components/DocsPreview/options';
|
||||
// Components
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, SlideToggle } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
<script lang="ts">
|
||||
import { faker } from '@faker-js/faker';
|
||||
// Docshell
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, TabGroup, Tab } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Components
|
||||
import { CodeBlock, Accordion, AccordionItem } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
// Utilities
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
// Sveld
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
<script lang="ts">
|
||||
import { DocsFeature, type DocsShellSettings } from '$docs/layouts/DocsShell/types';
|
||||
import DocsShell from '$docs/layouts/DocsShell/DocsShell.svelte';
|
||||
import DocsPreview from '$docs/components/DocsPreview/DocsPreview.svelte';
|
||||
import { DocsFeature, type DocsShellSettings } from '$lib/layouts/DocsShell/types';
|
||||
import DocsShell from '$lib/layouts/DocsShell/DocsShell.svelte';
|
||||
import DocsPreview from '$lib/components/DocsPreview/DocsPreview.svelte';
|
||||
|
||||
import { CodeBlock } from '@skeletonlabs/skeleton';
|
||||
|
||||
|
||||