@smartnet360/svelte-components 0.0.25 → 0.0.26
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.
@@ -69,7 +69,7 @@
|
|
69
69
|
}
|
70
70
|
|
71
71
|
// Toggle state for showing/hiding the controls panel
|
72
|
-
let showControlsPanel = $state(
|
72
|
+
let showControlsPanel = $state(false);
|
73
73
|
|
74
74
|
// Derived reactive state for MA override - automatically updates when globalControls changes
|
75
75
|
let effectiveMAOverride = $derived.by(() => {
|
@@ -391,7 +391,7 @@
|
|
391
391
|
<svg width="16" height="16" fill="currentColor" viewBox="0 0 16 16">
|
392
392
|
<path d="M9.405 1.05c-.413-1.4-2.397-1.4-2.81 0l-.1.34a1.464 1.464 0 0 1-2.105.872l-.31-.17c-1.283-.698-2.686.705-1.987 1.987l.169.311c.446.82.023 1.841-.872 2.105l-.34.1c-1.4.413-1.4 2.397 0 2.81l.34.1a1.464 1.464 0 0 1 .872 2.105l-.17.31c-.698 1.283.705 2.686 1.987 1.987l.311-.169a1.464 1.464 0 0 1 2.105.872l.1.34c.413 1.4 2.397 1.4 2.81 0l.1-.34a1.464 1.464 0 0 1 2.105-.872l.31.17c1.283.698 2.686-.705 1.987-1.987l-.169-.311a1.464 1.464 0 0 1 .872-2.105l.34-.1c1.4-.413 1.4-2.397 0-2.81l-.34-.1a1.464 1.464 0 0 1-.872-2.105l.17-.31c.698-1.283-.705-2.686-1.987-1.987l-.311.169a1.464 1.464 0 0 1-2.105-.872l-.1-.34zM8 10.93a2.929 2.929 0 1 1 0-5.86 2.929 2.929 0 0 1 0 5.858z"/>
|
393
393
|
</svg>
|
394
|
-
<span class="ms-1">{showControlsPanel ? 'Hide' : 'Show'} Controls</span>
|
394
|
+
<!-- <span class="ms-1">{showControlsPanel ? 'Hide' : 'Show'} Controls</span> -->
|
395
395
|
</button>
|
396
396
|
{/if}
|
397
397
|
</div>
|