UNPKG

framework7

Version:

Full featured mobile HTML framework for building iOS & Android apps

198 lines (186 loc) 6.11 kB
/** * Framework7 5.0.4 * Full featured mobile HTML framework for building iOS & Android apps * http://framework7.io/ * * Copyright 2014-2019 Vladimir Kharlampidi * * Released under the MIT License * * Released on: October 9, 2019 */ import Template7 from 'template7'; import $ from 'dom7'; // F7 Class import Framework7 from './components/app/app-class'; // Import Helpers import Request from './utils/request'; import Utils from './utils/utils'; import Support from './utils/support'; import Device from './utils/device'; // Core Modules import DeviceModule from './modules/device/device'; import SupportModule from './modules/support/support'; import UtilsModule from './modules/utils/utils'; import ResizeModule from './modules/resize/resize'; import RequestModule from './modules/request/request'; import TouchModule from './modules/touch/touch'; import ClicksModule from './modules/clicks/clicks'; import RouterModule from './modules/router/router'; import RouterTemplateLoaderModule from './modules/router/template-loader'; //NO_LITE import RouterComponentLoaderModule from './modules/router/component-loader'; //NO_LITE import ComponentModule, { Component } from './modules/component/component'; //NO_LITE import HistoryModule from './modules/history/history'; import ServiceWorkerModule from './modules/service-worker/service-worker'; // Core Components import Statusbar from './components/statusbar/statusbar'; import View from './components/view/view'; import Navbar from './components/navbar/navbar'; import Toolbar from './components/toolbar/toolbar'; import Subnavbar from './components/subnavbar/subnavbar'; import TouchRipple from './components/touch-ripple/touch-ripple'; import Modal from './components/modal/modal'; import Router from './modules/router/router-class';//NO_LITE import Appbar from './components/appbar/appbar'; import Dialog from './components/dialog/dialog'; import Popup from './components/popup/popup'; import LoginScreen from './components/login-screen/login-screen'; import Popover from './components/popover/popover'; import Actions from './components/actions/actions'; import Sheet from './components/sheet/sheet'; import Toast from './components/toast/toast'; import Preloader from './components/preloader/preloader'; import Progressbar from './components/progressbar/progressbar'; import Sortable from './components/sortable/sortable'; import Swipeout from './components/swipeout/swipeout'; import Accordion from './components/accordion/accordion'; import ContactsList from './components/contacts-list/contacts-list'; import VirtualList from './components/virtual-list/virtual-list'; import ListIndex from './components/list-index/list-index'; import Timeline from './components/timeline/timeline'; import Tabs from './components/tabs/tabs'; import Panel from './components/panel/panel'; import Card from './components/card/card'; import Chip from './components/chip/chip'; import Form from './components/form/form'; import Input from './components/input/input'; import Checkbox from './components/checkbox/checkbox'; import Radio from './components/radio/radio'; import Toggle from './components/toggle/toggle'; import Range from './components/range/range'; import Stepper from './components/stepper/stepper'; import SmartSelect from './components/smart-select/smart-select'; import Grid from './components/grid/grid'; import Calendar from './components/calendar/calendar'; import Picker from './components/picker/picker'; import InfiniteScroll from './components/infinite-scroll/infinite-scroll'; import PullToRefresh from './components/pull-to-refresh/pull-to-refresh'; import Lazy from './components/lazy/lazy'; import DataTable from './components/data-table/data-table'; import Fab from './components/fab/fab'; import Searchbar from './components/searchbar/searchbar'; import Messages from './components/messages/messages'; import Messagebar from './components/messagebar/messagebar'; import Swiper from './components/swiper/swiper'; import PhotoBrowser from './components/photo-browser/photo-browser'; import Notification from './components/notification/notification'; import Autocomplete from './components/autocomplete/autocomplete'; import Tooltip from './components/tooltip/tooltip'; import Gauge from './components/gauge/gauge'; import Skeleton from './components/skeleton/skeleton'; import Menu from './components/menu/menu'; import ColorPicker from './components/color-picker/color-picker'; import Treeview from './components/treeview/treeview'; import TextEditor from './components/text-editor/text-editor'; import Elevation from './components/elevation/elevation'; import Typography from './components/typography/typography'; import Vi from './components/vi/vi'; if ("es" !== 'es') { if (typeof window !== 'undefined') { // Template7 if (!window.Template7) window.Template7 = Template7; // Dom7 if (!window.Dom7) window.Dom7 = $; } } // Install Core Modules & Components Router.use([ //NO_LITE RouterTemplateLoaderModule, //NO_LITE RouterComponentLoaderModule, //NO_LITE ]); //NO_LITE Framework7.use([ DeviceModule, SupportModule, UtilsModule, ResizeModule, RequestModule, TouchModule, ClicksModule, RouterModule, HistoryModule, ComponentModule, //NO_LITE ServiceWorkerModule, Statusbar, View, Navbar, Toolbar, Subnavbar, TouchRipple, Modal, Appbar, Dialog, Popup, LoginScreen, Popover, Actions, Sheet, Toast, Preloader, Progressbar, Sortable, Swipeout, Accordion, ContactsList, VirtualList, ListIndex, Timeline, Tabs, Panel, Card, Chip, Form, Input, Checkbox, Radio, Toggle, Range, Stepper, SmartSelect, Grid, Calendar, Picker, InfiniteScroll, PullToRefresh, Lazy, DataTable, Fab, Searchbar, Messages, Messagebar, Swiper, PhotoBrowser, Notification, Autocomplete, Tooltip, Gauge, Skeleton, Menu, ColorPicker, Treeview, TextEditor, Elevation, Typography, Vi ]); export { Template7, $ as Dom7, Request, Utils, Device, Support, Component }; export default Framework7;