diff --git a/src/theme/button.ts b/src/theme/button.ts index 36501f24..334c9c95 100644 --- a/src/theme/button.ts +++ b/src/theme/button.ts @@ -3,7 +3,7 @@ import { buttonGroupVariant } from './button-group' export default (options: Required) => ({ slots: { - base: ['rounded-[calc(var(--ui-radius)*1.5)] font-medium inline-flex items-center focus:outline-hidden disabled:cursor-not-allowed aria-disabled:cursor-not-allowed disabled:opacity-75 aria-disabled:opacity-75', options.theme.transitions && 'transition-colors'], + base: ['rounded-[calc(var(--ui-radius)*1.5)] font-medium inline-flex items-center disabled:cursor-not-allowed aria-disabled:cursor-not-allowed disabled:opacity-75 aria-disabled:opacity-75', options.theme.transitions && 'transition-colors'], label: 'truncate', leadingIcon: 'shrink-0', leadingAvatar: 'shrink-0', @@ -90,23 +90,23 @@ export default (options: Required) => ({ })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'outline', - class: `ring ring-inset ring-(--ui-${color})/50 text-(--ui-${color}) hover:bg-(--ui-${color})/10 disabled:bg-transparent aria-disabled:bg-transparent dark:disabled:bg-transparent dark:aria-disabled:bg-transparent focus-visible:ring-2 focus-visible:ring-(--ui-${color})` + class: `ring ring-inset ring-(--ui-${color})/50 text-(--ui-${color}) hover:bg-(--ui-${color})/10 disabled:bg-transparent aria-disabled:bg-transparent dark:disabled:bg-transparent dark:aria-disabled:bg-transparent focus:outline-none focus-visible:ring-2 focus-visible:ring-(--ui-${color})` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'soft', - class: `text-(--ui-${color}) bg-(--ui-${color})/10 hover:bg-(--ui-${color})/15 focus-visible:bg-(--ui-${color})/15 disabled:bg-(--ui-${color})/10 aria-disabled:bg-(--ui-${color})/10` + class: `text-(--ui-${color}) bg-(--ui-${color})/10 hover:bg-(--ui-${color})/15 focus:outline-none focus-visible:bg-(--ui-${color})/15 disabled:bg-(--ui-${color})/10 aria-disabled:bg-(--ui-${color})/10` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'subtle', - class: `text-(--ui-${color}) ring ring-inset ring-(--ui-${color})/25 bg-(--ui-${color})/10 hover:bg-(--ui-${color})/15 disabled:bg-(--ui-${color})/10 aria-disabled:bg-(--ui-${color})/10 focus-visible:ring-2 focus-visible:ring-(--ui-${color})` + class: `text-(--ui-${color}) ring ring-inset ring-(--ui-${color})/25 bg-(--ui-${color})/10 hover:bg-(--ui-${color})/15 disabled:bg-(--ui-${color})/10 aria-disabled:bg-(--ui-${color})/10 focus:outline-none focus-visible:ring-2 focus-visible:ring-(--ui-${color})` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'ghost', - class: `text-(--ui-${color}) hover:bg-(--ui-${color})/10 focus-visible:bg-(--ui-${color})/10 disabled:bg-transparent aria-disabled:bg-transparent dark:disabled:bg-transparent dark:aria-disabled:bg-transparent` + class: `text-(--ui-${color}) hover:bg-(--ui-${color})/10 focus:outline-none focus-visible:bg-(--ui-${color})/10 disabled:bg-transparent aria-disabled:bg-transparent dark:disabled:bg-transparent dark:aria-disabled:bg-transparent` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'link', - class: `text-(--ui-${color}) hover:text-(--ui-${color})/75 disabled:text-(--ui-${color}) aria-disabled:text-(--ui-${color}) focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-(--ui-${color})` + class: `text-(--ui-${color}) hover:text-(--ui-${color})/75 disabled:text-(--ui-${color}) aria-disabled:text-(--ui-${color}) focus:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-(--ui-${color})` })), { color: 'neutral', variant: 'solid', @@ -114,23 +114,23 @@ export default (options: Required) => ({ }, { color: 'neutral', variant: 'outline', - class: 'ring ring-inset ring-(--ui-border-accented) text-(--ui-text) bg-(--ui-bg) hover:bg-(--ui-bg-elevated) disabled:bg-(--ui-bg) aria-disabled:bg-(--ui-bg) focus-visible:ring-2 focus-visible:ring-(--ui-border-inverted)' + class: 'ring ring-inset ring-(--ui-border-accented) text-(--ui-text) bg-(--ui-bg) hover:bg-(--ui-bg-elevated) disabled:bg-(--ui-bg) aria-disabled:bg-(--ui-bg) focus:outline-none focus-visible:ring-2 focus-visible:ring-(--ui-border-inverted)' }, { color: 'neutral', variant: 'soft', - class: 'text-(--ui-text) bg-(--ui-bg-elevated) hover:bg-(--ui-bg-accented)/75 focus-visible:bg-(--ui-bg-accented)/75 disabled:bg-(--ui-bg-elevated) aria-disabled:bg-(--ui-bg-elevated)' + class: 'text-(--ui-text) bg-(--ui-bg-elevated) hover:bg-(--ui-bg-accented)/75 focus:outline-none focus-visible:bg-(--ui-bg-accented)/75 disabled:bg-(--ui-bg-elevated) aria-disabled:bg-(--ui-bg-elevated)' }, { color: 'neutral', variant: 'subtle', - class: 'ring ring-inset ring-(--ui-border-accented) text-(--ui-text) bg-(--ui-bg-elevated) hover:bg-(--ui-bg-accented)/75 disabled:bg-(--ui-bg-elevated) aria-disabled:bg-(--ui-bg-elevated) focus-visible:ring-2 focus-visible:ring-(--ui-border-inverted)' + class: 'ring ring-inset ring-(--ui-border-accented) text-(--ui-text) bg-(--ui-bg-elevated) hover:bg-(--ui-bg-accented)/75 disabled:bg-(--ui-bg-elevated) aria-disabled:bg-(--ui-bg-elevated) focus:outline-none focus-visible:ring-2 focus-visible:ring-(--ui-border-inverted)' }, { color: 'neutral', variant: 'ghost', - class: 'text-(--ui-text) hover:bg-(--ui-bg-elevated) focus-visible:bg-(--ui-bg-elevated) hover:disabled:bg-transparent dark:hover:disabled:bg-transparent hover:aria-disabled:bg-transparent dark:hover:aria-disabled:bg-transparent' + class: 'text-(--ui-text) hover:bg-(--ui-bg-elevated) focus:outline-none focus-visible:bg-(--ui-bg-elevated) hover:disabled:bg-transparent dark:hover:disabled:bg-transparent hover:aria-disabled:bg-transparent dark:hover:aria-disabled:bg-transparent' }, { color: 'neutral', variant: 'link', - class: 'text-(--ui-text-muted) hover:text-(--ui-text) disabled:text-(--ui-text-muted) aria-disabled:text-(--ui-text-muted) focus-visible:ring-inset focus-visible:ring-2 focus-visible:ring-(--ui-border-inverted)' + class: 'text-(--ui-text-muted) hover:text-(--ui-text) disabled:text-(--ui-text-muted) aria-disabled:text-(--ui-text-muted) focus:outline-none focus-visible:ring-inset focus-visible:ring-2 focus-visible:ring-(--ui-border-inverted)' }, { size: 'xs', square: true, diff --git a/test/components/__snapshots__/Alert-vue.spec.ts.snap b/test/components/__snapshots__/Alert-vue.spec.ts.snap index eff77498..34a13ec2 100644 --- a/test/components/__snapshots__/Alert-vue.spec.ts.snap +++ b/test/components/__snapshots__/Alert-vue.spec.ts.snap @@ -6,7 +6,7 @@ exports[`Alert > renders with actions correctly 1`] = `
Alert
-
@@ -59,7 +59,7 @@ exports[`Alert > renders with close correctly 1`] = `
- @@ -88,7 +88,7 @@ exports[`Alert > renders with closeIcon correctly 1`] = `
- @@ -198,7 +198,7 @@ exports[`Alert > renders with orientation horizontal correctly 1`] = `
This is a description
-
@@ -212,7 +212,7 @@ exports[`Alert > renders with orientation vertical correctly 1`] = `
Alert
This is a description
-
diff --git a/test/components/__snapshots__/Alert.spec.ts.snap b/test/components/__snapshots__/Alert.spec.ts.snap index 664a1aaa..efe1a417 100644 --- a/test/components/__snapshots__/Alert.spec.ts.snap +++ b/test/components/__snapshots__/Alert.spec.ts.snap @@ -6,7 +6,7 @@ exports[`Alert > renders with actions correctly 1`] = `
Alert
-
@@ -59,7 +59,7 @@ exports[`Alert > renders with close correctly 1`] = `
- @@ -88,7 +88,7 @@ exports[`Alert > renders with closeIcon correctly 1`] = `
- @@ -198,7 +198,7 @@ exports[`Alert > renders with orientation horizontal correctly 1`] = `
This is a description
-
@@ -212,7 +212,7 @@ exports[`Alert > renders with orientation vertical correctly 1`] = `
Alert
This is a description
-
diff --git a/test/components/__snapshots__/Button-vue.spec.ts.snap b/test/components/__snapshots__/Button-vue.spec.ts.snap index 16196477..19245058 100644 --- a/test/components/__snapshots__/Button-vue.spec.ts.snap +++ b/test/components/__snapshots__/Button-vue.spec.ts.snap @@ -1,341 +1,341 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`Button > renders with active variant ghost correctly 1`] = ` -"" `; exports[`Button > renders with active variant link correctly 1`] = ` -"" `; exports[`Button > renders with active variant outline correctly 1`] = ` -"" `; exports[`Button > renders with active variant soft correctly 1`] = ` -"" `; exports[`Button > renders with active variant solid correctly 1`] = ` -"" `; exports[`Button > renders with active variant subtle correctly 1`] = ` -"" `; exports[`Button > renders with activeClass correctly 1`] = ` -"" `; exports[`Button > renders with as correctly 1`] = ` -"
+"
Button
" `; exports[`Button > renders with avatar and leadingIcon correctly 1`] = ` -"" `; exports[`Button > renders with avatar and trailingIcon correctly 1`] = ` -"" `; exports[`Button > renders with avatar correctly 1`] = ` -"" `; exports[`Button > renders with block correctly 1`] = ` -"" `; exports[`Button > renders with class correctly 1`] = ` -"" `; exports[`Button > renders with default slot correctly 1`] = ` -"" `; exports[`Button > renders with disabled and with link correctly 1`] = ` -" +" Button " `; exports[`Button > renders with disabled correctly 1`] = ` -"" `; exports[`Button > renders with icon correctly 1`] = ` -"" `; exports[`Button > renders with inactiveClass correctly 1`] = ` -"" `; exports[`Button > renders with label correctly 1`] = ` -"" `; exports[`Button > renders with leading and icon correctly 1`] = ` -"" `; exports[`Button > renders with leading slot correctly 1`] = ` -"" `; exports[`Button > renders with leadingIcon correctly 1`] = ` -"" `; exports[`Button > renders with loading and avatar correctly 1`] = ` -"" `; exports[`Button > renders with loading correctly 1`] = ` -"" `; exports[`Button > renders with loading trailing and avatar correctly 1`] = ` -"" `; exports[`Button > renders with loading trailing correctly 1`] = ` -"" `; exports[`Button > renders with loadingIcon correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant ghost correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant link correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant outline correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant soft correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant solid correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant subtle correctly 1`] = ` -"" `; exports[`Button > renders with primary variant ghost correctly 1`] = ` -"" `; exports[`Button > renders with primary variant link correctly 1`] = ` -"" `; exports[`Button > renders with primary variant outline correctly 1`] = ` -"" `; exports[`Button > renders with primary variant soft correctly 1`] = ` -"" `; exports[`Button > renders with primary variant solid correctly 1`] = ` -"" `; exports[`Button > renders with primary variant subtle correctly 1`] = ` -"" `; exports[`Button > renders with size lg correctly 1`] = ` -"" `; exports[`Button > renders with size md correctly 1`] = ` -"" `; exports[`Button > renders with size sm correctly 1`] = ` -"" `; exports[`Button > renders with size xl correctly 1`] = ` -"" `; exports[`Button > renders with size xs correctly 1`] = ` -"" `; exports[`Button > renders with square correctly 1`] = ` -"" `; exports[`Button > renders with trailing and icon correctly 1`] = ` -"" `; exports[`Button > renders with trailing slot correctly 1`] = ` -"" `; exports[`Button > renders with trailingIcon correctly 1`] = ` -"" `; exports[`Button > renders with ui correctly 1`] = ` -"" diff --git a/test/components/__snapshots__/Button.spec.ts.snap b/test/components/__snapshots__/Button.spec.ts.snap index 233bb3e2..0a18fa7c 100644 --- a/test/components/__snapshots__/Button.spec.ts.snap +++ b/test/components/__snapshots__/Button.spec.ts.snap @@ -1,341 +1,341 @@ // Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html exports[`Button > renders with active variant ghost correctly 1`] = ` -"" `; exports[`Button > renders with active variant link correctly 1`] = ` -"" `; exports[`Button > renders with active variant outline correctly 1`] = ` -"" `; exports[`Button > renders with active variant soft correctly 1`] = ` -"" `; exports[`Button > renders with active variant solid correctly 1`] = ` -"" `; exports[`Button > renders with active variant subtle correctly 1`] = ` -"" `; exports[`Button > renders with activeClass correctly 1`] = ` -"" `; exports[`Button > renders with as correctly 1`] = ` -"
+"
Button
" `; exports[`Button > renders with avatar and leadingIcon correctly 1`] = ` -"" `; exports[`Button > renders with avatar and trailingIcon correctly 1`] = ` -"" `; exports[`Button > renders with avatar correctly 1`] = ` -"" `; exports[`Button > renders with block correctly 1`] = ` -"" `; exports[`Button > renders with class correctly 1`] = ` -"" `; exports[`Button > renders with default slot correctly 1`] = ` -"" `; exports[`Button > renders with disabled and with link correctly 1`] = ` -" +" Button " `; exports[`Button > renders with disabled correctly 1`] = ` -"" `; exports[`Button > renders with icon correctly 1`] = ` -"" `; exports[`Button > renders with inactiveClass correctly 1`] = ` -"" `; exports[`Button > renders with label correctly 1`] = ` -"" `; exports[`Button > renders with leading and icon correctly 1`] = ` -"" `; exports[`Button > renders with leading slot correctly 1`] = ` -"" `; exports[`Button > renders with leadingIcon correctly 1`] = ` -"" `; exports[`Button > renders with loading and avatar correctly 1`] = ` -"" `; exports[`Button > renders with loading correctly 1`] = ` -"" `; exports[`Button > renders with loading trailing and avatar correctly 1`] = ` -"" `; exports[`Button > renders with loading trailing correctly 1`] = ` -"" `; exports[`Button > renders with loadingIcon correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant ghost correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant link correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant outline correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant soft correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant solid correctly 1`] = ` -"" `; exports[`Button > renders with neutral variant subtle correctly 1`] = ` -"" `; exports[`Button > renders with primary variant ghost correctly 1`] = ` -"" `; exports[`Button > renders with primary variant link correctly 1`] = ` -"" `; exports[`Button > renders with primary variant outline correctly 1`] = ` -"" `; exports[`Button > renders with primary variant soft correctly 1`] = ` -"" `; exports[`Button > renders with primary variant solid correctly 1`] = ` -"" `; exports[`Button > renders with primary variant subtle correctly 1`] = ` -"" `; exports[`Button > renders with size lg correctly 1`] = ` -"" `; exports[`Button > renders with size md correctly 1`] = ` -"" `; exports[`Button > renders with size sm correctly 1`] = ` -"" `; exports[`Button > renders with size xl correctly 1`] = ` -"" `; exports[`Button > renders with size xs correctly 1`] = ` -"" `; exports[`Button > renders with square correctly 1`] = ` -"" `; exports[`Button > renders with trailing and icon correctly 1`] = ` -"" `; exports[`Button > renders with trailing slot correctly 1`] = ` -"" `; exports[`Button > renders with trailingIcon correctly 1`] = ` -"" `; exports[`Button > renders with ui correctly 1`] = ` -"" diff --git a/test/components/__snapshots__/ButtonGroup-vue.spec.ts.snap b/test/components/__snapshots__/ButtonGroup-vue.spec.ts.snap index 92a77793..5c7549f9 100644 --- a/test/components/__snapshots__/ButtonGroup-vue.spec.ts.snap +++ b/test/components/__snapshots__/ButtonGroup-vue.spec.ts.snap @@ -5,7 +5,7 @@ exports[`ButtonGroup > renders orientation vertical with default slot correctly
-
@@ -21,7 +21,7 @@ exports[`ButtonGroup > renders with default slot correctly 1`] = `
-
@@ -33,7 +33,7 @@ exports[`ButtonGroup > renders with size lg correctly 1`] = `
-
@@ -45,7 +45,7 @@ exports[`ButtonGroup > renders with size md correctly 1`] = `
-
@@ -57,7 +57,7 @@ exports[`ButtonGroup > renders with size sm correctly 1`] = `
-
@@ -69,7 +69,7 @@ exports[`ButtonGroup > renders with size xl correctly 1`] = `
-
@@ -81,7 +81,7 @@ exports[`ButtonGroup > renders with size xs correctly 1`] = `
-
diff --git a/test/components/__snapshots__/ButtonGroup.spec.ts.snap b/test/components/__snapshots__/ButtonGroup.spec.ts.snap index 92a77793..5c7549f9 100644 --- a/test/components/__snapshots__/ButtonGroup.spec.ts.snap +++ b/test/components/__snapshots__/ButtonGroup.spec.ts.snap @@ -5,7 +5,7 @@ exports[`ButtonGroup > renders orientation vertical with default slot correctly
-
@@ -21,7 +21,7 @@ exports[`ButtonGroup > renders with default slot correctly 1`] = `
-
@@ -33,7 +33,7 @@ exports[`ButtonGroup > renders with size lg correctly 1`] = `
-
@@ -45,7 +45,7 @@ exports[`ButtonGroup > renders with size md correctly 1`] = `
-
@@ -57,7 +57,7 @@ exports[`ButtonGroup > renders with size sm correctly 1`] = `
-
@@ -69,7 +69,7 @@ exports[`ButtonGroup > renders with size xl correctly 1`] = `
-
@@ -81,7 +81,7 @@ exports[`ButtonGroup > renders with size xs correctly 1`] = `
-
diff --git a/test/components/__snapshots__/Calendar-vue.spec.ts.snap b/test/components/__snapshots__/Calendar-vue.spec.ts.snap index 982dc45b..8cd1cc34 100644 --- a/test/components/__snapshots__/Calendar-vue.spec.ts.snap +++ b/test/components/__snapshots__/Calendar-vue.spec.ts.snap @@ -2,17 +2,17 @@ exports[`Calendar > renders with as correctly 1`] = ` "
-
-
January 2025
@@ -180,17 +180,17 @@ exports[`Calendar > renders with as correctly 1`] = ` exports[`Calendar > renders with class correctly 1`] = ` "
-
-
January 2025
@@ -358,17 +358,17 @@ exports[`Calendar > renders with class correctly 1`] = ` exports[`Calendar > renders with color neutral correctly 1`] = ` "
-
-
January 2025
@@ -536,17 +536,17 @@ exports[`Calendar > renders with color neutral correctly 1`] = ` exports[`Calendar > renders with day slot correctly 1`] = ` "
-
-
January 2025
@@ -714,17 +714,17 @@ exports[`Calendar > renders with day slot correctly 1`] = ` exports[`Calendar > renders with default value correctly 1`] = ` "
-
-
January 2025
@@ -892,17 +892,17 @@ exports[`Calendar > renders with default value correctly 1`] = ` exports[`Calendar > renders with disabled correctly 1`] = ` "
-
-
January 2025
@@ -1070,17 +1070,17 @@ exports[`Calendar > renders with disabled correctly 1`] = ` exports[`Calendar > renders with heading slot correctly 1`] = ` "
-
-
Heading
@@ -1248,17 +1248,17 @@ exports[`Calendar > renders with heading slot correctly 1`] = ` exports[`Calendar > renders with isDateDisabled correctly 1`] = ` "
-
-
January 2025
@@ -1426,17 +1426,17 @@ exports[`Calendar > renders with isDateDisabled correctly 1`] = ` exports[`Calendar > renders with isDateUnavailable correctly 1`] = ` "
-
-
January 2025
@@ -1604,17 +1604,17 @@ exports[`Calendar > renders with isDateUnavailable correctly 1`] = ` exports[`Calendar > renders with modelValue correctly 1`] = ` "
-
-
January 2025
@@ -1782,17 +1782,17 @@ exports[`Calendar > renders with modelValue correctly 1`] = ` exports[`Calendar > renders with multiple correctly 1`] = ` "
-
-
January 2025
@@ -1960,17 +1960,17 @@ exports[`Calendar > renders with multiple correctly 1`] = ` exports[`Calendar > renders with numberOfMonths correctly 1`] = ` "
-
-
January - February 2025
@@ -2294,17 +2294,17 @@ exports[`Calendar > renders with range correctly 1`] = `
Event Date, January 2025
-
-
January 2025
@@ -2469,17 +2469,17 @@ exports[`Calendar > renders with range correctly 1`] = ` exports[`Calendar > renders with readonly correctly 1`] = ` "
-
-
January 2025
@@ -2647,17 +2647,17 @@ exports[`Calendar > renders with readonly correctly 1`] = ` exports[`Calendar > renders with size lg correctly 1`] = ` "
-
-
January 2025
@@ -2825,17 +2825,17 @@ exports[`Calendar > renders with size lg correctly 1`] = ` exports[`Calendar > renders with size md correctly 1`] = ` "
-
-
January 2025
@@ -3003,17 +3003,17 @@ exports[`Calendar > renders with size md correctly 1`] = ` exports[`Calendar > renders with size sm correctly 1`] = ` "
-
-
January 2025
@@ -3181,17 +3181,17 @@ exports[`Calendar > renders with size sm correctly 1`] = ` exports[`Calendar > renders with size xl correctly 1`] = ` "
-
-
January 2025
@@ -3359,17 +3359,17 @@ exports[`Calendar > renders with size xl correctly 1`] = ` exports[`Calendar > renders with size xs correctly 1`] = ` "
-
-
January 2025
@@ -3537,17 +3537,17 @@ exports[`Calendar > renders with size xs correctly 1`] = ` exports[`Calendar > renders with ui correctly 1`] = ` "
-
-
January 2025
@@ -3715,17 +3715,17 @@ exports[`Calendar > renders with ui correctly 1`] = ` exports[`Calendar > renders with week-day slot correctly 1`] = ` "
-
-
January 2025
@@ -3893,17 +3893,17 @@ exports[`Calendar > renders with week-day slot correctly 1`] = ` exports[`Calendar > renders with weekStartsOn correctly 1`] = ` "
-
-
January 2025
@@ -4071,17 +4071,17 @@ exports[`Calendar > renders with weekStartsOn correctly 1`] = ` exports[`Calendar > renders with weekdayFormat correctly 1`] = ` "
-
-
January 2025
@@ -4249,17 +4249,17 @@ exports[`Calendar > renders with weekdayFormat correctly 1`] = ` exports[`Calendar > renders without fixedWeeks correctly 1`] = ` "
-
-
January 2025
@@ -4404,13 +4404,13 @@ exports[`Calendar > renders without fixedWeeks correctly 1`] = ` exports[`Calendar > renders without monthControls correctly 1`] = ` "
-
January 2025
- @@ -4579,11 +4579,11 @@ exports[`Calendar > renders without monthControls correctly 1`] = ` exports[`Calendar > renders without yearControls correctly 1`] = ` "
- -
January 2025
diff --git a/test/components/__snapshots__/Calendar.spec.ts.snap b/test/components/__snapshots__/Calendar.spec.ts.snap index 3fcdd791..9c9ee85b 100644 --- a/test/components/__snapshots__/Calendar.spec.ts.snap +++ b/test/components/__snapshots__/Calendar.spec.ts.snap @@ -2,17 +2,17 @@ exports[`Calendar > renders with as correctly 1`] = ` "
-
-
January 2025
@@ -180,17 +180,17 @@ exports[`Calendar > renders with as correctly 1`] = ` exports[`Calendar > renders with class correctly 1`] = ` "
-
-
January 2025
@@ -358,17 +358,17 @@ exports[`Calendar > renders with class correctly 1`] = ` exports[`Calendar > renders with color neutral correctly 1`] = ` "
-
-
January 2025
@@ -536,17 +536,17 @@ exports[`Calendar > renders with color neutral correctly 1`] = ` exports[`Calendar > renders with day slot correctly 1`] = ` "
-
-
January 2025
@@ -714,17 +714,17 @@ exports[`Calendar > renders with day slot correctly 1`] = ` exports[`Calendar > renders with default value correctly 1`] = ` "
-
-
January 2025
@@ -892,17 +892,17 @@ exports[`Calendar > renders with default value correctly 1`] = ` exports[`Calendar > renders with disabled correctly 1`] = ` "
-
-
January 2025
@@ -1070,17 +1070,17 @@ exports[`Calendar > renders with disabled correctly 1`] = ` exports[`Calendar > renders with heading slot correctly 1`] = ` "
-
-
Heading
@@ -1248,17 +1248,17 @@ exports[`Calendar > renders with heading slot correctly 1`] = ` exports[`Calendar > renders with isDateDisabled correctly 1`] = ` "
-
-
January 2025
@@ -1426,17 +1426,17 @@ exports[`Calendar > renders with isDateDisabled correctly 1`] = ` exports[`Calendar > renders with isDateUnavailable correctly 1`] = ` "
-
-
January 2025
@@ -1604,17 +1604,17 @@ exports[`Calendar > renders with isDateUnavailable correctly 1`] = ` exports[`Calendar > renders with modelValue correctly 1`] = ` "
-
-
January 2025
@@ -1782,17 +1782,17 @@ exports[`Calendar > renders with modelValue correctly 1`] = ` exports[`Calendar > renders with multiple correctly 1`] = ` "
-
-
January 2025
@@ -1960,17 +1960,17 @@ exports[`Calendar > renders with multiple correctly 1`] = ` exports[`Calendar > renders with numberOfMonths correctly 1`] = ` "
-
-
January - February 2025
@@ -2294,17 +2294,17 @@ exports[`Calendar > renders with range correctly 1`] = `
Event Date, January 2025
-
-
January 2025
@@ -2469,17 +2469,17 @@ exports[`Calendar > renders with range correctly 1`] = ` exports[`Calendar > renders with readonly correctly 1`] = ` "
-
-
January 2025
@@ -2647,17 +2647,17 @@ exports[`Calendar > renders with readonly correctly 1`] = ` exports[`Calendar > renders with size lg correctly 1`] = ` "
-
-
January 2025
@@ -2825,17 +2825,17 @@ exports[`Calendar > renders with size lg correctly 1`] = ` exports[`Calendar > renders with size md correctly 1`] = ` "
-
-
January 2025
@@ -3003,17 +3003,17 @@ exports[`Calendar > renders with size md correctly 1`] = ` exports[`Calendar > renders with size sm correctly 1`] = ` "
-
-
January 2025
@@ -3181,17 +3181,17 @@ exports[`Calendar > renders with size sm correctly 1`] = ` exports[`Calendar > renders with size xl correctly 1`] = ` "
-
-
January 2025
@@ -3359,17 +3359,17 @@ exports[`Calendar > renders with size xl correctly 1`] = ` exports[`Calendar > renders with size xs correctly 1`] = ` "
-
-
January 2025
@@ -3537,17 +3537,17 @@ exports[`Calendar > renders with size xs correctly 1`] = ` exports[`Calendar > renders with ui correctly 1`] = ` "
-
-
January 2025
@@ -3715,17 +3715,17 @@ exports[`Calendar > renders with ui correctly 1`] = ` exports[`Calendar > renders with week-day slot correctly 1`] = ` "
-
-
January 2025
@@ -3893,17 +3893,17 @@ exports[`Calendar > renders with week-day slot correctly 1`] = ` exports[`Calendar > renders with weekStartsOn correctly 1`] = ` "
-
-
January 2025
@@ -4071,17 +4071,17 @@ exports[`Calendar > renders with weekStartsOn correctly 1`] = ` exports[`Calendar > renders with weekdayFormat correctly 1`] = ` "
-
-
January 2025
@@ -4249,17 +4249,17 @@ exports[`Calendar > renders with weekdayFormat correctly 1`] = ` exports[`Calendar > renders without fixedWeeks correctly 1`] = ` "
-
-
January 2025
@@ -4404,13 +4404,13 @@ exports[`Calendar > renders without fixedWeeks correctly 1`] = ` exports[`Calendar > renders without monthControls correctly 1`] = ` "
-
January 2025
- @@ -4579,11 +4579,11 @@ exports[`Calendar > renders without monthControls correctly 1`] = ` exports[`Calendar > renders without yearControls correctly 1`] = ` "
- -
January 2025
diff --git a/test/components/__snapshots__/Carousel-vue.spec.ts.snap b/test/components/__snapshots__/Carousel-vue.spec.ts.snap index 0c0aed9a..2978c401 100644 --- a/test/components/__snapshots__/Carousel-vue.spec.ts.snap +++ b/test/components/__snapshots__/Carousel-vue.spec.ts.snap @@ -13,10 +13,10 @@ exports[`Carousel > renders with arrows correctly 1`] = `
-
@@ -105,10 +105,10 @@ exports[`Carousel > renders with next correctly 1`] = `
-
@@ -130,10 +130,10 @@ exports[`Carousel > renders with nextIcon correctly 1`] = `
-
@@ -171,10 +171,10 @@ exports[`Carousel > renders with prev correctly 1`] = `
-
@@ -196,10 +196,10 @@ exports[`Carousel > renders with prevIcon correctly 1`] = `
-
diff --git a/test/components/__snapshots__/Carousel.spec.ts.snap b/test/components/__snapshots__/Carousel.spec.ts.snap index 6f63dca7..5ef2bcc2 100644 --- a/test/components/__snapshots__/Carousel.spec.ts.snap +++ b/test/components/__snapshots__/Carousel.spec.ts.snap @@ -13,10 +13,10 @@ exports[`Carousel > renders with arrows correctly 1`] = `
-
@@ -105,10 +105,10 @@ exports[`Carousel > renders with next correctly 1`] = `
-
@@ -130,10 +130,10 @@ exports[`Carousel > renders with nextIcon correctly 1`] = `
-
@@ -171,10 +171,10 @@ exports[`Carousel > renders with prev correctly 1`] = `
-
@@ -196,10 +196,10 @@ exports[`Carousel > renders with prevIcon correctly 1`] = `
-
diff --git a/test/components/__snapshots__/CommandPalette-vue.spec.ts.snap b/test/components/__snapshots__/CommandPalette-vue.spec.ts.snap index f1534ef3..df65e173 100644 --- a/test/components/__snapshots__/CommandPalette-vue.spec.ts.snap +++ b/test/components/__snapshots__/CommandPalette-vue.spec.ts.snap @@ -74,7 +74,7 @@ exports[`CommandPalette > renders with class correctly 1`] = ` exports[`CommandPalette > renders with close correctly 1`] = ` "
-
+
@@ -142,7 +142,7 @@ exports[`CommandPalette > renders with close slot correctly 1`] = ` exports[`CommandPalette > renders with closeIcon correctly 1`] = ` "
-
+
diff --git a/test/components/__snapshots__/CommandPalette.spec.ts.snap b/test/components/__snapshots__/CommandPalette.spec.ts.snap index 4cf6a380..35de6264 100644 --- a/test/components/__snapshots__/CommandPalette.spec.ts.snap +++ b/test/components/__snapshots__/CommandPalette.spec.ts.snap @@ -74,7 +74,7 @@ exports[`CommandPalette > renders with class correctly 1`] = ` exports[`CommandPalette > renders with close correctly 1`] = ` "
-
@@ -145,7 +145,7 @@ exports[`CommandPalette > renders with close slot correctly 1`] = ` exports[`CommandPalette > renders with closeIcon correctly 1`] = ` "
-
diff --git a/test/components/__snapshots__/InputNumber-vue.spec.ts.snap b/test/components/__snapshots__/InputNumber-vue.spec.ts.snap index 9e316543..abc92f9b 100644 --- a/test/components/__snapshots__/InputNumber-vue.spec.ts.snap +++ b/test/components/__snapshots__/InputNumber-vue.spec.ts.snap @@ -2,11 +2,11 @@ exports[`InputNumber > renders with ariaLabel correctly 1`] = ` "
-
-
@@ -16,11 +16,11 @@ exports[`InputNumber > renders with ariaLabel correctly 1`] = ` exports[`InputNumber > renders with as correctly 1`] = ` "
-
-
@@ -30,11 +30,11 @@ exports[`InputNumber > renders with as correctly 1`] = ` exports[`InputNumber > renders with class correctly 1`] = ` "
-
-
@@ -44,7 +44,7 @@ exports[`InputNumber > renders with class correctly 1`] = ` exports[`InputNumber > renders with decrement slot correctly 1`] = ` "
-
@@ -55,11 +55,11 @@ exports[`InputNumber > renders with decrement slot correctly 1`] = ` exports[`InputNumber > renders with decrementIcon correctly 1`] = ` "
-
-
@@ -69,11 +69,11 @@ exports[`InputNumber > renders with decrementIcon correctly 1`] = ` exports[`InputNumber > renders with disabled correctly 1`] = ` "
-
-
@@ -84,7 +84,7 @@ exports[`InputNumber > renders with disabled correctly 1`] = ` exports[`InputNumber > renders with increment slot correctly 1`] = ` "
+
-
@@ -94,11 +94,11 @@ exports[`InputNumber > renders with increment slot correctly 1`] = ` exports[`InputNumber > renders with incrementIcon correctly 1`] = ` "
-
-
@@ -108,11 +108,11 @@ exports[`InputNumber > renders with incrementIcon correctly 1`] = ` exports[`InputNumber > renders with name correctly 1`] = ` "
-
-
@@ -122,11 +122,11 @@ exports[`InputNumber > renders with name correctly 1`] = ` exports[`InputNumber > renders with neutral variant ghost correctly 1`] = ` "
-
-
@@ -136,11 +136,11 @@ exports[`InputNumber > renders with neutral variant ghost correctly 1`] = ` exports[`InputNumber > renders with neutral variant none correctly 1`] = ` "
-
-
@@ -150,11 +150,11 @@ exports[`InputNumber > renders with neutral variant none correctly 1`] = ` exports[`InputNumber > renders with neutral variant outline correctly 1`] = ` "
-
-
@@ -164,11 +164,11 @@ exports[`InputNumber > renders with neutral variant outline correctly 1`] = ` exports[`InputNumber > renders with neutral variant soft correctly 1`] = ` "
-
-
@@ -178,11 +178,11 @@ exports[`InputNumber > renders with neutral variant soft correctly 1`] = ` exports[`InputNumber > renders with neutral variant subtle correctly 1`] = ` "
-
-
@@ -192,11 +192,11 @@ exports[`InputNumber > renders with neutral variant subtle correctly 1`] = ` exports[`InputNumber > renders with orientation vertical correctly 1`] = ` "
-
-
@@ -206,11 +206,11 @@ exports[`InputNumber > renders with orientation vertical correctly 1`] = ` exports[`InputNumber > renders with placeholder correctly 1`] = ` "
-
-
@@ -220,11 +220,11 @@ exports[`InputNumber > renders with placeholder correctly 1`] = ` exports[`InputNumber > renders with primary variant ghost correctly 1`] = ` "
-
-
@@ -234,11 +234,11 @@ exports[`InputNumber > renders with primary variant ghost correctly 1`] = ` exports[`InputNumber > renders with primary variant none correctly 1`] = ` "
-
-
@@ -248,11 +248,11 @@ exports[`InputNumber > renders with primary variant none correctly 1`] = ` exports[`InputNumber > renders with primary variant outline correctly 1`] = ` "
-
-
@@ -262,11 +262,11 @@ exports[`InputNumber > renders with primary variant outline correctly 1`] = ` exports[`InputNumber > renders with primary variant soft correctly 1`] = ` "
-
-
@@ -276,11 +276,11 @@ exports[`InputNumber > renders with primary variant soft correctly 1`] = ` exports[`InputNumber > renders with primary variant subtle correctly 1`] = ` "
-
-
@@ -290,11 +290,11 @@ exports[`InputNumber > renders with primary variant subtle correctly 1`] = ` exports[`InputNumber > renders with required correctly 1`] = ` "
-
-
@@ -304,11 +304,11 @@ exports[`InputNumber > renders with required correctly 1`] = ` exports[`InputNumber > renders with size lg correctly 1`] = ` "
-
-
@@ -318,11 +318,11 @@ exports[`InputNumber > renders with size lg correctly 1`] = ` exports[`InputNumber > renders with size md correctly 1`] = ` "
-
-
@@ -332,11 +332,11 @@ exports[`InputNumber > renders with size md correctly 1`] = ` exports[`InputNumber > renders with size sm correctly 1`] = ` "
-
-
@@ -346,11 +346,11 @@ exports[`InputNumber > renders with size sm correctly 1`] = ` exports[`InputNumber > renders with size xl correctly 1`] = ` "
-
-
@@ -360,11 +360,11 @@ exports[`InputNumber > renders with size xl correctly 1`] = ` exports[`InputNumber > renders with size xs correctly 1`] = ` "
-
-
@@ -374,11 +374,11 @@ exports[`InputNumber > renders with size xs correctly 1`] = ` exports[`InputNumber > renders with ui correctly 1`] = ` "
-
-
diff --git a/test/components/__snapshots__/InputNumber.spec.ts.snap b/test/components/__snapshots__/InputNumber.spec.ts.snap index 33d7b5fe..fce00bac 100644 --- a/test/components/__snapshots__/InputNumber.spec.ts.snap +++ b/test/components/__snapshots__/InputNumber.spec.ts.snap @@ -2,11 +2,11 @@ exports[`InputNumber > renders with ariaLabel correctly 1`] = ` "
-
-
@@ -16,11 +16,11 @@ exports[`InputNumber > renders with ariaLabel correctly 1`] = ` exports[`InputNumber > renders with as correctly 1`] = ` "
-
-
@@ -30,11 +30,11 @@ exports[`InputNumber > renders with as correctly 1`] = ` exports[`InputNumber > renders with class correctly 1`] = ` "
-
-
@@ -44,7 +44,7 @@ exports[`InputNumber > renders with class correctly 1`] = ` exports[`InputNumber > renders with decrement slot correctly 1`] = ` "
-
@@ -55,11 +55,11 @@ exports[`InputNumber > renders with decrement slot correctly 1`] = ` exports[`InputNumber > renders with decrementIcon correctly 1`] = ` "
-
-
@@ -69,11 +69,11 @@ exports[`InputNumber > renders with decrementIcon correctly 1`] = ` exports[`InputNumber > renders with disabled correctly 1`] = ` "
-
-
@@ -84,7 +84,7 @@ exports[`InputNumber > renders with disabled correctly 1`] = ` exports[`InputNumber > renders with increment slot correctly 1`] = ` "
+
-
@@ -94,11 +94,11 @@ exports[`InputNumber > renders with increment slot correctly 1`] = ` exports[`InputNumber > renders with incrementIcon correctly 1`] = ` "
-
-
@@ -108,11 +108,11 @@ exports[`InputNumber > renders with incrementIcon correctly 1`] = ` exports[`InputNumber > renders with name correctly 1`] = ` "
-
-
@@ -122,11 +122,11 @@ exports[`InputNumber > renders with name correctly 1`] = ` exports[`InputNumber > renders with neutral variant ghost correctly 1`] = ` "
-
-
@@ -136,11 +136,11 @@ exports[`InputNumber > renders with neutral variant ghost correctly 1`] = ` exports[`InputNumber > renders with neutral variant none correctly 1`] = ` "
-
-
@@ -150,11 +150,11 @@ exports[`InputNumber > renders with neutral variant none correctly 1`] = ` exports[`InputNumber > renders with neutral variant outline correctly 1`] = ` "
-
-
@@ -164,11 +164,11 @@ exports[`InputNumber > renders with neutral variant outline correctly 1`] = ` exports[`InputNumber > renders with neutral variant soft correctly 1`] = ` "
-
-
@@ -178,11 +178,11 @@ exports[`InputNumber > renders with neutral variant soft correctly 1`] = ` exports[`InputNumber > renders with neutral variant subtle correctly 1`] = ` "
-
-
@@ -192,11 +192,11 @@ exports[`InputNumber > renders with neutral variant subtle correctly 1`] = ` exports[`InputNumber > renders with orientation vertical correctly 1`] = ` "
-
-
@@ -206,11 +206,11 @@ exports[`InputNumber > renders with orientation vertical correctly 1`] = ` exports[`InputNumber > renders with placeholder correctly 1`] = ` "
-
-
@@ -220,11 +220,11 @@ exports[`InputNumber > renders with placeholder correctly 1`] = ` exports[`InputNumber > renders with primary variant ghost correctly 1`] = ` "
-
-
@@ -234,11 +234,11 @@ exports[`InputNumber > renders with primary variant ghost correctly 1`] = ` exports[`InputNumber > renders with primary variant none correctly 1`] = ` "
-
-
@@ -248,11 +248,11 @@ exports[`InputNumber > renders with primary variant none correctly 1`] = ` exports[`InputNumber > renders with primary variant outline correctly 1`] = ` "
-
-
@@ -262,11 +262,11 @@ exports[`InputNumber > renders with primary variant outline correctly 1`] = ` exports[`InputNumber > renders with primary variant soft correctly 1`] = ` "
-
-
@@ -276,11 +276,11 @@ exports[`InputNumber > renders with primary variant soft correctly 1`] = ` exports[`InputNumber > renders with primary variant subtle correctly 1`] = ` "
-
-
@@ -290,11 +290,11 @@ exports[`InputNumber > renders with primary variant subtle correctly 1`] = ` exports[`InputNumber > renders with required correctly 1`] = ` "
-
-
@@ -304,11 +304,11 @@ exports[`InputNumber > renders with required correctly 1`] = ` exports[`InputNumber > renders with size lg correctly 1`] = ` "
-
-
@@ -318,11 +318,11 @@ exports[`InputNumber > renders with size lg correctly 1`] = ` exports[`InputNumber > renders with size md correctly 1`] = ` "
-
-
@@ -332,11 +332,11 @@ exports[`InputNumber > renders with size md correctly 1`] = ` exports[`InputNumber > renders with size sm correctly 1`] = ` "
-
-
@@ -346,11 +346,11 @@ exports[`InputNumber > renders with size sm correctly 1`] = ` exports[`InputNumber > renders with size xl correctly 1`] = ` "
-
-
@@ -360,11 +360,11 @@ exports[`InputNumber > renders with size xl correctly 1`] = ` exports[`InputNumber > renders with size xs correctly 1`] = ` "
-
-
@@ -374,11 +374,11 @@ exports[`InputNumber > renders with size xs correctly 1`] = ` exports[`InputNumber > renders with ui correctly 1`] = ` "
-
-
diff --git a/test/components/__snapshots__/Modal-vue.spec.ts.snap b/test/components/__snapshots__/Modal-vue.spec.ts.snap index 409e3cc9..039b8bcf 100644 --- a/test/components/__snapshots__/Modal-vue.spec.ts.snap +++ b/test/components/__snapshots__/Modal-vue.spec.ts.snap @@ -12,7 +12,7 @@ exports[`Modal > renders with body slot correctly 1`] = `
-
@@ -37,7 +37,7 @@ exports[`Modal > renders with class correctly 1`] = `
-
@@ -84,7 +84,7 @@ exports[`Modal > renders with closeIcon correctly 1`] = `
-
@@ -123,7 +123,7 @@ exports[`Modal > renders with default slot correctly 1`] = `
-
@@ -148,7 +148,7 @@ exports[`Modal > renders with description correctly 1`] = `

Title

Description

-
@@ -173,7 +173,7 @@ exports[`Modal > renders with description slot correctly 1`] = `

Description slot

-
@@ -198,7 +198,7 @@ exports[`Modal > renders with footer slot correctly 1`] = `
-
@@ -223,7 +223,7 @@ exports[`Modal > renders with fullscreen correctly 1`] = `

Title

Description

-
@@ -265,7 +265,7 @@ exports[`Modal > renders with open correctly 1`] = `
-
@@ -290,7 +290,7 @@ exports[`Modal > renders with title correctly 1`] = `

Title

-
@@ -315,7 +315,7 @@ exports[`Modal > renders with title slot correctly 1`] = `

Title slot

-
@@ -340,7 +340,7 @@ exports[`Modal > renders with ui correctly 1`] = `
-
@@ -388,7 +388,7 @@ exports[`Modal > renders without overlay correctly 1`] = `

Title

Description

-
@@ -413,7 +413,7 @@ exports[`Modal > renders without transition correctly 1`] = `

Title

Description

-
diff --git a/test/components/__snapshots__/Modal.spec.ts.snap b/test/components/__snapshots__/Modal.spec.ts.snap index 594a5bd7..78666047 100644 --- a/test/components/__snapshots__/Modal.spec.ts.snap +++ b/test/components/__snapshots__/Modal.spec.ts.snap @@ -12,7 +12,7 @@ exports[`Modal > renders with body slot correctly 1`] = `
-
@@ -37,7 +37,7 @@ exports[`Modal > renders with class correctly 1`] = `
-
@@ -84,7 +84,7 @@ exports[`Modal > renders with closeIcon correctly 1`] = `
-
@@ -123,7 +123,7 @@ exports[`Modal > renders with default slot correctly 1`] = `
-
@@ -148,7 +148,7 @@ exports[`Modal > renders with description correctly 1`] = `

Title

Description

-
@@ -173,7 +173,7 @@ exports[`Modal > renders with description slot correctly 1`] = `

Description slot

-
@@ -198,7 +198,7 @@ exports[`Modal > renders with footer slot correctly 1`] = `
-
@@ -223,7 +223,7 @@ exports[`Modal > renders with fullscreen correctly 1`] = `

Title

Description

-
@@ -265,7 +265,7 @@ exports[`Modal > renders with open correctly 1`] = `
-
@@ -290,7 +290,7 @@ exports[`Modal > renders with title correctly 1`] = `

Title

-
@@ -315,7 +315,7 @@ exports[`Modal > renders with title slot correctly 1`] = `

Title slot

-
@@ -340,7 +340,7 @@ exports[`Modal > renders with ui correctly 1`] = `
-
@@ -388,7 +388,7 @@ exports[`Modal > renders without overlay correctly 1`] = `

Title

Description

-
@@ -413,7 +413,7 @@ exports[`Modal > renders without transition correctly 1`] = `

Title

Description

-
diff --git a/test/components/__snapshots__/Pagination-vue.spec.ts.snap b/test/components/__snapshots__/Pagination-vue.spec.ts.snap index 3227c841..497a770d 100644 --- a/test/components/__snapshots__/Pagination-vue.spec.ts.snap +++ b/test/components/__snapshots__/Pagination-vue.spec.ts.snap @@ -2,31 +2,31 @@ exports[`Pagination > renders with as correctly 1`] = ` "
-
@@ -35,31 +35,31 @@ exports[`Pagination > renders with as correctly 1`] = ` exports[`Pagination > renders with class correctly 1`] = ` "
@@ -148,7 +148,7 @@ exports[`Slideover > renders with default slot correctly 1`] = `
-
@@ -173,7 +173,7 @@ exports[`Slideover > renders with description correctly 1`] = `

Title

Description

-
@@ -198,7 +198,7 @@ exports[`Slideover > renders with description slot correctly 1`] = `

Description slot

-
@@ -223,7 +223,7 @@ exports[`Slideover > renders with footer slot correctly 1`] = `
-
@@ -265,7 +265,7 @@ exports[`Slideover > renders with left side correctly 1`] = `

Title

Description

-
@@ -290,7 +290,7 @@ exports[`Slideover > renders with open correctly 1`] = `
-
@@ -315,7 +315,7 @@ exports[`Slideover > renders with title correctly 1`] = `

Title

-
@@ -340,7 +340,7 @@ exports[`Slideover > renders with title slot correctly 1`] = `

Title slot

-
@@ -365,7 +365,7 @@ exports[`Slideover > renders with top side correctly 1`] = `

Title

Description

-
@@ -390,7 +390,7 @@ exports[`Slideover > renders with ui correctly 1`] = `
-
@@ -438,7 +438,7 @@ exports[`Slideover > renders without overlay correctly 1`] = `

Title

Description

-
@@ -463,7 +463,7 @@ exports[`Slideover > renders without transition correctly 1`] = `

Title

Description

-
diff --git a/test/components/__snapshots__/Slideover.spec.ts.snap b/test/components/__snapshots__/Slideover.spec.ts.snap index e2f05909..296e80cd 100644 --- a/test/components/__snapshots__/Slideover.spec.ts.snap +++ b/test/components/__snapshots__/Slideover.spec.ts.snap @@ -12,7 +12,7 @@ exports[`Slideover > renders with body slot correctly 1`] = `
-
@@ -37,7 +37,7 @@ exports[`Slideover > renders with bottom side correctly 1`] = `

Title

Description

-
@@ -62,7 +62,7 @@ exports[`Slideover > renders with class correctly 1`] = `
-
@@ -109,7 +109,7 @@ exports[`Slideover > renders with closeIcon correctly 1`] = `
-
@@ -148,7 +148,7 @@ exports[`Slideover > renders with default slot correctly 1`] = `
-
@@ -173,7 +173,7 @@ exports[`Slideover > renders with description correctly 1`] = `

Title

Description

-
@@ -198,7 +198,7 @@ exports[`Slideover > renders with description slot correctly 1`] = `

Description slot

-
@@ -223,7 +223,7 @@ exports[`Slideover > renders with footer slot correctly 1`] = `
-
@@ -265,7 +265,7 @@ exports[`Slideover > renders with left side correctly 1`] = `

Title

Description

-
@@ -290,7 +290,7 @@ exports[`Slideover > renders with open correctly 1`] = `
-
@@ -315,7 +315,7 @@ exports[`Slideover > renders with title correctly 1`] = `

Title

-
@@ -340,7 +340,7 @@ exports[`Slideover > renders with title slot correctly 1`] = `

Title slot

-
@@ -365,7 +365,7 @@ exports[`Slideover > renders with top side correctly 1`] = `

Title

Description

-
@@ -390,7 +390,7 @@ exports[`Slideover > renders with ui correctly 1`] = `
-
@@ -438,7 +438,7 @@ exports[`Slideover > renders without overlay correctly 1`] = `

Title

Description

-
@@ -463,7 +463,7 @@ exports[`Slideover > renders without transition correctly 1`] = `

Title

Description

-
diff --git a/test/components/__snapshots__/Table-vue.spec.ts.snap b/test/components/__snapshots__/Table-vue.spec.ts.snap index bf848e8a..6d621ad0 100644 --- a/test/components/__snapshots__/Table-vue.spec.ts.snap +++ b/test/components/__snapshots__/Table-vue.spec.ts.snap @@ -283,7 +283,7 @@ exports[`Table > renders with columns correctly 1`] = ` # Date Status - @@ -315,7 +315,7 @@ exports[`Table > renders with columns correctly 1`] = `
€316.00
-
@@ -346,7 +346,7 @@ exports[`Table > renders with columns correctly 1`] = `
€242.00
-
@@ -377,7 +377,7 @@ exports[`Table > renders with columns correctly 1`] = `
€837.00
-
@@ -408,7 +408,7 @@ exports[`Table > renders with columns correctly 1`] = `
€874.00
-
@@ -439,7 +439,7 @@ exports[`Table > renders with columns correctly 1`] = `
€721.00
-
@@ -526,7 +526,7 @@ exports[`Table > renders with empty slot correctly 1`] = ` # Date Status - @@ -1306,7 +1306,7 @@ exports[`Table > renders with loading slot correctly 1`] = ` # Date Status - diff --git a/test/components/__snapshots__/Table.spec.ts.snap b/test/components/__snapshots__/Table.spec.ts.snap index eb12408c..019b18c6 100644 --- a/test/components/__snapshots__/Table.spec.ts.snap +++ b/test/components/__snapshots__/Table.spec.ts.snap @@ -283,7 +283,7 @@ exports[`Table > renders with columns correctly 1`] = ` # Date Status - @@ -315,7 +315,7 @@ exports[`Table > renders with columns correctly 1`] = `
€316.00
-
@@ -346,7 +346,7 @@ exports[`Table > renders with columns correctly 1`] = `
€242.00
-
@@ -377,7 +377,7 @@ exports[`Table > renders with columns correctly 1`] = `
€837.00
-
@@ -408,7 +408,7 @@ exports[`Table > renders with columns correctly 1`] = `
€874.00
-
@@ -439,7 +439,7 @@ exports[`Table > renders with columns correctly 1`] = `
€721.00
-
@@ -526,7 +526,7 @@ exports[`Table > renders with empty slot correctly 1`] = ` # Date Status - @@ -1306,7 +1306,7 @@ exports[`Table > renders with loading slot correctly 1`] = ` # Date Status - diff --git a/test/components/__snapshots__/Toast-vue.spec.ts.snap b/test/components/__snapshots__/Toast-vue.spec.ts.snap index 1b846704..df8eb380 100644 --- a/test/components/__snapshots__/Toast-vue.spec.ts.snap +++ b/test/components/__snapshots__/Toast-vue.spec.ts.snap @@ -14,13 +14,13 @@ exports[`Toast > renders with actions correctly 1`] = `
Toast
-
- @@ -51,7 +51,7 @@ exports[`Toast > renders with as correctly 1`] = `
- @@ -81,7 +81,7 @@ exports[`Toast > renders with avatar correctly 1`] = `
- @@ -112,7 +112,7 @@ exports[`Toast > renders with class correctly 1`] = `
- @@ -171,7 +171,7 @@ exports[`Toast > renders with closeIcon correctly 1`] = `
- @@ -202,7 +202,7 @@ exports[`Toast > renders with color neutral correctly 1`] = `
- @@ -233,7 +233,7 @@ exports[`Toast > renders with description correctly 1`] = `
- @@ -264,7 +264,7 @@ exports[`Toast > renders with description slot correctly 1`] = `
- @@ -294,7 +294,7 @@ exports[`Toast > renders with icon correctly 1`] = `
- @@ -323,7 +323,7 @@ exports[`Toast > renders with leading slot correctly 1`] = `
- @@ -352,10 +352,10 @@ exports[`Toast > renders with orientation horizontal correctly 1`] = `
This is a toast
-
@@ -381,13 +381,13 @@ exports[`Toast > renders with orientation vertical correctly 1`] = `
Toast
This is a toast
-
- @@ -418,7 +418,7 @@ exports[`Toast > renders with title correctly 1`] = `
- @@ -449,7 +449,7 @@ exports[`Toast > renders with title slot correctly 1`] = `
- @@ -480,7 +480,7 @@ exports[`Toast > renders with type correctly 1`] = `
- @@ -511,7 +511,7 @@ exports[`Toast > renders with ui correctly 1`] = `
- diff --git a/test/components/__snapshots__/Toast.spec.ts.snap b/test/components/__snapshots__/Toast.spec.ts.snap index db60a47a..aacc90ed 100644 --- a/test/components/__snapshots__/Toast.spec.ts.snap +++ b/test/components/__snapshots__/Toast.spec.ts.snap @@ -14,13 +14,13 @@ exports[`Toast > renders with actions correctly 1`] = `
Toast
-
- @@ -51,7 +51,7 @@ exports[`Toast > renders with as correctly 1`] = `
- @@ -81,7 +81,7 @@ exports[`Toast > renders with avatar correctly 1`] = `
- @@ -112,7 +112,7 @@ exports[`Toast > renders with class correctly 1`] = `
- @@ -171,7 +171,7 @@ exports[`Toast > renders with closeIcon correctly 1`] = `
- @@ -202,7 +202,7 @@ exports[`Toast > renders with color neutral correctly 1`] = `
- @@ -233,7 +233,7 @@ exports[`Toast > renders with description correctly 1`] = `
- @@ -264,7 +264,7 @@ exports[`Toast > renders with description slot correctly 1`] = `
- @@ -294,7 +294,7 @@ exports[`Toast > renders with icon correctly 1`] = `
- @@ -323,7 +323,7 @@ exports[`Toast > renders with leading slot correctly 1`] = `
- @@ -352,10 +352,10 @@ exports[`Toast > renders with orientation horizontal correctly 1`] = `
This is a toast
-
@@ -381,13 +381,13 @@ exports[`Toast > renders with orientation vertical correctly 1`] = `
Toast
This is a toast
-
- @@ -418,7 +418,7 @@ exports[`Toast > renders with title correctly 1`] = `
- @@ -449,7 +449,7 @@ exports[`Toast > renders with title slot correctly 1`] = `
- @@ -480,7 +480,7 @@ exports[`Toast > renders with type correctly 1`] = `
- @@ -511,7 +511,7 @@ exports[`Toast > renders with ui correctly 1`] = `
-