-
-
-
+
diff --git a/app/components/Radio/Base.vue b/app/components/Radio/Base.vue
new file mode 100644
index 000000000..46d3d33d8
--- /dev/null
+++ b/app/components/Radio/Base.vue
@@ -0,0 +1,63 @@
+
+
+
+
+
diff --git a/app/components/Tag/RadioButton.vue b/app/components/Tag/RadioButton.vue
deleted file mode 100644
index aa3778cbd..000000000
--- a/app/components/Tag/RadioButton.vue
+++ /dev/null
@@ -1,45 +0,0 @@
-
-
-
-
-
-
-
-
diff --git a/app/pages/compare.vue b/app/pages/compare.vue
index 9f7d7e5a7..5f6383413 100644
--- a/app/pages/compare.vue
+++ b/app/pages/compare.vue
@@ -164,30 +164,17 @@ useSeoMeta({
-
-
- {{ $t('compare.packages.section_facets') }}
-
-
- {{ $t('compare.facets.all') }}
-
- /
-
- {{ $t('compare.facets.none') }}
-
-
+
+ {{ $t('compare.packages.section_facets') }}
+
+
diff --git a/test/nuxt/a11y.spec.ts b/test/nuxt/a11y.spec.ts
index 23ffb915a..e3077dd76 100644
--- a/test/nuxt/a11y.spec.ts
+++ b/test/nuxt/a11y.spec.ts
@@ -183,7 +183,7 @@ import {
SettingsBgThemePicker,
SettingsToggle,
TagStatic,
- TagRadioButton,
+ RadioBase,
TerminalExecute,
TerminalInstall,
TooltipAnnounce,
@@ -430,9 +430,9 @@ describe('component accessibility audits', () => {
})
})
- describe('TagRadioButton', () => {
+ describe('RadioBase', () => {
it('should have no accessibility violations', async () => {
- const component = await mountSuspended(TagRadioButton, {
+ const component = await mountSuspended(RadioBase, {
props: { value: 'option1', modelValue: 'option2' },
slots: { default: 'Tag content' },
})
@@ -441,7 +441,7 @@ describe('component accessibility audits', () => {
})
it('should have no accessibility violations when checked', async () => {
- const component = await mountSuspended(TagRadioButton, {
+ const component = await mountSuspended(RadioBase, {
props: { value: 'option1', modelValue: 'option1' },
slots: { default: 'Tag content' },
})
@@ -450,7 +450,7 @@ describe('component accessibility audits', () => {
})
it('should have no accessibility violations when disabled', async () => {
- const component = await mountSuspended(TagRadioButton, {
+ const component = await mountSuspended(RadioBase, {
props: { value: 'option1', modelValue: 'option2', disabled: true },
slots: { default: 'Tag content' },
})