nuxeo-development-framework 4.5.9 → 5.0.0
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/bundles/nuxeo-development-framework.umd.js +269 -158
- package/bundles/nuxeo-development-framework.umd.js.map +1 -1
- package/esm2015/lib/components/dynamic-search/dynamic-search/dynamic-search.component.js +2 -2
- package/esm2015/lib/components/dynamic-table/dynamic-table/dynamic-table.component.js +13 -11
- package/esm2015/lib/components/dynamic-table/dynamic-table.module.js +28 -4
- package/esm2015/lib/components/skeleton/index.js +3 -0
- package/esm2015/lib/components/skeleton/skeleton.component.js +66 -0
- package/esm2015/lib/components/skeleton/skeleton.module.js +18 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/nuxeo-development-framework.js +242 -143
- package/fesm2015/nuxeo-development-framework.js.map +1 -1
- package/lib/components/dynamic-table/dynamic-table/dynamic-table.component.d.ts +2 -2
- package/lib/components/dynamic-table/dynamic-table.module.d.ts +3 -1
- package/lib/components/skeleton/index.d.ts +2 -0
- package/lib/components/skeleton/skeleton.component.d.ts +22 -0
- package/lib/components/skeleton/skeleton.module.d.ts +8 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -67,7 +67,7 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
67
67
|
pageProvider: any;
|
|
68
68
|
/** Controls number of items per page in table */
|
|
69
69
|
pageSize: any;
|
|
70
|
-
|
|
70
|
+
isLegacyMode: boolean;
|
|
71
71
|
showTotalRecord: boolean;
|
|
72
72
|
emptyTemplate: TemplateRef<any> | undefined;
|
|
73
73
|
private _pageNumber;
|
|
@@ -134,5 +134,5 @@ export declare class DynamicTableComponent implements OnInit, OnDestroy {
|
|
|
134
134
|
PaginationChange(event: any): void;
|
|
135
135
|
onChangePageSize(pageSize: number): void;
|
|
136
136
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableComponent, never>;
|
|
137
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "cts-dynamic-table", never, { "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "headers": "headers"; "fields": "fields"; "pageProvider": "pageProvider"; "pageSize": "pageSize"; "
|
|
137
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DynamicTableComponent, "cts-dynamic-table", never, { "columns": "columns"; "responsiveColumns": "responsiveColumns"; "entityType": "entityType"; "prefix": "prefix"; "headers": "headers"; "fields": "fields"; "pageProvider": "pageProvider"; "pageSize": "pageSize"; "isLegacyMode": "isLegacyMode"; "showTotalRecord": "showTotalRecord"; "pageNumber": "pageNumber"; "sortingBy": "sortingBy"; "queryParam": "queryParam"; "customFilters": "customFilters"; "quickFilter": "quickFilter"; "report": "report"; "rowCursor": "rowCursor"; "fullWidth": "fullWidth"; "tableMode": "tableMode"; "componentName": "componentName"; "tableActions": "tableActions"; "defultSort": "defultSort"; "range": "range"; "isSearchPage": "isSearchPage"; "multiSelectRows": "multiSelectRows"; "customFirstRow": "customFirstRow"; "highlightSelectedCard": "highlightSelectedCard"; "showActionsAsMenu": "showActionsAsMenu"; "filterParams": "filterParams"; "skipAggregation": "skipAggregation"; "customUrl": "customUrl"; "format": "format"; "pageSizes": "pageSizes"; }, { "onRowSelected": "onRowSelected"; "onRowIndexSelected": "onRowIndexSelected"; "actionOnRow": "actionOnRow"; "onGettingData": "onGettingData"; "onMultiRowSelected": "onMultiRowSelected"; "onLoading": "onLoading"; "onPageChange": "onPageChange"; "onLoad": "onLoad"; "onInitialize": "onInitialize"; }, ["emptyTemplate"], never>;
|
|
138
138
|
}
|
|
@@ -6,12 +6,14 @@ import * as i4 from "../table/table.module";
|
|
|
6
6
|
import * as i5 from "../pagination/pagination.module";
|
|
7
7
|
import * as i6 from "../../shared/libraryShared.module";
|
|
8
8
|
import * as i7 from "@ngx-translate/core";
|
|
9
|
+
import * as i8 from "../skeleton/skeleton.module";
|
|
10
|
+
import * as i9 from "@angular/material/progress-spinner";
|
|
9
11
|
/**
|
|
10
12
|
* @title
|
|
11
13
|
* Dynamic Table API
|
|
12
14
|
*/
|
|
13
15
|
export declare class DynamicTableModule {
|
|
14
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicTableModule, never>;
|
|
15
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicTableModule, [typeof i1.DynamicTableComponent, typeof i2.EmptyTemplateDirective], [typeof i3.CommonModule, typeof i4.TableModule, typeof i5.PaginationModule, typeof i6.LibrarySharedModule, typeof i7.TranslateModule], [typeof i1.DynamicTableComponent, typeof i2.EmptyTemplateDirective]>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<DynamicTableModule, [typeof i1.DynamicTableComponent, typeof i2.EmptyTemplateDirective], [typeof i3.CommonModule, typeof i4.TableModule, typeof i5.PaginationModule, typeof i6.LibrarySharedModule, typeof i7.TranslateModule, typeof i8.SkeletonModule, typeof i9.MatProgressSpinnerModule], [typeof i1.DynamicTableComponent, typeof i2.EmptyTemplateDirective]>;
|
|
16
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<DynamicTableModule>;
|
|
17
19
|
}
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
export declare class SkeletonComponent {
|
|
3
|
+
styleClass: string;
|
|
4
|
+
style: any;
|
|
5
|
+
shape: string;
|
|
6
|
+
animation: string;
|
|
7
|
+
radius: string;
|
|
8
|
+
size: string;
|
|
9
|
+
width: string;
|
|
10
|
+
height: string;
|
|
11
|
+
set randomWidth(value: boolean);
|
|
12
|
+
containerClass(): {
|
|
13
|
+
'skeleton component': boolean;
|
|
14
|
+
'skeleton-circle': boolean;
|
|
15
|
+
'skeleton-none': boolean;
|
|
16
|
+
'skeleton-opacity': boolean;
|
|
17
|
+
};
|
|
18
|
+
containerStyle(): any;
|
|
19
|
+
getRndInteger(min?: number, max?: number): number;
|
|
20
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonComponent, never>;
|
|
21
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<SkeletonComponent, "app-skeleton", never, { "styleClass": "styleClass"; "style": "style"; "shape": "shape"; "animation": "animation"; "radius": "radius"; "size": "size"; "width": "width"; "height": "height"; "randomWidth": "randomWidth"; }, {}, never, never>;
|
|
22
|
+
}
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import * as i0 from "@angular/core";
|
|
2
|
+
import * as i1 from "./skeleton.component";
|
|
3
|
+
import * as i2 from "@angular/common";
|
|
4
|
+
export declare class SkeletonModule {
|
|
5
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<SkeletonModule, never>;
|
|
6
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<SkeletonModule, [typeof i1.SkeletonComponent], [typeof i2.CommonModule], [typeof i1.SkeletonComponent]>;
|
|
7
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<SkeletonModule>;
|
|
8
|
+
}
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -233,3 +233,4 @@ export * from './lib/configuration/helpers/app-initializer';
|
|
|
233
233
|
export * from './lib/directive/permissions/evaluators.service';
|
|
234
234
|
export * from './lib/components/comments/services/comment-api.service';
|
|
235
235
|
export * from './lib/components/charts';
|
|
236
|
+
export * from './lib/components/skeleton';
|