Skip to content
This repository was archived by the owner on Oct 5, 2019. It is now read-only.

Commit 2f0632c

Browse files
committed
2.0.0 Release
1 parent 2a8a3ff commit 2f0632c

8 files changed

+44
-25
lines changed

CHANGELOG.md

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Change Log
22

3-
## Framework7 Vue v2.0.0-beta.6 - Released on January 8, 2018
3+
## [v2.0.0](https://github.com/framework7io/framework7-vue/compare/v0.9.4...v2.0.0) - on January 10, 2018 🎉
4+
5+
## [v2.0.0-beta.6](https://github.com/framework7io/framework7-vue/compare/v2.0.0-beta.5...v2.0.0-beta.6) - on January 8, 2018
46
* New Searchbar component
57
* New Popup component
68
* New Action Sheet component
@@ -13,18 +15,18 @@
1315
* Lot of new/v2-reworked Kitchen Sink demos
1416
* Lots of minor fixes
1517

16-
## Framework7 Vue v2.0.0-beta.5 - Released on November 8, 2017
18+
## [v2.0.0-beta.5](https://github.com/framework7io/framework7-vue/compare/v2.0.0-beta.4...v2.0.0-beta.5) - on November 8, 2017
1719
* **f7-panel** now also triggers `panel:breakpoint` event when panel visibility changes based on breakpoint
1820

19-
## Framework7 Vue v2.0.0-beta.4 - Released on October 26, 2017
21+
## [v2.0.0-beta.4](https://github.com/framework7io/framework7-vue/compare/v2.0.0-beta.3...v2.0.0-beta.4) - on October 26, 2017
2022
* New Messagebar component with the new following components: **f7-messagebar**, **f7-messagebar-attachments**, **f7-messagebar-attachment**, **f7-messagebar-sheet**, **f7-messagebar-sheet-item**, **f7-messagebar-sheet-image**
2123
* New Messages component with the new following components: **f7-messages**, **f7-message**, **f7-messages-title**
2224
* Lots of minor fixes
2325

24-
## Framework7 Vue v2.0.0-beta.3 - Released on October 13, 2017
26+
## [v2.0.0-beta.3](https://github.com/framework7io/framework7-vue/compare/v2.0.0-beta.2...v2.0.0-beta.3) - on October 13, 2017
2527
* Minor fixes
2628

27-
## Framework7 Vue v2.0.0-beta.2 - Released on October 11, 2017
29+
## [v2.0.0-beta.2](https://github.com/framework7io/framework7-vue/compare/v2.0.0-beta.1...v2.0.0-beta.2) - on October 11, 2017
2830
* Included ES module bundle build (with all components registered) in `framework7-vue.esm.bundle.js`
2931
* UMD build now also is a bundle version wit all components registered
3032
* All components now accept color props `color`, `color-theme`, `text-color`, `bg-color`, `border-color`
@@ -34,5 +36,5 @@
3436
* Added *f7-panel* component
3537
* Minor fixes
3638

37-
## Framework7 Vue v2.0.0-beta.1 - Released on October 9, 2017
39+
## v2.0.0-beta.1 - on October 9, 2017
3840
* Initial v2 beta release

dist/framework7-vue.esm.bundle.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 Vue 2.0.0-beta.6
2+
* Framework7 Vue 2.0.0
33
* Build full featured iOS & Android apps using Framework7 & Vue
44
* http://framework7.io/vue/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: January 8, 2018
10+
* Released on: January 10, 2018
1111
*/
1212

