ud-components 0.3.22 → 0.3.24
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.
|
@@ -7,6 +7,7 @@ import { SelectionModel } from '@angular/cdk/collections';
|
|
|
7
7
|
import { ElementRef, EventEmitter, OnInit, TemplateRef } from '@angular/core';
|
|
8
8
|
import { FormGroup } from '@angular/forms';
|
|
9
9
|
import { MatPaginator, PageEvent } from '@angular/material/paginator';
|
|
10
|
+
import { UdSelectOption } from '../form-fields/multi-select/multi-select.component';
|
|
10
11
|
import { MatSort } from '@angular/material/sort';
|
|
11
12
|
import { MatTableDataSource } from '@angular/material/table';
|
|
12
13
|
import { Observable } from 'rxjs';
|
|
@@ -166,6 +167,7 @@ export declare class CustomTableComponent implements OnInit {
|
|
|
166
167
|
label: Observable<string>;
|
|
167
168
|
value: NumberOperator;
|
|
168
169
|
}[];
|
|
170
|
+
numberOperationOptions: UdSelectOption[];
|
|
169
171
|
paginatorRef: MatPaginator;
|
|
170
172
|
set paginator(val: MatPaginator);
|
|
171
173
|
set sort(val: MatSort);
|
|
@@ -200,6 +202,8 @@ export declare class CustomTableComponent implements OnInit {
|
|
|
200
202
|
formatPhoneNumber(value: string): string;
|
|
201
203
|
getRowBackgroundColor(index: number): "bg-accent" | "bg-white";
|
|
202
204
|
getHyperlinkRoute(row: any, column: TableDisplayColumn): string;
|
|
205
|
+
hasFilterValue(property: string): boolean;
|
|
206
|
+
clearFilter(property: string): void;
|
|
203
207
|
private isApplicationSubmitted;
|
|
204
208
|
get hasSelectedRow(): boolean;
|
|
205
209
|
get actionColumnStyleWidth(): string;
|
|
@@ -23,6 +23,8 @@ export declare class TextInputComponent implements OnChanges {
|
|
|
23
23
|
loading: boolean;
|
|
24
24
|
/** Step amount for number type increment/decrement. */
|
|
25
25
|
step: number;
|
|
26
|
+
min?: number;
|
|
27
|
+
max?: number;
|
|
26
28
|
disabled: boolean;
|
|
27
29
|
private controlContainer;
|
|
28
30
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -30,5 +32,5 @@ export declare class TextInputComponent implements OnChanges {
|
|
|
30
32
|
increment(): void;
|
|
31
33
|
decrement(): void;
|
|
32
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<TextInputComponent, never>;
|
|
33
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "ud-text-input", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "step": { "alias": "step"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
35
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TextInputComponent, "ud-text-input", never, { "controlName": { "alias": "controlName"; "required": true; }; "label": { "alias": "label"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconFontSet": { "alias": "iconFontSet"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "step": { "alias": "step"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
34
36
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ud-components",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.24",
|
|
4
4
|
"peerDependencies": {
|
|
5
5
|
"@angular/common": ">=19",
|
|
6
6
|
"@angular/core": ">=19",
|
|
@@ -19,30 +19,6 @@
|
|
|
19
19
|
".": {
|
|
20
20
|
"types": "./index.d.ts",
|
|
21
21
|
"default": "./fesm2022/ud-components.mjs"
|
|
22
|
-
},
|
|
23
|
-
"./enums/role.enum": {
|
|
24
|
-
"types": "./enums/role.enum.d.ts",
|
|
25
|
-
"default": "./enums/role.enum.js"
|
|
26
|
-
},
|
|
27
|
-
"./lib/kpi/kpi.enum": {
|
|
28
|
-
"types": "./lib/kpi/kpi.enum.d.ts",
|
|
29
|
-
"default": "./lib/kpi/kpi.enum.js"
|
|
30
|
-
},
|
|
31
|
-
"./lib/edit-view/edit-view-section.directive": {
|
|
32
|
-
"types": "./lib/edit-view/edit-view-section.directive.d.ts",
|
|
33
|
-
"default": "./lib/edit-view/edit-view-section.directive.js"
|
|
34
|
-
},
|
|
35
|
-
"./interfaces/page-request.interface": {
|
|
36
|
-
"types": "./interfaces/page-request.interface.d.ts",
|
|
37
|
-
"default": "./interfaces/page-request.interface.js"
|
|
38
|
-
},
|
|
39
|
-
"./interfaces/table.interface": {
|
|
40
|
-
"types": "./interfaces/table.interface.d.ts",
|
|
41
|
-
"default": "./interfaces/table.interface.js"
|
|
42
|
-
},
|
|
43
|
-
"./interfaces/table-display-column.interface": {
|
|
44
|
-
"types": "./interfaces/table-display-column.interface.d.ts",
|
|
45
|
-
"default": "./interfaces/table-display-column.interface.js"
|
|
46
22
|
}
|
|
47
23
|
}
|
|
48
|
-
}
|
|
24
|
+
}
|