chrv-components 1.11.21 → 1.11.23
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/chrv-components-1.11.23.tgz +0 -0
- package/fesm2022/chrv-components.mjs +97 -121
- package/fesm2022/chrv-components.mjs.map +1 -1
- package/index.d.ts +107 -54
- package/package.json +1 -1
- package/chrv-components-1.11.21.tgz +0 -0
package/index.d.ts
CHANGED
|
@@ -2,7 +2,6 @@ import * as _angular_core from '@angular/core';
|
|
|
2
2
|
import { OnInit, AfterViewInit, OnDestroy, EventEmitter, ElementRef, AfterViewChecked, AfterContentChecked, ViewContainerRef, QueryList, AfterContentInit, Type, InjectionToken } from '@angular/core';
|
|
3
3
|
import { Router, UrlTree } from '@angular/router';
|
|
4
4
|
import { MatDialogRef, MatDialogConfig } from '@angular/material/dialog';
|
|
5
|
-
export * from '@angular/material/dialog';
|
|
6
5
|
import * as _angular_forms from '@angular/forms';
|
|
7
6
|
import { AbstractControl, ValidationErrors, ValidatorFn, AsyncValidatorFn, FormControl, FormGroup, ControlValueAccessor, NgControl, Validator } from '@angular/forms';
|
|
8
7
|
import * as rxjs from 'rxjs';
|
|
@@ -47,7 +46,7 @@ declare class ChrButtonComponent {
|
|
|
47
46
|
readonly textColor: _angular_core.InputSignal<Color | undefined>;
|
|
48
47
|
readonly flat: _angular_core.InputSignal<boolean>;
|
|
49
48
|
readonly predicate: _angular_core.InputSignal<boolean | undefined>;
|
|
50
|
-
readonly type: _angular_core.InputSignal<"
|
|
49
|
+
readonly type: _angular_core.InputSignal<"fixed" | "small" | "none" | "responsive" | "table" | "full">;
|
|
51
50
|
readonly href: _angular_core.InputSignal<string | undefined>;
|
|
52
51
|
readonly target: _angular_core.InputSignal<"_blank" | "_parent" | "_self" | "_top" | undefined>;
|
|
53
52
|
readonly disabled: _angular_core.InputSignal<boolean>;
|
|
@@ -99,6 +98,7 @@ interface IControl {
|
|
|
99
98
|
col?: number;
|
|
100
99
|
row?: number;
|
|
101
100
|
type: InputType;
|
|
101
|
+
disabled?: boolean;
|
|
102
102
|
accept?: string[];
|
|
103
103
|
debounceTime?: number;
|
|
104
104
|
value?: any;
|
|
@@ -339,7 +339,6 @@ declare class ChrBaseInputComponent implements OnInit, ControlValueAccessor, Aft
|
|
|
339
339
|
* Default is true to allow full JS manipulation of files et upload progress report.
|
|
340
340
|
*/
|
|
341
341
|
readonly base64: _angular_core.InputSignal<boolean>;
|
|
342
|
-
private _disabled;
|
|
343
342
|
/**
|
|
344
343
|
* The input element.
|
|
345
344
|
* May be undefined if the template does not contain an input element with the 'input' reference.
|
|
@@ -350,12 +349,7 @@ declare class ChrBaseInputComponent implements OnInit, ControlValueAccessor, Aft
|
|
|
350
349
|
/**
|
|
351
350
|
* Getter and setter that allow the control of the FormControl's state from the template
|
|
352
351
|
*/
|
|
353
|
-
|
|
354
|
-
set disabled(value: boolean);
|
|
355
|
-
/**
|
|
356
|
-
* Whether or not the input starts as disabled. This can then be changed through the form control.
|
|
357
|
-
*/
|
|
358
|
-
isDisabled: boolean;
|
|
352
|
+
disabled: _angular_core.ModelSignal<boolean>;
|
|
359
353
|
/**
|
|
360
354
|
* Array of string representing the input's siblings' FormControl's name. This will be used to trigger the validity of the siblings when this input's value changes
|
|
361
355
|
*/
|
|
@@ -424,6 +418,7 @@ declare class ChrBaseInputComponent implements OnInit, ControlValueAccessor, Aft
|
|
|
424
418
|
* Forces the input element to lose focus.
|
|
425
419
|
*/
|
|
426
420
|
forceBlur: () => void;
|
|
421
|
+
getRawValue: () => any;
|
|
427
422
|
protected updateValueAndValidity: () => void;
|
|
428
423
|
/**
|
|
429
424
|
* Despite it's name, this method returns a single validation error's display (even if there are multiple). And that is the first error found.
|
|
@@ -447,7 +442,7 @@ declare class ChrBaseInputComponent implements OnInit, ControlValueAccessor, Aft
|
|
|
447
442
|
private buildFormControl;
|
|
448
443
|
protected doCallback: () => void;
|
|
449
444
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChrBaseInputComponent, never>;
|
|
450
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChrBaseInputComponent, "chr-base-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "span": { "alias": "span"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconCallback": { "alias": "iconCallback"; "required": false; "isSignal": true; }; "iconCallbackDisabled": { "alias": "iconCallbackDisabled"; "required": false; "isSignal": true; }; "iconTooltip": { "alias": "iconTooltip"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "debounceTime": { "alias": "debounceTime"; "required": false; "isSignal": true; }; "validations": { "alias": "validations"; "required": false; "isSignal": true; }; "standalone": { "alias": "standalone"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "base64": { "alias": "base64"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; }; "siblings": { "alias": "siblings"; "required": false; "isSignal": true; }; }, { "valueChanges": "valueChanges"; "focus": "focus"; "blur": "blur"; }, never, never, true, never>;
|
|
445
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChrBaseInputComponent, "chr-base-input", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "type": { "alias": "type"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; "name": { "alias": "name"; "required": false; "isSignal": true; }; "span": { "alias": "span"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "iconCallback": { "alias": "iconCallback"; "required": false; "isSignal": true; }; "iconCallbackDisabled": { "alias": "iconCallbackDisabled"; "required": false; "isSignal": true; }; "iconTooltip": { "alias": "iconTooltip"; "required": false; "isSignal": true; }; "tooltip": { "alias": "tooltip"; "required": false; "isSignal": true; }; "debounceTime": { "alias": "debounceTime"; "required": false; "isSignal": true; }; "validations": { "alias": "validations"; "required": false; "isSignal": true; }; "standalone": { "alias": "standalone"; "required": false; "isSignal": true; }; "autofocus": { "alias": "autofocus"; "required": false; "isSignal": true; }; "base64": { "alias": "base64"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "siblings": { "alias": "siblings"; "required": false; "isSignal": true; }; }, { "valueChanges": "valueChanges"; "focus": "focus"; "blur": "blur"; "disabled": "disabledChange"; }, never, never, true, never>;
|
|
451
446
|
}
|
|
452
447
|
|
|
453
448
|
declare class ChrColorInputComponent extends ChrBaseInputComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
@@ -959,33 +954,6 @@ declare class ChrSeparatorComponent {
|
|
|
959
954
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChrSeparatorComponent, "app-chr-separator", never, {}, {}, never, never, true, never>;
|
|
960
955
|
}
|
|
961
956
|
|
|
962
|
-
declare class DecimalValidatorDirective implements Validator {
|
|
963
|
-
readonly amount: _angular_core.InputSignal<number | undefined>;
|
|
964
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
965
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DecimalValidatorDirective, never>;
|
|
966
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DecimalValidatorDirective, "[app-decimal]", never, { "amount": { "alias": "amount"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
967
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DecimalValidatorDirective>;
|
|
968
|
-
}
|
|
969
|
-
declare function decimal(amount: number): ValidatorFn;
|
|
970
|
-
|
|
971
|
-
declare class MaxDateValidatorDirective implements Validator {
|
|
972
|
-
readonly date: _angular_core.InputSignal<Date | undefined>;
|
|
973
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
974
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaxDateValidatorDirective, never>;
|
|
975
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MaxDateValidatorDirective, "[app-max-date]", never, { "date": { "alias": "date"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
976
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MaxDateValidatorDirective>;
|
|
977
|
-
}
|
|
978
|
-
declare function maxDate(date: Date): ValidatorFn;
|
|
979
|
-
|
|
980
|
-
declare class TypeValidatorDirective implements Validator {
|
|
981
|
-
readonly type: _angular_core.InputSignal<string | undefined>;
|
|
982
|
-
validate(control: AbstractControl): ValidationErrors | null;
|
|
983
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TypeValidatorDirective, never>;
|
|
984
|
-
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TypeValidatorDirective, "[app-type]", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
985
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TypeValidatorDirective>;
|
|
986
|
-
}
|
|
987
|
-
declare function type(type: string): ValidatorFn;
|
|
988
|
-
|
|
989
957
|
interface ILiveUpdateMessage {
|
|
990
958
|
status: LiveUpdateStatus;
|
|
991
959
|
message?: string | null;
|
|
@@ -1106,7 +1074,7 @@ declare class ChrDefaultModalComponent {
|
|
|
1106
1074
|
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChrDefaultModalComponent, "app-chr-default-modal", never, { "title": { "alias": "title"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "actions": { "alias": "actions"; "required": false; "isSignal": true; }; "close": { "alias": "close"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1107
1075
|
}
|
|
1108
1076
|
|
|
1109
|
-
declare class ChrModalComponent {
|
|
1077
|
+
declare class ChrModalComponent implements OnInit {
|
|
1110
1078
|
dynamicContent: ViewContainerRef;
|
|
1111
1079
|
/**
|
|
1112
1080
|
* Indique si le modal est ouvert ou fermé.
|
|
@@ -1117,12 +1085,17 @@ declare class ChrModalComponent {
|
|
|
1117
1085
|
* Indique si le modal doit se fermer lorsque l'utilisateur clique sur le fond.
|
|
1118
1086
|
* @default true
|
|
1119
1087
|
*/
|
|
1120
|
-
closeOnBackdropClick: _angular_core.
|
|
1088
|
+
closeOnBackdropClick: _angular_core.ModelSignal<boolean>;
|
|
1121
1089
|
/**
|
|
1122
1090
|
* Indique si le modal doit se fermer lorsque l'utilisateur appuie sur la touche Échap.
|
|
1123
1091
|
* @default true
|
|
1124
1092
|
*/
|
|
1125
|
-
closeOnEscape: _angular_core.
|
|
1093
|
+
closeOnEscape: _angular_core.ModelSignal<boolean>;
|
|
1094
|
+
/**
|
|
1095
|
+
* Shorthand for closeOnBackdropClick and closeOnEscape
|
|
1096
|
+
* @default undefined
|
|
1097
|
+
*/
|
|
1098
|
+
disableClose: _angular_core.InputSignal<boolean | undefined>;
|
|
1126
1099
|
/**
|
|
1127
1100
|
* Événement émis lorsque le modal doit être fermé.
|
|
1128
1101
|
* @default undefined
|
|
@@ -1130,20 +1103,19 @@ declare class ChrModalComponent {
|
|
|
1130
1103
|
close: _angular_core.OutputEmitterRef<any>;
|
|
1131
1104
|
/**
|
|
1132
1105
|
* Largeur du modal en pourcentage de la largeur de la fenêtre.
|
|
1133
|
-
* @default 50
|
|
1134
1106
|
*/
|
|
1135
1107
|
width: _angular_core.InputSignal<number | undefined>;
|
|
1136
1108
|
/**
|
|
1137
1109
|
* Hauteur du modal en pourcentage de la hauteur de la fenêtre.
|
|
1138
|
-
* @default 50
|
|
1139
1110
|
*/
|
|
1140
1111
|
height: _angular_core.InputSignal<number | undefined>;
|
|
1141
1112
|
getDynamicContentContainer(): ViewContainerRef;
|
|
1142
1113
|
onBackdropClick(): void;
|
|
1143
1114
|
onModalClick(event: Event): void;
|
|
1144
1115
|
onEscapeKey(event: KeyboardEvent): void;
|
|
1116
|
+
ngOnInit(): void;
|
|
1145
1117
|
static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChrModalComponent, never>;
|
|
1146
|
-
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChrModalComponent, "chr-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, { "close": "close"; }, never, never, true, never>;
|
|
1118
|
+
static ɵcmp: _angular_core.ɵɵComponentDeclaration<ChrModalComponent, "chr-modal", never, { "isOpen": { "alias": "isOpen"; "required": false; "isSignal": true; }; "closeOnBackdropClick": { "alias": "closeOnBackdropClick"; "required": false; "isSignal": true; }; "closeOnEscape": { "alias": "closeOnEscape"; "required": false; "isSignal": true; }; "disableClose": { "alias": "disableClose"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "height": { "alias": "height"; "required": false; "isSignal": true; }; }, { "closeOnBackdropClick": "closeOnBackdropClickChange"; "closeOnEscape": "closeOnEscapeChange"; "close": "close"; }, never, never, true, never>;
|
|
1147
1119
|
}
|
|
1148
1120
|
|
|
1149
1121
|
declare class InlineSvgComponent implements OnInit {
|
|
@@ -1312,19 +1284,28 @@ declare const inOutAnimation: (duration?: number) => _angular_animations.Animati
|
|
|
1312
1284
|
|
|
1313
1285
|
declare const rotationAnimation: (initialAngle?: number, endAngle?: number, duration?: number) => _angular_animations.AnimationTriggerMetadata;
|
|
1314
1286
|
|
|
1315
|
-
declare class DialogService {
|
|
1316
|
-
private dialog;
|
|
1317
|
-
openDelete: (callback?: Function, ...elements: Parameters<any>) => void;
|
|
1318
|
-
openDefault: (config?: IDefaultDialogConfig) => void;
|
|
1319
|
-
open: (component: any, options?: MatDialogConfig<any>) => MatDialogRef<any, any>;
|
|
1320
|
-
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DialogService, never>;
|
|
1321
|
-
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DialogService>;
|
|
1322
|
-
}
|
|
1323
|
-
|
|
1324
1287
|
interface ModalOptions {
|
|
1288
|
+
/**
|
|
1289
|
+
* Indicates if the modal is open or closed.
|
|
1290
|
+
* @default true
|
|
1291
|
+
*/
|
|
1325
1292
|
closeOnBackdropClick?: boolean;
|
|
1293
|
+
/**
|
|
1294
|
+
* Indicates if the modal should close when the user presses the Escape key.
|
|
1295
|
+
* @default true
|
|
1296
|
+
*/
|
|
1326
1297
|
closeOnEscape?: boolean;
|
|
1298
|
+
/**
|
|
1299
|
+
* Shorthand for closeOnBackdropClick and closeOnEscape
|
|
1300
|
+
*/
|
|
1301
|
+
disableClose?: boolean;
|
|
1302
|
+
/**
|
|
1303
|
+
* Width in vw
|
|
1304
|
+
*/
|
|
1327
1305
|
width?: number;
|
|
1306
|
+
/**
|
|
1307
|
+
* Height in vh
|
|
1308
|
+
*/
|
|
1328
1309
|
height?: number;
|
|
1329
1310
|
data?: any;
|
|
1330
1311
|
}
|
|
@@ -1407,6 +1388,78 @@ declare class FileService {
|
|
|
1407
1388
|
static ɵprov: _angular_core.ɵɵInjectableDeclaration<FileService>;
|
|
1408
1389
|
}
|
|
1409
1390
|
|
|
1391
|
+
declare class DecimalValidatorDirective implements Validator {
|
|
1392
|
+
readonly amount: _angular_core.InputSignal<number | undefined>;
|
|
1393
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1394
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<DecimalValidatorDirective, never>;
|
|
1395
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<DecimalValidatorDirective, "[app-decimal]", never, { "amount": { "alias": "amount"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1396
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<DecimalValidatorDirective>;
|
|
1397
|
+
}
|
|
1398
|
+
declare function decimal(amount: number): ValidatorFn;
|
|
1399
|
+
|
|
1400
|
+
declare class MaxDateValidatorDirective implements Validator {
|
|
1401
|
+
readonly date: _angular_core.InputSignal<Date | undefined>;
|
|
1402
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1403
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaxDateValidatorDirective, never>;
|
|
1404
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MaxDateValidatorDirective, "[app-max-date]", never, { "date": { "alias": "date"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1405
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MaxDateValidatorDirective>;
|
|
1406
|
+
}
|
|
1407
|
+
declare function maxDate(date: Date): ValidatorFn;
|
|
1408
|
+
|
|
1409
|
+
declare class MaxFileSizeValidator implements Validator {
|
|
1410
|
+
readonly max: _angular_core.InputSignal<number>;
|
|
1411
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1412
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaxFileSizeValidator, never>;
|
|
1413
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MaxFileSizeValidator, "[app-max-file-size]", never, { "max": { "alias": "max"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1414
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MaxFileSizeValidator>;
|
|
1415
|
+
}
|
|
1416
|
+
declare function maxFileSize(maxSize: number): ValidatorFn;
|
|
1417
|
+
|
|
1418
|
+
declare class MaxLengthValidatorDirective implements Validator {
|
|
1419
|
+
readonly treshold: _angular_core.InputSignal<number | undefined>;
|
|
1420
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1421
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MaxLengthValidatorDirective, never>;
|
|
1422
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MaxLengthValidatorDirective, "[app-maxlength]", never, { "treshold": { "alias": "treshold"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1423
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MaxLengthValidatorDirective>;
|
|
1424
|
+
}
|
|
1425
|
+
declare function maxLength(treshold: number): ValidatorFn;
|
|
1426
|
+
|
|
1427
|
+
declare class MinFileSizeValidator implements Validator {
|
|
1428
|
+
readonly min: _angular_core.InputSignal<number>;
|
|
1429
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1430
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MinFileSizeValidator, never>;
|
|
1431
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MinFileSizeValidator, "[app-min-file-size]", never, { "min": { "alias": "min"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1432
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MinFileSizeValidator>;
|
|
1433
|
+
}
|
|
1434
|
+
declare function minFileSize(minSize: number): ValidatorFn;
|
|
1435
|
+
|
|
1436
|
+
declare class MinLengthValidatorDirective implements Validator {
|
|
1437
|
+
readonly treshold: _angular_core.InputSignal<number | undefined>;
|
|
1438
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1439
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<MinLengthValidatorDirective, never>;
|
|
1440
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<MinLengthValidatorDirective, "[app-minlength]", never, { "treshold": { "alias": "treshold"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1441
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<MinLengthValidatorDirective>;
|
|
1442
|
+
}
|
|
1443
|
+
declare function minLength(treshold: number): ValidatorFn;
|
|
1444
|
+
|
|
1445
|
+
declare class RequiredValidatorDirective implements Validator {
|
|
1446
|
+
readonly required: _angular_core.InputSignal<boolean | undefined>;
|
|
1447
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1448
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<RequiredValidatorDirective, never>;
|
|
1449
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<RequiredValidatorDirective, "[app-required]", never, { "required": { "alias": "required"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1450
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<RequiredValidatorDirective>;
|
|
1451
|
+
}
|
|
1452
|
+
declare function required(required?: boolean): ValidatorFn;
|
|
1453
|
+
|
|
1454
|
+
declare class TypeValidatorDirective implements Validator {
|
|
1455
|
+
readonly type: _angular_core.InputSignal<string | undefined>;
|
|
1456
|
+
validate(control: AbstractControl): ValidationErrors | null;
|
|
1457
|
+
static ɵfac: _angular_core.ɵɵFactoryDeclaration<TypeValidatorDirective, never>;
|
|
1458
|
+
static ɵdir: _angular_core.ɵɵDirectiveDeclaration<TypeValidatorDirective, "[app-type]", never, { "type": { "alias": "type"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1459
|
+
static ɵprov: _angular_core.ɵɵInjectableDeclaration<TypeValidatorDirective>;
|
|
1460
|
+
}
|
|
1461
|
+
declare function type(type: string): ValidatorFn;
|
|
1462
|
+
|
|
1410
1463
|
declare const SpinnerInterceptor: HttpInterceptorFn;
|
|
1411
1464
|
|
|
1412
1465
|
declare const XsrfInterceptor: HttpInterceptorFn;
|
|
@@ -1424,5 +1477,5 @@ declare const XSRFHEADERNAME: InjectionToken<string>;
|
|
|
1424
1477
|
declare const XSRFCOOKIENAME: InjectionToken<string>;
|
|
1425
1478
|
declare const HUBURL: InjectionToken<string>;
|
|
1426
1479
|
|
|
1427
|
-
export { Aligments, AutofocusDirective, BreadcrumbComponent, ButtonComponent, CHR_MODAL_DATA, CHR_MODAL_REF, CarouselComponent, ChrBaseInputComponent, ChrButtonComponent, ChrCheckboxComponent, ChrColorInputComponent, ChrDataTable, ChrDateInputComponent, ChrDatetimeInputComponent, ChrDefaultModalComponent, ChrDeleteModalComponent, ChrFileInputComponent, ChrFormComponent, ChrModalComponent, ChrNiceFileInputComponent, ChrPaginatorComponent, ChrSearchSelectComponent, ChrSearchbarComponent, ChrSeparatorComponent, ChrSpinnerComponent, ChrTableComponent, ChrTableHeaderCellComponent, ChrTagSelectComponent, ChrTextareaInputComponent, ChrToastComponent, ChrToggleInputComponent, Colors, CookiesService, DEFAULTLIVEUPDATEMESSAGE, DataService, DecimalValidatorDirective, DefaultLiveUpdateMessage,
|
|
1428
|
-
export type { Alignment, Breadcrumb, Color, IAction, IChip, IChips, IColumn, IComputedColumn, IComputedRow, IControlValidation, IDefaultDialogConfig, IFormSection, IInputSearchFilter, ILiveUpdateMessage, IXsrfProviderParams, ModalData, ModalOptions, ModalRef, TColumn, TColumnType, Toast };
|
|
1480
|
+
export { Aligments, AutofocusDirective, BreadcrumbComponent, ButtonComponent, CHR_MODAL_DATA, CHR_MODAL_REF, CarouselComponent, ChrBaseInputComponent, ChrButtonComponent, ChrCheckboxComponent, ChrColorInputComponent, ChrDataTable, ChrDateInputComponent, ChrDatetimeInputComponent, ChrDefaultModalComponent, ChrDeleteModalComponent, ChrFileInputComponent, ChrFormComponent, ChrModalComponent, ChrNiceFileInputComponent, ChrPaginatorComponent, ChrSearchSelectComponent, ChrSearchbarComponent, ChrSeparatorComponent, ChrSpinnerComponent, ChrTableComponent, ChrTableHeaderCellComponent, ChrTagSelectComponent, ChrTextareaInputComponent, ChrToastComponent, ChrToggleInputComponent, Colors, CookiesService, DEFAULTLIVEUPDATEMESSAGE, DataService, DecimalValidatorDirective, DefaultLiveUpdateMessage, FileService, HUBURL, InlineSvgComponent, LiveUpdateService, LiveUpdateStatus, LoaderService, MaxDateValidatorDirective, MaxFileSizeValidator, MaxLengthValidatorDirective, MinFileSizeValidator, MinLengthValidatorDirective, ModalService, RequiredValidatorDirective, SpinnerInterceptor, SyncValidatorToAsync, TabComponent, TabGroupComponent, TabToEnterHandlerDirective, TabToInputHandlerDirective, ToastService, TypeValidatorDirective, WaitAndStoreXsrfToken, XSRFCOOKIENAME, XSRFHEADERNAME, XsrfInterceptor, decimal, getAsyncValidators, getBackgroundColor, getBorderColor, getContrastBackgroundColor, getContrastBorderColor, getContrastTextColor, getSyncValidators, getTextColor, getValidators, inOutAnimation, maxDate, maxFileSize, maxLength, minFileSize, minLength, provideXsrfHttpClient, required, rotationAnimation, type };
|
|
1481
|
+
export type { Alignment, Breadcrumb, Color, IAction, IChip, IChips, IColumn, IComputedColumn, IComputedRow, IControl, IControlValidation, IDefaultDialogConfig, IFile, IFormSection, IInputSearchFilter, ILiveUpdateMessage, ISearchFilter, IXsrfProviderParams, InputType, ModalData, ModalOptions, ModalRef, TColumn, TColumnType, Toast };
|
package/package.json
CHANGED
|
Binary file
|