Skip to content

Commit

Permalink
main from d032d2a
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Jun 24, 2024
1 parent d6d65cd commit acc44d6
Show file tree
Hide file tree
Showing 375 changed files with 4,723 additions and 4,734 deletions.

Large diffs are not rendered by default.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,10 @@ const t=`<script lang="ts">
max={100}
stepSize={1}
bind:values={sliderCustomLabelControl}
slotLabel={({value}) => '' + value + '%'}
label={({value}) => '' + value + '%'}
className="au-custom-slider-container"
></Slider>
<hr />
<h2>Slider with custom handle</h2>
<Slider min={0} max={100} stepSize={1} bind:values={sliderCustomHandleControl} slotHandle={CustomHandle} className="au-custom-slider-container"
></Slider>
<Slider min={0} max={100} stepSize={1} bind:values={sliderCustomHandleControl} handle={CustomHandle} className="au-custom-slider-container"></Slider>
`;export{t as default};
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const CustomSliderDemo = () => {
stepSize={1}
values={sliderCustomLabelControl}
onValuesChange={setSliderCustomLabelControl}
slotLabel={({value}: {value: number}) => '' + value + '%'}
label={({value}: {value: number}) => '' + value + '%'}
className="au-custom-slider-container"
/>
<hr />
Expand All @@ -27,7 +27,7 @@ const CustomSliderDemo = () => {
stepSize={1}
values={sliderCustomHandleControl}
onValuesChange={setSliderCustomHandleControl}
slotHandle={CustomSlotHandle}
handle={CustomSlotHandle}
className="au-custom-slider-container"
/>
</>
Expand Down
23 changes: 0 additions & 23 deletions main/_app/immutable/chunks/FullCustom.route.BN2lreR-.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const FullCustomSliderDemo = () => {
stepSize={1}
values={sliderControl}
onValuesChange={setSliderControl}
slotStructure={CustomSliderComponent}
structure={CustomSliderComponent}
vertical
className="custom-slider"
/>
Expand Down
13 changes: 13 additions & 0 deletions main/_app/immutable/chunks/FullCustom.route.CGdWdcjz.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
const e=`<script lang="ts">
import {Slider} from '@agnos-ui/svelte-bootstrap/components/slider';
import CoffeeSlider from './CoffeeSlider.svelte';
let sliderControl = [50];
import './custom.scss';
<\/script>
<h2>Fully custom slider</h2>
<Slider min={0} max={100} stepSize={1} bind:values={sliderControl} vertical className="custom-slider" structure={CoffeeSlider} />
`;export{e as default};

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit acc44d6

Please sign in to comment.