pm-fuel 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/README.md +72 -0
- package/fesm2022/pm-fuel.mjs +14577 -0
- package/fesm2022/pm-fuel.mjs.map +1 -0
- package/index.d.ts +3356 -0
- package/package.json +27 -0
package/index.d.ts
ADDED
|
@@ -0,0 +1,3356 @@
|
|
|
1
|
+
import { FormControl, FormGroupDirective, ValidatorFn, AbstractControl, ControlValueAccessor, FormGroup } from '@angular/forms';
|
|
2
|
+
import * as i0 from '@angular/core';
|
|
3
|
+
import { OnInit, AfterViewInit, OnChanges, SimpleChanges, PipeTransform, OnDestroy, InjectionToken, EventEmitter, Type, ElementRef, ViewContainerRef, Renderer2, NgZone, TemplateRef, AfterContentInit, AfterContentChecked, QueryList } from '@angular/core';
|
|
4
|
+
import { CurrencyPipe } from '@angular/common';
|
|
5
|
+
import { Router } from '@angular/router';
|
|
6
|
+
import { OverlayRef } from '@angular/cdk/overlay';
|
|
7
|
+
import { Subject, Observable, BehaviorSubject } from 'rxjs';
|
|
8
|
+
import { SafeUrl } from '@angular/platform-browser';
|
|
9
|
+
import { ComponentType } from '@angular/cdk/portal';
|
|
10
|
+
import * as pm_fuel from 'pm-fuel';
|
|
11
|
+
import { AnimationEvent, AnimationTriggerMetadata } from '@angular/animations';
|
|
12
|
+
import { HttpClient } from '@angular/common/http';
|
|
13
|
+
import { CdkDragDrop } from '@angular/cdk/drag-drop';
|
|
14
|
+
|
|
15
|
+
declare class PmdsDirectiveDecimalNumberFormat {
|
|
16
|
+
private el;
|
|
17
|
+
control: FormControl;
|
|
18
|
+
onKeyDown(): void;
|
|
19
|
+
private run;
|
|
20
|
+
private restoreValue;
|
|
21
|
+
private isValid;
|
|
22
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveDecimalNumberFormat, never>;
|
|
23
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveDecimalNumberFormat, "[pmdsDecimalNumberFormat]", never, { "control": { "alias": "control"; "required": false; }; }, {}, never, never, true, never>;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
interface INumberFormatOptions {
|
|
27
|
+
maxLengthInt: number;
|
|
28
|
+
maxLengthDec: number;
|
|
29
|
+
formControlName: string;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
declare class PmdsDirectiveNumberFormat implements OnInit {
|
|
33
|
+
private readonly currencyPipe;
|
|
34
|
+
private formGroupDirective;
|
|
35
|
+
pmdsNumberOptions: Partial<INumberFormatOptions>;
|
|
36
|
+
private inputValue;
|
|
37
|
+
formControl: FormControl;
|
|
38
|
+
private regExp;
|
|
39
|
+
constructor(currencyPipe: CurrencyPipe, formGroupDirective: FormGroupDirective);
|
|
40
|
+
ngOnInit(): void;
|
|
41
|
+
private regexCurrency;
|
|
42
|
+
private formatCurrency;
|
|
43
|
+
private isValidCurrency;
|
|
44
|
+
private cleanValue;
|
|
45
|
+
private saveInputValue;
|
|
46
|
+
onInput(input: HTMLInputElement): void;
|
|
47
|
+
onFocusOut(_event: FocusEvent): void;
|
|
48
|
+
onFocusIn(_event: FocusEvent): void;
|
|
49
|
+
onKeyPress(event: KeyboardEvent): void;
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveNumberFormat, never>;
|
|
51
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveNumberFormat, "[pmdsNumberFormat]", never, { "pmdsNumberOptions": { "alias": "pmdsNumberOptions"; "required": false; }; }, {}, never, never, true, never>;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
declare class PmdsDirectiveTitle implements AfterViewInit, OnChanges {
|
|
55
|
+
forceLabel: string;
|
|
56
|
+
forceTitle: boolean;
|
|
57
|
+
multipleLine: boolean;
|
|
58
|
+
disabledEllipsis: boolean;
|
|
59
|
+
private domElement;
|
|
60
|
+
private readonly elementRef;
|
|
61
|
+
private readonly renderer;
|
|
62
|
+
constructor();
|
|
63
|
+
ngAfterViewInit(): void;
|
|
64
|
+
ngOnChanges(): void;
|
|
65
|
+
setTooltip(): void;
|
|
66
|
+
onHover(): void;
|
|
67
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveTitle, never>;
|
|
68
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveTitle, "[pmdsTitle]", never, { "forceLabel": { "alias": "forceLabel"; "required": false; }; "forceTitle": { "alias": "forceTitle"; "required": false; }; "multipleLine": { "alias": "multipleLine"; "required": false; }; "disabledEllipsis": { "alias": "disabledEllipsis"; "required": false; }; }, {}, never, never, true, never>;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
interface IPmdsDirectiveTitleClasses {
|
|
72
|
+
'text-overflow': string;
|
|
73
|
+
overflow: string;
|
|
74
|
+
'white-space': string;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
type TPmdsDirectiveTooltipPosition = 'top-left' | 'top-center' | 'top-right' | 'middle-left' | 'middle-center' | 'middle-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
78
|
+
|
|
79
|
+
declare class PmdsDirectiveTooltip implements OnChanges {
|
|
80
|
+
pmdsTooltipTitle: string | null;
|
|
81
|
+
pmdsTooltipActivate: boolean;
|
|
82
|
+
tooltipContent: string | null;
|
|
83
|
+
pmdsTooltipPosition: TPmdsDirectiveTooltipPosition;
|
|
84
|
+
delay: '0' | '75' | '100' | '150' | '200' | '300' | '500' | '700' | '1000';
|
|
85
|
+
private tooltip;
|
|
86
|
+
private contentTooltip;
|
|
87
|
+
private triangleTooltip;
|
|
88
|
+
private timer;
|
|
89
|
+
private defaultTime;
|
|
90
|
+
private elementRef;
|
|
91
|
+
private renderer;
|
|
92
|
+
onMouseEnter(): void;
|
|
93
|
+
onMouseClick(event: Event): void;
|
|
94
|
+
onMouseLeave(): void;
|
|
95
|
+
onWindowScroll(): void;
|
|
96
|
+
onKeyDown(): void;
|
|
97
|
+
onGlobalClick(event: Element): void;
|
|
98
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
99
|
+
private show;
|
|
100
|
+
private hide;
|
|
101
|
+
private create;
|
|
102
|
+
private setPosition;
|
|
103
|
+
private loadedTooltip;
|
|
104
|
+
private isMobile;
|
|
105
|
+
private generateContent;
|
|
106
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveTooltip, never>;
|
|
107
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveTooltip, "[pmdsTooltip]", never, { "pmdsTooltipTitle": { "alias": "pmdsTooltipTitle"; "required": false; }; "pmdsTooltipActivate": { "alias": "pmdsTooltipActivate"; "required": false; }; "tooltipContent": { "alias": "pmdsTooltip"; "required": false; }; "pmdsTooltipPosition": { "alias": "pmdsTooltipPosition"; "required": false; }; "delay": { "alias": "delay"; "required": false; }; }, {}, never, never, true, never>;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
declare class PmdsPipeAccountFormat implements PipeTransform {
|
|
111
|
+
transform(value: string): string;
|
|
112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeAccountFormat, never>;
|
|
113
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeAccountFormat, "pmdsAccountFormat", true>;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
declare class PmdsPipeAccountHidden implements PipeTransform {
|
|
117
|
+
transform(value: string): string;
|
|
118
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeAccountHidden, never>;
|
|
119
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeAccountHidden, "pmdsAccountHidden", true>;
|
|
120
|
+
}
|
|
121
|
+
|
|
122
|
+
declare class PmdsPipeAmountFormat implements PipeTransform {
|
|
123
|
+
transform(value: string | number | undefined, showDecimals?: boolean, locale?: string, numberDecimals?: number, numberFormat?: string, currency?: string): string;
|
|
124
|
+
private getFormattedValueByCurrency;
|
|
125
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeAmountFormat, never>;
|
|
126
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeAmountFormat, "pmdsAmountFormat", true>;
|
|
127
|
+
}
|
|
128
|
+
|
|
129
|
+
declare class PmdsPipeCamelcaseToSnakecaseUppercase implements PipeTransform {
|
|
130
|
+
transform(value: string): string;
|
|
131
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeCamelcaseToSnakecaseUppercase, never>;
|
|
132
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeCamelcaseToSnakecaseUppercase, "pmdsCamelcaseToSnakecaseUppercase", true>;
|
|
133
|
+
}
|
|
134
|
+
|
|
135
|
+
declare class PmdsPipeDateTime implements PipeTransform {
|
|
136
|
+
private datePipe;
|
|
137
|
+
transform(value: number | string | undefined | null, dateFormat?: string, timeFormat?: string, timezone?: string): string | null;
|
|
138
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeDateTime, never>;
|
|
139
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeDateTime, "pmdsDateTime", true>;
|
|
140
|
+
}
|
|
141
|
+
|
|
142
|
+
declare class PmdsPipeOnlyDecimals implements PipeTransform {
|
|
143
|
+
transform(value: number | string | undefined | null, separator?: string): string;
|
|
144
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeOnlyDecimals, never>;
|
|
145
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeOnlyDecimals, "pmdsOnlyDecimals", true>;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
type TPmdsRelationshipFormatType = 'identifier' | 'text';
|
|
149
|
+
|
|
150
|
+
interface IPmdsRelationshipLiterals {
|
|
151
|
+
father: string;
|
|
152
|
+
mother: string;
|
|
153
|
+
selfPayed: string;
|
|
154
|
+
}
|
|
155
|
+
|
|
156
|
+
declare class PmdsPipeRelationshipFormat implements PipeTransform {
|
|
157
|
+
private formats;
|
|
158
|
+
transform(value: string | number | undefined | null, type: TPmdsRelationshipFormatType | undefined, literals: IPmdsRelationshipLiterals): string;
|
|
159
|
+
private getLiterals;
|
|
160
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeRelationshipFormat, never>;
|
|
161
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeRelationshipFormat, "pmdsRelationshipFormat", true>;
|
|
162
|
+
}
|
|
163
|
+
|
|
164
|
+
declare class PmdsPipeSalesforceNumberFormat implements PipeTransform {
|
|
165
|
+
transform(value: number | string | undefined | null, mask?: string, noDecimals?: boolean, separator?: string): string;
|
|
166
|
+
private getDecimals;
|
|
167
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeSalesforceNumberFormat, never>;
|
|
168
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeSalesforceNumberFormat, "pmdsSalesforceNumberFormat", true>;
|
|
169
|
+
}
|
|
170
|
+
|
|
171
|
+
declare class PmdsPipeTransactionReference implements PipeTransform {
|
|
172
|
+
private referenceStatus;
|
|
173
|
+
transform(value: string, text?: string): string;
|
|
174
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeTransactionReference, never>;
|
|
175
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeTransactionReference, "pmdsTransactionReference", true>;
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
declare class PmdsPipeTruncateEllipsis implements PipeTransform {
|
|
179
|
+
transform(value: string, max?: number): string;
|
|
180
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeTruncateEllipsis, never>;
|
|
181
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeTruncateEllipsis, "pmdsTruncateEllipsis", true>;
|
|
182
|
+
}
|
|
183
|
+
|
|
184
|
+
declare class PmdsUtilHistoryRouting {
|
|
185
|
+
private router;
|
|
186
|
+
history: string[];
|
|
187
|
+
private isNavigatePrevious;
|
|
188
|
+
constructor(router: Router);
|
|
189
|
+
initHistory(): Promise<unknown>;
|
|
190
|
+
navigatePrevious(): void;
|
|
191
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsUtilHistoryRouting, never>;
|
|
192
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsUtilHistoryRouting>;
|
|
193
|
+
}
|
|
194
|
+
|
|
195
|
+
declare class PmdsUtilImgFlags {
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
declare class PmdsUtilStyles {
|
|
199
|
+
}
|
|
200
|
+
|
|
201
|
+
declare class PmdsUtilValidators {
|
|
202
|
+
static validChars: string;
|
|
203
|
+
static minTime(min: string): ValidatorFn;
|
|
204
|
+
static maxTime(max: string): ValidatorFn;
|
|
205
|
+
static min(min: number, locale?: string): ValidatorFn;
|
|
206
|
+
static max(max: number, locale?: string): ValidatorFn;
|
|
207
|
+
static nameRegex(control: AbstractControl): {
|
|
208
|
+
[key: string]: unknown;
|
|
209
|
+
} | null;
|
|
210
|
+
static emailRegex(control: AbstractControl): {
|
|
211
|
+
[key: string]: unknown;
|
|
212
|
+
} | null;
|
|
213
|
+
static noSpaces(control: AbstractControl): {
|
|
214
|
+
[key: string]: unknown;
|
|
215
|
+
} | null;
|
|
216
|
+
static noWhitespace(control: AbstractControl): {
|
|
217
|
+
[key: string]: unknown;
|
|
218
|
+
} | null;
|
|
219
|
+
static isEmptyValue(value?: unknown): boolean;
|
|
220
|
+
static studentId(control: AbstractControl): {
|
|
221
|
+
[key: string]: any;
|
|
222
|
+
} | null;
|
|
223
|
+
static minLengthArray(min: number): ValidatorFn;
|
|
224
|
+
static maxAmount(max: number, decimalCharacter?: ',' | '.'): ValidatorFn;
|
|
225
|
+
}
|
|
226
|
+
|
|
227
|
+
declare class PmdsUtilImgSvgs {
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
declare class PmdsPipeTypeOf implements PipeTransform {
|
|
231
|
+
transform(value: unknown): string;
|
|
232
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeTypeOf, never>;
|
|
233
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeTypeOf, "pmdsTypeOf", true>;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
declare class PmdsDirectiveMaskAmountInput {
|
|
237
|
+
pmdsMAIDecimalCharacter: string;
|
|
238
|
+
pmdsMAIMaxIntLength: number;
|
|
239
|
+
onInput(event: any): void;
|
|
240
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveMaskAmountInput, never>;
|
|
241
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveMaskAmountInput, "[pmdsMaskAmountInput]", never, { "pmdsMAIDecimalCharacter": { "alias": "pmdsMAIDecimalCharacter"; "required": false; }; "pmdsMAIMaxIntLength": { "alias": "pmdsMAIMaxIntLength"; "required": false; }; }, {}, never, never, true, never>;
|
|
242
|
+
}
|
|
243
|
+
|
|
244
|
+
declare class PmdsDirectiveNoLeadingSpacesInput {
|
|
245
|
+
onInput(event: any): void;
|
|
246
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveNoLeadingSpacesInput, never>;
|
|
247
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveNoLeadingSpacesInput, "[pmdsNoLeadingSpacesInput]", never, {}, {}, never, never, true, never>;
|
|
248
|
+
}
|
|
249
|
+
|
|
250
|
+
declare class PmdsDirectiveViewportOverflow {
|
|
251
|
+
options: {
|
|
252
|
+
height: number;
|
|
253
|
+
translateY: number;
|
|
254
|
+
};
|
|
255
|
+
private domElement;
|
|
256
|
+
private elementRef;
|
|
257
|
+
private renderer;
|
|
258
|
+
private changed;
|
|
259
|
+
onScroll(): void;
|
|
260
|
+
checkPostion(): void;
|
|
261
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsDirectiveViewportOverflow, never>;
|
|
262
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<PmdsDirectiveViewportOverflow, "[pmdsViewportOverflow]", never, { "options": { "alias": "pmdsViewportOverflow"; "required": false; }; }, {}, never, never, true, never>;
|
|
263
|
+
}
|
|
264
|
+
|
|
265
|
+
declare class PmdsPipeExchangeDecimals implements PipeTransform {
|
|
266
|
+
transform(value: string, format: 'xx.xxXXxx' | 'xx.XXxxxx' | 'xx.xxxxXX', bigFont: string): string;
|
|
267
|
+
calculateSizeOfRate(value: string, format: string, bigFont: string): any;
|
|
268
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsPipeExchangeDecimals, never>;
|
|
269
|
+
static ɵpipe: i0.ɵɵPipeDeclaration<PmdsPipeExchangeDecimals, "pmdsExchangeDecimals", true>;
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
interface PmdsCoreICachedElement {
|
|
273
|
+
id: string;
|
|
274
|
+
value: any;
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
declare class PmdsCoreCacheService {
|
|
278
|
+
private cachedCollection;
|
|
279
|
+
private maxCachedElements;
|
|
280
|
+
addCachedElement(id: string, value: any, expiration?: number | null): void;
|
|
281
|
+
getCachedElement(id: string): any;
|
|
282
|
+
private addElementToCollection;
|
|
283
|
+
private removeExpiredItem;
|
|
284
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCoreCacheService, never>;
|
|
285
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsCoreCacheService>;
|
|
286
|
+
}
|
|
287
|
+
|
|
288
|
+
declare class PmdsCoreStorageService {
|
|
289
|
+
signOut(): void;
|
|
290
|
+
setLocalStorageItem(tokenKey: string, token: any): void;
|
|
291
|
+
getLocalStorageItem(tokenKey: string): any;
|
|
292
|
+
deleteLocalStorageItem(tokenKey: string): void;
|
|
293
|
+
setSessionStorageItem(tokenKey: string, token: any): void;
|
|
294
|
+
getSessionStorageItem(tokenKey: string): any;
|
|
295
|
+
deleteSessionStorageItem(tokenKey: string): void;
|
|
296
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCoreStorageService, never>;
|
|
297
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsCoreStorageService>;
|
|
298
|
+
}
|
|
299
|
+
|
|
300
|
+
interface IPmdsCdkActionBarConfig {
|
|
301
|
+
actionBarButtons?: IPmdsCdkActionBarButton[];
|
|
302
|
+
clearBarButton?: {
|
|
303
|
+
label: string;
|
|
304
|
+
};
|
|
305
|
+
secondaryBarButton?: IPmdsCdkActionBarButton;
|
|
306
|
+
dataQA?: string;
|
|
307
|
+
}
|
|
308
|
+
interface IPmdsCdkActionBarButton {
|
|
309
|
+
action: (button?: unknown) => void;
|
|
310
|
+
label?: string;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
declare class PmdsCdkActionBarComponent implements OnInit {
|
|
314
|
+
actionBarButtons: IPmdsCdkActionBarButton[];
|
|
315
|
+
moreActionBarButtons: IPmdsCdkActionBarButton[];
|
|
316
|
+
clearBarButton: Partial<IPmdsCdkActionBarButton>;
|
|
317
|
+
secondaryBarButton: IPmdsCdkActionBarButton;
|
|
318
|
+
componentSelector: string;
|
|
319
|
+
dataQA: string;
|
|
320
|
+
maxActionBarButtons: number;
|
|
321
|
+
showMoreActions: boolean;
|
|
322
|
+
moreOptionsOffset: string;
|
|
323
|
+
private readonly actionBarConfig;
|
|
324
|
+
private readonly overlayRef;
|
|
325
|
+
get showMenuActionBarButtons(): boolean;
|
|
326
|
+
ngOnInit(): void;
|
|
327
|
+
clear(): void;
|
|
328
|
+
close(): void;
|
|
329
|
+
toggleShowMore(): void;
|
|
330
|
+
getMoreOptionsOffset(): string;
|
|
331
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkActionBarComponent, never>;
|
|
332
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkActionBarComponent, "pmds-cdk-action-bar", never, {}, {}, never, never, true, never>;
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
declare class PmdsCdkActionBarRef {
|
|
336
|
+
private readonly overlayRef;
|
|
337
|
+
events: Subject<{
|
|
338
|
+
action: "clear";
|
|
339
|
+
}>;
|
|
340
|
+
constructor(overlayRef: OverlayRef);
|
|
341
|
+
close(): void;
|
|
342
|
+
}
|
|
343
|
+
|
|
344
|
+
declare class PmdsCdkActionBarService {
|
|
345
|
+
dialogRef: PmdsCdkActionBarRef;
|
|
346
|
+
private readonly injector;
|
|
347
|
+
private readonly overlay;
|
|
348
|
+
private readonly overlayContainer;
|
|
349
|
+
open(config: IPmdsCdkActionBarConfig): PmdsCdkActionBarRef;
|
|
350
|
+
private attachModalContainer;
|
|
351
|
+
private createInjector;
|
|
352
|
+
private createOverlay;
|
|
353
|
+
private getOverlayConfig;
|
|
354
|
+
private setOverlayContainerClassList;
|
|
355
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkActionBarService, never>;
|
|
356
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsCdkActionBarService>;
|
|
357
|
+
}
|
|
358
|
+
|
|
359
|
+
interface IPmdsCdkActionRowBar {
|
|
360
|
+
action: () => void;
|
|
361
|
+
label: string;
|
|
362
|
+
}
|
|
363
|
+
|
|
364
|
+
declare class PmdsCdkActionRowBarComponent implements OnInit, OnDestroy {
|
|
365
|
+
actionBarButtons: IPmdsCdkActionRowBar[];
|
|
366
|
+
disabled: boolean;
|
|
367
|
+
dataQA: string;
|
|
368
|
+
showActions: boolean;
|
|
369
|
+
componentSelector: string;
|
|
370
|
+
private wasInside;
|
|
371
|
+
private readonly actionRowBarSrv;
|
|
372
|
+
private readonly destroy$;
|
|
373
|
+
ngOnInit(): void;
|
|
374
|
+
ngOnDestroy(): void;
|
|
375
|
+
onDataChangeReceived(): void;
|
|
376
|
+
clickInside(): void;
|
|
377
|
+
clickOut(): void;
|
|
378
|
+
openActionRowBar(event: Event): void;
|
|
379
|
+
noAction(event: Event): void;
|
|
380
|
+
buttonAction(event: Event, indexButton: number): void;
|
|
381
|
+
closeAction(event: Event): void;
|
|
382
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkActionRowBarComponent, never>;
|
|
383
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkActionRowBarComponent, "pmds-cdk-action-row-bar", never, { "actionBarButtons": { "alias": "actionBarButtons"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; }, {}, never, never, true, never>;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
interface IPmdsCdkAlertLiterals {
|
|
387
|
+
action?: string;
|
|
388
|
+
subject?: string;
|
|
389
|
+
subjectContent?: string;
|
|
390
|
+
message?: string;
|
|
391
|
+
messageContent?: string;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
interface IPmdsCdkAlertData {
|
|
395
|
+
actionFn?: () => void;
|
|
396
|
+
actionIcon?: string;
|
|
397
|
+
cancelAutoClose?: boolean;
|
|
398
|
+
closeFn?: () => void;
|
|
399
|
+
content?: string;
|
|
400
|
+
hideClose?: boolean;
|
|
401
|
+
literals?: IPmdsCdkAlertLiterals;
|
|
402
|
+
title?: string;
|
|
403
|
+
type?: TPmdsCdkAlertType;
|
|
404
|
+
}
|
|
405
|
+
type TPmdsCdkAlertType = 'warning' | 'info' | 'success' | 'error';
|
|
406
|
+
declare const PMDS_CDK_ALERT_DATA_TOKEN: InjectionToken<IPmdsCdkAlertData>;
|
|
407
|
+
|
|
408
|
+
declare class PmdsCdkAlertComponent {
|
|
409
|
+
data: IPmdsCdkAlertData;
|
|
410
|
+
dataQA: string;
|
|
411
|
+
closeEmit: EventEmitter<void>;
|
|
412
|
+
componentSelector: string;
|
|
413
|
+
styleByType: {
|
|
414
|
+
success: string;
|
|
415
|
+
warning: string;
|
|
416
|
+
info: string;
|
|
417
|
+
error: string;
|
|
418
|
+
};
|
|
419
|
+
iconByType: {
|
|
420
|
+
success: string;
|
|
421
|
+
warning: string;
|
|
422
|
+
info: string;
|
|
423
|
+
error: string;
|
|
424
|
+
};
|
|
425
|
+
actionByType: {
|
|
426
|
+
success: string;
|
|
427
|
+
warning: string;
|
|
428
|
+
info: string;
|
|
429
|
+
error: string;
|
|
430
|
+
};
|
|
431
|
+
action(): void;
|
|
432
|
+
close(): void;
|
|
433
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkAlertComponent, never>;
|
|
434
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkAlertComponent, "pmds-cdk-alert", never, { "data": { "alias": "data"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; }, { "closeEmit": "closeEmit"; }, never, never, true, never>;
|
|
435
|
+
}
|
|
436
|
+
|
|
437
|
+
interface IPmdsCdkAutocompleteTableConfig {
|
|
438
|
+
rowComponent?: IPmdsCdkAutocompleteDynamicRowComponentConfig;
|
|
439
|
+
error?: {
|
|
440
|
+
title: string;
|
|
441
|
+
body?: string;
|
|
442
|
+
};
|
|
443
|
+
button?: {
|
|
444
|
+
label: string;
|
|
445
|
+
show: boolean;
|
|
446
|
+
action: () => void;
|
|
447
|
+
};
|
|
448
|
+
customHeight?: string;
|
|
449
|
+
loadingLiterals?: string;
|
|
450
|
+
noResultsLiterals?: {
|
|
451
|
+
title: string;
|
|
452
|
+
msg: string;
|
|
453
|
+
};
|
|
454
|
+
}
|
|
455
|
+
interface IPmdsCdkAutocompleteDynamicRowComponentConfig {
|
|
456
|
+
component: Type<unknown>;
|
|
457
|
+
cardComponent?: Type<unknown>;
|
|
458
|
+
styles?: string;
|
|
459
|
+
selectRowAction?: (row: unknown) => void;
|
|
460
|
+
}
|
|
461
|
+
interface IPmdsCdkAutocompleteRowConfigParam<T> {
|
|
462
|
+
data: T;
|
|
463
|
+
rowIndex: number;
|
|
464
|
+
stylesConfig?: string;
|
|
465
|
+
}
|
|
466
|
+
|
|
467
|
+
interface IPmdsCdkAutocompleteConfig {
|
|
468
|
+
customWidth?: string;
|
|
469
|
+
input?: IPmdsCdkAutompleteInputConfig;
|
|
470
|
+
table: IPmdsCdkAutocompleteTableConfig;
|
|
471
|
+
}
|
|
472
|
+
interface IPmdsCdkAutompleteInputConfig {
|
|
473
|
+
customWidth?: string;
|
|
474
|
+
icon?: string;
|
|
475
|
+
labelComponent?: IPmdsCdkAutocompleteDynamicLabelComponentConfig;
|
|
476
|
+
placeholder?: string;
|
|
477
|
+
type?: string;
|
|
478
|
+
}
|
|
479
|
+
interface IPmdsCdkAutocompleteStates {
|
|
480
|
+
isError?: boolean;
|
|
481
|
+
isLoading?: boolean;
|
|
482
|
+
}
|
|
483
|
+
interface IPmdsCdkAutocompleteSuggestions {
|
|
484
|
+
search: string;
|
|
485
|
+
total?: number;
|
|
486
|
+
}
|
|
487
|
+
interface IPmdsCdkAutocompleteDynamicLabelComponentConfig {
|
|
488
|
+
component: Type<unknown>;
|
|
489
|
+
}
|
|
490
|
+
interface IPmdsCdkAutocompleteLabelConfigParam<T> {
|
|
491
|
+
data: Observable<T>;
|
|
492
|
+
}
|
|
493
|
+
declare const PMDS_CDK_AUTOCOMPLETE_DEFAULT_THROTTLE_TIME = 500;
|
|
494
|
+
declare const PMDS_CDK_AUTOCOMPLETE_DEFAULT_DEBOUNCE_TIME = 250;
|
|
495
|
+
|
|
496
|
+
interface IPmdsCdkFormErrorMessage<T> {
|
|
497
|
+
(name: string, error: string, value?: T, label?: string): string;
|
|
498
|
+
}
|
|
499
|
+
|
|
500
|
+
declare class PmdsCdkAutocompleteComponent implements OnInit, AfterViewInit, OnDestroy, ControlValueAccessor {
|
|
501
|
+
inputForm: ElementRef;
|
|
502
|
+
private _config;
|
|
503
|
+
get config(): IPmdsCdkAutocompleteConfig;
|
|
504
|
+
set config(value: IPmdsCdkAutocompleteConfig);
|
|
505
|
+
data: unknown[];
|
|
506
|
+
dataQA: string;
|
|
507
|
+
formControlName: string;
|
|
508
|
+
isDisabled: boolean;
|
|
509
|
+
label: unknown;
|
|
510
|
+
labelError: string;
|
|
511
|
+
labelErrorNotSelected: string;
|
|
512
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
513
|
+
paginationInfo: {
|
|
514
|
+
total: number;
|
|
515
|
+
actualPage: number;
|
|
516
|
+
itemsPage: number;
|
|
517
|
+
};
|
|
518
|
+
propValue: string;
|
|
519
|
+
states: IPmdsCdkAutocompleteStates;
|
|
520
|
+
skeleton: boolean;
|
|
521
|
+
suggestions: string;
|
|
522
|
+
byTyping: EventEmitter<IPmdsCdkAutocompleteSuggestions>;
|
|
523
|
+
keyEnter: EventEmitter<IPmdsCdkAutocompleteSuggestions>;
|
|
524
|
+
focusIn: EventEmitter<undefined>;
|
|
525
|
+
focusOut: EventEmitter<string>;
|
|
526
|
+
scrollEnd: EventEmitter<IPmdsCdkAutocompleteSuggestions>;
|
|
527
|
+
componentSelector: string;
|
|
528
|
+
control: AbstractControl;
|
|
529
|
+
focusin: boolean;
|
|
530
|
+
inputFocused: boolean;
|
|
531
|
+
omitFocusOut: boolean;
|
|
532
|
+
omitClose: boolean;
|
|
533
|
+
showError: boolean;
|
|
534
|
+
value: string;
|
|
535
|
+
lastValue: string;
|
|
536
|
+
valueSelected: any;
|
|
537
|
+
private controlContainer;
|
|
538
|
+
private debouncerKeyEnter$;
|
|
539
|
+
private debouncerScrollEnd$;
|
|
540
|
+
private debouncerTyping$;
|
|
541
|
+
private destroy$;
|
|
542
|
+
private renderer;
|
|
543
|
+
private unlistener;
|
|
544
|
+
onChange: (_: unknown) => void;
|
|
545
|
+
onTouched: () => undefined;
|
|
546
|
+
get formError(): boolean;
|
|
547
|
+
ngOnInit(): void;
|
|
548
|
+
ngOnDestroy(): void;
|
|
549
|
+
ngAfterViewInit(): void;
|
|
550
|
+
onInput(event?: Event): void;
|
|
551
|
+
onEnter(): void;
|
|
552
|
+
onSetInput(event: any): void;
|
|
553
|
+
onSelectRow(event: any): void;
|
|
554
|
+
updateClearButtonOnFocus(focusedOnInput: boolean): void;
|
|
555
|
+
compareStudentId(selectedId: any): void;
|
|
556
|
+
writeValue(value: string): void;
|
|
557
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
558
|
+
registerOnTouched(fn: () => undefined): void;
|
|
559
|
+
onFocusOut(): void;
|
|
560
|
+
onFocusIn(): void;
|
|
561
|
+
onScrollEnd(): void;
|
|
562
|
+
onClear(omitFocus?: boolean): void;
|
|
563
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkAutocompleteComponent, never>;
|
|
564
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkAutocompleteComponent, "pmds-cdk-autocomplete", never, { "config": { "alias": "config"; "required": false; }; "data": { "alias": "data"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "labelError": { "alias": "labelError"; "required": false; }; "labelErrorNotSelected": { "alias": "labelErrorNotSelected"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "paginationInfo": { "alias": "paginationInfo"; "required": false; }; "propValue": { "alias": "propValue"; "required": false; }; "states": { "alias": "states"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "suggestions": { "alias": "suggestions"; "required": false; }; }, { "byTyping": "byTyping"; "keyEnter": "keyEnter"; "focusIn": "focusIn"; "focusOut": "focusOut"; "scrollEnd": "scrollEnd"; }, never, never, true, never>;
|
|
565
|
+
}
|
|
566
|
+
|
|
567
|
+
type PmdsCdkButtonType = 'primary' | 'secondary' | 'tertiary';
|
|
568
|
+
type PmdsCdkButtonSize = 'small' | 'medium';
|
|
569
|
+
declare const PMDS_CDK_BUTTON_PRIMARY: {
|
|
570
|
+
HOVER: string;
|
|
571
|
+
ACTIVE: string;
|
|
572
|
+
DISABLED: string;
|
|
573
|
+
};
|
|
574
|
+
declare const PMDS_CDK_BUTTON_SECONDARY: {
|
|
575
|
+
HOVER: string;
|
|
576
|
+
ACTIVE: string;
|
|
577
|
+
DISABLED: string;
|
|
578
|
+
};
|
|
579
|
+
declare const PMDS_CDK_BUTTON_TERTIARY: {
|
|
580
|
+
HOVER: string;
|
|
581
|
+
ACTIVE: string;
|
|
582
|
+
DISABLED: string;
|
|
583
|
+
};
|
|
584
|
+
|
|
585
|
+
declare class PmdsCdkButtonComponent {
|
|
586
|
+
buttonSize: PmdsCdkButtonSize;
|
|
587
|
+
buttonSizeMobile: PmdsCdkButtonSize;
|
|
588
|
+
buttonType: PmdsCdkButtonType;
|
|
589
|
+
customIconStyle: string;
|
|
590
|
+
customStyle: string;
|
|
591
|
+
dataQA: string;
|
|
592
|
+
disabled: boolean;
|
|
593
|
+
fullWidth: boolean;
|
|
594
|
+
smallFit: boolean;
|
|
595
|
+
hideLabelMobile: boolean;
|
|
596
|
+
icon: string;
|
|
597
|
+
iconPosition: 'left' | 'right';
|
|
598
|
+
label: string;
|
|
599
|
+
type: 'button' | 'submit';
|
|
600
|
+
buttonClick: EventEmitter<Event>;
|
|
601
|
+
buttonTypes: Map<PmdsCdkButtonType, string>;
|
|
602
|
+
buttonSizes: Map<PmdsCdkButtonSize, string>;
|
|
603
|
+
buttonSizesMobile: Map<PmdsCdkButtonSize, string>;
|
|
604
|
+
componentSelector: string;
|
|
605
|
+
onButtonClick(event: Event): void;
|
|
606
|
+
getClass(): string;
|
|
607
|
+
getIconClass(): string;
|
|
608
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkButtonComponent, never>;
|
|
609
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkButtonComponent, "pmds-cdk-button", never, { "buttonSize": { "alias": "buttonSize"; "required": false; }; "buttonSizeMobile": { "alias": "buttonSizeMobile"; "required": false; }; "buttonType": { "alias": "buttonType"; "required": false; }; "customIconStyle": { "alias": "customIconStyle"; "required": false; }; "customStyle": { "alias": "customStyle"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "smallFit": { "alias": "smallFit"; "required": false; }; "hideLabelMobile": { "alias": "hideLabelMobile"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "label": { "alias": "label"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
610
|
+
}
|
|
611
|
+
|
|
612
|
+
declare class PmdsCdkCardsAccountActionComponent {
|
|
613
|
+
dataQA: string;
|
|
614
|
+
icon: string;
|
|
615
|
+
label: string;
|
|
616
|
+
skeleton: boolean;
|
|
617
|
+
clickCard: EventEmitter<void>;
|
|
618
|
+
componentSelector: string;
|
|
619
|
+
emitClickCard(): void;
|
|
620
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCardsAccountActionComponent, never>;
|
|
621
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCardsAccountActionComponent, "pmds-cdk-cards-account-action", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "label": { "alias": "label"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "clickCard": "clickCard"; }, never, never, true, never>;
|
|
622
|
+
}
|
|
623
|
+
|
|
624
|
+
declare class PmdsCdkCheckboxComponent implements OnInit, ControlValueAccessor {
|
|
625
|
+
formControlName: string;
|
|
626
|
+
isDisabled: boolean;
|
|
627
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
628
|
+
skeleton: boolean;
|
|
629
|
+
dataQA: string;
|
|
630
|
+
label: string;
|
|
631
|
+
valueChanges: EventEmitter<boolean>;
|
|
632
|
+
formControl: AbstractControl;
|
|
633
|
+
showError: boolean;
|
|
634
|
+
value: undefined | null | boolean;
|
|
635
|
+
componentSelector: string;
|
|
636
|
+
private formGroupDirective;
|
|
637
|
+
ngOnInit(): void;
|
|
638
|
+
onChange: (_: unknown) => void;
|
|
639
|
+
onTouch: () => undefined;
|
|
640
|
+
toggleValue(): void;
|
|
641
|
+
writeValue(value: boolean): void;
|
|
642
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
643
|
+
registerOnTouched(fn: () => undefined): void;
|
|
644
|
+
setDisabledState(isDisabled: boolean): void;
|
|
645
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCheckboxComponent, never>;
|
|
646
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCheckboxComponent, "pmds-cdk-checkbox", never, { "formControlName": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "valueChanges": "valueChanges"; }, never, never, true, never>;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
declare class PmdsCdkDividerComponent {
|
|
650
|
+
dataQA: string;
|
|
651
|
+
styles: string;
|
|
652
|
+
componentSelector: string;
|
|
653
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDividerComponent, never>;
|
|
654
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDividerComponent, "pmds-cdk-divider", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; }, {}, never, never, true, never>;
|
|
655
|
+
}
|
|
656
|
+
|
|
657
|
+
interface IPmdsCdkStoreIdApp {
|
|
658
|
+
id: string;
|
|
659
|
+
name: string;
|
|
660
|
+
imageBase64: string;
|
|
661
|
+
url: string;
|
|
662
|
+
width?: number;
|
|
663
|
+
height?: number;
|
|
664
|
+
}
|
|
665
|
+
|
|
666
|
+
declare class PmdsCdkDownloadIdAppButtonsComponent implements OnInit {
|
|
667
|
+
dataQA: string;
|
|
668
|
+
direction: 'row' | 'col';
|
|
669
|
+
height: number;
|
|
670
|
+
width: number;
|
|
671
|
+
componentSelector: string;
|
|
672
|
+
storeIdApps: IPmdsCdkStoreIdApp[];
|
|
673
|
+
private domSanitizer;
|
|
674
|
+
ngOnInit(): void;
|
|
675
|
+
sanitizedUrl(url: string): SafeUrl;
|
|
676
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDownloadIdAppButtonsComponent, never>;
|
|
677
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDownloadIdAppButtonsComponent, "pmds-cdk-download-id-app-buttons", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "direction": { "alias": "direction"; "required": false; }; "height": { "alias": "height"; "required": false; }; "width": { "alias": "width"; "required": false; }; }, {}, never, never, true, never>;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
type IPmdsCdkDatepickerLiterals = {
|
|
681
|
+
month: [
|
|
682
|
+
string,
|
|
683
|
+
string,
|
|
684
|
+
string,
|
|
685
|
+
string,
|
|
686
|
+
string,
|
|
687
|
+
string,
|
|
688
|
+
string,
|
|
689
|
+
string,
|
|
690
|
+
string,
|
|
691
|
+
string,
|
|
692
|
+
string,
|
|
693
|
+
string
|
|
694
|
+
];
|
|
695
|
+
weekDay: [string, string, string, string, string, string, string];
|
|
696
|
+
today: string;
|
|
697
|
+
formatHelp?: string;
|
|
698
|
+
};
|
|
699
|
+
|
|
700
|
+
type TPmdsCdkDatepickerDateFormat = 'DD/MM/YYYY' | 'MM/DD/YYYY' | 'YYYY/MM/DD' | 'DD-MM-YYYY' | 'MM-DD-YYYY' | 'YYYY-MM-DD' | 'DD MM YYYY' | 'MM DD YYYY' | 'YYYY MM DD';
|
|
701
|
+
|
|
702
|
+
interface IPmdsDropdownRangeSelect {
|
|
703
|
+
to: string | Date;
|
|
704
|
+
from: string | Date;
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
interface IPmdsCdkDropdownRangeLiterals {
|
|
708
|
+
apply: string;
|
|
709
|
+
clearAll: string;
|
|
710
|
+
to: string;
|
|
711
|
+
from: string;
|
|
712
|
+
datepickerLiterals?: IPmdsCdkDatepickerLiterals;
|
|
713
|
+
}
|
|
714
|
+
|
|
715
|
+
declare class PmdsCdkDropdownRangeComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
716
|
+
selectFilterView: ElementRef;
|
|
717
|
+
dataQA: string;
|
|
718
|
+
decimalCharacter: '.' | ',';
|
|
719
|
+
fromFormControlName: string;
|
|
720
|
+
isDisabled: boolean;
|
|
721
|
+
literals: IPmdsCdkDropdownRangeLiterals;
|
|
722
|
+
max: Date;
|
|
723
|
+
maxDecLength: number;
|
|
724
|
+
maxIntLength: number;
|
|
725
|
+
maxNumber: number;
|
|
726
|
+
min: Date;
|
|
727
|
+
minNumber: number;
|
|
728
|
+
mode: 'date' | 'number';
|
|
729
|
+
pattern: TPmdsCdkDatepickerDateFormat;
|
|
730
|
+
placeholder: string;
|
|
731
|
+
skeleton: boolean;
|
|
732
|
+
toFormControlName: string;
|
|
733
|
+
selectChange: EventEmitter<IPmdsDropdownRangeSelect>;
|
|
734
|
+
disabledApply: boolean;
|
|
735
|
+
componentSelector: string;
|
|
736
|
+
fromControl: FormControl | null;
|
|
737
|
+
omitEvent: boolean;
|
|
738
|
+
provisionalValue: IPmdsDropdownRangeSelect;
|
|
739
|
+
showOptions: boolean;
|
|
740
|
+
toControl: FormControl | null;
|
|
741
|
+
private formGroupDirective;
|
|
742
|
+
private renderer;
|
|
743
|
+
private destroy$;
|
|
744
|
+
private unlistener;
|
|
745
|
+
ngOnInit(): void;
|
|
746
|
+
ngOnDestroy(): void;
|
|
747
|
+
ngAfterViewInit(): void;
|
|
748
|
+
get datepickerLiterals(): IPmdsCdkDatepickerLiterals;
|
|
749
|
+
toggleShowOption(): void;
|
|
750
|
+
setSelection(): void;
|
|
751
|
+
clear(): void;
|
|
752
|
+
private checkDisableButton;
|
|
753
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDropdownRangeComponent, never>;
|
|
754
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDropdownRangeComponent, "pmds-cdk-dropdown-range", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "decimalCharacter": { "alias": "decimalCharacter"; "required": false; }; "fromFormControlName": { "alias": "fromFormControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxDecLength": { "alias": "maxDecLength"; "required": false; }; "maxIntLength": { "alias": "maxIntLength"; "required": false; }; "maxNumber": { "alias": "maxNumber"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minNumber": { "alias": "minNumber"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "pattern": { "alias": "pattern"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "toFormControlName": { "alias": "toFormControlName"; "required": false; }; }, { "selectChange": "selectChange"; }, never, never, true, never>;
|
|
755
|
+
}
|
|
756
|
+
|
|
757
|
+
interface IPmdsCdkFileDownloaderInfoLiterals {
|
|
758
|
+
download?: string;
|
|
759
|
+
failedTo?: string;
|
|
760
|
+
subTitle?: string;
|
|
761
|
+
processing?: string;
|
|
762
|
+
cancel?: string;
|
|
763
|
+
showErrors?: string;
|
|
764
|
+
}
|
|
765
|
+
|
|
766
|
+
interface IPmdsCdkFileDownloaderInfoFile {
|
|
767
|
+
createdAt: string;
|
|
768
|
+
fileName: string;
|
|
769
|
+
id: string;
|
|
770
|
+
status: TPmdsCdkFileDownloaderInfoStatus;
|
|
771
|
+
url?: string;
|
|
772
|
+
}
|
|
773
|
+
interface IPmdsCdkFileDownloaderInfoButtons {
|
|
774
|
+
label: string;
|
|
775
|
+
icon: string;
|
|
776
|
+
actionFn: (file?: any) => void;
|
|
777
|
+
}
|
|
778
|
+
type TPmdsCdkFileDownloaderInfoStatus = 'COMPLETED' | 'FAILURE' | 'PROCESSING' | 'PENDING' | 'WAITING_VIRTUAL_ACCOUNTS' | '';
|
|
779
|
+
|
|
780
|
+
declare class PmdsCdkFileDownloaderInfoComponent {
|
|
781
|
+
dataQA: string;
|
|
782
|
+
file: IPmdsCdkFileDownloaderInfoFile;
|
|
783
|
+
literals: IPmdsCdkFileDownloaderInfoLiterals;
|
|
784
|
+
buttons: IPmdsCdkFileDownloaderInfoButtons[];
|
|
785
|
+
errorIncluded: boolean;
|
|
786
|
+
skeleton: boolean;
|
|
787
|
+
cancelClick: EventEmitter<IPmdsCdkFileDownloaderInfoFile>;
|
|
788
|
+
errorsDisplayed: boolean;
|
|
789
|
+
componentSelector: string;
|
|
790
|
+
cancel(): void;
|
|
791
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkFileDownloaderInfoComponent, never>;
|
|
792
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkFileDownloaderInfoComponent, "pmds-cdk-file-downloader-info", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "file": { "alias": "file"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "buttons": { "alias": "buttons"; "required": false; }; "errorIncluded": { "alias": "errorIncluded"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "cancelClick": "cancelClick"; }, never, ["*"], true, never>;
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
declare class PmdsCdkFormErrorMessageComponent implements OnInit, OnDestroy, OnChanges {
|
|
796
|
+
control: FormControl | AbstractControl;
|
|
797
|
+
controlName: string;
|
|
798
|
+
label: string;
|
|
799
|
+
dataQA: string;
|
|
800
|
+
hideError: boolean;
|
|
801
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
802
|
+
errorLiterals$: BehaviorSubject<string[]>;
|
|
803
|
+
componentSelector: string;
|
|
804
|
+
private destroy$;
|
|
805
|
+
get formError(): boolean;
|
|
806
|
+
ngOnInit(): void;
|
|
807
|
+
ngOnDestroy(): void;
|
|
808
|
+
ngOnChanges(): void;
|
|
809
|
+
private evaluateErrors;
|
|
810
|
+
private lowerCaseFirstLetter;
|
|
811
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkFormErrorMessageComponent, never>;
|
|
812
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkFormErrorMessageComponent, "pmds-cdk-form-error-message", never, { "control": { "alias": "control"; "required": false; }; "controlName": { "alias": "controlName"; "required": false; }; "label": { "alias": "label"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "hideError": { "alias": "hideError"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; }, {}, never, never, true, never>;
|
|
813
|
+
}
|
|
814
|
+
|
|
815
|
+
interface IPmdsCdkOptionDropdown {
|
|
816
|
+
icon?: string;
|
|
817
|
+
label: string;
|
|
818
|
+
sublabel?: string;
|
|
819
|
+
sublabelIcon?: string;
|
|
820
|
+
flagCode?: string;
|
|
821
|
+
category?: string;
|
|
822
|
+
showCategory?: boolean;
|
|
823
|
+
value: string;
|
|
824
|
+
}
|
|
825
|
+
|
|
826
|
+
declare class PmdsCdkPageHeaderComponent implements OnInit, OnChanges {
|
|
827
|
+
back: string;
|
|
828
|
+
dataQA: string;
|
|
829
|
+
dropdownDefaultOption: IPmdsCdkOptionDropdown;
|
|
830
|
+
dropdownOptions: IPmdsCdkOptionDropdown[];
|
|
831
|
+
dropdownPlaceholder: string;
|
|
832
|
+
firstLevel: boolean;
|
|
833
|
+
iconSubtitle: string;
|
|
834
|
+
showBackButton: boolean;
|
|
835
|
+
showCloseButton: boolean;
|
|
836
|
+
showDivider: boolean;
|
|
837
|
+
skeleton: boolean;
|
|
838
|
+
subtitle: string;
|
|
839
|
+
title: string;
|
|
840
|
+
clickBackButton: EventEmitter<void>;
|
|
841
|
+
clickCloseButton: EventEmitter<void>;
|
|
842
|
+
selectOption: EventEmitter<string>;
|
|
843
|
+
componentSelector: string;
|
|
844
|
+
dropdownForm: FormGroup;
|
|
845
|
+
ngOnInit(): void;
|
|
846
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
847
|
+
setDropdownIfHasOnlyOneValue(): void;
|
|
848
|
+
setDropdownIfHasDefaultValue(): void;
|
|
849
|
+
emitBackButton(): void;
|
|
850
|
+
emitCloseButton(): void;
|
|
851
|
+
onSelectOption(selection: string[] | string): void;
|
|
852
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkPageHeaderComponent, never>;
|
|
853
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkPageHeaderComponent, "pmds-cdk-page-header", never, { "back": { "alias": "back"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "dropdownDefaultOption": { "alias": "dropdownDefaultOption"; "required": false; }; "dropdownOptions": { "alias": "dropdownOptions"; "required": false; }; "dropdownPlaceholder": { "alias": "dropdownPlaceholder"; "required": false; }; "firstLevel": { "alias": "firstLevel"; "required": false; }; "iconSubtitle": { "alias": "iconSubtitle"; "required": false; }; "showBackButton": { "alias": "showBackButton"; "required": false; }; "showCloseButton": { "alias": "showCloseButton"; "required": false; }; "showDivider": { "alias": "showDivider"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; }, { "clickBackButton": "clickBackButton"; "clickCloseButton": "clickCloseButton"; "selectOption": "selectOption"; }, never, ["*", "*"], true, never>;
|
|
854
|
+
}
|
|
855
|
+
|
|
856
|
+
declare class PmdsCdkLoaderComponent implements AfterViewInit {
|
|
857
|
+
bgClass?: string;
|
|
858
|
+
dataQA: string;
|
|
859
|
+
isPrimary: boolean;
|
|
860
|
+
isFullscreen: boolean;
|
|
861
|
+
subtitle?: string;
|
|
862
|
+
title?: string;
|
|
863
|
+
customStyles: string;
|
|
864
|
+
embedBody: boolean;
|
|
865
|
+
componentSelector: string;
|
|
866
|
+
private renderer;
|
|
867
|
+
private el;
|
|
868
|
+
ngAfterViewInit(): void;
|
|
869
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkLoaderComponent, never>;
|
|
870
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkLoaderComponent, "pmds-cdk-loader", never, { "bgClass": { "alias": "bgClass"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "isPrimary": { "alias": "isPrimary"; "required": false; }; "isFullscreen": { "alias": "isFullscreen"; "required": false; }; "subtitle": { "alias": "subtitle"; "required": false; }; "title": { "alias": "title"; "required": false; }; "customStyles": { "alias": "customStyles"; "required": false; }; "embedBody": { "alias": "embedBody"; "required": false; }; }, {}, never, never, true, never>;
|
|
871
|
+
}
|
|
872
|
+
|
|
873
|
+
interface IPmdsCdkModalData<T> {
|
|
874
|
+
body?: string;
|
|
875
|
+
data?: T;
|
|
876
|
+
title?: string;
|
|
877
|
+
}
|
|
878
|
+
interface IPmdsCdkModalConfig {
|
|
879
|
+
buttons?: IPmdsCdkModalButtons;
|
|
880
|
+
dataQA?: string;
|
|
881
|
+
disabledConfirmButton?: boolean;
|
|
882
|
+
hasBackdropClick?: boolean;
|
|
883
|
+
hiddenFooter?: boolean;
|
|
884
|
+
hideBackButton?: boolean;
|
|
885
|
+
isFullScreenMobile?: boolean;
|
|
886
|
+
isSidebar?: boolean;
|
|
887
|
+
modalSize?: TPmdsCdkModalSize;
|
|
888
|
+
sidebarButtons?: IPmdsCdkModalSidebarButtons[];
|
|
889
|
+
}
|
|
890
|
+
interface IPmdsCdkModalButtons {
|
|
891
|
+
closeLabel?: string;
|
|
892
|
+
confirmLabel?: string;
|
|
893
|
+
backLabel?: string;
|
|
894
|
+
}
|
|
895
|
+
interface IPmdsCdkModalSidebarButtons {
|
|
896
|
+
label: string;
|
|
897
|
+
icon: string;
|
|
898
|
+
actionFn: () => void;
|
|
899
|
+
}
|
|
900
|
+
type TPmdsCdkModalAction = 'confirm' | 'close' | 'cancel' | 'back';
|
|
901
|
+
type TPmdsCdkModalSize = 'small' | 'medium' | 'large';
|
|
902
|
+
declare const PMDS_CDK_MODAL_DATA_TOKEN: InjectionToken<IPmdsCdkModalData<unknown>>;
|
|
903
|
+
|
|
904
|
+
declare class PmdsCdkModalComponent implements OnInit {
|
|
905
|
+
hideBackButton: boolean;
|
|
906
|
+
loading: boolean;
|
|
907
|
+
componentSelector: string;
|
|
908
|
+
readonly config: IPmdsCdkModalConfig;
|
|
909
|
+
readonly data: IPmdsCdkModalData<unknown>;
|
|
910
|
+
private actualView;
|
|
911
|
+
private initialIsSidebar;
|
|
912
|
+
private overlayRef;
|
|
913
|
+
onResize(): void;
|
|
914
|
+
ngOnInit(): void;
|
|
915
|
+
action(action: TPmdsCdkModalAction, close?: boolean): void;
|
|
916
|
+
get title(): string;
|
|
917
|
+
get body(): string;
|
|
918
|
+
get modalSize(): TPmdsCdkModalSize;
|
|
919
|
+
get sidebarButtons(): IPmdsCdkModalSidebarButtons[] | undefined;
|
|
920
|
+
get buttonConfirmLabel(): string;
|
|
921
|
+
get buttonCloseLabel(): string;
|
|
922
|
+
get buttonBackLabel(): string;
|
|
923
|
+
get dataQA(): string;
|
|
924
|
+
get isSidebar(): boolean;
|
|
925
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkModalComponent, never>;
|
|
926
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkModalComponent, "pmds-cdk-modal", never, { "hideBackButton": { "alias": "hideBackButton"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; }, {}, never, ["[body]", "[footer]"], true, never>;
|
|
927
|
+
}
|
|
928
|
+
|
|
929
|
+
declare class PmdsCdkModalRef {
|
|
930
|
+
private readonly overlayRef;
|
|
931
|
+
events: Subject<{
|
|
932
|
+
action: TPmdsCdkModalAction;
|
|
933
|
+
data?: IPmdsCdkModalData<unknown>;
|
|
934
|
+
}>;
|
|
935
|
+
constructor(overlayRef: OverlayRef);
|
|
936
|
+
close(): void;
|
|
937
|
+
private removeScrollBlockClassList;
|
|
938
|
+
}
|
|
939
|
+
|
|
940
|
+
declare class PmdsCdkModalService {
|
|
941
|
+
dialogRef: PmdsCdkModalRef;
|
|
942
|
+
private injector;
|
|
943
|
+
private modalConfig;
|
|
944
|
+
private overlay;
|
|
945
|
+
private overlayContainer;
|
|
946
|
+
open<T>(component: ComponentType<T> | null, config?: IPmdsCdkModalConfig, data?: IPmdsCdkModalData<unknown>): PmdsCdkModalRef;
|
|
947
|
+
close(): void;
|
|
948
|
+
private attachModalContainer;
|
|
949
|
+
private createInjector;
|
|
950
|
+
private createOverlay;
|
|
951
|
+
private getOverlayConfig;
|
|
952
|
+
private setOverlayContainerClassList;
|
|
953
|
+
private setScrollBlockClassList;
|
|
954
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkModalService, never>;
|
|
955
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsCdkModalService>;
|
|
956
|
+
}
|
|
957
|
+
|
|
958
|
+
declare const PMDS_CDK_MODAL_DEFAULT_CONFIG: IPmdsCdkModalConfig;
|
|
959
|
+
declare const PMDS_CDK_MODAL_CONFIG_TOKEN: InjectionToken<IPmdsCdkModalConfig>;
|
|
960
|
+
|
|
961
|
+
interface IPmdsCdkOptionButtons {
|
|
962
|
+
id: string;
|
|
963
|
+
label?: string;
|
|
964
|
+
active?: boolean;
|
|
965
|
+
icon?: string;
|
|
966
|
+
}
|
|
967
|
+
|
|
968
|
+
declare class PmdsCdkOptionButtonsComponent implements OnInit {
|
|
969
|
+
likeDislike: boolean;
|
|
970
|
+
noSelectionByDefault: boolean;
|
|
971
|
+
dataQA: string;
|
|
972
|
+
labels: IPmdsCdkOptionButtons[];
|
|
973
|
+
selectedOption?: string | null;
|
|
974
|
+
size: 'small' | 'large';
|
|
975
|
+
skeleton: boolean;
|
|
976
|
+
optionSelected: EventEmitter<string>;
|
|
977
|
+
componentSelector: string;
|
|
978
|
+
options: IPmdsCdkOptionButtons[];
|
|
979
|
+
private likeDislikeOptions;
|
|
980
|
+
ngOnInit(): void;
|
|
981
|
+
onChange: (_: unknown) => void;
|
|
982
|
+
onTouch: () => void;
|
|
983
|
+
selectOption(optionId: string): void;
|
|
984
|
+
writeValue(value: string | number): void;
|
|
985
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
986
|
+
registerOnTouched(fn: () => unknown): void;
|
|
987
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkOptionButtonsComponent, never>;
|
|
988
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkOptionButtonsComponent, "pmds-cdk-option-buttons", never, { "likeDislike": { "alias": "likeDislike"; "required": false; }; "noSelectionByDefault": { "alias": "noSelectionByDefault"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "labels": { "alias": "labels"; "required": false; }; "selectedOption": { "alias": "selectedOption"; "required": false; }; "size": { "alias": "size"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "optionSelected": "optionSelected"; }, never, never, true, never>;
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
declare class PmdsCdkPageControllerComponent {
|
|
992
|
+
actualItem: number;
|
|
993
|
+
dataQA: string;
|
|
994
|
+
onlyDots: boolean;
|
|
995
|
+
skeleton: boolean;
|
|
996
|
+
totalItems: number;
|
|
997
|
+
changePage: EventEmitter<number>;
|
|
998
|
+
componentSelector: string;
|
|
999
|
+
changePageEmit(page: number): void;
|
|
1000
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkPageControllerComponent, never>;
|
|
1001
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkPageControllerComponent, "pmds-cdk-page-controller", never, { "actualItem": { "alias": "actualItem"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "onlyDots": { "alias": "onlyDots"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "totalItems": { "alias": "totalItems"; "required": false; }; }, { "changePage": "changePage"; }, never, never, true, never>;
|
|
1002
|
+
}
|
|
1003
|
+
|
|
1004
|
+
interface IPmdsCdkPaginatorLiterals {
|
|
1005
|
+
items: string;
|
|
1006
|
+
item: string;
|
|
1007
|
+
itemsDisplayed: string;
|
|
1008
|
+
jumpTo: string;
|
|
1009
|
+
labelOf: string;
|
|
1010
|
+
next: string;
|
|
1011
|
+
prev: string;
|
|
1012
|
+
to: string;
|
|
1013
|
+
}
|
|
1014
|
+
|
|
1015
|
+
interface IPmdsCdkPaginationInfo {
|
|
1016
|
+
actualPage: number;
|
|
1017
|
+
itemsPage: number;
|
|
1018
|
+
total: number;
|
|
1019
|
+
}
|
|
1020
|
+
|
|
1021
|
+
declare class PmdsCdkPaginatorComponent implements OnInit, OnChanges {
|
|
1022
|
+
dataQA: string;
|
|
1023
|
+
itemsPage: number[];
|
|
1024
|
+
literals: IPmdsCdkPaginatorLiterals | undefined;
|
|
1025
|
+
skeleton: boolean;
|
|
1026
|
+
forceTabletView: boolean;
|
|
1027
|
+
paginationInfo: IPmdsCdkPaginationInfo;
|
|
1028
|
+
changePage: EventEmitter<number>;
|
|
1029
|
+
itemChangedPerPage: EventEmitter<number>;
|
|
1030
|
+
componentSelector: string;
|
|
1031
|
+
arrayPages: number[];
|
|
1032
|
+
jumpToOpen: boolean;
|
|
1033
|
+
lastPage: number;
|
|
1034
|
+
numericalPage: number[];
|
|
1035
|
+
selectValue: number;
|
|
1036
|
+
ngOnInit(): void;
|
|
1037
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1038
|
+
calculateLastPage(): void;
|
|
1039
|
+
calculateNumericalPage(page: number): void;
|
|
1040
|
+
changeInitialNumberPage(): void;
|
|
1041
|
+
changePageEmit(page: number, next?: boolean): void;
|
|
1042
|
+
jumpToPage(value: number): void;
|
|
1043
|
+
changeItemPerPage(value: number): void;
|
|
1044
|
+
private checkLimitsPage;
|
|
1045
|
+
private recalculateInfo;
|
|
1046
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkPaginatorComponent, never>;
|
|
1047
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkPaginatorComponent, "pmds-cdk-paginator", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "itemsPage": { "alias": "itemsPage"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "forceTabletView": { "alias": "forceTabletView"; "required": false; }; "paginationInfo": { "alias": "paginationInfo"; "required": false; }; }, { "changePage": "changePage"; "itemChangedPerPage": "itemChangedPerPage"; }, never, never, true, never>;
|
|
1048
|
+
}
|
|
1049
|
+
|
|
1050
|
+
declare class PmdsCdkSelectPaginatorComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
1051
|
+
dataQA: string;
|
|
1052
|
+
initialValue: number;
|
|
1053
|
+
options: number[];
|
|
1054
|
+
selectedItem: number;
|
|
1055
|
+
search: boolean;
|
|
1056
|
+
valueClick: EventEmitter<number>;
|
|
1057
|
+
componentSelector: string;
|
|
1058
|
+
displayValues: boolean;
|
|
1059
|
+
omitEvent: boolean;
|
|
1060
|
+
filterValues: number[];
|
|
1061
|
+
private renderer;
|
|
1062
|
+
private unlistener;
|
|
1063
|
+
ngOnInit(): void;
|
|
1064
|
+
ngAfterViewInit(): void;
|
|
1065
|
+
ngOnDestroy(): void;
|
|
1066
|
+
onValueClick(page: number): void;
|
|
1067
|
+
valueFilter(ev: Event): void;
|
|
1068
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkSelectPaginatorComponent, never>;
|
|
1069
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkSelectPaginatorComponent, "pmds-cdk-select-paginator", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "initialValue": { "alias": "initialValue"; "required": false; }; "options": { "alias": "options"; "required": false; }; "selectedItem": { "alias": "selectedItem"; "required": false; }; "search": { "alias": "search"; "required": false; }; }, { "valueClick": "valueClick"; }, never, never, true, never>;
|
|
1070
|
+
}
|
|
1071
|
+
|
|
1072
|
+
interface IPmdsCdkProcessHeaderLiterals {
|
|
1073
|
+
title: string;
|
|
1074
|
+
stepTitle: string;
|
|
1075
|
+
stepSubtitle?: string;
|
|
1076
|
+
stepIndex?: number;
|
|
1077
|
+
}
|
|
1078
|
+
|
|
1079
|
+
interface IPmdsCdkProcessHeaderActions {
|
|
1080
|
+
actionFn: () => void;
|
|
1081
|
+
actionIcon: string;
|
|
1082
|
+
actionLabel: string;
|
|
1083
|
+
}
|
|
1084
|
+
|
|
1085
|
+
type TPmdsCdkProcessHeaderMaxDesktopWidth = 'max-w-[808px]' | 'max-w-[704px]' | 'max-w-[1016px]';
|
|
1086
|
+
|
|
1087
|
+
declare class PmdsCdkProcessHeaderComponent {
|
|
1088
|
+
literals: IPmdsCdkProcessHeaderLiterals;
|
|
1089
|
+
dataQA: string;
|
|
1090
|
+
titleImg: string | null;
|
|
1091
|
+
progress: number;
|
|
1092
|
+
subtitleStyles: string;
|
|
1093
|
+
centerSubtitle: boolean;
|
|
1094
|
+
maxDesktopWidth: TPmdsCdkProcessHeaderMaxDesktopWidth;
|
|
1095
|
+
actions: IPmdsCdkProcessHeaderActions[];
|
|
1096
|
+
backButton: IPmdsCdkProcessHeaderActions;
|
|
1097
|
+
componentSelector: string;
|
|
1098
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkProcessHeaderComponent, never>;
|
|
1099
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkProcessHeaderComponent, "pmds-cdk-process-header", never, { "literals": { "alias": "literals"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "titleImg": { "alias": "titleImg"; "required": false; }; "progress": { "alias": "progress"; "required": false; }; "subtitleStyles": { "alias": "subtitleStyles"; "required": false; }; "centerSubtitle": { "alias": "centerSubtitle"; "required": false; }; "maxDesktopWidth": { "alias": "maxDesktopWidth"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "backButton": { "alias": "backButton"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1100
|
+
}
|
|
1101
|
+
|
|
1102
|
+
type TPmdsCdkToastAnimationState = 'default' | 'closing';
|
|
1103
|
+
|
|
1104
|
+
interface IPmdsCdkToastConfig {
|
|
1105
|
+
animation?: {
|
|
1106
|
+
fadeOut: number;
|
|
1107
|
+
fadeIn: number;
|
|
1108
|
+
};
|
|
1109
|
+
dataQA?: string;
|
|
1110
|
+
floating?: boolean;
|
|
1111
|
+
panelClass?: string | string[];
|
|
1112
|
+
position?: {
|
|
1113
|
+
top: number;
|
|
1114
|
+
};
|
|
1115
|
+
timeInterval?: number;
|
|
1116
|
+
}
|
|
1117
|
+
|
|
1118
|
+
declare class PmdsCdkToastRef {
|
|
1119
|
+
private overlay;
|
|
1120
|
+
constructor(overlay: OverlayRef);
|
|
1121
|
+
close(): void;
|
|
1122
|
+
isVisible(): HTMLElement;
|
|
1123
|
+
getPosition(): DOMRect;
|
|
1124
|
+
}
|
|
1125
|
+
|
|
1126
|
+
declare class PmdsCdkToastComponent implements OnInit, OnDestroy {
|
|
1127
|
+
actionFnData: () => void;
|
|
1128
|
+
animationState: TPmdsCdkToastAnimationState;
|
|
1129
|
+
componentSelector: string;
|
|
1130
|
+
dataQA: string;
|
|
1131
|
+
readonly config: pm_fuel.IPmdsCdkToastConfig;
|
|
1132
|
+
readonly data: IPmdsCdkAlertData;
|
|
1133
|
+
readonly ref: PmdsCdkToastRef;
|
|
1134
|
+
private intervalId;
|
|
1135
|
+
ngOnInit(): void;
|
|
1136
|
+
ngOnDestroy(): void;
|
|
1137
|
+
close(): void;
|
|
1138
|
+
action(): void;
|
|
1139
|
+
onFadeFinished(event: AnimationEvent): void;
|
|
1140
|
+
private autoCloseActionFn;
|
|
1141
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkToastComponent, never>;
|
|
1142
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkToastComponent, "pmds-cdk-toast", never, {}, {}, never, never, true, never>;
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
declare const PMDS_CDK_TOAST_ANIMATIONS: {
|
|
1146
|
+
readonly fadeToast: AnimationTriggerMetadata;
|
|
1147
|
+
};
|
|
1148
|
+
|
|
1149
|
+
declare const PMDS_CDK_TOAST_DEFAULT_CONFIG: IPmdsCdkToastConfig;
|
|
1150
|
+
declare const PMDS_CDK_TOAST_CONFIG_TOKEN: InjectionToken<IPmdsCdkToastConfig>;
|
|
1151
|
+
|
|
1152
|
+
declare class PmdsCdkToastService {
|
|
1153
|
+
lastToast: PmdsCdkToastRef;
|
|
1154
|
+
toastRefs: PmdsCdkToastRef[];
|
|
1155
|
+
private readonly injector;
|
|
1156
|
+
private readonly overlay;
|
|
1157
|
+
private readonly overlayContainer;
|
|
1158
|
+
private readonly toastConfig;
|
|
1159
|
+
show(data: IPmdsCdkAlertData, config?: IPmdsCdkToastConfig): PmdsCdkToastRef;
|
|
1160
|
+
closeAll(): void;
|
|
1161
|
+
private getPositionStrategy;
|
|
1162
|
+
private getInjector;
|
|
1163
|
+
private getToastConfig;
|
|
1164
|
+
private setOverlayContainerClassList;
|
|
1165
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkToastService, never>;
|
|
1166
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsCdkToastService>;
|
|
1167
|
+
}
|
|
1168
|
+
|
|
1169
|
+
interface IPmdsCdkDynamicRowComponentConfig {
|
|
1170
|
+
component: Type<any>;
|
|
1171
|
+
cardComponent: Type<any>;
|
|
1172
|
+
styles?: string;
|
|
1173
|
+
selectRowAction?: (row: Type<any>) => void;
|
|
1174
|
+
selectCardAction?: (card: Type<any>) => void;
|
|
1175
|
+
stylesCard?: string;
|
|
1176
|
+
selectedRows?: (rows: Type<any>) => void;
|
|
1177
|
+
}
|
|
1178
|
+
|
|
1179
|
+
interface IPmdsCdkHeaderConfig {
|
|
1180
|
+
label: string;
|
|
1181
|
+
styles?: string;
|
|
1182
|
+
order?: 'ASC' | 'DES' | undefined;
|
|
1183
|
+
action?: () => void;
|
|
1184
|
+
tooltip?: string;
|
|
1185
|
+
tooltipTitle?: string;
|
|
1186
|
+
tooltipPosition?: 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
1187
|
+
}
|
|
1188
|
+
|
|
1189
|
+
interface IPmdsCdkTableConfig {
|
|
1190
|
+
headerColumns: IPmdsCdkHeaderConfig[];
|
|
1191
|
+
rowComponent: IPmdsCdkDynamicRowComponentConfig;
|
|
1192
|
+
fixedColumns?: 'first' | 'first-second';
|
|
1193
|
+
emptyStateLiterals?: {
|
|
1194
|
+
contentWithFilters: string;
|
|
1195
|
+
contentWithoutFilters: string;
|
|
1196
|
+
title: string;
|
|
1197
|
+
buttonText: string;
|
|
1198
|
+
icon?: string;
|
|
1199
|
+
};
|
|
1200
|
+
}
|
|
1201
|
+
interface IPmdsCdkTablePaginationInfo {
|
|
1202
|
+
actualPage: number;
|
|
1203
|
+
itemsPage: number;
|
|
1204
|
+
total: number;
|
|
1205
|
+
}
|
|
1206
|
+
interface IPmdsCdkTableEmptyStateData {
|
|
1207
|
+
content: string;
|
|
1208
|
+
title: string;
|
|
1209
|
+
buttonText: string;
|
|
1210
|
+
icon: string;
|
|
1211
|
+
}
|
|
1212
|
+
|
|
1213
|
+
declare class PmdsCdkTableComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges {
|
|
1214
|
+
infinityScroll: ElementRef;
|
|
1215
|
+
content: ElementRef<HTMLElement> | null;
|
|
1216
|
+
tableContainer: ElementRef<HTMLElement> | null;
|
|
1217
|
+
dataQA: string;
|
|
1218
|
+
showOnlyHeader: boolean;
|
|
1219
|
+
itemsPerPage: number;
|
|
1220
|
+
paginationInfo: IPmdsCdkTablePaginationInfo;
|
|
1221
|
+
showSelectRow: boolean;
|
|
1222
|
+
tableConfig: IPmdsCdkTableConfig;
|
|
1223
|
+
tableData: any[];
|
|
1224
|
+
filteredFields: string[];
|
|
1225
|
+
showBottomBorder: boolean;
|
|
1226
|
+
scrollEnd: EventEmitter<void>;
|
|
1227
|
+
changeView: EventEmitter<'card' | 'table'>;
|
|
1228
|
+
clearFilters: EventEmitter<void>;
|
|
1229
|
+
componentSelector: string;
|
|
1230
|
+
form: FormGroup | undefined;
|
|
1231
|
+
headerColumnsConfig: IPmdsCdkHeaderConfig[];
|
|
1232
|
+
infinityScrollLoading: boolean;
|
|
1233
|
+
headerHoverIndex: number | undefined;
|
|
1234
|
+
noMoreData: boolean;
|
|
1235
|
+
dataCurrentPage: any[];
|
|
1236
|
+
rowComponentConfig: IPmdsCdkDynamicRowComponentConfig;
|
|
1237
|
+
vcRef: ViewContainerRef;
|
|
1238
|
+
render: Renderer2;
|
|
1239
|
+
zone: NgZone;
|
|
1240
|
+
actualView: 'card' | 'table';
|
|
1241
|
+
private destroy$;
|
|
1242
|
+
onResize(): void;
|
|
1243
|
+
ngOnInit(): void;
|
|
1244
|
+
ngOnDestroy(): void;
|
|
1245
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1246
|
+
ngAfterViewInit(): void;
|
|
1247
|
+
renderContents(isIntersecting: boolean): void;
|
|
1248
|
+
onHeadClicked(action: (() => void) | undefined, index: number): void;
|
|
1249
|
+
onClicked(item: any): void;
|
|
1250
|
+
onCardClicked(item: Type<unknown>): void;
|
|
1251
|
+
getSelectedRows(): void;
|
|
1252
|
+
ngContentIsEmpty(): boolean;
|
|
1253
|
+
onHeaderMouseEnter(index: number): void;
|
|
1254
|
+
onHeaderMouseOut(): void;
|
|
1255
|
+
private updateStyles;
|
|
1256
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTableComponent, never>;
|
|
1257
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTableComponent, "pmds-cdk-table", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "showOnlyHeader": { "alias": "showOnlyHeader"; "required": false; }; "itemsPerPage": { "alias": "itemsPerPage"; "required": false; }; "paginationInfo": { "alias": "paginationInfo"; "required": false; }; "showSelectRow": { "alias": "showSelectRow"; "required": false; }; "tableConfig": { "alias": "tableConfig"; "required": false; }; "tableData": { "alias": "tableData"; "required": false; }; "filteredFields": { "alias": "filteredFields"; "required": false; }; "showBottomBorder": { "alias": "showBottomBorder"; "required": false; }; }, { "scrollEnd": "scrollEnd"; "changeView": "changeView"; "clearFilters": "clearFilters"; }, never, ["*"], true, never>;
|
|
1258
|
+
}
|
|
1259
|
+
|
|
1260
|
+
declare class PmdsCdkDynamicCardComponent implements OnInit {
|
|
1261
|
+
cardTemplate: ViewContainerRef;
|
|
1262
|
+
data: any[];
|
|
1263
|
+
dynamicCardComponent: Type<any>;
|
|
1264
|
+
rowIndex: number;
|
|
1265
|
+
stylesConfig?: string;
|
|
1266
|
+
ngOnInit(): void;
|
|
1267
|
+
loadComponent(): void;
|
|
1268
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDynamicCardComponent, never>;
|
|
1269
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDynamicCardComponent, "pmds-cdk-dynamic-card", never, { "data": { "alias": "data"; "required": false; }; "dynamicCardComponent": { "alias": "dynamicCardComponent"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "stylesConfig": { "alias": "stylesConfig"; "required": false; }; }, {}, never, never, true, never>;
|
|
1270
|
+
}
|
|
1271
|
+
|
|
1272
|
+
declare class PmdsCdkDynamicRowComponent implements OnInit, OnChanges {
|
|
1273
|
+
rowTemplate: ViewContainerRef;
|
|
1274
|
+
data: any;
|
|
1275
|
+
dynamicRowComponent: Type<any>;
|
|
1276
|
+
rowIndex: number;
|
|
1277
|
+
rowSelected: boolean;
|
|
1278
|
+
showSelectRow?: boolean;
|
|
1279
|
+
stylesConfig?: string;
|
|
1280
|
+
selectRow: EventEmitter<unknown>;
|
|
1281
|
+
form: any;
|
|
1282
|
+
ngOnInit(): void;
|
|
1283
|
+
ngOnChanges(): void;
|
|
1284
|
+
loadComponent(): void;
|
|
1285
|
+
loadForm(): void;
|
|
1286
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDynamicRowComponent, never>;
|
|
1287
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDynamicRowComponent, "[pmds-cdk-dynamic-row]", never, { "data": { "alias": "data"; "required": false; }; "dynamicRowComponent": { "alias": "dynamicRowComponent"; "required": false; }; "rowIndex": { "alias": "rowIndex"; "required": false; }; "rowSelected": { "alias": "rowSelected"; "required": false; }; "showSelectRow": { "alias": "showSelectRow"; "required": false; }; "stylesConfig": { "alias": "stylesConfig"; "required": false; }; }, { "selectRow": "selectRow"; }, never, never, true, never>;
|
|
1288
|
+
}
|
|
1289
|
+
|
|
1290
|
+
interface IPmdsCdkRowConfigParam<T> {
|
|
1291
|
+
data: T;
|
|
1292
|
+
rowIndex: number;
|
|
1293
|
+
stylesConfig?: string;
|
|
1294
|
+
}
|
|
1295
|
+
|
|
1296
|
+
declare enum EPmdsCdkTableRowTypeStyle {
|
|
1297
|
+
tableStyle = "contents [&>td]:align-middle [&>td]:h-[64px] first:[&>td]:pl-4 last:[&>td]:pr-4 last:[&>td]:text-right",
|
|
1298
|
+
tableStyleCheckbox = "contents [&>td]:align-middle [&>td]:h-[64px] last:[&>td]:pr-4 last:[&>td]:text-right"
|
|
1299
|
+
}
|
|
1300
|
+
|
|
1301
|
+
interface IPmdsCdkTableHeaderInfo {
|
|
1302
|
+
literals: {
|
|
1303
|
+
displaying: string;
|
|
1304
|
+
items: string;
|
|
1305
|
+
item: string;
|
|
1306
|
+
searchedBy: string;
|
|
1307
|
+
};
|
|
1308
|
+
actions?: {
|
|
1309
|
+
actionIcon: string;
|
|
1310
|
+
actionLabel: string;
|
|
1311
|
+
actionFn: () => void;
|
|
1312
|
+
}[];
|
|
1313
|
+
}
|
|
1314
|
+
|
|
1315
|
+
interface IPmdsCdkRadioButtons {
|
|
1316
|
+
label: string;
|
|
1317
|
+
value: string | number;
|
|
1318
|
+
checked?: boolean;
|
|
1319
|
+
}
|
|
1320
|
+
|
|
1321
|
+
declare class PmdsCdkRadioButtonsComponent implements OnInit {
|
|
1322
|
+
dataQA: string;
|
|
1323
|
+
forceVertical: boolean;
|
|
1324
|
+
formControlName: string;
|
|
1325
|
+
groupLabel: string;
|
|
1326
|
+
hideLabel: boolean;
|
|
1327
|
+
isDisabled: boolean;
|
|
1328
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
1329
|
+
optional: boolean;
|
|
1330
|
+
options: IPmdsCdkRadioButtons[];
|
|
1331
|
+
skeleton: boolean;
|
|
1332
|
+
checkOption: EventEmitter<string | number>;
|
|
1333
|
+
formControl: AbstractControl;
|
|
1334
|
+
showError: boolean;
|
|
1335
|
+
componentSelector: string;
|
|
1336
|
+
private formGroupDirective;
|
|
1337
|
+
private destroy$;
|
|
1338
|
+
onChange: (_: unknown) => void;
|
|
1339
|
+
onTouch: () => void;
|
|
1340
|
+
ngOnInit(): void;
|
|
1341
|
+
onChecked(value: string | number, index: number): void;
|
|
1342
|
+
writeValue(value: string | number): void;
|
|
1343
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
1344
|
+
registerOnTouched(fn: () => unknown): void;
|
|
1345
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1346
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkRadioButtonsComponent, never>;
|
|
1347
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkRadioButtonsComponent, "pmds-cdk-radio-buttons", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "forceVertical": { "alias": "forceVertical"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "groupLabel": { "alias": "groupLabel"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "optional": { "alias": "optional"; "required": false; }; "options": { "alias": "options"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "checkOption": "checkOption"; }, never, never, true, never>;
|
|
1348
|
+
}
|
|
1349
|
+
|
|
1350
|
+
interface IPmdsCdkTabsConfig {
|
|
1351
|
+
isDisabled?: boolean;
|
|
1352
|
+
skipLocationChange?: boolean;
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
declare class PmdsCdkTabComponent {
|
|
1356
|
+
tabContent: TemplateRef<unknown>;
|
|
1357
|
+
componentPath: string;
|
|
1358
|
+
isActive: boolean;
|
|
1359
|
+
isDisabled: boolean;
|
|
1360
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTabComponent, never>;
|
|
1361
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTabComponent, "pmds-cdk-tab", never, { "componentPath": { "alias": "componentPath"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1362
|
+
}
|
|
1363
|
+
|
|
1364
|
+
declare class PmdsCdkTabsComponent implements AfterContentInit, AfterContentChecked {
|
|
1365
|
+
tabs: QueryList<PmdsCdkTabComponent>;
|
|
1366
|
+
componentPathSelected: string;
|
|
1367
|
+
config: IPmdsCdkTabsConfig;
|
|
1368
|
+
dataQA: string;
|
|
1369
|
+
skeleton: boolean;
|
|
1370
|
+
activeTab: PmdsCdkTabComponent;
|
|
1371
|
+
componentSelector: string;
|
|
1372
|
+
tabs$: Observable<PmdsCdkTabComponent[]>;
|
|
1373
|
+
private readonly activatedRoute;
|
|
1374
|
+
private readonly router;
|
|
1375
|
+
ngAfterContentInit(): void;
|
|
1376
|
+
ngAfterContentChecked(): void;
|
|
1377
|
+
selectTab(tab: PmdsCdkTabComponent): void;
|
|
1378
|
+
private navigateTab;
|
|
1379
|
+
private setActiveTab;
|
|
1380
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTabsComponent, never>;
|
|
1381
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTabsComponent, "pmds-cdk-tabs", never, { "componentPathSelected": { "alias": "componentPathSelected"; "required": false; }; "config": { "alias": "config"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, ["tabs"], never, true, never>;
|
|
1382
|
+
}
|
|
1383
|
+
|
|
1384
|
+
interface IPmdsCdkTextInputTagCategoryData {
|
|
1385
|
+
assetsFolder?: string;
|
|
1386
|
+
flagCode?: string;
|
|
1387
|
+
label?: string;
|
|
1388
|
+
showIcon?: boolean;
|
|
1389
|
+
tooltip?: string;
|
|
1390
|
+
tooltipPosition?: TPmdsDirectiveTooltipPosition;
|
|
1391
|
+
}
|
|
1392
|
+
|
|
1393
|
+
type IPmdsCdkTextInputType = 'text' | 'password' | 'number';
|
|
1394
|
+
|
|
1395
|
+
type IPmdsCdkTextInputMode = 'text' | 'decimal' | 'numeric' | 'tel' | 'search' | 'email' | 'url';
|
|
1396
|
+
|
|
1397
|
+
declare class PmdsCdkTextInputComponent implements OnInit, OnDestroy, ControlValueAccessor {
|
|
1398
|
+
input: ElementRef;
|
|
1399
|
+
charactersLeftText: string;
|
|
1400
|
+
dataQA: string;
|
|
1401
|
+
decimalCharacter: '.' | ',';
|
|
1402
|
+
formControlName: string;
|
|
1403
|
+
helperText: string | undefined;
|
|
1404
|
+
icon: string;
|
|
1405
|
+
iconPosition: 'left' | 'right';
|
|
1406
|
+
isDisabled: boolean;
|
|
1407
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
1408
|
+
max: number;
|
|
1409
|
+
maxDecLength: number;
|
|
1410
|
+
maxIntLength: number;
|
|
1411
|
+
maxlength: number;
|
|
1412
|
+
min: number;
|
|
1413
|
+
minlength: number;
|
|
1414
|
+
placeholder: string;
|
|
1415
|
+
showClear: boolean;
|
|
1416
|
+
styles: string;
|
|
1417
|
+
skeleton: boolean;
|
|
1418
|
+
suffix: string;
|
|
1419
|
+
tagCategoryData: IPmdsCdkTextInputTagCategoryData;
|
|
1420
|
+
tooltip: string;
|
|
1421
|
+
tooltipTitle: string;
|
|
1422
|
+
type: IPmdsCdkTextInputType;
|
|
1423
|
+
inputmode: IPmdsCdkTextInputMode;
|
|
1424
|
+
inputChange: EventEmitter<string>;
|
|
1425
|
+
inputFocus: EventEmitter<void>;
|
|
1426
|
+
inputFocusOut: EventEmitter<void>;
|
|
1427
|
+
componentSelector: string;
|
|
1428
|
+
formControl: AbstractControl;
|
|
1429
|
+
inputFocused: boolean;
|
|
1430
|
+
omitClearClick: boolean;
|
|
1431
|
+
showError: boolean;
|
|
1432
|
+
showValueFormatted: boolean;
|
|
1433
|
+
value: string;
|
|
1434
|
+
valueFormatted: string;
|
|
1435
|
+
get inputNgClass(): {
|
|
1436
|
+
'border-color-border-default text-color-text-primary focus:border-color-border-focus': boolean;
|
|
1437
|
+
'border-color-border-error text-color-text-primary focus:border-color-border-error': boolean;
|
|
1438
|
+
'!border-color-border-disabled !text-color-text-disabled !bg-color-surface-disabled pointer-event pointer-events-none': boolean;
|
|
1439
|
+
'text-transparent': boolean;
|
|
1440
|
+
'pr-10': boolean;
|
|
1441
|
+
'pr-4': boolean;
|
|
1442
|
+
'!pl-12': boolean | "";
|
|
1443
|
+
'!pr-[6.25rem]': boolean | "";
|
|
1444
|
+
'!pr-[4.75rem]': boolean | "";
|
|
1445
|
+
'!pr-[5rem]': boolean;
|
|
1446
|
+
'!pr-[5.25rem]': boolean | "";
|
|
1447
|
+
'!pr-14': boolean | "";
|
|
1448
|
+
'!pr-20': boolean | "";
|
|
1449
|
+
'!pr-[3.25rem]': boolean | "";
|
|
1450
|
+
'!pr-28': string | false;
|
|
1451
|
+
'pt-7': string | boolean;
|
|
1452
|
+
};
|
|
1453
|
+
get placeholderNgClass(): {
|
|
1454
|
+
'text-color-text-tertiary': boolean;
|
|
1455
|
+
'text-color-text-disabled pointer-event pointer-events-none': boolean;
|
|
1456
|
+
'left-3': boolean;
|
|
1457
|
+
'left-0': string | false;
|
|
1458
|
+
'pr-10': boolean;
|
|
1459
|
+
'pr-6': boolean;
|
|
1460
|
+
'!pl-12': boolean | "";
|
|
1461
|
+
'!pr-[6.25rem]': boolean | "";
|
|
1462
|
+
'!pr-[5rem]': boolean | "";
|
|
1463
|
+
'!pr-[5.50rem]': boolean;
|
|
1464
|
+
'!pr-[5.5rem]': boolean | "";
|
|
1465
|
+
'!pr-[4.5rem]': boolean | "";
|
|
1466
|
+
'!pr-20': boolean | "";
|
|
1467
|
+
'!pr-[3.50rem]': boolean | "";
|
|
1468
|
+
'!pr-28': string | false;
|
|
1469
|
+
};
|
|
1470
|
+
get clearButtonNgClass(): {
|
|
1471
|
+
'right-[4rem]': string | false;
|
|
1472
|
+
'!right-20': IPmdsCdkTextInputTagCategoryData;
|
|
1473
|
+
'!right-16': string;
|
|
1474
|
+
'right-5': boolean;
|
|
1475
|
+
'right-[3.5rem]': boolean | "";
|
|
1476
|
+
'right-28': string | false;
|
|
1477
|
+
'right-1': boolean | "";
|
|
1478
|
+
'transition-all opacity-100': boolean | "";
|
|
1479
|
+
'opacity-0': boolean;
|
|
1480
|
+
'cursor-text': boolean;
|
|
1481
|
+
};
|
|
1482
|
+
get iconNgClass(): {
|
|
1483
|
+
'pointer-events-none': boolean;
|
|
1484
|
+
'right-[4.75rem]': boolean;
|
|
1485
|
+
'right-5': boolean;
|
|
1486
|
+
'left-3': boolean;
|
|
1487
|
+
};
|
|
1488
|
+
private formGroupDirective;
|
|
1489
|
+
private destroy$;
|
|
1490
|
+
ngOnInit(): void;
|
|
1491
|
+
ngOnDestroy(): void;
|
|
1492
|
+
onChange(_: unknown): void;
|
|
1493
|
+
onTouch(): void;
|
|
1494
|
+
onFocusOut(): void;
|
|
1495
|
+
onFocus(): void;
|
|
1496
|
+
updateClearButtonOnFocus(focusedOnInput: boolean): void;
|
|
1497
|
+
checkOmitClick(event: Event): void;
|
|
1498
|
+
clearClick(): void;
|
|
1499
|
+
onInput(event?: Event): void;
|
|
1500
|
+
writeValue(value: string): void;
|
|
1501
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1502
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
1503
|
+
registerOnTouched(fn: () => unknown): void;
|
|
1504
|
+
maskInput(event: KeyboardEvent): void;
|
|
1505
|
+
private showFormatValue;
|
|
1506
|
+
private setValueFormatted;
|
|
1507
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTextInputComponent, never>;
|
|
1508
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTextInputComponent, "pmds-cdk-text-input", never, { "charactersLeftText": { "alias": "charactersLeftText"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "decimalCharacter": { "alias": "decimalCharacter"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "max": { "alias": "max"; "required": false; }; "maxDecLength": { "alias": "maxDecLength"; "required": false; }; "maxIntLength": { "alias": "maxIntLength"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "min": { "alias": "min"; "required": false; }; "minlength": { "alias": "minlength"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "styles": { "alias": "styles"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "suffix": { "alias": "suffix"; "required": false; }; "tagCategoryData": { "alias": "tagCategoryData"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipTitle": { "alias": "tooltipTitle"; "required": false; }; "type": { "alias": "type"; "required": false; }; "inputmode": { "alias": "inputmode"; "required": false; }; }, { "inputChange": "inputChange"; "inputFocus": "inputFocus"; "inputFocusOut": "inputFocusOut"; }, never, never, true, never>;
|
|
1509
|
+
}
|
|
1510
|
+
|
|
1511
|
+
interface IPmdsCdkOptionDropdownLiterals {
|
|
1512
|
+
accept?: string;
|
|
1513
|
+
filterBy?: string;
|
|
1514
|
+
cancel?: string;
|
|
1515
|
+
clear?: string;
|
|
1516
|
+
searchPlaceholder?: string;
|
|
1517
|
+
all?: string;
|
|
1518
|
+
showCategory?: string;
|
|
1519
|
+
category?: string;
|
|
1520
|
+
}
|
|
1521
|
+
|
|
1522
|
+
declare class PmdsCdkDropdownComponent implements OnInit, OnDestroy, AfterViewInit, ControlValueAccessor, OnChanges {
|
|
1523
|
+
selectFilterView: ElementRef;
|
|
1524
|
+
dropdownOptions: ElementRef;
|
|
1525
|
+
inputSearchElement: ElementRef;
|
|
1526
|
+
optionsElement: ElementRef;
|
|
1527
|
+
inputSearch: ElementRef;
|
|
1528
|
+
container: ElementRef;
|
|
1529
|
+
assetsFolder: string;
|
|
1530
|
+
categoryOrder: string[];
|
|
1531
|
+
dataQA: string;
|
|
1532
|
+
disabledShowToTop: boolean;
|
|
1533
|
+
enableSearch: boolean;
|
|
1534
|
+
formControlName: string;
|
|
1535
|
+
isDisabled: boolean;
|
|
1536
|
+
isFilter: boolean;
|
|
1537
|
+
isTitle: boolean;
|
|
1538
|
+
keepValue: boolean;
|
|
1539
|
+
label: string;
|
|
1540
|
+
literals: IPmdsCdkOptionDropdownLiterals;
|
|
1541
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
1542
|
+
multi: boolean;
|
|
1543
|
+
openDefault: boolean;
|
|
1544
|
+
options: IPmdsCdkOptionDropdown[];
|
|
1545
|
+
optionsMinWidth: string;
|
|
1546
|
+
placeholder: string;
|
|
1547
|
+
positionRight: boolean;
|
|
1548
|
+
positionTop: boolean;
|
|
1549
|
+
showCategory: boolean;
|
|
1550
|
+
skeleton: boolean;
|
|
1551
|
+
tooltip: string;
|
|
1552
|
+
tooltipPosition: TPmdsDirectiveTooltipPosition;
|
|
1553
|
+
tooltipTitle: string | null;
|
|
1554
|
+
warningText: string;
|
|
1555
|
+
selectChange: EventEmitter<string[] | string | null>;
|
|
1556
|
+
componentSelector: string;
|
|
1557
|
+
currentFilter: string;
|
|
1558
|
+
filteredOptions: IPmdsCdkOptionDropdown[];
|
|
1559
|
+
footerHeight: number;
|
|
1560
|
+
formControl: AbstractControl;
|
|
1561
|
+
height: number;
|
|
1562
|
+
isPositionTop: boolean;
|
|
1563
|
+
itemHeight: number;
|
|
1564
|
+
labelMulti: string;
|
|
1565
|
+
maxElementsOnHeight: number;
|
|
1566
|
+
omitEvent: boolean;
|
|
1567
|
+
optionMinWidth: string;
|
|
1568
|
+
provisionalSelectedValues: IPmdsCdkOptionDropdown[];
|
|
1569
|
+
searchHeight: number;
|
|
1570
|
+
selectedValues: IPmdsCdkOptionDropdown[];
|
|
1571
|
+
showErrors: boolean;
|
|
1572
|
+
showOptions: boolean;
|
|
1573
|
+
top: number;
|
|
1574
|
+
value: string[] | string | null;
|
|
1575
|
+
private formGroupDirective;
|
|
1576
|
+
private renderer;
|
|
1577
|
+
private destroy$;
|
|
1578
|
+
private unlistener;
|
|
1579
|
+
ngOnInit(): void;
|
|
1580
|
+
ngOnDestroy(): void;
|
|
1581
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1582
|
+
updateShowErrors(): void;
|
|
1583
|
+
ngAfterViewInit(): void;
|
|
1584
|
+
onChange(value: string[] | string | null): void;
|
|
1585
|
+
onTouch: () => undefined;
|
|
1586
|
+
preventClose(evt: Event): void;
|
|
1587
|
+
toggleShowOption(forceClose?: boolean, omitEvent?: boolean): void;
|
|
1588
|
+
cancel(): void;
|
|
1589
|
+
clear(): void;
|
|
1590
|
+
getFilteredOptions(): void;
|
|
1591
|
+
selectOption(option: IPmdsCdkOptionDropdown, event?: Event): void;
|
|
1592
|
+
onSelect(): void;
|
|
1593
|
+
writeValue(value: string[] | string | null): void;
|
|
1594
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
1595
|
+
registerOnTouched(fn: () => undefined): void;
|
|
1596
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1597
|
+
checkOptionSelected(options: IPmdsCdkOptionDropdown[], option: IPmdsCdkOptionDropdown): boolean;
|
|
1598
|
+
private calculateDimensions;
|
|
1599
|
+
private recalculateMultipleSelection;
|
|
1600
|
+
private getTrimmedAndLowerCaseString;
|
|
1601
|
+
private setCategoryShow;
|
|
1602
|
+
private scrollOption;
|
|
1603
|
+
private updateMultiPlaceholder;
|
|
1604
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDropdownComponent, never>;
|
|
1605
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDropdownComponent, "pmds-cdk-dropdown", never, { "assetsFolder": { "alias": "assetsFolder"; "required": false; }; "categoryOrder": { "alias": "categoryOrder"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "disabledShowToTop": { "alias": "disabledShowToTop"; "required": false; }; "enableSearch": { "alias": "enableSearch"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "isFilter": { "alias": "isFilter"; "required": false; }; "isTitle": { "alias": "isTitle"; "required": false; }; "keepValue": { "alias": "keepValue"; "required": false; }; "label": { "alias": "label"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "multi": { "alias": "multi"; "required": false; }; "openDefault": { "alias": "openDefault"; "required": false; }; "options": { "alias": "options"; "required": false; }; "optionsMinWidth": { "alias": "optionsMinWidth"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "positionRight": { "alias": "positionRight"; "required": false; }; "positionTop": { "alias": "positionTop"; "required": false; }; "showCategory": { "alias": "showCategory"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipTitle": { "alias": "tooltipTitle"; "required": false; }; "warningText": { "alias": "warningText"; "required": false; }; }, { "selectChange": "selectChange"; }, never, never, true, never>;
|
|
1606
|
+
}
|
|
1607
|
+
|
|
1608
|
+
interface IPmdsCdkDatepickerDateInfo {
|
|
1609
|
+
date: Date;
|
|
1610
|
+
label: string;
|
|
1611
|
+
}
|
|
1612
|
+
|
|
1613
|
+
declare class PmdsCdkDatepickerCalendarComponent implements OnInit, OnChanges {
|
|
1614
|
+
customStyles: string | null;
|
|
1615
|
+
dataQA: string;
|
|
1616
|
+
dateInfo: IPmdsCdkDatepickerDateInfo[];
|
|
1617
|
+
enabledToday: boolean;
|
|
1618
|
+
format: TPmdsCdkDatepickerDateFormat;
|
|
1619
|
+
literals: IPmdsCdkDatepickerLiterals;
|
|
1620
|
+
max: Date | string;
|
|
1621
|
+
min: Date | string;
|
|
1622
|
+
positionRight: boolean;
|
|
1623
|
+
selectableDates: Date[] | string[];
|
|
1624
|
+
setDate: Date | undefined;
|
|
1625
|
+
closeCalendar: EventEmitter<void>;
|
|
1626
|
+
selectDayChange: EventEmitter<Date>;
|
|
1627
|
+
daysArray: number[];
|
|
1628
|
+
disabledNext: boolean;
|
|
1629
|
+
disabledPrev: boolean;
|
|
1630
|
+
disabledNextYear: boolean;
|
|
1631
|
+
disabledPrevYear: boolean;
|
|
1632
|
+
disabledToday: boolean;
|
|
1633
|
+
displayDate: Date;
|
|
1634
|
+
displayMonth: number;
|
|
1635
|
+
displayYear: number;
|
|
1636
|
+
componentSelector: string;
|
|
1637
|
+
firstDayOfMonthWeekday: number;
|
|
1638
|
+
selectedDate: Date | undefined;
|
|
1639
|
+
ngOnInit(): void;
|
|
1640
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1641
|
+
fillCalendardisplayMonth(year: number, month: number): void;
|
|
1642
|
+
changeMonth(increment: number): void;
|
|
1643
|
+
changeYear(year: number): void;
|
|
1644
|
+
setToday(): void;
|
|
1645
|
+
selectDay(day: number, emit?: boolean): void;
|
|
1646
|
+
clickDay(day: number): void;
|
|
1647
|
+
changeSetDate(): void;
|
|
1648
|
+
private setDisplayCalendar;
|
|
1649
|
+
private setDisplayDate;
|
|
1650
|
+
private checkDisplayDate;
|
|
1651
|
+
private checkStringDate;
|
|
1652
|
+
private checkDisabled;
|
|
1653
|
+
private getMinDate;
|
|
1654
|
+
private getMaxDate;
|
|
1655
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDatepickerCalendarComponent, never>;
|
|
1656
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDatepickerCalendarComponent, "pmds-cdk-datepicker-calendar", never, { "customStyles": { "alias": "customStyles"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "dateInfo": { "alias": "dateInfo"; "required": false; }; "enabledToday": { "alias": "enabledToday"; "required": false; }; "format": { "alias": "format"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "positionRight": { "alias": "positionRight"; "required": false; }; "selectableDates": { "alias": "selectableDates"; "required": false; }; "setDate": { "alias": "setDate"; "required": false; }; }, { "closeCalendar": "closeCalendar"; "selectDayChange": "selectDayChange"; }, never, never, true, never>;
|
|
1657
|
+
}
|
|
1658
|
+
|
|
1659
|
+
declare class PmdsCdkDatepickerComponent implements OnInit, OnDestroy, OnChanges, AfterViewInit {
|
|
1660
|
+
datepickerInput: ElementRef | undefined;
|
|
1661
|
+
datepickerCalendar: PmdsCdkDatepickerCalendarComponent | undefined;
|
|
1662
|
+
dataQA: string;
|
|
1663
|
+
dateInfo: IPmdsCdkDatepickerDateInfo[];
|
|
1664
|
+
enabledToday: boolean;
|
|
1665
|
+
formControlName: string;
|
|
1666
|
+
format: TPmdsCdkDatepickerDateFormat;
|
|
1667
|
+
isDisabled: boolean;
|
|
1668
|
+
literals: IPmdsCdkDatepickerLiterals;
|
|
1669
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
1670
|
+
max: Date | string;
|
|
1671
|
+
min: Date | string;
|
|
1672
|
+
placeholder: string;
|
|
1673
|
+
positionRight: boolean;
|
|
1674
|
+
selectableDates: Date[] | string[];
|
|
1675
|
+
skeleton: boolean;
|
|
1676
|
+
currentValue: string;
|
|
1677
|
+
componentSelector: string;
|
|
1678
|
+
omitEvent: boolean;
|
|
1679
|
+
setDate: Date | undefined;
|
|
1680
|
+
show: boolean;
|
|
1681
|
+
showCalendar: boolean;
|
|
1682
|
+
calendarWidthStyle: string | null;
|
|
1683
|
+
private formGroupDirective;
|
|
1684
|
+
private renderer;
|
|
1685
|
+
private destroy$;
|
|
1686
|
+
private unlistener;
|
|
1687
|
+
ngOnInit(): void;
|
|
1688
|
+
ngOnDestroy(): void;
|
|
1689
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1690
|
+
ngAfterViewInit(): void;
|
|
1691
|
+
checkValidDate(value?: string, isFocusOut?: boolean, closeOption?: boolean): void;
|
|
1692
|
+
updateSeparator(): any;
|
|
1693
|
+
selectDayChange(date: Date): void;
|
|
1694
|
+
writeValue(value: string): void;
|
|
1695
|
+
onOpenCalendar(): void;
|
|
1696
|
+
private resetValue;
|
|
1697
|
+
private checkLimitDates;
|
|
1698
|
+
private changeDate;
|
|
1699
|
+
private checkStringDate;
|
|
1700
|
+
private getFormatBrowser;
|
|
1701
|
+
private getMinDate;
|
|
1702
|
+
private getMaxDate;
|
|
1703
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkDatepickerComponent, never>;
|
|
1704
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkDatepickerComponent, "pmds-cdk-datepicker", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "dateInfo": { "alias": "dateInfo"; "required": false; }; "enabledToday": { "alias": "enabledToday"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "format": { "alias": "format"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "max": { "alias": "max"; "required": false; }; "min": { "alias": "min"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "positionRight": { "alias": "positionRight"; "required": false; }; "selectableDates": { "alias": "selectableDates"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, never, never, true, never>;
|
|
1705
|
+
}
|
|
1706
|
+
|
|
1707
|
+
type TPmdsCdkToggleSwitchSize = 'small' | 'medium' | 'large';
|
|
1708
|
+
|
|
1709
|
+
declare class PmdsCdkToggleSwitchComponent implements ControlValueAccessor {
|
|
1710
|
+
dataQA: string;
|
|
1711
|
+
label: string;
|
|
1712
|
+
isDisabled: boolean;
|
|
1713
|
+
compact: boolean;
|
|
1714
|
+
size: TPmdsCdkToggleSwitchSize;
|
|
1715
|
+
switchChange: EventEmitter<boolean>;
|
|
1716
|
+
componentSelector: string;
|
|
1717
|
+
value: boolean;
|
|
1718
|
+
sizeClass: Map<TPmdsCdkToggleSwitchSize, string>;
|
|
1719
|
+
private onChangeCallback;
|
|
1720
|
+
private onTouchCallback;
|
|
1721
|
+
setValue(event: Event): void;
|
|
1722
|
+
writeValue(value: boolean): void;
|
|
1723
|
+
registerOnChange(fn: (_: boolean) => void): void;
|
|
1724
|
+
registerOnTouched(fn: () => void): void;
|
|
1725
|
+
setDisabledState(disabled: boolean): void;
|
|
1726
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkToggleSwitchComponent, never>;
|
|
1727
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkToggleSwitchComponent, "pmds-cdk-toggle-switch", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "label": { "alias": "label"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "size": { "alias": "size"; "required": false; }; }, { "switchChange": "switchChange"; }, never, never, true, never>;
|
|
1728
|
+
}
|
|
1729
|
+
|
|
1730
|
+
declare class PmdsCdkTimeInputComponent implements OnInit, OnDestroy, AfterViewInit, ControlValueAccessor {
|
|
1731
|
+
input: ElementRef;
|
|
1732
|
+
optionsContent: ElementRef;
|
|
1733
|
+
dropdownOptions: ElementRef;
|
|
1734
|
+
assetsFolder: string;
|
|
1735
|
+
helperText: string | undefined;
|
|
1736
|
+
isDisabled: boolean;
|
|
1737
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
1738
|
+
placeholder: string;
|
|
1739
|
+
dataQA: string;
|
|
1740
|
+
formControlName: string;
|
|
1741
|
+
options: IPmdsCdkOptionDropdown[];
|
|
1742
|
+
showClear: boolean;
|
|
1743
|
+
skeleton: boolean;
|
|
1744
|
+
showCategory: boolean;
|
|
1745
|
+
inputChange: EventEmitter<string | null>;
|
|
1746
|
+
provisionalSelectedValues: IPmdsCdkOptionDropdown[];
|
|
1747
|
+
componentSelector: string;
|
|
1748
|
+
optionMinWidth: string;
|
|
1749
|
+
formControl: AbstractControl;
|
|
1750
|
+
omitClearClick: boolean;
|
|
1751
|
+
inputFocused: boolean;
|
|
1752
|
+
showError: boolean;
|
|
1753
|
+
showValueFormatted: boolean;
|
|
1754
|
+
value: string | null;
|
|
1755
|
+
showOptions: boolean;
|
|
1756
|
+
omitEvent: boolean;
|
|
1757
|
+
private unlistener;
|
|
1758
|
+
private formGroupDirective;
|
|
1759
|
+
private destroy$;
|
|
1760
|
+
private renderer;
|
|
1761
|
+
get inputType(): "text" | "time";
|
|
1762
|
+
get inputNgClass(): {
|
|
1763
|
+
'border-color-border-default text-color-text-primary focus:border-color-border-focus': boolean;
|
|
1764
|
+
'border-color-border-error text-color-text-primary focus:border-color-border-error': boolean;
|
|
1765
|
+
'border-color-border-disabled text-color-text-disabled bg-color-surface-disabled pointer-event pointer-events-none': boolean;
|
|
1766
|
+
'text-transparent': boolean;
|
|
1767
|
+
'pt-5 !pb-1 !pr-20': string | boolean;
|
|
1768
|
+
};
|
|
1769
|
+
get clockIconNgClass(): {
|
|
1770
|
+
'text-color-icon-error': boolean;
|
|
1771
|
+
'text-color-icon-default': boolean;
|
|
1772
|
+
'text-color-icon-disabled': boolean;
|
|
1773
|
+
};
|
|
1774
|
+
get clearButtonNgClass(): {
|
|
1775
|
+
'transition-all opacity-100': boolean | "" | null;
|
|
1776
|
+
'opacity-0': boolean;
|
|
1777
|
+
'cursor-text': boolean;
|
|
1778
|
+
'!cursor-pointer': boolean;
|
|
1779
|
+
'!cursor-default': boolean;
|
|
1780
|
+
};
|
|
1781
|
+
ngOnInit(): void;
|
|
1782
|
+
ngOnDestroy(): void;
|
|
1783
|
+
ngAfterViewInit(): void;
|
|
1784
|
+
cancel(): void;
|
|
1785
|
+
onChange(_: unknown): void;
|
|
1786
|
+
onTouch(): void;
|
|
1787
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
1788
|
+
onPlaceholderClick(): void;
|
|
1789
|
+
checkOmitClick(): void;
|
|
1790
|
+
clearClick(): void;
|
|
1791
|
+
updateClearButtonOnFocus(focusedOnInput: boolean): void;
|
|
1792
|
+
onFocusOut(): void;
|
|
1793
|
+
onInput(event?: Event): void;
|
|
1794
|
+
writeValue(value: string): void;
|
|
1795
|
+
setDisabledState(isDisabled: boolean): void;
|
|
1796
|
+
registerOnTouched(fn: () => unknown): void;
|
|
1797
|
+
preventClose(evt: Event): void;
|
|
1798
|
+
toggleShowOption(forceClose?: boolean, omitEvent?: boolean, $event?: Event): void;
|
|
1799
|
+
selectOption(option: IPmdsCdkOptionDropdown, event?: Event): void;
|
|
1800
|
+
private updateShowErrors;
|
|
1801
|
+
private setCategoryShow;
|
|
1802
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTimeInputComponent, never>;
|
|
1803
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTimeInputComponent, "pmds-cdk-time-input", never, { "assetsFolder": { "alias": "assetsFolder"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "options": { "alias": "options"; "required": false; }; "showClear": { "alias": "showClear"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "showCategory": { "alias": "showCategory"; "required": false; }; }, { "inputChange": "inputChange"; }, never, never, true, never>;
|
|
1804
|
+
}
|
|
1805
|
+
|
|
1806
|
+
type TPmdsCdkTagLabelColor = 'red' | 'green' | 'yellow' | 'grey' | 'blue';
|
|
1807
|
+
|
|
1808
|
+
declare class PmdsCdkTagLabelComponent {
|
|
1809
|
+
color: TPmdsCdkTagLabelColor;
|
|
1810
|
+
label: string;
|
|
1811
|
+
dataQA: string;
|
|
1812
|
+
skeleton: boolean;
|
|
1813
|
+
componentSelector: string;
|
|
1814
|
+
colorSet: {
|
|
1815
|
+
red: string;
|
|
1816
|
+
green: string;
|
|
1817
|
+
blue: string;
|
|
1818
|
+
grey: string;
|
|
1819
|
+
yellow: string;
|
|
1820
|
+
};
|
|
1821
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTagLabelComponent, never>;
|
|
1822
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTagLabelComponent, "pmds-cdk-tag-label", never, { "color": { "alias": "color"; "required": false; }; "label": { "alias": "label"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, never, never, true, never>;
|
|
1823
|
+
}
|
|
1824
|
+
|
|
1825
|
+
interface IPmdsCdkSteps {
|
|
1826
|
+
title: string;
|
|
1827
|
+
status: IPmdsCdkStepStatus;
|
|
1828
|
+
observations?: IPmdsCdkStepObservation[];
|
|
1829
|
+
subSteps?: IPmdsCdkSteps[];
|
|
1830
|
+
alert?: IPmdsCdkStepAlert;
|
|
1831
|
+
colorCode?: colorCode;
|
|
1832
|
+
}
|
|
1833
|
+
declare enum IPmdsCdkStepStatus {
|
|
1834
|
+
Completed = "completed",
|
|
1835
|
+
Current = "current",
|
|
1836
|
+
UpComing = "up-coming",
|
|
1837
|
+
LastComplete = "last-complete",
|
|
1838
|
+
Error = "error"
|
|
1839
|
+
}
|
|
1840
|
+
type colorCode = 'red' | 'grey' | 'green' | 'blue' | 'yellow';
|
|
1841
|
+
interface IPmdsCdkStepObservation {
|
|
1842
|
+
date?: Date | string;
|
|
1843
|
+
message?: string;
|
|
1844
|
+
agent?: string;
|
|
1845
|
+
}
|
|
1846
|
+
interface IPmdsCdkStepAlert {
|
|
1847
|
+
alertTitle?: string;
|
|
1848
|
+
alertSubtitle?: string;
|
|
1849
|
+
}
|
|
1850
|
+
interface IPmdsCdkStepAttributes {
|
|
1851
|
+
alertType?: TPmdsCdkAlertType;
|
|
1852
|
+
readMore: boolean;
|
|
1853
|
+
readContent: string;
|
|
1854
|
+
collapse: boolean;
|
|
1855
|
+
}
|
|
1856
|
+
|
|
1857
|
+
declare class PmdsCdkTimelineTrackingComponent implements OnInit {
|
|
1858
|
+
collapseIconAnimation?: boolean;
|
|
1859
|
+
dataQA: string;
|
|
1860
|
+
dateLocale: string;
|
|
1861
|
+
readLessContent: string;
|
|
1862
|
+
readMoreContent: string;
|
|
1863
|
+
steps: IPmdsCdkSteps[];
|
|
1864
|
+
skeleton: boolean;
|
|
1865
|
+
attributesList: IPmdsCdkStepAttributes[];
|
|
1866
|
+
colorSet: {
|
|
1867
|
+
red: string;
|
|
1868
|
+
green: string;
|
|
1869
|
+
grey: string;
|
|
1870
|
+
blue: string;
|
|
1871
|
+
yellow: string;
|
|
1872
|
+
};
|
|
1873
|
+
componentSelector: string;
|
|
1874
|
+
isReady: boolean;
|
|
1875
|
+
subAttributesList: IPmdsCdkStepAttributes[];
|
|
1876
|
+
readonly stepStatus: typeof IPmdsCdkStepStatus;
|
|
1877
|
+
ngOnInit(): void;
|
|
1878
|
+
generateAttributes(step: IPmdsCdkSteps, attributesList: IPmdsCdkStepAttributes[]): void;
|
|
1879
|
+
generateAlertTypes(step: IPmdsCdkSteps, attributes: IPmdsCdkStepAttributes): void;
|
|
1880
|
+
readChange(isStep: boolean, stepIndex: number): void;
|
|
1881
|
+
collapseAction(stepAttributes: IPmdsCdkStepAttributes): void;
|
|
1882
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTimelineTrackingComponent, never>;
|
|
1883
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTimelineTrackingComponent, "pmds-cdk-timeline-tracking", never, { "collapseIconAnimation": { "alias": "collapseIconAnimation"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "dateLocale": { "alias": "dateLocale"; "required": false; }; "readLessContent": { "alias": "readLessContent"; "required": false; }; "readMoreContent": { "alias": "readMoreContent"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, never, never, true, never>;
|
|
1884
|
+
}
|
|
1885
|
+
|
|
1886
|
+
type TPmdsCdkCardsFileUploadStates = 'initial' | 'loading' | 'error';
|
|
1887
|
+
|
|
1888
|
+
interface IPmdsCdkCardsFileUploadLiterals {
|
|
1889
|
+
chooseFileTitle: string;
|
|
1890
|
+
chooseFileSubtitle: string;
|
|
1891
|
+
loadingTitle: string;
|
|
1892
|
+
loadingSubtitle: string;
|
|
1893
|
+
button: string;
|
|
1894
|
+
errorText: string;
|
|
1895
|
+
errorMultipleText?: string;
|
|
1896
|
+
errorTypeText?: string;
|
|
1897
|
+
errorFileMax?: string;
|
|
1898
|
+
errorMaxSize?: string;
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
declare class PmdsCdkCardsFileUploadComponent implements OnChanges {
|
|
1902
|
+
selectFilesInput: ElementRef;
|
|
1903
|
+
accept: string;
|
|
1904
|
+
dataQA: string;
|
|
1905
|
+
literals: IPmdsCdkCardsFileUploadLiterals;
|
|
1906
|
+
multiFiles: boolean;
|
|
1907
|
+
maxFiles: number;
|
|
1908
|
+
maxSize: number;
|
|
1909
|
+
disabledLoading: boolean;
|
|
1910
|
+
skeleton: boolean;
|
|
1911
|
+
state: TPmdsCdkCardsFileUploadStates;
|
|
1912
|
+
fileSelected: EventEmitter<File | FileList>;
|
|
1913
|
+
stateChange: EventEmitter<TPmdsCdkCardsFileUploadStates>;
|
|
1914
|
+
componentSelector: string;
|
|
1915
|
+
errorText: string;
|
|
1916
|
+
isDragover: boolean;
|
|
1917
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
1918
|
+
onDrop(event: DragEvent): void;
|
|
1919
|
+
selectFile(event: Event): void;
|
|
1920
|
+
onDragOver(event: DragEvent): void;
|
|
1921
|
+
private checkAcceptFiles;
|
|
1922
|
+
private checkSizeFiles;
|
|
1923
|
+
private updateValue;
|
|
1924
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCardsFileUploadComponent, never>;
|
|
1925
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCardsFileUploadComponent, "pmds-cdk-cards-file-upload", never, { "accept": { "alias": "accept"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "multiFiles": { "alias": "multiFiles"; "required": false; }; "maxFiles": { "alias": "maxFiles"; "required": false; }; "maxSize": { "alias": "maxSize"; "required": false; }; "disabledLoading": { "alias": "disabledLoading"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "state": { "alias": "state"; "required": false; }; }, { "fileSelected": "fileSelected"; "stateChange": "stateChange"; }, never, never, true, never>;
|
|
1926
|
+
}
|
|
1927
|
+
|
|
1928
|
+
type TPmdsCdkCountryLabelSize = 'small' | 'large';
|
|
1929
|
+
|
|
1930
|
+
declare class PmdsCdkCountryLabelComponent implements OnInit, OnChanges {
|
|
1931
|
+
assetsFolder: string;
|
|
1932
|
+
codeCountry: string;
|
|
1933
|
+
dataQA: string;
|
|
1934
|
+
label: string;
|
|
1935
|
+
showLabel: boolean;
|
|
1936
|
+
size: TPmdsCdkCountryLabelSize;
|
|
1937
|
+
skeleton: boolean;
|
|
1938
|
+
componentSelector: string;
|
|
1939
|
+
src: string;
|
|
1940
|
+
ngOnInit(): void;
|
|
1941
|
+
ngOnChanges(): void;
|
|
1942
|
+
updateUrl(): void;
|
|
1943
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCountryLabelComponent, never>;
|
|
1944
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCountryLabelComponent, "pmds-cdk-country-label", never, { "assetsFolder": { "alias": "assetsFolder"; "required": false; }; "codeCountry": { "alias": "codeCountry"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "label": { "alias": "label"; "required": false; }; "showLabel": { "alias": "showLabel"; "required": false; }; "size": { "alias": "size"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, never, never, true, never>;
|
|
1945
|
+
}
|
|
1946
|
+
|
|
1947
|
+
declare class PmdsCdkTagCategoryComponent implements OnInit, OnChanges {
|
|
1948
|
+
assetsFolder: string;
|
|
1949
|
+
dataQA: string;
|
|
1950
|
+
flagCode: string;
|
|
1951
|
+
isDisabled: boolean;
|
|
1952
|
+
label: string;
|
|
1953
|
+
tooltip: string;
|
|
1954
|
+
skeleton: boolean;
|
|
1955
|
+
showIcon: boolean;
|
|
1956
|
+
tooltipPosition: TPmdsDirectiveTooltipPosition;
|
|
1957
|
+
src: string;
|
|
1958
|
+
componentSelector: string;
|
|
1959
|
+
ngOnInit(): void;
|
|
1960
|
+
ngOnChanges(): void;
|
|
1961
|
+
setSrc(): void;
|
|
1962
|
+
updateUrl(): void;
|
|
1963
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTagCategoryComponent, never>;
|
|
1964
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTagCategoryComponent, "pmds-cdk-tag-category", never, { "assetsFolder": { "alias": "assetsFolder"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "flagCode": { "alias": "flagCode"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "label": { "alias": "label"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "showIcon": { "alias": "showIcon"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; }, {}, never, never, true, never>;
|
|
1965
|
+
}
|
|
1966
|
+
|
|
1967
|
+
interface IPmdsCdkExpansionPanelActions {
|
|
1968
|
+
icon: string;
|
|
1969
|
+
label: string;
|
|
1970
|
+
actionFn: (data?: any) => void;
|
|
1971
|
+
}
|
|
1972
|
+
|
|
1973
|
+
declare class PmdsCdkExpansionPanelComponent implements OnInit {
|
|
1974
|
+
optionsContent: ElementRef;
|
|
1975
|
+
actions: IPmdsCdkExpansionPanelActions[];
|
|
1976
|
+
dataQA: string;
|
|
1977
|
+
openByDefault: boolean;
|
|
1978
|
+
title: string;
|
|
1979
|
+
tooltip: string;
|
|
1980
|
+
skeleton: boolean;
|
|
1981
|
+
skeletonOpen: boolean;
|
|
1982
|
+
open: boolean;
|
|
1983
|
+
showOptions: boolean;
|
|
1984
|
+
omitEvent: boolean;
|
|
1985
|
+
componentSelector: string;
|
|
1986
|
+
private renderer;
|
|
1987
|
+
private unlistener;
|
|
1988
|
+
ngAfterViewInit(): void;
|
|
1989
|
+
ngOnInit(): void;
|
|
1990
|
+
toggleExpansionPanelState(): void;
|
|
1991
|
+
showContent(): void;
|
|
1992
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkExpansionPanelComponent, never>;
|
|
1993
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkExpansionPanelComponent, "pmds-cdk-expansion-panel", never, { "actions": { "alias": "actions"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "openByDefault": { "alias": "openByDefault"; "required": false; }; "title": { "alias": "title"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "skeletonOpen": { "alias": "skeletonOpen"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
1994
|
+
}
|
|
1995
|
+
|
|
1996
|
+
declare class PmdsCdkButtonFloatingComponent {
|
|
1997
|
+
isDisabled: boolean;
|
|
1998
|
+
icon: string;
|
|
1999
|
+
dataQA: string;
|
|
2000
|
+
buttonClick: EventEmitter<void>;
|
|
2001
|
+
componentSelector: string;
|
|
2002
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkButtonFloatingComponent, never>;
|
|
2003
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkButtonFloatingComponent, "pmds-cdk-button-floating", never, { "isDisabled": { "alias": "isDisabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
type TPmdsCdkBadgetNumbersSize = 'small' | 'medium' | 'large';
|
|
2007
|
+
|
|
2008
|
+
declare class PmdsCdkBadgetNumbersComponent {
|
|
2009
|
+
label: number;
|
|
2010
|
+
size: TPmdsCdkBadgetNumbersSize;
|
|
2011
|
+
isActive: boolean;
|
|
2012
|
+
dataQA: string;
|
|
2013
|
+
hasBackground: boolean;
|
|
2014
|
+
componentSelector: string;
|
|
2015
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkBadgetNumbersComponent, never>;
|
|
2016
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkBadgetNumbersComponent, "pmds-cdk-badget-numbers", never, { "label": { "alias": "label"; "required": false; }; "size": { "alias": "size"; "required": false; }; "isActive": { "alias": "isActive"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "hasBackground": { "alias": "hasBackground"; "required": false; }; }, {}, never, never, true, never>;
|
|
2017
|
+
}
|
|
2018
|
+
|
|
2019
|
+
declare class PmdsCdkSkeletonComponent implements AfterViewInit {
|
|
2020
|
+
line: ElementRef;
|
|
2021
|
+
content: ElementRef;
|
|
2022
|
+
dataQA: string;
|
|
2023
|
+
style: string;
|
|
2024
|
+
componentSelector: string;
|
|
2025
|
+
showLine: boolean;
|
|
2026
|
+
top: string;
|
|
2027
|
+
left: string;
|
|
2028
|
+
height: string;
|
|
2029
|
+
onResize(): void;
|
|
2030
|
+
ngAfterViewInit(): void;
|
|
2031
|
+
private setSizes;
|
|
2032
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkSkeletonComponent, never>;
|
|
2033
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkSkeletonComponent, "pmds-cdk-skeleton", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "style": { "alias": "style"; "required": false; }; }, {}, never, never, true, never>;
|
|
2034
|
+
}
|
|
2035
|
+
|
|
2036
|
+
interface IPmdsCdkAccordionLiterals {
|
|
2037
|
+
title: string;
|
|
2038
|
+
elements?: string;
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
interface IPmdsCdkAccordionTags {
|
|
2042
|
+
label: string;
|
|
2043
|
+
flagCode?: string;
|
|
2044
|
+
assetsFolder?: string;
|
|
2045
|
+
}
|
|
2046
|
+
|
|
2047
|
+
declare class PmdsCdkAccordionComponent {
|
|
2048
|
+
content: string[];
|
|
2049
|
+
dataQA: string;
|
|
2050
|
+
hideBottomBorder: boolean;
|
|
2051
|
+
literals: IPmdsCdkAccordionLiterals;
|
|
2052
|
+
open: boolean;
|
|
2053
|
+
skeleton: boolean;
|
|
2054
|
+
skeletonOpen: boolean;
|
|
2055
|
+
tags: IPmdsCdkAccordionTags[];
|
|
2056
|
+
componentSelector: string;
|
|
2057
|
+
toggleAccordion(): void;
|
|
2058
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkAccordionComponent, never>;
|
|
2059
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkAccordionComponent, "pmds-cdk-accordion", never, { "content": { "alias": "content"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "hideBottomBorder": { "alias": "hideBottomBorder"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "open": { "alias": "open"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "skeletonOpen": { "alias": "skeletonOpen"; "required": false; }; "tags": { "alias": "tags"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
interface IPmdsCdkErrorPageLiterals {
|
|
2063
|
+
401?: IPmdsCdkErrorPageLiteralsError;
|
|
2064
|
+
403?: IPmdsCdkErrorPageLiteralsError;
|
|
2065
|
+
404?: IPmdsCdkErrorPageLiteralsError;
|
|
2066
|
+
500?: IPmdsCdkErrorPageLiteralsError;
|
|
2067
|
+
503?: IPmdsCdkErrorPageLiteralsError;
|
|
2068
|
+
}
|
|
2069
|
+
interface IPmdsCdkErrorPageLiteralsError {
|
|
2070
|
+
error: string;
|
|
2071
|
+
title: string;
|
|
2072
|
+
paragraph: string;
|
|
2073
|
+
buttons?: [IPmdsCdkErrorPageButtons] | [IPmdsCdkErrorPageButtons, IPmdsCdkErrorPageButtons];
|
|
2074
|
+
}
|
|
2075
|
+
interface IPmdsCdkErrorPageButtons {
|
|
2076
|
+
label: string;
|
|
2077
|
+
type: 'primary' | 'secondary';
|
|
2078
|
+
disabled?: boolean;
|
|
2079
|
+
action: () => void;
|
|
2080
|
+
}
|
|
2081
|
+
|
|
2082
|
+
type TPmdsCdkErrorPageType = '401' | '403' | '404' | '500' | '503';
|
|
2083
|
+
|
|
2084
|
+
declare class PmdsCdkErrorPageComponent implements OnInit {
|
|
2085
|
+
dataQA: string;
|
|
2086
|
+
errorCode: TPmdsCdkErrorPageType;
|
|
2087
|
+
literals: IPmdsCdkErrorPageLiterals;
|
|
2088
|
+
isModule: boolean;
|
|
2089
|
+
buttons: IPmdsCdkErrorPageButtons[] | undefined;
|
|
2090
|
+
componentSelector: string;
|
|
2091
|
+
ngOnInit(): void;
|
|
2092
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkErrorPageComponent, never>;
|
|
2093
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkErrorPageComponent, "pmds-cdk-error-page", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "errorCode": { "alias": "errorCode"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "isModule": { "alias": "isModule"; "required": false; }; }, {}, never, never, true, never>;
|
|
2094
|
+
}
|
|
2095
|
+
|
|
2096
|
+
interface IPmdsCdkButtonModalButton {
|
|
2097
|
+
type: PmdsCdkButtonType;
|
|
2098
|
+
label: string;
|
|
2099
|
+
action?: () => void;
|
|
2100
|
+
icon?: string;
|
|
2101
|
+
iconPosition?: 'left' | 'right';
|
|
2102
|
+
disabled?: boolean;
|
|
2103
|
+
dropdownButtons?: IPmdsCdkButtonModalButton[];
|
|
2104
|
+
}
|
|
2105
|
+
|
|
2106
|
+
declare class PmdsCdkButtonModalComponent implements OnInit, OnDestroy, AfterViewInit {
|
|
2107
|
+
buttons: IPmdsCdkButtonModalButton[];
|
|
2108
|
+
hasBackdropClick: boolean;
|
|
2109
|
+
dataQA: string;
|
|
2110
|
+
backLiteral: string;
|
|
2111
|
+
show: boolean | undefined;
|
|
2112
|
+
showChange: EventEmitter<boolean>;
|
|
2113
|
+
componentSelector: string;
|
|
2114
|
+
buttonShowed: IPmdsCdkButtonModalButton[];
|
|
2115
|
+
showBackbutton: boolean;
|
|
2116
|
+
private renderer;
|
|
2117
|
+
private el;
|
|
2118
|
+
ngOnInit(): void;
|
|
2119
|
+
ngOnDestroy(): void;
|
|
2120
|
+
ngAfterViewInit(): void;
|
|
2121
|
+
buttonClick(button: IPmdsCdkButtonModalButton): void;
|
|
2122
|
+
backClick(): void;
|
|
2123
|
+
updateShow(value: boolean): void;
|
|
2124
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkButtonModalComponent, never>;
|
|
2125
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkButtonModalComponent, "pmds-cdk-button-modal", never, { "buttons": { "alias": "buttons"; "required": false; }; "hasBackdropClick": { "alias": "hasBackdropClick"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "backLiteral": { "alias": "backLiteral"; "required": false; }; "show": { "alias": "show"; "required": false; }; }, { "showChange": "showChange"; }, never, never, true, never>;
|
|
2126
|
+
}
|
|
2127
|
+
|
|
2128
|
+
type TPmdsCdkCopyClipboardIconPosition = 'left' | 'right';
|
|
2129
|
+
|
|
2130
|
+
declare class PmdsCdkCopyClipboardComponent {
|
|
2131
|
+
textToCopy: string;
|
|
2132
|
+
dataQA: string;
|
|
2133
|
+
hideLabelMobile: boolean;
|
|
2134
|
+
literal: string;
|
|
2135
|
+
literalCopied: string;
|
|
2136
|
+
iconPosition: TPmdsCdkCopyClipboardIconPosition;
|
|
2137
|
+
copyClick: EventEmitter<void>;
|
|
2138
|
+
componentSelector: string;
|
|
2139
|
+
showCopied: boolean;
|
|
2140
|
+
private clipboard;
|
|
2141
|
+
copyTextToClipboard(event: MouseEvent): void;
|
|
2142
|
+
private initCopiedTimer;
|
|
2143
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCopyClipboardComponent, never>;
|
|
2144
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCopyClipboardComponent, "pmds-cdk-copy-clipboard", never, { "textToCopy": { "alias": "textToCopy"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "hideLabelMobile": { "alias": "hideLabelMobile"; "required": false; }; "literal": { "alias": "literal"; "required": false; }; "literalCopied": { "alias": "literalCopied"; "required": false; }; "iconPosition": { "alias": "iconPosition"; "required": false; }; }, { "copyClick": "copyClick"; }, never, never, true, never>;
|
|
2145
|
+
}
|
|
2146
|
+
|
|
2147
|
+
interface IPmdsCdkNotificationsPopoverNotification {
|
|
2148
|
+
id: string;
|
|
2149
|
+
date: string;
|
|
2150
|
+
action?: () => void;
|
|
2151
|
+
title: string;
|
|
2152
|
+
seen: boolean;
|
|
2153
|
+
info: string;
|
|
2154
|
+
}
|
|
2155
|
+
interface IPmdsCdkNotificationsPopoverLiterals {
|
|
2156
|
+
notifications: string;
|
|
2157
|
+
}
|
|
2158
|
+
interface IPmdsCdkNotificationsPopoverButton {
|
|
2159
|
+
label: string;
|
|
2160
|
+
action: () => void;
|
|
2161
|
+
icon?: string;
|
|
2162
|
+
}
|
|
2163
|
+
|
|
2164
|
+
declare class PmdsCdkNotificationsPopoverComponent {
|
|
2165
|
+
dataQA: string;
|
|
2166
|
+
notifications: IPmdsCdkNotificationsPopoverNotification[];
|
|
2167
|
+
literals: IPmdsCdkNotificationsPopoverLiterals;
|
|
2168
|
+
button: IPmdsCdkNotificationsPopoverButton;
|
|
2169
|
+
checkedNotifications: EventEmitter<string>;
|
|
2170
|
+
buttonClick: EventEmitter<void>;
|
|
2171
|
+
componentSelector: string;
|
|
2172
|
+
notificationClicked(index: number, id: string): void;
|
|
2173
|
+
onButtonClick(): void;
|
|
2174
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkNotificationsPopoverComponent, never>;
|
|
2175
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkNotificationsPopoverComponent, "pmds-cdk-notifications-popover", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "notifications": { "alias": "notifications"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "button": { "alias": "button"; "required": false; }; }, { "checkedNotifications": "checkedNotifications"; "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
2176
|
+
}
|
|
2177
|
+
|
|
2178
|
+
interface IPmdsCdkMessage {
|
|
2179
|
+
id: string;
|
|
2180
|
+
literals: IPmdsCdkMessageLiterals;
|
|
2181
|
+
typeUser: TPmdsCdkUserType;
|
|
2182
|
+
}
|
|
2183
|
+
interface IPmdsCdkMessageLiterals {
|
|
2184
|
+
published?: string;
|
|
2185
|
+
profileLabel?: string;
|
|
2186
|
+
title: string;
|
|
2187
|
+
content: string;
|
|
2188
|
+
date: string;
|
|
2189
|
+
}
|
|
2190
|
+
type TPmdsCdkUserType = 'otherMessage' | 'myMessage';
|
|
2191
|
+
type TPmdsCdkMessageType = 'comment' | 'chat';
|
|
2192
|
+
|
|
2193
|
+
declare class PmdsCdkMessageComponent {
|
|
2194
|
+
dataQA: string;
|
|
2195
|
+
messages: IPmdsCdkMessage[];
|
|
2196
|
+
literals: IPmdsCdkMessageLiterals;
|
|
2197
|
+
messageType: TPmdsCdkMessageType;
|
|
2198
|
+
userType: TPmdsCdkUserType;
|
|
2199
|
+
componentSelector: string;
|
|
2200
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkMessageComponent, never>;
|
|
2201
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkMessageComponent, "pmds-cdk-message", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "messageType": { "alias": "messageType"; "required": false; }; "userType": { "alias": "userType"; "required": false; }; }, {}, never, never, true, never>;
|
|
2202
|
+
}
|
|
2203
|
+
|
|
2204
|
+
interface IPmdsCdkStickyButtonBarButton {
|
|
2205
|
+
type: PmdsCdkButtonType;
|
|
2206
|
+
label: string;
|
|
2207
|
+
action?: () => void;
|
|
2208
|
+
icon?: string;
|
|
2209
|
+
iconPosition?: 'left' | 'right';
|
|
2210
|
+
disabled?: boolean;
|
|
2211
|
+
dropdownButtons?: IPmdsCdkStickyButtonBarButton[];
|
|
2212
|
+
}
|
|
2213
|
+
|
|
2214
|
+
declare class PmdsCdkStickyButtonBarComponent implements OnInit, AfterViewInit, OnDestroy, OnChanges {
|
|
2215
|
+
elem: ElementRef;
|
|
2216
|
+
buttons: IPmdsCdkStickyButtonBarButton[];
|
|
2217
|
+
dataQA: string;
|
|
2218
|
+
position: 'fixed' | 'bottom';
|
|
2219
|
+
floatingButton: boolean;
|
|
2220
|
+
showDesktop: boolean;
|
|
2221
|
+
show: boolean;
|
|
2222
|
+
showChange: EventEmitter<boolean>;
|
|
2223
|
+
close: EventEmitter<void>;
|
|
2224
|
+
private renderer;
|
|
2225
|
+
private el;
|
|
2226
|
+
buttonShowed: IPmdsCdkStickyButtonBarButton[];
|
|
2227
|
+
componentSelector: string;
|
|
2228
|
+
showBackButton: boolean;
|
|
2229
|
+
ngOnInit(): void;
|
|
2230
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2231
|
+
ngOnDestroy(): void;
|
|
2232
|
+
ngAfterViewInit(): void;
|
|
2233
|
+
buttonClick(button: IPmdsCdkStickyButtonBarButton): void;
|
|
2234
|
+
goToFirstLevel(): void;
|
|
2235
|
+
closeMenu(): void;
|
|
2236
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkStickyButtonBarComponent, never>;
|
|
2237
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkStickyButtonBarComponent, "pmds-cdk-sticky-button-bar", never, { "buttons": { "alias": "buttons"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "position": { "alias": "position"; "required": false; }; "floatingButton": { "alias": "floatingButton"; "required": false; }; "showDesktop": { "alias": "showDesktop"; "required": false; }; "show": { "alias": "show"; "required": false; }; }, { "showChange": "showChange"; "close": "close"; }, never, never, true, never>;
|
|
2238
|
+
}
|
|
2239
|
+
|
|
2240
|
+
interface IPmdsCdkCardsInformationLiterals {
|
|
2241
|
+
icon: string;
|
|
2242
|
+
title: string;
|
|
2243
|
+
subtitle: string;
|
|
2244
|
+
}
|
|
2245
|
+
interface IPmdsCdkCardsInformationAction {
|
|
2246
|
+
label: string;
|
|
2247
|
+
icon: string;
|
|
2248
|
+
actionFn: () => void;
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
declare class PmdsCdkCardsInformationComponent implements OnInit {
|
|
2252
|
+
dataQA: string;
|
|
2253
|
+
disabled: boolean;
|
|
2254
|
+
toggle: boolean;
|
|
2255
|
+
literals: IPmdsCdkCardsInformationLiterals;
|
|
2256
|
+
actions: IPmdsCdkCardsInformationAction[];
|
|
2257
|
+
create: IPmdsCdkCardsInformationAction;
|
|
2258
|
+
skeleton: boolean;
|
|
2259
|
+
enabledChange: EventEmitter<boolean>;
|
|
2260
|
+
selected: boolean;
|
|
2261
|
+
toggleForm: FormGroup;
|
|
2262
|
+
componentSelector: string;
|
|
2263
|
+
ngOnInit(): void;
|
|
2264
|
+
toggleClicked(selected: boolean): void;
|
|
2265
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCardsInformationComponent, never>;
|
|
2266
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCardsInformationComponent, "pmds-cdk-cards-information", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "create": { "alias": "create"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "enabledChange": "enabledChange"; }, never, never, true, never>;
|
|
2267
|
+
}
|
|
2268
|
+
|
|
2269
|
+
declare class PmdsCdkStepperComponent {
|
|
2270
|
+
dataQA: string;
|
|
2271
|
+
steps: string[];
|
|
2272
|
+
current: number;
|
|
2273
|
+
skeleton: boolean;
|
|
2274
|
+
componentSelector: string;
|
|
2275
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkStepperComponent, never>;
|
|
2276
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkStepperComponent, "pmds-cdk-stepper", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "steps": { "alias": "steps"; "required": false; }; "current": { "alias": "current"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, never, never, true, never>;
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
declare class PmdsCdkTextareaComponent implements OnInit {
|
|
2280
|
+
dataQA: string;
|
|
2281
|
+
charactersLeftText: string;
|
|
2282
|
+
formControlName: string;
|
|
2283
|
+
isDisabled: boolean;
|
|
2284
|
+
maxlength: number;
|
|
2285
|
+
placeholder: string;
|
|
2286
|
+
skeleton: boolean;
|
|
2287
|
+
helperText: string;
|
|
2288
|
+
tooltip: string;
|
|
2289
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
2290
|
+
formControl: AbstractControl;
|
|
2291
|
+
isFocus: boolean;
|
|
2292
|
+
showError: boolean;
|
|
2293
|
+
value: string;
|
|
2294
|
+
componentSelector: string;
|
|
2295
|
+
private formGroupDirective;
|
|
2296
|
+
ngOnInit(): void;
|
|
2297
|
+
onChange(_: unknown): void;
|
|
2298
|
+
onTouch(): void;
|
|
2299
|
+
onFocusOut(): void;
|
|
2300
|
+
onInput(event?: Event): void;
|
|
2301
|
+
checkOmitClick(event: Event): void;
|
|
2302
|
+
clickOnClear(event?: Event): void;
|
|
2303
|
+
writeValue(value: string): void;
|
|
2304
|
+
setDisabledState(isDisabled: boolean): void;
|
|
2305
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
2306
|
+
registerOnTouched(fn: () => unknown): void;
|
|
2307
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTextareaComponent, never>;
|
|
2308
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTextareaComponent, "pmds-cdk-textarea", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "charactersLeftText": { "alias": "charactersLeftText"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "maxlength": { "alias": "maxlength"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "helperText": { "alias": "helperText"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; }, {}, never, never, true, never>;
|
|
2309
|
+
}
|
|
2310
|
+
|
|
2311
|
+
type IPmdsCdkTextFieldType = 'two-line-bold' | 'two-line-tag' | 'two-line-country' | 'two-line-regular' | 'list' | 'two-line-link' | 'two-line-figure-bold' | 'inline-bold' | 'inline-regular' | 'inline-figure-bold' | 'inline-figure-regular';
|
|
2312
|
+
|
|
2313
|
+
interface IPmdsCdkTextField {
|
|
2314
|
+
label: string;
|
|
2315
|
+
value: string | string[];
|
|
2316
|
+
tagColor?: TPmdsCdkTagLabelColor;
|
|
2317
|
+
assetsFolder?: string;
|
|
2318
|
+
flagCode?: string;
|
|
2319
|
+
tooltip?: string;
|
|
2320
|
+
copyValue?: string;
|
|
2321
|
+
actionFn?: () => void;
|
|
2322
|
+
}
|
|
2323
|
+
|
|
2324
|
+
declare class PmdsCdkTextFieldComponent implements OnInit, OnChanges {
|
|
2325
|
+
dataQA: string;
|
|
2326
|
+
field: IPmdsCdkTextField;
|
|
2327
|
+
iconValue: string;
|
|
2328
|
+
skeleton: boolean;
|
|
2329
|
+
type: IPmdsCdkTextFieldType;
|
|
2330
|
+
typeMobile: IPmdsCdkTextFieldType;
|
|
2331
|
+
disabledEllipsis: boolean;
|
|
2332
|
+
actualView: 'mobile' | 'screen';
|
|
2333
|
+
componentSelector: string;
|
|
2334
|
+
listValues: string[];
|
|
2335
|
+
value: string;
|
|
2336
|
+
typeShow: IPmdsCdkTextFieldType;
|
|
2337
|
+
inlineTypes: string[];
|
|
2338
|
+
flexTypes: string[];
|
|
2339
|
+
onResize(): void;
|
|
2340
|
+
ngOnInit(): void;
|
|
2341
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2342
|
+
private parseValues;
|
|
2343
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTextFieldComponent, never>;
|
|
2344
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTextFieldComponent, "pmds-cdk-text-field", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "field": { "alias": "field"; "required": false; }; "iconValue": { "alias": "iconValue"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "type": { "alias": "type"; "required": false; }; "typeMobile": { "alias": "typeMobile"; "required": false; }; "disabledEllipsis": { "alias": "disabledEllipsis"; "required": false; }; }, {}, never, never, true, never>;
|
|
2345
|
+
}
|
|
2346
|
+
|
|
2347
|
+
interface IPmdsCdkTableCompleteResponseModel<T> {
|
|
2348
|
+
total: number;
|
|
2349
|
+
registers: T[];
|
|
2350
|
+
}
|
|
2351
|
+
|
|
2352
|
+
declare abstract class PmdsCdkTableCompleteDataAbstractService {
|
|
2353
|
+
abstract dataCollectionHasChanged: Subject<IPmdsCdkTableCompleteResponseModel<any>>;
|
|
2354
|
+
abstract loading: Subject<boolean>;
|
|
2355
|
+
abstract errorLoadingData: Subject<boolean>;
|
|
2356
|
+
abstract filterHasChanged: Subject<void>;
|
|
2357
|
+
abstract httpClient: HttpClient;
|
|
2358
|
+
abstract limit: number;
|
|
2359
|
+
abstract offset: number;
|
|
2360
|
+
abstract filter: any;
|
|
2361
|
+
abstract setLimit(limit: number): void;
|
|
2362
|
+
abstract setOffset(offset: number): void;
|
|
2363
|
+
abstract setFilter<T>(filter: T): void;
|
|
2364
|
+
abstract getData(sortFields?: {
|
|
2365
|
+
field: string;
|
|
2366
|
+
order: 'DES' | 'ASC';
|
|
2367
|
+
}[]): void;
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
interface IPmdsCdkTableCompleteConfig {
|
|
2371
|
+
showSelectRow?: boolean;
|
|
2372
|
+
tableConfig: IPmdsCdkBasicTableConfig;
|
|
2373
|
+
resService: PmdsCdkTableCompleteDataAbstractService;
|
|
2374
|
+
paginatorLiterals?: IPmdsCdkPaginatorLiterals;
|
|
2375
|
+
tableInfoHeader?: IPmdsCdkTableHeaderInfo;
|
|
2376
|
+
}
|
|
2377
|
+
interface IPmdsCdkBasicTableConfig {
|
|
2378
|
+
headerColumns: IPmdsCdkHeaderCompleteConfig[];
|
|
2379
|
+
rowComponent: IPmdsCdkDynamicRowDefaultComponentConfig;
|
|
2380
|
+
fixedColumns?: 'first' | 'first-second';
|
|
2381
|
+
emptyStateLiterals?: {
|
|
2382
|
+
contentWithFilters: string;
|
|
2383
|
+
contentWithoutFilters: string;
|
|
2384
|
+
title: string;
|
|
2385
|
+
buttonText: string;
|
|
2386
|
+
};
|
|
2387
|
+
}
|
|
2388
|
+
interface IPmdsCdkHeaderCompleteConfig {
|
|
2389
|
+
label: string;
|
|
2390
|
+
sortableField?: string;
|
|
2391
|
+
order?: 'ASC' | 'DES' | undefined;
|
|
2392
|
+
styles?: string;
|
|
2393
|
+
tooltip?: string;
|
|
2394
|
+
tooltipTitle?: string;
|
|
2395
|
+
tooltipPosition?: 'top-left' | 'top-center' | 'top-right' | 'bottom-left' | 'bottom-center' | 'bottom-right';
|
|
2396
|
+
}
|
|
2397
|
+
interface IPmdsCdkDynamicRowDefaultComponentConfig {
|
|
2398
|
+
component?: Type<any>;
|
|
2399
|
+
cardComponent?: Type<any>;
|
|
2400
|
+
selectRowAction?: (row: Type<any>) => void;
|
|
2401
|
+
selectCardAction?: (card: Type<any>) => void;
|
|
2402
|
+
selectedRows?: (rows: Type<any>) => void;
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
declare class PmdsCdkTableCompleteComponent implements OnInit, OnDestroy, OnChanges {
|
|
2406
|
+
tableConfiguration: IPmdsCdkTableCompleteConfig;
|
|
2407
|
+
dataQA: string;
|
|
2408
|
+
sortOneColumnAtATime: boolean;
|
|
2409
|
+
filteredFields: string[];
|
|
2410
|
+
cardItemsPerLoad: number;
|
|
2411
|
+
skeleton: boolean;
|
|
2412
|
+
itemsPage: number[];
|
|
2413
|
+
forceTabletView: boolean;
|
|
2414
|
+
initialPaginationInfo: Partial<IPmdsCdkPaginationInfo>;
|
|
2415
|
+
changePage: EventEmitter<number>;
|
|
2416
|
+
changeView: EventEmitter<'card' | 'table'>;
|
|
2417
|
+
clearFilters: EventEmitter<void>;
|
|
2418
|
+
itemChangedPerPage: EventEmitter<number>;
|
|
2419
|
+
actualView: 'card' | 'table';
|
|
2420
|
+
componentSelector: string;
|
|
2421
|
+
data: never[];
|
|
2422
|
+
initialLoading: boolean;
|
|
2423
|
+
loadingOnFilterChange: boolean;
|
|
2424
|
+
loadingOnViewChange: boolean;
|
|
2425
|
+
paginationInfo: IPmdsCdkPaginationInfo;
|
|
2426
|
+
sortableFields: {
|
|
2427
|
+
field: string;
|
|
2428
|
+
order: 'DES' | 'ASC';
|
|
2429
|
+
}[];
|
|
2430
|
+
tableConfig: IPmdsCdkTableConfig | null;
|
|
2431
|
+
private destroy$;
|
|
2432
|
+
ngOnInit(): void;
|
|
2433
|
+
ngOnDestroy(): void;
|
|
2434
|
+
ngOnChanges(): void;
|
|
2435
|
+
get filteredFieldsString(): string;
|
|
2436
|
+
get infoHeaderActions(): {
|
|
2437
|
+
actionIcon: string;
|
|
2438
|
+
actionLabel: string;
|
|
2439
|
+
actionFn: () => void;
|
|
2440
|
+
}[];
|
|
2441
|
+
get showPagination(): boolean | undefined;
|
|
2442
|
+
onItemChangedPerPage(itemsPage: number): void;
|
|
2443
|
+
onChangePage(page: number): void;
|
|
2444
|
+
tableScrollEnd(): void;
|
|
2445
|
+
tableChangeView(ev: 'card' | 'table'): void;
|
|
2446
|
+
sortByField(field: string): void;
|
|
2447
|
+
private getData;
|
|
2448
|
+
private setDefaultComponentsIfNecessary;
|
|
2449
|
+
private setInitialSortFields;
|
|
2450
|
+
private parseTableConfig;
|
|
2451
|
+
private getParsedHeaders;
|
|
2452
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTableCompleteComponent, never>;
|
|
2453
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTableCompleteComponent, "pmds-cdk-table-complete", never, { "tableConfiguration": { "alias": "tableConfiguration"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "sortOneColumnAtATime": { "alias": "sortOneColumnAtATime"; "required": false; }; "filteredFields": { "alias": "filteredFields"; "required": false; }; "cardItemsPerLoad": { "alias": "cardItemsPerLoad"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "itemsPage": { "alias": "itemsPage"; "required": false; }; "forceTabletView": { "alias": "forceTabletView"; "required": false; }; "initialPaginationInfo": { "alias": "initialPaginationInfo"; "required": false; }; }, { "changePage": "changePage"; "changeView": "changeView"; "clearFilters": "clearFilters"; "itemChangedPerPage": "itemChangedPerPage"; }, never, ["*"], true, never>;
|
|
2454
|
+
}
|
|
2455
|
+
|
|
2456
|
+
declare class PmdsCdkTableCompleteDataService implements PmdsCdkTableCompleteDataAbstractService {
|
|
2457
|
+
dataCollectionHasChanged: Subject<IPmdsCdkTableCompleteResponseModel<any>>;
|
|
2458
|
+
loading: BehaviorSubject<boolean>;
|
|
2459
|
+
errorLoadingData: BehaviorSubject<boolean>;
|
|
2460
|
+
filterHasChanged: Subject<void>;
|
|
2461
|
+
httpClient: HttpClient;
|
|
2462
|
+
offset: number;
|
|
2463
|
+
limit: number;
|
|
2464
|
+
filter: any;
|
|
2465
|
+
setFilter<T>(filter: T): void;
|
|
2466
|
+
setLimit(limit: number): void;
|
|
2467
|
+
setOffset(offset: number): void;
|
|
2468
|
+
getData(sortFields?: {
|
|
2469
|
+
field: string;
|
|
2470
|
+
order: 'DES' | 'ASC';
|
|
2471
|
+
}[]): void;
|
|
2472
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTableCompleteDataService, never>;
|
|
2473
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<PmdsCdkTableCompleteDataService>;
|
|
2474
|
+
}
|
|
2475
|
+
|
|
2476
|
+
interface IPmdsCdkButtonsDropdownOption {
|
|
2477
|
+
label: string;
|
|
2478
|
+
actionFn: () => void;
|
|
2479
|
+
}
|
|
2480
|
+
type TPmdsCdkButtonModalSize = 'large' | 'small';
|
|
2481
|
+
type TPmdsCdkButtonModalType = 'double' | 'single' | 'tertiary' | 'double-secondary' | 'single-secondary';
|
|
2482
|
+
|
|
2483
|
+
declare class PmdsCdkButtonDropdownComponent implements AfterViewInit, OnDestroy {
|
|
2484
|
+
optionsContent: ElementRef;
|
|
2485
|
+
buttonLabel: string;
|
|
2486
|
+
dataQA: string;
|
|
2487
|
+
openLeft: boolean;
|
|
2488
|
+
options: IPmdsCdkButtonsDropdownOption[];
|
|
2489
|
+
size: TPmdsCdkButtonModalSize;
|
|
2490
|
+
smallFit: boolean;
|
|
2491
|
+
type: TPmdsCdkButtonModalType;
|
|
2492
|
+
doubleAction: EventEmitter<void>;
|
|
2493
|
+
showOptions: boolean;
|
|
2494
|
+
omitEvent: boolean;
|
|
2495
|
+
componentSelector: string;
|
|
2496
|
+
private renderer;
|
|
2497
|
+
private unlistener;
|
|
2498
|
+
ngAfterViewInit(): void;
|
|
2499
|
+
ngOnDestroy(): void;
|
|
2500
|
+
showContent(): void;
|
|
2501
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkButtonDropdownComponent, never>;
|
|
2502
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkButtonDropdownComponent, "pmds-cdk-button-dropdown", never, { "buttonLabel": { "alias": "buttonLabel"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "openLeft": { "alias": "openLeft"; "required": false; }; "options": { "alias": "options"; "required": false; }; "size": { "alias": "size"; "required": false; }; "smallFit": { "alias": "smallFit"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "doubleAction": "doubleAction"; }, never, never, true, never>;
|
|
2503
|
+
}
|
|
2504
|
+
|
|
2505
|
+
interface IPmdsCdkFooterLiterals {
|
|
2506
|
+
bannerText?: string;
|
|
2507
|
+
simpleLink?: string;
|
|
2508
|
+
simpleText?: string;
|
|
2509
|
+
}
|
|
2510
|
+
|
|
2511
|
+
interface IPmdsCdkFooterLink {
|
|
2512
|
+
label: string;
|
|
2513
|
+
actionFn: () => void;
|
|
2514
|
+
}
|
|
2515
|
+
|
|
2516
|
+
interface IPmdsCdkFooterAction {
|
|
2517
|
+
icon: string;
|
|
2518
|
+
tittle: string;
|
|
2519
|
+
message: string;
|
|
2520
|
+
actionFn: () => void;
|
|
2521
|
+
tagLabel?: string;
|
|
2522
|
+
tagColor?: TPmdsCdkTagLabelColor;
|
|
2523
|
+
}
|
|
2524
|
+
|
|
2525
|
+
type TPmdsCdkFooterLayout = 'simple' | 'contact' | 'banner';
|
|
2526
|
+
|
|
2527
|
+
declare class PmdsCdkFooterComponent {
|
|
2528
|
+
dataQA: string;
|
|
2529
|
+
type: TPmdsCdkFooterLayout;
|
|
2530
|
+
contactItems: IPmdsCdkFooterAction[];
|
|
2531
|
+
linkItems: IPmdsCdkFooterLink[];
|
|
2532
|
+
literals: IPmdsCdkFooterLiterals;
|
|
2533
|
+
selectorComponent: string;
|
|
2534
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkFooterComponent, never>;
|
|
2535
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkFooterComponent, "pmds-cdk-footer", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "type": { "alias": "type"; "required": false; }; "contactItems": { "alias": "contactItems"; "required": false; }; "linkItems": { "alias": "linkItems"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; }, {}, never, never, true, never>;
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
type TPmdsCdkHeaderLayout = 'operational' | 'backoffice';
|
|
2539
|
+
|
|
2540
|
+
interface IPmdsCdkHeaderLiterals {
|
|
2541
|
+
backofficeLabel?: string;
|
|
2542
|
+
modalTitle?: string;
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
interface IPmdsCdkMenuOptions {
|
|
2546
|
+
label: string;
|
|
2547
|
+
action?: () => void;
|
|
2548
|
+
icon?: string;
|
|
2549
|
+
children?: {
|
|
2550
|
+
label: string;
|
|
2551
|
+
action: () => void;
|
|
2552
|
+
}[];
|
|
2553
|
+
}
|
|
2554
|
+
|
|
2555
|
+
interface IPmdsCdkHeaderMobileFooterActionModel {
|
|
2556
|
+
label: string;
|
|
2557
|
+
action?: () => void;
|
|
2558
|
+
icon?: string;
|
|
2559
|
+
}
|
|
2560
|
+
|
|
2561
|
+
declare class PmdsCdkHeaderComponent implements OnInit, AfterViewInit, OnDestroy {
|
|
2562
|
+
optionsContent: ElementRef;
|
|
2563
|
+
companies: IPmdsCdkOptionDropdown[];
|
|
2564
|
+
dataQA: string;
|
|
2565
|
+
initialCompany: IPmdsCdkOptionDropdown;
|
|
2566
|
+
literals: IPmdsCdkHeaderLiterals;
|
|
2567
|
+
notifications: number;
|
|
2568
|
+
notificationsInfo: IPmdsCdkNotificationsPopoverNotification[];
|
|
2569
|
+
titleNotifications: IPmdsCdkNotificationsPopoverLiterals;
|
|
2570
|
+
buttonNotification: IPmdsCdkNotificationsPopoverButton;
|
|
2571
|
+
photoSrc: string;
|
|
2572
|
+
type: TPmdsCdkHeaderLayout;
|
|
2573
|
+
menuConfig: {
|
|
2574
|
+
menuOptions: IPmdsCdkMenuOptions[];
|
|
2575
|
+
};
|
|
2576
|
+
menuFooterAction: IPmdsCdkHeaderMobileFooterActionModel;
|
|
2577
|
+
changeCompany: EventEmitter<IPmdsCdkOptionDropdown>;
|
|
2578
|
+
notificationSelected: EventEmitter<void>;
|
|
2579
|
+
openMenuClick: EventEmitter<void>;
|
|
2580
|
+
showNotification: boolean;
|
|
2581
|
+
omitEvent: boolean;
|
|
2582
|
+
selectedCompany: string;
|
|
2583
|
+
selectedCompanyLabel: string;
|
|
2584
|
+
selectorComponent: string;
|
|
2585
|
+
isMobile: boolean;
|
|
2586
|
+
showMenu: boolean;
|
|
2587
|
+
documentHeight: number;
|
|
2588
|
+
documentWidth: number;
|
|
2589
|
+
private modalSrv;
|
|
2590
|
+
private unlistener;
|
|
2591
|
+
private renderer;
|
|
2592
|
+
private destroy$;
|
|
2593
|
+
onResize(): void;
|
|
2594
|
+
ngOnInit(): void;
|
|
2595
|
+
ngOnDestroy(): void;
|
|
2596
|
+
ngAfterViewInit(): void;
|
|
2597
|
+
setCompany(companiesValue: string | string[]): void;
|
|
2598
|
+
openModal(): void;
|
|
2599
|
+
toggleMenu(): void;
|
|
2600
|
+
toggleShowOption(forceClose?: boolean, omitEvent?: boolean): void;
|
|
2601
|
+
close(): void;
|
|
2602
|
+
onTouch: () => undefined;
|
|
2603
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkHeaderComponent, never>;
|
|
2604
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkHeaderComponent, "pmds-cdk-header", never, { "companies": { "alias": "companies"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "initialCompany": { "alias": "initialCompany"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "notifications": { "alias": "notifications"; "required": false; }; "notificationsInfo": { "alias": "notificationsInfo"; "required": false; }; "titleNotifications": { "alias": "titleNotifications"; "required": false; }; "buttonNotification": { "alias": "buttonNotification"; "required": false; }; "photoSrc": { "alias": "photoSrc"; "required": false; }; "type": { "alias": "type"; "required": false; }; "menuConfig": { "alias": "menuConfig"; "required": false; }; "menuFooterAction": { "alias": "menuFooterAction"; "required": false; }; }, { "changeCompany": "changeCompany"; "notificationSelected": "notificationSelected"; "openMenuClick": "openMenuClick"; }, never, never, true, never>;
|
|
2605
|
+
}
|
|
2606
|
+
|
|
2607
|
+
declare class PmdsCdkButtonAllFiltersComponent {
|
|
2608
|
+
dataQA: string;
|
|
2609
|
+
disabled: boolean;
|
|
2610
|
+
open: boolean;
|
|
2611
|
+
label: string;
|
|
2612
|
+
buttonClick: EventEmitter<void>;
|
|
2613
|
+
componentSelector: string;
|
|
2614
|
+
onButtonClick(): void;
|
|
2615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkButtonAllFiltersComponent, never>;
|
|
2616
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkButtonAllFiltersComponent, "pmds-cdk-button-all-filters", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "open": { "alias": "open"; "required": false; }; "label": { "alias": "label"; "required": false; }; }, { "buttonClick": "buttonClick"; }, never, never, true, never>;
|
|
2617
|
+
}
|
|
2618
|
+
|
|
2619
|
+
interface IPmdsCdkShortcutItem {
|
|
2620
|
+
label: string;
|
|
2621
|
+
icon: string;
|
|
2622
|
+
isDisabled?: boolean;
|
|
2623
|
+
actionFn: () => void;
|
|
2624
|
+
}
|
|
2625
|
+
|
|
2626
|
+
declare class PmdsCdkShortcutComponent {
|
|
2627
|
+
scrollSection: ElementRef;
|
|
2628
|
+
dataQA: string;
|
|
2629
|
+
flexWidth: boolean;
|
|
2630
|
+
shortcutItems: IPmdsCdkShortcutItem[];
|
|
2631
|
+
skeleton: boolean;
|
|
2632
|
+
componentSelector: string;
|
|
2633
|
+
scrollSectionAction(toEnd: boolean): void;
|
|
2634
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkShortcutComponent, never>;
|
|
2635
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkShortcutComponent, "pmds-cdk-shortcut", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "flexWidth": { "alias": "flexWidth"; "required": false; }; "shortcutItems": { "alias": "shortcutItems"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, {}, never, never, true, never>;
|
|
2636
|
+
}
|
|
2637
|
+
|
|
2638
|
+
type TPmdsCdkProfilePhotoLayout = 'label' | 'photo';
|
|
2639
|
+
|
|
2640
|
+
declare class PmdsCdkProfilePhotoComponent implements OnInit {
|
|
2641
|
+
dataQA: string;
|
|
2642
|
+
label: string;
|
|
2643
|
+
photo: string;
|
|
2644
|
+
type: TPmdsCdkProfilePhotoLayout;
|
|
2645
|
+
componentSelector: string;
|
|
2646
|
+
parseLabel: string;
|
|
2647
|
+
ngOnInit(): void;
|
|
2648
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkProfilePhotoComponent, never>;
|
|
2649
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkProfilePhotoComponent, "pmds-cdk-profile-photo", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "label": { "alias": "label"; "required": false; }; "photo": { "alias": "photo"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, true, never>;
|
|
2650
|
+
}
|
|
2651
|
+
|
|
2652
|
+
type TPmdsCdkCalendarEventType = 'CONFIRMED' | 'PENDING' | 'SETTLED' | 'CUSTOM';
|
|
2653
|
+
|
|
2654
|
+
interface IPmdsCdkCalendarEvent {
|
|
2655
|
+
eventTitle: string;
|
|
2656
|
+
eventSubtitle: string;
|
|
2657
|
+
eventDate: Date;
|
|
2658
|
+
eventType: TPmdsCdkCalendarEventType;
|
|
2659
|
+
}
|
|
2660
|
+
|
|
2661
|
+
interface IPmdsCdkCalendarLiterals {
|
|
2662
|
+
addEvent: string;
|
|
2663
|
+
today: string;
|
|
2664
|
+
title: string;
|
|
2665
|
+
withoutEvents: string;
|
|
2666
|
+
suffixDays: {
|
|
2667
|
+
fisrt: string;
|
|
2668
|
+
second: string;
|
|
2669
|
+
third: string;
|
|
2670
|
+
others: string;
|
|
2671
|
+
};
|
|
2672
|
+
month: [
|
|
2673
|
+
string,
|
|
2674
|
+
string,
|
|
2675
|
+
string,
|
|
2676
|
+
string,
|
|
2677
|
+
string,
|
|
2678
|
+
string,
|
|
2679
|
+
string,
|
|
2680
|
+
string,
|
|
2681
|
+
string,
|
|
2682
|
+
string,
|
|
2683
|
+
string,
|
|
2684
|
+
string
|
|
2685
|
+
];
|
|
2686
|
+
weekDay: [string, string, string, string, string, string, string];
|
|
2687
|
+
}
|
|
2688
|
+
|
|
2689
|
+
interface IPmdsCdkCalendarEventShow {
|
|
2690
|
+
[day: number]: {
|
|
2691
|
+
title: string;
|
|
2692
|
+
events: IPmdsCdkCalendarEvent[];
|
|
2693
|
+
};
|
|
2694
|
+
}
|
|
2695
|
+
|
|
2696
|
+
declare class PmdsCdkCalendarComponent implements OnInit {
|
|
2697
|
+
dataQA: string;
|
|
2698
|
+
events: IPmdsCdkCalendarEvent[];
|
|
2699
|
+
literals: IPmdsCdkCalendarLiterals;
|
|
2700
|
+
showEvents: boolean;
|
|
2701
|
+
isMultiple: boolean;
|
|
2702
|
+
skeleton: boolean;
|
|
2703
|
+
addEvent: EventEmitter<void>;
|
|
2704
|
+
selectEvent: EventEmitter<IPmdsCdkCalendarEvent>;
|
|
2705
|
+
changeMonth: EventEmitter<Date>;
|
|
2706
|
+
componentSelector: string;
|
|
2707
|
+
daySelected: number;
|
|
2708
|
+
daysArray: {
|
|
2709
|
+
day: number;
|
|
2710
|
+
events: IPmdsCdkCalendarEvent[];
|
|
2711
|
+
}[];
|
|
2712
|
+
eventsShow: IPmdsCdkCalendarEventShow | null;
|
|
2713
|
+
firstDayOfMonthWeekday: number;
|
|
2714
|
+
monthSelected: number;
|
|
2715
|
+
selectedDates: Date[];
|
|
2716
|
+
yearSelected: number;
|
|
2717
|
+
ngOnInit(): void;
|
|
2718
|
+
changeMonthClick(change: number): void;
|
|
2719
|
+
selectDay(day: number): void;
|
|
2720
|
+
selectToday(): void;
|
|
2721
|
+
private fillCalendardisplayMonth;
|
|
2722
|
+
private getEvents;
|
|
2723
|
+
private getEventShow;
|
|
2724
|
+
private groupEvent;
|
|
2725
|
+
private getGroupTitle;
|
|
2726
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCalendarComponent, never>;
|
|
2727
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCalendarComponent, "pmds-cdk-calendar", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "events": { "alias": "events"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "showEvents": { "alias": "showEvents"; "required": false; }; "isMultiple": { "alias": "isMultiple"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "addEvent": "addEvent"; "selectEvent": "selectEvent"; "changeMonth": "changeMonth"; }, never, never, true, never>;
|
|
2728
|
+
}
|
|
2729
|
+
|
|
2730
|
+
type TPmdsCdkTextType = 'module-title' | 'section-title' | 'description' | 'category';
|
|
2731
|
+
|
|
2732
|
+
declare class PmdsCdkTextComponent {
|
|
2733
|
+
dataQA: string;
|
|
2734
|
+
type: TPmdsCdkTextType;
|
|
2735
|
+
text: string;
|
|
2736
|
+
componentSelector: string;
|
|
2737
|
+
typeSet: {
|
|
2738
|
+
'section-title': string;
|
|
2739
|
+
'module-title': string;
|
|
2740
|
+
category: string;
|
|
2741
|
+
description: string;
|
|
2742
|
+
};
|
|
2743
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkTextComponent, never>;
|
|
2744
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkTextComponent, "pmds-cdk-text", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "type": { "alias": "type"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, never, true, never>;
|
|
2745
|
+
}
|
|
2746
|
+
|
|
2747
|
+
type TPmdsCdkMenuSubmenuType = 'OPERATIONAL' | 'ADMIN';
|
|
2748
|
+
|
|
2749
|
+
declare class PmdsCdkMenuAndSubmenuComponent implements AfterViewInit, OnDestroy, OnChanges {
|
|
2750
|
+
dataQA: string;
|
|
2751
|
+
selectMenu: string;
|
|
2752
|
+
selectSubmenu: string;
|
|
2753
|
+
menuOptions: IPmdsCdkMenuOptions[];
|
|
2754
|
+
type: TPmdsCdkMenuSubmenuType;
|
|
2755
|
+
selectedMenuItemChange: EventEmitter<{
|
|
2756
|
+
menuItem: string;
|
|
2757
|
+
submenuItem: string;
|
|
2758
|
+
}>;
|
|
2759
|
+
menuComponent: ElementRef;
|
|
2760
|
+
componentSelector: string;
|
|
2761
|
+
selectedMenuItem: string;
|
|
2762
|
+
selectedSubmenuItem: string;
|
|
2763
|
+
openMenu: string;
|
|
2764
|
+
private renderer;
|
|
2765
|
+
private unlistener;
|
|
2766
|
+
ngAfterViewInit(): void;
|
|
2767
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
2768
|
+
ngOnDestroy(): void;
|
|
2769
|
+
setMenuItem(menuItem: string): void;
|
|
2770
|
+
openOnHover(menuItem: IPmdsCdkMenuOptions): void;
|
|
2771
|
+
setSubmenuItem(menuItem: string, submenuItem: string): void;
|
|
2772
|
+
selectMenuButton(menuItem: IPmdsCdkMenuOptions, $event: MouseEvent): void;
|
|
2773
|
+
private closeSubmenu;
|
|
2774
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkMenuAndSubmenuComponent, never>;
|
|
2775
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkMenuAndSubmenuComponent, "pmds-cdk-menu-and-submenu", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "selectMenu": { "alias": "selectMenu"; "required": false; }; "selectSubmenu": { "alias": "selectSubmenu"; "required": false; }; "menuOptions": { "alias": "menuOptions"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "selectedMenuItemChange": "selectedMenuItemChange"; }, never, never, true, never>;
|
|
2776
|
+
}
|
|
2777
|
+
|
|
2778
|
+
interface IPmdsCdkPendingTaskLiterals {
|
|
2779
|
+
title: string;
|
|
2780
|
+
view: string;
|
|
2781
|
+
viewAll: string;
|
|
2782
|
+
noTasksTitle: string;
|
|
2783
|
+
noTasksMsg: string;
|
|
2784
|
+
}
|
|
2785
|
+
|
|
2786
|
+
interface IPmdsCdkPendingTaskGroup {
|
|
2787
|
+
label: string;
|
|
2788
|
+
tasks: number;
|
|
2789
|
+
}
|
|
2790
|
+
|
|
2791
|
+
declare class PmdsCdkPendingTaskComponent implements OnInit {
|
|
2792
|
+
dataQA: string;
|
|
2793
|
+
groupTasks: IPmdsCdkPendingTaskGroup[];
|
|
2794
|
+
literals: IPmdsCdkPendingTaskLiterals;
|
|
2795
|
+
skeleton: boolean;
|
|
2796
|
+
viewAll: EventEmitter<void>;
|
|
2797
|
+
viewGroup: EventEmitter<IPmdsCdkPendingTaskGroup>;
|
|
2798
|
+
componentSelector: string;
|
|
2799
|
+
totalTask: number;
|
|
2800
|
+
ngOnInit(): void;
|
|
2801
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkPendingTaskComponent, never>;
|
|
2802
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkPendingTaskComponent, "pmds-cdk-pending-task", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "groupTasks": { "alias": "groupTasks"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "viewAll": "viewAll"; "viewGroup": "viewGroup"; }, never, never, true, never>;
|
|
2803
|
+
}
|
|
2804
|
+
|
|
2805
|
+
interface IPmdsCdkCardsSelectorOptionLiterals {
|
|
2806
|
+
label: string;
|
|
2807
|
+
helperText?: string;
|
|
2808
|
+
value?: string;
|
|
2809
|
+
helperValue?: string;
|
|
2810
|
+
icon?: string;
|
|
2811
|
+
}
|
|
2812
|
+
interface IPmdsCdkCardsSelectorImages {
|
|
2813
|
+
images?: string[];
|
|
2814
|
+
widthStyle?: string;
|
|
2815
|
+
heightStyle?: string;
|
|
2816
|
+
}
|
|
2817
|
+
interface IPmdsCdkCardsSelectorTooltip {
|
|
2818
|
+
title?: string;
|
|
2819
|
+
content: string;
|
|
2820
|
+
position?: TPmdsDirectiveTooltipPosition;
|
|
2821
|
+
}
|
|
2822
|
+
|
|
2823
|
+
declare class PmdsCdkCardsSelectorComponent {
|
|
2824
|
+
dataQA: string;
|
|
2825
|
+
disabled: boolean;
|
|
2826
|
+
id: string;
|
|
2827
|
+
isSelected: boolean;
|
|
2828
|
+
labelImages: IPmdsCdkCardsSelectorImages;
|
|
2829
|
+
literals: IPmdsCdkCardsSelectorOptionLiterals;
|
|
2830
|
+
skeleton: boolean;
|
|
2831
|
+
skeletonAdditionalContent: boolean;
|
|
2832
|
+
tooltip: IPmdsCdkCardsSelectorTooltip | undefined;
|
|
2833
|
+
selected: EventEmitter<string>;
|
|
2834
|
+
componentSelector: string;
|
|
2835
|
+
clicked(): void;
|
|
2836
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCardsSelectorComponent, never>;
|
|
2837
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCardsSelectorComponent, "pmds-cdk-cards-selector", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; "labelImages": { "alias": "labelImages"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "skeletonAdditionalContent": { "alias": "skeletonAdditionalContent"; "required": false; }; "tooltip": { "alias": "tooltip"; "required": false; }; }, { "selected": "selected"; }, never, ["*"], true, never>;
|
|
2838
|
+
}
|
|
2839
|
+
|
|
2840
|
+
interface IPmdsCdkCardsSettingsItem {
|
|
2841
|
+
tagLabel?: {
|
|
2842
|
+
color: TPmdsCdkTagLabelColor;
|
|
2843
|
+
label: string;
|
|
2844
|
+
};
|
|
2845
|
+
field?: IPmdsCdkTextField;
|
|
2846
|
+
value?: string;
|
|
2847
|
+
checkBoxValue?: boolean;
|
|
2848
|
+
switchValue?: boolean;
|
|
2849
|
+
}
|
|
2850
|
+
|
|
2851
|
+
type TPmdsCdkCardsSettingsType = 'moveDelete' | 'toggle';
|
|
2852
|
+
|
|
2853
|
+
declare class PmdsCdkCardsSettingsComponent {
|
|
2854
|
+
dataQA: string;
|
|
2855
|
+
settingsItems: IPmdsCdkCardsSettingsItem[];
|
|
2856
|
+
showCheckbox: boolean;
|
|
2857
|
+
showDeleteAction: boolean;
|
|
2858
|
+
showEditAction: boolean;
|
|
2859
|
+
skeleton: boolean;
|
|
2860
|
+
type: TPmdsCdkCardsSettingsType;
|
|
2861
|
+
editedItem: EventEmitter<IPmdsCdkCardsSettingsItem>;
|
|
2862
|
+
checkedItem: EventEmitter<IPmdsCdkCardsSettingsItem>;
|
|
2863
|
+
toggledItem: EventEmitter<IPmdsCdkCardsSettingsItem>;
|
|
2864
|
+
deletedItem: EventEmitter<IPmdsCdkCardsSettingsItem>;
|
|
2865
|
+
componentSelector: string;
|
|
2866
|
+
drop(event: CdkDragDrop<IPmdsCdkCardsSettingsItem[]>): void;
|
|
2867
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkCardsSettingsComponent, never>;
|
|
2868
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkCardsSettingsComponent, "pmds-cdk-cards-settings", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "settingsItems": { "alias": "settingsItems"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "showDeleteAction": { "alias": "showDeleteAction"; "required": false; }; "showEditAction": { "alias": "showEditAction"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, { "editedItem": "editedItem"; "checkedItem": "checkedItem"; "toggledItem": "toggledItem"; "deletedItem": "deletedItem"; }, never, never, true, never>;
|
|
2869
|
+
}
|
|
2870
|
+
|
|
2871
|
+
interface IPmdsCdkPhoneCountryOptionDropdown {
|
|
2872
|
+
codeCountry: string;
|
|
2873
|
+
country: string;
|
|
2874
|
+
label: string;
|
|
2875
|
+
value: string;
|
|
2876
|
+
}
|
|
2877
|
+
|
|
2878
|
+
interface IPmdsCdkPhoneInputLiterals {
|
|
2879
|
+
placeholder: string;
|
|
2880
|
+
searchPlaceholder: string;
|
|
2881
|
+
emptyStateTitle: string;
|
|
2882
|
+
emptyStateContent: string;
|
|
2883
|
+
helperText?: string;
|
|
2884
|
+
}
|
|
2885
|
+
|
|
2886
|
+
declare class PmdsCdkPhoneInputComponent implements OnInit, OnDestroy, AfterViewInit, OnChanges {
|
|
2887
|
+
optionsContent: ElementRef;
|
|
2888
|
+
optionsDropdown: ElementRef;
|
|
2889
|
+
optionsDropdownContainer: ElementRef;
|
|
2890
|
+
assetsFolder: string;
|
|
2891
|
+
dataQA: string;
|
|
2892
|
+
formControlName: string;
|
|
2893
|
+
isDisabled: boolean;
|
|
2894
|
+
skeleton: boolean;
|
|
2895
|
+
literals: IPmdsCdkPhoneInputLiterals;
|
|
2896
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
2897
|
+
options: IPmdsCdkPhoneCountryOptionDropdown[];
|
|
2898
|
+
initialValue: IPmdsCdkPhoneCountryOptionDropdown | undefined;
|
|
2899
|
+
currencySelected: EventEmitter<IPmdsCdkPhoneCountryOptionDropdown>;
|
|
2900
|
+
componentSelector: string;
|
|
2901
|
+
control: AbstractControl;
|
|
2902
|
+
currentFilter: string;
|
|
2903
|
+
enableSearch: boolean;
|
|
2904
|
+
error: boolean;
|
|
2905
|
+
filteredOptions: IPmdsCdkPhoneCountryOptionDropdown[];
|
|
2906
|
+
inputFocused: boolean;
|
|
2907
|
+
omitEvent: boolean;
|
|
2908
|
+
selectedValue: IPmdsCdkPhoneCountryOptionDropdown | null;
|
|
2909
|
+
showOptions: boolean;
|
|
2910
|
+
searchInputHasFocus: boolean;
|
|
2911
|
+
value: string;
|
|
2912
|
+
showDropdownOnTop: boolean;
|
|
2913
|
+
private controlContainer;
|
|
2914
|
+
private destroy$;
|
|
2915
|
+
private renderer;
|
|
2916
|
+
private unlistener;
|
|
2917
|
+
get dropdownNgClass(): {
|
|
2918
|
+
'bg-color-surface-disabled border-color-border-disabled text-color-text-disabled pointer-events-none': boolean;
|
|
2919
|
+
'bg-color-surface-primary text-color-text-primary border-color-border-default': boolean;
|
|
2920
|
+
'!border-color-border-focus': boolean;
|
|
2921
|
+
'border-r-transparent': boolean;
|
|
2922
|
+
};
|
|
2923
|
+
get inputNgClass(): {
|
|
2924
|
+
'border-color-border-default text-color-text-primary': boolean;
|
|
2925
|
+
'border-color-border-error': boolean;
|
|
2926
|
+
'border-color-border-disabled bg-color-surface-disabled text-color-text-disabled': boolean;
|
|
2927
|
+
'pointer-events-none': boolean;
|
|
2928
|
+
};
|
|
2929
|
+
ngOnInit(): void;
|
|
2930
|
+
ngOnChanges(): void;
|
|
2931
|
+
ngOnDestroy(): void;
|
|
2932
|
+
ngAfterViewInit(): void;
|
|
2933
|
+
searchInputFocusChange(focus: boolean): void;
|
|
2934
|
+
getFilteredOptions(): void;
|
|
2935
|
+
selectOption(option: IPmdsCdkPhoneCountryOptionDropdown, event?: Event): void;
|
|
2936
|
+
updateClearButtonOnFocus(focusedOnInput: boolean): void;
|
|
2937
|
+
sortOptions(options: IPmdsCdkPhoneCountryOptionDropdown[]): IPmdsCdkPhoneCountryOptionDropdown[];
|
|
2938
|
+
toggleShowOption(forceClose?: boolean, omitEvent?: boolean): void;
|
|
2939
|
+
preventClose(evt: Event): void;
|
|
2940
|
+
onInput(event?: Event): void;
|
|
2941
|
+
onPaste(event: Event): void;
|
|
2942
|
+
checkErrors(): void;
|
|
2943
|
+
cancel(): void;
|
|
2944
|
+
writeValue(value: string): void;
|
|
2945
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
2946
|
+
registerOnTouched(fn: () => undefined): void;
|
|
2947
|
+
onChange: (_: unknown) => void;
|
|
2948
|
+
onTouch: () => undefined;
|
|
2949
|
+
private getTrimmedAndLowerCaseString;
|
|
2950
|
+
private scrollOption;
|
|
2951
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkPhoneInputComponent, never>;
|
|
2952
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkPhoneInputComponent, "pmds-cdk-phone-input", never, { "assetsFolder": { "alias": "assetsFolder"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; "literals": { "alias": "literals"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "options": { "alias": "options"; "required": false; }; "initialValue": { "alias": "initialValue"; "required": false; }; }, { "currencySelected": "currencySelected"; }, never, never, true, never>;
|
|
2953
|
+
}
|
|
2954
|
+
|
|
2955
|
+
interface IPmdsCdkGraphsLineChartConfig {
|
|
2956
|
+
height?: number;
|
|
2957
|
+
lines?: number;
|
|
2958
|
+
subtitle?: string;
|
|
2959
|
+
title?: string;
|
|
2960
|
+
onlyChart?: boolean;
|
|
2961
|
+
yLabel?: (value: number) => string;
|
|
2962
|
+
noData?: {
|
|
2963
|
+
title: string;
|
|
2964
|
+
content: string;
|
|
2965
|
+
buttonText?: string;
|
|
2966
|
+
icon?: string;
|
|
2967
|
+
disabledButton?: boolean;
|
|
2968
|
+
buttonClick?: () => void;
|
|
2969
|
+
};
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
interface IPmdsCdkGraphsLineChartData {
|
|
2973
|
+
value: string[];
|
|
2974
|
+
valueSecondLine?: string[];
|
|
2975
|
+
valueMobile?: string[];
|
|
2976
|
+
lines: {
|
|
2977
|
+
value: number[];
|
|
2978
|
+
label: string;
|
|
2979
|
+
tooltip?: (value: number, label: string, xValue: string) => string;
|
|
2980
|
+
}[];
|
|
2981
|
+
}
|
|
2982
|
+
|
|
2983
|
+
interface IPmdsCdkGraphsLineChartYLines {
|
|
2984
|
+
y: number;
|
|
2985
|
+
value: number;
|
|
2986
|
+
label: string;
|
|
2987
|
+
}
|
|
2988
|
+
interface IPmdsCdkGraphsLineChartLines {
|
|
2989
|
+
d: string;
|
|
2990
|
+
color: string;
|
|
2991
|
+
}
|
|
2992
|
+
interface IPmdsCdkGraphsLineChartPoints {
|
|
2993
|
+
x: number;
|
|
2994
|
+
y: number;
|
|
2995
|
+
tooltip: string;
|
|
2996
|
+
color: string;
|
|
2997
|
+
}
|
|
2998
|
+
interface IPmdsCdkGraphsLineChartGraphicLegend {
|
|
2999
|
+
label: string;
|
|
3000
|
+
color: string;
|
|
3001
|
+
}
|
|
3002
|
+
interface IPmdsCdkGraphsLineChartXLabels {
|
|
3003
|
+
x: number;
|
|
3004
|
+
label: string;
|
|
3005
|
+
labelSecondLine?: string;
|
|
3006
|
+
labelMobile: string;
|
|
3007
|
+
}
|
|
3008
|
+
|
|
3009
|
+
declare class PmdsCdkGraphsLineChartComponent implements AfterViewInit, OnInit, AfterViewInit {
|
|
3010
|
+
graphSVG: ElementRef;
|
|
3011
|
+
dataQA: string;
|
|
3012
|
+
data: IPmdsCdkGraphsLineChartData;
|
|
3013
|
+
config: IPmdsCdkGraphsLineChartConfig;
|
|
3014
|
+
isLoading: boolean;
|
|
3015
|
+
lines: IPmdsCdkGraphsLineChartLines[];
|
|
3016
|
+
points: IPmdsCdkGraphsLineChartPoints[][];
|
|
3017
|
+
graphicLegend: IPmdsCdkGraphsLineChartGraphicLegend[];
|
|
3018
|
+
testLine: string;
|
|
3019
|
+
lineActive: boolean[];
|
|
3020
|
+
lineShow: boolean[][];
|
|
3021
|
+
coefY: number;
|
|
3022
|
+
graphHeight: number;
|
|
3023
|
+
offsetWidth: number;
|
|
3024
|
+
paddingBottom: number;
|
|
3025
|
+
viewBox: string;
|
|
3026
|
+
xLabels: IPmdsCdkGraphsLineChartXLabels[];
|
|
3027
|
+
y0Axis: number;
|
|
3028
|
+
yLabelsWidth: number;
|
|
3029
|
+
yLastAxis: number;
|
|
3030
|
+
yLines: IPmdsCdkGraphsLineChartYLines[];
|
|
3031
|
+
private elementRef;
|
|
3032
|
+
onResize(): void;
|
|
3033
|
+
onGlobalClick(event: Element): void;
|
|
3034
|
+
private elem;
|
|
3035
|
+
componentSelector: string;
|
|
3036
|
+
ngOnInit(): void;
|
|
3037
|
+
ngAfterViewInit(): void;
|
|
3038
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3039
|
+
selectLine(isHover: boolean, lineIndex?: number, pointIndex?: number): void;
|
|
3040
|
+
private calculateYAxis;
|
|
3041
|
+
private roundNumber;
|
|
3042
|
+
private parseRefencesValues;
|
|
3043
|
+
private calculateYLabelsWidth;
|
|
3044
|
+
private calculateLines;
|
|
3045
|
+
private calculateXLabels;
|
|
3046
|
+
private calculateGraphicLegend;
|
|
3047
|
+
private getBgColor;
|
|
3048
|
+
private getStrokeColor;
|
|
3049
|
+
private widthCheck;
|
|
3050
|
+
private initData;
|
|
3051
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkGraphsLineChartComponent, never>;
|
|
3052
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkGraphsLineChartComponent, "pmds-cdk-graphs-line-chart", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "data": { "alias": "data"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3053
|
+
}
|
|
3054
|
+
|
|
3055
|
+
interface IPmdsCdkGraphsSequentialBarChartConfig {
|
|
3056
|
+
height?: number;
|
|
3057
|
+
lines?: number;
|
|
3058
|
+
source?: string;
|
|
3059
|
+
subtitle?: string;
|
|
3060
|
+
title?: string;
|
|
3061
|
+
onlyChart?: boolean;
|
|
3062
|
+
yLabel?: (value: number) => string;
|
|
3063
|
+
noData?: {
|
|
3064
|
+
title: string;
|
|
3065
|
+
content: string;
|
|
3066
|
+
buttonText?: string;
|
|
3067
|
+
icon?: string;
|
|
3068
|
+
disabledButton?: boolean;
|
|
3069
|
+
buttonClick?: () => void;
|
|
3070
|
+
};
|
|
3071
|
+
}
|
|
3072
|
+
|
|
3073
|
+
interface IPmdsCdkGraphsSequentialBarChartData {
|
|
3074
|
+
value: number;
|
|
3075
|
+
label: string;
|
|
3076
|
+
labelSecondLine?: string;
|
|
3077
|
+
labelMobile?: string;
|
|
3078
|
+
tooltip?: (value: number) => string;
|
|
3079
|
+
}
|
|
3080
|
+
|
|
3081
|
+
interface IPmdsCdkGraphsSequentialBarChartYLines {
|
|
3082
|
+
y: number;
|
|
3083
|
+
value: number;
|
|
3084
|
+
label: string;
|
|
3085
|
+
}
|
|
3086
|
+
interface IPmdsCdkGraphsSequentialBarChartBars {
|
|
3087
|
+
x: number;
|
|
3088
|
+
y: number;
|
|
3089
|
+
d: string;
|
|
3090
|
+
tooltip: string;
|
|
3091
|
+
}
|
|
3092
|
+
interface IPmdsCdkGraphsSequentialBarChartXLabels {
|
|
3093
|
+
x: number;
|
|
3094
|
+
label: string;
|
|
3095
|
+
labelSecondLine?: string;
|
|
3096
|
+
labelMobile: string;
|
|
3097
|
+
}
|
|
3098
|
+
|
|
3099
|
+
declare class PmdsCdkGraphsSequentialBarChartComponent implements AfterViewInit, OnChanges {
|
|
3100
|
+
graphSVG: ElementRef;
|
|
3101
|
+
dataQA: string;
|
|
3102
|
+
data: IPmdsCdkGraphsSequentialBarChartData[];
|
|
3103
|
+
config: IPmdsCdkGraphsSequentialBarChartConfig;
|
|
3104
|
+
isLoading: boolean;
|
|
3105
|
+
bars: IPmdsCdkGraphsSequentialBarChartBars[];
|
|
3106
|
+
barsActive: boolean[];
|
|
3107
|
+
barsShow: boolean[];
|
|
3108
|
+
barsWidth: number;
|
|
3109
|
+
coefY: number;
|
|
3110
|
+
graphHeight: number;
|
|
3111
|
+
offsetWidth: number;
|
|
3112
|
+
paddingBottom: number;
|
|
3113
|
+
viewBox: string;
|
|
3114
|
+
xLabels: IPmdsCdkGraphsSequentialBarChartXLabels[];
|
|
3115
|
+
y0Axis: number;
|
|
3116
|
+
yLabelsWidth: number;
|
|
3117
|
+
yLastAxis: number;
|
|
3118
|
+
yLines: IPmdsCdkGraphsSequentialBarChartYLines[];
|
|
3119
|
+
private elementRef;
|
|
3120
|
+
onResize(): void;
|
|
3121
|
+
onGlobalClick(event: Element): void;
|
|
3122
|
+
private elem;
|
|
3123
|
+
componentSelector: string;
|
|
3124
|
+
ngAfterViewInit(): void;
|
|
3125
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3126
|
+
selectBar(isHover: boolean, index?: number): void;
|
|
3127
|
+
private calculateBarsWidth;
|
|
3128
|
+
private calculateYAxis;
|
|
3129
|
+
private roundNumber;
|
|
3130
|
+
private parseRefencesValues;
|
|
3131
|
+
private calculateYLabelsWidth;
|
|
3132
|
+
private calculateBars;
|
|
3133
|
+
private calculateDValue;
|
|
3134
|
+
private calculateXLabels;
|
|
3135
|
+
private widthCheck;
|
|
3136
|
+
private initData;
|
|
3137
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkGraphsSequentialBarChartComponent, never>;
|
|
3138
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkGraphsSequentialBarChartComponent, "pmds-cdk-graphs-sequential-bar-chart", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "data": { "alias": "data"; "required": false; }; "config": { "alias": "config"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3139
|
+
}
|
|
3140
|
+
|
|
3141
|
+
interface IPmdsCdkGraphsPieChartConfig {
|
|
3142
|
+
height?: number;
|
|
3143
|
+
subtitle?: string;
|
|
3144
|
+
title?: string;
|
|
3145
|
+
onlyChart?: boolean;
|
|
3146
|
+
noData?: {
|
|
3147
|
+
title: string;
|
|
3148
|
+
content: string;
|
|
3149
|
+
buttonText?: string;
|
|
3150
|
+
icon?: string;
|
|
3151
|
+
disabledButton?: boolean;
|
|
3152
|
+
buttonClick?: () => void;
|
|
3153
|
+
};
|
|
3154
|
+
}
|
|
3155
|
+
|
|
3156
|
+
interface IPmdsCdkGraphsPieChartData {
|
|
3157
|
+
label: string;
|
|
3158
|
+
tooltip?: (percent: number, value: number, label: string) => string;
|
|
3159
|
+
value: number;
|
|
3160
|
+
}
|
|
3161
|
+
|
|
3162
|
+
interface IPmdsCdkGraphsPieChartGraphicLegend {
|
|
3163
|
+
label: string;
|
|
3164
|
+
color: string;
|
|
3165
|
+
}
|
|
3166
|
+
|
|
3167
|
+
declare class PmdsCdkGraphsPieChartComponent implements OnInit, OnChanges {
|
|
3168
|
+
dataQA: string;
|
|
3169
|
+
config: IPmdsCdkGraphsPieChartConfig;
|
|
3170
|
+
data: IPmdsCdkGraphsPieChartData[];
|
|
3171
|
+
isLoading: boolean;
|
|
3172
|
+
componentSelector: string;
|
|
3173
|
+
graphicLegend: IPmdsCdkGraphsPieChartGraphicLegend[];
|
|
3174
|
+
pieActive: boolean[];
|
|
3175
|
+
pieShow: boolean[];
|
|
3176
|
+
pies: any;
|
|
3177
|
+
radio: number;
|
|
3178
|
+
private elementRef;
|
|
3179
|
+
onGlobalClick(event: Element): void;
|
|
3180
|
+
ngOnInit(): void;
|
|
3181
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
3182
|
+
selectPie(isHover: boolean, index?: number): void;
|
|
3183
|
+
private generatePieChart;
|
|
3184
|
+
private calculateGraphicLegend;
|
|
3185
|
+
private getBgColor;
|
|
3186
|
+
private getFillColor;
|
|
3187
|
+
private initData;
|
|
3188
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkGraphsPieChartComponent, never>;
|
|
3189
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkGraphsPieChartComponent, "pmds-cdk-graphs-pie-chart", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "config": { "alias": "config"; "required": false; }; "data": { "alias": "data"; "required": false; }; "isLoading": { "alias": "isLoading"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
3190
|
+
}
|
|
3191
|
+
|
|
3192
|
+
interface IPmdsCdkAutocompleteMultidestinataryItem {
|
|
3193
|
+
id: string;
|
|
3194
|
+
label: string;
|
|
3195
|
+
}
|
|
3196
|
+
|
|
3197
|
+
interface IPmdsCdkAutocompleteMultidestinataryStates {
|
|
3198
|
+
isNoResults?: boolean;
|
|
3199
|
+
isLoading?: boolean;
|
|
3200
|
+
}
|
|
3201
|
+
|
|
3202
|
+
interface IPmdsCdkAutocompleteMultidestinataryConfig {
|
|
3203
|
+
customHeight?: string;
|
|
3204
|
+
placeholder: string;
|
|
3205
|
+
icon: string;
|
|
3206
|
+
iconResults: string;
|
|
3207
|
+
loadingLiteral: string;
|
|
3208
|
+
more10Literal: string;
|
|
3209
|
+
noResultsLiterals: {
|
|
3210
|
+
noResult: string;
|
|
3211
|
+
instructions: string;
|
|
3212
|
+
};
|
|
3213
|
+
helperText: string;
|
|
3214
|
+
}
|
|
3215
|
+
|
|
3216
|
+
declare const PMDS_CDK_AUTOCOMPLETE_MULTIDESTINATARY_DEFAULT_DEBOUNCE_TIME = 500;
|
|
3217
|
+
declare class PmdsCdkAutocompleteMultidestinataryComponent implements OnInit, ControlValueAccessor, OnDestroy {
|
|
3218
|
+
config: IPmdsCdkAutocompleteMultidestinataryConfig;
|
|
3219
|
+
dataQA: string;
|
|
3220
|
+
formControlName: string;
|
|
3221
|
+
isDisabled: boolean;
|
|
3222
|
+
literalsErrorFn: IPmdsCdkFormErrorMessage<unknown>;
|
|
3223
|
+
results: IPmdsCdkAutocompleteMultidestinataryItem[];
|
|
3224
|
+
states: IPmdsCdkAutocompleteMultidestinataryStates;
|
|
3225
|
+
suggestionsLabel: string;
|
|
3226
|
+
skeleton: boolean;
|
|
3227
|
+
byTyping: EventEmitter<string>;
|
|
3228
|
+
changeValues: EventEmitter<IPmdsCdkAutocompleteMultidestinataryItem[]>;
|
|
3229
|
+
selectValue: EventEmitter<IPmdsCdkAutocompleteMultidestinataryItem>;
|
|
3230
|
+
componentSelector: string;
|
|
3231
|
+
formControl: AbstractControl;
|
|
3232
|
+
omitClose: boolean;
|
|
3233
|
+
showError: boolean;
|
|
3234
|
+
showResults: boolean;
|
|
3235
|
+
show10Results: boolean;
|
|
3236
|
+
showValues: boolean;
|
|
3237
|
+
value: IPmdsCdkAutocompleteMultidestinataryItem[];
|
|
3238
|
+
data: IPmdsCdkAutocompleteMultidestinataryItem[];
|
|
3239
|
+
private debounceTyping$;
|
|
3240
|
+
private destroy$;
|
|
3241
|
+
private formGroupDirective;
|
|
3242
|
+
private renderer;
|
|
3243
|
+
private unlistener;
|
|
3244
|
+
ngOnInit(): void;
|
|
3245
|
+
ngAfterViewInit(): void;
|
|
3246
|
+
ngOnDestroy(): void;
|
|
3247
|
+
searchValue(value: string): void;
|
|
3248
|
+
selectResult(value: IPmdsCdkAutocompleteMultidestinataryItem): void;
|
|
3249
|
+
removeValue(valueToRemove: IPmdsCdkAutocompleteMultidestinataryItem): void;
|
|
3250
|
+
selectedValue(event: Event, valueSelected: IPmdsCdkAutocompleteMultidestinataryItem): void;
|
|
3251
|
+
onChange: (_: unknown) => void;
|
|
3252
|
+
onTouched: () => undefined;
|
|
3253
|
+
onFocus(): void;
|
|
3254
|
+
onFocusOut(): void;
|
|
3255
|
+
writeValue(value: IPmdsCdkAutocompleteMultidestinataryItem[]): void;
|
|
3256
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
3257
|
+
registerOnTouched(fn: () => undefined): void;
|
|
3258
|
+
setDisabledState(isDisabled: boolean): void;
|
|
3259
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkAutocompleteMultidestinataryComponent, never>;
|
|
3260
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkAutocompleteMultidestinataryComponent, "pmds-cdk-autocomplete-multidestinatary", never, { "config": { "alias": "config"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "literalsErrorFn": { "alias": "literalsErrorFn"; "required": false; }; "results": { "alias": "results"; "required": false; }; "states": { "alias": "states"; "required": false; }; "suggestionsLabel": { "alias": "suggestionsLabel"; "required": false; }; "skeleton": { "alias": "skeleton"; "required": false; }; }, { "byTyping": "byTyping"; "changeValues": "changeValues"; "selectValue": "selectValue"; }, never, never, true, never>;
|
|
3261
|
+
}
|
|
3262
|
+
|
|
3263
|
+
interface IPmdsCdkSidebarEmbeddedConfig {
|
|
3264
|
+
sidebarTitle: string;
|
|
3265
|
+
backButton: {
|
|
3266
|
+
action: () => void;
|
|
3267
|
+
label: string;
|
|
3268
|
+
};
|
|
3269
|
+
footerButtons: IPmdsCdkStickyButtonBarButton[];
|
|
3270
|
+
loaderLiterals: {
|
|
3271
|
+
title: string;
|
|
3272
|
+
subtitle: string;
|
|
3273
|
+
};
|
|
3274
|
+
headerButton: {
|
|
3275
|
+
actionButton1: () => void;
|
|
3276
|
+
actionButton2: () => void;
|
|
3277
|
+
iconButton1: string;
|
|
3278
|
+
iconButton2: string;
|
|
3279
|
+
labelButton1: string;
|
|
3280
|
+
labelButton2: string;
|
|
3281
|
+
};
|
|
3282
|
+
}
|
|
3283
|
+
|
|
3284
|
+
declare class PmdsCdkSidebarEmbeddedComponent implements AfterViewInit {
|
|
3285
|
+
section: ElementRef;
|
|
3286
|
+
sidebarTemplate: ViewContainerRef;
|
|
3287
|
+
dataQA: string;
|
|
3288
|
+
config: IPmdsCdkSidebarEmbeddedConfig;
|
|
3289
|
+
loading: boolean;
|
|
3290
|
+
showSidebar: boolean;
|
|
3291
|
+
sidebarComponent: Type<any>;
|
|
3292
|
+
showSidebarChange: EventEmitter<boolean>;
|
|
3293
|
+
componentSelector: string;
|
|
3294
|
+
sidebarHeight: string;
|
|
3295
|
+
onResize(): void;
|
|
3296
|
+
ngOnInit(): void;
|
|
3297
|
+
loadComponent(): void;
|
|
3298
|
+
ngAfterViewInit(): void;
|
|
3299
|
+
private setFullHeight;
|
|
3300
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkSidebarEmbeddedComponent, never>;
|
|
3301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkSidebarEmbeddedComponent, "pmds-cdk-sidebar-embedded", never, { "dataQA": { "alias": "dataQA"; "required": false; }; "config": { "alias": "config"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "showSidebar": { "alias": "showSidebar"; "required": false; }; "sidebarComponent": { "alias": "sidebarComponent"; "required": false; }; }, { "showSidebarChange": "showSidebarChange"; }, never, ["*"], true, never>;
|
|
3302
|
+
}
|
|
3303
|
+
|
|
3304
|
+
type TPmdsCdkEditableContentPosition = 'left' | 'right' | 'center';
|
|
3305
|
+
|
|
3306
|
+
interface IPmdsCdkEditableContentConfirmValue {
|
|
3307
|
+
newValue: string;
|
|
3308
|
+
oldValue: string;
|
|
3309
|
+
}
|
|
3310
|
+
|
|
3311
|
+
declare class PmdsCdkEditableContentComponent implements OnInit, OnDestroy, ControlValueAccessor {
|
|
3312
|
+
inputValue: ElementRef;
|
|
3313
|
+
contentPosition: TPmdsCdkEditableContentPosition;
|
|
3314
|
+
dataQA: string;
|
|
3315
|
+
formControl: AbstractControl;
|
|
3316
|
+
formControlName: string;
|
|
3317
|
+
hideOnTablet: boolean;
|
|
3318
|
+
isDisabled: boolean;
|
|
3319
|
+
noEditClass: string;
|
|
3320
|
+
noEditIcon: string;
|
|
3321
|
+
noEditValue: string;
|
|
3322
|
+
placeholder: string;
|
|
3323
|
+
tooltipPosition: TPmdsCdkEditableContentPosition;
|
|
3324
|
+
tooltipValue: string;
|
|
3325
|
+
typeInput: 'text' | 'number';
|
|
3326
|
+
noEditValueChange: EventEmitter<string>;
|
|
3327
|
+
valueChange: EventEmitter<IPmdsCdkEditableContentConfirmValue>;
|
|
3328
|
+
componentSelector: string;
|
|
3329
|
+
isEditing: boolean;
|
|
3330
|
+
omitEvent: boolean;
|
|
3331
|
+
showError: boolean;
|
|
3332
|
+
value: string;
|
|
3333
|
+
private unlistener;
|
|
3334
|
+
private formGroupDirective;
|
|
3335
|
+
private destroy$;
|
|
3336
|
+
private renderer;
|
|
3337
|
+
ngOnInit(): void;
|
|
3338
|
+
ngOnDestroy(): void;
|
|
3339
|
+
ngAfterViewInit(): void;
|
|
3340
|
+
changeValue(ev: Event): void;
|
|
3341
|
+
resetValue(): void;
|
|
3342
|
+
initEdit(): void;
|
|
3343
|
+
onChange(_: unknown): void;
|
|
3344
|
+
onTouch(): void;
|
|
3345
|
+
writeValue(value: string): void;
|
|
3346
|
+
setDisabledState(isDisabled: boolean): void;
|
|
3347
|
+
registerOnChange(fn: (_: unknown) => void): void;
|
|
3348
|
+
registerOnTouched(fn: () => unknown): void;
|
|
3349
|
+
clickSection(event: Event): void;
|
|
3350
|
+
updateValue(): void;
|
|
3351
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<PmdsCdkEditableContentComponent, never>;
|
|
3352
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PmdsCdkEditableContentComponent, "pmds-cdk-editable-content", never, { "contentPosition": { "alias": "contentPosition"; "required": false; }; "dataQA": { "alias": "dataQA"; "required": false; }; "formControl": { "alias": "formControl"; "required": false; }; "formControlName": { "alias": "formControlName"; "required": false; }; "hideOnTablet": { "alias": "hideOnTablet"; "required": false; }; "isDisabled": { "alias": "isDisabled"; "required": false; }; "noEditClass": { "alias": "noEditClass"; "required": false; }; "noEditIcon": { "alias": "noEditIcon"; "required": false; }; "noEditValue": { "alias": "noEditValue"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "tooltipValue": { "alias": "tooltipValue"; "required": false; }; "typeInput": { "alias": "typeInput"; "required": false; }; }, { "noEditValueChange": "noEditValueChange"; "valueChange": "valueChange"; }, never, never, true, never>;
|
|
3353
|
+
}
|
|
3354
|
+
|
|
3355
|
+
export { EPmdsCdkTableRowTypeStyle, IPmdsCdkStepStatus, PMDS_CDK_ALERT_DATA_TOKEN, PMDS_CDK_AUTOCOMPLETE_DEFAULT_DEBOUNCE_TIME, PMDS_CDK_AUTOCOMPLETE_DEFAULT_THROTTLE_TIME, PMDS_CDK_AUTOCOMPLETE_MULTIDESTINATARY_DEFAULT_DEBOUNCE_TIME, PMDS_CDK_BUTTON_PRIMARY, PMDS_CDK_BUTTON_SECONDARY, PMDS_CDK_BUTTON_TERTIARY, PMDS_CDK_MODAL_CONFIG_TOKEN, PMDS_CDK_MODAL_DATA_TOKEN, PMDS_CDK_MODAL_DEFAULT_CONFIG, PMDS_CDK_TOAST_ANIMATIONS, PMDS_CDK_TOAST_CONFIG_TOKEN, PMDS_CDK_TOAST_DEFAULT_CONFIG, PmdsCdkAccordionComponent, PmdsCdkActionBarComponent, PmdsCdkActionBarRef, PmdsCdkActionBarService, PmdsCdkActionRowBarComponent, PmdsCdkAlertComponent, PmdsCdkAutocompleteComponent, PmdsCdkAutocompleteMultidestinataryComponent, PmdsCdkBadgetNumbersComponent, PmdsCdkButtonAllFiltersComponent, PmdsCdkButtonComponent, PmdsCdkButtonDropdownComponent, PmdsCdkButtonFloatingComponent, PmdsCdkButtonModalComponent, PmdsCdkCalendarComponent, PmdsCdkCardsAccountActionComponent, PmdsCdkCardsFileUploadComponent, PmdsCdkCardsInformationComponent, PmdsCdkCardsSelectorComponent, PmdsCdkCardsSettingsComponent, PmdsCdkCheckboxComponent, PmdsCdkCopyClipboardComponent, PmdsCdkCountryLabelComponent, PmdsCdkDatepickerCalendarComponent, PmdsCdkDatepickerComponent, PmdsCdkDividerComponent, PmdsCdkDownloadIdAppButtonsComponent, PmdsCdkDropdownComponent, PmdsCdkDropdownRangeComponent, PmdsCdkDynamicCardComponent, PmdsCdkDynamicRowComponent, PmdsCdkEditableContentComponent, PmdsCdkErrorPageComponent, PmdsCdkExpansionPanelComponent, PmdsCdkFileDownloaderInfoComponent, PmdsCdkFooterComponent, PmdsCdkFormErrorMessageComponent, PmdsCdkGraphsLineChartComponent, PmdsCdkGraphsPieChartComponent, PmdsCdkGraphsSequentialBarChartComponent, PmdsCdkHeaderComponent, PmdsCdkLoaderComponent, PmdsCdkMenuAndSubmenuComponent, PmdsCdkMessageComponent, PmdsCdkModalComponent, PmdsCdkModalRef, PmdsCdkModalService, PmdsCdkNotificationsPopoverComponent, PmdsCdkOptionButtonsComponent, PmdsCdkPageControllerComponent, PmdsCdkPageHeaderComponent, PmdsCdkPaginatorComponent, PmdsCdkPendingTaskComponent, PmdsCdkPhoneInputComponent, PmdsCdkProcessHeaderComponent, PmdsCdkProfilePhotoComponent, PmdsCdkRadioButtonsComponent, PmdsCdkSelectPaginatorComponent, PmdsCdkShortcutComponent, PmdsCdkSidebarEmbeddedComponent, PmdsCdkSkeletonComponent, PmdsCdkStepperComponent, PmdsCdkStickyButtonBarComponent, PmdsCdkTabComponent, PmdsCdkTableCompleteComponent, PmdsCdkTableCompleteDataAbstractService, PmdsCdkTableCompleteDataService, PmdsCdkTableComponent, PmdsCdkTabsComponent, PmdsCdkTagCategoryComponent, PmdsCdkTagLabelComponent, PmdsCdkTextComponent, PmdsCdkTextFieldComponent, PmdsCdkTextInputComponent, PmdsCdkTextareaComponent, PmdsCdkTimeInputComponent, PmdsCdkTimelineTrackingComponent, PmdsCdkToastComponent, PmdsCdkToastRef, PmdsCdkToastService, PmdsCdkToggleSwitchComponent, PmdsCoreCacheService, PmdsCoreStorageService, PmdsDirectiveDecimalNumberFormat, PmdsDirectiveMaskAmountInput, PmdsDirectiveNoLeadingSpacesInput, PmdsDirectiveNumberFormat, PmdsDirectiveTitle, PmdsDirectiveTooltip, PmdsDirectiveViewportOverflow, PmdsPipeAccountFormat, PmdsPipeAccountHidden, PmdsPipeAmountFormat, PmdsPipeCamelcaseToSnakecaseUppercase, PmdsPipeDateTime, PmdsPipeExchangeDecimals, PmdsPipeOnlyDecimals, PmdsPipeRelationshipFormat, PmdsPipeSalesforceNumberFormat, PmdsPipeTransactionReference, PmdsPipeTruncateEllipsis, PmdsPipeTypeOf, PmdsUtilHistoryRouting, PmdsUtilImgFlags, PmdsUtilImgSvgs, PmdsUtilStyles, PmdsUtilValidators };
|
|
3356
|
+
export type { IPmdsCdkAccordionLiterals, IPmdsCdkActionBarButton, IPmdsCdkActionBarConfig, IPmdsCdkActionRowBar, IPmdsCdkAlertData, IPmdsCdkAlertLiterals, IPmdsCdkAutocompleteConfig, IPmdsCdkAutocompleteDynamicLabelComponentConfig, IPmdsCdkAutocompleteDynamicRowComponentConfig, IPmdsCdkAutocompleteLabelConfigParam, IPmdsCdkAutocompleteMultidestinataryConfig, IPmdsCdkAutocompleteMultidestinataryItem, IPmdsCdkAutocompleteMultidestinataryStates, IPmdsCdkAutocompleteRowConfigParam, IPmdsCdkAutocompleteStates, IPmdsCdkAutocompleteSuggestions, IPmdsCdkAutocompleteTableConfig, IPmdsCdkAutompleteInputConfig, IPmdsCdkBasicTableConfig, IPmdsCdkButtonModalButton, IPmdsCdkButtonsDropdownOption, IPmdsCdkCalendarEvent, IPmdsCdkCalendarEventShow, IPmdsCdkCalendarLiterals, IPmdsCdkCardsFileUploadLiterals, IPmdsCdkCardsInformationAction, IPmdsCdkCardsInformationLiterals, IPmdsCdkCardsSelectorImages, IPmdsCdkCardsSelectorOptionLiterals, IPmdsCdkCardsSelectorTooltip, IPmdsCdkCardsSettingsItem, IPmdsCdkDatepickerDateInfo, IPmdsCdkDatepickerLiterals, IPmdsCdkDropdownRangeLiterals, IPmdsCdkDynamicRowComponentConfig, IPmdsCdkDynamicRowDefaultComponentConfig, IPmdsCdkEditableContentConfirmValue, IPmdsCdkErrorPageButtons, IPmdsCdkErrorPageLiterals, IPmdsCdkErrorPageLiteralsError, IPmdsCdkExpansionPanelActions, IPmdsCdkFileDownloaderInfoButtons, IPmdsCdkFileDownloaderInfoFile, IPmdsCdkFileDownloaderInfoLiterals, IPmdsCdkFooterAction, IPmdsCdkFooterLink, IPmdsCdkFooterLiterals, IPmdsCdkFormErrorMessage, IPmdsCdkGraphsLineChartConfig, IPmdsCdkGraphsLineChartData, IPmdsCdkGraphsPieChartConfig, IPmdsCdkGraphsPieChartData, IPmdsCdkGraphsSequentialBarChartConfig, IPmdsCdkGraphsSequentialBarChartData, IPmdsCdkHeaderCompleteConfig, IPmdsCdkHeaderConfig, IPmdsCdkHeaderLiterals, IPmdsCdkHeaderMobileFooterActionModel, IPmdsCdkMenuOptions, IPmdsCdkMessage, IPmdsCdkMessageLiterals, IPmdsCdkModalButtons, IPmdsCdkModalConfig, IPmdsCdkModalData, IPmdsCdkModalSidebarButtons, IPmdsCdkNotificationsPopoverButton, IPmdsCdkNotificationsPopoverLiterals, IPmdsCdkNotificationsPopoverNotification, IPmdsCdkOptionButtons, IPmdsCdkOptionDropdown, IPmdsCdkOptionDropdownLiterals, IPmdsCdkPaginationInfo, IPmdsCdkPaginatorLiterals, IPmdsCdkPendingTaskGroup, IPmdsCdkPendingTaskLiterals, IPmdsCdkPhoneCountryOptionDropdown, IPmdsCdkPhoneInputLiterals, IPmdsCdkProcessHeaderActions, IPmdsCdkProcessHeaderLiterals, IPmdsCdkRadioButtons, IPmdsCdkRowConfigParam, IPmdsCdkShortcutItem, IPmdsCdkSidebarEmbeddedConfig, IPmdsCdkStepAlert, IPmdsCdkStepAttributes, IPmdsCdkStepObservation, IPmdsCdkSteps, IPmdsCdkStickyButtonBarButton, IPmdsCdkTableCompleteConfig, IPmdsCdkTableCompleteResponseModel, IPmdsCdkTableConfig, IPmdsCdkTableEmptyStateData, IPmdsCdkTableHeaderInfo, IPmdsCdkTablePaginationInfo, IPmdsCdkTabsConfig, IPmdsCdkTextField, IPmdsCdkTextFieldType, IPmdsCdkTextInputTagCategoryData, IPmdsCdkTextInputType, IPmdsCdkToastConfig, IPmdsCdkAlertData as IPmdsCdkToastData, IPmdsDirectiveTitleClasses, IPmdsDropdownRangeSelect, PmdsCdkButtonSize, PmdsCdkButtonType, PmdsCoreICachedElement, TPmdsCdkAlertType, TPmdsCdkButtonModalSize, TPmdsCdkButtonModalType, TPmdsCdkCalendarEventType, TPmdsCdkCardsFileUploadStates, TPmdsCdkCardsSettingsType, TPmdsCdkCopyClipboardIconPosition, TPmdsCdkCountryLabelSize, TPmdsCdkDatepickerDateFormat, TPmdsCdkEditableContentPosition, TPmdsCdkErrorPageType, TPmdsCdkFileDownloaderInfoStatus, TPmdsCdkFooterLayout, TPmdsCdkHeaderLayout, TPmdsCdkMenuSubmenuType, TPmdsCdkMessageType, TPmdsCdkModalAction, TPmdsCdkModalSize, TPmdsCdkProcessHeaderMaxDesktopWidth, TPmdsCdkTagLabelColor, TPmdsCdkTextType, TPmdsCdkToastAnimationState, TPmdsCdkUserType, TPmdsDirectiveTooltipPosition, colorCode };
|