mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2026-03-13 10:22:08 +08:00
* docs(all): possible values are extracted by stencil * add defaults * remove all hardcoded defaults * update stencil
39 lines
934 B
TypeScript
39 lines
934 B
TypeScript
import { Component, ComponentInterface, Prop } from '@stencil/core';
|
|
|
|
import { Mode } from '../../interface';
|
|
import { createThemedClasses } from '../../utils/theme';
|
|
|
|
@Component({
|
|
tag: 'ion-header',
|
|
styleUrls: {
|
|
ios: 'header.ios.scss',
|
|
md: 'header.md.scss'
|
|
}
|
|
})
|
|
export class Header implements ComponentInterface {
|
|
|
|
/**
|
|
* The mode determines which platform styles to use.
|
|
*/
|
|
@Prop() mode!: Mode;
|
|
|
|
/**
|
|
* If `true`, the header will be translucent.
|
|
* Note: In order to scroll content behind the header, the `fullscreen`
|
|
* attribute needs to be set on the content.
|
|
*/
|
|
@Prop() translucent = false;
|
|
|
|
hostData() {
|
|
const themedClasses = createThemedClasses(this.mode, 'header');
|
|
const translucentClasses = this.translucent ? createThemedClasses(this.mode, 'header-translucent') : null;
|
|
|
|
return {
|
|
class: {
|
|
...themedClasses,
|
|
...translucentClasses
|
|
}
|
|
};
|
|
}
|
|
}
|