Compare commits

..

3 Commits

Author SHA1 Message Date
Manu Mtz.-Almeida
573117adf6 4.0.0-beta.11 2018-09-15 00:25:54 +02:00
Manu Mtz.-Almeida
3435473f95 fix(slides): swiper must be a vendor 2018-09-15 00:22:21 +02:00
Manu Mtz.-Almeida
fd06938de1 chore(): update to latest stencil 2018-09-14 23:54:15 +02:00
5 changed files with 18 additions and 7 deletions

View File

@@ -1,3 +1,13 @@
<a name="4.0.0-beta.11"></a>
# [4.0.0-beta.11](https://github.com/ionic-team/ionic/compare/v4.0.0-beta.10...v4.0.0-beta.11) (2018-09-14)
### Bug Fixes
* **slides:** swiper must be a vendor ([3435473](https://github.com/ionic-team/ionic/commit/3435473))
<a name="4.0.0-beta.10"></a>
# [4.0.0-beta.10](https://github.com/ionic-team/ionic/compare/v4.0.0-beta.9...v4.0.0-beta.10) (2018-09-14)

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/angular",
"version": "4.0.0-beta.10",
"version": "4.0.0-beta.11",
"description": "Angular specific wrappers for @ionic/core",
"keywords": [
"ionic",
@@ -43,7 +43,7 @@
"css/"
],
"dependencies": {
"@ionic/core": "4.0.0-beta.10"
"@ionic/core": "4.0.0-beta.11"
},
"devDependencies": {
"@angular/common": "^6.1.0",

View File

@@ -23,8 +23,8 @@ The Ionic Core package contains the Web Components that make up the reusable UI
Easiest way to start using Ionic Core is by adding a script tag to the CDN:
```html
<link href="https://unpkg.com/@ionic/core@4.0.0-beta.10/css/ionic.bundle.css" rel="stylesheet">
<script src="https://unpkg.com/@ionic/core@4.0.0-beta.10/dist/ionic.js"></script>
<link href="https://unpkg.com/@ionic/core@4.0.0-beta.11/css/ionic.bundle.css" rel="stylesheet">
<script src="https://unpkg.com/@ionic/core@4.0.0-beta.11/dist/ionic.js"></script>
```
Any Ionic component added to the webpage will automatically load. This includes writing the component tag directly in HTML, or using JavaScript such as `document.createElement('ion-toggle')`.

View File

@@ -1,6 +1,6 @@
{
"name": "@ionic/core",
"version": "4.0.0-beta.10",
"version": "4.0.0-beta.11",
"description": "Base components for Ionic",
"keywords": [
"ionic",
@@ -28,7 +28,7 @@
"ionicons": "4.4.3"
},
"devDependencies": {
"@stencil/core": "0.13.0-10",
"@stencil/core": "0.13.0-11",
"@stencil/dev-server": "latest",
"@stencil/sass": "0.1.0",
"@stencil/utils": "latest",

View File

@@ -11,7 +11,8 @@ import { SwiperInterface, SwiperOptions } from './swiper/swiper-interface';
styleUrls: {
ios: 'slides.ios.scss',
md: 'slides.md.scss'
}
},
assetsDir: 'swiper',
})
export class Slides implements ComponentInterface {