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 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>
@@ -6,7 +6,8 @@ type $$ComponentProps = {
6
6
  icon?: IconDefinition | null | undefined;
7
7
  title?: string | undefined;
8
8
  size?: string;
9
- color?: string;
9
+ color?: string | null;
10
+ dataColor?: TDefaultColorPalate | null;
10
11
  fw?: boolean;
11
12
  pull?: string;
12
13
  scale?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "intelliwaketssveltekitv25",
3
- "version": "0.3.17",
3
+ "version": "0.3.19",
4
4
  "exports": {
5
5
  ".": {
6
6
  "types": "./dist/index.d.ts",