@masterteam/components 0.0.178 → 0.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/fesm2022/masterteam-components-confirmation.mjs +2 -2
- package/fesm2022/masterteam-components-confirmation.mjs.map +1 -1
- package/fesm2022/masterteam-components-drawer.mjs +2 -2
- package/fesm2022/masterteam-components-drawer.mjs.map +1 -1
- package/fesm2022/masterteam-components-dynamic-drawer.mjs.map +1 -1
- package/fesm2022/masterteam-components-entities.mjs +16 -16
- package/fesm2022/masterteam-components-entities.mjs.map +1 -1
- package/fesm2022/masterteam-components-location-field.mjs +4 -4
- package/fesm2022/masterteam-components-location-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-modal.mjs +28 -5
- package/fesm2022/masterteam-components-modal.mjs.map +1 -1
- package/fesm2022/masterteam-components-number-field.mjs +2 -2
- package/fesm2022/masterteam-components-number-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-radio-cards-field.mjs +2 -2
- package/fesm2022/masterteam-components-radio-cards-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-runtime-action.mjs.map +1 -1
- package/fesm2022/masterteam-components-select-field.mjs +2 -2
- package/fesm2022/masterteam-components-select-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-table.mjs +49 -7
- package/fesm2022/masterteam-components-table.mjs.map +1 -1
- package/fesm2022/masterteam-components-tabs.mjs +2 -2
- package/fesm2022/masterteam-components-tabs.mjs.map +1 -1
- package/fesm2022/masterteam-components-text-field.mjs +2 -2
- package/fesm2022/masterteam-components-text-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-textarea-field.mjs +2 -2
- package/fesm2022/masterteam-components-textarea-field.mjs.map +1 -1
- package/fesm2022/masterteam-components-toggle-field.mjs +2 -2
- package/fesm2022/masterteam-components-toggle-field.mjs.map +1 -1
- package/fesm2022/masterteam-components.mjs +3 -3
- package/fesm2022/masterteam-components.mjs.map +1 -1
- package/package.json +1 -1
- package/types/masterteam-components-modal.d.ts +5 -1
- package/types/masterteam-components-table.d.ts +5 -0
|
@@ -5,7 +5,7 @@ import * as i0 from '@angular/core';
|
|
|
5
5
|
declare class ModalService {
|
|
6
6
|
readonly drawerService: DrawerService;
|
|
7
7
|
readonly dialogService: DialogService;
|
|
8
|
-
private
|
|
8
|
+
private readonly doc;
|
|
9
9
|
private readonly openRefs;
|
|
10
10
|
footerClass: string;
|
|
11
11
|
contentClass: string;
|
|
@@ -18,6 +18,10 @@ declare class ModalService {
|
|
|
18
18
|
*/
|
|
19
19
|
closeAll(): void;
|
|
20
20
|
handelStartEndPosition(position: string | undefined): string;
|
|
21
|
+
private resolveCurrentDirection;
|
|
22
|
+
private readDirectionAttribute;
|
|
23
|
+
private readComputedDirection;
|
|
24
|
+
private normalizeDirection;
|
|
21
25
|
private trackRef;
|
|
22
26
|
static ɵfac: i0.ɵɵFactoryDeclaration<ModalService, never>;
|
|
23
27
|
static ɵprov: i0.ɵɵInjectableDeclaration<ModalService>;
|
|
@@ -485,6 +485,8 @@ declare class TableFilterField {
|
|
|
485
485
|
protected getScalarValue(): any;
|
|
486
486
|
protected getDateRangeValue(part: 'from' | 'to'): Date | null;
|
|
487
487
|
protected getNumberRangeValue(part: 'from' | 'to'): number | null;
|
|
488
|
+
protected getNumberRangeMin(): number;
|
|
489
|
+
protected getNumberRangeMax(): number;
|
|
488
490
|
protected updateScalar(next: any): void;
|
|
489
491
|
protected getTreePlaceholder(): string;
|
|
490
492
|
protected getTreeFilterBy(): string;
|
|
@@ -493,6 +495,9 @@ declare class TableFilterField {
|
|
|
493
495
|
protected getTreePanelStyleClass(): string | undefined;
|
|
494
496
|
protected updateDate(part: 'from' | 'to', next: Date | null): void;
|
|
495
497
|
protected updateNumber(part: 'from' | 'to', next: number | null): void;
|
|
498
|
+
private isPercentageColumn;
|
|
499
|
+
private resolveConfiguredNumber;
|
|
500
|
+
private clampNumberRangeValue;
|
|
496
501
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TableFilterField, never>;
|
|
497
502
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<TableFilterField, "mt-table-filter-field", never, { "column": { "alias": "column"; "required": true; "isSignal": true; }; "value": { "alias": "value"; "required": false; "isSignal": true; }; }, { "value": "valueChange"; }, never, never, true, never>;
|
|
498
503
|
}
|