mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-11-10 00:27:41 +08:00
46 lines
1.2 KiB
TypeScript
46 lines
1.2 KiB
TypeScript
import { Component, ComponentInterface, Prop, h } from '@stencil/core';
|
|
|
|
import { getIonMode } from '../../global/ionic-global';
|
|
import { Color } from '../../interface';
|
|
import { createColorClasses } from '../../utils/theme';
|
|
|
|
/**
|
|
* @virtualProp {"ios" | "md"} mode - The mode determines which platform styles to use.
|
|
*/
|
|
@Component({
|
|
tag: 'ion-card-header',
|
|
styleUrls: {
|
|
ios: 'card-header.ios.scss',
|
|
md: 'card-header.md.scss'
|
|
},
|
|
shadow: true
|
|
})
|
|
export class CardHeader implements ComponentInterface {
|
|
/**
|
|
* The color to use from your application's color palette.
|
|
* Default options are: `"primary"`, `"secondary"`, `"tertiary"`, `"success"`, `"warning"`, `"danger"`, `"light"`, `"medium"`, and `"dark"`.
|
|
* For more information on colors, see [theming](/docs/theming/basics).
|
|
*/
|
|
@Prop() color?: Color;
|
|
|
|
/**
|
|
* If `true`, the card header will be translucent.
|
|
*/
|
|
@Prop() translucent = false;
|
|
|
|
hostData() {
|
|
const mode = getIonMode(this);
|
|
return {
|
|
class: {
|
|
...createColorClasses(this.color),
|
|
'card-header-translucent': this.translucent,
|
|
[`${mode}`]: true
|
|
}
|
|
};
|
|
}
|
|
|
|
render() {
|
|
return <slot></slot>;
|
|
}
|
|
}
|