diff --git a/packages/sdds-cs/api/sdds-cs.api.md b/packages/sdds-cs/api/sdds-cs.api.md index 4fa6071eb2..4f1d48e0bf 100644 --- a/packages/sdds-cs/api/sdds-cs.api.md +++ b/packages/sdds-cs/api/sdds-cs.api.md @@ -798,10 +798,7 @@ view: { default: PolymorphicClassName; }; size: { -l: PolymorphicClassName; -m: PolymorphicClassName; s: PolymorphicClassName; -xs: PolymorphicClassName; }; }> & Calendar_2 & CalendarConfigProps & RefAttributes>; @@ -816,10 +813,7 @@ view: { default: PolymorphicClassName; }; size: { -l: PolymorphicClassName; -m: PolymorphicClassName; s: PolymorphicClassName; -xs: PolymorphicClassName; }; }> & Calendar_2 & CalendarConfigProps & RefAttributes>; diff --git a/packages/sdds-cs/src/components/Calendar/Calendar.stories.tsx b/packages/sdds-cs/src/components/Calendar/Calendar.stories.tsx index a8252d530f..806b0315d8 100644 --- a/packages/sdds-cs/src/components/Calendar/Calendar.stories.tsx +++ b/packages/sdds-cs/src/components/Calendar/Calendar.stories.tsx @@ -27,7 +27,7 @@ const meta: Meta = { }, }, size: { - options: ['l', 'm', 's', 'xs'], + options: ['s'], control: { type: 'inline-radio', }, @@ -124,7 +124,7 @@ export const Default: StoryObj = { isDouble: false, isRange: false, includeEdgeDates: false, - size: 'm', + size: 's', }, render: (args) => , }; @@ -207,7 +207,7 @@ export const Base: StoryObj = { ...disableProps(['isRange', 'isDouble']), }, args: { - size: 'm', + size: 's', min: defaultMinDate, max: defaultMaxDate, includeEdgeDates: false, @@ -294,7 +294,7 @@ export const Range: StoryObj