@agnos-ui/svelte-bootstrap 0.8.0-next.0 → 0.8.0-next.1
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.
|
@@ -13,29 +13,10 @@ import {BROWSER as __AgnosUISveltePreprocess__BROWSER} from 'esm-env';
|
|
|
13
13
|
</span>
|
|
14
14
|
{/if}
|
|
15
15
|
<span use:directives.tickDirective={{tick}} {...__AgnosUISveltePreprocess__BROWSER ? {} : __AgnosUISveltePreprocess__ssrAttributes([directives.tickDirective, {tick}])}>
|
|
16
|
-
|
|
17
|
-
<
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
<circle cx="50%" cy="50%" r="50%" fill={state.disabled ? 'var(--bs-slider-tick-disabled-color)' : 'var(--bs-slider-tick-selected-color)'} />
|
|
23
|
-
<circle cx="50%" cy="50%" r="25%" fill="white" />
|
|
24
|
-
</svg>
|
|
25
|
-
{:else}
|
|
26
|
-
<svg
|
|
27
|
-
xmlns="http://www.w3.org/2000/svg"
|
|
28
|
-
style="width: var(--bs-slider-tick-secondary-size); height: var(--bs-slider-tick-primary-size)"
|
|
29
|
-
fill="none"
|
|
30
|
-
>
|
|
31
|
-
<circle
|
|
32
|
-
cx="50%"
|
|
33
|
-
cy="50%"
|
|
34
|
-
r="45%"
|
|
35
|
-
fill="white"
|
|
36
|
-
stroke={state.disabled ? 'var(--bs-slider-tick-disabled-color)' : 'var(--bs-slider-tick-neutral-color)'}
|
|
37
|
-
stroke-width="1.5"
|
|
38
|
-
/>
|
|
39
|
-
</svg>
|
|
40
|
-
{/if}
|
|
16
|
+
<svg xmlns="http://www.w3.org/2000/svg">
|
|
17
|
+
<circle class="au-slider-tick-outer" class:au-slider-tick-disabled={state.disabled} class:au-slider-tick-selected={tick.selected} />
|
|
18
|
+
{#if tick.selected}
|
|
19
|
+
<circle class="au-slider-tick-inner au-slider-tick-selected" />
|
|
20
|
+
{/if}
|
|
21
|
+
</svg>
|
|
41
22
|
</span>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agnos-ui/svelte-bootstrap",
|
|
3
3
|
"description": "Bootstrap-based component library for Svelte.",
|
|
4
|
-
"version": "0.8.0-next.
|
|
4
|
+
"version": "0.8.0-next.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"module": "./index.js",
|
|
@@ -49,8 +49,8 @@
|
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
52
|
-
"@agnos-ui/core-bootstrap": "0.8.0-next.
|
|
53
|
-
"@agnos-ui/svelte-headless": "0.8.0-next.
|
|
52
|
+
"@agnos-ui/core-bootstrap": "0.8.0-next.1",
|
|
53
|
+
"@agnos-ui/svelte-headless": "0.8.0-next.1"
|
|
54
54
|
},
|
|
55
55
|
"peerDependencies": {
|
|
56
56
|
"@amadeus-it-group/tansu": "^2.0.0",
|