@dev-tcloud/tcloud-ui 0.0.12 → 0.0.13
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.
- package/README.md +11 -1
- package/esm2020/lib/_services/loading-transitions.service.mjs +3 -2
- package/fesm2015/dev-tcloud-tcloud-ui.mjs +2 -1
- package/fesm2015/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs +2 -1
- package/fesm2020/dev-tcloud-tcloud-ui.mjs.map +1 -1
- package/package.json +1 -1
|
@@ -2498,10 +2498,11 @@ class TCloudUiLoadingTransitionsService {
|
|
|
2498
2498
|
box = document.createElement("div");
|
|
2499
2499
|
box.setAttribute('id', this.ID);
|
|
2500
2500
|
}
|
|
2501
|
+
box.style.display = 'none';
|
|
2502
|
+
box.innerHTML = `<div class="tc-loading-icon"><i class="fas fa-spinner fa-spin"></i></div>`;
|
|
2501
2503
|
const body = document.getElementsByTagName('body')[0];
|
|
2502
2504
|
body.appendChild(box);
|
|
2503
2505
|
body.classList.add('tcloud-ui-body-loading-transitions');
|
|
2504
|
-
// element.classList.remove('bar', 'baz');
|
|
2505
2506
|
}
|
|
2506
2507
|
}
|
|
2507
2508
|
TCloudUiLoadingTransitionsService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: TCloudUiLoadingTransitionsService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|