diff --git a/src/theme/button.ts b/src/theme/button.ts index 41eaeb9f..c07154d3 100644 --- a/src/theme/button.ts +++ b/src/theme/button.ts @@ -86,51 +86,51 @@ export default (options: Required) => ({ compoundVariants: [...(options.theme.colors || []).map((color: string) => ({ color, variant: 'solid', - class: `text-inverted bg-${color} hover:bg-${color}/75 disabled:bg-${color} aria-disabled:bg-${color} focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-${color}` + class: `text-inverted bg-${color} hover:bg-${color}/75 active:bg-${color}/75 disabled:bg-${color} aria-disabled:bg-${color} focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-${color}` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'outline', - class: `ring ring-inset ring-${color}/50 text-${color} hover:bg-${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-${color}` + class: `ring ring-inset ring-${color}/50 text-${color} hover:bg-${color}/10 active:bg-${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-${color}` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'soft', - class: `text-${color} bg-${color}/10 hover:bg-${color}/15 focus:outline-none focus-visible:bg-${color}/15 disabled:bg-${color}/10 aria-disabled:bg-${color}/10` + class: `text-${color} bg-${color}/10 hover:bg-${color}/15 active:bg-${color}/15 focus:outline-none focus-visible:bg-${color}/15 disabled:bg-${color}/10 aria-disabled:bg-${color}/10` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'subtle', - class: `text-${color} ring ring-inset ring-${color}/25 bg-${color}/10 hover:bg-${color}/15 disabled:bg-${color}/10 aria-disabled:bg-${color}/10 focus:outline-none focus-visible:ring-2 focus-visible:ring-${color}` + class: `text-${color} ring ring-inset ring-${color}/25 bg-${color}/10 hover:bg-${color}/15 active:bg-${color}/15 disabled:bg-${color}/10 aria-disabled:bg-${color}/10 focus:outline-none focus-visible:ring-2 focus-visible:ring-${color}` })), ...(options.theme.colors || []).map((color: string) => ({ color, variant: 'ghost', - class: `text-${color} hover:bg-${color}/10 focus:outline-none focus-visible:bg-${color}/10 disabled:bg-transparent aria-disabled:bg-transparent dark:disabled:bg-transparent dark:aria-disabled:bg-transparent` + class: `text-${color} hover:bg-${color}/10 active:bg-${color}/10 focus:outline-none focus-visible:bg-${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-${color} hover:text-${color}/75 disabled:text-${color} aria-disabled:text-${color} focus:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-${color}` + class: `text-${color} hover:text-${color}/75 active:text-${color}/75 disabled:text-${color} aria-disabled:text-${color} focus:outline-none focus-visible:ring-2 focus-visible:ring-inset focus-visible:ring-${color}` })), { color: 'neutral', variant: 'solid', - class: 'text-inverted bg-inverted hover:bg-inverted/90 disabled:bg-inverted aria-disabled:bg-inverted focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-inverted' + class: 'text-inverted bg-inverted hover:bg-inverted/90 active:bg-inverted/90 disabled:bg-inverted aria-disabled:bg-inverted focus-visible:outline-2 focus-visible:outline-offset-2 focus-visible:outline-inverted' }, { color: 'neutral', variant: 'outline', - class: 'ring ring-inset ring-accented text-default bg-default hover:bg-elevated disabled:bg-default aria-disabled:bg-default focus:outline-none focus-visible:ring-2 focus-visible:ring-inverted' + class: 'ring ring-inset ring-accented text-default bg-default hover:bg-elevated active:bg-elevated disabled:bg-default aria-disabled:bg-default focus:outline-none focus-visible:ring-2 focus-visible:ring-inverted' }, { color: 'neutral', variant: 'soft', - class: 'text-default bg-elevated hover:bg-accented/75 focus:outline-none focus-visible:bg-accented/75 disabled:bg-elevated aria-disabled:bg-elevated' + class: 'text-default bg-elevated hover:bg-accented/75 active:bg-accented/75 focus:outline-none focus-visible:bg-accented/75 disabled:bg-elevated aria-disabled:bg-elevated' }, { color: 'neutral', variant: 'subtle', - class: 'ring ring-inset ring-accented text-default bg-elevated hover:bg-accented/75 disabled:bg-elevated aria-disabled:bg-elevated focus:outline-none focus-visible:ring-2 focus-visible:ring-inverted' + class: 'ring ring-inset ring-accented text-default bg-elevated hover:bg-accented/75 active:bg-accented/75 disabled:bg-elevated aria-disabled:bg-elevated focus:outline-none focus-visible:ring-2 focus-visible:ring-inverted' }, { color: 'neutral', variant: 'ghost', - class: 'text-default hover:bg-elevated focus:outline-none focus-visible:bg-elevated hover:disabled:bg-transparent dark:hover:disabled:bg-transparent hover:aria-disabled:bg-transparent dark:hover:aria-disabled:bg-transparent' + class: 'text-default hover:bg-elevated active:bg-elevated focus:outline-none focus-visible: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-muted hover:text-default disabled:text-muted aria-disabled:text-muted focus:outline-none focus-visible:ring-inset focus-visible:ring-2 focus-visible:ring-inverted' + class: 'text-muted hover:text-default active:text-default disabled:text-muted aria-disabled:text-muted focus:outline-none focus-visible:ring-inset focus-visible:ring-2 focus-visible:ring-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 35329022..e7d0206d 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 cc8f0fca..87e1976b 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 81e81068..ac85ef50 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 3c057700..c493eb1a 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 2220d4f6..83441a10 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 2220d4f6..83441a10 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 569fe1d9..3059b337 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 nextMonth correctly 1`] = ` "
-
-
January 2025
@@ -2138,17 +2138,17 @@ exports[`Calendar > renders with nextMonth correctly 1`] = ` exports[`Calendar > renders with nextYear correctly 1`] = ` "
-
-
January 2025
@@ -2316,17 +2316,17 @@ exports[`Calendar > renders with nextYear correctly 1`] = ` exports[`Calendar > renders with numberOfMonths correctly 1`] = ` "
-
-
January - February 2025
@@ -2647,17 +2647,17 @@ exports[`Calendar > renders with numberOfMonths correctly 1`] = ` exports[`Calendar > renders with prevMonth correctly 1`] = ` "
-
-
January 2025
@@ -2825,17 +2825,17 @@ exports[`Calendar > renders with prevMonth correctly 1`] = ` exports[`Calendar > renders with prevYear correctly 1`] = ` "
-
-
January 2025
@@ -3006,17 +3006,17 @@ exports[`Calendar > renders with range correctly 1`] = `
Event Date, January 2025
-
-
January 2025
@@ -3181,17 +3181,17 @@ exports[`Calendar > renders with range correctly 1`] = ` exports[`Calendar > renders with readonly correctly 1`] = ` "
-
-
January 2025
@@ -3359,17 +3359,17 @@ exports[`Calendar > renders with readonly correctly 1`] = ` exports[`Calendar > renders with size lg correctly 1`] = ` "
-
-
January 2025
@@ -3537,17 +3537,17 @@ exports[`Calendar > renders with size lg correctly 1`] = ` exports[`Calendar > renders with size md correctly 1`] = ` "
-
-
January 2025
@@ -3715,17 +3715,17 @@ exports[`Calendar > renders with size md correctly 1`] = ` exports[`Calendar > renders with size sm correctly 1`] = ` "
-
-
January 2025
@@ -3893,17 +3893,17 @@ exports[`Calendar > renders with size sm correctly 1`] = ` exports[`Calendar > renders with size xl correctly 1`] = ` "
-
-
January 2025
@@ -4071,17 +4071,17 @@ exports[`Calendar > renders with size xl correctly 1`] = ` exports[`Calendar > renders with size xs correctly 1`] = ` "
-
-
January 2025
@@ -4249,17 +4249,17 @@ exports[`Calendar > renders with size xs correctly 1`] = ` exports[`Calendar > renders with ui correctly 1`] = ` "
-
-
January 2025
@@ -4427,17 +4427,17 @@ exports[`Calendar > renders with ui correctly 1`] = ` exports[`Calendar > renders with week-day slot correctly 1`] = ` "
-
-
January 2025
@@ -4605,17 +4605,17 @@ exports[`Calendar > renders with week-day slot correctly 1`] = ` exports[`Calendar > renders with weekStartsOn correctly 1`] = ` "
-
-
January 2025
@@ -4783,17 +4783,17 @@ exports[`Calendar > renders with weekStartsOn correctly 1`] = ` exports[`Calendar > renders with weekdayFormat correctly 1`] = ` "
-
-
January 2025
@@ -4961,17 +4961,17 @@ exports[`Calendar > renders with weekdayFormat correctly 1`] = ` exports[`Calendar > renders without fixedWeeks correctly 1`] = ` "
-
-
January 2025
@@ -5116,13 +5116,13 @@ exports[`Calendar > renders without fixedWeeks correctly 1`] = ` exports[`Calendar > renders without monthControls correctly 1`] = ` "
-
January 2025
- @@ -5291,11 +5291,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 83df242f..478bc914 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 nextMonth correctly 1`] = ` "
-
-
January 2025
@@ -2138,17 +2138,17 @@ exports[`Calendar > renders with nextMonth correctly 1`] = ` exports[`Calendar > renders with nextYear correctly 1`] = ` "
-
-
January 2025
@@ -2316,17 +2316,17 @@ exports[`Calendar > renders with nextYear correctly 1`] = ` exports[`Calendar > renders with numberOfMonths correctly 1`] = ` "
-
-
January - February 2025
@@ -2647,17 +2647,17 @@ exports[`Calendar > renders with numberOfMonths correctly 1`] = ` exports[`Calendar > renders with prevMonth correctly 1`] = ` "
-
-
January 2025
@@ -2825,17 +2825,17 @@ exports[`Calendar > renders with prevMonth correctly 1`] = ` exports[`Calendar > renders with prevYear correctly 1`] = ` "
-
-
January 2025
@@ -3006,17 +3006,17 @@ exports[`Calendar > renders with range correctly 1`] = `
Event Date, January 2025
-
-
January 2025
@@ -3181,17 +3181,17 @@ exports[`Calendar > renders with range correctly 1`] = ` exports[`Calendar > renders with readonly correctly 1`] = ` "
-
-
January 2025
@@ -3359,17 +3359,17 @@ exports[`Calendar > renders with readonly correctly 1`] = ` exports[`Calendar > renders with size lg correctly 1`] = ` "
-
-
January 2025
@@ -3537,17 +3537,17 @@ exports[`Calendar > renders with size lg correctly 1`] = ` exports[`Calendar > renders with size md correctly 1`] = ` "
-
-
January 2025
@@ -3715,17 +3715,17 @@ exports[`Calendar > renders with size md correctly 1`] = ` exports[`Calendar > renders with size sm correctly 1`] = ` "
-
-
January 2025
@@ -3893,17 +3893,17 @@ exports[`Calendar > renders with size sm correctly 1`] = ` exports[`Calendar > renders with size xl correctly 1`] = ` "
-
-
January 2025
@@ -4071,17 +4071,17 @@ exports[`Calendar > renders with size xl correctly 1`] = ` exports[`Calendar > renders with size xs correctly 1`] = ` "
-
-
January 2025
@@ -4249,17 +4249,17 @@ exports[`Calendar > renders with size xs correctly 1`] = ` exports[`Calendar > renders with ui correctly 1`] = ` "
-
-
January 2025
@@ -4427,17 +4427,17 @@ exports[`Calendar > renders with ui correctly 1`] = ` exports[`Calendar > renders with week-day slot correctly 1`] = ` "
-
-
January 2025
@@ -4605,17 +4605,17 @@ exports[`Calendar > renders with week-day slot correctly 1`] = ` exports[`Calendar > renders with weekStartsOn correctly 1`] = ` "
-
-
January 2025
@@ -4783,17 +4783,17 @@ exports[`Calendar > renders with weekStartsOn correctly 1`] = ` exports[`Calendar > renders with weekdayFormat correctly 1`] = ` "
-
-
January 2025
@@ -4961,17 +4961,17 @@ exports[`Calendar > renders with weekdayFormat correctly 1`] = ` exports[`Calendar > renders without fixedWeeks correctly 1`] = ` "
-
-
January 2025
@@ -5116,13 +5116,13 @@ exports[`Calendar > renders without fixedWeeks correctly 1`] = ` exports[`Calendar > renders without monthControls correctly 1`] = ` "
-
January 2025
- @@ -5291,11 +5291,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 3111b383..bc18e3a0 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 c2563251..7041f9eb 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 c77e87c7..a29f3fdb 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`] = ` "
-
+