@messaia/cdk 21.1.0 → 22.0.0-rc.2
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 +3300 -1804
- package/fesm2022/messaia-cdk.mjs.map +1 -1
- package/package.json +4 -4
- package/types/messaia-cdk.d.ts +50 -146
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@messaia/cdk",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "22.0.0-rc.02",
|
|
4
4
|
"peerDependencies": {
|
|
5
|
-
"@angular/common": "^
|
|
6
|
-
"@angular/core": "^
|
|
7
|
-
"@angular/localize": "^
|
|
5
|
+
"@angular/common": "^22.0.7",
|
|
6
|
+
"@angular/core": "^22.0.7",
|
|
7
|
+
"@angular/localize": "^22.0.7"
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"tslib": "^2.3.0"
|
package/types/messaia-cdk.d.ts
CHANGED
|
@@ -2,7 +2,7 @@ import * as i1 from '@angular/common';
|
|
|
2
2
|
import { Location, DecimalPipe } from '@angular/common';
|
|
3
3
|
import { HttpHeaders, HttpClient, HttpParams, HttpEvent, HttpInterceptor, HttpRequest, HttpHandler } from '@angular/common/http';
|
|
4
4
|
import * as i0 from '@angular/core';
|
|
5
|
-
import { ViewContainerRef, Provider, NgZone, EventEmitter, Type as Type$1, OnInit, AfterViewInit, ChangeDetectorRef, QueryList, ElementRef, Renderer2,
|
|
5
|
+
import { ViewContainerRef, Provider, NgZone, EventEmitter, Type as Type$1, OnInit, AfterViewInit, ChangeDetectorRef, QueryList, ElementRef, Renderer2, ComponentRef, AfterViewChecked, TemplateRef, OnDestroy, OnChanges, SimpleChanges, AfterContentInit, EmbeddedViewRef, ModuleWithProviders, InjectionToken, DoCheck, PipeTransform } from '@angular/core';
|
|
6
6
|
import { MatDialogRef, MatDialog, MatDialogConfig } from '@angular/material/dialog';
|
|
7
7
|
import { MatExpansionPanel } from '@angular/material/expansion';
|
|
8
8
|
import { MatSnackBar, MatSnackBarRef, TextOnlySnackBar } from '@angular/material/snack-bar';
|
|
@@ -27,7 +27,6 @@ import { MatAutocomplete, MatAutocompleteTrigger, MatAutocompleteSelectedEvent }
|
|
|
27
27
|
import { FocusMonitor } from '@angular/cdk/a11y';
|
|
28
28
|
import { _ErrorStateTracker, ErrorStateMatcher, DateAdapter, MatDateFormats } from '@angular/material/core';
|
|
29
29
|
import { MatFormFieldControl, MatFormField } from '@angular/material/form-field';
|
|
30
|
-
import { AnimationTriggerMetadata } from '@angular/animations';
|
|
31
30
|
import * as i3 from '@angular/material/input';
|
|
32
31
|
import * as i4 from '@angular/material/icon';
|
|
33
32
|
import * as i5 from '@angular/material/button';
|
|
@@ -1041,12 +1040,46 @@ interface CanComponentDeactivate {
|
|
|
1041
1040
|
* A base list component for components with pagination support.
|
|
1042
1041
|
*/
|
|
1043
1042
|
declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterViewInit, CanComponentDeactivate {
|
|
1043
|
+
/**
|
|
1044
|
+
* Activated route for accessing route parameters, data, and fragments.
|
|
1045
|
+
*/
|
|
1044
1046
|
protected route: ActivatedRoute;
|
|
1047
|
+
/**
|
|
1048
|
+
* Change detector reference for manually triggering change detection.
|
|
1049
|
+
*/
|
|
1045
1050
|
protected changeDetectorRef: ChangeDetectorRef;
|
|
1046
1051
|
/**
|
|
1047
1052
|
* Application settings.
|
|
1048
1053
|
*/
|
|
1049
1054
|
appSetting: AppSetting;
|
|
1055
|
+
/**
|
|
1056
|
+
* Utility to evaluate media queries based on the current screen or window size.
|
|
1057
|
+
*/
|
|
1058
|
+
media: VdMediaService;
|
|
1059
|
+
/**
|
|
1060
|
+
* Service for navigation and URL manipulation.
|
|
1061
|
+
*/
|
|
1062
|
+
router: Router;
|
|
1063
|
+
/**
|
|
1064
|
+
* Service for setting the document's title.
|
|
1065
|
+
*/
|
|
1066
|
+
protected titleService: Title;
|
|
1067
|
+
/**
|
|
1068
|
+
* Service for displaying snack bar notifications.
|
|
1069
|
+
*/
|
|
1070
|
+
protected snackBarService: MatSnackBar;
|
|
1071
|
+
/**
|
|
1072
|
+
* Service for displaying confirmation and prompt dialogs.
|
|
1073
|
+
*/
|
|
1074
|
+
protected dialogService: VdDialogService;
|
|
1075
|
+
/**
|
|
1076
|
+
* Service for opening modal dialogs.
|
|
1077
|
+
*/
|
|
1078
|
+
protected dialog: MatDialog;
|
|
1079
|
+
/**
|
|
1080
|
+
* Service for managing browser location and history.
|
|
1081
|
+
*/
|
|
1082
|
+
protected location: Location;
|
|
1050
1083
|
/**
|
|
1051
1084
|
* General configuration settings, with a flexible type to accommodate different configurations.
|
|
1052
1085
|
*/
|
|
@@ -1093,10 +1126,6 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1093
1126
|
* Stores any errors encountered during requests or operations.
|
|
1094
1127
|
*/
|
|
1095
1128
|
errors: Array<string>;
|
|
1096
|
-
/**
|
|
1097
|
-
* Utility to evaluate media queries based on the current screen or window size.
|
|
1098
|
-
*/
|
|
1099
|
-
media: VdMediaService;
|
|
1100
1129
|
/**
|
|
1101
1130
|
* List of permitted file extensions for upload or selection.
|
|
1102
1131
|
*/
|
|
@@ -1113,10 +1142,6 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1113
1142
|
* Additional configuration settings for the editor.
|
|
1114
1143
|
*/
|
|
1115
1144
|
editorConfig: any;
|
|
1116
|
-
/**
|
|
1117
|
-
* Service for navigation and URL manipulation.
|
|
1118
|
-
*/
|
|
1119
|
-
router: Router;
|
|
1120
1145
|
/**
|
|
1121
1146
|
* Optional hash value appended to URLs for bookmarking or state management.
|
|
1122
1147
|
*/
|
|
@@ -1173,30 +1198,10 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1173
1198
|
* Event emitter for reload actions, useful for refreshing data.
|
|
1174
1199
|
*/
|
|
1175
1200
|
reload: EventEmitter<any>;
|
|
1176
|
-
/**
|
|
1177
|
-
* Service for setting the document's title.
|
|
1178
|
-
*/
|
|
1179
|
-
protected titleService: Title;
|
|
1180
|
-
/**
|
|
1181
|
-
* Service for displaying snack bar notifications.
|
|
1182
|
-
*/
|
|
1183
|
-
protected snackBarService: MatSnackBar;
|
|
1184
1201
|
/**
|
|
1185
1202
|
* Reference to the currently displayed snack bar, if any.
|
|
1186
1203
|
*/
|
|
1187
1204
|
protected snackBarRef?: MatSnackBarRef<TextOnlySnackBar>;
|
|
1188
|
-
/**
|
|
1189
|
-
* Service for displaying confirmation and prompt dialogs.
|
|
1190
|
-
*/
|
|
1191
|
-
protected dialogService: VdDialogService;
|
|
1192
|
-
/**
|
|
1193
|
-
* Service for opening modal dialogs.
|
|
1194
|
-
*/
|
|
1195
|
-
protected dialog: MatDialog;
|
|
1196
|
-
/**
|
|
1197
|
-
* Service for managing browser location and history.
|
|
1198
|
-
*/
|
|
1199
|
-
protected location: Location;
|
|
1200
1205
|
/**
|
|
1201
1206
|
* If true, sets a URL hash for navigation state.
|
|
1202
1207
|
*/
|
|
@@ -1222,13 +1227,9 @@ declare abstract class BaseComponent implements IBaseComponent, OnInit, AfterVie
|
|
|
1222
1227
|
*/
|
|
1223
1228
|
protected warnAudio: HTMLAudioElement;
|
|
1224
1229
|
/**
|
|
1225
|
-
* Initializes
|
|
1226
|
-
* and initializes the editor with default configurations.
|
|
1227
|
-
*
|
|
1228
|
-
* @param route - ActivatedRoute instance for accessing route parameters and data.
|
|
1229
|
-
* @param changeDetectorRef - ChangeDetectorRef instance for manually triggering change detection.
|
|
1230
|
+
* Initializes component defaults and editor configuration.
|
|
1230
1231
|
*/
|
|
1231
|
-
constructor(
|
|
1232
|
+
constructor();
|
|
1232
1233
|
/**
|
|
1233
1234
|
* Lifecycle hook that is called after data-bound properties of a directive are initialized
|
|
1234
1235
|
*/
|
|
@@ -2975,19 +2976,14 @@ declare class TableConfig {
|
|
|
2975
2976
|
}
|
|
2976
2977
|
|
|
2977
2978
|
declare class DynamicBuilder {
|
|
2978
|
-
private compiler;
|
|
2979
|
-
/**
|
|
2980
|
-
* Constructor
|
|
2981
|
-
* @param componentFactoryResolver
|
|
2982
|
-
*/
|
|
2983
|
-
constructor(compiler: Compiler);
|
|
2984
2979
|
/**
|
|
2985
|
-
* Compiles the specified
|
|
2986
|
-
* @param viewContainerRef
|
|
2987
|
-
* @param template
|
|
2988
|
-
* @param data
|
|
2980
|
+
* Compiles a dynamic HTML template and inserts it into the specified view container.
|
|
2981
|
+
* @param viewContainerRef The view container where the compiled component will be inserted.
|
|
2982
|
+
* @param template The HTML template string to compile.
|
|
2983
|
+
* @param data Optional data to bind to the component instance.
|
|
2984
|
+
* @returns A reference to the created component or null if compilation fails.
|
|
2989
2985
|
*/
|
|
2990
|
-
compileHtml(viewContainerRef: ViewContainerRef, template: string, data?:
|
|
2986
|
+
compileHtml(viewContainerRef: ViewContainerRef, template: string, data?: Record<string, unknown>): ComponentRef<Record<string, unknown>> | null;
|
|
2991
2987
|
static ɵfac: i0.ɵɵFactoryDeclaration<DynamicBuilder, never>;
|
|
2992
2988
|
static ɵprov: i0.ɵɵInjectableDeclaration<DynamicBuilder>;
|
|
2993
2989
|
}
|
|
@@ -4629,8 +4625,6 @@ declare class VdDynamicTableConfigDialogComponent extends BaseComponent {
|
|
|
4629
4625
|
*/
|
|
4630
4626
|
declare abstract class GenericListComponent<TEntity extends IEntity | any, TService extends GenericService<TEntity>> extends BaseComponent implements IGenericListComponent<TEntity>, OnDestroy {
|
|
4631
4627
|
service: TService;
|
|
4632
|
-
protected route: ActivatedRoute;
|
|
4633
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
4634
4628
|
classType?: {
|
|
4635
4629
|
new (): TEntity;
|
|
4636
4630
|
} | undefined;
|
|
@@ -4883,7 +4877,7 @@ declare abstract class GenericListComponent<TEntity extends IEntity | any, TServ
|
|
|
4883
4877
|
* @param changeDetectorRef ChangeDetectorRef for managing view updates.
|
|
4884
4878
|
* @param classType The class type of the table entity.
|
|
4885
4879
|
*/
|
|
4886
|
-
constructor(service: TService,
|
|
4880
|
+
constructor(service: TService, classType?: {
|
|
4887
4881
|
new (): TEntity;
|
|
4888
4882
|
} | undefined);
|
|
4889
4883
|
/**
|
|
@@ -5135,8 +5129,6 @@ declare abstract class GenericEmbeddedListComponent<TEntity extends IEntity, TPa
|
|
|
5135
5129
|
protected entity: Type$1<TEntity>;
|
|
5136
5130
|
service: TService;
|
|
5137
5131
|
protected formBuilder: RxFormBuilder;
|
|
5138
|
-
protected route: ActivatedRoute;
|
|
5139
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
5140
5132
|
/**
|
|
5141
5133
|
* The reactive form associated with this component.
|
|
5142
5134
|
*/
|
|
@@ -5178,7 +5170,7 @@ declare abstract class GenericEmbeddedListComponent<TEntity extends IEntity, TPa
|
|
|
5178
5170
|
* @param route The activated route for navigation.
|
|
5179
5171
|
* @param changeDetectorRef The change detector for managing view updates.
|
|
5180
5172
|
*/
|
|
5181
|
-
constructor(entity: Type$1<TEntity>, service: TService, formBuilder: RxFormBuilder
|
|
5173
|
+
constructor(entity: Type$1<TEntity>, service: TService, formBuilder: RxFormBuilder);
|
|
5182
5174
|
/**
|
|
5183
5175
|
* Lifecycle hook called after the constructor.
|
|
5184
5176
|
* Initializes input properties and sets up data fetching.
|
|
@@ -6081,8 +6073,6 @@ declare class FormDefinition<T = any> {
|
|
|
6081
6073
|
declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TService extends GenericService<TEntity>> extends BaseComponent implements IGenericFormBaseComponent<TEntity>, OnChanges {
|
|
6082
6074
|
entityCtor: Type$1<TEntity>;
|
|
6083
6075
|
protected service: TService;
|
|
6084
|
-
protected route: ActivatedRoute;
|
|
6085
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
6086
6076
|
/**
|
|
6087
6077
|
* The action of the form (add | edit).
|
|
6088
6078
|
*/
|
|
@@ -6266,7 +6256,7 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
|
|
|
6266
6256
|
* @param route The activated route.
|
|
6267
6257
|
* @param changeDetectorRef The change detector reference.
|
|
6268
6258
|
*/
|
|
6269
|
-
constructor(entityCtor: Type$1<TEntity>, service: TService
|
|
6259
|
+
constructor(entityCtor: Type$1<TEntity>, service: TService);
|
|
6270
6260
|
/**
|
|
6271
6261
|
* Called after the constructor, initializing input properties,
|
|
6272
6262
|
* and the first call to ngOnChanges.
|
|
@@ -6541,8 +6531,6 @@ declare abstract class GenericFormBaseComponent<TEntity extends IEntity, TServic
|
|
|
6541
6531
|
declare abstract class GenericFormComponent<TEntity extends IEntity, TService extends GenericService<TEntity>> extends GenericFormBaseComponent<TEntity, TService> {
|
|
6542
6532
|
entityCtor: Type$1<TEntity>;
|
|
6543
6533
|
protected service: TService;
|
|
6544
|
-
protected route: ActivatedRoute;
|
|
6545
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
6546
6534
|
/**
|
|
6547
6535
|
* Form group
|
|
6548
6536
|
*/
|
|
@@ -6556,7 +6544,7 @@ declare abstract class GenericFormComponent<TEntity extends IEntity, TService ex
|
|
|
6556
6544
|
* Constructor
|
|
6557
6545
|
* @param service
|
|
6558
6546
|
*/
|
|
6559
|
-
constructor(entityCtor: Type$1<TEntity>, service: TService
|
|
6547
|
+
constructor(entityCtor: Type$1<TEntity>, service: TService);
|
|
6560
6548
|
static ɵfac: i0.ɵɵFactoryDeclaration<GenericFormComponent<any, any>, never>;
|
|
6561
6549
|
static ɵdir: i0.ɵɵDirectiveDeclaration<GenericFormComponent<any, any>, never, never, { "form": { "alias": "form"; "required": false; }; }, {}, never, never, true, never>;
|
|
6562
6550
|
}
|
|
@@ -8048,8 +8036,6 @@ declare class RxwebValidators {
|
|
|
8048
8036
|
declare abstract class GenericReactiveFormComponent<TEntity extends IEntity, TService extends GenericService<TEntity>> extends GenericFormBaseComponent<TEntity, TService> implements IGenericReactiveFormBaseComponent<TEntity> {
|
|
8049
8037
|
entityCtor: Type$1<TEntity>;
|
|
8050
8038
|
protected service: TService;
|
|
8051
|
-
protected route: ActivatedRoute;
|
|
8052
|
-
protected changeDetectorRef: ChangeDetectorRef;
|
|
8053
8039
|
/**
|
|
8054
8040
|
* Form group
|
|
8055
8041
|
*/
|
|
@@ -8082,7 +8068,7 @@ declare abstract class GenericReactiveFormComponent<TEntity extends IEntity, TSe
|
|
|
8082
8068
|
* Constructor
|
|
8083
8069
|
* @param service
|
|
8084
8070
|
*/
|
|
8085
|
-
constructor(entityCtor: Type$1<TEntity>, service: TService
|
|
8071
|
+
constructor(entityCtor: Type$1<TEntity>, service: TService);
|
|
8086
8072
|
/**
|
|
8087
8073
|
* Builds a new form
|
|
8088
8074
|
*/
|
|
@@ -8736,7 +8722,6 @@ declare abstract class AbstractMatFormField<T> implements DoCheck, OnDestroy, Co
|
|
|
8736
8722
|
* VdAutocompleteOptionDirective class
|
|
8737
8723
|
*/
|
|
8738
8724
|
declare class VdAutocompleteOptionDirective extends CdkPortal {
|
|
8739
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
8740
8725
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdAutocompleteOptionDirective, never>;
|
|
8741
8726
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdAutocompleteOptionDirective, "[vd-autocomplete-option]ng-template", never, {}, {}, never, never, true, never>;
|
|
8742
8727
|
}
|
|
@@ -8745,7 +8730,6 @@ declare class VdAutocompleteOptionDirective extends CdkPortal {
|
|
|
8745
8730
|
* VdChipDirective class
|
|
8746
8731
|
*/
|
|
8747
8732
|
declare class VdChipDirective extends CdkPortal {
|
|
8748
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
8749
8733
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdChipDirective, never>;
|
|
8750
8734
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdChipDirective, "[vd-chip]ng-template", never, {}, {}, never, never, true, never>;
|
|
8751
8735
|
}
|
|
@@ -9098,31 +9082,6 @@ declare class VdChipsComponent extends AbstractMatFormField<any> implements OnIn
|
|
|
9098
9082
|
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>;
|
|
9099
9083
|
}
|
|
9100
9084
|
|
|
9101
|
-
interface IAnimationOptions {
|
|
9102
|
-
anchor?: string;
|
|
9103
|
-
duration?: number;
|
|
9104
|
-
delay?: number;
|
|
9105
|
-
}
|
|
9106
|
-
|
|
9107
|
-
interface ICollapseAnimation extends IAnimationOptions {
|
|
9108
|
-
easeOnClose?: string;
|
|
9109
|
-
easeOnOpen?: string;
|
|
9110
|
-
}
|
|
9111
|
-
/**
|
|
9112
|
-
* const vdCollapseAnimation
|
|
9113
|
-
*
|
|
9114
|
-
* Parameter Options:
|
|
9115
|
-
* * duration: Duration the animation will run in milliseconds. Defaults to 150 ms.
|
|
9116
|
-
* * delay: Delay before the animation will run in milliseconds. Defaults to 0 ms.
|
|
9117
|
-
* * easeOnClose: Animation accelerates and decelerates when closing. Defaults to ease-in.
|
|
9118
|
-
* * easeOnOpen: Animation accelerates and decelerates when opening. Defaults to ease-out.
|
|
9119
|
-
*
|
|
9120
|
-
* Returns an [AnimationTriggerMetadata] object with boolean states for a collapse/expand animation.
|
|
9121
|
-
*
|
|
9122
|
-
* usage: [@vdCollapse]="{ value: true | false, params: { duration: 500 }}"
|
|
9123
|
-
*/
|
|
9124
|
-
declare const vdCollapseAnimation: AnimationTriggerMetadata;
|
|
9125
|
-
|
|
9126
9085
|
type Constructor$1<T> = new (...args: any[]) => T;
|
|
9127
9086
|
|
|
9128
9087
|
type Constructor<T> = new (...args: any[]) => T;
|
|
@@ -10629,12 +10588,6 @@ declare class VdGenericFormCustomFieldDirective extends CdkPortal {
|
|
|
10629
10588
|
* @property
|
|
10630
10589
|
*/
|
|
10631
10590
|
inline: boolean;
|
|
10632
|
-
/**
|
|
10633
|
-
* Constructor
|
|
10634
|
-
* @param templateRef
|
|
10635
|
-
* @param viewContainerRef
|
|
10636
|
-
*/
|
|
10637
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
10638
10591
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdGenericFormCustomFieldDirective, never>;
|
|
10639
10592
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdGenericFormCustomFieldDirective, "[vd-generic-form-custom-field]ng-template", never, { "row": { "alias": "row"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, never, true, never>;
|
|
10640
10593
|
}
|
|
@@ -10658,12 +10611,6 @@ interface VdGenericFormInitEvent {
|
|
|
10658
10611
|
* inside the component, using a template reference.
|
|
10659
10612
|
*/
|
|
10660
10613
|
declare class VdEditorDirective extends CdkPortal {
|
|
10661
|
-
/**
|
|
10662
|
-
* @constructor
|
|
10663
|
-
* @param {TemplateRef<any>} templateRef - The reference to the template to be rendered.
|
|
10664
|
-
* @param {ViewContainerRef} viewContainerRef - The container where the template will be inserted.
|
|
10665
|
-
*/
|
|
10666
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
10667
10614
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdEditorDirective, never>;
|
|
10668
10615
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdEditorDirective, "[vd-editor]ng-template", never, {}, {}, never, never, true, never>;
|
|
10669
10616
|
}
|
|
@@ -10674,12 +10621,6 @@ declare class VdEditorDirective extends CdkPortal {
|
|
|
10674
10621
|
* inside the component, using a template reference.
|
|
10675
10622
|
*/
|
|
10676
10623
|
declare class VdCodeDirective extends CdkPortal {
|
|
10677
|
-
/**
|
|
10678
|
-
* @constructor
|
|
10679
|
-
* @param {TemplateRef<any>} templateRef - The reference to the template to be rendered.
|
|
10680
|
-
* @param {ViewContainerRef} viewContainerRef - The container where the template will be inserted.
|
|
10681
|
-
*/
|
|
10682
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
10683
10624
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdCodeDirective, never>;
|
|
10684
10625
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdCodeDirective, "[vd-code]ng-template", never, {}, {}, never, never, true, never>;
|
|
10685
10626
|
}
|
|
@@ -10690,12 +10631,6 @@ declare class VdCodeDirective extends CdkPortal {
|
|
|
10690
10631
|
* content inside the component, using a template reference.
|
|
10691
10632
|
*/
|
|
10692
10633
|
declare class VdFileDirective extends CdkPortal {
|
|
10693
|
-
/**
|
|
10694
|
-
* @constructor
|
|
10695
|
-
* @param {TemplateRef<any>} templateRef - The reference to the template to be rendered.
|
|
10696
|
-
* @param {ViewContainerRef} viewContainerRef - The container where the template will be inserted.
|
|
10697
|
-
*/
|
|
10698
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
10699
10634
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdFileDirective, never>;
|
|
10700
10635
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdFileDirective, "[vd-file]ng-template", never, {}, {}, never, never, true, never>;
|
|
10701
10636
|
}
|
|
@@ -10706,12 +10641,6 @@ declare class VdFileDirective extends CdkPortal {
|
|
|
10706
10641
|
* rendered inside the component, using a template reference.
|
|
10707
10642
|
*/
|
|
10708
10643
|
declare class VdCustomDirective extends CdkPortal {
|
|
10709
|
-
/**
|
|
10710
|
-
* @constructor
|
|
10711
|
-
* @param {TemplateRef<any>} templateRef - The reference to the template to be rendered.
|
|
10712
|
-
* @param {ViewContainerRef} viewContainerRef - The container where the template will be inserted.
|
|
10713
|
-
*/
|
|
10714
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
10715
10644
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdCustomDirective, never>;
|
|
10716
10645
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdCustomDirective, "[vd-custom]ng-template", never, {}, {}, never, never, true, never>;
|
|
10717
10646
|
}
|
|
@@ -13070,12 +12999,6 @@ declare class VdNavigationDrawerComponent implements OnInit, OnDestroy {
|
|
|
13070
12999
|
* VdListOptionDirective class
|
|
13071
13000
|
*/
|
|
13072
13001
|
declare class VdListOptionDirective extends CdkPortal {
|
|
13073
|
-
/**
|
|
13074
|
-
* Constructor
|
|
13075
|
-
* @param templateRef
|
|
13076
|
-
* @param viewContainerRef
|
|
13077
|
-
*/
|
|
13078
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
13079
13002
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdListOptionDirective, never>;
|
|
13080
13003
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdListOptionDirective, "[vd-list-option]ng-template", never, {}, {}, never, never, true, never>;
|
|
13081
13004
|
}
|
|
@@ -13351,12 +13274,6 @@ declare class SubMenuResolve {
|
|
|
13351
13274
|
* VdSelectOptionDirective class
|
|
13352
13275
|
*/
|
|
13353
13276
|
declare class VdSelectOptionDirective extends CdkPortal {
|
|
13354
|
-
/**
|
|
13355
|
-
* Constructor
|
|
13356
|
-
* @param templateRef
|
|
13357
|
-
* @param viewContainerRef
|
|
13358
|
-
*/
|
|
13359
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
13360
13277
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdSelectOptionDirective, never>;
|
|
13361
13278
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdSelectOptionDirective, "[vd-select-option]ng-template", never, {}, {}, never, never, true, never>;
|
|
13362
13279
|
}
|
|
@@ -13365,12 +13282,6 @@ declare class VdSelectOptionDirective extends CdkPortal {
|
|
|
13365
13282
|
* VdSelectTriggerDirective class
|
|
13366
13283
|
*/
|
|
13367
13284
|
declare class VdSelectTriggerDirective extends CdkPortal {
|
|
13368
|
-
/**
|
|
13369
|
-
* Constructor
|
|
13370
|
-
* @param templateRef
|
|
13371
|
-
* @param viewContainerRef
|
|
13372
|
-
*/
|
|
13373
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
13374
13285
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdSelectTriggerDirective, never>;
|
|
13375
13286
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdSelectTriggerDirective, "[vd-select-trigger]ng-template", never, {}, {}, never, never, true, never>;
|
|
13376
13287
|
}
|
|
@@ -13647,7 +13558,6 @@ declare class FilterInputComponent implements OnInit, ControlValueAccessor {
|
|
|
13647
13558
|
}
|
|
13648
13559
|
|
|
13649
13560
|
declare class VdFilterOptionDirective extends CdkPortal {
|
|
13650
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
13651
13561
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdFilterOptionDirective, never>;
|
|
13652
13562
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdFilterOptionDirective, "[vd-filter-option]ng-template", never, {}, {}, never, never, true, never>;
|
|
13653
13563
|
}
|
|
@@ -13886,12 +13796,6 @@ declare class VdTableFieldDirective extends CdkPortal {
|
|
|
13886
13796
|
* @property
|
|
13887
13797
|
*/
|
|
13888
13798
|
inline: boolean;
|
|
13889
|
-
/**
|
|
13890
|
-
* Constructor
|
|
13891
|
-
* @param templateRef
|
|
13892
|
-
* @param viewContainerRef
|
|
13893
|
-
*/
|
|
13894
|
-
constructor(templateRef: TemplateRef<any>, viewContainerRef: ViewContainerRef);
|
|
13895
13799
|
static ɵfac: i0.ɵɵFactoryDeclaration<VdTableFieldDirective, never>;
|
|
13896
13800
|
static ɵdir: i0.ɵɵDirectiveDeclaration<VdTableFieldDirective, "[vd-table-field]ng-template", never, { "row": { "alias": "row"; "required": false; }; "inline": { "alias": "inline"; "required": false; }; }, {}, never, never, true, never>;
|
|
13897
13801
|
}
|
|
@@ -14249,5 +14153,5 @@ declare class TableStaticDataSource<TEntity> extends MatTableDataSource<TEntity>
|
|
|
14249
14153
|
getSelected: <TType>(key?: string) => TType[];
|
|
14250
14154
|
}
|
|
14251
14155
|
|
|
14252
|
-
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, MatFormFieldRadioDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, MsaEditFormActionsComponent, MsaEnumDisplayComponent, NameNumberProjection, NameProjection, NativeElementInjectorDirective, NumericValueType, OnlyNumberDirective, OrderPipe, Pagination, PaginatorIntl, ParseDecimalDirective, Permission, PlaceholderPipe, PrefixDirective, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, RemoveWhitespaceDirective, 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, VdDialogHeaderActionsComponent, VdDialogHeaderComponent, VdDialogMaximizeDirective, 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, graphql, greaterThan, greaterThanAsync, greaterThanEqualTo, greaterThanEqualToAsync, grid, headerMetadataKey, hexColor, iban, ibanAsync, 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, parseProjectionString, 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,
|
|
14253
|
-
export type { AppFormGroup, CanComponentDeactivate, Constructor$1 as Constructor, Delegate, DialogButtonConfig, EditorChange, EnumItem, Filter, FilterField, FormGroupExtension, IAlertConfig, IBaseComponent, ICanDisable, ICanDisableRipple,
|
|
14156
|
+
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, MatFormFieldRadioDirective, MatFormFieldReadonlyDirective, Menu, MenuClient, MenuDepartment, MenuFormIncludesResolve, MenuItem, MenuItemClient, MenuItemDepartment, MenuItemFormIncludesResolve, MenuItemService, MenuItemTarget, MenuListProjectionResolve, MenuResolve, MenuScope, MenuSettings, MenuSettingsResolve, MessageType, ModifiableEntity, MonthNamePipe, MsaEditFormActionsComponent, MsaEnumDisplayComponent, NameNumberProjection, NameProjection, NativeElementInjectorDirective, NumericValueType, OnlyNumberDirective, OrderPipe, Pagination, PaginatorIntl, ParseDecimalDirective, Permission, PlaceholderPipe, PrefixDirective, PrintService, PropertyJoinPipe, ReactiveFormConfig, ReactiveTypedFormsModule, RemoveWhitespaceDirective, 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, VdDialogHeaderActionsComponent, VdDialogHeaderComponent, VdDialogMaximizeDirective, 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, graphql, greaterThan, greaterThanAsync, greaterThanEqualTo, greaterThanEqualToAsync, grid, headerMetadataKey, hexColor, iban, ibanAsync, 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, parseProjectionString, 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, whitelist };
|
|
14157
|
+
export type { AppFormGroup, CanComponentDeactivate, Constructor$1 as Constructor, Delegate, DialogButtonConfig, EditorChange, EnumItem, Filter, FilterField, FormGroupExtension, IAlertConfig, IBaseComponent, ICanDisable, ICanDisableRipple, ICommonHandlerContext, IConfirmConfig, IDialogConfig, IEntity, IFormGroup, IGenericFormBaseComponent, IGenericListComponent, IGenericReactiveFormBaseComponent, ILayoutTogglable, IPromptConfig, Options, ShowConfirmationDialog, ShowTaskDialog, VdGenericFormInitEvent };
|