@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,109 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const Actions: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
tabletFullscreen: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
opened: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
grid: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
animate: {
|
|
21
|
+
type: BooleanConstructor;
|
|
22
|
+
default: undefined;
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
target: {
|
|
26
|
+
type: StringConstructor | ObjectConstructor;
|
|
27
|
+
default: undefined;
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
convertToPopover: {
|
|
31
|
+
type: BooleanConstructor;
|
|
32
|
+
default: undefined;
|
|
33
|
+
},
|
|
34
|
+
|
|
35
|
+
forceToPopover: {
|
|
36
|
+
type: BooleanConstructor;
|
|
37
|
+
default: undefined;
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
backdrop: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
default: undefined;
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
backdropEl: {
|
|
46
|
+
type: StringConstructor | ObjectConstructor;
|
|
47
|
+
default: undefined;
|
|
48
|
+
},
|
|
49
|
+
|
|
50
|
+
closeByBackdropClick: {
|
|
51
|
+
type: BooleanConstructor;
|
|
52
|
+
default: undefined;
|
|
53
|
+
},
|
|
54
|
+
|
|
55
|
+
closeByOutsideClick: {
|
|
56
|
+
type: BooleanConstructor;
|
|
57
|
+
default: undefined;
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
closeOnEscape: {
|
|
61
|
+
type: BooleanConstructor;
|
|
62
|
+
default: undefined;
|
|
63
|
+
},
|
|
64
|
+
|
|
65
|
+
containerEl: {
|
|
66
|
+
type: StringConstructor | ObjectConstructor;
|
|
67
|
+
default: undefined;
|
|
68
|
+
},
|
|
69
|
+
|
|
70
|
+
color: {
|
|
71
|
+
type: StringConstructor;
|
|
72
|
+
},
|
|
73
|
+
|
|
74
|
+
colorTheme: {
|
|
75
|
+
type: StringConstructor;
|
|
76
|
+
},
|
|
77
|
+
|
|
78
|
+
textColor: {
|
|
79
|
+
type: StringConstructor;
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
bgColor: {
|
|
83
|
+
type: StringConstructor;
|
|
84
|
+
},
|
|
85
|
+
|
|
86
|
+
borderColor: {
|
|
87
|
+
type: StringConstructor;
|
|
88
|
+
},
|
|
89
|
+
|
|
90
|
+
rippleColor: {
|
|
91
|
+
type: StringConstructor;
|
|
92
|
+
},
|
|
93
|
+
|
|
94
|
+
dark: {
|
|
95
|
+
type: BooleanConstructor;
|
|
96
|
+
}
|
|
97
|
+
},
|
|
98
|
+
() => JSX.Element,
|
|
99
|
+
unknown,
|
|
100
|
+
{},
|
|
101
|
+
{},
|
|
102
|
+
ComponentOptionsMixin,
|
|
103
|
+
ComponentOptionsMixin,
|
|
104
|
+
("actions:open" | "actions:opened" | "actions:close" | "actions:closed" | "update:opened")[],
|
|
105
|
+
"actions:open" | "actions:opened" | "actions:close" | "actions:closed" | "update:opened"
|
|
106
|
+
>;
|
|
107
|
+
|
|
108
|
+
export default Actions;
|
|
109
|
+
|
|
@@ -0,0 +1,157 @@
|
|
|
1
|
+
import { renderSlot as _renderSlot, normalizeClass as _normalizeClass, openBlock as _openBlock, createElementBlock as _createElementBlock } from "vue";
|
|
2
|
+
function render(_ctx, _cache) {
|
|
3
|
+
return _openBlock(), _createElementBlock("div", {
|
|
4
|
+
ref: "elRef",
|
|
5
|
+
class: _normalizeClass(_ctx.classes)
|
|
6
|
+
}, [_renderSlot(_ctx.$slots, "default")], 2);
|
|
7
|
+
}
|
|
8
|
+
import { computed, ref, watch, onMounted, onBeforeUnmount } from 'vue';
|
|
9
|
+
import { classNames } from '../shared/utils.js';
|
|
10
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
11
|
+
import { f7ready, f7 } from '../shared/f7.js';
|
|
12
|
+
import { modalStateClasses } from '../shared/modal-state-classes.js';
|
|
13
|
+
export default {
|
|
14
|
+
name: 'f7-actions',
|
|
15
|
+
render,
|
|
16
|
+
props: {
|
|
17
|
+
tabletFullscreen: Boolean,
|
|
18
|
+
opened: Boolean,
|
|
19
|
+
animate: {
|
|
20
|
+
type: Boolean,
|
|
21
|
+
default: undefined
|
|
22
|
+
},
|
|
23
|
+
grid: Boolean,
|
|
24
|
+
target: {
|
|
25
|
+
type: [String, Object],
|
|
26
|
+
default: undefined
|
|
27
|
+
},
|
|
28
|
+
convertToPopover: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: undefined
|
|
31
|
+
},
|
|
32
|
+
forceToPopover: {
|
|
33
|
+
type: Boolean,
|
|
34
|
+
default: undefined
|
|
35
|
+
},
|
|
36
|
+
backdrop: {
|
|
37
|
+
type: Boolean,
|
|
38
|
+
default: undefined
|
|
39
|
+
},
|
|
40
|
+
backdropEl: {
|
|
41
|
+
type: [String, Object],
|
|
42
|
+
default: undefined
|
|
43
|
+
},
|
|
44
|
+
closeByBackdropClick: {
|
|
45
|
+
type: Boolean,
|
|
46
|
+
default: undefined
|
|
47
|
+
},
|
|
48
|
+
closeByOutsideClick: {
|
|
49
|
+
type: Boolean,
|
|
50
|
+
default: undefined
|
|
51
|
+
},
|
|
52
|
+
closeOnEscape: {
|
|
53
|
+
type: Boolean,
|
|
54
|
+
default: undefined
|
|
55
|
+
},
|
|
56
|
+
containerEl: {
|
|
57
|
+
type: [String, Object],
|
|
58
|
+
default: undefined
|
|
59
|
+
},
|
|
60
|
+
...colorProps
|
|
61
|
+
},
|
|
62
|
+
emits: ['actions:open', 'actions:opened', 'actions:close', 'actions:closed', 'update:opened'],
|
|
63
|
+
setup(props, _ref) {
|
|
64
|
+
let {
|
|
65
|
+
emit
|
|
66
|
+
} = _ref;
|
|
67
|
+
// eslint-disable-next-line
|
|
68
|
+
let f7Actions = null;
|
|
69
|
+
// eslint-disable-next-line
|
|
70
|
+
let isOpened = props.opened;
|
|
71
|
+
let isClosing = false;
|
|
72
|
+
const elRef = ref(null);
|
|
73
|
+
const onOpen = instance => {
|
|
74
|
+
isOpened = true;
|
|
75
|
+
isClosing = false;
|
|
76
|
+
emit('actions:open', instance);
|
|
77
|
+
emit('update:opened', true);
|
|
78
|
+
};
|
|
79
|
+
const onOpened = instance => {
|
|
80
|
+
emit('actions:opened', instance);
|
|
81
|
+
};
|
|
82
|
+
const onClose = instance => {
|
|
83
|
+
isOpened = false;
|
|
84
|
+
isClosing = true;
|
|
85
|
+
emit('actions:close', instance);
|
|
86
|
+
};
|
|
87
|
+
const onClosed = instance => {
|
|
88
|
+
isClosing = false;
|
|
89
|
+
emit('actions:closed', instance);
|
|
90
|
+
emit('update:opened', false);
|
|
91
|
+
};
|
|
92
|
+
watch(() => props.opened, value => {
|
|
93
|
+
if (!f7Actions) return;
|
|
94
|
+
if (value) {
|
|
95
|
+
f7Actions.open();
|
|
96
|
+
} else {
|
|
97
|
+
f7Actions.close();
|
|
98
|
+
}
|
|
99
|
+
});
|
|
100
|
+
onMounted(() => {
|
|
101
|
+
if (!elRef.value) return;
|
|
102
|
+
const {
|
|
103
|
+
target,
|
|
104
|
+
convertToPopover,
|
|
105
|
+
forceToPopover,
|
|
106
|
+
closeByBackdropClick,
|
|
107
|
+
closeByOutsideClick,
|
|
108
|
+
closeOnEscape,
|
|
109
|
+
backdrop,
|
|
110
|
+
backdropEl,
|
|
111
|
+
grid,
|
|
112
|
+
containerEl
|
|
113
|
+
} = props;
|
|
114
|
+
const params = {
|
|
115
|
+
el: elRef.value,
|
|
116
|
+
grid,
|
|
117
|
+
on: {
|
|
118
|
+
open: onOpen,
|
|
119
|
+
opened: onOpened,
|
|
120
|
+
close: onClose,
|
|
121
|
+
closed: onClosed
|
|
122
|
+
}
|
|
123
|
+
};
|
|
124
|
+
if (typeof target !== 'undefined') params.target = target;
|
|
125
|
+
if (typeof convertToPopover !== 'undefined') params.convertToPopover = convertToPopover;
|
|
126
|
+
if (typeof forceToPopover !== 'undefined') params.forceToPopover = forceToPopover;
|
|
127
|
+
if (typeof closeByBackdropClick !== 'undefined') params.closeByBackdropClick = closeByBackdropClick;
|
|
128
|
+
if (typeof closeByOutsideClick !== 'undefined') params.closeByOutsideClick = closeByOutsideClick;
|
|
129
|
+
if (typeof closeOnEscape !== 'undefined') params.closeOnEscape = closeOnEscape;
|
|
130
|
+
if (typeof backdrop !== 'undefined') params.backdrop = backdrop;
|
|
131
|
+
if (typeof backdropEl !== 'undefined') params.backdropEl = backdropEl;
|
|
132
|
+
if (typeof containerEl !== 'undefined') params.containerEl = containerEl;
|
|
133
|
+
f7ready(() => {
|
|
134
|
+
f7Actions = f7.popup.create(params);
|
|
135
|
+
if (props.opened) {
|
|
136
|
+
f7Actions.open(false);
|
|
137
|
+
}
|
|
138
|
+
});
|
|
139
|
+
});
|
|
140
|
+
onBeforeUnmount(() => {
|
|
141
|
+
if (f7Actions) {
|
|
142
|
+
f7Actions.destroy();
|
|
143
|
+
}
|
|
144
|
+
f7Actions = null;
|
|
145
|
+
});
|
|
146
|
+
const classes = computed(() => classNames('actions-modal', {
|
|
147
|
+
'actions-grid': props.grid
|
|
148
|
+
}, modalStateClasses({
|
|
149
|
+
isOpened,
|
|
150
|
+
isClosing
|
|
151
|
+
}), colorClasses(props)));
|
|
152
|
+
return {
|
|
153
|
+
elRef,
|
|
154
|
+
classes
|
|
155
|
+
};
|
|
156
|
+
}
|
|
157
|
+
};
|
|
@@ -0,0 +1,310 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const App: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
store: {
|
|
9
|
+
type: ObjectConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
name: {
|
|
13
|
+
type: any;
|
|
14
|
+
default: undefined;
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
theme: {
|
|
18
|
+
type: any;
|
|
19
|
+
default: undefined;
|
|
20
|
+
},
|
|
21
|
+
|
|
22
|
+
routes: {
|
|
23
|
+
type: any;
|
|
24
|
+
default: () => [];
|
|
25
|
+
},
|
|
26
|
+
|
|
27
|
+
darkMode: {
|
|
28
|
+
type: BooleanConstructor | StringConstructor | any;
|
|
29
|
+
default: boolean;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
colors: {
|
|
33
|
+
type: any;
|
|
34
|
+
default: () => undefined;
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
lazyModulesPath: {
|
|
38
|
+
type: any;
|
|
39
|
+
default: undefined;
|
|
40
|
+
},
|
|
41
|
+
|
|
42
|
+
initOnDeviceReady: {
|
|
43
|
+
type: any;
|
|
44
|
+
default: undefined;
|
|
45
|
+
},
|
|
46
|
+
|
|
47
|
+
iosTranslucentBars: {
|
|
48
|
+
type: any;
|
|
49
|
+
default: undefined;
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
iosTranslucentModals: {
|
|
53
|
+
type: any;
|
|
54
|
+
default: undefined;
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
userAgent: {
|
|
58
|
+
type: any;
|
|
59
|
+
default: undefined;
|
|
60
|
+
},
|
|
61
|
+
|
|
62
|
+
url: {
|
|
63
|
+
type: any;
|
|
64
|
+
default: undefined;
|
|
65
|
+
},
|
|
66
|
+
|
|
67
|
+
accordion: {
|
|
68
|
+
type: any;
|
|
69
|
+
default: () => undefined;
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
actions: {
|
|
73
|
+
type: any;
|
|
74
|
+
default: () => undefined;
|
|
75
|
+
},
|
|
76
|
+
|
|
77
|
+
areaChart: {
|
|
78
|
+
type: any;
|
|
79
|
+
default: () => undefined;
|
|
80
|
+
},
|
|
81
|
+
|
|
82
|
+
autocomplete: {
|
|
83
|
+
type: any;
|
|
84
|
+
default: () => undefined;
|
|
85
|
+
},
|
|
86
|
+
|
|
87
|
+
calendar: {
|
|
88
|
+
type: any;
|
|
89
|
+
default: () => undefined;
|
|
90
|
+
},
|
|
91
|
+
|
|
92
|
+
card: {
|
|
93
|
+
type: any;
|
|
94
|
+
default: () => undefined;
|
|
95
|
+
},
|
|
96
|
+
|
|
97
|
+
colorPicker: {
|
|
98
|
+
type: any;
|
|
99
|
+
default: () => undefined;
|
|
100
|
+
},
|
|
101
|
+
|
|
102
|
+
dialog: {
|
|
103
|
+
type: any;
|
|
104
|
+
default: () => undefined;
|
|
105
|
+
},
|
|
106
|
+
|
|
107
|
+
form: {
|
|
108
|
+
type: any;
|
|
109
|
+
default: () => undefined;
|
|
110
|
+
},
|
|
111
|
+
|
|
112
|
+
gauge: {
|
|
113
|
+
type: any;
|
|
114
|
+
default: () => undefined;
|
|
115
|
+
},
|
|
116
|
+
|
|
117
|
+
infiniteScroll: {
|
|
118
|
+
type: any;
|
|
119
|
+
default: () => undefined;
|
|
120
|
+
},
|
|
121
|
+
|
|
122
|
+
input: {
|
|
123
|
+
type: any;
|
|
124
|
+
default: () => undefined;
|
|
125
|
+
},
|
|
126
|
+
|
|
127
|
+
listIndex: {
|
|
128
|
+
type: any;
|
|
129
|
+
default: () => undefined;
|
|
130
|
+
},
|
|
131
|
+
|
|
132
|
+
loginScreen: {
|
|
133
|
+
type: any;
|
|
134
|
+
default: () => undefined;
|
|
135
|
+
},
|
|
136
|
+
|
|
137
|
+
messagebar: {
|
|
138
|
+
type: any;
|
|
139
|
+
default: () => undefined;
|
|
140
|
+
},
|
|
141
|
+
|
|
142
|
+
messages: {
|
|
143
|
+
type: any;
|
|
144
|
+
default: () => undefined;
|
|
145
|
+
},
|
|
146
|
+
|
|
147
|
+
navbar: {
|
|
148
|
+
type: any;
|
|
149
|
+
default: () => undefined;
|
|
150
|
+
},
|
|
151
|
+
|
|
152
|
+
notification: {
|
|
153
|
+
type: any;
|
|
154
|
+
default: () => undefined;
|
|
155
|
+
},
|
|
156
|
+
|
|
157
|
+
panel: {
|
|
158
|
+
type: any;
|
|
159
|
+
default: () => undefined;
|
|
160
|
+
},
|
|
161
|
+
|
|
162
|
+
photoBrowser: {
|
|
163
|
+
type: any;
|
|
164
|
+
default: () => undefined;
|
|
165
|
+
},
|
|
166
|
+
|
|
167
|
+
picker: {
|
|
168
|
+
type: any;
|
|
169
|
+
default: () => undefined;
|
|
170
|
+
},
|
|
171
|
+
|
|
172
|
+
pieChart: {
|
|
173
|
+
type: any;
|
|
174
|
+
default: () => undefined;
|
|
175
|
+
},
|
|
176
|
+
|
|
177
|
+
popover: {
|
|
178
|
+
type: any;
|
|
179
|
+
default: () => undefined;
|
|
180
|
+
},
|
|
181
|
+
|
|
182
|
+
popup: {
|
|
183
|
+
type: any;
|
|
184
|
+
default: () => undefined;
|
|
185
|
+
},
|
|
186
|
+
|
|
187
|
+
range: {
|
|
188
|
+
type: any;
|
|
189
|
+
default: () => undefined;
|
|
190
|
+
},
|
|
191
|
+
|
|
192
|
+
searchbar: {
|
|
193
|
+
type: any;
|
|
194
|
+
default: () => undefined;
|
|
195
|
+
},
|
|
196
|
+
|
|
197
|
+
sheet: {
|
|
198
|
+
type: any;
|
|
199
|
+
default: () => undefined;
|
|
200
|
+
},
|
|
201
|
+
|
|
202
|
+
smartSelect: {
|
|
203
|
+
type: any;
|
|
204
|
+
default: () => undefined;
|
|
205
|
+
},
|
|
206
|
+
|
|
207
|
+
sortable: {
|
|
208
|
+
type: any;
|
|
209
|
+
default: () => undefined;
|
|
210
|
+
},
|
|
211
|
+
|
|
212
|
+
statusbar: {
|
|
213
|
+
type: any;
|
|
214
|
+
default: () => undefined;
|
|
215
|
+
},
|
|
216
|
+
|
|
217
|
+
stepper: {
|
|
218
|
+
type: any;
|
|
219
|
+
default: () => undefined;
|
|
220
|
+
},
|
|
221
|
+
|
|
222
|
+
swipeout: {
|
|
223
|
+
type: any;
|
|
224
|
+
default: () => undefined;
|
|
225
|
+
},
|
|
226
|
+
|
|
227
|
+
textEditor: {
|
|
228
|
+
type: any;
|
|
229
|
+
default: () => undefined;
|
|
230
|
+
},
|
|
231
|
+
|
|
232
|
+
toast: {
|
|
233
|
+
type: any;
|
|
234
|
+
default: () => undefined;
|
|
235
|
+
},
|
|
236
|
+
|
|
237
|
+
toolbar: {
|
|
238
|
+
type: any;
|
|
239
|
+
default: () => undefined;
|
|
240
|
+
},
|
|
241
|
+
|
|
242
|
+
tooltip: {
|
|
243
|
+
type: any;
|
|
244
|
+
default: () => undefined;
|
|
245
|
+
},
|
|
246
|
+
|
|
247
|
+
view: {
|
|
248
|
+
type: any;
|
|
249
|
+
default: () => undefined;
|
|
250
|
+
},
|
|
251
|
+
|
|
252
|
+
virtualList: {
|
|
253
|
+
type: any;
|
|
254
|
+
default: () => undefined;
|
|
255
|
+
},
|
|
256
|
+
|
|
257
|
+
clicks: {
|
|
258
|
+
type: any;
|
|
259
|
+
default: () => undefined;
|
|
260
|
+
},
|
|
261
|
+
|
|
262
|
+
serviceWorker: {
|
|
263
|
+
type: any;
|
|
264
|
+
default: () => undefined;
|
|
265
|
+
},
|
|
266
|
+
|
|
267
|
+
touch: {
|
|
268
|
+
type: any;
|
|
269
|
+
default: () => undefined;
|
|
270
|
+
},
|
|
271
|
+
|
|
272
|
+
color: {
|
|
273
|
+
type: StringConstructor;
|
|
274
|
+
},
|
|
275
|
+
|
|
276
|
+
colorTheme: {
|
|
277
|
+
type: StringConstructor;
|
|
278
|
+
},
|
|
279
|
+
|
|
280
|
+
textColor: {
|
|
281
|
+
type: StringConstructor;
|
|
282
|
+
},
|
|
283
|
+
|
|
284
|
+
bgColor: {
|
|
285
|
+
type: StringConstructor;
|
|
286
|
+
},
|
|
287
|
+
|
|
288
|
+
borderColor: {
|
|
289
|
+
type: StringConstructor;
|
|
290
|
+
},
|
|
291
|
+
|
|
292
|
+
rippleColor: {
|
|
293
|
+
type: StringConstructor;
|
|
294
|
+
},
|
|
295
|
+
|
|
296
|
+
dark: {
|
|
297
|
+
type: BooleanConstructor;
|
|
298
|
+
}
|
|
299
|
+
},
|
|
300
|
+
() => JSX.Element,
|
|
301
|
+
unknown,
|
|
302
|
+
{},
|
|
303
|
+
{},
|
|
304
|
+
ComponentOptionsMixin,
|
|
305
|
+
ComponentOptionsMixin,
|
|
306
|
+
|
|
307
|
+
>;
|
|
308
|
+
|
|
309
|
+
export default App;
|
|
310
|
+
|