@dev-tcloud/tcloud-ui 5.1.3 → 5.1.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -7028,6 +7028,7 @@ class TcRevButtonDirective {
|
|
|
7028
7028
|
});
|
|
7029
7029
|
}
|
|
7030
7030
|
setClasses() {
|
|
7031
|
+
this._el.nativeElement.className = 'tc-rev-btn';
|
|
7031
7032
|
let tcRevButton = this.tcRevButton();
|
|
7032
7033
|
if (!tcRevButton) {
|
|
7033
7034
|
tcRevButton = 'filled';
|
|
@@ -7428,6 +7429,7 @@ class TcRevIconButtonDirective {
|
|
|
7428
7429
|
});
|
|
7429
7430
|
}
|
|
7430
7431
|
setClasses() {
|
|
7432
|
+
this._el.nativeElement.className = 'tc-rev-btn tc-rev-btn-icon';
|
|
7431
7433
|
let tcRevIconButton = this.tcRevIconButton();
|
|
7432
7434
|
if (!tcRevIconButton) {
|
|
7433
7435
|
tcRevIconButton = 'filled';
|
|
@@ -7473,6 +7475,7 @@ class TcRevInputDirective {
|
|
|
7473
7475
|
});
|
|
7474
7476
|
}
|
|
7475
7477
|
setClasses() {
|
|
7478
|
+
this._el.nativeElement.className = 'tc-rev-input-control';
|
|
7476
7479
|
this.fullWidth() ? this._el.nativeElement.classList.add('tc-rev-input-control--full-width') : null;
|
|
7477
7480
|
}
|
|
7478
7481
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.15", ngImport: i0, type: TcRevInputDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive }); }
|