@masterteam/components 0.0.172 → 0.0.174
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/assets/common.css +1 -1
- package/fesm2022/masterteam-components-entities.mjs +16 -2
- package/fesm2022/masterteam-components-entities.mjs.map +1 -1
- package/fesm2022/masterteam-components-table.mjs +54 -6
- package/fesm2022/masterteam-components-table.mjs.map +1 -1
- package/fesm2022/masterteam-components-upload-field.mjs +49 -4
- package/fesm2022/masterteam-components-upload-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-user-search-field.mjs +11 -1
- package/fesm2022/masterteam-components-user-search-field.mjs.map +1 -1
- package/fesm2022/masterteam-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/masterteam-components-entities.d.ts +2 -0
- package/types/masterteam-components-table.d.ts +5 -1
- package/types/masterteam-components-upload-field.d.ts +1 -1
- package/types/masterteam-components.d.ts +2 -2
|
@@ -245,7 +245,7 @@ declare class Table {
|
|
|
245
245
|
filterTerm: _angular_core.ModelSignal<string>;
|
|
246
246
|
groupBy: _angular_core.ModelSignal<string | null>;
|
|
247
247
|
sortField: _angular_core.WritableSignal<string | null>;
|
|
248
|
-
sortDirection: _angular_core.WritableSignal<"
|
|
248
|
+
sortDirection: _angular_core.WritableSignal<"desc" | "asc" | null>;
|
|
249
249
|
confirmationService: ConfirmationService;
|
|
250
250
|
private readonly exportService;
|
|
251
251
|
private readonly transloco;
|
|
@@ -443,10 +443,12 @@ declare class TableFilter implements ControlValueAccessor {
|
|
|
443
443
|
readonly data: _angular_core.InputSignal<any[]>;
|
|
444
444
|
readonly filterApplied: _angular_core.OutputEmitterRef<TableFilters>;
|
|
445
445
|
readonly filterReset: _angular_core.OutputEmitterRef<void>;
|
|
446
|
+
private readonly popoverRef;
|
|
446
447
|
protected pendingFilters: _angular_core.WritableSignal<TableFilters>;
|
|
447
448
|
protected appliedFilters: _angular_core.WritableSignal<TableFilters>;
|
|
448
449
|
private onChange;
|
|
449
450
|
private onTouched;
|
|
451
|
+
constructor();
|
|
450
452
|
protected filterableColumns: _angular_core.Signal<ColumnDef[]>;
|
|
451
453
|
protected activeFilterCount: _angular_core.Signal<number>;
|
|
452
454
|
protected updateFilter(key: string, value: any): void;
|
|
@@ -499,6 +501,8 @@ declare class TableColumnFilter {
|
|
|
499
501
|
readonly filterChange: _angular_core.OutputEmitterRef<any>;
|
|
500
502
|
protected readonly pendingValue: _angular_core.WritableSignal<any>;
|
|
501
503
|
protected readonly hasActiveValue: _angular_core.Signal<boolean>;
|
|
504
|
+
private readonly popoverRef;
|
|
505
|
+
constructor();
|
|
502
506
|
protected open(popover: Popover, event: Event): void;
|
|
503
507
|
protected apply(popover: Popover): void;
|
|
504
508
|
protected clear(popover: Popover): void;
|
|
@@ -14,7 +14,7 @@ declare class UploadField implements ControlValueAccessor {
|
|
|
14
14
|
readonly userImgClass: _angular_core.InputSignal<string | undefined>;
|
|
15
15
|
readonly shape: _angular_core.InputSignal<"circle" | "field" | "card">;
|
|
16
16
|
readonly multiple: _angular_core.InputSignal<boolean>;
|
|
17
|
-
readonly accept: _angular_core.InputSignal<string | undefined>;
|
|
17
|
+
readonly accept: _angular_core.InputSignal<string | string[] | undefined>;
|
|
18
18
|
readonly isDragging: _angular_core.ModelSignal<boolean>;
|
|
19
19
|
readonly fileSizeLimit: _angular_core.InputSignal<number | undefined>;
|
|
20
20
|
readonly: _angular_core.InputSignal<boolean>;
|
|
@@ -230,7 +230,7 @@ declare class UploadFileFieldConfig extends BaseFieldConfig {
|
|
|
230
230
|
userImgClass?: string;
|
|
231
231
|
shape?: string;
|
|
232
232
|
multiple?: boolean;
|
|
233
|
-
accept?: string;
|
|
233
|
+
accept?: string | string[];
|
|
234
234
|
fileSizeLimit?: number | undefined;
|
|
235
235
|
context: HttpContext | undefined;
|
|
236
236
|
title: string;
|
|
@@ -241,7 +241,7 @@ declare class UploadFileFieldConfig extends BaseFieldConfig {
|
|
|
241
241
|
userImgClass?: string;
|
|
242
242
|
shape?: string;
|
|
243
243
|
multiple?: boolean;
|
|
244
|
-
accept?: string;
|
|
244
|
+
accept?: string | string[];
|
|
245
245
|
fileSizeLimit?: number | undefined;
|
|
246
246
|
context?: HttpContext | undefined;
|
|
247
247
|
title?: string;
|