@spaced-out/ui-design-system
Version:
Sense UI components library
238 lines • 5.74 kB
TypeScript
import * as React from 'react';
import type { WeekdayPickerProps } from './';
declare const _default: {
title: string;
component: import("flow-to-typescript-codemod").Flow.AbstractComponent<WeekdayPickerProps, HTMLDivElement>;
tags: string[];
argTypes: {
size: {
description: string;
control: {
type: string;
};
options: string[];
table: {
type: {
summary: string;
};
defaultValue: {
summary: string;
};
};
};
selectedWeekDays: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
};
};
hiddenWeekDays: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
};
};
disabledWeekDays: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
};
};
customDayLabels: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
};
};
showWeekends: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
defaultValue: {
summary: boolean;
};
};
};
readOnly: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
defaultValue: {
summary: boolean;
};
};
};
disableMultiSelect: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
defaultValue: {
summary: boolean;
};
};
};
onChange: {
description: string;
action: string;
table: {
type: {
summary: string;
};
};
};
label: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
};
};
helperText: {
description: string;
control: {
type: string;
};
table: {
type: {
summary: string;
};
};
};
};
parameters: {
docs: {
subtitle: string;
description: {
component: string;
};
};
storySource: {
componentPath: string;
};
};
};
export default _default;
export declare const _WithWeekendDisabled: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
selectedWeekDays: {
key: string;
label: string;
}[];
disabledWeekDays: string[];
showWeekends: boolean;
label: string;
helperText: string;
};
};
export declare const _WithCustomLabels: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
customDayLabels: {
key: string;
label: string;
}[];
showWeekends: boolean;
};
};
export declare const _WithoutWeekends: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
showWeekends: boolean;
};
};
export declare const _ReadOnly: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
readOnly: boolean;
selectedWeekDays: {
key: string;
label: string;
}[];
showWeekends: boolean;
};
};
export declare const _MultipleSelection: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
showWeekends: boolean;
};
};
export declare const _DisabledWeekDays: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
showWeekends: boolean;
disabledWeekDays: string[];
};
};
export declare const _SingleSelection: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
showWeekends: boolean;
};
};
export declare const _WithHiddenDays: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
showWeekends: boolean;
hiddenWeekDays: string[];
};
};
export declare const _WithWeekdayNames: {
(args: WeekdayPickerProps): React.JSX.Element;
args: {
size: string;
customDayLabels: {
key: string;
label: string;
secondaryLabel: string;
}[];
};
};
//# sourceMappingURL=WeekdayPicker.stories.d.ts.map