1313
const Utils = {
@@ -4162,6 +4162,7 @@ const ProgressbarProps = Utils.extend({
41624162
c('span', {
41634163
style: {
41644164
transform: progress ? `translate3d(${-100 + progress}%, 0, 0)` : '',
4165+
'-webkit-transform': progress ? `translate3d(${-100 + progress}%, 0, 0)` : '',
41654166
},
41664167
}),
41674168
]);
@@ -5126,7 +5127,11 @@ staticRenderFns: [],
51265127
/* eslint no-param-reassign: "off" */
51275128
// eslint-disable-next-line
51285129
var vuePlugin = {
5129-
install(Vue, Framework7) {
5130+
install(Vue, Framework7 = window.Framework7) {
5131+
// Check for F7
5132+
if (typeof Framework7 === 'undefined') {
5133+
throw new Error('Framework7 is undefined, make sure you have passed it as an argument: Vue.use(Framework7Vue, Framework7)');
5134+
}
51305135
// Event Hub
51315136
const eventHub = new Vue();
51325137

dist/framework7-vue.esm.js

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 Vue 2.0.0-beta.6
2+
* Framework7 Vue 2.0.0
33
* Build full featured iOS & Android apps using Framework7 & Vue
44
* http://framework7.io/vue/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: January 8, 2018
10+
* Released on: January 10, 2018
1111
*/
1212

1313
const Utils = {
@@ -191,7 +191,11 @@ var VueRouter = {
191191

192192

193193
var VuePlugin$1 = {
194-
install(Vue, Framework7) {
194+
install(Vue, Framework7 = window.Framework7) {
195+
// Check for F7
196+
if (typeof Framework7 === 'undefined') {
197+
throw new Error('Framework7 is undefined, make sure you have passed it as an argument: Vue.use(Framework7Vue, Framework7)');
198+
}
195199
// Event Hub
196200
const eventHub = new Vue();
197201

@@ -4315,6 +4319,7 @@ const ProgressbarProps = Utils.extend({
43154319
c('span', {
43164320
style: {
43174321
transform: progress ? `translate3d(${-100 + progress}%, 0, 0)` : '',
4322+
'-webkit-transform': progress ? `translate3d(${-100 + progress}%, 0, 0)` : '',
43184323
},
43194324
}),
43204325
]);

dist/framework7-vue.js

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
/**
2-
* Framework7 Vue 2.0.0-beta.6
2+
* Framework7 Vue 2.0.0
33
* Build full featured iOS & Android apps using Framework7 & Vue
44
* http://framework7.io/vue/
55
*
66
* Copyright 2014-2018 Vladimir Kharlampidi
77
*
88
* Released under the MIT License
99
*
10-
* Released on: January 8, 2018
10+
* Released on: January 10, 2018
1111
*/
1212

1313
(function (global, factory) {
@@ -4225,6 +4225,7 @@ var ProgressbarProps = Utils.extend({
42254225
c('span', {
42264226
style: {
42274227
transform: progress ? ("translate3d(" + (-100 + progress) + "%, 0, 0)") : '',
4228+
'-webkit-transform': progress ? ("translate3d(" + (-100 + progress) + "%, 0, 0)") : '',
42284229
},
42294230
}) ]);
42304231
},
@@ -5188,6 +5189,12 @@ staticRenderFns: [],
51885189
// eslint-disable-next-line
51895190
var vuePlugin = {
51905191
install: function install(Vue, Framework7) {
5192+
if ( Framework7 === void 0 ) Framework7 = window.Framework7;
5193+
5194+
// Check for F7
5195+
if (typeof Framework7 === 'undefined') {
5196+
throw new Error('Framework7 is undefined, make sure you have passed it as an argument: Vue.use(Framework7Vue, Framework7)');
5197+
}
51915198
// Event Hub
51925199
var eventHub = new Vue();
51935200

dist/framework7-vue.min.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dist/framework7-vue.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "framework7-vue",
3-
"version": "2.0.0-beta.6",
3+
"version": "2.0.0",
44
"description": "Build full featured iOS & Android apps using Framework7 & Vue",
55
"main": "dist/framework7-vue.js",
66
"jsnext:main": "dist/framework7-vue.esm.js",
@@ -40,7 +40,7 @@
4040
"test": "npm run build:prod && npm run lint"
4141
},
4242
"bugs": {
43-
"url": "https://github.com/nolimits4web/Framework7-Vue/issues"
43+
"url": "https://github.com/framework7io/framework7-vue/issues"
4444
},
4545
"homepage": "http://framework7.io/vue/",
4646
"engines": {
@@ -52,7 +52,7 @@
5252
"eslint-config-airbnb-base": "^12.0.0",
5353
"eslint-plugin-html": "^3.2.2",
5454
"eslint-plugin-import": "^2.7.0",
55-
"framework7": "^2.0.5",
55+
"framework7": "^2.0.6",
5656
"gulp": "^3.9.1",
5757
"gulp-connect": "^5.0.0",
5858
"gulp-header": "^1.8.9",

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy