File

lib/common/src/dev/dev.page/dev.page.ts

Metadata

Index

Properties
Methods

Constructor

constructor(warnings: DevWarnings)
Parameters :
Name Type Optional
warnings DevWarnings No

Methods

ngOnInit
ngOnInit()
Returns : void

Properties

Public warnings
Type : DevWarnings
import	{	Component		}	from '@angular/core'
import	{	DevWarnings		}	from '../dev.commons'

@Component({
	selector: 		'rcc-dev.page',
	templateUrl: 	'./dev.page.html',
	styleUrls: 		['./dev.page.scss'],
})
export class DevPage {

	constructor(
		public warnings : DevWarnings
	) { }

	ngOnInit() {}

}
<ion-header [translucent]="true">
	<ion-toolbar>
		<rcc-common-header slot = "start">
		</rcc-common-header>
		<ion-title
			[id] = "'DEV.PAGE' | toID:'rcc-e2e'"
		>
			{{ 'DEV.PAGE' | translate }}
		</ion-title>
	</ion-toolbar>
</ion-header>

<ion-content [fullscreen] = "true">

	<ion-list>

		<ion-list-header
		[id] = "'DEV.WARNINGS' | toID:'rcc-e2e'">
			<ion-label>{{ 'DEV.WARNINGS' | translate }}</ion-label>
		</ion-list-header>

		<ion-item *ngFor = "let warning of warnings">
			<ion-icon name ="warning" slot = "start"></ion-icon>
			<ion-label>
				<h3>{{warning.name}}</h3>
				<p>{{warning.note}}</p>
			</ion-label>
		</ion-item>
	</ion-list>

</ion-content>

./dev.page.scss

Legend
Html element
Component
Html element with directive

results matching ""

    No results matching ""