@softwareone/spi-sv5-library 1.10.1 → 1.10.2
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.
|
@@ -321,15 +321,12 @@
|
|
|
321
321
|
box-shadow: 0px 0px 0px 3px rgba(220, 38, 38, 0.2);
|
|
322
322
|
}
|
|
323
323
|
|
|
324
|
-
.form-input-wrapper.success
|
|
325
|
-
border-color: #008556;
|
|
326
|
-
}
|
|
327
|
-
|
|
324
|
+
.form-input-wrapper.success,
|
|
328
325
|
.form-input-wrapper.success:hover:not(:has(.form-input:disabled)):not(
|
|
329
326
|
:has(.form-input:read-only)
|
|
330
327
|
),
|
|
331
328
|
.form-input-wrapper.success:focus-within {
|
|
332
|
-
border-color: #
|
|
329
|
+
border-color: #008556;
|
|
333
330
|
}
|
|
334
331
|
|
|
335
332
|
.form-input-wrapper.success:focus-within {
|
|
@@ -209,15 +209,13 @@
|
|
|
209
209
|
box-shadow: 0px 0px 0px 3px rgba(220, 38, 38, 0.2);
|
|
210
210
|
}
|
|
211
211
|
|
|
212
|
-
.form-textarea-wrapper.success {
|
|
213
|
-
border-color: #008556;
|
|
214
|
-
}
|
|
215
212
|
|
|
213
|
+
.form-textarea-wrapper.success,
|
|
216
214
|
.form-textarea-wrapper.success:hover:not(:has(.form-textarea:disabled)):not(
|
|
217
215
|
:has(.form-textarea:read-only)
|
|
218
216
|
),
|
|
219
217
|
.form-textarea-wrapper.success:focus-within {
|
|
220
|
-
border-color: #
|
|
218
|
+
border-color: #008556;
|
|
221
219
|
}
|
|
222
220
|
|
|
223
221
|
.form-textarea-wrapper.success:focus-within {
|
package/dist/Table/Table.svelte
CHANGED
|
@@ -238,7 +238,7 @@
|
|
|
238
238
|
{/if}
|
|
239
239
|
</header>
|
|
240
240
|
|
|
241
|
-
{#if enableChecked &&
|
|
241
|
+
{#if enableChecked && selectedRows.length > 0}
|
|
242
242
|
<div class="table-bulk-actions">
|
|
243
243
|
<p>
|
|
244
244
|
{selectedRows.length} of {table.getCoreRowModel().rows.length} items are selected
|