Skip to content

Commit 2127fa2

Browse files
committed
4.0.0-alpha.10
1 parent 61974db commit 2127fa2

File tree

7 files changed

+30
-16
lines changed

7 files changed

+30
-16
lines changed

CHANGELOG.md

+14
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
<a name="4.0.0-alpha.10"></a>
2+
# [4.0.0-alpha.10](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.9...v4.0.0-alpha.10) (2018-07-11)
3+
4+
5+
### Bug Fixes
6+
7+
* **angular:** publish css to npm ([748c209](https://github.com/ionic-team/ionic/commit/748c209))
8+
* **item:** pass the correct type property to the button tag ([5f8b02e](https://github.com/ionic-team/ionic/commit/5f8b02e)), closes [#14740](https://github.com/ionic-team/ionic/issues/14740)
9+
* **tabs:** correct alignment for label/icon only tabs ([b46c3e2](https://github.com/ionic-team/ionic/commit/b46c3e2))
10+
* **tabs:** update the tabbar placement value to match the property it applies to ([45583bc](https://github.com/ionic-team/ionic/commit/45583bc))
11+
* **toolbar:** get translucency working with header, footer and toolbar ([f6ab5b6](https://github.com/ionic-team/ionic/commit/f6ab5b6))
12+
13+
14+
115
<a name="4.0.0-alpha.9"></a>
216
# [4.0.0-alpha.9](https://github.com/ionic-team/ionic/compare/v4.0.0-alpha.8...v4.0.0-alpha.9) (2018-07-10)
317

angular/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

angular/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ionic/angular",
3-
"version": "4.0.0-alpha.9",
3+
"version": "4.0.0-alpha.10",
44
"description": "Angular specific wrappers for @ionic/core",
55
"keywords": [
66
"ionic",
@@ -41,7 +41,7 @@
4141
"css/"
4242
],
4343
"dependencies": {
44-
"@ionic/core": "4.0.0-alpha.9"
44+
"@ionic/core": "4.0.0-alpha.10"
4545
},
4646
"devDependencies": {
4747
"@angular/common": "^6.0.3",

angular/src/directives/proxies.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,10 @@ export class FabList {
201201
}
202202

203203
export declare interface Footer extends StencilComponents.IonFooter {}
204-
@Directive({selector: 'ion-footer', inputs: ['mode']})
204+
@Directive({selector: 'ion-footer', inputs: ['mode', 'translucent']})
205205
export class Footer {
206206
constructor(r: ElementRef) {
207-
proxyInputs(this, r, ['mode']);
207+
proxyInputs(this, r, ['mode', 'translucent']);
208208
}
209209
}
210210

@@ -217,10 +217,10 @@ export class Grid {
217217
}
218218

219219
export declare interface Header extends StencilComponents.IonHeader {}
220-
@Directive({selector: 'ion-header', inputs: ['mode']})
220+
@Directive({selector: 'ion-header', inputs: ['mode', 'translucent']})
221221
export class Header {
222222
constructor(r: ElementRef) {
223-
proxyInputs(this, r, ['mode']);
223+
proxyInputs(this, r, ['mode', 'translucent']);
224224
}
225225
}
226226

@@ -286,10 +286,10 @@ export class Input {
286286
}
287287

288288
export declare interface Item extends StencilComponents.IonItem {}
289-
@Directive({selector: 'ion-item', inputs: ['color', 'mode', 'button', 'detail', 'detailIcon', 'disabled', 'href', 'lines', 'state', 'routerDirection']})
289+
@Directive({selector: 'ion-item', inputs: ['color', 'mode', 'button', 'detail', 'detailIcon', 'disabled', 'href', 'lines', 'routerDirection', 'state', 'type']})
290290
export class Item {
291291
constructor(r: ElementRef) {
292-
proxyInputs(this, r, ['color', 'mode', 'button', 'detail', 'detailIcon', 'disabled', 'href', 'lines', 'state', 'routerDirection']);
292+
proxyInputs(this, r, ['color', 'mode', 'button', 'detail', 'detailIcon', 'disabled', 'href', 'lines', 'routerDirection', 'state', 'type']);
293293
}
294294
}
295295

@@ -677,15 +677,15 @@ export class Tab {
677677
}
678678

679679
export declare interface Tabs extends StencilComponents.IonTabs {}
680-
@Directive({selector: 'ion-tabs', inputs: ['color', 'name', 'tabbarHidden', 'tabbarLayout', 'tabbarPlacement', 'tabbarHighlight', 'translucent', 'scrollable', 'useRouter'], outputs: ['ionChange', 'ionNavWillLoad', 'ionNavWillChange', 'ionNavDidChange']})
680+
@Directive({selector: 'ion-tabs', inputs: ['color', 'name', 'tabbarHidden', 'tabbarHighlight', 'tabbarLayout', 'tabbarPlacement', 'translucent', 'scrollable', 'useRouter'], outputs: ['ionChange', 'ionNavWillLoad', 'ionNavWillChange', 'ionNavDidChange']})
681681
export class Tabs {
682682
ionChange: EventEmitter<any>;
683683
ionNavWillLoad: EventEmitter<any>;
684684
ionNavWillChange: EventEmitter<any>;
685685
ionNavDidChange: EventEmitter<any>;
686686
constructor(r: ElementRef) {
687687
proxyMethods(this, r, ['select', 'setRouteId', 'getRouteId', 'getTab', 'getSelected']);
688-
proxyInputs(this, r, ['color', 'name', 'tabbarHidden', 'tabbarLayout', 'tabbarPlacement', 'tabbarHighlight', 'translucent', 'scrollable', 'useRouter']);
688+
proxyInputs(this, r, ['color', 'name', 'tabbarHidden', 'tabbarHighlight', 'tabbarLayout', 'tabbarPlacement', 'translucent', 'scrollable', 'useRouter']);
689689
proxyOutputs(this, ['ionChange', 'ionNavWillLoad', 'ionNavWillChange', 'ionNavDidChange']);
690690
}
691691
}

core/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The Ionic Core package contains the Web Components that make up the reusable UI
2020

2121
Easiest way to start using Ionic Core is by adding a script tag to the CDN:
2222

23-
<script src="https://unpkg.com/@ionic/[email protected].9/dist/ionic.js"></script>
23+
<script src="https://unpkg.com/@ionic/[email protected].10/dist/ionic.js"></script>
2424

2525
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')`.
2626

core/package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

core/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@ionic/core",
3-
"version": "4.0.0-alpha.9",
3+
"version": "4.0.0-alpha.10",
44
"description": "Base components for Ionic",
55
"keywords": [
66
"ionic",

0 commit comments

Comments
 (0)