| 1 | import { templateConditionalStyles } from './conditional-styles' |
| 2 | import { templateConfigs } from './configs' |
| 3 | import { templateLegacyRoutes, templateLegacyTitles } from './deprecated' |
| 4 | import { templateGlobalLayers } from './global-layers' |
| 5 | import { templateLayouts } from './layouts' |
| 6 | import { templateMonacoRunDeps } from './monaco-deps' |
| 7 | import { templateMonacoTypes } from './monaco-types' |
| 8 | import { templateNavControls } from './nav-controls' |
| 9 | import { templateSetups } from './setups' |
| 10 | import { templateSlides } from './slides' |
| 11 | import { templateTitleRenderer, templateTitleRendererMd } from './titles' |
| 12 | |
| 13 | export const templates = [ |
| 14 | templateMonacoTypes, |
| 15 | templateMonacoRunDeps, |
| 16 | templateConfigs, |
| 17 | templateConditionalStyles, |
| 18 | templateGlobalLayers, |
| 19 | templateNavControls, |
| 20 | templateSlides, |
| 21 | templateLayouts, |
| 22 | templateTitleRenderer, |
| 23 | templateTitleRendererMd, |
| 24 | ...templateSetups, |
| 25 | |
| 26 | // Deprecated |
| 27 | templateLegacyRoutes, |
| 28 | templateLegacyTitles, |
| 29 | ] |
| 30 |