@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.
Files changed (199) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +33 -0
  3. package/components/accordion-content.d.ts +46 -0
  4. package/components/accordion-content.js +22 -0
  5. package/components/accordion-item.d.ts +51 -0
  6. package/components/accordion-item.js +77 -0
  7. package/components/accordion-toggle.d.ts +46 -0
  8. package/components/accordion-toggle.js +22 -0
  9. package/components/accordion.d.ts +50 -0
  10. package/components/accordion.js +23 -0
  11. package/components/actions-button.d.ts +56 -0
  12. package/components/actions-button.js +58 -0
  13. package/components/actions-group.d.ts +46 -0
  14. package/components/actions-group.js +22 -0
  15. package/components/actions-label.d.ts +51 -0
  16. package/components/actions-label.js +36 -0
  17. package/components/actions.d.ts +109 -0
  18. package/components/actions.js +157 -0
  19. package/components/app.d.ts +310 -0
  20. package/components/app.js +267 -0
  21. package/components/area-chart.d.ts +88 -0
  22. package/components/area-chart.js +364 -0
  23. package/components/badge.d.ts +54 -0
  24. package/components/badge.js +29 -0
  25. package/components/block-footer.d.ts +46 -0
  26. package/components/block-footer.js +22 -0
  27. package/components/block-header.d.ts +46 -0
  28. package/components/block-header.js +22 -0
  29. package/components/block-title.d.ts +54 -0
  30. package/components/block-title.js +35 -0
  31. package/components/block.d.ts +163 -0
  32. package/components/block.js +123 -0
  33. package/components/breadcrumbs-collapsed.d.ts +19 -0
  34. package/components/breadcrumbs-collapsed.js +21 -0
  35. package/components/breadcrumbs-item.d.ts +22 -0
  36. package/components/breadcrumbs-item.js +24 -0
  37. package/components/breadcrumbs-separator.d.ts +19 -0
  38. package/components/breadcrumbs-separator.js +20 -0
  39. package/components/breadcrumbs.d.ts +19 -0
  40. package/components/breadcrumbs.js +20 -0
  41. package/components/button.d.ts +371 -0
  42. package/components/button.js +182 -0
  43. package/components/card-content.d.ts +51 -0
  44. package/components/card-content.js +28 -0
  45. package/components/card-footer.d.ts +46 -0
  46. package/components/card-footer.js +22 -0
  47. package/components/card-header.d.ts +46 -0
  48. package/components/card-header.js +22 -0
  49. package/components/card.d.ts +145 -0
  50. package/components/card.js +192 -0
  51. package/components/checkbox.d.ts +72 -0
  52. package/components/checkbox.js +70 -0
  53. package/components/chip.d.ts +107 -0
  54. package/components/chip.js +81 -0
  55. package/components/fab-backdrop.d.ts +46 -0
  56. package/components/fab-backdrop.js +22 -0
  57. package/components/fab-button.d.ts +67 -0
  58. package/components/fab-button.js +52 -0
  59. package/components/fab-buttons.d.ts +51 -0
  60. package/components/fab-buttons.js +26 -0
  61. package/components/fab.d.ts +76 -0
  62. package/components/fab.js +78 -0
  63. package/components/gauge.d.ts +91 -0
  64. package/components/gauge.js +151 -0
  65. package/components/icon.d.ts +78 -0
  66. package/components/icon.js +100 -0
  67. package/components/input.d.ts +226 -0
  68. package/components/input.js +409 -0
  69. package/components/link.d.ts +287 -0
  70. package/components/link.js +129 -0
  71. package/components/list-button.d.ts +239 -0
  72. package/components/list-button.js +71 -0
  73. package/components/list-group.d.ts +71 -0
  74. package/components/list-group.js +53 -0
  75. package/components/list-index.d.ts +81 -0
  76. package/components/list-index.js +96 -0
  77. package/components/list-input.d.ts +245 -0
  78. package/components/list-input.js +415 -0
  79. package/components/list-item.d.ts +370 -0
  80. package/components/list-item.js +451 -0
  81. package/components/list.d.ts +236 -0
  82. package/components/list.js +222 -0
  83. package/components/login-screen-title.d.ts +46 -0
  84. package/components/login-screen-title.js +22 -0
  85. package/components/login-screen.d.ts +61 -0
  86. package/components/login-screen.js +104 -0
  87. package/components/message.d.ts +116 -0
  88. package/components/message.js +169 -0
  89. package/components/messagebar-attachment.d.ts +56 -0
  90. package/components/messagebar-attachment.js +52 -0
  91. package/components/messagebar-attachments.d.ts +46 -0
  92. package/components/messagebar-attachments.js +22 -0
  93. package/components/messagebar-sheet-image.d.ts +55 -0
  94. package/components/messagebar-sheet-image.js +48 -0
  95. package/components/messagebar-sheet-item.d.ts +46 -0
  96. package/components/messagebar-sheet-item.js +22 -0
  97. package/components/messagebar-sheet.d.ts +46 -0
  98. package/components/messagebar-sheet.js +22 -0
  99. package/components/messagebar.d.ts +117 -0
  100. package/components/messagebar.js +193 -0
  101. package/components/messages-title.d.ts +46 -0
  102. package/components/messages-title.js +22 -0
  103. package/components/messages.d.ts +116 -0
  104. package/components/messages.js +134 -0
  105. package/components/nav-left.d.ts +68 -0
  106. package/components/nav-left.js +66 -0
  107. package/components/nav-right.d.ts +50 -0
  108. package/components/nav-right.js +25 -0
  109. package/components/nav-title-large.d.ts +46 -0
  110. package/components/nav-title-large.js +25 -0
  111. package/components/nav-title.d.ts +58 -0
  112. package/components/nav-title.js +31 -0
  113. package/components/navbar.d.ts +110 -0
  114. package/components/navbar.js +248 -0
  115. package/components/page-content.d.ts +113 -0
  116. package/components/page-content.js +147 -0
  117. package/components/page.d.ts +150 -0
  118. package/components/page.js +331 -0
  119. package/components/panel.d.ts +139 -0
  120. package/components/panel.js +198 -0
  121. package/components/photo-browser.d.ts +164 -0
  122. package/components/photo-browser.js +181 -0
  123. package/components/pie-chart.d.ts +37 -0
  124. package/components/pie-chart.js +172 -0
  125. package/components/popover.d.ts +101 -0
  126. package/components/popover.js +157 -0
  127. package/components/popup.d.ts +99 -0
  128. package/components/popup.js +161 -0
  129. package/components/preloader.d.ts +50 -0
  130. package/components/preloader.js +65 -0
  131. package/components/progressbar.d.ts +54 -0
  132. package/components/progressbar.js +44 -0
  133. package/components/radio.d.ts +68 -0
  134. package/components/radio.js +59 -0
  135. package/components/range.d.ts +141 -0
  136. package/components/range.js +139 -0
  137. package/components/routable-modals.d.ts +19 -0
  138. package/components/routable-modals.js +58 -0
  139. package/components/searchbar.d.ts +182 -0
  140. package/components/searchbar.js +285 -0
  141. package/components/segmented.d.ts +87 -0
  142. package/components/segmented.js +53 -0
  143. package/components/sheet.d.ts +132 -0
  144. package/components/sheet.js +213 -0
  145. package/components/skeleton-avatar.d.ts +6 -0
  146. package/components/skeleton-avatar.js +3 -0
  147. package/components/skeleton-block.d.ts +6 -0
  148. package/components/skeleton-block.js +3 -0
  149. package/components/skeleton-image.d.ts +6 -0
  150. package/components/skeleton-image.js +3 -0
  151. package/components/skeleton-text.d.ts +6 -0
  152. package/components/skeleton-text.js +3 -0
  153. package/components/stepper.d.ts +197 -0
  154. package/components/stepper.js +230 -0
  155. package/components/subnavbar.d.ts +59 -0
  156. package/components/subnavbar.js +40 -0
  157. package/components/swipeout-actions.d.ts +58 -0
  158. package/components/swipeout-actions.js +33 -0
  159. package/components/swipeout-button.d.ts +75 -0
  160. package/components/swipeout-button.js +48 -0
  161. package/components/tab.d.ts +51 -0
  162. package/components/tab.js +128 -0
  163. package/components/tabs.d.ts +63 -0
  164. package/components/tabs.js +59 -0
  165. package/components/text-editor.d.ts +95 -0
  166. package/components/text-editor.js +147 -0
  167. package/components/toggle.d.ts +80 -0
  168. package/components/toggle.js +89 -0
  169. package/components/toolbar.d.ts +108 -0
  170. package/components/toolbar.js +135 -0
  171. package/components/treeview-item.d.ts +265 -0
  172. package/components/treeview-item.js +140 -0
  173. package/components/treeview.d.ts +46 -0
  174. package/components/treeview.js +22 -0
  175. package/components/use-icon.d.ts +19 -0
  176. package/components/use-icon.js +27 -0
  177. package/components/view.d.ts +296 -0
  178. package/components/view.js +373 -0
  179. package/components/views.d.ts +50 -0
  180. package/components/views.js +25 -0
  181. package/framework7-vue-bundle.js +190 -0
  182. package/framework7-vue.d.ts +121 -0
  183. package/framework7-vue.js +108 -0
  184. package/package.json +65 -0
  185. package/shared/components-router.js +203 -0
  186. package/shared/f7.js +71 -0
  187. package/shared/get-router-initial-component.js +35 -0
  188. package/shared/mixins.js +233 -0
  189. package/shared/modal-state-classes.js +10 -0
  190. package/shared/plugin.js +37 -0
  191. package/shared/router-open-in.js +105 -0
  192. package/shared/use-icon.js +37 -0
  193. package/shared/use-route-props.js +18 -0
  194. package/shared/use-smart-select.js +24 -0
  195. package/shared/use-store.js +24 -0
  196. package/shared/use-tab.js +24 -0
  197. package/shared/use-theme.js +11 -0
  198. package/shared/use-tooltip.js +43 -0
  199. package/shared/utils.js +110 -0
