@unipin/angular-applet 17.0.3 → 17.0.5
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/components/audit/detail/audit-detail.component.mjs +7 -7
- package/esm2022/lib/components/audit/list/audit-list.component.mjs +3 -3
- package/esm2022/lib/components/audit/service/audit.service.mjs +3 -3
- package/esm2022/lib/components/buttons/group/btn-group.component.mjs +3 -3
- package/esm2022/lib/components/buttons/loading/btn-loading.component.mjs +3 -3
- package/esm2022/lib/components/containers/applet-container/applet-container.component.mjs +5 -5
- package/esm2022/lib/components/containers/colum-header-container/column-header-container.component.mjs +3 -3
- package/esm2022/lib/components/containers/column-container/column-container.component.mjs +5 -5
- package/esm2022/lib/components/containers/column-container/directives/lazyr-route.directive.mjs +3 -3
- package/esm2022/lib/components/containers/list-container/list-pagination-container/list-pagination-container.component.mjs +3 -3
- package/esm2022/lib/components/containers/list-container/list-snapshot-container/list-snapshot-container.component.mjs +3 -3
- package/esm2022/lib/components/containers/modal-container/modal-container.component.mjs +3 -3
- package/esm2022/lib/components/filter/filter.component.mjs +4 -4
- package/esm2022/lib/components/forms/date/form-date.component.mjs +5 -5
- package/esm2022/lib/components/forms/input/form-input.component.mjs +3 -3
- package/esm2022/lib/components/forms/password/form-password.component.mjs +3 -3
- package/esm2022/lib/components/forms/searchable-select/form-searchable-select.component.mjs +9 -6
- package/esm2022/lib/components/forms/select/form-select.component.mjs +9 -6
- package/esm2022/lib/components/forms/textarea/form-textarea.component.mjs +3 -3
- package/esm2022/lib/components/grids/grid-pagination/grid-pagination.component.mjs +10 -8
- package/esm2022/lib/components/grids/grid-snapshot/grid-snapshot.component.mjs +8 -8
- package/esm2022/lib/components/grids/services/grid.service.mjs +3 -3
- package/esm2022/lib/components/tabs/tab-content/tab-content.component.mjs +3 -3
- package/esm2022/lib/components/tabs/tab-group/tab-group.component.mjs +3 -3
- package/esm2022/lib/components/tabs/tabs.component.module.mjs +4 -4
- package/esm2022/lib/interceptors/header/header.interceptor.mjs +3 -3
- package/esm2022/lib/interceptors/refresh-token/refresh-token.interceptor.mjs +3 -3
- package/esm2022/lib/modules/permission/directive/permission.directive.mjs +3 -3
- package/esm2022/lib/modules/permission/pages/401/unauthorized.page.mjs +3 -3
- package/esm2022/lib/modules/permission/pages/loading/loading.page.mjs +3 -3
- package/esm2022/lib/modules/permission/permission.module.mjs +4 -4
- package/esm2022/lib/modules/permission/services/permission.service.mjs +3 -3
- package/esm2022/lib/resolvers/auth/auth.resolver.mjs +3 -3
- package/esm2022/lib/services/auth/auth.service.mjs +3 -3
- package/esm2022/lib/services/country/country.service.mjs +3 -3
- package/esm2022/lib/services/profile/profile.service.mjs +3 -3
- package/fesm2022/unipin-angular-applet.mjs +136 -128
- package/fesm2022/unipin-angular-applet.mjs.map +1 -1
- package/lib/components/forms/searchable-select/form-searchable-select.component.d.ts +2 -1
- package/lib/components/forms/select/form-select.component.d.ts +2 -1
- package/lib/components/grids/grid-pagination/grid-pagination.component.d.ts +1 -1
- package/lib/components/grids/grid-snapshot/grid-snapshot.component.d.ts +1 -1
- package/package.json +2 -2
- package/src/assets/scss/grid.scss +4 -2
|
@@ -6,6 +6,7 @@ export declare class FormSearchableSelectComponent implements ControlValueAccess
|
|
|
6
6
|
placeholder: string;
|
|
7
7
|
protected readonly ch: ChangeDetectorRef;
|
|
8
8
|
queryFunc: (keyword: string) => Observable<any>;
|
|
9
|
+
clearable: boolean;
|
|
9
10
|
label: string;
|
|
10
11
|
initialItems: any[];
|
|
11
12
|
required: boolean;
|
|
@@ -34,5 +35,5 @@ export declare class FormSearchableSelectComponent implements ControlValueAccess
|
|
|
34
35
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
35
36
|
change(e?: any): void;
|
|
36
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSearchableSelectComponent, [{ attribute: "placeholder"; }, null]>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormSearchableSelectComponent, "up-searchable-select", never, { "queryFunc": { "alias": "queryFunc"; "required": true; }; "label": { "alias": "label"; "required": false; }; "initialItems": { "alias": "initialItems"; "required": false; }; "required": { "alias": "required"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormSearchableSelectComponent, "up-searchable-select", never, { "queryFunc": { "alias": "queryFunc"; "required": true; }; "clearable": { "alias": "clearable"; "required": false; }; "label": { "alias": "label"; "required": false; }; "initialItems": { "alias": "initialItems"; "required": false; }; "required": { "alias": "required"; "required": false; }; "addTag": { "alias": "addTag"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
38
39
|
}
|
|
@@ -5,6 +5,7 @@ export declare class FormSelectComponent implements ControlValueAccessor, Valida
|
|
|
5
5
|
placeholder: string;
|
|
6
6
|
protected readonly ch: ChangeDetectorRef;
|
|
7
7
|
items: any[];
|
|
8
|
+
clearable: boolean;
|
|
8
9
|
label: string;
|
|
9
10
|
multiple: boolean;
|
|
10
11
|
required: boolean;
|
|
@@ -26,5 +27,5 @@ export declare class FormSelectComponent implements ControlValueAccessor, Valida
|
|
|
26
27
|
validate(control: AbstractControl): ValidationErrors | null;
|
|
27
28
|
change(e?: any): void;
|
|
28
29
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormSelectComponent, [{ attribute: "placeholder"; }, null]>;
|
|
29
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectComponent, "up-select", never, { "items": { "alias": "items"; "required": true; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<FormSelectComponent, "up-select", never, { "items": { "alias": "items"; "required": true; }; "clearable": { "alias": "clearable"; "required": false; }; "label": { "alias": "label"; "required": false; }; "multiple": { "alias": "multiple"; "required": false; }; "required": { "alias": "required"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "searchable": { "alias": "searchable"; "required": false; }; "bindLabel": { "alias": "bindLabel"; "required": false; }; "bindValue": { "alias": "bindValue"; "required": false; }; }, {}, never, never, true, never>;
|
|
30
31
|
}
|
|
@@ -22,7 +22,7 @@ export declare class GridPaginationComponent implements OnInit, OnDestroy {
|
|
|
22
22
|
ngOnInit(): void;
|
|
23
23
|
ngOnDestroy(): void;
|
|
24
24
|
clickRow(data: any): void;
|
|
25
|
-
dragColumn({
|
|
25
|
+
dragColumn({ api }: DragStoppedEvent): void;
|
|
26
26
|
changeSelected(data: SelectionChangedEvent<any>): void;
|
|
27
27
|
setDatasource(ev: GridReadyEvent): void;
|
|
28
28
|
reset(): void;
|
|
@@ -25,7 +25,7 @@ export declare class GridSnapshotComponent implements OnInit, OnDestroy {
|
|
|
25
25
|
ngOnInit(): void;
|
|
26
26
|
ngOnDestroy(): void;
|
|
27
27
|
clickRow(data: any): void;
|
|
28
|
-
dragColumn({
|
|
28
|
+
dragColumn({ api }: DragStoppedEvent): void;
|
|
29
29
|
changeSelected(data: SelectionChangedEvent<any>): void;
|
|
30
30
|
setDatasource(ev: GridReadyEvent): void;
|
|
31
31
|
reset(): void;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@unipin/angular-applet",
|
|
3
|
-
"version": "17.0.
|
|
3
|
+
"version": "17.0.5",
|
|
4
4
|
"sideEffects": false,
|
|
5
5
|
"homepage": "https://backoffice.unipin.com/",
|
|
6
6
|
"description": "Angular specific wrappers for UniPin applet",
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"@angular/common": "17.x.x",
|
|
10
10
|
"@angular/core": "17.x.x",
|
|
11
11
|
"@ionic/angular": "7.x.x",
|
|
12
|
-
"ionicons": "^7.
|
|
12
|
+
"ionicons": "^7.x.x",
|
|
13
13
|
"@apollo/client": "3.x.x",
|
|
14
14
|
"apollo-angular": "6.x.x",
|
|
15
15
|
"graphql": "16.x.x"
|
|
@@ -431,10 +431,12 @@ ag-grid, ag-grid-angular, ag-grid-ng2, ag-grid-polymer, ag-grid-aurelia {
|
|
|
431
431
|
|
|
432
432
|
.ag-center-cols-viewport {
|
|
433
433
|
width: 100%;
|
|
434
|
-
height: 100
|
|
435
|
-
overflow
|
|
434
|
+
min-height: 100%;
|
|
435
|
+
overflow: auto;
|
|
436
436
|
}
|
|
437
437
|
|
|
438
|
+
.ag-center-cols-viewport::-webkit-scrollbar { display: none; }
|
|
439
|
+
|
|
438
440
|
.ag-body-horizontal-scroll-viewport { overflow-x: scroll; }
|
|
439
441
|
|
|
440
442
|
.ag-body-vertical-scroll-viewport { overflow-y: scroll; }
|