@meshmakers/shared-ui 3.4.1070 → 3.4.1090
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/package.json
CHANGED
|
@@ -519,6 +519,17 @@ declare class ListViewComponent extends CommandBaseService implements OnDestroy,
|
|
|
519
519
|
static ɵcmp: i0.ɵɵComponentDeclaration<ListViewComponent, "mm-list-view", never, { "pageSize": { "alias": "pageSize"; "required": false; }; "skip": { "alias": "skip"; "required": false; }; "autoPageSize": { "alias": "autoPageSize"; "required": false; }; "rowIsClickable": { "alias": "rowIsClickable"; "required": false; }; "showRowCheckBoxes": { "alias": "showRowCheckBoxes"; "required": false; }; "showRowSelectAllCheckBox": { "alias": "showRowSelectAllCheckBox"; "required": false; }; "contextMenuType": { "alias": "contextMenuType"; "required": false; }; "leftToolbarActions": { "alias": "leftToolbarActions"; "required": false; }; "rightToolbarActions": { "alias": "rightToolbarActions"; "required": false; }; "actionCommandItems": { "alias": "actionCommandItems"; "required": false; }; "contextMenuCommandItems": { "alias": "contextMenuCommandItems"; "required": false; }; "excelExportFileName": { "alias": "excelExportFileName"; "required": false; }; "pdfExportFileName": { "alias": "pdfExportFileName"; "required": false; }; "pageable": { "alias": "pageable"; "required": false; }; "sortable": { "alias": "sortable"; "required": false; }; "rowFilterEnabled": { "alias": "rowFilterEnabled"; "required": false; }; "searchTextBoxEnabled": { "alias": "searchTextBoxEnabled"; "required": false; }; "persistListState": { "alias": "persistListState"; "required": false; }; "listStateKey": { "alias": "listStateKey"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "actionsColumnWidth": { "alias": "actionsColumnWidth"; "required": false; }; "hideCheckboxesBelow": { "alias": "hideCheckboxesBelow"; "required": false; }; "cardModeBelow": { "alias": "cardModeBelow"; "required": false; }; "rowClass": { "alias": "rowClass"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; }, { "rowClicked": "rowClicked"; "resetFilters": "resetFilters"; }, never, never, true, never>;
|
|
520
520
|
}
|
|
521
521
|
|
|
522
|
+
declare const upload: {
|
|
523
|
+
name: string;
|
|
524
|
+
content: string;
|
|
525
|
+
viewBox: string;
|
|
526
|
+
};
|
|
527
|
+
declare const deleteIcon: {
|
|
528
|
+
name: string;
|
|
529
|
+
content: string;
|
|
530
|
+
viewBox: string;
|
|
531
|
+
};
|
|
532
|
+
|
|
522
533
|
declare class UploadFileDialogComponent extends DialogContentBase {
|
|
523
534
|
private readonly dialogRef;
|
|
524
535
|
private readonly notificationService;
|
|
@@ -540,16 +551,8 @@ declare class UploadFileDialogComponent extends DialogContentBase {
|
|
|
540
551
|
removeFile(): void;
|
|
541
552
|
onOk(): void;
|
|
542
553
|
onCancel(): void;
|
|
543
|
-
protected
|
|
544
|
-
|
|
545
|
-
content: string;
|
|
546
|
-
viewBox: string;
|
|
547
|
-
};
|
|
548
|
-
protected readonly deleteIcon: {
|
|
549
|
-
name: string;
|
|
550
|
-
content: string;
|
|
551
|
-
viewBox: string;
|
|
552
|
-
};
|
|
554
|
+
protected get upload(): typeof upload;
|
|
555
|
+
protected get deleteIcon(): typeof deleteIcon;
|
|
553
556
|
static ɵfac: i0.ɵɵFactoryDeclaration<UploadFileDialogComponent, never>;
|
|
554
557
|
static ɵcmp: i0.ɵɵComponentDeclaration<UploadFileDialogComponent, "mm-upload-file-dialog", never, { "message": { "alias": "message"; "required": false; }; "mimeTypes": { "alias": "mimeTypes"; "required": false; }; "fileExtensions": { "alias": "fileExtensions"; "required": false; }; }, {}, never, never, true, never>;
|
|
555
558
|
}
|
|
@@ -2278,12 +2281,12 @@ declare class CronBuilderComponent implements OnInit, ControlValueAccessor {
|
|
|
2278
2281
|
weekly: CronPreset[];
|
|
2279
2282
|
monthly: CronPreset[];
|
|
2280
2283
|
}>;
|
|
2281
|
-
protected
|
|
2282
|
-
protected
|
|
2283
|
-
protected
|
|
2284
|
-
protected
|
|
2285
|
-
protected
|
|
2286
|
-
protected
|
|
2284
|
+
protected get secondIntervalOptions(): typeof SECOND_INTERVALS;
|
|
2285
|
+
protected get minuteIntervalOptions(): typeof MINUTE_INTERVALS;
|
|
2286
|
+
protected get hourIntervalOptions(): typeof HOUR_INTERVALS;
|
|
2287
|
+
protected get weekdayOptions(): typeof WEEKDAYS;
|
|
2288
|
+
protected get weekdayAbbreviations(): typeof WEEKDAY_ABBREVIATIONS;
|
|
2289
|
+
protected get relativeWeekOptions(): typeof RELATIVE_WEEKS;
|
|
2287
2290
|
protected readonly hourOptions: DropdownOption<number>[];
|
|
2288
2291
|
protected readonly minuteOptions: DropdownOption<number>[];
|
|
2289
2292
|
protected readonly dayOfMonthOptions: DropdownOption<number>[];
|
|
@@ -2438,7 +2441,7 @@ declare class ImportStrategyDialogComponent extends DialogContentBase {
|
|
|
2438
2441
|
private readonly dialogRef;
|
|
2439
2442
|
message: string;
|
|
2440
2443
|
protected selectedStrategy: ImportStrategyDto;
|
|
2441
|
-
protected
|
|
2444
|
+
protected get ImportStrategyDto(): typeof ImportStrategyDto;
|
|
2442
2445
|
constructor();
|
|
2443
2446
|
onImport(): void;
|
|
2444
2447
|
onCancel(): void;
|
|
@@ -2473,7 +2476,7 @@ declare class WindowStateService {
|
|
|
2473
2476
|
* sizes stay untouched, so returning to a larger screen restores them.
|
|
2474
2477
|
*/
|
|
2475
2478
|
private clampToViewport;
|
|
2476
|
-
/** Seam for tests — window.innerWidth/innerHeight are not assignable in
|
|
2479
|
+
/** Seam for tests — window.innerWidth/innerHeight are not assignable in jsdom. */
|
|
2477
2480
|
protected viewportSize(): WindowDimensions;
|
|
2478
2481
|
captureAndSave(dialogKey: string, windowElement: HTMLElement, min?: WindowDimensions): void;
|
|
2479
2482
|
private parsePixels;
|