@@ -0,0 +1,370 @@
1
+
2
+ import { ComponentOptionsMixin, DefineComponent, PropType } from 'vue';
3
+
4
+
5
+ declare const ListItem: DefineComponent<
6
+ {
7
+
8
+ title: {
9
+ type: StringConstructor | NumberConstructor;
10
+ },
11
+
12
+ text: {
13
+ type: StringConstructor | NumberConstructor;
14
+ },
15
+
16
+ media: {
17
+ type: StringConstructor;
18
+ },
19
+
20
+ subtitle: {
21
+ type: StringConstructor | NumberConstructor;
22
+ },
23
+
24
+ header: {
25
+ type: StringConstructor | NumberConstructor;
26
+ },
27
+
28
+ footer: {
29
+ type: StringConstructor | NumberConstructor;
30
+ },
31
+
32
+ tooltip: {
33
+ type: StringConstructor;
34
+ },
35
+
36
+ tooltipTrigger: {
37
+ type: StringConstructor;
38
+ },
39
+
40
+ link: {
41
+ type: BooleanConstructor | StringConstructor;
42
+ },
43
+
44
+ target: {
45
+ type: StringConstructor;
46
+ },
47
+
48
+ tabLink: {
49
+ type: BooleanConstructor | StringConstructor;
50
+ },
51
+
52
+ tabLinkActive: {
53
+ type: BooleanConstructor;
54
+ },
55
+
56
+ selected: {
57
+ type: BooleanConstructor;
58
+ },
59
+
60
+ after: {
61
+ type: StringConstructor | NumberConstructor;
62
+ },
63
+
64
+ badge: {
65
+ type: StringConstructor | NumberConstructor;
66
+ },
67
+
68
+ badgeColor: {
69
+ type: StringConstructor;
70
+ },
71
+
72
+ mediaItem: {
73
+ type: BooleanConstructor;
74
+ },
75
+
76
+ mediaList: {
77
+ type: BooleanConstructor;
78
+ },
79
+
80
+ groupTitle: {
81
+ type: BooleanConstructor;
82
+ },
83
+
84
+ swipeout: {
85
+ type: BooleanConstructor;
86
+ },
87
+
88
+ swipeoutOpened: {
89
+ type: BooleanConstructor;
90
+ },
91
+
92
+ accordionItem: {
93
+ type: BooleanConstructor;
94
+ },
95
+
96
+ accordionItemOpened: {
97
+ type: BooleanConstructor;
98
+ },
99
+
100
+ smartSelect: {
101
+ type: BooleanConstructor;
102
+ },
103
+
104
+ smartSelectParams: {
105
+ type: ObjectConstructor;
106
+ },
107
+
108
+ noChevron: {
109
+ type: BooleanConstructor;
110
+ },
111
+
112
+ chevronCenter: {
113
+ type: BooleanConstructor;
114
+ },
115
+
116
+ checkbox: {
117
+ type: BooleanConstructor;
118
+ },
119
+
120
+ radio: {
121
+ type: BooleanConstructor;
122
+ },
123
+
124
+ radioIcon: {
125
+ type: StringConstructor;
126
+ },
127
+
128
+ checkboxIcon: {
129
+ type: StringConstructor;
130
+ },
131
+
132
+ checked: {
133
+ type: BooleanConstructor;
134
+ },
135
+
136
+ indeterminate: {
137
+ type: BooleanConstructor;
138
+ },
139
+
140
+ name: {
141
+ type: StringConstructor;
142
+ },
143
+
144
+ readonly: {
145
+ type: BooleanConstructor;
146
+ },
147
+
148
+ required: {
149
+ type: BooleanConstructor;
150
+ },
151
+
152
+ disabled: {
153
+ type: BooleanConstructor;
154
+ },
155
+
156
+ virtualListIndex: {
157
+ type: NumberConstructor;
158
+ },
159
+
160
+ sortable: {
161
+ type: BooleanConstructor;
162
+ default: undefined;
163
+ },
164
+
165
+ sortableOpposite: {
166
+ type: BooleanConstructor;
167
+ default: undefined;
168
+ },
169
+
170
+ value: {
171
+ type: StringConstructor | NumberConstructor | ArrayConstructor;
172
+ default: undefined;
173
+ },
174
+
175
+ color: {
176
+ type: StringConstructor;
177
+ },
178
+
179
+ colorTheme: {
180
+ type: StringConstructor;
181
+ },
182
+
183
+ textColor: {
184
+ type: StringConstructor;
185
+ },
186
+
187
+ bgColor: {
188
+ type: StringConstructor;
189
+ },
190
+
191
+ borderColor: {
192
+ type: StringConstructor;
193
+ },
194
+
195
+ rippleColor: {
196
+ type: StringConstructor;
197
+ },
198
+
199
+ dark: {
200
+ type: BooleanConstructor;
201
+ },
202
+
203
+ searchbarEnable: {
204
+ type: BooleanConstructor | StringConstructor;
205
+ },
206
+
207
+ searchbarDisable: {
208
+ type: BooleanConstructor | StringConstructor;
209
+ },
210
+
211
+ searchbarClear: {
212
+ type: BooleanConstructor | StringConstructor;
213
+ },
214
+
215
+ searchbarToggle: {
216
+ type: BooleanConstructor | StringConstructor;
217
+ },
218
+
219
+ panelOpen: {
220
+ type: BooleanConstructor | StringConstructor;
221
+ },
222
+
223
+ panelClose: {
224
+ type: BooleanConstructor | StringConstructor;
225
+ },
226
+
227
+ panelToggle: {
228
+ type: BooleanConstructor | StringConstructor;
229
+ },
230
+
231
+ popupOpen: {
232
+ type: BooleanConstructor | StringConstructor;
233
+ },
234
+
235
+ popupClose: {
236
+ type: BooleanConstructor | StringConstructor;
237
+ },
238
+
239
+ actionsOpen: {
240
+ type: BooleanConstructor | StringConstructor;
241
+ },
242
+
243
+ actionsClose: {
244
+ type: BooleanConstructor | StringConstructor;
245
+ },
246
+
247
+ popoverOpen: {
248
+ type: BooleanConstructor | StringConstructor;
249
+ },
250
+
251
+ popoverClose: {
252
+ type: BooleanConstructor | StringConstructor;
253
+ },
254
+
255
+ loginScreenOpen: {
256
+ type: BooleanConstructor | StringConstructor;
257
+ },
258
+
259
+ loginScreenClose: {
260
+ type: BooleanConstructor | StringConstructor;
261
+ },
262
+
263
+ sheetOpen: {
264
+ type: BooleanConstructor | StringConstructor;
265
+ },
266
+
267
+ sheetClose: {
268
+ type: BooleanConstructor | StringConstructor;
269
+ },
270
+
271
+ sortableEnable: {
272
+ type: BooleanConstructor | StringConstructor;
273
+ },
274
+
275
+ sortableDisable: {
276
+ type: BooleanConstructor | StringConstructor;
277
+ },
278
+
279
+ sortableToggle: {
280
+ type: BooleanConstructor | StringConstructor;
281
+ },
282
+
283
+ cardOpen: {
284
+ type: BooleanConstructor | StringConstructor;
285
+ },
286
+
287
+ cardPreventOpen: {
288
+ type: BooleanConstructor | StringConstructor;
289
+ },
290
+
291
+ cardClose: {
292
+ type: BooleanConstructor | StringConstructor;
293
+ },
294
+
295
+ menuClose: {
296
+ type: BooleanConstructor | StringConstructor;
297
+ },
298
+
299
+ back: {
300
+ type: BooleanConstructor;
301
+ },
302
+
303
+ external: {
304
+ type: BooleanConstructor;
305
+ },
306
+
307
+ force: {
308
+ type: BooleanConstructor;
309
+ },
310
+
311
+ animate: {
312
+ type: BooleanConstructor;
313
+ },
314
+
315
+ ignoreCache: {
316
+ type: BooleanConstructor;
317
+ },
318
+
319
+ reloadCurrent: {
320
+ type: BooleanConstructor;
321
+ },
322
+
323
+ reloadAll: {
324
+ type: BooleanConstructor;
325
+ },
326
+
327
+ reloadPrevious: {
328
+ type: BooleanConstructor;
329
+ },
330
+
331
+ reloadDetail: {
332
+ type: BooleanConstructor;
333
+ },
334
+
335
+ routeTabId: {
336
+ type: StringConstructor;
337
+ },
338
+
339
+ view: {
340
+ type: StringConstructor;
341
+ },
342
+
343
+ routeProps: {
344
+ type: ObjectConstructor;
345
+ },
346
+
347
+ preventRouter: {
348
+ type: BooleanConstructor;
349
+ },
350
+
351
+ transition: {
352
+ type: StringConstructor;
353
+ },
354
+
355
+ openIn: {
356
+ type: StringConstructor;
357
+ }
358
+ },
359
+ () => JSX.Element,
360
+ unknown,
361
+ {},
362
+ {},
363
+ ComponentOptionsMixin,
364
+ ComponentOptionsMixin,
365
+ ("click" | "swipeout" | "swipeout:overswipeenter" | "swipeout:overswipeexit" | "swipeout:deleted" | "swipeout:delete" | "swipeout:close" | "swipeout:closed" | "swipeout:open" | "swipeout:opened" | "accordion:beforeclose" | "accordion:close" | "accordion:closed" | "accordion:beforeopen" | "accordion:open" | "accordion:opened" | "change" | "update:checked")[],
366
+ "click" | "swipeout" | "swipeout:overswipeenter" | "swipeout:overswipeexit" | "swipeout:deleted" | "swipeout:delete" | "swipeout:close" | "swipeout:closed" | "swipeout:open" | "swipeout:opened" | "accordion:beforeclose" | "accordion:close" | "accordion:closed" | "accordion:beforeopen" | "accordion:open" | "accordion:opened" | "change" | "update:checked"
367
+ >;
368
+
369
+ export default ListItem;
370
+