ontimize-web-ngx 15.4.0 → 15.4.1
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/esm2020/lib/components/form/navigation/o-form.navigation.class.mjs +8 -2
- package/esm2020/lib/components/table/extensions/skeleton/o-table-skeleton.component.mjs +26 -4
- package/esm2020/lib/components/table/o-table.component.mjs +3 -3
- package/fesm2015/ontimize-web-ngx.mjs +31 -5
- package/fesm2015/ontimize-web-ngx.mjs.map +1 -1
- package/fesm2020/ontimize-web-ngx.mjs +33 -5
- package/fesm2020/ontimize-web-ngx.mjs.map +1 -1
- package/lib/components/table/extensions/skeleton/o-table-skeleton.component.d.ts +4 -2
- package/package.json +1 -1
|
@@ -1,13 +1,15 @@
|
|
|
1
|
-
import { ElementRef, Injector, OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, Injector, OnInit } from '@angular/core';
|
|
2
2
|
import { OSkeletonComponent } from '../../../o-skeleton.component';
|
|
3
3
|
import { Observable } from 'rxjs';
|
|
4
4
|
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class OTableSkeletonComponent extends OSkeletonComponent implements OnInit {
|
|
5
|
+
export declare class OTableSkeletonComponent extends OSkeletonComponent implements OnInit, AfterViewInit {
|
|
6
6
|
protected elRef: ElementRef;
|
|
7
7
|
protected injector: Injector;
|
|
8
8
|
rows$: Observable<number[]>;
|
|
9
|
+
private readonly cd;
|
|
9
10
|
constructor(elRef: ElementRef, injector: Injector);
|
|
10
11
|
ngOnInit(): void;
|
|
12
|
+
ngAfterViewInit(): void;
|
|
11
13
|
getRows(): number[];
|
|
12
14
|
static ɵfac: i0.ɵɵFactoryDeclaration<OTableSkeletonComponent, never>;
|
|
13
15
|
static ɵcmp: i0.ɵɵComponentDeclaration<OTableSkeletonComponent, "o-table-skeleton", never, {}, {}, never, never, false, never>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ontimize-web-ngx",
|
|
3
3
|
"homepage": "https://github.com/OntimizeWeb/ontimize-web-ngx#readme",
|
|
4
|
-
"version": "15.4.
|
|
4
|
+
"version": "15.4.1",
|
|
5
5
|
"description": "Ontimize Web framework using Angular 15",
|
|
6
6
|
"bugs": "https://github.com/OntimizeWeb/ontimize-web-ngx/issues",
|
|
7
7
|
"author": "Imatia S.L.",
|