intelliwaketssveltekitv25 0.1.164 → 0.1.165
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.
- package/dist/Modal.svelte +1 -1
- package/dist/NumberFormat.svelte +1 -1
- package/package.json +1 -1
package/dist/Modal.svelte
CHANGED
|
@@ -278,7 +278,7 @@
|
|
|
278
278
|
{#if !!okButton}
|
|
279
279
|
<button type={okType}
|
|
280
280
|
class='dialogButtonOK shadow-none okButton {classButton}'
|
|
281
|
-
data-color
|
|
281
|
+
data-color={okColor ?? color}
|
|
282
282
|
class:whitespace-nowrap={!okButtonWrap}
|
|
283
283
|
bind:this={okButtonElement}
|
|
284
284
|
onclick={okAction}
|
package/dist/NumberFormat.svelte
CHANGED
|
@@ -30,7 +30,7 @@
|
|
|
30
30
|
</script>
|
|
31
31
|
|
|
32
32
|
<span
|
|
33
|
-
data-color={(isNegative && !classNameAddOnNegative) ? "danger" : ''}
|
|
33
|
+
data-color-text={(isNegative && !classNameAddOnNegative) ? "danger" : ''}
|
|
34
34
|
class={
|
|
35
35
|
(className ?? '') + ' ' + (isNegative ? classNameAddOnNegative ?? 'text-red-600' : '')
|
|
36
36
|
}>
|