@messaia/cdk 20.0.0-RC.9 → 20.0.1
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/messaia-cdk.mjs +325 -119
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/index.d.ts +191 -13
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ import { MatExpansionPanel } from '@angular/material/expansion';
|
|
|
8
8
|
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
9
9
|
import * as _angular_platform_browser from '@angular/platform-browser';
|
|
10
10
|
import { Title, DomSanitizer, SafeStyle } from '@angular/platform-browser';
|
|
11
|
-
import { Router, ActivatedRoute, ActivatedRouteSnapshot, RouterStateSnapshot } from '@angular/router';
|
|
11
|
+
import { Router, ActivatedRoute, ActivatedRouteSnapshot, CanDeactivate, RouterStateSnapshot } from '@angular/router';
|
|
12
12
|
import { Observable, Subscription, BehaviorSubject, Subject } from 'rxjs';
|
|
13
13
|
import { ComponentType, CdkPortal } from '@angular/cdk/portal';
|
|
14
14
|
import * as i2 from '@angular/forms';
|
|
@@ -969,10 +969,23 @@ interface IBaseComponent {
|
|
|
969
969
|
warn(message: string, ...optionalParams: any[]): void;
|
|
970
970
|
}
|
|
971
971
|
|
|
972
|
+
/**
|
|
973
|
+
* Interface for components that want to guard against unsaved changes or prevent accidental navigation.
|
|
974
|
+
* Implement this in a component to control whether the user can leave the route.
|
|
975
|
+
*/
|
|
976
|
+
interface CanComponentDeactivate {
|
|
977
|
+
/**
|
|
978
|
+
* Called by the router before deactivating the route.
|
|
979
|
+
* Return true to allow navigation, false to prevent it,
|
|
980
|
+
* or a Promise/Observable that resolves to a boolean.
|
|
981
|
+
*/
|
|
982
|
+
canDeactivate: () => Observable<boolean> | Promise<boolean> | boolean;
|
|
983
|
+
}
|
|
984
|
+
|
|
972
985
|
/**
|
|
973
986
|
* A base list component for components with pagination support.
|
|
974
987
|
*/
|
|
975
|
-
declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterViewInit {
|
|
988
|
+
declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterViewInit, CanComponentDeactivate {
|
|
976
989
|
protected route: ActivatedRoute;
|
|
977
990
|
protected changeDetectorRef: ChangeDetectorRef;
|
|
978
991
|
/**
|
|
@@ -1144,9 +1157,11 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1144
1157
|
/**
|
|
1145
1158
|
* Create a beep audio object and load a sound file from a data URL.
|
|
1146
1159
|
*/
|
|
1160
|
+
protected beepAudio: HTMLAudioElement;
|
|
1147
1161
|
/**
|
|
1148
1162
|
* Create a warn audio object and load a sound file from a data URL.
|
|
1149
1163
|
*/
|
|
1164
|
+
protected warnAudio: HTMLAudioElement;
|
|
1150
1165
|
/**
|
|
1151
1166
|
* Initializes services and application settings, sets up context helpers,
|
|
1152
1167
|
* and initializes the editor with default configurations.
|
|
@@ -1283,11 +1298,12 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1283
1298
|
/**
|
|
1284
1299
|
* Displays a message using the snack bar service.
|
|
1285
1300
|
*
|
|
1286
|
-
* @param message The message to display
|
|
1301
|
+
* @param message The message to display.
|
|
1287
1302
|
* @param type The type of the message (Success, Warning, or Error). Defaults to Success.
|
|
1288
|
-
* @param duration
|
|
1303
|
+
* @param duration Optional duration (in milliseconds) to show the message.
|
|
1304
|
+
* If omitted, duration is adjusted based on message length.
|
|
1289
1305
|
* @param actionLabel The label for the action button. Defaults to 'OK'.
|
|
1290
|
-
* @param playSound A flag indicating whether to play a warning sound when the message type is Warning. Defaults to false.
|
|
1306
|
+
* @param playSound A flag indicating whether to play a warning sound when the message type is Warning or Error. Defaults to false.
|
|
1291
1307
|
* @returns An observable that emits when the action button is clicked.
|
|
1292
1308
|
*/
|
|
1293
1309
|
protected showMessage(message: string, type?: MessageType, duration?: number, actionLabel?: string, playSound?: boolean): Observable<void>;
|
|
@@ -1371,7 +1387,13 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1371
1387
|
/**
|
|
1372
1388
|
* A callback used for any custom cleanup that needs to occur when the instance is destroyed
|
|
1373
1389
|
*/
|
|
1374
|
-
ngOnDestroy(): void;
|
|
1390
|
+
protected ngOnDestroy(): void;
|
|
1391
|
+
/**
|
|
1392
|
+
* Called by the router before deactivating the route.
|
|
1393
|
+
* Return true to allow navigation, false to prevent it,
|
|
1394
|
+
* or a Promise/Observable that resolves to a boolean.
|
|
1395
|
+
*/
|
|
1396
|
+
canDeactivate(): Observable<boolean> | Promise<boolean> | boolean;
|
|
1375
1397
|
static ɵfac: i0.ɵɵFactoryDeclaration<BaseComponent, never>;
|
|
1376
1398
|
static ɵdir: i0.ɵɵDirectiveDeclaration<BaseComponent, never, never, { "handleExpansionPanelChanges": { "alias": "handleExpansionPanelChanges"; "required": false; }; }, { "reload": "reload"; }, never, never, true, never>;
|
|
1377
1399
|
}
|
|
@@ -3774,6 +3796,16 @@ declare class VdDynamicTableComponent implements OnInit, AfterViewChecked {
|
|
|
3774
3796
|
* This method also initializes sorting and pagination for the table.
|
|
3775
3797
|
*/
|
|
3776
3798
|
set data(data: any);
|
|
3799
|
+
/**
|
|
3800
|
+
* The parent form control (FormGroup or FormArray) passed into the component.
|
|
3801
|
+
* @type {any}
|
|
3802
|
+
*/
|
|
3803
|
+
parentControl: any;
|
|
3804
|
+
/**
|
|
3805
|
+
* The associated entity object passed into the component.
|
|
3806
|
+
* @type {any}
|
|
3807
|
+
*/
|
|
3808
|
+
entityObject: any;
|
|
3777
3809
|
/**
|
|
3778
3810
|
* Reactive FormArray representing the form data, which is used to track
|
|
3779
3811
|
* form controls and synchronize table data with form changes.
|
|
@@ -4120,7 +4152,7 @@ declare class VdDynamicTableComponent implements OnInit, AfterViewChecked {
|
|
|
4120
4152
|
*/
|
|
4121
4153
|
ngAfterViewChecked(): void;
|
|
4122
4154
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdDynamicTableComponent, never>;
|
|
4123
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<VdDynamicTableComponent, "vd-dynamic-table", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "data": { "alias": "data"; "required": false; }; "formArray": { "alias": "formArray"; "required": false; }; "debugValue": { "alias": "debugValue"; "required": false; }; "classType": { "alias": "classType"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dataSourceFilter": { "alias": "dataSourceFilter"; "required": false; }; "static": { "alias": "static"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "useFilterOperator": { "alias": "useFilterOperator"; "required": false; }; "paginable": { "alias": "paginable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; }; "stickyFilter": { "alias": "stickyFilter"; "required": false; }; "columnSets": { "alias": "columnSets"; "required": false; }; "rowNgClass": { "alias": "rowNgClass"; "required": false; }; "detailsTemplate": { "alias": "detailsTemplate"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "selectAllFilter": { "alias": "selectAllFilter"; "required": false; }; "paginatorRef": { "alias": "paginatorRef"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rowMenuItems": { "alias": "rowMenuItems"; "required": false; }; "rowAction": { "alias": "rowAction"; "required": false; }; "excludedColumns": { "alias": "excludedColumns"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; }, { "rowClick": "rowClick"; }, ["templateRef"], ["[table-footer]"], true, never>;
|
|
4155
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<VdDynamicTableComponent, "vd-dynamic-table", never, { "dataSource": { "alias": "dataSource"; "required": false; }; "data": { "alias": "data"; "required": false; }; "parentControl": { "alias": "parentControl"; "required": false; }; "entityObject": { "alias": "entityObject"; "required": false; }; "formArray": { "alias": "formArray"; "required": false; }; "debugValue": { "alias": "debugValue"; "required": false; }; "classType": { "alias": "classType"; "required": false; }; "context": { "alias": "context"; "required": false; }; "dataSourceFilter": { "alias": "dataSourceFilter"; "required": false; }; "static": { "alias": "static"; "required": false; }; "filterable": { "alias": "filterable"; "required": false; }; "sticky": { "alias": "sticky"; "required": false; }; "tableWidth": { "alias": "tableWidth"; "required": false; }; "useFilterOperator": { "alias": "useFilterOperator"; "required": false; }; "paginable": { "alias": "paginable"; "required": false; }; "selectable": { "alias": "selectable"; "required": false; }; "sortActive": { "alias": "sortActive"; "required": false; }; "sortDirection": { "alias": "sortDirection"; "required": false; }; "stickyHeader": { "alias": "stickyHeader"; "required": false; }; "stickyFilter": { "alias": "stickyFilter"; "required": false; }; "columnSets": { "alias": "columnSets"; "required": false; }; "rowNgClass": { "alias": "rowNgClass"; "required": false; }; "detailsTemplate": { "alias": "detailsTemplate"; "required": false; }; "readonly": { "alias": "readonly"; "required": false; }; "selectAllFilter": { "alias": "selectAllFilter"; "required": false; }; "paginatorRef": { "alias": "paginatorRef"; "required": false; }; "columns": { "alias": "columns"; "required": false; }; "rowMenuItems": { "alias": "rowMenuItems"; "required": false; }; "rowAction": { "alias": "rowAction"; "required": false; }; "excludedColumns": { "alias": "excludedColumns"; "required": false; }; "pageSize": { "alias": "pageSize"; "required": false; }; "pageSizeOptions": { "alias": "pageSizeOptions"; "required": false; }; }, { "rowClick": "rowClick"; }, ["templateRef"], ["[table-footer]"], true, never>;
|
|
4124
4156
|
}
|
|
4125
4157
|
|
|
4126
4158
|
interface IGenericListComponent<TEntity extends IEntity | any> extends IBaseComponent {
|
|
@@ -4737,6 +4769,12 @@ declare abstract class GenericListComponent<TEntity extends IEntity | any, TServ
|
|
|
4737
4769
|
* @returns
|
|
4738
4770
|
*/
|
|
4739
4771
|
protected hasSelectedRows(): boolean;
|
|
4772
|
+
/**
|
|
4773
|
+
* Hook method called after the items list has been loaded.
|
|
4774
|
+
* Subclasses can override this to perform actions like setting
|
|
4775
|
+
* a subtitle, transforming data, or triggering follow-up requests.
|
|
4776
|
+
*/
|
|
4777
|
+
protected onAfterItemsLoaded(): void;
|
|
4740
4778
|
/**
|
|
4741
4779
|
* Event emitted when the entity has been deleted.
|
|
4742
4780
|
*/
|
|
@@ -6991,36 +7029,146 @@ interface Options extends AbstractControlOptions {
|
|
|
6991
7029
|
}
|
|
6992
7030
|
|
|
6993
7031
|
declare class RxFormControl extends FormControl {
|
|
6994
|
-
private
|
|
6995
|
-
private
|
|
7032
|
+
private _entityObject;
|
|
7033
|
+
private _baseObject;
|
|
6996
7034
|
private _sanitizers;
|
|
7035
|
+
/**
|
|
7036
|
+
* Current language used for error message localization.
|
|
7037
|
+
* @type {string | undefined}
|
|
7038
|
+
*/
|
|
6997
7039
|
private _language?;
|
|
7040
|
+
/**
|
|
7041
|
+
* The key or name of the control.
|
|
7042
|
+
* @type {string}
|
|
7043
|
+
*/
|
|
6998
7044
|
private keyName;
|
|
7045
|
+
/**
|
|
7046
|
+
* Single string representation of the current error message.
|
|
7047
|
+
* @type {string | undefined}
|
|
7048
|
+
*/
|
|
6999
7049
|
private _errorMessage?;
|
|
7050
|
+
/**
|
|
7051
|
+
* Array of error messages for the control.
|
|
7052
|
+
* @type {string[]}
|
|
7053
|
+
*/
|
|
7000
7054
|
private _errorMessages;
|
|
7055
|
+
/**
|
|
7056
|
+
* Provider to determine if control should be disabled.
|
|
7057
|
+
* @type {DisableProvider | undefined}
|
|
7058
|
+
*/
|
|
7001
7059
|
private _disableProvider?;
|
|
7060
|
+
/**
|
|
7061
|
+
* Strategy to bind error messages.
|
|
7062
|
+
* @type {ErrorMessageBindingStrategy}
|
|
7063
|
+
*/
|
|
7002
7064
|
private _errorMessageBindingStrategy;
|
|
7065
|
+
/**
|
|
7066
|
+
* Optional function expression for custom error message logic.
|
|
7067
|
+
* @type {Function | undefined}
|
|
7068
|
+
*/
|
|
7003
7069
|
private _messageExpression?;
|
|
7070
|
+
/**
|
|
7071
|
+
* Optional function expression to assign CSS class names.
|
|
7072
|
+
* @type {Function | undefined}
|
|
7073
|
+
*/
|
|
7004
7074
|
private _classNameExpression?;
|
|
7075
|
+
/**
|
|
7076
|
+
* Indicates whether the message expression passed.
|
|
7077
|
+
* @type {boolean}
|
|
7078
|
+
*/
|
|
7005
7079
|
private _isPassedExpression;
|
|
7080
|
+
/**
|
|
7081
|
+
* Control properties dictionary, with boolean flags.
|
|
7082
|
+
* @type {{ [key: string]: boolean } | undefined}
|
|
7083
|
+
*/
|
|
7006
7084
|
private _controlProp?;
|
|
7085
|
+
/**
|
|
7086
|
+
* Class name control properties dictionary.
|
|
7087
|
+
* @type {{ [key: string]: boolean } | undefined}
|
|
7088
|
+
*/
|
|
7007
7089
|
private _classNameControlProp?;
|
|
7090
|
+
/**
|
|
7091
|
+
* The base value of the control.
|
|
7092
|
+
* @type {any}
|
|
7093
|
+
*/
|
|
7008
7094
|
private _baseValue;
|
|
7095
|
+
/**
|
|
7096
|
+
* Flag indicating if the control value has been modified.
|
|
7097
|
+
* @type {boolean}
|
|
7098
|
+
*/
|
|
7009
7099
|
private _isModified;
|
|
7100
|
+
/**
|
|
7101
|
+
* Flag indicating if the control is dirty.
|
|
7102
|
+
* @type {boolean}
|
|
7103
|
+
*/
|
|
7010
7104
|
private _dirty;
|
|
7105
|
+
/**
|
|
7106
|
+
* Array of synchronous validator functions.
|
|
7107
|
+
* @type {ValidatorFn[]}
|
|
7108
|
+
*/
|
|
7011
7109
|
private _validators;
|
|
7110
|
+
/**
|
|
7111
|
+
* Array of asynchronous validator functions.
|
|
7112
|
+
* @type {AsyncValidatorFn[]}
|
|
7113
|
+
*/
|
|
7012
7114
|
private _asyncValidators;
|
|
7115
|
+
/**
|
|
7116
|
+
* Backend error messages keyed by error name.
|
|
7117
|
+
* @type {{ [key: string]: string }}
|
|
7118
|
+
*/
|
|
7013
7119
|
backEndErrors: {
|
|
7014
7120
|
[key: string]: string;
|
|
7015
7121
|
};
|
|
7122
|
+
/**
|
|
7123
|
+
* Indicates if updating the control element's class should be performed.
|
|
7124
|
+
* @type {boolean | Function | undefined}
|
|
7125
|
+
*/
|
|
7016
7126
|
updateOnElementClass?: boolean | Function;
|
|
7127
|
+
/**
|
|
7128
|
+
* Optional pre-hook function executed before certain operations.
|
|
7129
|
+
* @type {Function | undefined}
|
|
7130
|
+
*/
|
|
7017
7131
|
preHook?: Function;
|
|
7132
|
+
/**
|
|
7133
|
+
* Optional post-hook function executed after certain operations.
|
|
7134
|
+
* @type {Function | undefined}
|
|
7135
|
+
*/
|
|
7018
7136
|
postHook?: Function;
|
|
7137
|
+
/**
|
|
7138
|
+
* Gets the array of error messages for the control.
|
|
7139
|
+
* Updates the error messages if necessary based on the current errors and language.
|
|
7140
|
+
* @type {string[]}
|
|
7141
|
+
*/
|
|
7019
7142
|
get errorMessages(): string[];
|
|
7143
|
+
/**
|
|
7144
|
+
* Gets a single error message string for the control.
|
|
7145
|
+
* Updates the error message if necessary based on the current errors and language.
|
|
7146
|
+
* Returns undefined if no error message should be shown.
|
|
7147
|
+
* @type {string | undefined}
|
|
7148
|
+
*/
|
|
7020
7149
|
get errorMessage(): string | undefined;
|
|
7021
|
-
|
|
7150
|
+
/**
|
|
7151
|
+
* Gets the associated entity object.
|
|
7152
|
+
* @type {any}
|
|
7153
|
+
*/
|
|
7154
|
+
get entityObject(): any;
|
|
7155
|
+
/**
|
|
7156
|
+
* Gets the base object for comparison or reset.
|
|
7157
|
+
* @type {any}
|
|
7158
|
+
*/
|
|
7159
|
+
get baseObject(): any;
|
|
7160
|
+
/**
|
|
7161
|
+
* Constructor to initialize RxFormControl.
|
|
7162
|
+
* @param formState Initial state or value of the control.
|
|
7163
|
+
* @param validatorOrOpts Synchronous validators or control options.
|
|
7164
|
+
* @param _entityObject Entity object associated with this control.
|
|
7165
|
+
* @param _baseObject Base object for initial values or reset.
|
|
7166
|
+
* @param controlName Name/key of this control.
|
|
7167
|
+
* @param _sanitizers Array of data sanitizers to preprocess values.
|
|
7168
|
+
*/
|
|
7169
|
+
constructor(formState: any, validatorOrOpts: ValidatorFn | ValidatorFn[] | AbstractControlOptions | null, _entityObject: {
|
|
7022
7170
|
[key: string]: any;
|
|
7023
|
-
},
|
|
7171
|
+
}, _baseObject: {
|
|
7024
7172
|
[key: string]: any;
|
|
7025
7173
|
}, controlName: string, _sanitizers: DataSanitizer[]);
|
|
7026
7174
|
private defineErrorsProperty;
|
|
@@ -7705,6 +7853,19 @@ declare const GlobalRoles: {
|
|
|
7705
7853
|
ExternalAPI: string;
|
|
7706
7854
|
};
|
|
7707
7855
|
|
|
7856
|
+
declare class ConfirmExitGuard implements CanDeactivate<CanComponentDeactivate> {
|
|
7857
|
+
/**
|
|
7858
|
+
* Determines whether the current component allows navigation away from it.
|
|
7859
|
+
* Delegates to the component's canDeactivate method if available.
|
|
7860
|
+
*
|
|
7861
|
+
* @param component The component that may be deactivated
|
|
7862
|
+
* @returns A boolean, Promise, or Observable indicating if deactivation is allowed
|
|
7863
|
+
*/
|
|
7864
|
+
canDeactivate(component: CanComponentDeactivate): Observable<boolean> | Promise<boolean> | boolean;
|
|
7865
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ConfirmExitGuard, never>;
|
|
7866
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<ConfirmExitGuard>;
|
|
7867
|
+
}
|
|
7868
|
+
|
|
7708
7869
|
declare class AuthHelper {
|
|
7709
7870
|
/**
|
|
7710
7871
|
* Authenticated user
|
|
@@ -8292,6 +8453,17 @@ declare class VdChipsComponent extends AbstractMatFormField<any> implements OnIn
|
|
|
8292
8453
|
*/
|
|
8293
8454
|
get customValue(): boolean;
|
|
8294
8455
|
set customValue(customValue: boolean);
|
|
8456
|
+
/**
|
|
8457
|
+
* Gets the parent control of the current RxFormControl.
|
|
8458
|
+
* Can be either a FormGroup, FormArray, or null if not present.
|
|
8459
|
+
* @type {FormGroup | FormArray | null}
|
|
8460
|
+
*/
|
|
8461
|
+
get parentControl(): FormGroup | FormArray | null;
|
|
8462
|
+
/**
|
|
8463
|
+
* Gets the associated entity object from the underlying RxFormControl.
|
|
8464
|
+
* @type {any}
|
|
8465
|
+
*/
|
|
8466
|
+
get entityObject(): any;
|
|
8295
8467
|
/**
|
|
8296
8468
|
* Current context for the component.
|
|
8297
8469
|
*/
|
|
@@ -8489,6 +8661,12 @@ declare class VdChipsComponent extends AbstractMatFormField<any> implements OnIn
|
|
|
8489
8661
|
* is destroyed. It unsubscribes from the data source subscription.
|
|
8490
8662
|
*/
|
|
8491
8663
|
ngOnDestroy(): void;
|
|
8664
|
+
/**
|
|
8665
|
+
* Log to console
|
|
8666
|
+
* @param message
|
|
8667
|
+
* @param optionalParams
|
|
8668
|
+
*/
|
|
8669
|
+
log(message: any, ...optionalParams: any[]): void;
|
|
8492
8670
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdChipsComponent, never>;
|
|
8493
8671
|
static ɵcmp: i0.ɵɵComponentDeclaration<VdChipsComponent, "vd-chips", never, { "classType": { "alias": "classType"; "required": false; }; "chips": { "alias": "chips"; "required": false; }; "endpoint": { "alias": "endpoint"; "required": false; }; "params": { "alias": "params"; "required": false; }; "projection": { "alias": "projection"; "required": false; }; "paginated": { "alias": "paginated"; "required": false; }; "customValue": { "alias": "customValue"; "required": false; }; "context": { "alias": "context"; "required": false; }; "key": { "alias": "key"; "required": false; }; "searchField": { "alias": "searchField"; "required": false; }; "searchFields": { "alias": "searchFields"; "required": false; }; "filters": { "alias": "filters"; "required": false; }; "removable": { "alias": "removable"; "required": false; }; "selectFirst": { "alias": "selectFirst"; "required": false; }; "debounce": { "alias": "debounce"; "required": false; }; "autocompleteCssClass": { "alias": "autocompleteCssClass"; "required": false; }; "suffixButtons": { "alias": "suffixButtons"; "required": false; }; }, { "initSelect": "initSelect"; "selected": "selected"; "cleared": "cleared"; "onLaunch": "launch"; "chipFocus": "chipFocus"; }, ["chipTemplate", "autocompleteOptionTemplate"], never, true, never>;
|
|
8494
8672
|
}
|
|
@@ -13174,5 +13352,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
|
|
|
13174
13352
|
getSelected: <TType>(key?: string) => TType[];
|
|
13175
13353
|
}
|
|
13176
13354
|
|
|
13177
|
-
export { AbstractMatFormField, AbstractSelectFormField, ActionItem, Api, ApiResponse, AppEvent, AppEventType, AppSetting, AppStorage, AsyncValidationDirective, AuditEntity, AuditUser, AuthHelper, AuthUser, AutofocusDirective, BaseComponent, BaseDirective, BaseEntity, BaseInterceptor, BaseService, BindPipe, CachingInterceptor, Column, ColumnObject, Common, CommonError, CommonHandlerContext, ContextHelper, DIALOG_PROVIDER, DIALOG_PROVIDER_FACTORY, DataSourceFilterDirective, DataSourcePipe, DatePickerHeaderComponent, DisableControlDirective, Display, DisplayNameNumberProjection, DisplayNameProjection, DynamicBuilder, DynamicComponentCompiler, EXPORT_DIALOG_COMPONENT, EmptyStringResetDirective, EnumMetadata, EnumPipe, EnumService, EqualValidator, ErrorMessageBindingStrategy, EventQueueService, Facet, FacetValue, FieldFuncPipe, FileControlDirective, FileService, FileSizePipe, FilterClearComponent, FilterDateComponent, FilterGlue, FilterInputComponent, FilterOperator, FilterPipe, FilterSelectComponent, FirstLetterPipe, Form, FormArrayPipe, FormBuilderConfiguration, FormControlPipe, FormDefinition, FormField, FormFieldDefinition, FormFieldGroup, FormFieldGroupDefinition, FormFieldType, FormGroupPipe, FuncPipe, GenericEmbeddedListComponent, GenericFormBaseComponent, GenericFormComponent, GenericListComponent, GenericReactiveFormComponent, GenericService, GlobalRoles, Grid, GroupFilterPipe, HtmlControlTemplateDirective, IAbstractControl, Icon, ImageFileControlDirective, IpVersion, KeyValue, KeysPipe, LayoutToggle, LoadingScreenInterceptor, LoadingScreenService, MEDIA_PROVIDER, MEDIA_PROVIDER_FACTORY, MatFormFieldEditorDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, NameNumberProjection, NameProjection, NativeElementInjectorDirective, NumericValueType, OnlyNumberDirective, OrderPipe, Pagination, PaginatorIntl, ParseDecimalDirective, Permission, PlaceholderPipe, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, ResetFormType, RxFormArray, RxFormBuilder, RxFormControl, RxFormControlDirective, RxFormGroup, RxReactiveFormsModule, RxwebFormDirective, RxwebValidators, SafeHtmlPipe, Salutation, SaveAction, SplitPipe, SubMenuResolve, SuffixButton, Table, TableColumn, TableColumnConfig, TableColumnType, TableConfig, TableDataSource, TableDefinition, TableQueryConfig, TableStaticDataSource, TaskDialogData, Templates, TimePipe, TitleCase, TitleProjection, TruncatePipe, TypedForm, TypedFormBuilder, UniqueValidatorDirective, UrlValidationType, Utils, ValidationAlphabetLocale, ValueAccessorBase, ValuesPipe, VdAlertDialogComponent, VdChipsComponent, VdCodeDirective, VdConfirmDialogComponent, VdCustomDirective, VdDelayedHoverDirective, VdDialogActionsDirective, VdDialogComponent, VdDialogContentDirective, VdDialogService, VdDialogTitleDirective, VdDynamicMenuComponent, VdDynamicTableComponent, VdDynamicTableConfigDialogComponent, VdEditorDirective, VdFileDirective, VdFileInputComponent, VdFileModule, VdFilterOptionDirective, VdGenericFormComponent, VdGenericFormCustomFieldDirective, VdLayoutCardOverComponent, VdLayoutCloseDirective, VdLayoutCompactComponent, VdLayoutComponent, VdLayoutFooterComponent, VdLayoutManageListCloseDirective, VdLayoutManageListComponent, VdLayoutManageListOpenDirective, VdLayoutManageListToggleDirective, VdLayoutNavComponent, VdLayoutNavListCloseDirective, VdLayoutNavListComponent, VdLayoutNavListOpenDirective, VdLayoutNavListToggleDirective, VdLayoutOpenDirective, VdLayoutToggleDirective, VdListOptionDirective, VdListToolbarComponent, VdMediaService, VdMediaToggleDirective, VdMenuComponent, VdNavigationDrawerComponent, VdNavigationDrawerMenuDirective, VdNavigationDrawerToolbarDirective, VdPromptDialogComponent, VdSelectComponent, VdSelectOptionDirective, VdSelectTriggerDirective, VdTableFieldDirective, VdTaskDialogComponent, allOf, allOfAsync, alpha, alphaAsync, alphaNumeric, alphaNumericAsync, and, ascii, async, blacklist, choice, choiceAsync, compare, compose, contains, containsAsync, creditCard, creditCardAsync, cusip, custom, customAsync, dataUri, date, dateAsync, different, digit, disable, elementClass, email, endpointMetadataKey, endsWith, endsWithAsync, error, escape, even, extension, extensionAsync, factor, factorAsync, file, fileAsync, fileSize, fileSizeAsync, formDefinitionMetadataKey, formFieldGroupsMetadataKey, formFieldsMetadataKey, getDisplay, getEndpoint, getFormDefinition, getFormGroups, getTableDefinition, greaterThan, greaterThanAsync, greaterThanEqualTo, greaterThanEqualToAsync, grid, headerMetadataKey, hexColor, image, imageAsync, json, latLong, latitude, leapYear, lessThan, lessThanAsync, lessThanEqualTo, lessThanEqualToAsync, longitude, lowerCase, ltrim, mac, mask, maxDate, maxDateAsync, maxLength, maxLengthAsync, maxNumber, maxNumberAsync, maxTime, maxTimeAsync, minDate, minDateAsync, minLength, minLengthAsync, minNumber, minNumberAsync, minTime, minTimeAsync, mixinDisableRipple, mixinDisabled, model, noneOf, noneOfAsync, not, notEmpty, numeric, numericAsync, odd, oneOf, oneOfAsync, or, password, passwordAsync, pattern, patternAsync, port, prefix, primeNumber, prop, propArray, propObject, range, rangeAsync, required, requiredTrue, rtrim, rule, sanitize, startsWith, startsWithAsync, stripLow, suffix, tableColumnsMetadataKey, tableDefinitionMetadataKey, time, timeAsync, toBoolean, toDate, toDouble, toFloat, toInt, toString, trim, unique, updateOn, upperCase, url, urlAsync, vdCollapseAnimation, whitelist };
|
|
13178
|
-
export type { AppFormGroup, Constructor$1 as Constructor, Delegate, EditorChange, EnumItem, Filter, FilterField, FormGroupExtension, IAlertConfig, IBaseComponent, ICanDisable, ICanDisableRipple, ICollapseAnimation, ICommonHandlerContext, IConfirmConfig, IDialogConfig, IEntity, IFormGroup, IGenericFormBaseComponent, IGenericListComponent, IGenericReactiveFormBaseComponent, ILayoutTogglable, IPromptConfig, Options, ShowConfirmationDialog, ShowTaskDialog };
|
|
13355
|
+
export { AbstractMatFormField, AbstractSelectFormField, ActionItem, Api, ApiResponse, AppEvent, AppEventType, AppSetting, AppStorage, AsyncValidationDirective, AuditEntity, AuditUser, AuthHelper, AuthUser, AutofocusDirective, BaseComponent, BaseDirective, BaseEntity, BaseInterceptor, BaseService, BindPipe, CachingInterceptor, Column, ColumnObject, Common, CommonError, CommonHandlerContext, ConfirmExitGuard, ContextHelper, DIALOG_PROVIDER, DIALOG_PROVIDER_FACTORY, DataSourceFilterDirective, DataSourcePipe, DatePickerHeaderComponent, DisableControlDirective, Display, DisplayNameNumberProjection, DisplayNameProjection, DynamicBuilder, DynamicComponentCompiler, EXPORT_DIALOG_COMPONENT, EmptyStringResetDirective, EnumMetadata, EnumPipe, EnumService, EqualValidator, ErrorMessageBindingStrategy, EventQueueService, Facet, FacetValue, FieldFuncPipe, FileControlDirective, FileService, FileSizePipe, FilterClearComponent, FilterDateComponent, FilterGlue, FilterInputComponent, FilterOperator, FilterPipe, FilterSelectComponent, FirstLetterPipe, Form, FormArrayPipe, FormBuilderConfiguration, FormControlPipe, FormDefinition, FormField, FormFieldDefinition, FormFieldGroup, FormFieldGroupDefinition, FormFieldType, FormGroupPipe, FuncPipe, GenericEmbeddedListComponent, GenericFormBaseComponent, GenericFormComponent, GenericListComponent, GenericReactiveFormComponent, GenericService, GlobalRoles, Grid, GroupFilterPipe, HtmlControlTemplateDirective, IAbstractControl, Icon, ImageFileControlDirective, IpVersion, KeyValue, KeysPipe, LayoutToggle, LoadingScreenInterceptor, LoadingScreenService, MEDIA_PROVIDER, MEDIA_PROVIDER_FACTORY, MatFormFieldEditorDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, NameNumberProjection, NameProjection, NativeElementInjectorDirective, NumericValueType, OnlyNumberDirective, OrderPipe, Pagination, PaginatorIntl, ParseDecimalDirective, Permission, PlaceholderPipe, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, ResetFormType, RxFormArray, RxFormBuilder, RxFormControl, RxFormControlDirective, RxFormGroup, RxReactiveFormsModule, RxwebFormDirective, RxwebValidators, SafeHtmlPipe, Salutation, SaveAction, SplitPipe, SubMenuResolve, SuffixButton, Table, TableColumn, TableColumnConfig, TableColumnType, TableConfig, TableDataSource, TableDefinition, TableQueryConfig, TableStaticDataSource, TaskDialogData, Templates, TimePipe, TitleCase, TitleProjection, TruncatePipe, TypedForm, TypedFormBuilder, UniqueValidatorDirective, UrlValidationType, Utils, ValidationAlphabetLocale, ValueAccessorBase, ValuesPipe, VdAlertDialogComponent, VdChipsComponent, VdCodeDirective, VdConfirmDialogComponent, VdCustomDirective, VdDelayedHoverDirective, VdDialogActionsDirective, VdDialogComponent, VdDialogContentDirective, VdDialogService, VdDialogTitleDirective, VdDynamicMenuComponent, VdDynamicTableComponent, VdDynamicTableConfigDialogComponent, VdEditorDirective, VdFileDirective, VdFileInputComponent, VdFileModule, VdFilterOptionDirective, VdGenericFormComponent, VdGenericFormCustomFieldDirective, VdLayoutCardOverComponent, VdLayoutCloseDirective, VdLayoutCompactComponent, VdLayoutComponent, VdLayoutFooterComponent, VdLayoutManageListCloseDirective, VdLayoutManageListComponent, VdLayoutManageListOpenDirective, VdLayoutManageListToggleDirective, VdLayoutNavComponent, VdLayoutNavListCloseDirective, VdLayoutNavListComponent, VdLayoutNavListOpenDirective, VdLayoutNavListToggleDirective, VdLayoutOpenDirective, VdLayoutToggleDirective, VdListOptionDirective, VdListToolbarComponent, VdMediaService, VdMediaToggleDirective, VdMenuComponent, VdNavigationDrawerComponent, VdNavigationDrawerMenuDirective, VdNavigationDrawerToolbarDirective, VdPromptDialogComponent, VdSelectComponent, VdSelectOptionDirective, VdSelectTriggerDirective, VdTableFieldDirective, VdTaskDialogComponent, allOf, allOfAsync, alpha, alphaAsync, alphaNumeric, alphaNumericAsync, and, ascii, async, blacklist, choice, choiceAsync, compare, compose, contains, containsAsync, creditCard, creditCardAsync, cusip, custom, customAsync, dataUri, date, dateAsync, different, digit, disable, elementClass, email, endpointMetadataKey, endsWith, endsWithAsync, error, escape, even, extension, extensionAsync, factor, factorAsync, file, fileAsync, fileSize, fileSizeAsync, formDefinitionMetadataKey, formFieldGroupsMetadataKey, formFieldsMetadataKey, getDisplay, getEndpoint, getFormDefinition, getFormGroups, getTableDefinition, greaterThan, greaterThanAsync, greaterThanEqualTo, greaterThanEqualToAsync, grid, headerMetadataKey, hexColor, image, imageAsync, json, latLong, latitude, leapYear, lessThan, lessThanAsync, lessThanEqualTo, lessThanEqualToAsync, longitude, lowerCase, ltrim, mac, mask, maxDate, maxDateAsync, maxLength, maxLengthAsync, maxNumber, maxNumberAsync, maxTime, maxTimeAsync, minDate, minDateAsync, minLength, minLengthAsync, minNumber, minNumberAsync, minTime, minTimeAsync, mixinDisableRipple, mixinDisabled, model, noneOf, noneOfAsync, not, notEmpty, numeric, numericAsync, odd, oneOf, oneOfAsync, or, password, passwordAsync, pattern, patternAsync, port, prefix, primeNumber, prop, propArray, propObject, range, rangeAsync, required, requiredTrue, rtrim, rule, sanitize, startsWith, startsWithAsync, stripLow, suffix, tableColumnsMetadataKey, tableDefinitionMetadataKey, time, timeAsync, toBoolean, toDate, toDouble, toFloat, toInt, toString, trim, unique, updateOn, upperCase, url, urlAsync, vdCollapseAnimation, whitelist };
|
|
13356
|
+
export type { AppFormGroup, CanComponentDeactivate, Constructor$1 as Constructor, Delegate, EditorChange, EnumItem, Filter, FilterField, FormGroupExtension, IAlertConfig, IBaseComponent, ICanDisable, ICanDisableRipple, ICollapseAnimation, ICommonHandlerContext, IConfirmConfig, IDialogConfig, IEntity, IFormGroup, IGenericFormBaseComponent, IGenericListComponent, IGenericReactiveFormBaseComponent, ILayoutTogglable, IPromptConfig, Options, ShowConfirmationDialog, ShowTaskDialog };
|