@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,169 @@
|
|
|
1
|
+
import { renderSlot as _renderSlot, normalizeStyle as _normalizeStyle, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, toDisplayString as _toDisplayString, createTextVNode as _createTextVNode, createElementVNode as _createElementVNode, normalizeClass as _normalizeClass } from "vue";
|
|
2
|
+
const _hoisted_1 = {
|
|
3
|
+
class: "message-content"
|
|
4
|
+
};
|
|
5
|
+
const _hoisted_2 = {
|
|
6
|
+
key: 0,
|
|
7
|
+
class: "message-image"
|
|
8
|
+
};
|
|
9
|
+
const _hoisted_3 = ["src"];
|
|
10
|
+
const _hoisted_4 = {
|
|
11
|
+
key: 1,
|
|
12
|
+
class: "message-text-header"
|
|
13
|
+
};
|
|
14
|
+
const _hoisted_5 = {
|
|
15
|
+
key: 0,
|
|
16
|
+
class: "message-typing-indicator"
|
|
17
|
+
};
|
|
18
|
+
const _hoisted_6 = /*#__PURE__*/_createElementVNode("div", null, null, -1);
|
|
19
|
+
const _hoisted_7 = /*#__PURE__*/_createElementVNode("div", null, null, -1);
|
|
20
|
+
const _hoisted_8 = /*#__PURE__*/_createElementVNode("div", null, null, -1);
|
|
21
|
+
const _hoisted_9 = [_hoisted_6, _hoisted_7, _hoisted_8];
|
|
22
|
+
const _hoisted_10 = {
|
|
23
|
+
key: 3,
|
|
24
|
+
class: "message-text-footer"
|
|
25
|
+
};
|
|
26
|
+
function render(_ctx, _cache) {
|
|
27
|
+
return _openBlock(), _createElementBlock("div", {
|
|
28
|
+
class: _normalizeClass(_ctx.classes),
|
|
29
|
+
onClick: _cache[6] || (_cache[6] = function () {
|
|
30
|
+
return _ctx.onClick && _ctx.onClick(...arguments);
|
|
31
|
+
})
|
|
32
|
+
}, [_renderSlot(_ctx.$slots, "start"), _ctx.hasAvatar ? (_openBlock(), _createElementBlock("div", {
|
|
33
|
+
key: 0,
|
|
34
|
+
class: "message-avatar",
|
|
35
|
+
style: _normalizeStyle({
|
|
36
|
+
backgroundImage: _ctx.avatar && `url(${_ctx.avatar})`
|
|
37
|
+
}),
|
|
38
|
+
onClick: _cache[0] || (_cache[0] = function () {
|
|
39
|
+
return _ctx.onAvatarClick && _ctx.onAvatarClick(...arguments);
|
|
40
|
+
})
|
|
41
|
+
}, [_renderSlot(_ctx.$slots, "avatar")], 4)) : _createCommentVNode("", true), _createElementVNode("div", _hoisted_1, [_renderSlot(_ctx.$slots, "content-start"), _ctx.hasName ? (_openBlock(), _createElementBlock("div", {
|
|
42
|
+
key: 0,
|
|
43
|
+
class: "message-name",
|
|
44
|
+
onClick: _cache[1] || (_cache[1] = function () {
|
|
45
|
+
return _ctx.onNameClick && _ctx.onNameClick(...arguments);
|
|
46
|
+
})
|
|
47
|
+
}, [_createTextVNode(_toDisplayString(_ctx.name) + " ", 1), _renderSlot(_ctx.$slots, "name")])) : _createCommentVNode("", true), _ctx.hasHeader ? (_openBlock(), _createElementBlock("div", {
|
|
48
|
+
key: 1,
|
|
49
|
+
class: "message-header",
|
|
50
|
+
onClick: _cache[2] || (_cache[2] = function () {
|
|
51
|
+
return _ctx.onHeaderClick && _ctx.onHeaderClick(...arguments);
|
|
52
|
+
})
|
|
53
|
+
}, [_createTextVNode(_toDisplayString(_ctx.header) + " ", 1), _renderSlot(_ctx.$slots, "header")])) : _createCommentVNode("", true), _createElementVNode("div", {
|
|
54
|
+
class: "message-bubble",
|
|
55
|
+
onClick: _cache[4] || (_cache[4] = function () {
|
|
56
|
+
return _ctx.onBubbleClick && _ctx.onBubbleClick(...arguments);
|
|
57
|
+
})
|
|
58
|
+
}, [_renderSlot(_ctx.$slots, "bubble-start"), _ctx.hasImage ? (_openBlock(), _createElementBlock("div", _hoisted_2, [_renderSlot(_ctx.$slots, "image", {}, () => [_createElementVNode("img", {
|
|
59
|
+
src: _ctx.image
|
|
60
|
+
}, null, 8, _hoisted_3)])])) : _createCommentVNode("", true), _ctx.hasTextHeader ? (_openBlock(), _createElementBlock("div", _hoisted_4, [_createTextVNode(_toDisplayString(_ctx.textHeader) + " ", 1), _renderSlot(_ctx.$slots, "text-header")])) : _createCommentVNode("", true), _ctx.hasText ? (_openBlock(), _createElementBlock("div", {
|
|
61
|
+
key: 2,
|
|
62
|
+
class: "message-text",
|
|
63
|
+
onClick: _cache[3] || (_cache[3] = function () {
|
|
64
|
+
return _ctx.onTextClick && _ctx.onTextClick(...arguments);
|
|
65
|
+
})
|
|
66
|
+
}, [_createTextVNode(_toDisplayString(_ctx.text) + " ", 1), _renderSlot(_ctx.$slots, "text"), _ctx.typing ? (_openBlock(), _createElementBlock("div", _hoisted_5, _hoisted_9)) : _createCommentVNode("", true)])) : _createCommentVNode("", true), _ctx.hasTextFooter ? (_openBlock(), _createElementBlock("div", _hoisted_10, [_createTextVNode(_toDisplayString(_ctx.textFooter) + " ", 1), _renderSlot(_ctx.$slots, "text-footer")])) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "bubble-end"), _renderSlot(_ctx.$slots, "default")]), _ctx.hasFooter ? (_openBlock(), _createElementBlock("div", {
|
|
67
|
+
key: 2,
|
|
68
|
+
class: "message-footer",
|
|
69
|
+
onClick: _cache[5] || (_cache[5] = function () {
|
|
70
|
+
return _ctx.onFooterClick && _ctx.onFooterClick(...arguments);
|
|
71
|
+
})
|
|
72
|
+
}, [_createTextVNode(_toDisplayString(_ctx.footer) + " ", 1), _renderSlot(_ctx.$slots, "footer")])) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "content-end")]), _renderSlot(_ctx.$slots, "end")], 2);
|
|
73
|
+
}
|
|
74
|
+
import { computed } from 'vue';
|
|
75
|
+
import { classNames } from '../shared/utils.js';
|
|
76
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
77
|
+
export default {
|
|
78
|
+
name: 'f7-message',
|
|
79
|
+
render,
|
|
80
|
+
props: {
|
|
81
|
+
text: String,
|
|
82
|
+
name: String,
|
|
83
|
+
avatar: String,
|
|
84
|
+
type: {
|
|
85
|
+
type: String,
|
|
86
|
+
default: 'sent'
|
|
87
|
+
},
|
|
88
|
+
image: String,
|
|
89
|
+
header: String,
|
|
90
|
+
footer: String,
|
|
91
|
+
textHeader: String,
|
|
92
|
+
textFooter: String,
|
|
93
|
+
first: Boolean,
|
|
94
|
+
last: Boolean,
|
|
95
|
+
tail: Boolean,
|
|
96
|
+
sameName: Boolean,
|
|
97
|
+
sameHeader: Boolean,
|
|
98
|
+
sameFooter: Boolean,
|
|
99
|
+
sameAvatar: Boolean,
|
|
100
|
+
typing: Boolean,
|
|
101
|
+
...colorProps
|
|
102
|
+
},
|
|
103
|
+
emits: ['click', 'click:name', 'click:text', 'click:avatar', 'click:header', 'click:footer', 'click:bubble'],
|
|
104
|
+
setup(props, _ref) {
|
|
105
|
+
let {
|
|
106
|
+
emit,
|
|
107
|
+
slots
|
|
108
|
+
} = _ref;
|
|
109
|
+
const onClick = event => {
|
|
110
|
+
emit('click', event);
|
|
111
|
+
};
|
|
112
|
+
const onNameClick = event => {
|
|
113
|
+
emit('click:name', event);
|
|
114
|
+
};
|
|
115
|
+
const onTextClick = event => {
|
|
116
|
+
emit('click:text', event);
|
|
117
|
+
};
|
|
118
|
+
const onAvatarClick = event => {
|
|
119
|
+
emit('click:avatar', event);
|
|
120
|
+
};
|
|
121
|
+
const onHeaderClick = event => {
|
|
122
|
+
emit('click:header', event);
|
|
123
|
+
};
|
|
124
|
+
const onFooterClick = event => {
|
|
125
|
+
emit('click:footer', event);
|
|
126
|
+
};
|
|
127
|
+
const onBubbleClick = event => {
|
|
128
|
+
emit('click:bubble', event);
|
|
129
|
+
};
|
|
130
|
+
const classes = computed(() => classNames('message', {
|
|
131
|
+
'message-sent': props.type === 'sent',
|
|
132
|
+
'message-received': props.type === 'received',
|
|
133
|
+
'message-typing': props.typing,
|
|
134
|
+
'message-first': props.first,
|
|
135
|
+
'message-last': props.last,
|
|
136
|
+
'message-tail': props.tail,
|
|
137
|
+
'message-same-name': props.sameName,
|
|
138
|
+
'message-same-header': props.sameHeader,
|
|
139
|
+
'message-same-footer': props.sameFooter,
|
|
140
|
+
'message-same-avatar': props.sameAvatar
|
|
141
|
+
}, colorClasses(props)));
|
|
142
|
+
const hasAvatar = computed(() => slots.avatar || props.avatar);
|
|
143
|
+
const hasName = computed(() => slots.name || props.name);
|
|
144
|
+
const hasHeader = computed(() => slots.header || props.header);
|
|
145
|
+
const hasImage = computed(() => slots.image || props.image);
|
|
146
|
+
const hasTextHeader = computed(() => slots['text-header'] || props.textHeader);
|
|
147
|
+
const hasText = computed(() => slots.text || props.text || props.typing);
|
|
148
|
+
const hasTextFooter = computed(() => slots['text-footer'] || props.textFooter);
|
|
149
|
+
const hasFooter = computed(() => slots.footer || props.footer);
|
|
150
|
+
return {
|
|
151
|
+
classes,
|
|
152
|
+
onClick,
|
|
153
|
+
onNameClick,
|
|
154
|
+
onTextClick,
|
|
155
|
+
onAvatarClick,
|
|
156
|
+
onHeaderClick,
|
|
157
|
+
onFooterClick,
|
|
158
|
+
onBubbleClick,
|
|
159
|
+
hasAvatar,
|
|
160
|
+
hasName,
|
|
161
|
+
hasHeader,
|
|
162
|
+
hasImage,
|
|
163
|
+
hasTextHeader,
|
|
164
|
+
hasText,
|
|
165
|
+
hasTextFooter,
|
|
166
|
+
hasFooter
|
|
167
|
+
};
|
|
168
|
+
}
|
|
169
|
+
};
|
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const MessagebarAttachment: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
image: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
deletable: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
default: boolean;
|
|
15
|
+
},
|
|
16
|
+
|
|
17
|
+
color: {
|
|
18
|
+
type: StringConstructor;
|
|
19
|
+
},
|
|
20
|
+
|
|
21
|
+
colorTheme: {
|
|
22
|
+
type: StringConstructor;
|
|
23
|
+
},
|
|
24
|
+
|
|
25
|
+
textColor: {
|
|
26
|
+
type: StringConstructor;
|
|
27
|
+
},
|
|
28
|
+
|
|
29
|
+
bgColor: {
|
|
30
|
+
type: StringConstructor;
|
|
31
|
+
},
|
|
32
|
+
|
|
33
|
+
borderColor: {
|
|
34
|
+
type: StringConstructor;
|
|
35
|
+
},
|
|
36
|
+
|
|
37
|
+
rippleColor: {
|
|
38
|
+
type: StringConstructor;
|
|
39
|
+
},
|
|
40
|
+
|
|
41
|
+
dark: {
|
|
42
|
+
type: BooleanConstructor;
|
|
43
|
+
}
|
|
44
|
+
},
|
|
45
|
+
() => JSX.Element,
|
|
46
|
+
unknown,
|
|
47
|
+
{},
|
|
48
|
+
{},
|
|
49
|
+
ComponentOptionsMixin,
|
|
50
|
+
ComponentOptionsMixin,
|
|
51
|
+
("attachment:click" | "attachment:delete")[],
|
|
52
|
+
"attachment:click" | "attachment:delete"
|
|
53
|
+
>;
|
|
54
|
+
|
|
55
|
+
export default MessagebarAttachment;
|
|
56
|
+
|
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
import { openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, renderSlot as _renderSlot, normalizeClass as _normalizeClass } from "vue";
|
|
2
|
+
const _hoisted_1 = ["src"];
|
|
3
|
+
function render(_ctx, _cache) {
|
|
4
|
+
return _openBlock(), _createElementBlock("div", {
|
|
5
|
+
class: _normalizeClass(_ctx.classes),
|
|
6
|
+
onClick: _cache[1] || (_cache[1] = function () {
|
|
7
|
+
return _ctx.onClick && _ctx.onClick(...arguments);
|
|
8
|
+
})
|
|
9
|
+
}, [_ctx.image ? (_openBlock(), _createElementBlock("img", {
|
|
10
|
+
key: 0,
|
|
11
|
+
src: _ctx.image
|
|
12
|
+
}, null, 8, _hoisted_1)) : _createCommentVNode("", true), _ctx.deletable ? (_openBlock(), _createElementBlock("span", {
|
|
13
|
+
key: 1,
|
|
14
|
+
class: "messagebar-attachment-delete",
|
|
15
|
+
onClick: _cache[0] || (_cache[0] = function () {
|
|
16
|
+
return _ctx.onDeleteClick && _ctx.onDeleteClick(...arguments);
|
|
17
|
+
})
|
|
18
|
+
})) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "default")], 2);
|
|
19
|
+
}
|
|
20
|
+
import { computed } from 'vue';
|
|
21
|
+
import { classNames } from '../shared/utils.js';
|
|
22
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
23
|
+
export default {
|
|
24
|
+
name: 'f7-messagebar-attachment',
|
|
25
|
+
render,
|
|
26
|
+
props: {
|
|
27
|
+
image: String,
|
|
28
|
+
deletable: {
|
|
29
|
+
type: Boolean,
|
|
30
|
+
default: true
|
|
31
|
+
},
|
|
32
|
+
...colorProps
|
|
33
|
+
},
|
|
34
|
+
emits: ['attachment:click', 'attachment:delete'],
|
|
35
|
+
setup(props, _ref) {
|
|
36
|
+
let {
|
|
37
|
+
emit
|
|
38
|
+
} = _ref;
|
|
39
|
+
const onClick = event => {
|
|
40
|
+
emit('attachment:click', event);
|
|
41
|
+
};
|
|
42
|
+
const onDeleteClick = event => {
|
|
43
|
+
emit('attachment:delete', event);
|
|
44
|
+
};
|
|
45
|
+
const classes = computed(() => classNames('messagebar-attachment', colorClasses(props)));
|
|
46
|
+
return {
|
|
47
|
+
classes,
|
|
48
|
+
onClick,
|
|
49
|
+
onDeleteClick
|
|
50
|
+
};
|
|
51
|
+
}
|
|
52
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const MessagebarAttachments: 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 MessagebarAttachments;
|
|
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-messagebar-attachments',
|
|
12
|
+
render,
|
|
13
|
+
props: {
|
|
14
|
+
...colorProps
|
|
15
|
+
},
|
|
16
|
+
setup(props) {
|
|
17
|
+
const classes = computed(() => classNames('messagebar-attachments', colorClasses(props)));
|
|
18
|
+
return {
|
|
19
|
+
classes
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
};
|
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const MessagebarSheetImage: DefineComponent<
|
|
6
|
+
{
|
|
7
|
+
|
|
8
|
+
image: {
|
|
9
|
+
type: StringConstructor;
|
|
10
|
+
},
|
|
11
|
+
|
|
12
|
+
checked: {
|
|
13
|
+
type: BooleanConstructor;
|
|
14
|
+
},
|
|
15
|
+
|
|
16
|
+
color: {
|
|
17
|
+
type: StringConstructor;
|
|
18
|
+
},
|
|
19
|
+
|
|
20
|
+
colorTheme: {
|
|
21
|
+
type: StringConstructor;
|
|
22
|
+
},
|
|
23
|
+
|
|
24
|
+
textColor: {
|
|
25
|
+
type: StringConstructor;
|
|
26
|
+
},
|
|
27
|
+
|
|
28
|
+
bgColor: {
|
|
29
|
+
type: StringConstructor;
|
|
30
|
+
},
|
|
31
|
+
|
|
32
|
+
borderColor: {
|
|
33
|
+
type: StringConstructor;
|
|
34
|
+
},
|
|
35
|
+
|
|
36
|
+
rippleColor: {
|
|
37
|
+
type: StringConstructor;
|
|
38
|
+
},
|
|
39
|
+
|
|
40
|
+
dark: {
|
|
41
|
+
type: BooleanConstructor;
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
() => JSX.Element,
|
|
45
|
+
unknown,
|
|
46
|
+
{},
|
|
47
|
+
{},
|
|
48
|
+
ComponentOptionsMixin,
|
|
49
|
+
ComponentOptionsMixin,
|
|
50
|
+
("checked" | "unchecked" | "change" | "update:checked")[],
|
|
51
|
+
"checked" | "unchecked" | "change" | "update:checked"
|
|
52
|
+
>;
|
|
53
|
+
|
|
54
|
+
export default MessagebarSheetImage;
|
|
55
|
+
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import { createElementVNode as _createElementVNode, openBlock as _openBlock, createElementBlock as _createElementBlock, createCommentVNode as _createCommentVNode, renderSlot as _renderSlot, normalizeClass as _normalizeClass } from "vue";
|
|
2
|
+
const _hoisted_1 = ["checked"];
|
|
3
|
+
const _hoisted_2 = /*#__PURE__*/_createElementVNode("i", {
|
|
4
|
+
class: "icon icon-checkbox"
|
|
5
|
+
}, null, -1);
|
|
6
|
+
const _hoisted_3 = ["src"];
|
|
7
|
+
function render(_ctx, _cache) {
|
|
8
|
+
return _openBlock(), _createElementBlock("label", {
|
|
9
|
+
class: _normalizeClass(_ctx.classes)
|
|
10
|
+
}, [_createElementVNode("input", {
|
|
11
|
+
type: "checkbox",
|
|
12
|
+
checked: _ctx.checked,
|
|
13
|
+
onChange: _cache[0] || (_cache[0] = function () {
|
|
14
|
+
return _ctx.onChange && _ctx.onChange(...arguments);
|
|
15
|
+
})
|
|
16
|
+
}, null, 40, _hoisted_1), _hoisted_2, _ctx.image ? (_openBlock(), _createElementBlock("img", {
|
|
17
|
+
key: 0,
|
|
18
|
+
src: _ctx.image
|
|
19
|
+
}, null, 8, _hoisted_3)) : _createCommentVNode("", true), _renderSlot(_ctx.$slots, "default")], 2);
|
|
20
|
+
}
|
|
21
|
+
import { computed } from 'vue';
|
|
22
|
+
import { classNames } from '../shared/utils.js';
|
|
23
|
+
import { colorClasses, colorProps } from '../shared/mixins.js';
|
|
24
|
+
export default {
|
|
25
|
+
name: 'f7-messagebar-sheet-image',
|
|
26
|
+
render,
|
|
27
|
+
props: {
|
|
28
|
+
image: String,
|
|
29
|
+
checked: Boolean,
|
|
30
|
+
...colorProps
|
|
31
|
+
},
|
|
32
|
+
emits: ['checked', 'unchecked', 'change', 'update:checked'],
|
|
33
|
+
setup(props, _ref) {
|
|
34
|
+
let {
|
|
35
|
+
emit
|
|
36
|
+
} = _ref;
|
|
37
|
+
const onChange = event => {
|
|
38
|
+
if (event.target.checked) emit('checked', event);else emit('unchecked', event);
|
|
39
|
+
emit('update:checked', event.target.checked);
|
|
40
|
+
emit('change', event);
|
|
41
|
+
};
|
|
42
|
+
const classes = computed(() => classNames('messagebar-sheet-image', 'checkbox', colorClasses(props)));
|
|
43
|
+
return {
|
|
44
|
+
classes,
|
|
45
|
+
onChange
|
|
46
|
+
};
|
|
47
|
+
}
|
|
48
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const MessagebarSheetItem: 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 MessagebarSheetItem;
|
|
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-messagebar-sheet-item',
|
|
12
|
+
render,
|
|
13
|
+
props: {
|
|
14
|
+
...colorProps
|
|
15
|
+
},
|
|
16
|
+
setup(props) {
|
|
17
|
+
const classes = computed(() => classNames('messagebar-sheet-item', colorClasses(props)));
|
|
18
|
+
return {
|
|
19
|
+
classes
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
};
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
|
|
2
|
+
import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
declare const MessagebarSheet: 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 MessagebarSheet;
|
|
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-messagebar-sheet',
|
|
12
|
+
render,
|
|
13
|
+
props: {
|
|
14
|
+
...colorProps
|
|
15
|
+
},
|
|
16
|
+
setup(props) {
|
|
17
|
+
const classes = computed(() => classNames('messagebar-sheet', colorClasses(props)));
|
|
18
|
+
return {
|
|
19
|
+
classes
|
|
20
|
+
};
|
|
21
|
+
}
|
|
22
|
+
};
|