@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,107 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const Chip: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
media: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
text: {
|
|
13
|
+
type: StringConstructor | NumberConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
deleteable: {
|
|
17
|
+
type: BooleanConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
mediaBgColor: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
mediaTextColor: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
outline: {
|
|
29
|
+
type: BooleanConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
tooltip: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
tooltipTrigger: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
icon: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
iconMaterial: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
iconF7: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
iconIos: {
|
|
53
|
+
type: StringConstructor;
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
iconMd: {
|
|
57
|
+
type: StringConstructor;
|
|
58
|
+
},
|
|
59
|
+
|
|
60
|
+
iconColor: {
|
|
61
|
+
type: StringConstructor;
|
|
62
|
+
},
|
|
63
|
+
|
|
64
|
+
iconSize: {
|
|
65
|
+
type: StringConstructor | NumberConstructor;
|
|
66
|
+
},
|
|
67
|
+
|
|
68
|
+
color: {
|
|
69
|
+
type: StringConstructor;
|
|
70
|
+
},
|
|
71
|
+
|
|
72
|
+
colorTheme: {
|
|
73
|
+
type: StringConstructor;
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
textColor: {
|
|
77
|
+
type: StringConstructor;
|
|
78
|
+
},
|
|
79
|
+
|
|
80
|
+
bgColor: {
|
|
81
|
+
type: StringConstructor;
|
|
82
|
+
},
|
|
83
|
+
|
|
84
|
+
borderColor: {
|
|
85
|
+
type: StringConstructor;
|
|
86
|
+
},
|
|
87
|
+
|
|
88
|
+
rippleColor: {
|
|
89
|
+
type: StringConstructor;
|
|
90
|
+
},
|
|
91
|
+
|
|
92
|
+
dark: {
|
|
93
|
+
type: BooleanConstructor;
|
|
94
|
+
}
|
|
95
|
+
},
|
|
96
|
+
() => JSX.Element,
|
|
97
|
+
unknown,
|
|
98
|
+
{},
|
|
99
|
+
{},
|
|
100
|
+
ComponentOptionsMixin,
|
|
101
|
+
ComponentOptionsMixin,
|
|
102
|
+
("delete")[],
|
|
103
|
+
"delete"
|
|
104
|
+
>;
|
|
105
|
+
|
|
106
|
+
export default Chip;
|
|
107
|
+
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
import { resolveComponent as _resolveComponent, openBlock as _openBlock, createBlock as _createBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, renderSlot as _renderSlot, createTextVNode as _createTextVNode, normalizeClass as _normalizeClass, createElementBlock as _createElementBlock } from "vue";
|
|
2
|
+
const _hoisted_1 = {
|
|
3
|
+
key: 1,
|
|
4
|
+
class: "chip-label"
|
|
5
|
+
};
|
|
6
|
+
function render(_ctx, _cache) {
|
|
7
|
+
const _component_f7_use_icon = _resolveComponent("f7-use-icon");
|
|
8
|
+
return _openBlock(), _createElementBlock("div", {
|
|
9
|
+
ref: "elRef",
|
|
10
|
+
class: _normalizeClass(_ctx.classes)
|
|
11
|
+
}, [_ctx.hasMedia ? (_openBlock(), _createElementBlock("div", {
|
|
12
|
+
key: 0,
|
|
13
|
+
class: _normalizeClass(_ctx.mediaClasses)
|
|
14
|
+
}, [_ctx.icon ? (_openBlock(), _createBlock(_component_f7_use_icon, {
|
|
15
|
+
key: 0,
|
|
16
|
+
icon: _ctx.icon
|
|
17
|
+
}, null, 8, ["icon"])) : _createCommentVNode("", true), _createTextVNode(" " + _toDisplayString(_ctx.media) + " ", 1), _renderSlot(_ctx.$slots, "media")], 2)) : _createCommentVNode("", true), _ctx.hasLabel ? (_openBlock(), _createElementBlock("div", _hoisted_1, [_createTextVNode(_toDisplayString(_ctx.text) + " ", 1), _renderSlot(_ctx.$slots, "text"), _renderSlot(_ctx.$slots, "default")])) : _createCommentVNode("", true), _ctx.deleteable ? (_openBlock(), _createElementBlock("a", {
|
|
18
|
+
key: 2,
|
|
19
|
+
class: "chip-delete",
|
|
20
|
+
onClick: _cache[0] || (_cache[0] = function () {
|
|
21
|
+
return _ctx.onDeleteClick && _ctx.onDeleteClick(...arguments);
|
|
22
|
+
})
|
|
23
|
+
})) : _createCommentVNode("", true)], 2);
|
|
24
|
+
}
|
|
25
|
+
import { ref, computed } from 'vue';
|
|
26
|
+
import { classNames } from '../shared/utils.js';
|
|
27
|
+
import { colorClasses, colorProps, iconProps } from '../shared/mixins.js';
|
|
28
|
+
import { useTooltip } from '../shared/use-tooltip.js';
|
|
29
|
+
import { useIcon } from '../shared/use-icon.js';
|
|
30
|
+
import f7UseIcon from './use-icon.js';
|
|
31
|
+
export default {
|
|
32
|
+
name: 'f7-chip',
|
|
33
|
+
render,
|
|
34
|
+
components: {
|
|
35
|
+
f7UseIcon
|
|
36
|
+
},
|
|
37
|
+
props: {
|
|
38
|
+
media: String,
|
|
39
|
+
text: [String, Number],
|
|
40
|
+
deleteable: Boolean,
|
|
41
|
+
mediaBgColor: String,
|
|
42
|
+
mediaTextColor: String,
|
|
43
|
+
outline: Boolean,
|
|
44
|
+
tooltip: String,
|
|
45
|
+
tooltipTrigger: String,
|
|
46
|
+
...iconProps,
|
|
47
|
+
...colorProps
|
|
48
|
+
},
|
|
49
|
+
emits: ['delete'],
|
|
50
|
+
setup(props, _ref) {
|
|
51
|
+
let {
|
|
52
|
+
slots,
|
|
53
|
+
emit
|
|
54
|
+
} = _ref;
|
|
55
|
+
const elRef = ref(null);
|
|
56
|
+
const onDeleteClick = event => {
|
|
57
|
+
emit('delete', event);
|
|
58
|
+
};
|
|
59
|
+
useTooltip(elRef, props);
|
|
60
|
+
const icon = computed(() => useIcon(props));
|
|
61
|
+
const mediaClasses = computed(() => classNames('chip-media', props.mediaTextColor && `text-color-${props.mediaTextColor}`, props.mediaBgColor && `bg-color-${props.mediaBgColor}`));
|
|
62
|
+
const classes = computed(() => classNames('chip', {
|
|
63
|
+
'chip-outline': props.outline
|
|
64
|
+
}, colorClasses(props)));
|
|
65
|
+
const hasLabel = computed(() => {
|
|
66
|
+
return props.text || slots && (slots.text || slots.default);
|
|
67
|
+
});
|
|
68
|
+
const hasMedia = computed(() => {
|
|
69
|
+
return props.media || icon.value || slots && slots.media;
|
|
70
|
+
});
|
|
71
|
+
return {
|
|
72
|
+
classes,
|
|
73
|
+
icon,
|
|
74
|
+
mediaClasses,
|
|
75
|
+
elRef,
|
|
76
|
+
hasLabel,
|
|
77
|
+
hasMedia,
|
|
78
|
+
onDeleteClick
|
|
79
|
+
};
|
|
80
|
+
}
|
|
81
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const FabBackdrop: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
color: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
colorTheme: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
textColor: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
bgColor: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
borderColor: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
rippleColor: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
dark: {
|
|
33
|
+
type: BooleanConstructor;
|
|
34
|
+
}
|
|
35
|
+
},
|
|
36
|
+
() => JSX.Element,
|
|
37
|
+
unknown,
|
|
38
|
+
{},
|
|
39
|
+
{},
|
|
40
|
+
ComponentOptionsMixin,
|
|
41
|
+
ComponentOptionsMixin,
|
|
42
|
+
|
|
43
|
+
>;
|
|
44
|
+
|
|
45
|
+
export default FabBackdrop;
|
|
46
|
+
|
|
@@ -0,0 +1,22 @@
|
|
|
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
|
+
class: _normalizeClass(_ctx.classes)
|
|
5
|
+
}, [_renderSlot(_ctx.$slots, "default")], 2);
|
|
6
|
+
}
|
|
7
|
+
import { computed } from 'vue';
|
|
8
|
+
import { classNames } from '../shared/utils.js';
|
|
9
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
10
|
+
export default {
|
|
11
|
+
name: 'f7-fab-backdrop',
|
|
12
|
+
render,
|
|
13
|
+
props: {
|
|
14
|
+
...colorProps
|
|
15
|
+
},
|
|
16
|
+
setup(props) {
|
|
17
|
+
const classes = computed(() => classNames('fab-backdrop', colorClasses(props)));
|
|
18
|
+
return {
|
|
19
|
+
classes
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
};
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const FabButton: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
fabClose: {
|
|
9
|
+
type: BooleanConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
label: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
target: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
tooltip: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
tooltipTrigger: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
color: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
colorTheme: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
textColor: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
bgColor: {
|
|
41
|
+
type: StringConstructor;
|
|
42
|
+
},
|
|
43
|
+
|
|
44
|
+
borderColor: {
|
|
45
|
+
type: StringConstructor;
|
|
46
|
+
},
|
|
47
|
+
|
|
48
|
+
rippleColor: {
|
|
49
|
+
type: StringConstructor;
|
|
50
|
+
},
|
|
51
|
+
|
|
52
|
+
dark: {
|
|
53
|
+
type: BooleanConstructor;
|
|
54
|
+
}
|
|
55
|
+
},
|
|
56
|
+
() => JSX.Element,
|
|
57
|
+
unknown,
|
|
58
|
+
{},
|
|
59
|
+
{},
|
|
60
|
+
ComponentOptionsMixin,
|
|
61
|
+
ComponentOptionsMixin,
|
|
62
|
+
("click")[],
|
|
63
|
+
"click"
|
|
64
|
+
>;
|
|
65
|
+
|
|
66
|
+
export default FabButton;
|
|
67
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { renderSlot as _renderSlot, toDisplayString as _toDisplayString, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, normalizeClass as _normalizeClass } from "vue";
|
|
2
|
+
const _hoisted_1 = ["target"];
|
|
3
|
+
const _hoisted_2 = {
|
|
4
|
+
key: 0,
|
|
5
|
+
class: "fab-label"
|
|
6
|
+
};
|
|
7
|
+
function render(_ctx, _cache) {
|
|
8
|
+
return _openBlock(), _createElementBlock("a", {
|
|
9
|
+
ref: "elRef",
|
|
10
|
+
class: _normalizeClass(_ctx.classes),
|
|
11
|
+
target: _ctx.target,
|
|
12
|
+
onClick: _cache[0] || (_cache[0] = function () {
|
|
13
|
+
return _ctx.onClick && _ctx.onClick(...arguments);
|
|
14
|
+
})
|
|
15
|
+
}, [_renderSlot(_ctx.$slots, "default"), _ctx.label ? (_openBlock(), _createElementBlock("span", _hoisted_2, _toDisplayString(_ctx.label), 1)) : _createCommentVNode("", true)], 10, _hoisted_1);
|
|
16
|
+
}
|
|
17
|
+
import { computed, ref } from 'vue';
|
|
18
|
+
import { classNames } from '../shared/utils.js';
|
|
19
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
20
|
+
import { useTooltip } from '../shared/use-tooltip.js';
|
|
21
|
+
export default {
|
|
22
|
+
name: 'f7-fab-button',
|
|
23
|
+
render,
|
|
24
|
+
props: {
|
|
25
|
+
fabClose: Boolean,
|
|
26
|
+
label: String,
|
|
27
|
+
target: String,
|
|
28
|
+
tooltip: String,
|
|
29
|
+
tooltipTrigger: String,
|
|
30
|
+
...colorProps
|
|
31
|
+
},
|
|
32
|
+
emits: ['click'],
|
|
33
|
+
setup(props, _ref) {
|
|
34
|
+
let {
|
|
35
|
+
emit
|
|
36
|
+
} = _ref;
|
|
37
|
+
const elRef = ref(null);
|
|
38
|
+
const onClick = e => {
|
|
39
|
+
emit('click', e);
|
|
40
|
+
};
|
|
41
|
+
useTooltip(elRef, props);
|
|
42
|
+
const classes = computed(() => classNames({
|
|
43
|
+
'fab-close': props.fabClose,
|
|
44
|
+
'fab-label-button': props.label
|
|
45
|
+
}, colorClasses(props)));
|
|
46
|
+
return {
|
|
47
|
+
classes,
|
|
48
|
+
onClick,
|
|
49
|
+
elRef
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
};
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const FabButtons: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
position: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
default: string;
|
|
11
|
+
},
|
|
12
|
+
|
|
13
|
+
color: {
|
|
14
|
+
type: StringConstructor;
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
colorTheme: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
textColor: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
bgColor: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
borderColor: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
rippleColor: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
dark: {
|
|
38
|
+
type: BooleanConstructor;
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
() => JSX.Element,
|
|
42
|
+
unknown,
|
|
43
|
+
{},
|
|
44
|
+
{},
|
|
45
|
+
ComponentOptionsMixin,
|
|
46
|
+
ComponentOptionsMixin,
|
|
47
|
+
|
|
48
|
+
>;
|
|
49
|
+
|
|
50
|
+
export default FabButtons;
|
|
51
|
+
|
|
@@ -0,0 +1,26 @@
|
|
|
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
|
+
class: _normalizeClass(_ctx.classes)
|
|
5
|
+
}, [_renderSlot(_ctx.$slots, "default")], 2);
|
|
6
|
+
}
|
|
7
|
+
import { computed } from 'vue';
|
|
8
|
+
import { classNames } from '../shared/utils.js';
|
|
9
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
10
|
+
export default {
|
|
11
|
+
name: 'f7-fab-buttons',
|
|
12
|
+
render,
|
|
13
|
+
props: {
|
|
14
|
+
position: {
|
|
15
|
+
type: String,
|
|
16
|
+
default: 'top'
|
|
17
|
+
},
|
|
18
|
+
...colorProps
|
|
19
|
+
},
|
|
20
|
+
setup(props) {
|
|
21
|
+
const classes = computed(() => classNames('fab-buttons', `fab-buttons-${props.position}`, colorClasses(props)));
|
|
22
|
+
return {
|
|
23
|
+
classes
|
|
24
|
+
};
|
|
25
|
+
}
|
|
26
|
+
};
|
|
@@ -0,0 +1,76 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const Fab: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
morphTo: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
href: {
|
|
13
|
+
type: BooleanConstructor | StringConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
target: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
text: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
tooltip: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
tooltipTrigger: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
position: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
default: string;
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
color: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
colorTheme: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
},
|
|
44
|
+
|
|
45
|
+
textColor: {
|
|
46
|
+
type: StringConstructor;
|
|
47
|
+
},
|
|
48
|
+
|
|
49
|
+
bgColor: {
|
|
50
|
+
type: StringConstructor;
|
|
51
|
+
},
|
|
52
|
+
|
|
53
|
+
borderColor: {
|
|
54
|
+
type: StringConstructor;
|
|
55
|
+
},
|
|
56
|
+
|
|
57
|
+
rippleColor: {
|
|
58
|
+
type: StringConstructor;
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
dark: {
|
|
62
|
+
type: BooleanConstructor;
|
|
63
|
+
}
|
|
64
|
+
},
|
|
65
|
+
() => JSX.Element,
|
|
66
|
+
unknown,
|
|
67
|
+
{},
|
|
68
|
+
{},
|
|
69
|
+
ComponentOptionsMixin,
|
|
70
|
+
ComponentOptionsMixin,
|
|
71
|
+
("click")[],
|
|
72
|
+
"click"
|
|
73
|
+
>;
|
|
74
|
+
|
|
75
|
+
export default Fab;
|
|
76
|
+
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import { h, computed, ref } from 'vue';
|
|
2
|
+
import { classNames } from '../shared/utils.js';
|
|
3
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
4
|
+
import { useTooltip } from '../shared/use-tooltip.js';
|
|
5
|
+
export default {
|
|
6
|
+
name: 'f7-fab',
|
|
7
|
+
props: {
|
|
8
|
+
morphTo: String,
|
|
9
|
+
href: [Boolean, String],
|
|
10
|
+
target: String,
|
|
11
|
+
text: String,
|
|
12
|
+
position: {
|
|
13
|
+
type: String,
|
|
14
|
+
default: 'right-bottom'
|
|
15
|
+
},
|
|
16
|
+
tooltip: String,
|
|
17
|
+
tooltipTrigger: String,
|
|
18
|
+
...colorProps
|
|
19
|
+
},
|
|
20
|
+
emits: ['click'],
|
|
21
|
+
setup(props, _ref) {
|
|
22
|
+
let {
|
|
23
|
+
emit,
|
|
24
|
+
slots
|
|
25
|
+
} = _ref;
|
|
26
|
+
const elRef = ref(null);
|
|
27
|
+
const onClick = e => {
|
|
28
|
+
emit('click', e);
|
|
29
|
+
};
|
|
30
|
+
useTooltip(elRef, props);
|
|
31
|
+
const hrefComputed = computed(() => {
|
|
32
|
+
let href = props.href;
|
|
33
|
+
if (href === true) href = '#';
|
|
34
|
+
if (href === false) href = undefined; // no href attribute
|
|
35
|
+
return href;
|
|
36
|
+
});
|
|
37
|
+
return () => {
|
|
38
|
+
const linkChildren = [];
|
|
39
|
+
const rootChildren = [];
|
|
40
|
+
let textEl;
|
|
41
|
+
let linkEl;
|
|
42
|
+
const {
|
|
43
|
+
link: linkSlots,
|
|
44
|
+
default: defaultSlots,
|
|
45
|
+
root: rootSlots,
|
|
46
|
+
text: textSlots
|
|
47
|
+
} = slots;
|
|
48
|
+
if (defaultSlots) {
|
|
49
|
+
defaultSlots().forEach(vnode => {
|
|
50
|
+
if (typeof vnode === 'undefined') return;
|
|
51
|
+
const tag = vnode.type && vnode.type.name ? vnode.type.name : vnode.type;
|
|
52
|
+
if (tag === 'FabButtons' || tag === 'f7-fab-buttons') rootChildren.push(vnode);else linkChildren.push(vnode);
|
|
53
|
+
});
|
|
54
|
+
}
|
|
55
|
+
if (props.text || textSlots) {
|
|
56
|
+
textEl = h('div', {
|
|
57
|
+
class: 'fab-text'
|
|
58
|
+
}, [props.text, textSlots && textSlots()]);
|
|
59
|
+
}
|
|
60
|
+
if (linkChildren.length || linkSlots || textEl) {
|
|
61
|
+
linkEl = h('a', {
|
|
62
|
+
target: props.target,
|
|
63
|
+
href: hrefComputed.value,
|
|
64
|
+
onClick
|
|
65
|
+
}, [linkChildren, textEl, linkSlots && linkSlots()]);
|
|
66
|
+
}
|
|
67
|
+
const classes = classNames('fab', `fab-${props.position}`, {
|
|
68
|
+
'fab-morph': props.morphTo,
|
|
69
|
+
'fab-extended': typeof textEl !== 'undefined'
|
|
70
|
+
}, colorClasses(props));
|
|
71
|
+
return h('div', {
|
|
72
|
+
class: classes,
|
|
73
|
+
'data-morph-to': props.morphTo,
|
|
74
|
+
ref: elRef
|
|
75
|
+
}, [linkEl, rootChildren, rootSlots && rootSlots()]);
|
|
76
|
+
};
|
|
77
|
+
}
|
|
78
|
+
};
|
|
@@ -0,0 +1,91 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const Gauge: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
valueText: {
|
|
9
|
+
type: NumberConstructor | StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
labelText: {
|
|
13
|
+
type: StringConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
type: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
default: string;
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
value: {
|
|
22
|
+
type: NumberConstructor | StringConstructor;
|
|
23
|
+
default: number;
|
|
24
|
+
},
|
|
25
|
+
|
|
26
|
+
size: {
|
|
27
|
+
type: NumberConstructor | StringConstructor;
|
|
28
|
+
default: number;
|
|
29
|
+
},
|
|
30
|
+
|
|
31
|
+
bgColor: {
|
|
32
|
+
type: StringConstructor;
|
|
33
|
+
default: string;
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
borderBgColor: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
default: string;
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
borderColor: {
|
|
42
|
+
type: StringConstructor;
|
|
43
|
+
default: string;
|
|
44
|
+
},
|
|
45
|
+
|
|
46
|
+
borderWidth: {
|
|
47
|
+
type: NumberConstructor | StringConstructor;
|
|
48
|
+
default: number;
|
|
49
|
+
},
|
|
50
|
+
|
|
51
|
+
valueTextColor: {
|
|
52
|
+
type: StringConstructor;
|
|
53
|
+
default: string;
|
|
54
|
+
},
|
|
55
|
+
|
|
56
|
+
valueFontSize: {
|
|
57
|
+
type: NumberConstructor | StringConstructor;
|
|
58
|
+
default: number;
|
|
59
|
+
},
|
|
60
|
+
|
|
61
|
+
valueFontWeight: {
|
|
62
|
+
type: NumberConstructor | StringConstructor;
|
|
63
|
+
default: number;
|
|
64
|
+
},
|
|
65
|
+
|
|
66
|
+
labelTextColor: {
|
|
67
|
+
type: StringConstructor;
|
|
68
|
+
default: string;
|
|
69
|
+
},
|
|
70
|
+
|
|
71
|
+
labelFontSize: {
|
|
72
|
+
type: NumberConstructor | StringConstructor;
|
|
73
|
+
default: number;
|
|
74
|
+
},
|
|
75
|
+
|
|
76
|
+
labelFontWeight: {
|
|
77
|
+
type: NumberConstructor | StringConstructor;
|
|
78
|
+
default: number;
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
() => JSX.Element,
|
|
82
|
+
unknown,
|
|
83
|
+
{},
|
|
84
|
+
{},
|
|
85
|
+
ComponentOptionsMixin,
|
|
86
|
+
ComponentOptionsMixin,
|
|
87
|
+
|
|
88
|
+
>;
|
|
89
|
+
|
|
90
|
+
export default Gauge;
|
|
91
|
+
|