| 123456789101112131415161718192021222324252627282930313233343536 |
- import { Story } from "@storybook/web-components";
- import { IEvent } from "../Event";
- import { IRessource } from "../Ressource";
- import { UnitLegend } from "../Timeline";
- declare const _default: {
- title: string;
- component: string;
- argTypes: {
- start: {
- control: {
- type: string;
- };
- };
- end: {
- control: {
- type: string;
- };
- };
- };
- };
- export default _default;
- interface TimelineProps {
- start: string;
- end: string;
- slotduration: number;
- legendSpan?: number;
- slotWidth?: number;
- legendFormat?: Partial<UnitLegend>;
- ressources?: Array<IRessource>;
- events?: Array<IEvent>;
- }
- export declare const Generic: Story<TimelineProps>;
- export declare const Week: Story<TimelineProps>;
- export declare const NestedRessource: Story<TimelineProps>;
- export declare const WithEvents: Story<TimelineProps>;
- export declare const Rainbow: Story<TimelineProps>;
|