@xenknight/framework7-vue 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +33 -0
- package/components/accordion-content.d.ts +46 -0
- package/components/accordion-content.js +22 -0
- package/components/accordion-item.d.ts +51 -0
- package/components/accordion-item.js +77 -0
- package/components/accordion-toggle.d.ts +46 -0
- package/components/accordion-toggle.js +22 -0
- package/components/accordion.d.ts +50 -0
- package/components/accordion.js +23 -0
- package/components/actions-button.d.ts +56 -0
- package/components/actions-button.js +58 -0
- package/components/actions-group.d.ts +46 -0
- package/components/actions-group.js +22 -0
- package/components/actions-label.d.ts +51 -0
- package/components/actions-label.js +36 -0
- package/components/actions.d.ts +109 -0
- package/components/actions.js +157 -0
- package/components/app.d.ts +310 -0
- package/components/app.js +267 -0
- package/components/area-chart.d.ts +88 -0
- package/components/area-chart.js +364 -0
- package/components/badge.d.ts +54 -0
- package/components/badge.js +29 -0
- package/components/block-footer.d.ts +46 -0
- package/components/block-footer.js +22 -0
- package/components/block-header.d.ts +46 -0
- package/components/block-header.js +22 -0
- package/components/block-title.d.ts +54 -0
- package/components/block-title.js +35 -0
- package/components/block.d.ts +163 -0
- package/components/block.js +123 -0
- package/components/breadcrumbs-collapsed.d.ts +19 -0
- package/components/breadcrumbs-collapsed.js +21 -0
- package/components/breadcrumbs-item.d.ts +22 -0
- package/components/breadcrumbs-item.js +24 -0
- package/components/breadcrumbs-separator.d.ts +19 -0
- package/components/breadcrumbs-separator.js +20 -0
- package/components/breadcrumbs.d.ts +19 -0
- package/components/breadcrumbs.js +20 -0
- package/components/button.d.ts +371 -0
- package/components/button.js +182 -0
- package/components/card-content.d.ts +51 -0
- package/components/card-content.js +28 -0
- package/components/card-footer.d.ts +46 -0
- package/components/card-footer.js +22 -0
- package/components/card-header.d.ts +46 -0
- package/components/card-header.js +22 -0
- package/components/card.d.ts +145 -0
- package/components/card.js +192 -0
- package/components/checkbox.d.ts +72 -0
- package/components/checkbox.js +70 -0
- package/components/chip.d.ts +107 -0
- package/components/chip.js +81 -0
- package/components/fab-backdrop.d.ts +46 -0
- package/components/fab-backdrop.js +22 -0
- package/components/fab-button.d.ts +67 -0
- package/components/fab-button.js +52 -0
- package/components/fab-buttons.d.ts +51 -0
- package/components/fab-buttons.js +26 -0
- package/components/fab.d.ts +76 -0
- package/components/fab.js +78 -0
- package/components/gauge.d.ts +91 -0
- package/components/gauge.js +151 -0
- package/components/icon.d.ts +78 -0
- package/components/icon.js +100 -0
- package/components/input.d.ts +226 -0
- package/components/input.js +409 -0
- package/components/link.d.ts +287 -0
- package/components/link.js +129 -0
- package/components/list-button.d.ts +239 -0
- package/components/list-button.js +71 -0
- package/components/list-group.d.ts +71 -0
- package/components/list-group.js +53 -0
- package/components/list-index.d.ts +81 -0
- package/components/list-index.js +96 -0
- package/components/list-input.d.ts +245 -0
- package/components/list-input.js +415 -0
- package/components/list-item.d.ts +370 -0
- package/components/list-item.js +451 -0
- package/components/list.d.ts +236 -0
- package/components/list.js +222 -0
- package/components/login-screen-title.d.ts +46 -0
- package/components/login-screen-title.js +22 -0
- package/components/login-screen.d.ts +61 -0
- package/components/login-screen.js +104 -0
- package/components/message.d.ts +116 -0
- package/components/message.js +169 -0
- package/components/messagebar-attachment.d.ts +56 -0
- package/components/messagebar-attachment.js +52 -0
- package/components/messagebar-attachments.d.ts +46 -0
- package/components/messagebar-attachments.js +22 -0
- package/components/messagebar-sheet-image.d.ts +55 -0
- package/components/messagebar-sheet-image.js +48 -0
- package/components/messagebar-sheet-item.d.ts +46 -0
- package/components/messagebar-sheet-item.js +22 -0
- package/components/messagebar-sheet.d.ts +46 -0
- package/components/messagebar-sheet.js +22 -0
- package/components/messagebar.d.ts +117 -0
- package/components/messagebar.js +193 -0
- package/components/messages-title.d.ts +46 -0
- package/components/messages-title.js +22 -0
- package/components/messages.d.ts +116 -0
- package/components/messages.js +134 -0
- package/components/nav-left.d.ts +68 -0
- package/components/nav-left.js +66 -0
- package/components/nav-right.d.ts +50 -0
- package/components/nav-right.js +25 -0
- package/components/nav-title-large.d.ts +46 -0
- package/components/nav-title-large.js +25 -0
- package/components/nav-title.d.ts +58 -0
- package/components/nav-title.js +31 -0
- package/components/navbar.d.ts +110 -0
- package/components/navbar.js +248 -0
- package/components/page-content.d.ts +113 -0
- package/components/page-content.js +147 -0
- package/components/page.d.ts +150 -0
- package/components/page.js +331 -0
- package/components/panel.d.ts +139 -0
- package/components/panel.js +198 -0
- package/components/photo-browser.d.ts +164 -0
- package/components/photo-browser.js +181 -0
- package/components/pie-chart.d.ts +37 -0
- package/components/pie-chart.js +172 -0
- package/components/popover.d.ts +101 -0
- package/components/popover.js +157 -0
- package/components/popup.d.ts +99 -0
- package/components/popup.js +161 -0
- package/components/preloader.d.ts +50 -0
- package/components/preloader.js +65 -0
- package/components/progressbar.d.ts +54 -0
- package/components/progressbar.js +44 -0
- package/components/radio.d.ts +68 -0
- package/components/radio.js +59 -0
- package/components/range.d.ts +141 -0
- package/components/range.js +139 -0
- package/components/routable-modals.d.ts +19 -0
- package/components/routable-modals.js +58 -0
- package/components/searchbar.d.ts +182 -0
- package/components/searchbar.js +285 -0
- package/components/segmented.d.ts +87 -0
- package/components/segmented.js +53 -0
- package/components/sheet.d.ts +132 -0
- package/components/sheet.js +213 -0
- package/components/skeleton-avatar.d.ts +6 -0
- package/components/skeleton-avatar.js +3 -0
- package/components/skeleton-block.d.ts +6 -0
- package/components/skeleton-block.js +3 -0
- package/components/skeleton-image.d.ts +6 -0
- package/components/skeleton-image.js +3 -0
- package/components/skeleton-text.d.ts +6 -0
- package/components/skeleton-text.js +3 -0
- package/components/stepper.d.ts +197 -0
- package/components/stepper.js +230 -0
- package/components/subnavbar.d.ts +59 -0
- package/components/subnavbar.js +40 -0
- package/components/swipeout-actions.d.ts +58 -0
- package/components/swipeout-actions.js +33 -0
- package/components/swipeout-button.d.ts +75 -0
- package/components/swipeout-button.js +48 -0
- package/components/tab.d.ts +51 -0
- package/components/tab.js +128 -0
- package/components/tabs.d.ts +63 -0
- package/components/tabs.js +59 -0
- package/components/text-editor.d.ts +95 -0
- package/components/text-editor.js +147 -0
- package/components/toggle.d.ts +80 -0
- package/components/toggle.js +89 -0
- package/components/toolbar.d.ts +108 -0
- package/components/toolbar.js +135 -0
- package/components/treeview-item.d.ts +265 -0
- package/components/treeview-item.js +140 -0
- package/components/treeview.d.ts +46 -0
- package/components/treeview.js +22 -0
- package/components/use-icon.d.ts +19 -0
- package/components/use-icon.js +27 -0
- package/components/view.d.ts +296 -0
- package/components/view.js +373 -0
- package/components/views.d.ts +50 -0
- package/components/views.js +25 -0
- package/framework7-vue-bundle.js +190 -0
- package/framework7-vue.d.ts +121 -0
- package/framework7-vue.js +108 -0
- package/package.json +65 -0
- package/shared/components-router.js +203 -0
- package/shared/f7.js +71 -0
- package/shared/get-router-initial-component.js +35 -0
- package/shared/mixins.js +233 -0
- package/shared/modal-state-classes.js +10 -0
- package/shared/plugin.js +37 -0
- package/shared/router-open-in.js +105 -0
- package/shared/use-icon.js +37 -0
- package/shared/use-route-props.js +18 -0
- package/shared/use-smart-select.js +24 -0
- package/shared/use-store.js +24 -0
- package/shared/use-tab.js +24 -0
- package/shared/use-theme.js +11 -0
- package/shared/use-tooltip.js +43 -0
- package/shared/utils.js +110 -0
|
@@ -0,0 +1,113 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const PageContent: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
tab: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
tabActive: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
ptr: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
ptrDistance: {
|
|
21
|
+
type: NumberConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
ptrBottom: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
ptrMousewheel: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
infinite: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
infiniteTop: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
infiniteDistance: {
|
|
41
|
+
type: NumberConstructor;
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
hideBarsOnScroll: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
hideNavbarOnScroll: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
hideToolbarOnScroll: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
messagesContent: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
loginScreen: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
ptrPreloader: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
default: boolean;
|
|
67
|
+
},
|
|
68
|
+
|
|
69
|
+
infinitePreloader: {
|
|
70
|
+
type: BooleanConstructor;
|
|
71
|
+
default: boolean;
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
color: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
},
|
|
77
|
+
|
|
78
|
+
colorTheme: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
textColor: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
},
|
|
85
|
+
|
|
86
|
+
bgColor: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
borderColor: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
},
|
|
93
|
+
|
|
94
|
+
rippleColor: {
|
|
95
|
+
type: StringConstructor;
|
|
96
|
+
},
|
|
97
|
+
|
|
98
|
+
dark: {
|
|
99
|
+
type: BooleanConstructor;
|
|
100
|
+
}
|
|
101
|
+
},
|
|
102
|
+
() => JSX.Element,
|
|
103
|
+
unknown,
|
|
104
|
+
{},
|
|
105
|
+
{},
|
|
106
|
+
ComponentOptionsMixin,
|
|
107
|
+
ComponentOptionsMixin,
|
|
108
|
+
("ptr:pullstart" | "ptr:pullmove" | "ptr:pullend" | "ptr:refresh" | "ptr:done" | "infinite" | "ptrPullStart" | "ptrPullMove" | "ptrPullEnd" | "ptrRefresh" | "ptrDone" | "tab:hide" | "tab:show")[],
|
|
109
|
+
"ptr:pullstart" | "ptr:pullmove" | "ptr:pullend" | "ptr:refresh" | "ptr:done" | "infinite" | "ptrPullStart" | "ptrPullMove" | "ptrPullEnd" | "ptrRefresh" | "ptrDone" | "tab:hide" | "tab:show"
|
|
110
|
+
>;
|
|
111
|
+
|
|
112
|
+
export default PageContent;
|
|
113
|
+
|
|
@@ -0,0 +1,147 @@
|
|
|
1
|
+
import { resolveComponent as _resolveComponent, createVNode as _createVNode, createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, createBlock as _createBlock, renderSlot as _renderSlot, normalizeClass as _normalizeClass } from "vue";
|
|
2
|
+
const _hoisted_1 = ["data-ptr-distance", "data-ptr-mousewheel", "data-infinite-distance"];
|
|
3
|
+
const _hoisted_2 = {
|
|
4
|
+
key: 0,
|
|
5
|
+
class: "ptr-preloader"
|
|
6
|
+
};
|
|
7
|
+
const _hoisted_3 = /*#__PURE__*/_createElementVNode("div", {
|
|
8
|
+
class: "ptr-arrow"
|
|
9
|
+
}, null, -1);
|
|
10
|
+
const _hoisted_4 = {
|
|
11
|
+
key: 3,
|
|
12
|
+
class: "ptr-preloader"
|
|
13
|
+
};
|
|
14
|
+
const _hoisted_5 = /*#__PURE__*/_createElementVNode("div", {
|
|
15
|
+
class: "ptr-arrow"
|
|
16
|
+
}, null, -1);
|
|
17
|
+
function render(_ctx, _cache) {
|
|
18
|
+
const _component_f7_preloader = _resolveComponent("f7-preloader");
|
|
19
|
+
return _openBlock(), _createElementBlock("div", {
|
|
20
|
+
ref: "elRef",
|
|
21
|
+
class: _normalizeClass(_ctx.classes),
|
|
22
|
+
"data-ptr-distance": _ctx.ptrDistance || undefined,
|
|
23
|
+
"data-ptr-mousewheel": _ctx.ptrMousewheel || undefined,
|
|
24
|
+
"data-infinite-distance": _ctx.infiniteDistance || undefined
|
|
25
|
+
}, [_ctx.ptr && _ctx.ptrPreloader && !_ctx.ptrBottom ? (_openBlock(), _createElementBlock("div", _hoisted_2, [_createVNode(_component_f7_preloader), _hoisted_3])) : _createCommentVNode("", true), _ctx.infinite && _ctx.infinitePreloader && _ctx.infiniteTop ? (_openBlock(), _createBlock(_component_f7_preloader, {
|
|
26
|
+
key: 1,
|
|
27
|
+
class: "infinite-scroll-preloader"
|
|
28
|
+
})) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "default"), _ctx.infinite && _ctx.infinitePreloader && !_ctx.infiniteTop ? (_openBlock(), _createBlock(_component_f7_preloader, {
|
|
29
|
+
key: 2,
|
|
30
|
+
class: "infinite-scroll-preloader"
|
|
31
|
+
})) : _createCommentVNode("", true), _ctx.ptr && _ctx.ptrPreloader && _ctx.ptrBottom ? (_openBlock(), _createElementBlock("div", _hoisted_4, [_createVNode(_component_f7_preloader), _hoisted_5])) : _createCommentVNode("", true)], 10, _hoisted_1);
|
|
32
|
+
}
|
|
33
|
+
import { computed, ref, onMounted, onBeforeUnmount } from 'vue';
|
|
34
|
+
import { classNames } from '../shared/utils.js';
|
|
35
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
36
|
+
import f7Preloader from './preloader.js';
|
|
37
|
+
import { useTab } from '../shared/use-tab.js';
|
|
38
|
+
import { f7ready, f7 } from '../shared/f7.js';
|
|
39
|
+
export default {
|
|
40
|
+
name: 'f7-page-content',
|
|
41
|
+
render,
|
|
42
|
+
components: {
|
|
43
|
+
f7Preloader
|
|
44
|
+
},
|
|
45
|
+
props: {
|
|
46
|
+
tab: Boolean,
|
|
47
|
+
tabActive: Boolean,
|
|
48
|
+
ptr: Boolean,
|
|
49
|
+
ptrDistance: Number,
|
|
50
|
+
ptrPreloader: {
|
|
51
|
+
type: Boolean,
|
|
52
|
+
default: true
|
|
53
|
+
},
|
|
54
|
+
ptrBottom: Boolean,
|
|
55
|
+
ptrMousewheel: Boolean,
|
|
56
|
+
infinite: Boolean,
|
|
57
|
+
infiniteTop: Boolean,
|
|
58
|
+
infiniteDistance: Number,
|
|
59
|
+
infinitePreloader: {
|
|
60
|
+
type: Boolean,
|
|
61
|
+
default: true
|
|
62
|
+
},
|
|
63
|
+
hideBarsOnScroll: Boolean,
|
|
64
|
+
hideNavbarOnScroll: Boolean,
|
|
65
|
+
hideToolbarOnScroll: Boolean,
|
|
66
|
+
messagesContent: Boolean,
|
|
67
|
+
loginScreen: Boolean,
|
|
68
|
+
...colorProps
|
|
69
|
+
},
|
|
70
|
+
emits: ['ptr:pullstart', 'ptr:pullmove', 'ptr:pullend', 'ptr:refresh', 'ptr:done', 'infinite', 'ptrPullStart', 'ptrPullMove', 'ptrPullEnd', 'ptrRefresh', 'ptrDone', 'tab:hide', 'tab:show'],
|
|
71
|
+
setup(props, _ref) {
|
|
72
|
+
let {
|
|
73
|
+
emit
|
|
74
|
+
} = _ref;
|
|
75
|
+
const elRef = ref(null);
|
|
76
|
+
const onPtrPullStart = el => {
|
|
77
|
+
if (elRef.value !== el) return;
|
|
78
|
+
emit('ptr:pullstart');
|
|
79
|
+
emit('ptrPullStart');
|
|
80
|
+
};
|
|
81
|
+
const onPtrPullMove = el => {
|
|
82
|
+
if (elRef.value !== el) return;
|
|
83
|
+
emit('ptr:pullmove');
|
|
84
|
+
emit('ptrPullMove');
|
|
85
|
+
};
|
|
86
|
+
const onPtrPullEnd = el => {
|
|
87
|
+
if (elRef.value !== el) return;
|
|
88
|
+
emit('ptr:pullend');
|
|
89
|
+
emit('ptrPullEnd');
|
|
90
|
+
};
|
|
91
|
+
const onPtrRefresh = (el, done) => {
|
|
92
|
+
if (elRef.value !== el) return;
|
|
93
|
+
emit('ptr:refresh', done);
|
|
94
|
+
emit('ptrRefresh', done);
|
|
95
|
+
};
|
|
96
|
+
const onPtrDone = el => {
|
|
97
|
+
if (elRef.value !== el) return;
|
|
98
|
+
emit('ptr:done');
|
|
99
|
+
emit('ptrDone');
|
|
100
|
+
};
|
|
101
|
+
const onInfinite = el => {
|
|
102
|
+
if (elRef.value !== el) return;
|
|
103
|
+
emit('infinite');
|
|
104
|
+
};
|
|
105
|
+
useTab(elRef, emit);
|
|
106
|
+
onMounted(() => {
|
|
107
|
+
f7ready(() => {
|
|
108
|
+
if (props.ptr) {
|
|
109
|
+
f7.on('ptrPullStart', onPtrPullStart);
|
|
110
|
+
f7.on('ptrPullMove', onPtrPullMove);
|
|
111
|
+
f7.on('ptrPullEnd', onPtrPullEnd);
|
|
112
|
+
f7.on('ptrRefresh', onPtrRefresh);
|
|
113
|
+
f7.on('ptrDone', onPtrDone);
|
|
114
|
+
}
|
|
115
|
+
if (props.infinite) {
|
|
116
|
+
f7.on('infinite', onInfinite);
|
|
117
|
+
}
|
|
118
|
+
});
|
|
119
|
+
});
|
|
120
|
+
onBeforeUnmount(() => {
|
|
121
|
+
if (!f7) return;
|
|
122
|
+
f7.off('ptrPullStart', onPtrPullStart);
|
|
123
|
+
f7.off('ptrPullMove', onPtrPullMove);
|
|
124
|
+
f7.off('ptrPullEnd', onPtrPullEnd);
|
|
125
|
+
f7.off('ptrRefresh', onPtrRefresh);
|
|
126
|
+
f7.off('ptrDone', onPtrDone);
|
|
127
|
+
f7.off('infinite', onInfinite);
|
|
128
|
+
});
|
|
129
|
+
const classes = computed(() => classNames('page-content', {
|
|
130
|
+
tab: props.tab,
|
|
131
|
+
'tab-active': props.tabActive,
|
|
132
|
+
'ptr-content': props.ptr,
|
|
133
|
+
'ptr-bottom': props.ptrBottom,
|
|
134
|
+
'infinite-scroll-content': props.infinite,
|
|
135
|
+
'infinite-scroll-top': props.infiniteTop,
|
|
136
|
+
'hide-bars-on-scroll': props.hideBarsOnScroll,
|
|
137
|
+
'hide-navbar-on-scroll': props.hideNavbarOnScroll,
|
|
138
|
+
'hide-toolbar-on-scroll': props.hideToolbarOnScroll,
|
|
139
|
+
'messages-content': props.messagesContent,
|
|
140
|
+
'login-screen-content': props.loginScreen
|
|
141
|
+
}, colorClasses(props)));
|
|
142
|
+
return {
|
|
143
|
+
elRef,
|
|
144
|
+
classes
|
|
145
|
+
};
|
|
146
|
+
}
|
|
147
|
+
};
|
|
@@ -0,0 +1,150 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const Page: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
name: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
noNavbar: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
noToolbar: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
tabs: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
noSwipeback: {
|
|
25
|
+
type: BooleanConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
ptr: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
ptrDistance: {
|
|
33
|
+
type: NumberConstructor;
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
ptrBottom: {
|
|
37
|
+
type: BooleanConstructor;
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
ptrMousewheel: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
infinite: {
|
|
45
|
+
type: BooleanConstructor;
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
infiniteTop: {
|
|
49
|
+
type: BooleanConstructor;
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
infiniteDistance: {
|
|
53
|
+
type: NumberConstructor;
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
hideBarsOnScroll: {
|
|
57
|
+
type: BooleanConstructor;
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
hideNavbarOnScroll: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
hideToolbarOnScroll: {
|
|
65
|
+
type: BooleanConstructor;
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
messagesContent: {
|
|
69
|
+
type: BooleanConstructor;
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
loginScreen: {
|
|
73
|
+
type: BooleanConstructor;
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
withSubnavbar: {
|
|
77
|
+
type: BooleanConstructor;
|
|
78
|
+
default: undefined;
|
|
79
|
+
},
|
|
80
|
+
|
|
81
|
+
subnavbar: {
|
|
82
|
+
type: BooleanConstructor;
|
|
83
|
+
default: undefined;
|
|
84
|
+
},
|
|
85
|
+
|
|
86
|
+
withNavbarLarge: {
|
|
87
|
+
type: BooleanConstructor;
|
|
88
|
+
default: undefined;
|
|
89
|
+
},
|
|
90
|
+
|
|
91
|
+
navbarLarge: {
|
|
92
|
+
type: BooleanConstructor;
|
|
93
|
+
default: undefined;
|
|
94
|
+
},
|
|
95
|
+
|
|
96
|
+
pageContent: {
|
|
97
|
+
type: BooleanConstructor;
|
|
98
|
+
default: boolean;
|
|
99
|
+
},
|
|
100
|
+
|
|
101
|
+
ptrPreloader: {
|
|
102
|
+
type: BooleanConstructor;
|
|
103
|
+
default: boolean;
|
|
104
|
+
},
|
|
105
|
+
|
|
106
|
+
infinitePreloader: {
|
|
107
|
+
type: BooleanConstructor;
|
|
108
|
+
default: boolean;
|
|
109
|
+
},
|
|
110
|
+
|
|
111
|
+
color: {
|
|
112
|
+
type: StringConstructor;
|
|
113
|
+
},
|
|
114
|
+
|
|
115
|
+
colorTheme: {
|
|
116
|
+
type: StringConstructor;
|
|
117
|
+
},
|
|
118
|
+
|
|
119
|
+
textColor: {
|
|
120
|
+
type: StringConstructor;
|
|
121
|
+
},
|
|
122
|
+
|
|
123
|
+
bgColor: {
|
|
124
|
+
type: StringConstructor;
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
borderColor: {
|
|
128
|
+
type: StringConstructor;
|
|
129
|
+
},
|
|
130
|
+
|
|
131
|
+
rippleColor: {
|
|
132
|
+
type: StringConstructor;
|
|
133
|
+
},
|
|
134
|
+
|
|
135
|
+
dark: {
|
|
136
|
+
type: BooleanConstructor;
|
|
137
|
+
}
|
|
138
|
+
},
|
|
139
|
+
() => JSX.Element,
|
|
140
|
+
unknown,
|
|
141
|
+
{},
|
|
142
|
+
{},
|
|
143
|
+
ComponentOptionsMixin,
|
|
144
|
+
ComponentOptionsMixin,
|
|
145
|
+
("page:mounted" | "page:init" | "page:reinit" | "page:beforein" | "page:beforeout" | "page:afterout" | "page:afterin" | "page:beforeremove" | "page:beforeunmount" | "page:tabshow" | "page:tabhide" | "ptr:pullstart" | "ptr:pullmove" | "ptr:pullend" | "ptr:refresh" | "ptr:done" | "infinite")[],
|
|
146
|
+
"page:mounted" | "page:init" | "page:reinit" | "page:beforein" | "page:beforeout" | "page:afterout" | "page:afterin" | "page:beforeremove" | "page:beforeunmount" | "page:tabshow" | "page:tabhide" | "ptr:pullstart" | "ptr:pullmove" | "ptr:pullend" | "ptr:refresh" | "ptr:done" | "infinite"
|
|
147
|
+
>;
|
|
148
|
+
|
|
149
|
+
export default Page;
|
|
150
|
+
|