intelliwaketssveltekitv25 0.1.54 → 0.1.55
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/Definitions.d.ts +1 -0
- package/dist/Icon.svelte +1 -0
- package/dist/ListGroupItems.svelte +3 -3
- package/package.json +1 -1
package/dist/Definitions.d.ts
CHANGED
package/dist/Icon.svelte
CHANGED
|
@@ -227,15 +227,15 @@
|
|
|
227
227
|
class:row-span-2={listItem.bigIcon}>
|
|
228
228
|
{#if !!listItem.faProps}
|
|
229
229
|
<Icon fw
|
|
230
|
-
class={`mr-2 inline-block ${!listItem.bigIcon ? '' : 'ml-2'}`}
|
|
231
230
|
scale={!listItem.bigIcon ? 1 : 2}
|
|
232
|
-
{...listItem.faProps}
|
|
231
|
+
{...listItem.faProps}
|
|
232
|
+
class={`mr-2 inline-block ${!listItem.bigIcon ? '' : 'ml-2'} ${listItem.faProps.class ?? ''}`.trim()}/>
|
|
233
233
|
{/if}
|
|
234
234
|
{#if !!listItem.icon}
|
|
235
235
|
<Icon fw
|
|
236
236
|
icon={listItem.icon}
|
|
237
237
|
scale={!listItem.bigIcon ? 1 : 2}
|
|
238
|
-
class={`mr-2 inline-block top-1/2 -translate-y-1/2 absolute ${!listItem.bigIcon ? '' : 'left-1.5'}
|
|
238
|
+
class={`mr-2 inline-block top-1/2 -translate-y-1/2 absolute ${!listItem.bigIcon ? '' : 'left-1.5'}`.trim()} />
|
|
239
239
|
{/if}
|
|
240
240
|
</div>
|
|
241
241
|
<div class='overflow-hidden'
|