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

worktile / slate-angular / 846f5409-ae59-47c7-88b5-83f2cc99d912

26 Mar 2024 07:04AM UTC coverage: 48.454% (+0.4%) from 48.012%
846f5409-ae59-47c7-88b5-83f2cc99d912

push

circleci

pubuzhixing8
build: release 16.1.0

408 of 1043 branches covered (39.12%)

Branch coverage included in aggregate %.

1002 of 1867 relevant lines covered (53.67%)

47.26 hits per line

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

40.0
/packages/src/components/text/void-text.component.ts
1
import { Component, ChangeDetectionStrategy, OnInit, OnChanges } from '@angular/core';
2
import { BaseTextComponent } from '../../view/base';
3
import { AngularEditor } from '../../plugins/angular-editor';
4
import { SlateLeaves } from '../leaves/leaves.component';
5

6
@Component({
7
    selector: 'span[slateVoidText]',
8
    template: ``,
9
    changeDetection: ChangeDetectionStrategy.OnPush,
10
    host: {
11
        'data-slate-spacer': 'true',
12
        class: 'slate-spacer',
13
        'data-slate-node': 'text'
14
    },
15
    standalone: true,
16
    imports: [SlateLeaves]
17
})
18
export class SlateVoidText extends BaseTextComponent implements OnInit, OnChanges {
1✔
19
    ngOnInit() {
20
        super.ngOnInit();
1✔
21
    }
22

23
    ngOnChanges() {
24
        if (!this.initialized) {
×
25
            return;
×
26
        }
27
    }
28
}
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

© 2026 Coveralls, Inc