@@ -192,21 +192,11 @@ export class Tabs extends Ion implements AfterViewInit {
192
192
*/
193
193
@Input ( ) selectedIndex : number ;
194
194
195
- /**
196
- * @internal DEPRECATED. Please use `tabsLayout` instead.
197
- */
198
- @Input ( ) private tabbarLayout : string ;
199
-
200
195
/**
201
196
* @input {string} Set the tabbar layout: `icon-top`, `icon-left`, `icon-right`, `icon-bottom`, `icon-hide`, `title-hide`.
202
197
*/
203
198
@Input ( ) tabsLayout : string ;
204
199
205
- /**
206
- * @internal DEPRECATED. Please use `tabsPlacement` instead.
207
- */
208
- @Input ( ) private tabbarPlacement : string ;
209
-
210
200
/**
211
201
* @input {string} Set position of the tabbar: `top`, `bottom`.
212
202
*/
@@ -261,18 +251,6 @@ export class Tabs extends Ion implements AfterViewInit {
261
251
this . _subPages = config . getBoolean ( 'tabsHideOnSubPages' ) ;
262
252
this . tabsHighlight = config . getBoolean ( 'tabsHighlight' ) ;
263
253
264
- // TODO deprecated 07-07-2016 beta.11
265
- if ( config . get ( 'tabSubPages' ) !== null ) {
266
- console . warn ( 'Config option "tabSubPages" has been deprecated. Please use "tabsHideOnSubPages" instead.' ) ;
267
- this . _subPages = config . getBoolean ( 'tabSubPages' ) ;
268
- }
269
-
270
- // TODO deprecated 07-07-2016 beta.11
271
- if ( config . get ( 'tabbarHighlight' ) !== null ) {
272
- console . warn ( 'Config option "tabbarHighlight" has been deprecated. Please use "tabsHighlight" instead.' ) ;
273
- this . tabsHighlight = config . getBoolean ( 'tabbarHighlight' ) ;
274
- }
275
-
276
254
if ( this . parent ) {
277
255
// this Tabs has a parent Nav
278
256
this . parent . registerChildNav ( this ) ;
@@ -308,36 +286,6 @@ export class Tabs extends Ion implements AfterViewInit {
308
286
this . _setConfig ( 'tabsLayout' , 'icon-top' ) ;
309
287
this . _setConfig ( 'tabsHighlight' , this . tabsHighlight ) ;
310
288
311
- // TODO deprecated 07-07-2016 beta.11
312
- this . _setConfig ( 'tabbarPlacement' , 'bottom' ) ;
313
- this . _setConfig ( 'tabbarLayout' , 'icon-top' ) ;
314
-
315
- // TODO deprecated 07-07-2016 beta.11
316
- if ( this . tabbarPlacement !== undefined ) {
317
- console . warn ( 'Input "tabbarPlacement" has been deprecated. Please use "tabsPlacement" instead.' ) ;
318
- this . setElementAttribute ( 'tabsPlacement' , this . tabbarPlacement ) ;
319
- this . tabsPlacement = this . tabbarPlacement ;
320
- }
321
-
322
- // TODO deprecated 07-07-2016 beta.11
323
- if ( this . _config . get ( 'tabbarPlacement' ) !== null ) {
324
- console . warn ( 'Config option "tabbarPlacement" has been deprecated. Please use "tabsPlacement" instead.' ) ;
325
- this . setElementAttribute ( 'tabsPlacement' , this . _config . get ( 'tabbarPlacement' ) ) ;
326
- }
327
-
328
- // TODO deprecated 07-07-2016 beta.11
329
- if ( this . tabbarLayout !== undefined ) {
330
- console . warn ( 'Input "tabbarLayout" has been deprecated. Please use "tabsLayout" instead.' ) ;
331
- this . setElementAttribute ( 'tabsLayout' , this . tabbarLayout ) ;
332
- this . tabsLayout = this . tabbarLayout ;
333
- }
334
-
335
- // TODO deprecated 07-07-2016 beta.11
336
- if ( this . _config . get ( 'tabbarLayout' ) !== null ) {
337
- console . warn ( 'Config option "tabbarLayout" has been deprecated. Please use "tabsLayout" instead.' ) ;
338
- this . setElementAttribute ( 'tabsLayout' , this . _config . get ( 'tabsLayout' ) ) ;
339
- }
340
-
341
289
if ( this . tabsHighlight ) {
342
290
this . _platform . onResize ( ( ) => {
343
291
this . _highlight . select ( this . getSelected ( ) ) ;
0 commit comments