diff --git a/.github/workflows/add-screenshots.yml b/.github/workflows/add-screenshots.yml index f643295d..a68c81be 100644 --- a/.github/workflows/add-screenshots.yml +++ b/.github/workflows/add-screenshots.yml @@ -130,10 +130,6 @@ jobs: }); console.log(JSON.stringify(files)); - if (files.length === 0) { - files.push('Button'); - files.push(await getAllComponents()); - } return files; result-encoding: json debug: true @@ -216,5 +212,4 @@ jobs: with: commit_message: Added Missing Screenshots branch: ${{ env.GITHUB_REF_NAME }} - file_pattern: '*.png' - skip_dirty_check: true \ No newline at end of file + file_pattern: '*.png' \ No newline at end of file diff --git a/src/button/Button.stories.ts b/src/button/Button.stories.ts index 49108efc..30d97bbf 100644 --- a/src/button/Button.stories.ts +++ b/src/button/Button.stories.ts @@ -14,27 +14,6 @@ import '../icon/Icon.js'; const buttonOptions = ['primary', 'secondary', 'clear', 'white'] as const; const slotPositionOptions = ['left', 'top', 'right', 'bottom'] as const; -export default { - title: 'UI Components/Button', - component: 'omni-button', - argTypes: { - type: { - control: 'radio', - options: buttonOptions - }, - slotPosition: { - control: 'radio', - options: slotPositionOptions - }, - 'slot-position': { - control: false - }, - '[Default Slot]': { - control: 'text' - } - } -} as CSFIdentifier; - interface Args { type: (typeof buttonOptions)[number]; label: string; diff --git a/src/calendar/Calendar.stories.ts b/src/calendar/Calendar.stories.ts index 3a2757ed..cc0bff44 100644 --- a/src/calendar/Calendar.stories.ts +++ b/src/calendar/Calendar.stories.ts @@ -9,11 +9,6 @@ import { Calendar } from './Calendar'; import './Calendar.js'; -export default { - title: 'UI Components/Calendar', - component: 'omni-calendar' -} as CSFIdentifier; - interface Args { locale: string; value: string;