diff --git a/frontend/.storybook/main.ts b/frontend/.storybook/main.ts index b362a0cf7..44b64f29e 100644 --- a/frontend/.storybook/main.ts +++ b/frontend/.storybook/main.ts @@ -1,5 +1,4 @@ import type { StorybookConfig } from '@storybook/types'; - const config: StorybookConfig = { stories: [ '../src/components/**/*.mdx', @@ -13,6 +12,8 @@ const config: StorybookConfig = { framework: { name: '@storybook/vue3-vite', }, + docs: { + autodocs: false, + }, }; - module.exports = config; diff --git a/frontend/src/components/QuestionCandidateFilter.vue b/frontend/src/components/QuestionCandidateFilter.vue new file mode 100644 index 000000000..ae77a5473 --- /dev/null +++ b/frontend/src/components/QuestionCandidateFilter.vue @@ -0,0 +1,77 @@ + + + + diff --git a/frontend/src/components/QuestionCard.vue b/frontend/src/components/QuestionCard.vue index c374f661e..96169ec14 100644 --- a/frontend/src/components/QuestionCard.vue +++ b/frontend/src/components/QuestionCard.vue @@ -1,7 +1,6 @@ + + + diff --git a/frontend/src/components/design-system/containers/CardComponent.vue b/frontend/src/components/design-system/containers/CardComponent.vue index 3d542077c..d067f9cea 100644 --- a/frontend/src/components/design-system/containers/CardComponent.vue +++ b/frontend/src/components/design-system/containers/CardComponent.vue @@ -22,10 +22,8 @@ const props = withDefaults(defineProps(), { backgroundColor: 'rgb(var(--color-neutral-bg-container))', border: false, borderKind: 'normal', - // eslint-disable-next-line vue/require-valid-default-prop borderRadius: 'small', - // eslint-disable-next-line vue/require-valid-default-prop - padding: 'medium', + padding: Object('medium') as Props['padding'], responsive: true, shadow: false, }); diff --git a/frontend/src/components/design-system/input/PillGroupComponent.stories.ts b/frontend/src/components/design-system/input/PillGroupComponent.stories.ts index 1ad1be630..c70f6b98c 100644 --- a/frontend/src/components/design-system/input/PillGroupComponent.stories.ts +++ b/frontend/src/components/design-system/input/PillGroupComponent.stories.ts @@ -29,6 +29,7 @@ export const PillGroup: StoryFn = (args) => ({ diff --git a/frontend/src/components/design-system/input/PillGroupItemComponent.vue b/frontend/src/components/design-system/input/PillGroupItemComponent.vue index 510163295..a7a58a78a 100644 --- a/frontend/src/components/design-system/input/PillGroupItemComponent.vue +++ b/frontend/src/components/design-system/input/PillGroupItemComponent.vue @@ -1,19 +1,32 @@