intial commit

Signed-off-by: Dominik Csapak <d.csapak@proxmox.com>
This commit is contained in:
Dominik Csapak 2019-02-14 13:52:59 +01:00
commit 5309fbda78
55 changed files with 189819 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
*.tar.gz
build/

60
Makefile Normal file
View File

@ -0,0 +1,60 @@
include defines.mk
PKGVER != dpkg-parsechangelog -S version
all: $(DEB)
DEB=${PACKAGE}_${PKGVER}_all.deb
.PHONY: deb
deb: $(DEB)
$(DEB):
rm -rf build
rsync -a ./* build/
cd build; dpkg-buildpackage -b -us -uc
lintian $(DEB)
install:
install -d ${CSSDIR}
install -d ${JSDIR}
install -d ${FONTDIR}
make -C ${F7DIR} install
make -C ${F7ICONSDIR} install
make -C ${MATERIALDIR} install
.PHONY: framework7
framework7:
wget ${F7URL} -O framework7.tar.gz.tmp
mv framework7.tar.gz.tmp framework7.tar.gz
mkdir -p ${F7DIR}.tmp
tar -xf framework7.tar.gz -C ${F7DIR}.tmp
cp -ar ${F7DIR}.tmp/js ${F7DIR}/
cp -ar ${F7DIR}.tmp/css ${F7DIR}/
rm framework7.tar.gz
rm -rf ${F7DIR}.tmp
.PHONY: framework7-icons
framework7-icons:
wget ${F7ICONSURL} -O f7icons.tar.gz.tmp
mv f7icons.tar.gz.tmp f7icons.tar.gz
tar -xf f7icons.tar.gz
cp -rf ${F7ICONSDIR}-${F7ICONSVER}/css ${F7ICONSDIR}/
cp -rf ${F7ICONSDIR}-${F7ICONSVER}/fonts ${F7ICONSDIR}/
rm -rf ${F7ICONSDIR}-${F7ICONSVER}
rm f7icons.tar.gz
.PHONY: material-icons
material-icons:
mkdir -p ${MATERIALDIR}
for i in ${MATERIALFONTS} ${MATERIALCSS}; do \
wget ${MATERIALURL}/$$i -O material-icons/$$i.tmp; \
mv material-icons/$$i.tmp material-icons/$$i; \
done
.PHONY: download
download: framework7 framework7-icons material-icons
.PHONY: clean
clean:
rm -rf *.tar.gz build/ *.deb *.buildinfo *.changes

5
debian/changelog vendored Normal file
View File

@ -0,0 +1,5 @@
libjs-framework7 (4.0.5-1) UNRELEASED; urgency=medium
* initial import
-- Proxmox Support Team <support@proxmox.com> Wed, 25 Jan 2017 17:41:16 +0100

1
debian/compat vendored Normal file
View File

@ -0,0 +1 @@
10

13
debian/control vendored Normal file
View File

@ -0,0 +1,13 @@
Source: libjs-framework7
Section: web
Priority: optional
Maintainer: Proxmox Support Team <support@proxmox.com>
Build-Depends: debhelper (>= 10~)
Standards-Version: 3.9.8
Homepage: https://framework7.io/
Package: libjs-framework7
Architecture: all
Depends: ${misc:Depends}
Description: cross-browser JavaScript library
Full Featured Mobile HTML Framework For Building iOS & Android Apps

49
debian/copyright vendored Normal file
View File

@ -0,0 +1,49 @@
Format: http://www.debian.org/doc/packaging-manuals/copyright-format/1.0/
Upstream-Name: Framework7
Source: https://github.com/framework7io/framework7
Files: framework7/*
Copyright: (c) 2014,Vladimir Kharlampidi
License: MIT
Files: framework7-icons/*
Copyright: (c) 2014,Vladimir Kharlampidi
License: MIT
Files: material-icons/*
Copyright: (c) Google Inc.
License: Apache-2.0
License: MIT
Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the Software is furnished to do so,
subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
License: Apache-2.0
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
On Debian systems, the full text of the Apache Software License version 2 can
be found in the file `/usr/share/common-licenses/Apache-2.0'.

2
debian/files vendored Normal file
View File

@ -0,0 +1,2 @@
libjs-framework7_4.0.0-1_all.deb web optional
libjs-framework7_4.0.0-1_amd64.buildinfo web optional

21
debian/patches/change-font-url.patch vendored Normal file
View File

@ -0,0 +1,21 @@
Index: framework7/material-icons/material-icons.css
===================================================================
--- framework7.orig/material-icons/material-icons.css
+++ framework7/material-icons/material-icons.css
@@ -2,12 +2,12 @@
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
- src: url(MaterialIcons-Regular.eot); /* For IE6-8 */
+ src: url(../fonts/MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
- url(MaterialIcons-Regular.woff2) format('woff2'),
- url(MaterialIcons-Regular.woff) format('woff'),
- url(MaterialIcons-Regular.ttf) format('truetype');
+ url(../fonts/MaterialIcons-Regular.woff2) format('woff2'),
+ url(../fonts/MaterialIcons-Regular.woff) format('woff'),
+ url(../fonts/MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {

1
debian/patches/series vendored Normal file
View File

@ -0,0 +1 @@
change-font-url.patch

4
debian/rules vendored Executable file
View File

@ -0,0 +1,4 @@
#!/usr/bin/make -f
%:
dh ${@} --with-quilt

1
debian/source/format vendored Normal file
View File

@ -0,0 +1 @@
3.0 (quilt)

26
defines.mk Normal file
View File

@ -0,0 +1,26 @@
PACKAGE := libjs-framework7
PREFIX := /usr
DATAROOTDIR := ${PREFIX}/share
TARGETDIR := ${DATAROOTDIR}/javascript/framework7
CSSDIR := ${DESTDIR}/${TARGETDIR}/css
JSDIR := ${DESTDIR}/${TARGETDIR}/js
FONTDIR := ${DESTDIR}/${TARGETDIR}/fonts
F7DIR := framework7
F7VER := 4.0.5
F7URL := https://github.com/framework7io/framework7/releases/download/v${F7VER}/framework7.tar.gz
F7ICONSDIR := framework7-icons
F7ICONSVER := 2.2.0
F7ICONSURL := https://github.com/framework7io/framework7-icons/archive/v${F7ICONSVER}.tar.gz
MATERIALDIR := material-icons
MATERIALVER := 3.0.1
MATERIALURL := https://github.com/google/material-design-icons/raw/${MATERIALVER}/iconfont
MATERIALFONTS := MaterialIcons-Regular.ttf \
MaterialIcons-Regular.woff \
MaterialIcons-Regular.woff2
MATERIALCSS := material-icons.css

View File

@ -0,0 +1,9 @@
include ../defines.mk
all:
install:
install -d ${CSSDIR}
install -d ${FONTDIR}
install -Dm 644 css/*.css ${CSSDIR}
install -Dm 644 fonts/* ${FONTDIR}

View File

@ -0,0 +1,31 @@
@font-face {
font-family: 'Framework7 Icons';
font-style: normal;
font-weight: 400;
src: url("../fonts/Framework7Icons-Regular.eot");
src: url("../fonts/Framework7Icons-Regular.woff2") format("woff2"),
url("../fonts/Framework7Icons-Regular.woff") format("woff"),
url("../fonts/Framework7Icons-Regular.ttf") format("truetype");
}
.f7-icons, .framework7-icons {
font-family: 'Framework7 Icons';
font-weight: normal;
font-style: normal;
font-size: 28px;
line-height: 1;
letter-spacing: normal;
text-transform: none;
display: inline-block;
white-space: nowrap;
word-wrap: normal;
direction: ltr;
-webkit-font-smoothing: antialiased;
text-rendering: optimizeLegibility;
-moz-osx-font-smoothing: grayscale;
-webkit-font-feature-settings: "liga";
-moz-font-feature-settings: "liga=1";
-moz-font-feature-settings: "liga";
font-feature-settings: "liga";
text-align: center;
}

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

10
framework7/Makefile Normal file
View File

@ -0,0 +1,10 @@
include ../defines.mk
all:
install:
install -d ${CSSDIR}
install -d ${JSDIR}
install -Dm 644 css/*.css ${CSSDIR}
install -Dm 644 js/*.js ${JSDIR}
install -Dm 644 js/*.map ${JSDIR}

File diff suppressed because it is too large Load Diff

12
framework7/css/framework7-lazy.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

12
framework7/css/framework7.ios.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

12
framework7/css/framework7.md.min.css vendored Normal file

File diff suppressed because one or more lines are too long

13
framework7/css/framework7.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long

13
framework7/css/framework7.rtl.min.css vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because it is too large Load Diff

13
framework7/js/framework7-lazy.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

312
framework7/js/framework7.bundle.d.ts vendored Normal file
View File

@ -0,0 +1,312 @@
import Template7 from 'template7';
import Dom7 from 'dom7';
import Framework7 from '../components/app/app-class'
// Helpers
import Request from '../utils/request';
import Utils from '../utils/utils';
import Support from '../utils/support';
import Device from '../utils/device';
// Modules
import {Clicks as ClicksNamespace} from '../modules/clicks/clicks';
import {Device as DeviceNamespace} from '../modules/device/device';
import {Request as RequestNamespace} from '../modules/request/request';
import {Resize as ResizeNamespace} from '../modules/resize/resize';
import {Router as RouterNamespace} from '../modules/router/router';
import {ServiceWorker as ServiceWorkerNamespace} from '../modules/service-worker/service-worker';
import {Support as SupportNamespace} from '../modules/support/support';
import {Touch as TouchNamespace} from '../modules/touch/touch';
import {Utils as UtilsNamespace} from '../modules/utils/utils';
// Components
import {Accordion as AccordionNamespace} from '../components/accordion/accordion';
import {Actions as ActionsNamespace} from '../components/actions/actions';
import {Autocomplete as AutocompleteNamespace} from '../components/autocomplete/autocomplete';
import {Badge as BadgeNamespace} from '../components/badge/badge';
import {Block as BlockNamespace} from '../components/block/block';
import {Button as ButtonNamespace} from '../components/button/button';
import {Calendar as CalendarNamespace} from '../components/calendar/calendar';
import {Card as CardNamespace} from '../components/card/card';
import {Checkbox as CheckboxNamespace} from '../components/checkbox/checkbox';
import {Chip as ChipNamespace} from '../components/chip/chip';
import {ContactsList as ContactsListNamespace} from '../components/contacts-list/contacts-list';
import {DataTable as DataTableNamespace} from '../components/data-table/data-table';
import {Dialog as DialogNamespace} from '../components/dialog/dialog';
import {Elevation as ElevationNamespace} from '../components/elevation/elevation';
import {Fab as FabNamespace} from '../components/fab/fab';
import {Form as FormNamespace} from '../components/form/form';
import {Gauge as GaugeNamespace} from '../components/gauge/gauge';
import {Grid as GridNamespace} from '../components/grid/grid';
import {Icon as IconNamespace} from '../components/icon/icon';
import {InfiniteScroll as InfiniteScrollNamespace} from '../components/infinite-scroll/infinite-scroll';
import {Input as InputNamespace} from '../components/input/input';
import {Lazy as LazyNamespace} from '../components/lazy/lazy';
import {Link as LinkNamespace} from '../components/link/link';
import {List as ListNamespace} from '../components/list/list';
import {ListIndex as ListIndexNamespace} from '../components/list-index/list-index';
import {LoginScreen as LoginScreenNamespace} from '../components/login-screen/login-screen';
import {Menu as MenuNamespace} from '../components/menu/menu';
import {Messagebar as MessagebarNamespace} from '../components/messagebar/messagebar';
import {Messages as MessagesNamespace} from '../components/messages/messages';
import {Modal as ModalNamespace} from '../components/modal/modal';
import {Navbar as NavbarNamespace} from '../components/navbar/navbar';
import {Notification as NotificationNamespace} from '../components/notification/notification';
import {Page as PageNamespace} from '../components/page/page';
import {Panel as PanelNamespace} from '../components/panel/panel';
import {PhotoBrowser as PhotoBrowserNamespace} from '../components/photo-browser/photo-browser';
import {Picker as PickerNamespace} from '../components/picker/picker';
import {Popover as PopoverNamespace} from '../components/popover/popover';
import {Popup as PopupNamespace} from '../components/popup/popup';
import {Preloader as PreloaderNamespace} from '../components/preloader/preloader';
import {Progressbar as ProgressbarNamespace} from '../components/progressbar/progressbar';
import {PullToRefresh as PullToRefreshNamespace} from '../components/pull-to-refresh/pull-to-refresh';
import {Radio as RadioNamespace} from '../components/radio/radio';
import {Range as RangeNamespace} from '../components/range/range';
import {Searchbar as SearchbarNamespace} from '../components/searchbar/searchbar';
import {Sheet as SheetNamespace} from '../components/sheet/sheet';
import {Skeleton as SkeletonNamespace} from '../components/skeleton/skeleton';
import {SmartSelect as SmartSelectNamespace} from '../components/smart-select/smart-select';
import {Sortable as SortableNamespace} from '../components/sortable/sortable';
import {Statusbar as StatusbarNamespace} from '../components/statusbar/statusbar';
import {Stepper as StepperNamespace} from '../components/stepper/stepper';
import {Subnavbar as SubnavbarNamespace} from '../components/subnavbar/subnavbar';
import {Swipeout as SwipeoutNamespace} from '../components/swipeout/swipeout';
import {Swiper as SwiperNamespace} from '../components/swiper/swiper';
import {Tabs as TabsNamespace} from '../components/tabs/tabs';
import {Timeline as TimelineNamespace} from '../components/timeline/timeline';
import {Toast as ToastNamespace} from '../components/toast/toast';
import {Toggle as ToggleNamespace} from '../components/toggle/toggle';
import {Toolbar as ToolbarNamespace} from '../components/toolbar/toolbar';
import {Tooltip as TooltipNamespace} from '../components/tooltip/tooltip';
import {TouchRipple as TouchRippleNamespace} from '../components/touch-ripple/touch-ripple';
import {Typography as TypographyNamespace} from '../components/typography/typography';
import {Vi as ViNamespace} from '../components/vi/vi';
import {View as ViewNamespace} from '../components/view/view';
import {VirtualList as VirtualListNamespace} from '../components/virtual-list/virtual-list';
declare module './components/app/app-class' {
interface Framework7Class<Events> extends ClicksNamespace.AppMethods{}
interface Framework7Params extends ClicksNamespace.AppParams{}
interface Framework7Events extends ClicksNamespace.AppEvents{}
interface Framework7Class<Events> extends DeviceNamespace.AppMethods{}
interface Framework7Params extends DeviceNamespace.AppParams{}
interface Framework7Events extends DeviceNamespace.AppEvents{}
interface Framework7Class<Events> extends RequestNamespace.AppMethods{}
interface Framework7Params extends RequestNamespace.AppParams{}
interface Framework7Events extends RequestNamespace.AppEvents{}
interface Framework7Class<Events> extends ResizeNamespace.AppMethods{}
interface Framework7Params extends ResizeNamespace.AppParams{}
interface Framework7Events extends ResizeNamespace.AppEvents{}
interface Framework7Class<Events> extends RouterNamespace.AppMethods{}
interface Framework7Params extends RouterNamespace.AppParams{}
interface Framework7Events extends RouterNamespace.AppEvents{}
interface Framework7Class<Events> extends ServiceWorkerNamespace.AppMethods{}
interface Framework7Params extends ServiceWorkerNamespace.AppParams{}
interface Framework7Events extends ServiceWorkerNamespace.AppEvents{}
interface Framework7Class<Events> extends SupportNamespace.AppMethods{}
interface Framework7Params extends SupportNamespace.AppParams{}
interface Framework7Events extends SupportNamespace.AppEvents{}
interface Framework7Class<Events> extends TouchNamespace.AppMethods{}
interface Framework7Params extends TouchNamespace.AppParams{}
interface Framework7Events extends TouchNamespace.AppEvents{}
interface Framework7Class<Events> extends UtilsNamespace.AppMethods{}
interface Framework7Params extends UtilsNamespace.AppParams{}
interface Framework7Events extends UtilsNamespace.AppEvents{}
interface Framework7Class<Events> extends AccordionNamespace.AppMethods{}
interface Framework7Params extends AccordionNamespace.AppParams{}
interface Framework7Events extends AccordionNamespace.AppEvents{}
interface Framework7Class<Events> extends ActionsNamespace.AppMethods{}
interface Framework7Params extends ActionsNamespace.AppParams{}
interface Framework7Events extends ActionsNamespace.AppEvents{}
interface Framework7Class<Events> extends AutocompleteNamespace.AppMethods{}
interface Framework7Params extends AutocompleteNamespace.AppParams{}
interface Framework7Events extends AutocompleteNamespace.AppEvents{}
interface Framework7Class<Events> extends BadgeNamespace.AppMethods{}
interface Framework7Params extends BadgeNamespace.AppParams{}
interface Framework7Events extends BadgeNamespace.AppEvents{}
interface Framework7Class<Events> extends BlockNamespace.AppMethods{}
interface Framework7Params extends BlockNamespace.AppParams{}
interface Framework7Events extends BlockNamespace.AppEvents{}
interface Framework7Class<Events> extends ButtonNamespace.AppMethods{}
interface Framework7Params extends ButtonNamespace.AppParams{}
interface Framework7Events extends ButtonNamespace.AppEvents{}
interface Framework7Class<Events> extends CalendarNamespace.AppMethods{}
interface Framework7Params extends CalendarNamespace.AppParams{}
interface Framework7Events extends CalendarNamespace.AppEvents{}
interface Framework7Class<Events> extends CardNamespace.AppMethods{}
interface Framework7Params extends CardNamespace.AppParams{}
interface Framework7Events extends CardNamespace.AppEvents{}
interface Framework7Class<Events> extends CheckboxNamespace.AppMethods{}
interface Framework7Params extends CheckboxNamespace.AppParams{}
interface Framework7Events extends CheckboxNamespace.AppEvents{}
interface Framework7Class<Events> extends ChipNamespace.AppMethods{}
interface Framework7Params extends ChipNamespace.AppParams{}
interface Framework7Events extends ChipNamespace.AppEvents{}
interface Framework7Class<Events> extends ContactsListNamespace.AppMethods{}
interface Framework7Params extends ContactsListNamespace.AppParams{}
interface Framework7Events extends ContactsListNamespace.AppEvents{}
interface Framework7Class<Events> extends DataTableNamespace.AppMethods{}
interface Framework7Params extends DataTableNamespace.AppParams{}
interface Framework7Events extends DataTableNamespace.AppEvents{}
interface Framework7Class<Events> extends DialogNamespace.AppMethods{}
interface Framework7Params extends DialogNamespace.AppParams{}
interface Framework7Events extends DialogNamespace.AppEvents{}
interface Framework7Class<Events> extends ElevationNamespace.AppMethods{}
interface Framework7Params extends ElevationNamespace.AppParams{}
interface Framework7Events extends ElevationNamespace.AppEvents{}
interface Framework7Class<Events> extends FabNamespace.AppMethods{}
interface Framework7Params extends FabNamespace.AppParams{}
interface Framework7Events extends FabNamespace.AppEvents{}
interface Framework7Class<Events> extends FormNamespace.AppMethods{}
interface Framework7Params extends FormNamespace.AppParams{}
interface Framework7Events extends FormNamespace.AppEvents{}
interface Framework7Class<Events> extends GaugeNamespace.AppMethods{}
interface Framework7Params extends GaugeNamespace.AppParams{}
interface Framework7Events extends GaugeNamespace.AppEvents{}
interface Framework7Class<Events> extends GridNamespace.AppMethods{}
interface Framework7Params extends GridNamespace.AppParams{}
interface Framework7Events extends GridNamespace.AppEvents{}
interface Framework7Class<Events> extends IconNamespace.AppMethods{}
interface Framework7Params extends IconNamespace.AppParams{}
interface Framework7Events extends IconNamespace.AppEvents{}
interface Framework7Class<Events> extends InfiniteScrollNamespace.AppMethods{}
interface Framework7Params extends InfiniteScrollNamespace.AppParams{}
interface Framework7Events extends InfiniteScrollNamespace.AppEvents{}
interface Framework7Class<Events> extends InputNamespace.AppMethods{}
interface Framework7Params extends InputNamespace.AppParams{}
interface Framework7Events extends InputNamespace.AppEvents{}
interface Framework7Class<Events> extends LazyNamespace.AppMethods{}
interface Framework7Params extends LazyNamespace.AppParams{}
interface Framework7Events extends LazyNamespace.AppEvents{}
interface Framework7Class<Events> extends LinkNamespace.AppMethods{}
interface Framework7Params extends LinkNamespace.AppParams{}
interface Framework7Events extends LinkNamespace.AppEvents{}
interface Framework7Class<Events> extends ListNamespace.AppMethods{}
interface Framework7Params extends ListNamespace.AppParams{}
interface Framework7Events extends ListNamespace.AppEvents{}
interface Framework7Class<Events> extends ListIndexNamespace.AppMethods{}
interface Framework7Params extends ListIndexNamespace.AppParams{}
interface Framework7Events extends ListIndexNamespace.AppEvents{}
interface Framework7Class<Events> extends LoginScreenNamespace.AppMethods{}
interface Framework7Params extends LoginScreenNamespace.AppParams{}
interface Framework7Events extends LoginScreenNamespace.AppEvents{}
interface Framework7Class<Events> extends MenuNamespace.AppMethods{}
interface Framework7Params extends MenuNamespace.AppParams{}
interface Framework7Events extends MenuNamespace.AppEvents{}
interface Framework7Class<Events> extends MessagebarNamespace.AppMethods{}
interface Framework7Params extends MessagebarNamespace.AppParams{}
interface Framework7Events extends MessagebarNamespace.AppEvents{}
interface Framework7Class<Events> extends MessagesNamespace.AppMethods{}
interface Framework7Params extends MessagesNamespace.AppParams{}
interface Framework7Events extends MessagesNamespace.AppEvents{}
interface Framework7Class<Events> extends ModalNamespace.AppMethods{}
interface Framework7Params extends ModalNamespace.AppParams{}
interface Framework7Events extends ModalNamespace.AppEvents{}
interface Framework7Class<Events> extends NavbarNamespace.AppMethods{}
interface Framework7Params extends NavbarNamespace.AppParams{}
interface Framework7Events extends NavbarNamespace.AppEvents{}
interface Framework7Class<Events> extends NotificationNamespace.AppMethods{}
interface Framework7Params extends NotificationNamespace.AppParams{}
interface Framework7Events extends NotificationNamespace.AppEvents{}
interface Framework7Class<Events> extends PageNamespace.AppMethods{}
interface Framework7Params extends PageNamespace.AppParams{}
interface Framework7Events extends PageNamespace.AppEvents{}
interface Framework7Class<Events> extends PanelNamespace.AppMethods{}
interface Framework7Params extends PanelNamespace.AppParams{}
interface Framework7Events extends PanelNamespace.AppEvents{}
interface Framework7Class<Events> extends PhotoBrowserNamespace.AppMethods{}
interface Framework7Params extends PhotoBrowserNamespace.AppParams{}
interface Framework7Events extends PhotoBrowserNamespace.AppEvents{}
interface Framework7Class<Events> extends PickerNamespace.AppMethods{}
interface Framework7Params extends PickerNamespace.AppParams{}
interface Framework7Events extends PickerNamespace.AppEvents{}
interface Framework7Class<Events> extends PopoverNamespace.AppMethods{}
interface Framework7Params extends PopoverNamespace.AppParams{}
interface Framework7Events extends PopoverNamespace.AppEvents{}
interface Framework7Class<Events> extends PopupNamespace.AppMethods{}
interface Framework7Params extends PopupNamespace.AppParams{}
interface Framework7Events extends PopupNamespace.AppEvents{}
interface Framework7Class<Events> extends PreloaderNamespace.AppMethods{}
interface Framework7Params extends PreloaderNamespace.AppParams{}
interface Framework7Events extends PreloaderNamespace.AppEvents{}
interface Framework7Class<Events> extends ProgressbarNamespace.AppMethods{}
interface Framework7Params extends ProgressbarNamespace.AppParams{}
interface Framework7Events extends ProgressbarNamespace.AppEvents{}
interface Framework7Class<Events> extends PullToRefreshNamespace.AppMethods{}
interface Framework7Params extends PullToRefreshNamespace.AppParams{}
interface Framework7Events extends PullToRefreshNamespace.AppEvents{}
interface Framework7Class<Events> extends RadioNamespace.AppMethods{}
interface Framework7Params extends RadioNamespace.AppParams{}
interface Framework7Events extends RadioNamespace.AppEvents{}
interface Framework7Class<Events> extends RangeNamespace.AppMethods{}
interface Framework7Params extends RangeNamespace.AppParams{}
interface Framework7Events extends RangeNamespace.AppEvents{}
interface Framework7Class<Events> extends SearchbarNamespace.AppMethods{}
interface Framework7Params extends SearchbarNamespace.AppParams{}
interface Framework7Events extends SearchbarNamespace.AppEvents{}
interface Framework7Class<Events> extends SheetNamespace.AppMethods{}
interface Framework7Params extends SheetNamespace.AppParams{}
interface Framework7Events extends SheetNamespace.AppEvents{}
interface Framework7Class<Events> extends SkeletonNamespace.AppMethods{}
interface Framework7Params extends SkeletonNamespace.AppParams{}
interface Framework7Events extends SkeletonNamespace.AppEvents{}
interface Framework7Class<Events> extends SmartSelectNamespace.AppMethods{}
interface Framework7Params extends SmartSelectNamespace.AppParams{}
interface Framework7Events extends SmartSelectNamespace.AppEvents{}
interface Framework7Class<Events> extends SortableNamespace.AppMethods{}
interface Framework7Params extends SortableNamespace.AppParams{}
interface Framework7Events extends SortableNamespace.AppEvents{}
interface Framework7Class<Events> extends StatusbarNamespace.AppMethods{}
interface Framework7Params extends StatusbarNamespace.AppParams{}
interface Framework7Events extends StatusbarNamespace.AppEvents{}
interface Framework7Class<Events> extends StepperNamespace.AppMethods{}
interface Framework7Params extends StepperNamespace.AppParams{}
interface Framework7Events extends StepperNamespace.AppEvents{}
interface Framework7Class<Events> extends SubnavbarNamespace.AppMethods{}
interface Framework7Params extends SubnavbarNamespace.AppParams{}
interface Framework7Events extends SubnavbarNamespace.AppEvents{}
interface Framework7Class<Events> extends SwipeoutNamespace.AppMethods{}
interface Framework7Params extends SwipeoutNamespace.AppParams{}
interface Framework7Events extends SwipeoutNamespace.AppEvents{}
interface Framework7Class<Events> extends SwiperNamespace.AppMethods{}
interface Framework7Params extends SwiperNamespace.AppParams{}
interface Framework7Events extends SwiperNamespace.AppEvents{}
interface Framework7Class<Events> extends TabsNamespace.AppMethods{}
interface Framework7Params extends TabsNamespace.AppParams{}
interface Framework7Events extends TabsNamespace.AppEvents{}
interface Framework7Class<Events> extends TimelineNamespace.AppMethods{}
interface Framework7Params extends TimelineNamespace.AppParams{}
interface Framework7Events extends TimelineNamespace.AppEvents{}
interface Framework7Class<Events> extends ToastNamespace.AppMethods{}
interface Framework7Params extends ToastNamespace.AppParams{}
interface Framework7Events extends ToastNamespace.AppEvents{}
interface Framework7Class<Events> extends ToggleNamespace.AppMethods{}
interface Framework7Params extends ToggleNamespace.AppParams{}
interface Framework7Events extends ToggleNamespace.AppEvents{}
interface Framework7Class<Events> extends ToolbarNamespace.AppMethods{}
interface Framework7Params extends ToolbarNamespace.AppParams{}
interface Framework7Events extends ToolbarNamespace.AppEvents{}
interface Framework7Class<Events> extends TooltipNamespace.AppMethods{}
interface Framework7Params extends TooltipNamespace.AppParams{}
interface Framework7Events extends TooltipNamespace.AppEvents{}
interface Framework7Class<Events> extends TouchRippleNamespace.AppMethods{}
interface Framework7Params extends TouchRippleNamespace.AppParams{}
interface Framework7Events extends TouchRippleNamespace.AppEvents{}
interface Framework7Class<Events> extends TypographyNamespace.AppMethods{}
interface Framework7Params extends TypographyNamespace.AppParams{}
interface Framework7Events extends TypographyNamespace.AppEvents{}
interface Framework7Class<Events> extends ViNamespace.AppMethods{}
interface Framework7Params extends ViNamespace.AppParams{}
interface Framework7Events extends ViNamespace.AppEvents{}
interface Framework7Class<Events> extends ViewNamespace.AppMethods{}
interface Framework7Params extends ViewNamespace.AppParams{}
interface Framework7Events extends ViewNamespace.AppEvents{}
interface Framework7Class<Events> extends VirtualListNamespace.AppMethods{}
interface Framework7Params extends VirtualListNamespace.AppParams{}
interface Framework7Events extends VirtualListNamespace.AppEvents{}
}
export { Request, Utils, Support, Device };
export { Template7, Dom7 };
export default Framework7;

File diff suppressed because it is too large Load Diff

14
framework7/js/framework7.bundle.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

312
framework7/js/framework7.d.ts vendored Normal file
View File

@ -0,0 +1,312 @@
import Template7 from 'template7';
import Dom7 from 'dom7';
import Framework7 from '../components/app/app-class'
// Helpers
import Request from '../utils/request';
import Utils from '../utils/utils';
import Support from '../utils/support';
import Device from '../utils/device';
// Modules
import {Clicks as ClicksNamespace} from '../modules/clicks/clicks';
import {Device as DeviceNamespace} from '../modules/device/device';
import {Request as RequestNamespace} from '../modules/request/request';
import {Resize as ResizeNamespace} from '../modules/resize/resize';
import {Router as RouterNamespace} from '../modules/router/router';
import {ServiceWorker as ServiceWorkerNamespace} from '../modules/service-worker/service-worker';
import {Support as SupportNamespace} from '../modules/support/support';
import {Touch as TouchNamespace} from '../modules/touch/touch';
import {Utils as UtilsNamespace} from '../modules/utils/utils';
// Components
import {Accordion as AccordionNamespace} from '../components/accordion/accordion';
import {Actions as ActionsNamespace} from '../components/actions/actions';
import {Autocomplete as AutocompleteNamespace} from '../components/autocomplete/autocomplete';
import {Badge as BadgeNamespace} from '../components/badge/badge';
import {Block as BlockNamespace} from '../components/block/block';
import {Button as ButtonNamespace} from '../components/button/button';
import {Calendar as CalendarNamespace} from '../components/calendar/calendar';
import {Card as CardNamespace} from '../components/card/card';
import {Checkbox as CheckboxNamespace} from '../components/checkbox/checkbox';
import {Chip as ChipNamespace} from '../components/chip/chip';
import {ContactsList as ContactsListNamespace} from '../components/contacts-list/contacts-list';
import {DataTable as DataTableNamespace} from '../components/data-table/data-table';
import {Dialog as DialogNamespace} from '../components/dialog/dialog';
import {Elevation as ElevationNamespace} from '../components/elevation/elevation';
import {Fab as FabNamespace} from '../components/fab/fab';
import {Form as FormNamespace} from '../components/form/form';
import {Gauge as GaugeNamespace} from '../components/gauge/gauge';
import {Grid as GridNamespace} from '../components/grid/grid';
import {Icon as IconNamespace} from '../components/icon/icon';
import {InfiniteScroll as InfiniteScrollNamespace} from '../components/infinite-scroll/infinite-scroll';
import {Input as InputNamespace} from '../components/input/input';
import {Lazy as LazyNamespace} from '../components/lazy/lazy';
import {Link as LinkNamespace} from '../components/link/link';
import {List as ListNamespace} from '../components/list/list';
import {ListIndex as ListIndexNamespace} from '../components/list-index/list-index';
import {LoginScreen as LoginScreenNamespace} from '../components/login-screen/login-screen';
import {Menu as MenuNamespace} from '../components/menu/menu';
import {Messagebar as MessagebarNamespace} from '../components/messagebar/messagebar';
import {Messages as MessagesNamespace} from '../components/messages/messages';
import {Modal as ModalNamespace} from '../components/modal/modal';
import {Navbar as NavbarNamespace} from '../components/navbar/navbar';
import {Notification as NotificationNamespace} from '../components/notification/notification';
import {Page as PageNamespace} from '../components/page/page';
import {Panel as PanelNamespace} from '../components/panel/panel';
import {PhotoBrowser as PhotoBrowserNamespace} from '../components/photo-browser/photo-browser';
import {Picker as PickerNamespace} from '../components/picker/picker';
import {Popover as PopoverNamespace} from '../components/popover/popover';
import {Popup as PopupNamespace} from '../components/popup/popup';
import {Preloader as PreloaderNamespace} from '../components/preloader/preloader';
import {Progressbar as ProgressbarNamespace} from '../components/progressbar/progressbar';
import {PullToRefresh as PullToRefreshNamespace} from '../components/pull-to-refresh/pull-to-refresh';
import {Radio as RadioNamespace} from '../components/radio/radio';
import {Range as RangeNamespace} from '../components/range/range';
import {Searchbar as SearchbarNamespace} from '../components/searchbar/searchbar';
import {Sheet as SheetNamespace} from '../components/sheet/sheet';
import {Skeleton as SkeletonNamespace} from '../components/skeleton/skeleton';
import {SmartSelect as SmartSelectNamespace} from '../components/smart-select/smart-select';
import {Sortable as SortableNamespace} from '../components/sortable/sortable';
import {Statusbar as StatusbarNamespace} from '../components/statusbar/statusbar';
import {Stepper as StepperNamespace} from '../components/stepper/stepper';
import {Subnavbar as SubnavbarNamespace} from '../components/subnavbar/subnavbar';
import {Swipeout as SwipeoutNamespace} from '../components/swipeout/swipeout';
import {Swiper as SwiperNamespace} from '../components/swiper/swiper';
import {Tabs as TabsNamespace} from '../components/tabs/tabs';
import {Timeline as TimelineNamespace} from '../components/timeline/timeline';
import {Toast as ToastNamespace} from '../components/toast/toast';
import {Toggle as ToggleNamespace} from '../components/toggle/toggle';
import {Toolbar as ToolbarNamespace} from '../components/toolbar/toolbar';
import {Tooltip as TooltipNamespace} from '../components/tooltip/tooltip';
import {TouchRipple as TouchRippleNamespace} from '../components/touch-ripple/touch-ripple';
import {Typography as TypographyNamespace} from '../components/typography/typography';
import {Vi as ViNamespace} from '../components/vi/vi';
import {View as ViewNamespace} from '../components/view/view';
import {VirtualList as VirtualListNamespace} from '../components/virtual-list/virtual-list';
declare module './components/app/app-class' {
interface Framework7Class<Events> extends ClicksNamespace.AppMethods{}
interface Framework7Params extends ClicksNamespace.AppParams{}
interface Framework7Events extends ClicksNamespace.AppEvents{}
interface Framework7Class<Events> extends DeviceNamespace.AppMethods{}
interface Framework7Params extends DeviceNamespace.AppParams{}
interface Framework7Events extends DeviceNamespace.AppEvents{}
interface Framework7Class<Events> extends RequestNamespace.AppMethods{}
interface Framework7Params extends RequestNamespace.AppParams{}
interface Framework7Events extends RequestNamespace.AppEvents{}
interface Framework7Class<Events> extends ResizeNamespace.AppMethods{}
interface Framework7Params extends ResizeNamespace.AppParams{}
interface Framework7Events extends ResizeNamespace.AppEvents{}
interface Framework7Class<Events> extends RouterNamespace.AppMethods{}
interface Framework7Params extends RouterNamespace.AppParams{}
interface Framework7Events extends RouterNamespace.AppEvents{}
interface Framework7Class<Events> extends ServiceWorkerNamespace.AppMethods{}
interface Framework7Params extends ServiceWorkerNamespace.AppParams{}
interface Framework7Events extends ServiceWorkerNamespace.AppEvents{}
interface Framework7Class<Events> extends SupportNamespace.AppMethods{}
interface Framework7Params extends SupportNamespace.AppParams{}
interface Framework7Events extends SupportNamespace.AppEvents{}
interface Framework7Class<Events> extends TouchNamespace.AppMethods{}
interface Framework7Params extends TouchNamespace.AppParams{}
interface Framework7Events extends TouchNamespace.AppEvents{}
interface Framework7Class<Events> extends UtilsNamespace.AppMethods{}
interface Framework7Params extends UtilsNamespace.AppParams{}
interface Framework7Events extends UtilsNamespace.AppEvents{}
interface Framework7Class<Events> extends AccordionNamespace.AppMethods{}
interface Framework7Params extends AccordionNamespace.AppParams{}
interface Framework7Events extends AccordionNamespace.AppEvents{}
interface Framework7Class<Events> extends ActionsNamespace.AppMethods{}
interface Framework7Params extends ActionsNamespace.AppParams{}
interface Framework7Events extends ActionsNamespace.AppEvents{}
interface Framework7Class<Events> extends AutocompleteNamespace.AppMethods{}
interface Framework7Params extends AutocompleteNamespace.AppParams{}
interface Framework7Events extends AutocompleteNamespace.AppEvents{}
interface Framework7Class<Events> extends BadgeNamespace.AppMethods{}
interface Framework7Params extends BadgeNamespace.AppParams{}
interface Framework7Events extends BadgeNamespace.AppEvents{}
interface Framework7Class<Events> extends BlockNamespace.AppMethods{}
interface Framework7Params extends BlockNamespace.AppParams{}
interface Framework7Events extends BlockNamespace.AppEvents{}
interface Framework7Class<Events> extends ButtonNamespace.AppMethods{}
interface Framework7Params extends ButtonNamespace.AppParams{}
interface Framework7Events extends ButtonNamespace.AppEvents{}
interface Framework7Class<Events> extends CalendarNamespace.AppMethods{}
interface Framework7Params extends CalendarNamespace.AppParams{}
interface Framework7Events extends CalendarNamespace.AppEvents{}
interface Framework7Class<Events> extends CardNamespace.AppMethods{}
interface Framework7Params extends CardNamespace.AppParams{}
interface Framework7Events extends CardNamespace.AppEvents{}
interface Framework7Class<Events> extends CheckboxNamespace.AppMethods{}
interface Framework7Params extends CheckboxNamespace.AppParams{}
interface Framework7Events extends CheckboxNamespace.AppEvents{}
interface Framework7Class<Events> extends ChipNamespace.AppMethods{}
interface Framework7Params extends ChipNamespace.AppParams{}
interface Framework7Events extends ChipNamespace.AppEvents{}
interface Framework7Class<Events> extends ContactsListNamespace.AppMethods{}
interface Framework7Params extends ContactsListNamespace.AppParams{}
interface Framework7Events extends ContactsListNamespace.AppEvents{}
interface Framework7Class<Events> extends DataTableNamespace.AppMethods{}
interface Framework7Params extends DataTableNamespace.AppParams{}
interface Framework7Events extends DataTableNamespace.AppEvents{}
interface Framework7Class<Events> extends DialogNamespace.AppMethods{}
interface Framework7Params extends DialogNamespace.AppParams{}
interface Framework7Events extends DialogNamespace.AppEvents{}
interface Framework7Class<Events> extends ElevationNamespace.AppMethods{}
interface Framework7Params extends ElevationNamespace.AppParams{}
interface Framework7Events extends ElevationNamespace.AppEvents{}
interface Framework7Class<Events> extends FabNamespace.AppMethods{}
interface Framework7Params extends FabNamespace.AppParams{}
interface Framework7Events extends FabNamespace.AppEvents{}
interface Framework7Class<Events> extends FormNamespace.AppMethods{}
interface Framework7Params extends FormNamespace.AppParams{}
interface Framework7Events extends FormNamespace.AppEvents{}
interface Framework7Class<Events> extends GaugeNamespace.AppMethods{}
interface Framework7Params extends GaugeNamespace.AppParams{}
interface Framework7Events extends GaugeNamespace.AppEvents{}
interface Framework7Class<Events> extends GridNamespace.AppMethods{}
interface Framework7Params extends GridNamespace.AppParams{}
interface Framework7Events extends GridNamespace.AppEvents{}
interface Framework7Class<Events> extends IconNamespace.AppMethods{}
interface Framework7Params extends IconNamespace.AppParams{}
interface Framework7Events extends IconNamespace.AppEvents{}
interface Framework7Class<Events> extends InfiniteScrollNamespace.AppMethods{}
interface Framework7Params extends InfiniteScrollNamespace.AppParams{}
interface Framework7Events extends InfiniteScrollNamespace.AppEvents{}
interface Framework7Class<Events> extends InputNamespace.AppMethods{}
interface Framework7Params extends InputNamespace.AppParams{}
interface Framework7Events extends InputNamespace.AppEvents{}
interface Framework7Class<Events> extends LazyNamespace.AppMethods{}
interface Framework7Params extends LazyNamespace.AppParams{}
interface Framework7Events extends LazyNamespace.AppEvents{}
interface Framework7Class<Events> extends LinkNamespace.AppMethods{}
interface Framework7Params extends LinkNamespace.AppParams{}
interface Framework7Events extends LinkNamespace.AppEvents{}
interface Framework7Class<Events> extends ListNamespace.AppMethods{}
interface Framework7Params extends ListNamespace.AppParams{}
interface Framework7Events extends ListNamespace.AppEvents{}
interface Framework7Class<Events> extends ListIndexNamespace.AppMethods{}
interface Framework7Params extends ListIndexNamespace.AppParams{}
interface Framework7Events extends ListIndexNamespace.AppEvents{}
interface Framework7Class<Events> extends LoginScreenNamespace.AppMethods{}
interface Framework7Params extends LoginScreenNamespace.AppParams{}
interface Framework7Events extends LoginScreenNamespace.AppEvents{}
interface Framework7Class<Events> extends MenuNamespace.AppMethods{}
interface Framework7Params extends MenuNamespace.AppParams{}
interface Framework7Events extends MenuNamespace.AppEvents{}
interface Framework7Class<Events> extends MessagebarNamespace.AppMethods{}
interface Framework7Params extends MessagebarNamespace.AppParams{}
interface Framework7Events extends MessagebarNamespace.AppEvents{}
interface Framework7Class<Events> extends MessagesNamespace.AppMethods{}
interface Framework7Params extends MessagesNamespace.AppParams{}
interface Framework7Events extends MessagesNamespace.AppEvents{}
interface Framework7Class<Events> extends ModalNamespace.AppMethods{}
interface Framework7Params extends ModalNamespace.AppParams{}
interface Framework7Events extends ModalNamespace.AppEvents{}
interface Framework7Class<Events> extends NavbarNamespace.AppMethods{}
interface Framework7Params extends NavbarNamespace.AppParams{}
interface Framework7Events extends NavbarNamespace.AppEvents{}
interface Framework7Class<Events> extends NotificationNamespace.AppMethods{}
interface Framework7Params extends NotificationNamespace.AppParams{}
interface Framework7Events extends NotificationNamespace.AppEvents{}
interface Framework7Class<Events> extends PageNamespace.AppMethods{}
interface Framework7Params extends PageNamespace.AppParams{}
interface Framework7Events extends PageNamespace.AppEvents{}
interface Framework7Class<Events> extends PanelNamespace.AppMethods{}
interface Framework7Params extends PanelNamespace.AppParams{}
interface Framework7Events extends PanelNamespace.AppEvents{}
interface Framework7Class<Events> extends PhotoBrowserNamespace.AppMethods{}
interface Framework7Params extends PhotoBrowserNamespace.AppParams{}
interface Framework7Events extends PhotoBrowserNamespace.AppEvents{}
interface Framework7Class<Events> extends PickerNamespace.AppMethods{}
interface Framework7Params extends PickerNamespace.AppParams{}
interface Framework7Events extends PickerNamespace.AppEvents{}
interface Framework7Class<Events> extends PopoverNamespace.AppMethods{}
interface Framework7Params extends PopoverNamespace.AppParams{}
interface Framework7Events extends PopoverNamespace.AppEvents{}
interface Framework7Class<Events> extends PopupNamespace.AppMethods{}
interface Framework7Params extends PopupNamespace.AppParams{}
interface Framework7Events extends PopupNamespace.AppEvents{}
interface Framework7Class<Events> extends PreloaderNamespace.AppMethods{}
interface Framework7Params extends PreloaderNamespace.AppParams{}
interface Framework7Events extends PreloaderNamespace.AppEvents{}
interface Framework7Class<Events> extends ProgressbarNamespace.AppMethods{}
interface Framework7Params extends ProgressbarNamespace.AppParams{}
interface Framework7Events extends ProgressbarNamespace.AppEvents{}
interface Framework7Class<Events> extends PullToRefreshNamespace.AppMethods{}
interface Framework7Params extends PullToRefreshNamespace.AppParams{}
interface Framework7Events extends PullToRefreshNamespace.AppEvents{}
interface Framework7Class<Events> extends RadioNamespace.AppMethods{}
interface Framework7Params extends RadioNamespace.AppParams{}
interface Framework7Events extends RadioNamespace.AppEvents{}
interface Framework7Class<Events> extends RangeNamespace.AppMethods{}
interface Framework7Params extends RangeNamespace.AppParams{}
interface Framework7Events extends RangeNamespace.AppEvents{}
interface Framework7Class<Events> extends SearchbarNamespace.AppMethods{}
interface Framework7Params extends SearchbarNamespace.AppParams{}
interface Framework7Events extends SearchbarNamespace.AppEvents{}
interface Framework7Class<Events> extends SheetNamespace.AppMethods{}
interface Framework7Params extends SheetNamespace.AppParams{}
interface Framework7Events extends SheetNamespace.AppEvents{}
interface Framework7Class<Events> extends SkeletonNamespace.AppMethods{}
interface Framework7Params extends SkeletonNamespace.AppParams{}
interface Framework7Events extends SkeletonNamespace.AppEvents{}
interface Framework7Class<Events> extends SmartSelectNamespace.AppMethods{}
interface Framework7Params extends SmartSelectNamespace.AppParams{}
interface Framework7Events extends SmartSelectNamespace.AppEvents{}
interface Framework7Class<Events> extends SortableNamespace.AppMethods{}
interface Framework7Params extends SortableNamespace.AppParams{}
interface Framework7Events extends SortableNamespace.AppEvents{}
interface Framework7Class<Events> extends StatusbarNamespace.AppMethods{}
interface Framework7Params extends StatusbarNamespace.AppParams{}
interface Framework7Events extends StatusbarNamespace.AppEvents{}
interface Framework7Class<Events> extends StepperNamespace.AppMethods{}
interface Framework7Params extends StepperNamespace.AppParams{}
interface Framework7Events extends StepperNamespace.AppEvents{}
interface Framework7Class<Events> extends SubnavbarNamespace.AppMethods{}
interface Framework7Params extends SubnavbarNamespace.AppParams{}
interface Framework7Events extends SubnavbarNamespace.AppEvents{}
interface Framework7Class<Events> extends SwipeoutNamespace.AppMethods{}
interface Framework7Params extends SwipeoutNamespace.AppParams{}
interface Framework7Events extends SwipeoutNamespace.AppEvents{}
interface Framework7Class<Events> extends SwiperNamespace.AppMethods{}
interface Framework7Params extends SwiperNamespace.AppParams{}
interface Framework7Events extends SwiperNamespace.AppEvents{}
interface Framework7Class<Events> extends TabsNamespace.AppMethods{}
interface Framework7Params extends TabsNamespace.AppParams{}
interface Framework7Events extends TabsNamespace.AppEvents{}
interface Framework7Class<Events> extends TimelineNamespace.AppMethods{}
interface Framework7Params extends TimelineNamespace.AppParams{}
interface Framework7Events extends TimelineNamespace.AppEvents{}
interface Framework7Class<Events> extends ToastNamespace.AppMethods{}
interface Framework7Params extends ToastNamespace.AppParams{}
interface Framework7Events extends ToastNamespace.AppEvents{}
interface Framework7Class<Events> extends ToggleNamespace.AppMethods{}
interface Framework7Params extends ToggleNamespace.AppParams{}
interface Framework7Events extends ToggleNamespace.AppEvents{}
interface Framework7Class<Events> extends ToolbarNamespace.AppMethods{}
interface Framework7Params extends ToolbarNamespace.AppParams{}
interface Framework7Events extends ToolbarNamespace.AppEvents{}
interface Framework7Class<Events> extends TooltipNamespace.AppMethods{}
interface Framework7Params extends TooltipNamespace.AppParams{}
interface Framework7Events extends TooltipNamespace.AppEvents{}
interface Framework7Class<Events> extends TouchRippleNamespace.AppMethods{}
interface Framework7Params extends TouchRippleNamespace.AppParams{}
interface Framework7Events extends TouchRippleNamespace.AppEvents{}
interface Framework7Class<Events> extends TypographyNamespace.AppMethods{}
interface Framework7Params extends TypographyNamespace.AppParams{}
interface Framework7Events extends TypographyNamespace.AppEvents{}
interface Framework7Class<Events> extends ViNamespace.AppMethods{}
interface Framework7Params extends ViNamespace.AppParams{}
interface Framework7Events extends ViNamespace.AppEvents{}
interface Framework7Class<Events> extends ViewNamespace.AppMethods{}
interface Framework7Params extends ViewNamespace.AppParams{}
interface Framework7Events extends ViewNamespace.AppEvents{}
interface Framework7Class<Events> extends VirtualListNamespace.AppMethods{}
interface Framework7Params extends VirtualListNamespace.AppParams{}
interface Framework7Events extends VirtualListNamespace.AppEvents{}
}
export { Request, Utils, Support, Device };
export { Template7, Dom7 };
export default Framework7;

13063
framework7/js/framework7.js Normal file

File diff suppressed because it is too large Load Diff

14
framework7/js/framework7.min.js vendored Normal file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

9
material-icons/Makefile Normal file
View File

@ -0,0 +1,9 @@
include ../defines.mk
all:
install:
install -d ${CSSDIR}
install -d ${FONTDIR}
for i in ${MATERIALCSS}; do install -Dm 644 $$i ${CSSDIR}; done
for i in ${MATERIALFONTS}; do install -Dm 644 $$i ${FONTDIR}; done

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,36 @@
@font-face {
font-family: 'Material Icons';
font-style: normal;
font-weight: 400;
src: url(MaterialIcons-Regular.eot); /* For IE6-8 */
src: local('Material Icons'),
local('MaterialIcons-Regular'),
url(MaterialIcons-Regular.woff2) format('woff2'),
url(MaterialIcons-Regular.woff) format('woff'),
url(MaterialIcons-Regular.ttf) format('truetype');
}
.material-icons {
font-family: 'Material Icons';
font-weight: normal;
font-style: normal;
font-size: 24px; /* Preferred icon size */
display: inline-block;
line-height: 1;
text-transform: none;
letter-spacing: normal;
word-wrap: normal;
white-space: nowrap;
direction: ltr;
/* Support for all WebKit browsers. */
-webkit-font-smoothing: antialiased;
/* Support for Safari and Chrome. */
text-rendering: optimizeLegibility;
/* Support for Firefox. */
-moz-osx-font-smoothing: grayscale;
/* Support for IE. */
font-feature-settings: 'liga';
}