@meshmakers/shared-ui 0.0.2304-15002 → 0.0.2304-26001
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/README.md +4 -7
- package/esm2020/lib/confirmation-dialog/confirmation-dialog.module.mjs +4 -4
- package/esm2020/lib/confirmation-dialog/confirmation-window/confirmation-window.component.mjs +8 -4
- package/esm2020/lib/confirmation-dialog/services/confirmation.service.mjs +7 -7
- package/esm2020/lib/ia-shared-ui/ia-autocomplete-input/ia-autocomplete-input.mjs +32 -19
- package/esm2020/lib/ia-shared-ui/ia-entity-select-input/ia-entity-select-input.component.mjs +30 -18
- package/esm2020/lib/ia-shared-ui/ia-multiple-entity-select-input/ia-multiple-entity-select-input.component.mjs +39 -24
- package/esm2020/lib/ia-shared-ui/ia-notification-bar/ia-notification-bar.component.mjs +5 -4
- package/esm2020/lib/ia-shared-ui/ia-shared-ui.module.mjs +4 -4
- package/esm2020/lib/ia-shared-ui/message-details/message-details.component.mjs +3 -3
- package/esm2020/lib/progress-notifier/progress-notifier.module.mjs +4 -4
- package/esm2020/lib/progress-notifier/progress-window/progress-window.component.mjs +5 -4
- package/esm2020/lib/progress-notifier/services/progress-notifier.service.mjs +7 -6
- package/esm2020/lib/progress-notifier/shared/progressValue.mjs +5 -1
- package/esm2020/lib/shared/abstractDetailsComponent.mjs +9 -8
- package/esm2020/lib/shared/commonValidators.mjs +10 -3
- package/fesm2015/meshmakers-shared-ui.mjs +169 -101
- package/fesm2015/meshmakers-shared-ui.mjs.map +1 -1
- package/fesm2020/meshmakers-shared-ui.mjs +155 -100
- package/fesm2020/meshmakers-shared-ui.mjs.map +1 -1
- package/lib/confirmation-dialog/confirmation-window/confirmation-window.component.d.ts +4 -4
- package/lib/confirmation-dialog/services/confirmation.service.d.ts +1 -1
- package/lib/ia-shared-ui/ia-autocomplete-input/ia-autocomplete-input.d.ts +3 -3
- package/lib/ia-shared-ui/ia-entity-select-input/ia-entity-select-input.component.d.ts +4 -4
- package/lib/ia-shared-ui/ia-multiple-entity-select-input/ia-multiple-entity-select-input.component.d.ts +6 -6
- package/lib/ia-shared-ui/ia-notification-bar/ia-notification-bar.component.d.ts +1 -1
- package/lib/progress-notifier/progress-window/progress-window.component.d.ts +1 -1
- package/lib/progress-notifier/shared/progressValue.d.ts +2 -1
- package/lib/shared/abstractDetailsComponent.d.ts +3 -3
- package/lib/shared/commonValidators.d.ts +1 -0
- 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,9 +1,9 @@
|
|
|
1
1
|
import { FormGroup } from "@angular/forms";
|
|
2
2
|
export declare abstract class AbstractDetailsComponent<TEntity> {
|
|
3
3
|
loading: boolean;
|
|
4
|
-
protected entity: TEntity;
|
|
5
|
-
protected constructor();
|
|
6
|
-
|
|
4
|
+
protected entity: TEntity | null;
|
|
5
|
+
protected constructor(formGroup: FormGroup);
|
|
6
|
+
private _ownerForm;
|
|
7
7
|
get ownerForm(): FormGroup;
|
|
8
8
|
get isLoaded(): boolean;
|
|
9
9
|
hasError: (controlName: string, errorName: string) => boolean;
|
|
@@ -5,6 +5,7 @@ export declare interface CompareValueFn<TValue> {
|
|
|
5
5
|
export declare class CommonValidators {
|
|
6
6
|
static phoneNumber(): ValidatorFn;
|
|
7
7
|
static httpUri(): ValidatorFn;
|
|
8
|
+
static ensureSameValue(sourceControlName: string): ValidatorFn;
|
|
8
9
|
static conditionalRequired<TCompareValue>(sourceControlName: string, sourceValueCompareExpression: CompareValueFn<TCompareValue>): ValidatorFn;
|
|
9
10
|
static dependentControls(controlNames: string[]): ValidatorFn;
|
|
10
11
|
}
|
package/package.json
CHANGED
|
@@ -1,9 +1,14 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meshmakers/shared-ui",
|
|
3
|
-
"version": "0.0.2304-
|
|
3
|
+
"version": "0.0.2304-26001",
|
|
4
|
+
"peerDependencies": {
|
|
5
|
+
"@angular/common": "^15.2.0",
|
|
6
|
+
"@angular/core": "^15.2.0"
|
|
7
|
+
},
|
|
4
8
|
"dependencies": {
|
|
5
|
-
"tslib": "^2.
|
|
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
|
}
|