Skip to content

Commit

Permalink
Merge pull request #2575 from skeletonlabs/dev
Browse files Browse the repository at this point in the history
Merge for release (docs only)
  • Loading branch information
endigo9740 authored Mar 26, 2024
2 parents 0af33f4 + 2ef43cf commit 9efa964
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
3 changes: 2 additions & 1 deletion packages/skeleton/.prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,5 @@ pnpm-lock.yaml
/.temp
/dist
/scripts/tw-settings.json
/src/lib/tailwind/generated
/src/lib/tailwind/generated
/src/plugin/generated
2 changes: 1 addition & 1 deletion sites/skeleton.dev/README.md
Original file line number Diff line number Diff line change
@@ -1 +1 @@
# skeleton.dev source code
# skeleton.dev source code
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,11 @@ function myCustomFilter(): AutocompleteOption<string>[] {

<section class="space-y-4">
<h2 class="h2">Popup</h2>
<p>We've provide a demo of using Autocomplete alongside a Skeleton popup utility below.</p>
<p>
We've provide a demo of using Autocomplete alongside a Skeleton popup utility below. See <a href="/utilities/popups" class="anchor"
>Popups</a
> for more details.
</p>
<DocsPreview background="neutral" regionFooter="text-center">
<svelte:fragment slot="preview">
<div class="text-token w-full max-w-sm space-y-2">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,13 +41,13 @@
<svelte:fragment slot="sandbox">
<DocsPreview>
<svelte:fragment slot="preview">
<ProgressBar label="Progress Bar" bind:value={props.value} max={props.max} />
<ProgressBar bind:value={props.value} max={props.max} />
</svelte:fragment>
<svelte:fragment slot="footer">
<div class="w-48 mx-auto"><input type="range" min="0" bind:value={props.value} max={props.max} step={props.step} /></div>
</svelte:fragment>
<svelte:fragment slot="source">
<CodeBlock language="html" code={`<ProgressBar label="Progress Bar" value={${props.value}} max={${props.max}} />`} />
<CodeBlock language="html" code={`<ProgressBar value={${props.value}} max={${props.max}} />`} />
</svelte:fragment>
</DocsPreview>
</svelte:fragment>
Expand Down

0 comments on commit 9efa964

Please sign in to comment.