calcom/components/ui/Text/index.ts
Femi Odugbesan 45689059c7
Feat/cal 95/date range on event types (#353)
* add edit links to events on dashboard

* fit elements on screen for mobile

* initialize components for consistent text styles

* add more fine grained width/height settings

* add higher level setting for when an event is available

- db: add supporting values to period allow setting an amount of days,
 a range, or unlimited number days an event is available

* fix issue where periodDates are null

* return minimal required data, handle date parsing

* [ui] limit booking days based on user period settings

* api: validate user period settings

* [db] migration for event type period settings
2021-07-15 09:10:26 -05:00

39 lines
728 B
TypeScript

import Text from "./Text";
export { Text };
export default Text;
import Title from "./Title";
export { Title };
import Title2 from "./Title2";
export { Title2 };
import Title3 from "./Title3";
export { Title3 };
import Largetitle from "./Largetitle";
export { Largetitle };
import Subtitle from "./Subtitle";
export { Subtitle };
import Headline from "./Headline";
export { Headline };
import Subheadline from "./Subheadline";
export { Subheadline };
import Caption from "./Caption";
export { Caption };
import Caption2 from "./Caption2";
export { Caption2 };
import Footnote from "./Footnote";
export { Footnote };
import Overline from "./Overline";
export { Overline };
import Body from "./Body";
export { Body };