• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

IgniteUI / igniteui-webcomponents / 15753383816

19 Jun 2025 08:33AM UTC coverage: 98.266% (+0.009%) from 98.257%
15753383816

Pull #1746

github

web-flow
Merge f7f9c96b3 into 56a6e7062
Pull Request #1746: refactor: Dropped themes decorator for explicit initialization

4943 of 5189 branches covered (95.26%)

Branch coverage included in aggregate %.

435 of 447 new or added lines in 71 files covered. (97.32%)

8 existing lines in 1 file now uncovered.

31497 of 31894 relevant lines covered (98.76%)

1728.24 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

87.18
/src/components/card/card.content.ts
1
import { html, LitElement } from 'lit';
9✔
2

9✔
3
import { addThemingController } from '../../theming/theming-controller.js';
9✔
4
import { registerComponent } from '../common/definitions/register.js';
9✔
5
import { styles } from './themes/card.content.base.css.js';
9✔
6
import { all } from './themes/content.js';
9✔
7
import { styles as shared } from './themes/shared/content/card.content.common.css.js';
9✔
8

9✔
9
/** A container for card's text content
9✔
10
 * @element igc-card-content
9✔
11
 *
9✔
12
 * @slot - Renders the card text content
9✔
13
 */
9✔
14
export default class IgcCardContentComponent extends LitElement {
9✔
15
  public static readonly tagName = 'igc-card-content';
9✔
16
  public static override styles = [styles, shared];
9✔
17

9✔
18
  /* blazorSuppress */
9✔
19
  public static register(): void {
9✔
20
    registerComponent(IgcCardContentComponent);
1✔
21
  }
1✔
22

9✔
23
  constructor() {
9✔
NEW
24
    super();
×
NEW
25
    addThemingController(this, all);
×
NEW
26
  }
×
27

9✔
28
  protected override render() {
9✔
29
    return html` <slot></slot> `;
×
30
  }
×
31
}
9✔
32

9✔
33
declare global {
9✔
34
  interface HTMLElementTagNameMap {
9✔
35
    'igc-card-content': IgcCardContentComponent;
9✔
36
  }
9✔
37
}
9✔
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2025 Coveralls, Inc