ngx-wapp-components 3.1.0 → 3.1.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/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ngx-wapp-components",
|
|
3
|
-
"version": "3.1.
|
|
3
|
+
"version": "3.1.1",
|
|
4
4
|
"description": "This is a Wapping reusable component library published by Wapping.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"code",
|
|
@@ -58,5 +58,6 @@
|
|
|
58
58
|
"types": "./types/ngx-wapp-components.d.ts",
|
|
59
59
|
"default": "./fesm2022/ngx-wapp-components.mjs"
|
|
60
60
|
}
|
|
61
|
-
}
|
|
61
|
+
},
|
|
62
|
+
"type": "module"
|
|
62
63
|
}
|
|
@@ -410,12 +410,14 @@ declare class WCardComponent implements OnInit {
|
|
|
410
410
|
iconColor: string;
|
|
411
411
|
width: string;
|
|
412
412
|
imagePosition: 'top' | 'left';
|
|
413
|
+
defaultImageIcon: string;
|
|
413
414
|
cardClick: EventEmitter<void>;
|
|
414
415
|
constructor();
|
|
415
416
|
ngOnInit(): void;
|
|
416
417
|
onCardClick(): void;
|
|
418
|
+
isPath(path: string): boolean;
|
|
417
419
|
static ɵfac: i0.ɵɵFactoryDeclaration<WCardComponent, never>;
|
|
418
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WCardComponent, "w-card", never, { "header": { "alias": "header"; "required": false; }; "subheader": { "alias": "subheader"; "required": false; }; "image": { "alias": "image"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "imagePosition": { "alias": "imagePosition"; "required": false; }; }, { "cardClick": "cardClick"; }, never, [".content", "*", ".left-image-content", ".left-image-card-footer"], false, never>;
|
|
420
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<WCardComponent, "w-card", never, { "header": { "alias": "header"; "required": false; }; "subheader": { "alias": "subheader"; "required": false; }; "image": { "alias": "image"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconColor": { "alias": "iconColor"; "required": false; }; "width": { "alias": "width"; "required": false; }; "imagePosition": { "alias": "imagePosition"; "required": false; }; "defaultImageIcon": { "alias": "defaultImageIcon"; "required": false; }; }, { "cardClick": "cardClick"; }, never, [".content", "*", ".left-image-content", ".left-image-card-footer"], false, never>;
|
|
419
421
|
}
|
|
420
422
|
|
|
421
423
|
declare enum TableColumnFilterTypes {
|
|
@@ -523,8 +525,7 @@ declare enum NotificationsEventEnum {
|
|
|
523
525
|
}
|
|
524
526
|
declare enum PeriodSelectEnum {
|
|
525
527
|
Last24Hours = 1,
|
|
526
|
-
|
|
527
|
-
Custom = 3
|
|
528
|
+
Custom = 2
|
|
528
529
|
}
|
|
529
530
|
declare enum CustomColor {
|
|
530
531
|
darkBlue1 = 1,
|
|
@@ -1816,7 +1817,7 @@ declare class WFilterPanelComponent implements OnInit {
|
|
|
1816
1817
|
clearPeriodSelectComponent(): void;
|
|
1817
1818
|
handleEmptyFieldsQuery(queries: QueryResults): QueryResults;
|
|
1818
1819
|
nullableFilterOperationHandle(query: any): void;
|
|
1819
|
-
|
|
1820
|
+
setLast24HoursPeriodSelectValue(query: any): void;
|
|
1820
1821
|
inverseNullableFilterOperationHandle(query: any): void;
|
|
1821
1822
|
keepLocalDateFilterOperationHandle(query: any): void;
|
|
1822
1823
|
modifyTreeListValueParentToNull(query: any): any;
|