@meshmakers/shared-ui 0.0.2304-15002 → 0.0.2304-23001

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.
Files changed (30) hide show
  1. package/README.md +4 -7
  2. package/esm2020/lib/confirmation-dialog/confirmation-dialog.module.mjs +4 -4
  3. package/esm2020/lib/confirmation-dialog/confirmation-window/confirmation-window.component.mjs +8 -4
  4. package/esm2020/lib/confirmation-dialog/services/confirmation.service.mjs +7 -7
  5. package/esm2020/lib/ia-shared-ui/ia-autocomplete-input/ia-autocomplete-input.mjs +32 -19
  6. package/esm2020/lib/ia-shared-ui/ia-entity-select-input/ia-entity-select-input.component.mjs +30 -18
  7. package/esm2020/lib/ia-shared-ui/ia-multiple-entity-select-input/ia-multiple-entity-select-input.component.mjs +39 -24
  8. package/esm2020/lib/ia-shared-ui/ia-notification-bar/ia-notification-bar.component.mjs +5 -4
  9. package/esm2020/lib/ia-shared-ui/ia-shared-ui.module.mjs +4 -4
  10. package/esm2020/lib/ia-shared-ui/message-details/message-details.component.mjs +3 -3
  11. package/esm2020/lib/progress-notifier/progress-notifier.module.mjs +4 -4
  12. package/esm2020/lib/progress-notifier/progress-window/progress-window.component.mjs +5 -4
  13. package/esm2020/lib/progress-notifier/services/progress-notifier.service.mjs +7 -6
  14. package/esm2020/lib/progress-notifier/shared/progressValue.mjs +5 -1
  15. package/esm2020/lib/shared/abstractDetailsComponent.mjs +8 -7
  16. package/esm2020/lib/shared/commonValidators.mjs +4 -3
  17. package/fesm2015/meshmakers-shared-ui.mjs +161 -100
  18. package/fesm2015/meshmakers-shared-ui.mjs.map +1 -1
  19. package/fesm2020/meshmakers-shared-ui.mjs +148 -99
  20. package/fesm2020/meshmakers-shared-ui.mjs.map +1 -1
  21. package/lib/confirmation-dialog/confirmation-window/confirmation-window.component.d.ts +4 -4
  22. package/lib/confirmation-dialog/services/confirmation.service.d.ts +1 -1
  23. package/lib/ia-shared-ui/ia-autocomplete-input/ia-autocomplete-input.d.ts +3 -3
  24. package/lib/ia-shared-ui/ia-entity-select-input/ia-entity-select-input.component.d.ts +4 -4
  25. package/lib/ia-shared-ui/ia-multiple-entity-select-input/ia-multiple-entity-select-input.component.d.ts +6 -6
  26. package/lib/ia-shared-ui/ia-notification-bar/ia-notification-bar.component.d.ts +1 -1
  27. package/lib/progress-notifier/progress-window/progress-window.component.d.ts +1 -1
  28. package/lib/progress-notifier/shared/progressValue.d.ts +2 -1
  29. package/lib/shared/abstractDetailsComponent.d.ts +5 -5
  30. package/package.json +8 -4
@@ -15,21 +15,21 @@ export declare class IaMultipleEntitySelectInput implements OnInit, OnDestroy, D
15
15
  readonly searchFormControl: FormControl;
16
16
  isLoading: boolean;
17
17
  filteredEntities: any[];
18
- ngControl: NgControl;
18
+ ngControl: NgControl | null;
19
19
  errorState: boolean;
20
20
  focused: boolean;
21
21
  readonly stateChanges: Subject<void>;
22
22
  readonly id: string;
23
23
  valuesChange: EventEmitter<Array<any>>;
24
24
  private _selectedEntities;
25
- private inputField;
25
+ private readonly inputField;
26
26
  private describedBy;
27
27
  private activatedValue;
28
28
  readonly separatorKeysCodes: readonly [13, 188];
29
29
  constructor(elRef: ElementRef, injector: Injector, fm: FocusMonitor);
30
30
  private _dataSource;
