@softwareone/spi-sv5-library 1.15.2 → 1.15.4
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.
|
@@ -243,12 +243,12 @@
|
|
|
243
243
|
<section
|
|
244
244
|
role="button"
|
|
245
245
|
tabindex="0"
|
|
246
|
-
class="dropdown-container
|
|
246
|
+
class="dropdown-container"
|
|
247
247
|
onclick={readonly ? undefined : onToggleListOptions}
|
|
248
248
|
onkeypress={readonly ? undefined : onToggleListOptions}
|
|
249
249
|
bind:this={dropdownContainer}
|
|
250
250
|
>
|
|
251
|
-
<div class="dropdown-container-selected-options">
|
|
251
|
+
<div class="dropdown-container-selected-options spi-text-regular-2">
|
|
252
252
|
{#if selectedOption || selectedOptions.length}
|
|
253
253
|
{#if multiple}
|
|
254
254
|
{#each selectedOptions as selectedOption, index (index)}
|
|
@@ -277,7 +277,7 @@
|
|
|
277
277
|
{#if showListOptions && !readonly}
|
|
278
278
|
<section
|
|
279
279
|
class={[
|
|
280
|
-
'dropdown-list',
|
|
280
|
+
'dropdown-list spi-text-regular-2',
|
|
281
281
|
positionStrategy === 'absolute' && 'upwards',
|
|
282
282
|
positionStrategy === 'fixed' && 'position-fixed'
|
|
283
283
|
]}
|
|
@@ -332,6 +332,7 @@
|
|
|
332
332
|
|
|
333
333
|
{#snippet dropdownOptionTemplate(option: SelectOption)}
|
|
334
334
|
<button
|
|
335
|
+
class="spi-text-regular-2"
|
|
335
336
|
type="button"
|
|
336
337
|
onclick={(event) => {
|
|
337
338
|
event.stopPropagation();
|
|
@@ -94,7 +94,7 @@
|
|
|
94
94
|
]}
|
|
95
95
|
>
|
|
96
96
|
<div class="time-line">
|
|
97
|
-
<span class="circle spi-text-
|
|
97
|
+
<span class="circle spi-text-semibold-1">
|
|
98
98
|
{circleContent()}
|
|
99
99
|
</span>
|
|
100
100
|
<span class="line"></span>
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
disabled={disabled || readonly}
|
|
106
106
|
onclick={() => (currentStep = stepIndex)}
|
|
107
107
|
>
|
|
108
|
-
<h2 class="spi-text-
|
|
108
|
+
<h2 class="spi-text-semibold-3">{step.title}</h2>
|
|
109
109
|
{#if step.description}
|
|
110
110
|
<p class="spi-text-regular-1">{step.description}</p>
|
|
111
111
|
{/if}
|