intelliwaketssveltekitv25 0.3.17 → 0.3.19
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/Icon.svelte +4 -1
- package/dist/Icon.svelte.d.ts +2 -1
- package/package.json +1 -1
package/dist/Icon.svelte
CHANGED
|
@@ -12,6 +12,7 @@
|
|
|
12
12
|
title = undefined,
|
|
13
13
|
size = '',
|
|
14
14
|
color = '',
|
|
15
|
+
dataColor,
|
|
15
16
|
|
|
16
17
|
fw = false,
|
|
17
18
|
pull = '',
|
|
@@ -39,7 +40,8 @@
|
|
|
39
40
|
icon?: IconDefinition | null | undefined
|
|
40
41
|
title?: string | undefined
|
|
41
42
|
size?: string
|
|
42
|
-
color?: string
|
|
43
|
+
color?: string | null
|
|
44
|
+
dataColor?: TDefaultColorPalate | null
|
|
43
45
|
|
|
44
46
|
fw?: boolean
|
|
45
47
|
pull?: string
|
|
@@ -169,6 +171,7 @@
|
|
|
169
171
|
aria-hidden='true'
|
|
170
172
|
role='img'
|
|
171
173
|
xmlns='http://www.w3.org/2000/svg'
|
|
174
|
+
data-color-text={dataColor ?? undefined}
|
|
172
175
|
>
|
|
173
176
|
{#if title}
|
|
174
177
|
<title>{title}</title>
|
package/dist/Icon.svelte.d.ts
CHANGED