31
- get dataSource(): EntitySelectDataSource<any>;
32
- set dataSource(value: EntitySelectDataSource<any>);
31
+ get dataSource(): EntitySelectDataSource<any> | null;
32
+ set dataSource(value: EntitySelectDataSource<any> | null);
33
33
  private _disabled;
34
34
  get disabled(): boolean;
35
35
  set disabled(dis: boolean);
@@ -42,8 +42,8 @@ export declare class IaMultipleEntitySelectInput implements OnInit, OnDestroy, D
42
42
  private _prefix;
43
43
  get prefix(): string;
44
44
  set prefix(value: string);
45
- get value(): Array<any>;
46
- set value(value: Array<any>);
45
+ get value(): Array<any> | null;
46
+ set value(value: Array<any> | null);
47
47
  get empty(): boolean;
48
48
  get shouldLabelFloat(): boolean;
49
49
  ngOnInit(): void;
@@ -5,7 +5,7 @@ import * as i0 from "@angular/core";
5
5
  export declare class IaNotificationBarComponent implements OnInit {
6
6
  private messageService;
7
7
  private dialog;
8
- errorMessage: ErrorMessage;
8
+ errorMessage: ErrorMessage | null;
9
9
  constructor(messageService: MessageService, dialog: MatDialog);
10
10
  ngOnInit(): void;
11
11
  onHide(): void;
@@ -13,7 +13,7 @@ export interface ProgressWindowResult {
13
13
  }
14
14
  export declare class ProgressWindowComponent implements OnInit {
15
15
  data: ProgressWindowData;
16
- statusText: string;
16
+ statusText: string | null;
17
17
  progressValue: number;
18
18
  constructor(data: ProgressWindowData);
19
19
  ngOnInit(): void;
@@ -1,4 +1,5 @@
1
1
  export declare class ProgressValue {
2
- statusText: string;
2
+ statusText: string | null;
3
3
  progressValue: number;
4
+ constructor();
4
5
  }
@@ -1,13 +1,13 @@
1
1
  import { FormGroup } from "@angular/forms";
2
2
  export declare abstract class AbstractDetailsComponent<TEntity> {
3
3
  loading: boolean;
4
- protected entity: TEntity;
4
+ protected entity: TEntity | null;
5
5
  protected constructor();
6
- protected _ownerForm: FormGroup;
7
- get ownerForm(): FormGroup;
6
+ protected _ownerForm: FormGroup | null;
7
+ get ownerForm(): FormGroup | null;
8
8
  get isLoaded(): boolean;
9
- hasError: (controlName: string, errorName: string) => boolean;
10
- hasFormError: (errorName: string) => boolean;
9
+ hasError: (controlName: string, errorName: string) => boolean | undefined;
10
+ hasFormError: (errorName: string) => boolean | undefined;
11
11
  updateDateTime(controlName: string): void;
12
12
  copyInputMessage(inputElement: any): void;
13
13
  protected onProgressStarting(): void;
package/package.json CHANGED
@@ -1,9 +1,14 @@
1
1
  {
2
2
  "name": "@meshmakers/shared-ui",
3
- "version": "0.0.2304-15002",
3
+ "version": "0.0.2304-23001",
4
+ "peerDependencies": {
5
+ "@angular/common": "^15.2.0",
6
+ "@angular/core": "^15.2.0"
7
+ },
4
8
  "dependencies": {
5
- "tslib": "^2.5.0"
9
+ "tslib": "^2.3.0"
6
10
  },
11
+ "sideEffects": false,
7
12
  "module": "fesm2015/meshmakers-shared-ui.mjs",
8
13
  "es2020": "fesm2020/meshmakers-shared-ui.mjs",
9
14
  "esm2020": "esm2020/meshmakers-shared-ui.mjs",
@@ -22,6 +27,5 @@
22
27
  "node": "./fesm2015/meshmakers-shared-ui.mjs",
23
28
  "default": "./fesm2020/meshmakers-shared-ui.mjs"
24
29
  }
25
- },
26
- "sideEffects": false
30
+ }
27
31
  }