UNPKG

oda-framework

Version:

It's an ES Progressive Framework based on the technology of Web Components and designed especially for creating custom UI/UX of any complexity for web and cross-platform PWA mobile applications.

29 lines (26 loc) 694 B
class odaAppLayout extends odaFormLayout { showTitle = false; hideHeader: boolean; autoCompact: boolean; compact: boolean; compactThreshold: number; appHeader: odaComponent; leftPanelElement: odaAppLayoutDrawer; rightPanelElement: odaAppLayoutDrawer; } class odaAppLayoutDrawer extends odaComponent{ pos: 'left' | 'right'; tabs: TabIte[]; controls: Array<DrawerControl>; focusedIndex: number; openedControl: DrawerControl; } type DrawerControl = odaComponent & { icon: string, label: string, order: number }; type TabItem = { icon: string, subIcon: string, label: string, title: string, order: number, $item: any };