@litigiovirtual/ius-design-components 1.0.178 → 1.0.180
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/esm2022/lib/button-filter/button-filter.component.mjs +54 -18
- package/esm2022/lib/button-order/button-order.component.mjs +54 -18
- package/esm2022/lib/drawer-container-right/drawer-container-right.component.mjs +3 -9
- package/fesm2022/litigiovirtual-ius-design-components.mjs +119 -57
- package/fesm2022/litigiovirtual-ius-design-components.mjs.map +1 -1
- package/lib/button-filter/button-filter.component.d.ts +13 -6
- package/lib/button-order/button-order.component.d.ts +13 -6
- package/lib/drawer-container-right/drawer-container-right.component.d.ts +1 -3
- package/package.json +1 -1
|
@@ -1,14 +1,21 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ButtonFilterComponent {
|
|
4
|
-
private _el;
|
|
4
|
+
export declare class ButtonFilterComponent implements OnDestroy {
|
|
5
|
+
private readonly _el;
|
|
6
|
+
private readonly _overlay;
|
|
7
|
+
private readonly _vcr;
|
|
5
8
|
clickFilter: EventEmitter<Event>;
|
|
6
9
|
clickDeleteFilter: EventEmitter<Event>;
|
|
7
10
|
clickClose: EventEmitter<Event>;
|
|
8
|
-
|
|
9
|
-
|
|
11
|
+
filterPanel: TemplateRef<unknown>;
|
|
12
|
+
private _overlayRef;
|
|
13
|
+
get showFilter(): boolean;
|
|
14
|
+
constructor(_el: ElementRef, _overlay: Overlay, _vcr: ViewContainerRef);
|
|
10
15
|
showListFilter(): void;
|
|
11
|
-
|
|
16
|
+
private _openPanel;
|
|
17
|
+
private _closePanel;
|
|
18
|
+
ngOnDestroy(): void;
|
|
12
19
|
onClickFilter(event: Event): void;
|
|
13
20
|
onClickDeleteFilter(event: Event): void;
|
|
14
21
|
onClickClose(event: Event): void;
|
|
@@ -1,21 +1,28 @@
|
|
|
1
|
-
import { ElementRef, EventEmitter } from '@angular/core';
|
|
1
|
+
import { ElementRef, EventEmitter, OnDestroy, TemplateRef, ViewContainerRef } from '@angular/core';
|
|
2
|
+
import { Overlay } from '@angular/cdk/overlay';
|
|
2
3
|
import * as i0 from "@angular/core";
|
|
3
4
|
export type OrderData = {
|
|
4
5
|
title: string;
|
|
5
6
|
iconName: string;
|
|
6
7
|
values: string[];
|
|
7
8
|
};
|
|
8
|
-
export declare class ButtonOrderComponent {
|
|
9
|
-
private _el;
|
|
9
|
+
export declare class ButtonOrderComponent implements OnDestroy {
|
|
10
|
+
private readonly _el;
|
|
11
|
+
private readonly _overlay;
|
|
12
|
+
private readonly _vcr;
|
|
10
13
|
orderData?: OrderData[];
|
|
11
14
|
orderChange: EventEmitter<{
|
|
12
15
|
title: string;
|
|
13
16
|
value: string;
|
|
14
17
|
}>;
|
|
15
|
-
|
|
16
|
-
|
|
18
|
+
orderPanel: TemplateRef<unknown>;
|
|
19
|
+
private _overlayRef;
|
|
20
|
+
get showOrder(): boolean;
|
|
21
|
+
constructor(_el: ElementRef, _overlay: Overlay, _vcr: ViewContainerRef);
|
|
17
22
|
showListOrder(): void;
|
|
18
|
-
|
|
23
|
+
private _openPanel;
|
|
24
|
+
private _closePanel;
|
|
25
|
+
ngOnDestroy(): void;
|
|
19
26
|
onClickOrderChange(title: string, label: string): void;
|
|
20
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<ButtonOrderComponent, never>;
|
|
21
28
|
static ɵcmp: i0.ɵɵComponentDeclaration<ButtonOrderComponent, "ius-button-order", never, { "orderData": { "alias": "orderData"; "required": false; }; }, { "orderChange": "orderChange"; }, never, never, true, never>;
|
|
@@ -4,12 +4,10 @@ export declare class DrawerContainerRightComponent {
|
|
|
4
4
|
titleDrawer: string;
|
|
5
5
|
percentProgressBar: number;
|
|
6
6
|
onPressedBackEvent: EventEmitter<any>;
|
|
7
|
-
onPressedDoneEvent: EventEmitter<any>;
|
|
8
7
|
onDrawerClosed: EventEmitter<void>;
|
|
9
8
|
isVisible: boolean;
|
|
10
9
|
close(): void;
|
|
11
10
|
onAnimDone(event: any): void;
|
|
12
|
-
done(): void;
|
|
13
11
|
static ɵfac: i0.ɵɵFactoryDeclaration<DrawerContainerRightComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerContainerRightComponent, "ius-drawer-container-right", never, { "titleDrawer": { "alias": "titleDrawer"; "required": false; }; "percentProgressBar": { "alias": "percentProgressBar"; "required": false; }; }, { "onPressedBackEvent": "onPressedBackEvent"; "
|
|
12
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DrawerContainerRightComponent, "ius-drawer-container-right", never, { "titleDrawer": { "alias": "titleDrawer"; "required": false; }; "percentProgressBar": { "alias": "percentProgressBar"; "required": false; }; }, { "onPressedBackEvent": "onPressedBackEvent"; "onDrawerClosed": "onDrawerClosed"; }, never, ["*"], true, never>;
|
|
15
13
|
}
|