monkey-style-guide 21.2.21 → 21.2.23
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -7
- package/assets/scss/partials/_breakpoints.scss +9 -9
- package/assets/scss/partials/_helper-classes.scss +1 -0
- package/assets/scss/partials/_variables.scss +1 -0
- package/fesm2022/monkey-style-guide.mjs +1792 -895
- package/fesm2022/monkey-style-guide.mjs.map +1 -1
- package/monkey-style-guide-21.2.23.tgz +0 -0
- package/package.json +3 -2
- package/types/monkey-style-guide.d.ts +558 -381
- package/monkey-style-guide-21.2.21.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import { TemplateRef, EventEmitter, ElementRef, ComponentRef, InputSignal, OutputEmitterRef, AfterContentInit, AfterContentChecked, OnDestroy, ChangeDetectorRef, OnChanges, OnInit, InputSignalWithTransform, AfterViewInit, SimpleChanges, Renderer2, QueryList, StaticProvider, Injector, InjectionToken, ViewContainerRef, ApplicationRef } from '@angular/core';
|
|
1
|
+
import * as i0 from '@angular/core';
|
|
2
|
+
import { TemplateRef, EventEmitter, ElementRef, Signal, ComponentRef, InputSignal, OutputEmitterRef, AfterContentInit, AfterContentChecked, OnDestroy, ChangeDetectorRef, OnChanges, OnInit, InputSignalWithTransform, WritableSignal, AfterViewInit, SimpleChanges, Renderer2, QueryList, StaticProvider, Injector, InjectionToken, ViewContainerRef, ApplicationRef } from '@angular/core';
|
|
3
3
|
import { NgControl, AbstractControlDirective, ControlValueAccessor, Validator, AbstractControl, ValidationErrors } from '@angular/forms';
|
|
4
4
|
import * as rxjs from 'rxjs';
|
|
5
5
|
import { Observable, Subject, BehaviorSubject } from 'rxjs';
|
|
@@ -24,24 +24,24 @@ declare class MonkeyAccordionComponent {
|
|
|
24
24
|
set id(value: string);
|
|
25
25
|
constructor();
|
|
26
26
|
onClick(): void;
|
|
27
|
-
static ɵfac:
|
|
28
|
-
static ɵcmp:
|
|
27
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyAccordionComponent, never>;
|
|
28
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyAccordionComponent, "monkey-accordion", never, { "open": { "alias": "open"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "title": { "alias": "title"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
29
29
|
static ngAcceptInputType_open: unknown;
|
|
30
30
|
static ngAcceptInputType_disabled: unknown;
|
|
31
31
|
}
|
|
32
32
|
|
|
33
33
|
declare class MonkeyActionBarComponent {
|
|
34
34
|
get classes(): string | undefined;
|
|
35
|
-
label:
|
|
36
|
-
position:
|
|
37
|
-
open:
|
|
35
|
+
label: i0.InputSignal<string | undefined>;
|
|
36
|
+
position: i0.InputSignal<string | undefined>;
|
|
37
|
+
open: i0.InputSignal<boolean | undefined>;
|
|
38
38
|
protected _uid: string;
|
|
39
39
|
protected _id: string;
|
|
40
40
|
get id(): string;
|
|
41
41
|
set id(value: string);
|
|
42
42
|
constructor();
|
|
43
|
-
static ɵfac:
|
|
44
|
-
static ɵcmp:
|
|
43
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyActionBarComponent, never>;
|
|
44
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyActionBarComponent, "monkey-action-bar", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "position": { "alias": "position"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
45
45
|
}
|
|
46
46
|
|
|
47
47
|
/** ************************
|
|
@@ -154,8 +154,8 @@ declare class MonkeyToastComponent {
|
|
|
154
154
|
constructor(host: ElementRef<HTMLElement>);
|
|
155
155
|
close(): void;
|
|
156
156
|
onAnimationEnd(event: AnimationEvent): void;
|
|
157
|
-
static ɵfac:
|
|
158
|
-
static ɵcmp:
|
|
157
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToastComponent, never>;
|
|
158
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyToastComponent, "monkey-toast", never, { "message": { "alias": "message"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "type": { "alias": "type"; "required": false; }; "isClosable": { "alias": "isClosable"; "required": false; }; "actionLabel": { "alias": "actionLabel"; "required": false; }; "actionIcon": { "alias": "actionIcon"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onActionClick": "onActionClick"; "onClose": "onClose"; }, never, never, true, never>;
|
|
159
159
|
static ngAcceptInputType_isClosable: unknown;
|
|
160
160
|
}
|
|
161
161
|
|
|
@@ -185,6 +185,12 @@ type ToastConfig = {
|
|
|
185
185
|
action?: () => void;
|
|
186
186
|
closeOnAction?: boolean;
|
|
187
187
|
};
|
|
188
|
+
type DownloadToastConfig = Pick<ToastConfig, 'message' | 'position' | 'duration' | 'keepOpen'> & {
|
|
189
|
+
id?: string;
|
|
190
|
+
progress?: number | Signal<number>;
|
|
191
|
+
onCancel?: () => void;
|
|
192
|
+
onDownload?: () => void;
|
|
193
|
+
};
|
|
188
194
|
|
|
189
195
|
/** ************************
|
|
190
196
|
* Copyright Monkey Exchange. All Rights Reserved
|
|
@@ -204,8 +210,8 @@ declare class MonkeyAlertComponent {
|
|
|
204
210
|
set id(value: string);
|
|
205
211
|
constructor();
|
|
206
212
|
icon(type: MonkeyAlertType): string;
|
|
207
|
-
static ɵfac:
|
|
208
|
-
static ɵcmp:
|
|
213
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyAlertComponent, never>;
|
|
214
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyAlertComponent, "monkey-alert", never, { "buttonLabel": { "alias": "buttonLabel"; "required": false; "isSignal": true; }; "message": { "alias": "message"; "required": true; "isSignal": true; }; "title": { "alias": "title"; "required": true; "isSignal": true; }; "type": { "alias": "type"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; }; }, { "onButtonClicked": "onButtonClicked"; }, never, never, true, never>;
|
|
209
215
|
}
|
|
210
216
|
|
|
211
217
|
declare abstract class MonkeyFormFieldControl {
|
|
@@ -221,8 +227,8 @@ declare abstract class MonkeyFormFieldControl {
|
|
|
221
227
|
abstract onClear?(): void;
|
|
222
228
|
loading?: boolean;
|
|
223
229
|
disableToBeDirty?: boolean;
|
|
224
|
-
static ɵfac:
|
|
225
|
-
static ɵdir:
|
|
230
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormFieldControl, never>;
|
|
231
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyFormFieldControl, never, never, {}, {}, never, never, true, never>;
|
|
226
232
|
}
|
|
227
233
|
|
|
228
234
|
declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContentChecked, OnDestroy {
|
|
@@ -231,9 +237,9 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
231
237
|
hideAction: boolean;
|
|
232
238
|
enableClear: boolean;
|
|
233
239
|
size: MonkeySize;
|
|
234
|
-
readonly noFooterSpace:
|
|
235
|
-
displayOnly:
|
|
236
|
-
onDisplayOnlyChange:
|
|
240
|
+
readonly noFooterSpace: i0.InputSignalWithTransform<boolean, unknown>;
|
|
241
|
+
displayOnly: i0.InputSignal<boolean>;
|
|
242
|
+
onDisplayOnlyChange: i0.OutputEmitterRef<boolean>;
|
|
237
243
|
private readonly _formFieldControl;
|
|
238
244
|
private readonly _displayChild;
|
|
239
245
|
private readonly _labelChildren;
|
|
@@ -255,24 +261,24 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
255
261
|
private _valueChanges;
|
|
256
262
|
readonly currencySymbol: string | undefined;
|
|
257
263
|
readonly percentSymbol = "%";
|
|
258
|
-
readonly hasLabel:
|
|
259
|
-
readonly hasHelper:
|
|
260
|
-
readonly hasPrefix:
|
|
261
|
-
readonly hasSuffix:
|
|
262
|
-
readonly hasInfo:
|
|
263
|
-
readonly hasError:
|
|
264
|
-
readonly showHeader:
|
|
265
|
-
readonly showFooter:
|
|
264
|
+
readonly hasLabel: i0.Signal<boolean>;
|
|
265
|
+
readonly hasHelper: i0.Signal<boolean>;
|
|
266
|
+
readonly hasPrefix: i0.Signal<boolean>;
|
|
267
|
+
readonly hasSuffix: i0.Signal<boolean>;
|
|
268
|
+
readonly hasInfo: i0.Signal<boolean>;
|
|
269
|
+
readonly hasError: i0.Signal<boolean>;
|
|
270
|
+
readonly showHeader: i0.Signal<boolean>;
|
|
271
|
+
readonly showFooter: i0.Signal<boolean>;
|
|
266
272
|
get control(): MonkeyFormFieldControl;
|
|
267
273
|
get labelId(): string;
|
|
268
|
-
hideBorder:
|
|
274
|
+
hideBorder: i0.Signal<boolean>;
|
|
269
275
|
get showInvalid(): boolean;
|
|
270
|
-
showClear:
|
|
276
|
+
showClear: i0.Signal<boolean>;
|
|
271
277
|
get showCalendar(): boolean;
|
|
272
278
|
get showCurrency(): boolean;
|
|
273
279
|
get showPercent(): boolean;
|
|
274
280
|
get showLoading(): boolean;
|
|
275
|
-
internalDisplayOnly:
|
|
281
|
+
internalDisplayOnly: i0.WritableSignal<boolean>;
|
|
276
282
|
readonly editDictionary: rxjs.Observable<any>;
|
|
277
283
|
constructor();
|
|
278
284
|
private updateFocusState;
|
|
@@ -287,22 +293,22 @@ declare class MonkeyFormFieldComponent implements AfterContentInit, AfterContent
|
|
|
287
293
|
onClear(event: MouseEvent): void;
|
|
288
294
|
onOpenCalendar(event: MouseEvent): void;
|
|
289
295
|
onCancelDisplayOnly(event: MouseEvent): void;
|
|
290
|
-
static ɵfac:
|
|
291
|
-
static ɵcmp:
|
|
296
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormFieldComponent, never>;
|
|
297
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFormFieldComponent, "monkey-form-field", ["monkeyFormField"], { "id": { "alias": "id"; "required": false; }; "hideAction": { "alias": "hideAction"; "required": false; }; "enableClear": { "alias": "enableClear"; "required": false; }; "size": { "alias": "size"; "required": false; }; "noFooterSpace": { "alias": "noFooterSpace"; "required": false; "isSignal": true; }; "displayOnly": { "alias": "displayOnly"; "required": false; "isSignal": true; }; }, { "onDisplayOnlyChange": "onDisplayOnlyChange"; }, ["_formFieldControl", "_displayChild", "_labelChildren", "_helperChildren", "_prefixChildren", "_suffixChildren", "_infoChildren", "_errorChildren"], ["monkey-display", "monkey-helper", "monkey-prefix", "*", "monkey-suffix", "monkey-error", "monkey-info", "monkey-label"], false, never>;
|
|
292
298
|
static ngAcceptInputType_hideAction: unknown;
|
|
293
299
|
static ngAcceptInputType_enableClear: unknown;
|
|
294
300
|
}
|
|
295
301
|
|
|
296
302
|
declare class UtilIconComponent {
|
|
297
|
-
name:
|
|
298
|
-
static ɵfac:
|
|
299
|
-
static ɵcmp:
|
|
303
|
+
name: i0.InputSignal<string>;
|
|
304
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<UtilIconComponent, never>;
|
|
305
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<UtilIconComponent, "util-icon", never, { "name": { "alias": "name"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
300
306
|
}
|
|
301
307
|
|
|
302
308
|
declare class MonkeyFormFieldModule {
|
|
303
|
-
static ɵfac:
|
|
304
|
-
static ɵmod:
|
|
305
|
-
static ɵinj:
|
|
309
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormFieldModule, never>;
|
|
310
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyFormFieldModule, [typeof MonkeyFormFieldComponent], [typeof i2.CommonModule, typeof UtilIconComponent], [typeof MonkeyFormFieldComponent]>;
|
|
311
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyFormFieldModule>;
|
|
306
312
|
}
|
|
307
313
|
|
|
308
314
|
/** ************************
|
|
@@ -369,8 +375,8 @@ declare class MonkeyAutocompleteComponent implements MonkeyFormFieldControl, Con
|
|
|
369
375
|
onInputChange(event: Event): void;
|
|
370
376
|
onSelect(option: MonkeyAutocompleteData): void;
|
|
371
377
|
isSelected(option: MonkeyAutocompleteData): boolean;
|
|
372
|
-
static ɵfac:
|
|
373
|
-
static ɵcmp:
|
|
378
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyAutocompleteComponent, [{ optional: true; }, null]>;
|
|
379
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyAutocompleteComponent, "monkey-autocomplete", never, { "placeholder": { "alias": "placeholder"; "required": true; }; "debounce": { "alias": "debounce"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "fetchOptions": { "alias": "fetchOptions"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; }, ["optionTemplate"], never, true, never>;
|
|
374
380
|
static ngAcceptInputType_disabled: unknown;
|
|
375
381
|
static ngAcceptInputType_required: unknown;
|
|
376
382
|
}
|
|
@@ -432,8 +438,8 @@ declare class MonkeyAutocompleteAddressComponent implements MonkeyFormFieldContr
|
|
|
432
438
|
onInputChange(event: Event): void;
|
|
433
439
|
onSelect(option: GoogleApiPlaces): void;
|
|
434
440
|
isSelected(option: GoogleApiPlaces): boolean;
|
|
435
|
-
static ɵfac:
|
|
436
|
-
static ɵcmp:
|
|
441
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyAutocompleteAddressComponent, [{ optional: true; }, null]>;
|
|
442
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyAutocompleteAddressComponent, "monkey-autocomplete-address", never, { "placeholder": { "alias": "placeholder"; "required": true; }; "debounce": { "alias": "debounce"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; }, ["optionTemplate"], never, true, never>;
|
|
437
443
|
static ngAcceptInputType_disabled: unknown;
|
|
438
444
|
static ngAcceptInputType_required: unknown;
|
|
439
445
|
}
|
|
@@ -463,8 +469,8 @@ declare class MonkeyAvatarComponent {
|
|
|
463
469
|
constructor();
|
|
464
470
|
private getInitial;
|
|
465
471
|
private handleAvatarType;
|
|
466
|
-
static ɵfac:
|
|
467
|
-
static ɵcmp:
|
|
472
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyAvatarComponent, never>;
|
|
473
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyAvatarComponent, "monkey-avatar", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "src": { "alias": "src"; "required": true; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
468
474
|
}
|
|
469
475
|
|
|
470
476
|
declare class MonkeyBadgeComponent {
|
|
@@ -480,8 +486,8 @@ declare class MonkeyBadgeComponent {
|
|
|
480
486
|
largePadding: boolean;
|
|
481
487
|
icon: string;
|
|
482
488
|
text: string;
|
|
483
|
-
static ɵfac:
|
|
484
|
-
static ɵcmp:
|
|
489
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyBadgeComponent, never>;
|
|
490
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyBadgeComponent, "monkey-badge", never, { "type": { "alias": "type"; "required": false; }; "typeColors": { "alias": "typeColors"; "required": false; }; "size": { "alias": "size"; "required": false; }; "largePadding": { "alias": "largePadding"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "text": { "alias": "text"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
485
491
|
static ngAcceptInputType_largePadding: unknown;
|
|
486
492
|
}
|
|
487
493
|
|
|
@@ -496,8 +502,8 @@ declare class MonkeyBreadcrumbComponent {
|
|
|
496
502
|
set id(value: string);
|
|
497
503
|
constructor();
|
|
498
504
|
handleNavigate(item: MonkeyBreadcrumb): void;
|
|
499
|
-
static ɵfac:
|
|
500
|
-
static ɵcmp:
|
|
505
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyBreadcrumbComponent, never>;
|
|
506
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyBreadcrumbComponent, "monkey-breadcrumb", never, { "first": { "alias": "first"; "required": true; }; "last": { "alias": "last"; "required": true; }; "colapsed": { "alias": "colapsed"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
501
507
|
static ngAcceptInputType_colapsed: unknown;
|
|
502
508
|
}
|
|
503
509
|
|
|
@@ -515,8 +521,8 @@ declare class MonkeyButtonComponent {
|
|
|
515
521
|
constructor();
|
|
516
522
|
onClick(event: MouseEvent): void;
|
|
517
523
|
get element(): HTMLElement;
|
|
518
|
-
static ɵfac:
|
|
519
|
-
static ɵcmp:
|
|
524
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyButtonComponent, never>;
|
|
525
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyButtonComponent, "monkey-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, ["[first]", "*", "[last]"], true, never>;
|
|
520
526
|
}
|
|
521
527
|
|
|
522
528
|
declare class MonkeyCheckboxComponent implements ControlValueAccessor, OnChanges, OnInit, Validator {
|
|
@@ -556,8 +562,8 @@ declare class MonkeyCheckboxComponent implements ControlValueAccessor, OnChanges
|
|
|
556
562
|
setDisabledState(isDisabled: boolean): void;
|
|
557
563
|
onChangeEvent(event: Event): void;
|
|
558
564
|
getFooterMessages(): 'info' | 'error' | '';
|
|
559
|
-
static ɵfac:
|
|
560
|
-
static ɵcmp:
|
|
565
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyCheckboxComponent, never>;
|
|
566
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyCheckboxComponent, "monkey-checkbox", never, { "disabled": { "alias": "disabled"; "required": false; }; "indeterminate": { "alias": "indeterminate"; "required": false; }; "required": { "alias": "required"; "required": false; }; "showFooter": { "alias": "showFooter"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; }, ["infoChildren", "labelChildren", "helperChildren"], ["monkey-label", "monkey-helper", "*", "monkey-error", "monkey-info"], true, never>;
|
|
561
567
|
static ngAcceptInputType_disabled: unknown;
|
|
562
568
|
static ngAcceptInputType_indeterminate: unknown;
|
|
563
569
|
static ngAcceptInputType_required: unknown;
|
|
@@ -612,8 +618,8 @@ declare class MonkeyDateRangeComponent implements OnInit {
|
|
|
612
618
|
onChangeInputEndDate(event: Event): void;
|
|
613
619
|
onDataChange(event: string, isStart: boolean): void;
|
|
614
620
|
onHandleNavigate(action: 'previous' | 'next'): void;
|
|
615
|
-
static ɵfac:
|
|
616
|
-
static ɵcmp:
|
|
621
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDateRangeComponent, never>;
|
|
622
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyDateRangeComponent, "monkey-date-range", never, { "startDate": { "alias": "startDate"; "required": false; }; "endDate": { "alias": "endDate"; "required": false; }; "hideQuickAction": { "alias": "hideQuickAction"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "hideActions": { "alias": "hideActions"; "required": false; }; "hideSecondCalendar": { "alias": "hideSecondCalendar"; "required": false; }; "allowFastActionOnHeader": { "alias": "allowFastActionOnHeader"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onCancel": "onCancel"; "onDate": "onDate"; }, never, never, true, never>;
|
|
617
623
|
static ngAcceptInputType_hideQuickAction: unknown;
|
|
618
624
|
static ngAcceptInputType_hideHeader: unknown;
|
|
619
625
|
static ngAcceptInputType_hideActions: unknown;
|
|
@@ -636,8 +642,8 @@ declare class MonkeyDividerComponent {
|
|
|
636
642
|
get id(): string;
|
|
637
643
|
set id(value: string);
|
|
638
644
|
constructor();
|
|
639
|
-
static ɵfac:
|
|
640
|
-
static ɵcmp:
|
|
645
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDividerComponent, never>;
|
|
646
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyDividerComponent, "monkey-divider", never, { "size": { "alias": "size"; "required": false; "isSignal": true; }; "vertical": { "alias": "vertical"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
641
647
|
}
|
|
642
648
|
|
|
643
649
|
/** ************************
|
|
@@ -667,8 +673,119 @@ declare class MonkeyDownloadButtonComponent {
|
|
|
667
673
|
get enablleMargin(): boolean;
|
|
668
674
|
constructor();
|
|
669
675
|
onDownload(): void;
|
|
670
|
-
static ɵfac:
|
|
671
|
-
static ɵcmp:
|
|
676
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDownloadButtonComponent, never>;
|
|
677
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyDownloadButtonComponent, "monkey-download-button", never, { "progress": { "alias": "progress"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "color": { "alias": "color"; "required": false; }; "size": { "alias": "size"; "required": false; }; "type": { "alias": "type"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onChange": "onChange"; }, never, ["[first]", "*", "[last]"], true, never>;
|
|
678
|
+
}
|
|
679
|
+
|
|
680
|
+
/** ************************
|
|
681
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
682
|
+
* This style guide was developed by Monkey Exchange Team
|
|
683
|
+
* MIT Licence
|
|
684
|
+
************************* */
|
|
685
|
+
declare const DOWNLOAD_TOAST_EXIT_MS = 200;
|
|
686
|
+
interface DownloadToastDictionary {
|
|
687
|
+
singular: string;
|
|
688
|
+
plural: string;
|
|
689
|
+
expand: string;
|
|
690
|
+
defaultMessage: string;
|
|
691
|
+
cancel: string;
|
|
692
|
+
close: string;
|
|
693
|
+
download: string;
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
/** ************************
|
|
697
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
698
|
+
* This style guide was developed by Monkey Exchange Team
|
|
699
|
+
* MIT Licence
|
|
700
|
+
************************* */
|
|
701
|
+
|
|
702
|
+
declare class MonkeyDownloadToastComponent {
|
|
703
|
+
protected readonly host: ElementRef<HTMLElement>;
|
|
704
|
+
readonly message: InputSignal<string>;
|
|
705
|
+
readonly progress: InputSignal<number>;
|
|
706
|
+
readonly id: InputSignal<string>;
|
|
707
|
+
readonly onCancel: OutputEmitterRef<void>;
|
|
708
|
+
readonly onClose: OutputEmitterRef<string>;
|
|
709
|
+
readonly onDownload: OutputEmitterRef<void>;
|
|
710
|
+
protected readonly dict: Signal<DownloadToastDictionary>;
|
|
711
|
+
protected readonly displayMessage: Signal<string>;
|
|
712
|
+
protected readonly safeProgress: Signal<number>;
|
|
713
|
+
protected readonly isBusy: Signal<boolean>;
|
|
714
|
+
protected readonly isComplete: Signal<boolean>;
|
|
715
|
+
constructor(host: ElementRef<HTMLElement>);
|
|
716
|
+
protected handleEscape(): void;
|
|
717
|
+
protected onCancelPressed(): void;
|
|
718
|
+
protected onDownloadPressed(): void;
|
|
719
|
+
close(): void;
|
|
720
|
+
protected onAnimationEnd(event: AnimationEvent): void;
|
|
721
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDownloadToastComponent, never>;
|
|
722
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyDownloadToastComponent, "monkey-download-toast", never, { "message": { "alias": "message"; "required": false; "isSignal": true; }; "progress": { "alias": "progress"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; "isSignal": true; }; }, { "onCancel": "onCancel"; "onClose": "onClose"; "onDownload": "onDownload"; }, never, never, true, never>;
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
/** ************************
|
|
726
|
+
* Copyright Monkey Exchange. All Rights Reserved
|
|
727
|
+
* This style guide was developed by Monkey Exchange Team
|
|
728
|
+
* MIT Licence
|
|
729
|
+
************************* */
|
|
730
|
+
|
|
731
|
+
interface DownloadStackItem {
|
|
732
|
+
id: string;
|
|
733
|
+
message: string;
|
|
734
|
+
progress: number | Signal<number>;
|
|
735
|
+
onCancel?: () => void;
|
|
736
|
+
onDownload?: () => void;
|
|
737
|
+
}
|
|
738
|
+
type DownloadStackItemUpdate = Partial<Pick<DownloadStackItem, 'message' | 'progress'>>;
|
|
739
|
+
interface DownloadStackRow {
|
|
740
|
+
item: DownloadStackItem;
|
|
741
|
+
depth: number;
|
|
742
|
+
leaving: boolean;
|
|
743
|
+
}
|
|
744
|
+
declare class MonkeyDownloadToastStackComponent {
|
|
745
|
+
protected readonly position: InputSignal<string>;
|
|
746
|
+
readonly items: WritableSignal<DownloadStackItem[]>;
|
|
747
|
+
readonly expanded: WritableSignal<boolean>;
|
|
748
|
+
readonly isMobile: WritableSignal<boolean>;
|
|
749
|
+
protected readonly dict: Signal<DownloadToastDictionary>;
|
|
750
|
+
protected readonly maxVisible: number;
|
|
751
|
+
private readonly cardEl;
|
|
752
|
+
private readonly cardHeight;
|
|
753
|
+
private readonly rendered;
|
|
754
|
+
private readonly leavingDepth;
|
|
755
|
+
private readonly exitTimers;
|
|
756
|
+
private readonly count;
|
|
757
|
+
private collapseTimer?;
|
|
758
|
+
private readonly mobileMediaQuery;
|
|
759
|
+
constructor();
|
|
760
|
+
protected readonly listId: string;
|
|
761
|
+
protected readonly hasItems: Signal<boolean>;
|
|
762
|
+
protected readonly isCollapsible: Signal<boolean>;
|
|
763
|
+
protected readonly isCollapsed: Signal<boolean>;
|
|
764
|
+
protected readonly showCounter: Signal<boolean>;
|
|
765
|
+
protected readonly rows: Signal<DownloadStackRow[]>;
|
|
766
|
+
protected readonly stackStyle: Signal<Record<string, string>>;
|
|
767
|
+
protected readonly headerLabel: Signal<string>;
|
|
768
|
+
protected readonly expandLabel: Signal<string>;
|
|
769
|
+
private supportsHover;
|
|
770
|
+
private cancelExits;
|
|
771
|
+
private cancelAutoCollapse;
|
|
772
|
+
private scheduleAutoCollapse;
|
|
773
|
+
protected open(): void;
|
|
774
|
+
protected onHoverIntent(): void;
|
|
775
|
+
protected onHoverMove(): void;
|
|
776
|
+
protected onHoverLeave(): void;
|
|
777
|
+
protected toggleExpanded(): void;
|
|
778
|
+
add(item: DownloadStackItem): void;
|
|
779
|
+
update(id: string, changes: DownloadStackItemUpdate): void;
|
|
780
|
+
remove(id: string): void;
|
|
781
|
+
private unmount;
|
|
782
|
+
private clearExit;
|
|
783
|
+
protected getProgress(item: DownloadStackItem): number;
|
|
784
|
+
protected handleCancel(item: DownloadStackItem): void;
|
|
785
|
+
protected handleDownload(item: DownloadStackItem): void;
|
|
786
|
+
protected handleClose(id: string): void;
|
|
787
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDownloadToastStackComponent, never>;
|
|
788
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyDownloadToastStackComponent, "monkey-download-toast-stack", never, { "position": { "alias": "position"; "required": false; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
672
789
|
}
|
|
673
790
|
|
|
674
791
|
/** ************************
|
|
@@ -741,9 +858,9 @@ interface AutocompleteSuggestion {
|
|
|
741
858
|
|
|
742
859
|
declare class MonkeyComplexFilterBarComponent implements OnInit, OnChanges, AfterViewInit, OnDestroy {
|
|
743
860
|
private _service;
|
|
744
|
-
key:
|
|
745
|
-
config:
|
|
746
|
-
placeholder:
|
|
861
|
+
key: i0.InputSignal<string>;
|
|
862
|
+
config: i0.InputSignal<FilterBarConfig | undefined>;
|
|
863
|
+
placeholder: i0.InputSignal<string | undefined>;
|
|
747
864
|
complexFilterChange: EventEmitter<ComplexFilterResult>;
|
|
748
865
|
private _queryInputRef?;
|
|
749
866
|
complexQuery: string;
|
|
@@ -752,10 +869,10 @@ declare class MonkeyComplexFilterBarComponent implements OnInit, OnChanges, Afte
|
|
|
752
869
|
autocompleteActiveIndex: number;
|
|
753
870
|
showDocsPanel: boolean;
|
|
754
871
|
docsPanelTarget: HTMLElement | null;
|
|
755
|
-
serviceConfig:
|
|
756
|
-
allFilterOptions:
|
|
757
|
-
queryPlaceholder:
|
|
758
|
-
hasActiveQuery:
|
|
872
|
+
serviceConfig: i0.Signal<FilterBarConfig | undefined>;
|
|
873
|
+
allFilterOptions: i0.Signal<monkey_style_guide.FilterOption[]>;
|
|
874
|
+
queryPlaceholder: i0.Signal<string>;
|
|
875
|
+
hasActiveQuery: i0.Signal<boolean>;
|
|
759
876
|
constructor();
|
|
760
877
|
ngOnInit(): void;
|
|
761
878
|
ngAfterViewInit(): void;
|
|
@@ -773,8 +890,8 @@ declare class MonkeyComplexFilterBarComponent implements OnInit, OnChanges, Afte
|
|
|
773
890
|
clearQuery(): void;
|
|
774
891
|
onShowDocs(event: MouseEvent): void;
|
|
775
892
|
closeDocs: () => void;
|
|
776
|
-
static ɵfac:
|
|
777
|
-
static ɵcmp:
|
|
893
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyComplexFilterBarComponent, never>;
|
|
894
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyComplexFilterBarComponent, "monkey-complex-filter-bar", never, { "key": { "alias": "key"; "required": true; "isSignal": true; }; "config": { "alias": "config"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; }, { "complexFilterChange": "complexFilterChange"; }, never, ["*"], true, never>;
|
|
778
895
|
}
|
|
779
896
|
|
|
780
897
|
interface FilterBarState {
|
|
@@ -789,10 +906,10 @@ declare class MonkeyFilterBarService {
|
|
|
789
906
|
private _complexQueries;
|
|
790
907
|
setConfig(storageKey: string, config: FilterBarConfig): void;
|
|
791
908
|
getConfig(storageKey: string): FilterBarConfig | undefined;
|
|
792
|
-
config(storageKey: string):
|
|
909
|
+
config(storageKey: string): i0.Signal<FilterBarConfig | undefined>;
|
|
793
910
|
availableFilterOptions(storageKey: string): FilterOption[];
|
|
794
911
|
getActiveFilters(storageKey: string): ActiveFilter[];
|
|
795
|
-
activeFilters(storageKey: string):
|
|
912
|
+
activeFilters(storageKey: string): i0.Signal<ActiveFilter[]>;
|
|
796
913
|
isFilterActive(storageKey: string, filterKey: string): boolean;
|
|
797
914
|
setActiveFilters(storageKey: string, filters: ActiveFilter[]): void;
|
|
798
915
|
addFilter(storageKey: string, option: FilterOption, value: string | {
|
|
@@ -812,13 +929,13 @@ declare class MonkeyFilterBarService {
|
|
|
812
929
|
removeFilter(storageKey: string, filterKey: string): void;
|
|
813
930
|
clearAllFilters(storageKey: string): void;
|
|
814
931
|
getSearchValue(storageKey: string): string;
|
|
815
|
-
searchValue(storageKey: string):
|
|
932
|
+
searchValue(storageKey: string): i0.Signal<string>;
|
|
816
933
|
setSearchValue(storageKey: string, value: string): void;
|
|
817
934
|
getComplexQuery(storageKey: string): string;
|
|
818
935
|
setComplexQuery(storageKey: string, query: string): void;
|
|
819
936
|
clearComplexQuery(storageKey: string): void;
|
|
820
937
|
getState(storageKey: string): FilterBarState;
|
|
821
|
-
state(storageKey: string):
|
|
938
|
+
state(storageKey: string): i0.Signal<{
|
|
822
939
|
search: string;
|
|
823
940
|
filters: ActiveFilter[];
|
|
824
941
|
complexQuery: string | undefined;
|
|
@@ -843,8 +960,8 @@ declare class MonkeyFilterBarService {
|
|
|
843
960
|
parseComplexQuery(raw: string): ComplexFilterGroup[];
|
|
844
961
|
private _parseConditionToken;
|
|
845
962
|
private formatFilterValuePlain;
|
|
846
|
-
static ɵfac:
|
|
847
|
-
static ɵprov:
|
|
963
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterBarService, never>;
|
|
964
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyFilterBarService>;
|
|
848
965
|
}
|
|
849
966
|
|
|
850
967
|
/** ************************
|
|
@@ -938,20 +1055,20 @@ declare class MonkeyFilterBarComponent {
|
|
|
938
1055
|
private readonly _text;
|
|
939
1056
|
private _commitTimer;
|
|
940
1057
|
private readonly _reported;
|
|
941
|
-
readonly config:
|
|
942
|
-
readonly filters:
|
|
943
|
-
readonly onFiltersChange:
|
|
944
|
-
readonly dateFormat:
|
|
945
|
-
readonly disabled:
|
|
946
|
-
readonly debounce:
|
|
1058
|
+
readonly config: i0.InputSignal<MonkeyFilterBarConfig | undefined>;
|
|
1059
|
+
readonly filters: i0.InputSignal<readonly MonkeyAppliedFilter[]>;
|
|
1060
|
+
readonly onFiltersChange: i0.OutputEmitterRef<readonly MonkeyAppliedFilter[]>;
|
|
1061
|
+
readonly dateFormat: i0.InputSignal<string>;
|
|
1062
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1063
|
+
readonly debounce: i0.InputSignal<number>;
|
|
947
1064
|
readonly appPainted: typeof appPainted;
|
|
948
|
-
protected readonly rows:
|
|
949
|
-
protected readonly openPanel:
|
|
950
|
-
protected readonly triggerOpen:
|
|
951
|
-
protected readonly calendarOpen:
|
|
952
|
-
protected readonly categorySearch:
|
|
953
|
-
protected readonly immediateTriggerExit:
|
|
954
|
-
protected readonly scrollVisible:
|
|
1065
|
+
protected readonly rows: i0.WritableSignal<readonly MonkeyFilterRow[]>;
|
|
1066
|
+
protected readonly openPanel: i0.WritableSignal<OpenPanel | null>;
|
|
1067
|
+
protected readonly triggerOpen: i0.WritableSignal<boolean>;
|
|
1068
|
+
protected readonly calendarOpen: i0.WritableSignal<string | null>;
|
|
1069
|
+
protected readonly categorySearch: i0.WritableSignal<string>;
|
|
1070
|
+
protected readonly immediateTriggerExit: i0.WritableSignal<boolean>;
|
|
1071
|
+
protected readonly scrollVisible: i0.WritableSignal<boolean>;
|
|
955
1072
|
protected textValue: string;
|
|
956
1073
|
protected textValue2: string;
|
|
957
1074
|
protected currencyValue: number | null;
|
|
@@ -962,8 +1079,8 @@ declare class MonkeyFilterBarComponent {
|
|
|
962
1079
|
endDate: string;
|
|
963
1080
|
};
|
|
964
1081
|
protected dayValue: string;
|
|
965
|
-
protected readonly options:
|
|
966
|
-
protected readonly labels:
|
|
1082
|
+
protected readonly options: i0.Signal<readonly MonkeyFilterBarOption[]>;
|
|
1083
|
+
protected readonly labels: i0.Signal<{
|
|
967
1084
|
add: string;
|
|
968
1085
|
addAria: string;
|
|
969
1086
|
clear: string;
|
|
@@ -975,16 +1092,16 @@ declare class MonkeyFilterBarComponent {
|
|
|
975
1092
|
rangeTo: string;
|
|
976
1093
|
remove: string;
|
|
977
1094
|
}>;
|
|
978
|
-
protected readonly dateShortcuts:
|
|
1095
|
+
protected readonly dateShortcuts: i0.Signal<{
|
|
979
1096
|
key: string;
|
|
980
1097
|
label: string;
|
|
981
1098
|
}[]>;
|
|
982
|
-
protected readonly addOptions:
|
|
983
|
-
protected readonly canAddFilter:
|
|
984
|
-
protected readonly changeOptions:
|
|
985
|
-
protected readonly triggerVariant:
|
|
986
|
-
protected readonly triggerIcon:
|
|
987
|
-
protected readonly triggerFlipId:
|
|
1099
|
+
protected readonly addOptions: i0.Signal<MonkeyFilterBarOption[]>;
|
|
1100
|
+
protected readonly canAddFilter: i0.Signal<boolean>;
|
|
1101
|
+
protected readonly changeOptions: i0.Signal<MonkeyFilterBarOption[]>;
|
|
1102
|
+
protected readonly triggerVariant: i0.Signal<"icon" | "text">;
|
|
1103
|
+
protected readonly triggerIcon: i0.Signal<"filter" | "add-plus">;
|
|
1104
|
+
protected readonly triggerFlipId: i0.Signal<"trigger-text" | "trigger-icon">;
|
|
988
1105
|
constructor();
|
|
989
1106
|
private askForAnswer;
|
|
990
1107
|
private seedDraft;
|
|
@@ -1038,17 +1155,17 @@ declare class MonkeyFilterBarComponent {
|
|
|
1038
1155
|
protected onApply(row: MonkeyFilterRow): void;
|
|
1039
1156
|
protected onRemove(row: MonkeyFilterRow): void;
|
|
1040
1157
|
protected onClearAll(): void;
|
|
1041
|
-
static ɵfac:
|
|
1042
|
-
static ɵcmp:
|
|
1158
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterBarComponent, never>;
|
|
1159
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterBarComponent, "monkey-filter-bar", never, { "config": { "alias": "config"; "required": false; "isSignal": true; }; "filters": { "alias": "filters"; "required": false; "isSignal": true; }; "dateFormat": { "alias": "dateFormat"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "debounce": { "alias": "debounce"; "required": false; "isSignal": true; }; }, { "onFiltersChange": "onFiltersChange"; }, never, ["*"], true, never>;
|
|
1043
1160
|
}
|
|
1044
1161
|
|
|
1045
1162
|
declare class MonkeyFilterChipComponent {
|
|
1046
|
-
readonly removeIcon:
|
|
1047
|
-
readonly removeLabel:
|
|
1048
|
-
readonly disabled:
|
|
1049
|
-
readonly onRemove:
|
|
1050
|
-
static ɵfac:
|
|
1051
|
-
static ɵcmp:
|
|
1163
|
+
readonly removeIcon: i0.InputSignal<string>;
|
|
1164
|
+
readonly removeLabel: i0.InputSignal<string>;
|
|
1165
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1166
|
+
readonly onRemove: i0.OutputEmitterRef<void>;
|
|
1167
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterChipComponent, never>;
|
|
1168
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterChipComponent, "monkey-filter-chip", never, { "removeIcon": { "alias": "removeIcon"; "required": false; "isSignal": true; }; "removeLabel": { "alias": "removeLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "onRemove": "onRemove"; }, never, ["*"], true, never>;
|
|
1052
1169
|
}
|
|
1053
1170
|
|
|
1054
1171
|
declare class MonkeyFilterMenuComponent implements OnDestroy {
|
|
@@ -1056,57 +1173,57 @@ declare class MonkeyFilterMenuComponent implements OnDestroy {
|
|
|
1056
1173
|
private readonly _items;
|
|
1057
1174
|
private readonly _overflowing;
|
|
1058
1175
|
private _observer?;
|
|
1059
|
-
readonly showSearch:
|
|
1060
|
-
readonly searchPlaceholder:
|
|
1061
|
-
readonly showScroll:
|
|
1062
|
-
readonly maxHeight:
|
|
1063
|
-
readonly onSearchChange:
|
|
1176
|
+
readonly showSearch: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1177
|
+
readonly searchPlaceholder: i0.InputSignal<string>;
|
|
1178
|
+
readonly showScroll: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1179
|
+
readonly maxHeight: i0.InputSignal<number>;
|
|
1180
|
+
readonly onSearchChange: i0.OutputEmitterRef<string>;
|
|
1064
1181
|
protected searchValue: string;
|
|
1065
|
-
protected readonly scrolling:
|
|
1182
|
+
protected readonly scrolling: i0.Signal<boolean>;
|
|
1066
1183
|
constructor();
|
|
1067
1184
|
private disconnect;
|
|
1068
1185
|
ngOnDestroy(): void;
|
|
1069
1186
|
protected onSearchInput(value: string): void;
|
|
1070
|
-
static ɵfac:
|
|
1071
|
-
static ɵcmp:
|
|
1187
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterMenuComponent, never>;
|
|
1188
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterMenuComponent, "monkey-filter-menu", never, { "showSearch": { "alias": "showSearch"; "required": false; "isSignal": true; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; "isSignal": true; }; "showScroll": { "alias": "showScroll"; "required": false; "isSignal": true; }; "maxHeight": { "alias": "maxHeight"; "required": false; "isSignal": true; }; }, { "onSearchChange": "onSearchChange"; }, never, ["*"], true, never>;
|
|
1072
1189
|
}
|
|
1073
1190
|
|
|
1074
1191
|
type MonkeyFilterMenuItemProperty = 'text' | 'checkbox';
|
|
1075
1192
|
declare class MonkeyFilterMenuItemComponent {
|
|
1076
|
-
readonly property:
|
|
1077
|
-
readonly leadIcon:
|
|
1078
|
-
readonly label:
|
|
1079
|
-
readonly description:
|
|
1080
|
-
readonly checked:
|
|
1081
|
-
readonly selected:
|
|
1082
|
-
readonly disabled:
|
|
1083
|
-
readonly onItemClick:
|
|
1193
|
+
readonly property: i0.InputSignal<MonkeyFilterMenuItemProperty>;
|
|
1194
|
+
readonly leadIcon: i0.InputSignal<string | null>;
|
|
1195
|
+
readonly label: i0.InputSignal<string>;
|
|
1196
|
+
readonly description: i0.InputSignal<string | null>;
|
|
1197
|
+
readonly checked: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1198
|
+
readonly selected: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1199
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1200
|
+
readonly onItemClick: i0.OutputEmitterRef<void>;
|
|
1084
1201
|
protected onClick(): void;
|
|
1085
|
-
static ɵfac:
|
|
1086
|
-
static ɵcmp:
|
|
1202
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterMenuItemComponent, never>;
|
|
1203
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterMenuItemComponent, "monkey-filter-menu-item", never, { "property": { "alias": "property"; "required": false; "isSignal": true; }; "leadIcon": { "alias": "leadIcon"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "description": { "alias": "description"; "required": false; "isSignal": true; }; "checked": { "alias": "checked"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; }, { "onItemClick": "onItemClick"; }, never, never, true, never>;
|
|
1087
1204
|
}
|
|
1088
1205
|
|
|
1089
1206
|
declare class MonkeyFilterSegmentComponent {
|
|
1090
1207
|
private readonly _hostEl;
|
|
1091
1208
|
private readonly _menuEl;
|
|
1092
|
-
readonly icon:
|
|
1093
|
-
readonly text:
|
|
1094
|
-
readonly placeholder:
|
|
1095
|
-
readonly readonlySegment:
|
|
1096
|
-
readonly disabled:
|
|
1097
|
-
readonly open:
|
|
1098
|
-
readonly onOpenChange:
|
|
1099
|
-
readonly onSegmentClick:
|
|
1100
|
-
readonly filled:
|
|
1101
|
-
readonly label:
|
|
1209
|
+
readonly icon: i0.InputSignal<string | null>;
|
|
1210
|
+
readonly text: i0.InputSignal<string>;
|
|
1211
|
+
readonly placeholder: i0.InputSignal<string>;
|
|
1212
|
+
readonly readonlySegment: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1213
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1214
|
+
readonly open: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1215
|
+
readonly onOpenChange: i0.OutputEmitterRef<boolean>;
|
|
1216
|
+
readonly onSegmentClick: i0.OutputEmitterRef<void>;
|
|
1217
|
+
readonly filled: i0.Signal<boolean>;
|
|
1218
|
+
readonly label: i0.Signal<string>;
|
|
1102
1219
|
constructor();
|
|
1103
1220
|
private focusButton;
|
|
1104
1221
|
toggle(): void;
|
|
1105
1222
|
onDocumentPointerdown(event: PointerEvent): void;
|
|
1106
1223
|
onEscape(): void;
|
|
1107
1224
|
closeAndFocus(): void;
|
|
1108
|
-
static ɵfac:
|
|
1109
|
-
static ɵcmp:
|
|
1225
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterSegmentComponent, never>;
|
|
1226
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterSegmentComponent, "monkey-filter-segment", never, { "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "placeholder": { "alias": "placeholder"; "required": false; "isSignal": true; }; "readonlySegment": { "alias": "readonlySegment"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; }, { "onOpenChange": "onOpenChange"; "onSegmentClick": "onSegmentClick"; }, never, ["*"], true, never>;
|
|
1110
1227
|
}
|
|
1111
1228
|
|
|
1112
1229
|
/** ************************
|
|
@@ -1120,23 +1237,23 @@ type MonkeyFilterTriggerVariant = 'text' | 'icon';
|
|
|
1120
1237
|
declare class MonkeyFilterTriggerComponent {
|
|
1121
1238
|
private readonly _hostEl;
|
|
1122
1239
|
private readonly _menuEl;
|
|
1123
|
-
readonly variant:
|
|
1124
|
-
readonly icon:
|
|
1125
|
-
readonly text:
|
|
1126
|
-
readonly ariaLabel:
|
|
1127
|
-
readonly disabled:
|
|
1128
|
-
readonly immediateExit:
|
|
1129
|
-
readonly open:
|
|
1130
|
-
readonly alignment:
|
|
1131
|
-
readonly onOpenChange:
|
|
1132
|
-
readonly ariaLabelAttr:
|
|
1133
|
-
readonly menuAlignment:
|
|
1240
|
+
readonly variant: i0.InputSignal<MonkeyFilterTriggerVariant>;
|
|
1241
|
+
readonly icon: i0.InputSignal<string>;
|
|
1242
|
+
readonly text: i0.InputSignal<string>;
|
|
1243
|
+
readonly ariaLabel: i0.InputSignal<string>;
|
|
1244
|
+
readonly disabled: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1245
|
+
readonly immediateExit: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1246
|
+
readonly open: i0.InputSignalWithTransform<boolean, unknown>;
|
|
1247
|
+
readonly alignment: i0.InputSignal<MenuAlignment | null>;
|
|
1248
|
+
readonly onOpenChange: i0.OutputEmitterRef<boolean>;
|
|
1249
|
+
readonly ariaLabelAttr: i0.Signal<string | null>;
|
|
1250
|
+
readonly menuAlignment: i0.Signal<MenuAlignment>;
|
|
1134
1251
|
constructor();
|
|
1135
1252
|
toggle(): void;
|
|
1136
1253
|
onDocumentPointerdown(event: PointerEvent): void;
|
|
1137
1254
|
onEscape(): void;
|
|
1138
|
-
static ɵfac:
|
|
1139
|
-
static ɵcmp:
|
|
1255
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFilterTriggerComponent, never>;
|
|
1256
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyFilterTriggerComponent, "monkey-filter-trigger", never, { "variant": { "alias": "variant"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "text": { "alias": "text"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "immediateExit": { "alias": "immediateExit"; "required": false; "isSignal": true; }; "open": { "alias": "open"; "required": false; "isSignal": true; }; "alignment": { "alias": "alignment"; "required": false; "isSignal": true; }; }, { "onOpenChange": "onOpenChange"; }, never, ["*"], true, never>;
|
|
1140
1257
|
}
|
|
1141
1258
|
|
|
1142
1259
|
declare class MonkeyIconButtonComponent {
|
|
@@ -1152,8 +1269,8 @@ declare class MonkeyIconButtonComponent {
|
|
|
1152
1269
|
set id(value: string);
|
|
1153
1270
|
constructor();
|
|
1154
1271
|
onClick(event: any): void;
|
|
1155
|
-
static ɵfac:
|
|
1156
|
-
static ɵcmp:
|
|
1272
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyIconButtonComponent, never>;
|
|
1273
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyIconButtonComponent, "monkey-icon-button", never, { "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "color": { "alias": "color"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
1157
1274
|
}
|
|
1158
1275
|
|
|
1159
1276
|
/** ************************
|
|
@@ -1203,8 +1320,8 @@ declare class MonkeyInputCurrencyDirective implements MonkeyFormFieldControl, On
|
|
|
1203
1320
|
onContainerClick(): void;
|
|
1204
1321
|
focusChanged(isFocused: boolean): void;
|
|
1205
1322
|
focusOutChanged(): void;
|
|
1206
|
-
static ɵfac:
|
|
1207
|
-
static ɵdir:
|
|
1323
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputCurrencyDirective, never>;
|
|
1324
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyInputCurrencyDirective, "input[monkey-input-currency]", ["monkeyInput"], { "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; }, {}, never, never, false, never>;
|
|
1208
1325
|
static ngAcceptInputType_disabled: unknown;
|
|
1209
1326
|
}
|
|
1210
1327
|
|
|
@@ -1251,15 +1368,15 @@ declare class MonkeyInputDirective implements MonkeyFormFieldControl, OnChanges,
|
|
|
1251
1368
|
onContainerClick(): void;
|
|
1252
1369
|
focusChanged(isFocused: boolean): void;
|
|
1253
1370
|
focusOutChanged(): void;
|
|
1254
|
-
static ɵfac:
|
|
1255
|
-
static ɵdir:
|
|
1371
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputDirective, never>;
|
|
1372
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyInputDirective, "input[monkey-input],textarea[monkey-input]", ["monkeyInput"], { "name": { "alias": "name"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; "required": { "alias": "required"; "required": false; }; "type": { "alias": "type"; "required": false; }; "min": { "alias": "min"; "required": false; }; "max": { "alias": "max"; "required": false; }; "percent": { "alias": "percent"; "required": false; }; }, {}, never, never, false, never>;
|
|
1256
1373
|
static ngAcceptInputType_disabled: unknown;
|
|
1257
1374
|
}
|
|
1258
1375
|
|
|
1259
1376
|
declare class MonkeyInputModule {
|
|
1260
|
-
static ɵfac:
|
|
1261
|
-
static ɵmod:
|
|
1262
|
-
static ɵinj:
|
|
1377
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputModule, never>;
|
|
1378
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyInputModule, [typeof MonkeyInputDirective, typeof MonkeyInputCurrencyDirective], never, [typeof MonkeyInputDirective, typeof MonkeyInputCurrencyDirective]>;
|
|
1379
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyInputModule>;
|
|
1263
1380
|
}
|
|
1264
1381
|
|
|
1265
1382
|
declare class MonkeyInputCodeComponent implements ControlValueAccessor, MonkeyFormFieldControl, AfterViewInit {
|
|
@@ -1276,7 +1393,7 @@ declare class MonkeyInputCodeComponent implements ControlValueAccessor, MonkeyFo
|
|
|
1276
1393
|
focused: boolean;
|
|
1277
1394
|
length: InputSignal<number>;
|
|
1278
1395
|
inputType: InputSignal<string>;
|
|
1279
|
-
inputIndices:
|
|
1396
|
+
inputIndices: i0.Signal<string[]>;
|
|
1280
1397
|
get disabled(): boolean;
|
|
1281
1398
|
set disabled(value: boolean);
|
|
1282
1399
|
_disabled: boolean;
|
|
@@ -1301,8 +1418,8 @@ declare class MonkeyInputCodeComponent implements ControlValueAccessor, MonkeyFo
|
|
|
1301
1418
|
registerOnChange(fn: any): void;
|
|
1302
1419
|
registerOnTouched(fn: any): void;
|
|
1303
1420
|
setDisabledState(isDisabled: boolean): void;
|
|
1304
|
-
static ɵfac:
|
|
1305
|
-
static ɵcmp:
|
|
1421
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputCodeComponent, [{ optional: true; }]>;
|
|
1422
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyInputCodeComponent, "monkey-input-code", never, { "length": { "alias": "length"; "required": false; "isSignal": true; }; "inputType": { "alias": "inputType"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
1306
1423
|
static ngAcceptInputType_disabled: unknown;
|
|
1307
1424
|
}
|
|
1308
1425
|
|
|
@@ -1353,8 +1470,8 @@ declare class MonkeyInputDateRangeComponent implements MonkeyFormFieldControl, C
|
|
|
1353
1470
|
writeValue(value: any): void;
|
|
1354
1471
|
onOpenPopover(): void;
|
|
1355
1472
|
onHandleDate(event: any): void;
|
|
1356
|
-
static ɵfac:
|
|
1357
|
-
static ɵcmp:
|
|
1473
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputDateRangeComponent, [{ optional: true; }]>;
|
|
1474
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyInputDateRangeComponent, "monkey-input-date-range", never, { "placeholder": { "alias": "placeholder"; "required": true; }; "title": { "alias": "title"; "required": true; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "minDate": { "alias": "minDate"; "required": false; }; "maxDate": { "alias": "maxDate"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
1358
1475
|
static ngAcceptInputType_disabled: unknown;
|
|
1359
1476
|
static ngAcceptInputType_required: unknown;
|
|
1360
1477
|
}
|
|
@@ -1413,8 +1530,8 @@ declare class MonkeyInputPhoneComponent implements MonkeyFormFieldControl, Contr
|
|
|
1413
1530
|
onInputChange(event: Event): void;
|
|
1414
1531
|
onCountryChange(): void;
|
|
1415
1532
|
getMaxLength(): number;
|
|
1416
|
-
static ɵfac:
|
|
1417
|
-
static ɵcmp:
|
|
1533
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputPhoneComponent, never>;
|
|
1534
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyInputPhoneComponent, "monkey-input-phone", never, { "placeholder": { "alias": "placeholder"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, {}, never, never, true, never>;
|
|
1418
1535
|
static ngAcceptInputType_disabled: unknown;
|
|
1419
1536
|
static ngAcceptInputType_required: unknown;
|
|
1420
1537
|
}
|
|
@@ -1473,8 +1590,8 @@ declare class MonkeyInputUploadComponent implements MonkeyFormFieldControl, Cont
|
|
|
1473
1590
|
writeValue(value: any): void;
|
|
1474
1591
|
reset(): void;
|
|
1475
1592
|
onFileSelected(event: Event): void;
|
|
1476
|
-
static ɵfac:
|
|
1477
|
-
static ɵcmp:
|
|
1593
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInputUploadComponent, never>;
|
|
1594
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyInputUploadComponent, "monkey-input-upload", never, { "progress": { "alias": "progress"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "maxSizeBytes": { "alias": "maxSizeBytes"; "required": false; }; "allowedExtensions": { "alias": "allowedExtensions"; "required": false; }; "loading": { "alias": "loading"; "required": false; }; "tabIndex": { "alias": "tabIndex"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
1478
1595
|
static ngAcceptInputType_loading: unknown;
|
|
1479
1596
|
static ngAcceptInputType_disabled: unknown;
|
|
1480
1597
|
static ngAcceptInputType_required: unknown;
|
|
@@ -1483,26 +1600,26 @@ declare class MonkeyInputUploadComponent implements MonkeyFormFieldControl, Cont
|
|
|
1483
1600
|
declare class MonkeyModalActionsDirective {
|
|
1484
1601
|
mkAlign: 'start' | 'center' | 'end';
|
|
1485
1602
|
id: string;
|
|
1486
|
-
static ɵfac:
|
|
1487
|
-
static ɵdir:
|
|
1603
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalActionsDirective, never>;
|
|
1604
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyModalActionsDirective, "monkey-modal-actions, [monkey-modal-actions]", never, { "mkAlign": { "alias": "mkAlign"; "required": false; }; }, {}, never, never, false, never>;
|
|
1488
1605
|
}
|
|
1489
1606
|
|
|
1490
1607
|
declare class MonkeyModalContentDirective {
|
|
1491
1608
|
id: string;
|
|
1492
|
-
static ɵfac:
|
|
1493
|
-
static ɵdir:
|
|
1609
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalContentDirective, never>;
|
|
1610
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyModalContentDirective, "monkey-modal-content, [monkey-modal-content]", never, {}, {}, never, never, false, never>;
|
|
1494
1611
|
}
|
|
1495
1612
|
|
|
1496
1613
|
declare class MonkeyModalSubtitleDirective {
|
|
1497
1614
|
id: string;
|
|
1498
|
-
static ɵfac:
|
|
1499
|
-
static ɵdir:
|
|
1615
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalSubtitleDirective, never>;
|
|
1616
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyModalSubtitleDirective, "monkey-modal-subtitle, [monkey-modal-subtitle]", never, {}, {}, never, never, false, never>;
|
|
1500
1617
|
}
|
|
1501
1618
|
|
|
1502
1619
|
declare class MonkeyModalTitleDirective {
|
|
1503
1620
|
id: string;
|
|
1504
|
-
static ɵfac:
|
|
1505
|
-
static ɵdir:
|
|
1621
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalTitleDirective, never>;
|
|
1622
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyModalTitleDirective, "monkey-modal-title, [monkey-modal-title]", never, {}, {}, never, never, false, never>;
|
|
1506
1623
|
}
|
|
1507
1624
|
|
|
1508
1625
|
/** ************************
|
|
@@ -1580,8 +1697,8 @@ declare class MonkeyModalComponent implements AfterViewInit, OnDestroy {
|
|
|
1580
1697
|
ngAfterViewInit(): void;
|
|
1581
1698
|
ngOnDestroy(): void;
|
|
1582
1699
|
close(): void;
|
|
1583
|
-
static ɵfac:
|
|
1584
|
-
static ɵcmp:
|
|
1700
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalComponent, [null, { optional: true; }, { optional: true; }]>;
|
|
1701
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyModalComponent, "monkey-modal", never, {}, {}, never, ["monkey-modal-title", "[monkey-modal-title]", "monkey-modal-subtitle", "[monkey-modal-subtitle]", "monkey-modal-content", "[monkey-modal-content]", "monkey-modal-actions", "[monkey-modal-actions]"], false, never>;
|
|
1585
1702
|
}
|
|
1586
1703
|
|
|
1587
1704
|
declare class MonkeyModalDefaultComponent {
|
|
@@ -1590,8 +1707,8 @@ declare class MonkeyModalDefaultComponent {
|
|
|
1590
1707
|
constructor(config: MonkeyModalDefaultConfig, modalRef: MonkeyModalRef);
|
|
1591
1708
|
onSubmit(): void;
|
|
1592
1709
|
onClose(): void;
|
|
1593
|
-
static ɵfac:
|
|
1594
|
-
static ɵcmp:
|
|
1710
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalDefaultComponent, never>;
|
|
1711
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyModalDefaultComponent, "monkey-modal-default", never, {}, {}, never, never, false, never>;
|
|
1595
1712
|
}
|
|
1596
1713
|
|
|
1597
1714
|
declare class MonkeyModalConfirmationComponent {
|
|
@@ -1600,20 +1717,20 @@ declare class MonkeyModalConfirmationComponent {
|
|
|
1600
1717
|
constructor(config: MonkeyModalConfirmationConfig, modalRef: MonkeyModalRef);
|
|
1601
1718
|
onSubmit(): void;
|
|
1602
1719
|
onClose(): void;
|
|
1603
|
-
static ɵfac:
|
|
1604
|
-
static ɵcmp:
|
|
1720
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalConfirmationComponent, never>;
|
|
1721
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyModalConfirmationComponent, "monkey-modal-confirmation", never, {}, {}, never, never, false, never>;
|
|
1605
1722
|
}
|
|
1606
1723
|
|
|
1607
1724
|
declare class MonkeyModalModule {
|
|
1608
|
-
static ɵfac:
|
|
1609
|
-
static ɵmod:
|
|
1610
|
-
static ɵinj:
|
|
1725
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalModule, never>;
|
|
1726
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyModalModule, [typeof MonkeyModalComponent, typeof MonkeyModalDefaultComponent, typeof MonkeyModalConfirmationComponent, typeof MonkeyModalTitleDirective, typeof MonkeyModalSubtitleDirective, typeof MonkeyModalContentDirective, typeof MonkeyModalActionsDirective], [typeof i2.CommonModule, typeof MonkeyButtonComponent, typeof MonkeyIconButtonComponent], [typeof MonkeyModalComponent, typeof MonkeyModalTitleDirective, typeof MonkeyModalSubtitleDirective, typeof MonkeyModalContentDirective, typeof MonkeyModalActionsDirective]>;
|
|
1727
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyModalModule>;
|
|
1611
1728
|
}
|
|
1612
1729
|
|
|
1613
1730
|
declare class IdGenerator {
|
|
1614
1731
|
getId(prefix: string): string;
|
|
1615
|
-
static ɵfac:
|
|
1616
|
-
static ɵprov:
|
|
1732
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<IdGenerator, never>;
|
|
1733
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<IdGenerator>;
|
|
1617
1734
|
}
|
|
1618
1735
|
|
|
1619
1736
|
/** ************************
|
|
@@ -1635,8 +1752,8 @@ declare class MonkeyModalService {
|
|
|
1635
1752
|
openDefault(params: MonkeyModalDefaultConfig, config: MonkeyModalConfig): MonkeyModalRef;
|
|
1636
1753
|
openConfirmation(params: MonkeyModalConfirmationConfig, config: MonkeyModalConfig): MonkeyModalRef;
|
|
1637
1754
|
closeAll(): void;
|
|
1638
|
-
static ɵfac:
|
|
1639
|
-
static ɵprov:
|
|
1755
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyModalService, never>;
|
|
1756
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyModalService>;
|
|
1640
1757
|
}
|
|
1641
1758
|
|
|
1642
1759
|
/** ************************
|
|
@@ -1651,14 +1768,16 @@ declare const MECX_MODAL_DEFAULT_CONFIG: InjectionToken<MonkeyModalDefaultConfig
|
|
|
1651
1768
|
declare class MonkeyOptionComponent {
|
|
1652
1769
|
private readonly idGenerator;
|
|
1653
1770
|
_content: ElementRef<HTMLElement> | undefined;
|
|
1654
|
-
readonly value:
|
|
1771
|
+
readonly value: i0.InputSignal<any>;
|
|
1655
1772
|
disabled: boolean;
|
|
1656
1773
|
type: string;
|
|
1774
|
+
readonly size: i0.InputSignal<MonkeySize | undefined>;
|
|
1775
|
+
protected get hostClasses(): string;
|
|
1657
1776
|
get displayContent(): string;
|
|
1658
|
-
selected:
|
|
1777
|
+
selected: i0.InputSignal<boolean>;
|
|
1659
1778
|
tabIndex: number;
|
|
1660
1779
|
action: Function;
|
|
1661
|
-
isSelected:
|
|
1780
|
+
isSelected: i0.Signal<boolean>;
|
|
1662
1781
|
readonly id: string;
|
|
1663
1782
|
private _selectedState;
|
|
1664
1783
|
private handleAction;
|
|
@@ -1666,8 +1785,8 @@ declare class MonkeyOptionComponent {
|
|
|
1666
1785
|
onClick(event: MouseEvent): void;
|
|
1667
1786
|
handleKeyDown(event: KeyboardEvent): void;
|
|
1668
1787
|
onSelect(select: boolean): void;
|
|
1669
|
-
static ɵfac:
|
|
1670
|
-
static ɵcmp:
|
|
1788
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyOptionComponent, never>;
|
|
1789
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyOptionComponent, "monkey-option", never, { "value": { "alias": "value"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; }; "type": { "alias": "type"; "required": false; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1671
1790
|
static ngAcceptInputType_disabled: unknown;
|
|
1672
1791
|
}
|
|
1673
1792
|
|
|
@@ -1676,7 +1795,7 @@ declare class MonkeyPassNumberComponent {
|
|
|
1676
1795
|
protected _uid: string;
|
|
1677
1796
|
protected _id: string;
|
|
1678
1797
|
protected selected: number[];
|
|
1679
|
-
onChange:
|
|
1798
|
+
onChange: i0.OutputEmitterRef<number[]>;
|
|
1680
1799
|
get isDisabledNumbers(): boolean;
|
|
1681
1800
|
get isDisabledClear(): boolean;
|
|
1682
1801
|
get id(): string;
|
|
@@ -1684,8 +1803,8 @@ declare class MonkeyPassNumberComponent {
|
|
|
1684
1803
|
constructor();
|
|
1685
1804
|
protected clear(): void;
|
|
1686
1805
|
protected onPress(pin: number): void;
|
|
1687
|
-
static ɵfac:
|
|
1688
|
-
static ɵcmp:
|
|
1806
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPassNumberComponent, never>;
|
|
1807
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPassNumberComponent, "monkey-pass-number", never, { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
1689
1808
|
}
|
|
1690
1809
|
|
|
1691
1810
|
type PinCombinations = {
|
|
@@ -1705,7 +1824,7 @@ declare class MonkeyPassSecretNumberComponent implements OnInit {
|
|
|
1705
1824
|
readonly orLabel: rxjs.Observable<any>;
|
|
1706
1825
|
protected pins: PinCombinations[];
|
|
1707
1826
|
protected selected: string[];
|
|
1708
|
-
onChange:
|
|
1827
|
+
onChange: i0.OutputEmitterRef<PinResult>;
|
|
1709
1828
|
get id(): string;
|
|
1710
1829
|
set id(value: string);
|
|
1711
1830
|
get isDisabledNumbers(): boolean;
|
|
@@ -1715,8 +1834,8 @@ declare class MonkeyPassSecretNumberComponent implements OnInit {
|
|
|
1715
1834
|
protected clear(): void;
|
|
1716
1835
|
private getPinPassword;
|
|
1717
1836
|
protected onPress(pin: PinCombinations): void;
|
|
1718
|
-
static ɵfac:
|
|
1719
|
-
static ɵcmp:
|
|
1837
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPassSecretNumberComponent, never>;
|
|
1838
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPassSecretNumberComponent, "monkey-pass-secret-number", never, { "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
1720
1839
|
}
|
|
1721
1840
|
|
|
1722
1841
|
/** ************************
|
|
@@ -1766,8 +1885,8 @@ declare class MonkeyRadioButtonComponent implements MonkeyFormFieldControl, Cont
|
|
|
1766
1885
|
registerOnChange(fn: any): void;
|
|
1767
1886
|
registerOnTouched(fn: any): void;
|
|
1768
1887
|
setDisabledState(isDisabled: boolean): void;
|
|
1769
|
-
static ɵfac:
|
|
1770
|
-
static ɵcmp:
|
|
1888
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyRadioButtonComponent, [null, { optional: true; }]>;
|
|
1889
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyRadioButtonComponent, "monkey-radiobutton", never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; "position": { "alias": "position"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; "onSearch": "onSearch"; }, ["options"], ["*"], true, never>;
|
|
1771
1890
|
static ngAcceptInputType_disabled: unknown;
|
|
1772
1891
|
static ngAcceptInputType_required: unknown;
|
|
1773
1892
|
}
|
|
@@ -1790,10 +1909,10 @@ type MonkeyScrollbarSize = 'small' | 'medium';
|
|
|
1790
1909
|
*/
|
|
1791
1910
|
declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
1792
1911
|
private readonly _zone;
|
|
1793
|
-
readonly orientation:
|
|
1794
|
-
readonly size:
|
|
1912
|
+
readonly orientation: i0.InputSignal<MonkeyScrollbarOrientation>;
|
|
1913
|
+
readonly size: i0.InputSignal<MonkeyScrollbarSize>;
|
|
1795
1914
|
/** The element that actually scrolls. */
|
|
1796
|
-
readonly target:
|
|
1915
|
+
readonly target: i0.InputSignal<HTMLElement>;
|
|
1797
1916
|
private readonly trackEl;
|
|
1798
1917
|
/** Scrollable length of the content, in px. */
|
|
1799
1918
|
private readonly total;
|
|
@@ -1803,8 +1922,8 @@ declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
|
1803
1922
|
private readonly scrolled;
|
|
1804
1923
|
/** Length of the track the thumb slides along, in px. */
|
|
1805
1924
|
private readonly trackLength;
|
|
1806
|
-
protected readonly scrollable:
|
|
1807
|
-
protected readonly thumbSize:
|
|
1925
|
+
protected readonly scrollable: i0.Signal<boolean>;
|
|
1926
|
+
protected readonly thumbSize: i0.Signal<string>;
|
|
1808
1927
|
/**
|
|
1809
1928
|
* A px distance, applied as a `translate`, not as `left`/`top`: moving the
|
|
1810
1929
|
* thumb then costs a composited transform instead of a layout pass on every
|
|
@@ -1812,7 +1931,7 @@ declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
|
1812
1931
|
* because the thumb has a minimum length — once that kicks in, a
|
|
1813
1932
|
* percentage of its own (clamped) size no longer maps to track distance.
|
|
1814
1933
|
*/
|
|
1815
|
-
protected readonly thumbOffset:
|
|
1934
|
+
protected readonly thumbOffset: i0.Signal<string>;
|
|
1816
1935
|
private resizeObserver?;
|
|
1817
1936
|
private observedTarget?;
|
|
1818
1937
|
/** Pending animation frame, 0 when none is queued. */
|
|
@@ -1845,22 +1964,22 @@ declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
|
1845
1964
|
* a target swapped out from under the component.
|
|
1846
1965
|
*/
|
|
1847
1966
|
remeasure(): void;
|
|
1848
|
-
static ɵfac:
|
|
1849
|
-
static ɵcmp:
|
|
1967
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyScrollbarComponent, never>;
|
|
1968
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyScrollbarComponent, "monkey-scrollbar", never, { "orientation": { "alias": "orientation"; "required": false; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "target": { "alias": "target"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
1850
1969
|
}
|
|
1851
1970
|
|
|
1852
1971
|
declare class MonkeySecurityLevelComponent {
|
|
1853
|
-
label:
|
|
1854
|
-
score:
|
|
1855
|
-
strengthLabel:
|
|
1972
|
+
label: i0.InputSignal<string | undefined>;
|
|
1973
|
+
score: i0.InputSignal<number>;
|
|
1974
|
+
strengthLabel: i0.InputSignal<string | undefined>;
|
|
1856
1975
|
get class(): string;
|
|
1857
1976
|
protected _uid: string;
|
|
1858
1977
|
protected _id: string;
|
|
1859
1978
|
get id(): string;
|
|
1860
1979
|
set id(value: string);
|
|
1861
1980
|
constructor();
|
|
1862
|
-
static ɵfac:
|
|
1863
|
-
static ɵcmp:
|
|
1981
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySecurityLevelComponent, never>;
|
|
1982
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeySecurityLevelComponent, "monkey-security-level", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "score": { "alias": "score"; "required": true; "isSignal": true; }; "strengthLabel": { "alias": "strengthLabel"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
1864
1983
|
}
|
|
1865
1984
|
|
|
1866
1985
|
declare class MonkeySelectComponent implements MonkeyFormFieldControl, ControlValueAccessor, AfterContentInit, OnInit, OnDestroy, OnChanges {
|
|
@@ -1935,8 +2054,8 @@ declare class MonkeySelectComponent implements MonkeyFormFieldControl, ControlVa
|
|
|
1935
2054
|
setDisabledState(isDisabled: boolean): void;
|
|
1936
2055
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1937
2056
|
onHandleSearch(event: Event): void;
|
|
1938
|
-
static ɵfac:
|
|
1939
|
-
static ɵcmp:
|
|
2057
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySelectComponent, [null, null, null, { optional: true; }]>;
|
|
2058
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeySelectComponent, "monkey-select", never, { "tabIndex": { "alias": "tabIndex"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": true; }; "loading": { "alias": "loading"; "required": false; }; "showSearch": { "alias": "showSearch"; "required": false; }; "searchPlaceholder": { "alias": "searchPlaceholder"; "required": false; }; "type": { "alias": "type"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "required": { "alias": "required"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "onChange": "onChange"; }, ["options"], ["*"], true, never>;
|
|
1940
2059
|
static ngAcceptInputType_loading: unknown;
|
|
1941
2060
|
static ngAcceptInputType_showSearch: unknown;
|
|
1942
2061
|
static ngAcceptInputType_disabled: unknown;
|
|
@@ -1945,17 +2064,17 @@ declare class MonkeySelectComponent implements MonkeyFormFieldControl, ControlVa
|
|
|
1945
2064
|
|
|
1946
2065
|
type Status = 'default' | 'success' | 'warning' | 'error' | 'question' | 'info';
|
|
1947
2066
|
declare class MonkeyStatusComponent {
|
|
1948
|
-
type:
|
|
1949
|
-
size:
|
|
1950
|
-
label:
|
|
2067
|
+
type: i0.InputSignal<Status>;
|
|
2068
|
+
size: i0.InputSignal<MonkeySize>;
|
|
2069
|
+
label: i0.InputSignal<string | undefined>;
|
|
1951
2070
|
get class(): string;
|
|
1952
2071
|
protected _uid: string;
|
|
1953
2072
|
protected _id: string;
|
|
1954
2073
|
get id(): string;
|
|
1955
2074
|
set id(value: string);
|
|
1956
2075
|
constructor();
|
|
1957
|
-
static ɵfac:
|
|
1958
|
-
static ɵcmp:
|
|
2076
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStatusComponent, never>;
|
|
2077
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyStatusComponent, "monkey-status", never, { "type": { "alias": "type"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "label": { "alias": "label"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
1959
2078
|
}
|
|
1960
2079
|
|
|
1961
2080
|
declare class MonkeyStepComponent implements AfterContentInit {
|
|
@@ -1964,15 +2083,15 @@ declare class MonkeyStepComponent implements AfterContentInit {
|
|
|
1964
2083
|
label: string;
|
|
1965
2084
|
step: string;
|
|
1966
2085
|
icon: string;
|
|
1967
|
-
number:
|
|
1968
|
-
hasSubSteps:
|
|
1969
|
-
isSubStep:
|
|
1970
|
-
isCurrent:
|
|
1971
|
-
isComplete:
|
|
1972
|
-
isActive:
|
|
2086
|
+
number: i0.WritableSignal<number | undefined>;
|
|
2087
|
+
hasSubSteps: i0.WritableSignal<boolean>;
|
|
2088
|
+
isSubStep: i0.WritableSignal<boolean>;
|
|
2089
|
+
isCurrent: i0.WritableSignal<boolean>;
|
|
2090
|
+
isComplete: i0.WritableSignal<boolean>;
|
|
2091
|
+
isActive: i0.WritableSignal<boolean>;
|
|
1973
2092
|
ngAfterContentInit(): void;
|
|
1974
|
-
static ɵfac:
|
|
1975
|
-
static ɵcmp:
|
|
2093
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepComponent, never>;
|
|
2094
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyStepComponent, "monkey-step", never, { "label": { "alias": "label"; "required": false; }; "step": { "alias": "step"; "required": false; }; "icon": { "alias": "icon"; "required": false; }; }, {}, ["subSteps"], ["*"], false, never>;
|
|
1976
2095
|
}
|
|
1977
2096
|
|
|
1978
2097
|
/** ************************
|
|
@@ -1992,14 +2111,14 @@ declare class MonkeyStepperComponent implements AfterContentInit, OnChanges {
|
|
|
1992
2111
|
ngAfterContentInit(): void;
|
|
1993
2112
|
ngOnChanges(): void;
|
|
1994
2113
|
render(): void;
|
|
1995
|
-
static ɵfac:
|
|
1996
|
-
static ɵcmp:
|
|
2114
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperComponent, never>;
|
|
2115
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyStepperComponent, "monkey-stepper", never, { "direction": { "alias": "direction"; "required": false; }; "id": { "alias": "id"; "required": false; }; "currentStep": { "alias": "currentStep"; "required": false; }; }, {}, ["steps"], ["*"], false, never>;
|
|
1997
2116
|
}
|
|
1998
2117
|
|
|
1999
2118
|
declare class MonkeyStepperModule {
|
|
2000
|
-
static ɵfac:
|
|
2001
|
-
static ɵmod:
|
|
2002
|
-
static ɵinj:
|
|
2119
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperModule, never>;
|
|
2120
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyStepperModule, [typeof MonkeyStepperComponent, typeof MonkeyStepComponent], [typeof UtilIconComponent], [typeof MonkeyStepperComponent, typeof MonkeyStepComponent]>;
|
|
2121
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyStepperModule>;
|
|
2003
2122
|
}
|
|
2004
2123
|
|
|
2005
2124
|
/** ************************
|
|
@@ -2020,8 +2139,8 @@ declare class MonkeyPaginationActionComponent {
|
|
|
2020
2139
|
get id(): string;
|
|
2021
2140
|
set id(value: string);
|
|
2022
2141
|
constructor();
|
|
2023
|
-
static ɵfac:
|
|
2024
|
-
static ɵcmp:
|
|
2142
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPaginationActionComponent, never>;
|
|
2143
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPaginationActionComponent, "monkey-pagination-action", ["monkeyPaginationAction"], { "disabled": { "alias": "disabled"; "required": false; }; "first": { "alias": "first"; "required": false; }; "last": { "alias": "last"; "required": false; }; "next": { "alias": "next"; "required": true; }; "prev": { "alias": "prev"; "required": true; }; "id": { "alias": "id"; "required": false; }; }, { "onAction": "onAction"; }, never, never, true, never>;
|
|
2025
2144
|
}
|
|
2026
2145
|
|
|
2027
2146
|
declare class MonkeyPaginationLabelComponent {
|
|
@@ -2030,8 +2149,8 @@ declare class MonkeyPaginationLabelComponent {
|
|
|
2030
2149
|
get id(): string;
|
|
2031
2150
|
set id(value: string);
|
|
2032
2151
|
constructor();
|
|
2033
|
-
static ɵfac:
|
|
2034
|
-
static ɵcmp:
|
|
2152
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPaginationLabelComponent, never>;
|
|
2153
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPaginationLabelComponent, "monkey-pagination-label", ["monkeyPaginationLabel"], { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
2035
2154
|
}
|
|
2036
2155
|
|
|
2037
2156
|
/** ************************
|
|
@@ -2050,8 +2169,8 @@ declare class MonkeyPaginationSizeComponent {
|
|
|
2050
2169
|
get id(): string;
|
|
2051
2170
|
set id(value: string);
|
|
2052
2171
|
constructor();
|
|
2053
|
-
static ɵfac:
|
|
2054
|
-
static ɵcmp:
|
|
2172
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPaginationSizeComponent, never>;
|
|
2173
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPaginationSizeComponent, "monkey-pagination-size", ["monkeyPaginationSize"], { "size": { "alias": "size"; "required": true; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
|
|
2055
2174
|
}
|
|
2056
2175
|
|
|
2057
2176
|
/** ************************
|
|
@@ -2103,32 +2222,32 @@ type MonkeyTableSortKind = 'text' | 'number' | 'date';
|
|
|
2103
2222
|
declare class MonkeyTableCellDirective<T> {
|
|
2104
2223
|
readonly template: TemplateRef<MonkeyTableCellContext<T>>;
|
|
2105
2224
|
static ngTemplateContextGuard<T>(_dir: MonkeyTableCellDirective<T>, _ctx: unknown): _ctx is MonkeyTableCellContext<T>;
|
|
2106
|
-
static ɵfac:
|
|
2107
|
-
static ɵdir:
|
|
2225
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableCellDirective<any>, never>;
|
|
2226
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableCellDirective<any>, "ng-template[mkCell]", never, {}, {}, never, never, true, never>;
|
|
2108
2227
|
}
|
|
2109
2228
|
declare class MonkeyTableHeaderCellDirective {
|
|
2110
2229
|
readonly template: TemplateRef<void>;
|
|
2111
|
-
static ɵfac:
|
|
2112
|
-
static ɵdir:
|
|
2230
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableHeaderCellDirective, never>;
|
|
2231
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableHeaderCellDirective, "ng-template[mkHeaderCell]", never, {}, {}, never, never, true, never>;
|
|
2113
2232
|
}
|
|
2114
2233
|
declare class MonkeyTableColumnDirective<T = any> {
|
|
2115
|
-
readonly name:
|
|
2116
|
-
readonly label:
|
|
2117
|
-
readonly labelHidden:
|
|
2118
|
-
readonly unit:
|
|
2119
|
-
readonly width:
|
|
2120
|
-
readonly align:
|
|
2121
|
-
readonly sortable:
|
|
2122
|
-
readonly sortKind:
|
|
2123
|
-
readonly hideable:
|
|
2124
|
-
readonly movable:
|
|
2125
|
-
readonly pinnable:
|
|
2126
|
-
readonly pinned:
|
|
2127
|
-
readonly hidden:
|
|
2128
|
-
readonly cell:
|
|
2129
|
-
readonly headerCell:
|
|
2130
|
-
static ɵfac:
|
|
2131
|
-
static ɵdir:
|
|
2234
|
+
readonly name: i0.InputSignal<string>;
|
|
2235
|
+
readonly label: i0.InputSignal<string>;
|
|
2236
|
+
readonly labelHidden: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2237
|
+
readonly unit: i0.InputSignal<string>;
|
|
2238
|
+
readonly width: i0.InputSignal<string>;
|
|
2239
|
+
readonly align: i0.InputSignal<ColumnAlign>;
|
|
2240
|
+
readonly sortable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2241
|
+
readonly sortKind: i0.InputSignal<MonkeyTableSortKind>;
|
|
2242
|
+
readonly hideable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2243
|
+
readonly movable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2244
|
+
readonly pinnable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2245
|
+
readonly pinned: i0.ModelSignal<ColumnPinned>;
|
|
2246
|
+
readonly hidden: i0.ModelSignal<boolean>;
|
|
2247
|
+
readonly cell: i0.Signal<MonkeyTableCellDirective<any> | undefined>;
|
|
2248
|
+
readonly headerCell: i0.Signal<MonkeyTableHeaderCellDirective | undefined>;
|
|
2249
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableColumnDirective<any>, never>;
|
|
2250
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableColumnDirective<any>, "ng-container[mkColumn]", never, { "name": { "alias": "mkColumn"; "required": true; "isSignal": true; }; "label": { "alias": "label"; "required": true; "isSignal": true; }; "labelHidden": { "alias": "labelHidden"; "required": false; "isSignal": true; }; "unit": { "alias": "unit"; "required": false; "isSignal": true; }; "width": { "alias": "width"; "required": false; "isSignal": true; }; "align": { "alias": "align"; "required": false; "isSignal": true; }; "sortable": { "alias": "sortable"; "required": false; "isSignal": true; }; "sortKind": { "alias": "sortKind"; "required": false; "isSignal": true; }; "hideable": { "alias": "hideable"; "required": false; "isSignal": true; }; "movable": { "alias": "movable"; "required": false; "isSignal": true; }; "pinnable": { "alias": "pinnable"; "required": false; "isSignal": true; }; "pinned": { "alias": "pinned"; "required": false; "isSignal": true; }; "hidden": { "alias": "hidden"; "required": false; "isSignal": true; }; }, { "pinned": "pinnedChange"; "hidden": "hiddenChange"; }, ["cell", "headerCell"], never, true, never>;
|
|
2132
2251
|
}
|
|
2133
2252
|
declare class MonkeyTableRowDetailDirective<T> {
|
|
2134
2253
|
readonly template: TemplateRef<{
|
|
@@ -2139,18 +2258,18 @@ declare class MonkeyTableRowDetailDirective<T> {
|
|
|
2139
2258
|
$implicit: T;
|
|
2140
2259
|
row: T;
|
|
2141
2260
|
};
|
|
2142
|
-
static ɵfac:
|
|
2143
|
-
static ɵdir:
|
|
2261
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableRowDetailDirective<any>, never>;
|
|
2262
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableRowDetailDirective<any>, "ng-template[mkRowDetail]", never, {}, {}, never, never, true, never>;
|
|
2144
2263
|
}
|
|
2145
2264
|
declare class MonkeyTableEmptyDirective {
|
|
2146
2265
|
readonly template: TemplateRef<void>;
|
|
2147
|
-
static ɵfac:
|
|
2148
|
-
static ɵdir:
|
|
2266
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableEmptyDirective, never>;
|
|
2267
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableEmptyDirective, "ng-template[mkEmpty]", never, {}, {}, never, never, true, never>;
|
|
2149
2268
|
}
|
|
2150
2269
|
declare class MonkeyTableLoadingDirective {
|
|
2151
2270
|
readonly template: TemplateRef<void>;
|
|
2152
|
-
static ɵfac:
|
|
2153
|
-
static ɵdir:
|
|
2271
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableLoadingDirective, never>;
|
|
2272
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableLoadingDirective, "ng-template[mkLoading]", never, {}, {}, never, never, true, never>;
|
|
2154
2273
|
}
|
|
2155
2274
|
|
|
2156
2275
|
/** ************************
|
|
@@ -2225,75 +2344,75 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2225
2344
|
private _clientWidth;
|
|
2226
2345
|
private _scrollWidth;
|
|
2227
2346
|
private readonly _layout;
|
|
2228
|
-
readonly rows:
|
|
2229
|
-
readonly rowKey:
|
|
2230
|
-
readonly rowLabel:
|
|
2231
|
-
readonly rowSelectable:
|
|
2232
|
-
readonly ariaLabel:
|
|
2233
|
-
readonly caption:
|
|
2234
|
-
readonly selectionMode:
|
|
2235
|
-
readonly selected:
|
|
2236
|
-
readonly maxSelected:
|
|
2237
|
-
readonly sort:
|
|
2238
|
-
readonly expandable:
|
|
2239
|
-
readonly expanded:
|
|
2240
|
-
readonly reorderable:
|
|
2241
|
-
readonly hideable:
|
|
2242
|
-
readonly pinnable:
|
|
2243
|
-
readonly rowHeight:
|
|
2244
|
-
readonly maxVisibleRows:
|
|
2245
|
-
readonly virtualScroll:
|
|
2246
|
-
readonly columnOrder:
|
|
2247
|
-
readonly columnState:
|
|
2248
|
-
readonly striped:
|
|
2249
|
-
readonly loading:
|
|
2250
|
-
readonly emptyText:
|
|
2251
|
-
readonly skeletonRows:
|
|
2252
|
-
readonly onSortChange:
|
|
2253
|
-
readonly onColumnHidden:
|
|
2347
|
+
readonly rows: i0.InputSignal<readonly T[]>;
|
|
2348
|
+
readonly rowKey: i0.InputSignal<(row: T) => string>;
|
|
2349
|
+
readonly rowLabel: i0.InputSignal<((row: T) => string) | undefined>;
|
|
2350
|
+
readonly rowSelectable: i0.InputSignal<((row: T) => boolean) | undefined>;
|
|
2351
|
+
readonly ariaLabel: i0.InputSignal<string>;
|
|
2352
|
+
readonly caption: i0.InputSignal<string>;
|
|
2353
|
+
readonly selectionMode: i0.InputSignal<"multiple" | "none">;
|
|
2354
|
+
readonly selected: i0.ModelSignal<ReadonlySet<string>>;
|
|
2355
|
+
readonly maxSelected: i0.InputSignal<number>;
|
|
2356
|
+
readonly sort: i0.InputSignal<SortState | null>;
|
|
2357
|
+
readonly expandable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2358
|
+
readonly expanded: i0.ModelSignal<ReadonlySet<string>>;
|
|
2359
|
+
readonly reorderable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2360
|
+
readonly hideable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2361
|
+
readonly pinnable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2362
|
+
readonly rowHeight: i0.InputSignal<number>;
|
|
2363
|
+
readonly maxVisibleRows: i0.InputSignal<number | "none">;
|
|
2364
|
+
readonly virtualScroll: i0.InputSignal<"off" | "auto">;
|
|
2365
|
+
readonly columnOrder: i0.ModelSignal<readonly string[]>;
|
|
2366
|
+
readonly columnState: i0.InputSignal<readonly MonkeyTableColumnState[]>;
|
|
2367
|
+
readonly striped: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2368
|
+
readonly loading: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2369
|
+
readonly emptyText: i0.InputSignal<string>;
|
|
2370
|
+
readonly skeletonRows: i0.InputSignal<number | "auto">;
|
|
2371
|
+
readonly onSortChange: i0.OutputEmitterRef<SortState | null>;
|
|
2372
|
+
readonly onColumnHidden: i0.OutputEmitterRef<{
|
|
2254
2373
|
name: string;
|
|
2255
2374
|
label: string;
|
|
2256
2375
|
}>;
|
|
2257
|
-
readonly onColumnStateChange:
|
|
2258
|
-
readonly onSelectionChange:
|
|
2259
|
-
readonly onExpandChange:
|
|
2376
|
+
readonly onColumnStateChange: i0.OutputEmitterRef<MonkeyTableColumnState[]>;
|
|
2377
|
+
readonly onSelectionChange: i0.OutputEmitterRef<string[]>;
|
|
2378
|
+
readonly onExpandChange: i0.OutputEmitterRef<{
|
|
2260
2379
|
row: T;
|
|
2261
2380
|
key: string;
|
|
2262
2381
|
expanded: boolean;
|
|
2263
2382
|
}>;
|
|
2264
|
-
protected readonly emptyTemplate:
|
|
2265
|
-
protected readonly loadingTemplate:
|
|
2266
|
-
protected readonly rowDetailTemplate:
|
|
2267
|
-
protected readonly plainScroller:
|
|
2268
|
-
protected readonly headClip:
|
|
2269
|
-
protected readonly virtualViewport:
|
|
2270
|
-
protected readonly scrollTarget:
|
|
2383
|
+
protected readonly emptyTemplate: i0.Signal<MonkeyTableEmptyDirective | undefined>;
|
|
2384
|
+
protected readonly loadingTemplate: i0.Signal<MonkeyTableLoadingDirective | undefined>;
|
|
2385
|
+
protected readonly rowDetailTemplate: i0.Signal<MonkeyTableRowDetailDirective<any> | undefined>;
|
|
2386
|
+
protected readonly plainScroller: i0.Signal<ElementRef<HTMLElement> | undefined>;
|
|
2387
|
+
protected readonly headClip: i0.Signal<ElementRef<HTMLElement> | undefined>;
|
|
2388
|
+
protected readonly virtualViewport: i0.Signal<CdkVirtualScrollViewport | undefined>;
|
|
2389
|
+
protected readonly scrollTarget: i0.Signal<HTMLElement | null>;
|
|
2271
2390
|
private readonly _rowCap;
|
|
2272
|
-
protected readonly bounded:
|
|
2273
|
-
protected readonly virtual:
|
|
2274
|
-
protected readonly effectiveHeight:
|
|
2275
|
-
protected readonly rowMetrics:
|
|
2391
|
+
protected readonly bounded: i0.Signal<boolean>;
|
|
2392
|
+
protected readonly virtual: i0.Signal<boolean>;
|
|
2393
|
+
protected readonly effectiveHeight: i0.Signal<string>;
|
|
2394
|
+
protected readonly rowMetrics: i0.Signal<{
|
|
2276
2395
|
openIndices: number[];
|
|
2277
2396
|
count: number;
|
|
2278
2397
|
rowHeight: number;
|
|
2279
2398
|
detailHeight: number;
|
|
2280
2399
|
}>;
|
|
2281
|
-
protected readonly overflowing:
|
|
2282
|
-
protected readonly atStart:
|
|
2283
|
-
protected readonly atEnd:
|
|
2284
|
-
protected readonly openMenu:
|
|
2285
|
-
protected readonly slots:
|
|
2286
|
-
protected readonly pinnedStartWidth:
|
|
2287
|
-
protected readonly pinnedEndWidth:
|
|
2288
|
-
protected readonly totalWidth:
|
|
2289
|
-
protected readonly allSelected:
|
|
2290
|
-
protected readonly someSelected:
|
|
2291
|
-
protected readonly atSelectionLimit:
|
|
2292
|
-
protected readonly hasSelectable:
|
|
2293
|
-
protected readonly rowViews:
|
|
2294
|
-
protected readonly renderRows:
|
|
2295
|
-
protected readonly skeletonRange:
|
|
2296
|
-
protected readonly labels:
|
|
2400
|
+
protected readonly overflowing: i0.WritableSignal<boolean>;
|
|
2401
|
+
protected readonly atStart: i0.WritableSignal<boolean>;
|
|
2402
|
+
protected readonly atEnd: i0.WritableSignal<boolean>;
|
|
2403
|
+
protected readonly openMenu: i0.WritableSignal<string | null>;
|
|
2404
|
+
protected readonly slots: i0.Signal<Slot<T>[]>;
|
|
2405
|
+
protected readonly pinnedStartWidth: i0.Signal<number>;
|
|
2406
|
+
protected readonly pinnedEndWidth: i0.Signal<number>;
|
|
2407
|
+
protected readonly totalWidth: i0.Signal<number>;
|
|
2408
|
+
protected readonly allSelected: i0.Signal<boolean>;
|
|
2409
|
+
protected readonly someSelected: i0.Signal<boolean>;
|
|
2410
|
+
protected readonly atSelectionLimit: i0.Signal<boolean>;
|
|
2411
|
+
protected readonly hasSelectable: i0.Signal<boolean>;
|
|
2412
|
+
protected readonly rowViews: i0.Signal<RowView<T>[]>;
|
|
2413
|
+
protected readonly renderRows: i0.Signal<RenderRow<T>[]>;
|
|
2414
|
+
protected readonly skeletonRange: i0.Signal<number[]>;
|
|
2415
|
+
protected readonly labels: i0.Signal<{
|
|
2297
2416
|
moveLeft: string;
|
|
2298
2417
|
moveRight: string;
|
|
2299
2418
|
hide: string;
|
|
@@ -2340,8 +2459,8 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2340
2459
|
protected toggleRow(view: RowView<T>): void;
|
|
2341
2460
|
protected toggleAllRows(): void;
|
|
2342
2461
|
protected toggleOpen(view: RowView<T>): void;
|
|
2343
|
-
static ɵfac:
|
|
2344
|
-
static ɵcmp:
|
|
2462
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableComponent<any>, never>;
|
|
2463
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyTableComponent<any>, "monkey-table", never, { "rows": { "alias": "rows"; "required": true; "isSignal": true; }; "rowKey": { "alias": "rowKey"; "required": true; "isSignal": true; }; "rowLabel": { "alias": "rowLabel"; "required": false; "isSignal": true; }; "rowSelectable": { "alias": "rowSelectable"; "required": false; "isSignal": true; }; "ariaLabel": { "alias": "ariaLabel"; "required": true; "isSignal": true; }; "caption": { "alias": "caption"; "required": false; "isSignal": true; }; "selectionMode": { "alias": "selectionMode"; "required": false; "isSignal": true; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; "maxSelected": { "alias": "maxSelected"; "required": false; "isSignal": true; }; "sort": { "alias": "sort"; "required": false; "isSignal": true; }; "expandable": { "alias": "expandable"; "required": false; "isSignal": true; }; "expanded": { "alias": "expanded"; "required": false; "isSignal": true; }; "reorderable": { "alias": "reorderable"; "required": false; "isSignal": true; }; "hideable": { "alias": "hideable"; "required": false; "isSignal": true; }; "pinnable": { "alias": "pinnable"; "required": false; "isSignal": true; }; "rowHeight": { "alias": "rowHeight"; "required": false; "isSignal": true; }; "maxVisibleRows": { "alias": "maxVisibleRows"; "required": false; "isSignal": true; }; "virtualScroll": { "alias": "virtualScroll"; "required": false; "isSignal": true; }; "columnOrder": { "alias": "columnOrder"; "required": false; "isSignal": true; }; "columnState": { "alias": "columnState"; "required": false; "isSignal": true; }; "striped": { "alias": "striped"; "required": false; "isSignal": true; }; "loading": { "alias": "loading"; "required": false; "isSignal": true; }; "emptyText": { "alias": "emptyText"; "required": false; "isSignal": true; }; "skeletonRows": { "alias": "skeletonRows"; "required": false; "isSignal": true; }; }, { "selected": "selectedChange"; "expanded": "expandedChange"; "columnOrder": "columnOrderChange"; "onSortChange": "onSortChange"; "onColumnHidden": "onColumnHidden"; "onColumnStateChange": "onColumnStateChange"; "onSelectionChange": "onSelectionChange"; "onExpandChange": "onExpandChange"; }, ["_columns", "emptyTemplate", "loadingTemplate", "rowDetailTemplate"], ["monkey-pagination-size", "monkey-pagination-label", "monkey-pagination-action"], true, never>;
|
|
2345
2464
|
}
|
|
2346
2465
|
|
|
2347
2466
|
/** ************************
|
|
@@ -2360,8 +2479,8 @@ declare class MonkeyTabLinkDirective implements OnInit {
|
|
|
2360
2479
|
constructor(router: Router);
|
|
2361
2480
|
ngOnInit(): void;
|
|
2362
2481
|
private updateActiveState;
|
|
2363
|
-
static ɵfac:
|
|
2364
|
-
static ɵdir:
|
|
2482
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabLinkDirective, [{ optional: true; }]>;
|
|
2483
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTabLinkDirective, "[monkey-tab-link]", never, { "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
2365
2484
|
static ngAcceptInputType_disabled: unknown;
|
|
2366
2485
|
}
|
|
2367
2486
|
|
|
@@ -2377,8 +2496,8 @@ declare class MonkeyTabComponent {
|
|
|
2377
2496
|
onClick: EventEmitter<string>;
|
|
2378
2497
|
isSelected: boolean;
|
|
2379
2498
|
handleClick(): void;
|
|
2380
|
-
static ɵfac:
|
|
2381
|
-
static ɵcmp:
|
|
2499
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabComponent, never>;
|
|
2500
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyTabComponent, "monkey-tab", never, { "value": { "alias": "value"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "isSelected": { "alias": "isSelected"; "required": false; }; }, { "onClick": "onClick"; }, never, ["*"], false, never>;
|
|
2382
2501
|
static ngAcceptInputType_disabled: unknown;
|
|
2383
2502
|
}
|
|
2384
2503
|
|
|
@@ -2414,15 +2533,15 @@ declare class MonkeyTabsComponent implements AfterContentInit, AfterViewInit, On
|
|
|
2414
2533
|
scrollLeft(): void;
|
|
2415
2534
|
scrollRight(): void;
|
|
2416
2535
|
ngOnDestroy(): void;
|
|
2417
|
-
static ɵfac:
|
|
2418
|
-
static ɵcmp:
|
|
2536
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabsComponent, never>;
|
|
2537
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyTabsComponent, "monkey-tabs", never, { "selected": { "alias": "selected"; "required": false; }; "fullWidth": { "alias": "fullWidth"; "required": false; }; "position": { "alias": "position"; "required": false; }; }, { "onChange": "onChange"; }, ["tabs"], ["*"], false, never>;
|
|
2419
2538
|
static ngAcceptInputType_fullWidth: unknown;
|
|
2420
2539
|
}
|
|
2421
2540
|
|
|
2422
2541
|
declare class MonkeyTabsModule {
|
|
2423
|
-
static ɵfac:
|
|
2424
|
-
static ɵmod:
|
|
2425
|
-
static ɵinj:
|
|
2542
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabsModule, never>;
|
|
2543
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyTabsModule, [typeof MonkeyTabsComponent, typeof MonkeyTabComponent, typeof MonkeyTabLinkDirective], never, [typeof MonkeyTabsComponent, typeof MonkeyTabComponent, typeof MonkeyTabLinkDirective]>;
|
|
2544
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyTabsModule>;
|
|
2426
2545
|
}
|
|
2427
2546
|
|
|
2428
2547
|
declare class MonkeyToggleComponent {
|
|
@@ -2437,8 +2556,8 @@ declare class MonkeyToggleComponent {
|
|
|
2437
2556
|
set id(value: string);
|
|
2438
2557
|
constructor();
|
|
2439
2558
|
onClick(event: any): void;
|
|
2440
|
-
static ɵfac:
|
|
2441
|
-
static ɵcmp:
|
|
2559
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToggleComponent, never>;
|
|
2560
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyToggleComponent, "monkey-toggle", never, { "disabled": { "alias": "disabled"; "required": false; }; "size": { "alias": "size"; "required": false; }; "value": { "alias": "value"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onChange": "onChange"; }, never, never, true, never>;
|
|
2442
2561
|
}
|
|
2443
2562
|
|
|
2444
2563
|
/** ************************
|
|
@@ -2453,8 +2572,8 @@ declare class MonkeyToggleLineButtonComponent {
|
|
|
2453
2572
|
value: boolean | undefined;
|
|
2454
2573
|
checked: boolean | undefined;
|
|
2455
2574
|
name: string | undefined;
|
|
2456
|
-
static ɵfac:
|
|
2457
|
-
static ɵcmp:
|
|
2575
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToggleLineButtonComponent, never>;
|
|
2576
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyToggleLineButtonComponent, "monkey-toggle-line-button", never, { "disabled": { "alias": "disabled"; "required": false; }; "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; }, { "onChange": "onChange"; }, never, ["*"], true, never>;
|
|
2458
2577
|
}
|
|
2459
2578
|
|
|
2460
2579
|
/** ************************
|
|
@@ -2480,8 +2599,8 @@ declare class MonkeyToggleLineComponent implements AfterContentInit, OnDestroy,
|
|
|
2480
2599
|
ngAfterContentInit(): void;
|
|
2481
2600
|
ngOnChanges(): void;
|
|
2482
2601
|
ngOnDestroy(): void;
|
|
2483
|
-
static ɵfac:
|
|
2484
|
-
static ɵcmp:
|
|
2602
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToggleLineComponent, never>;
|
|
2603
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyToggleLineComponent, "monkey-toggle-line", never, { "value": { "alias": "value"; "required": false; }; "name": { "alias": "name"; "required": false; }; "size": { "alias": "size"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "onChange": "onChange"; }, ["radioButtons"], ["*"], true, never>;
|
|
2485
2604
|
static ngAcceptInputType_disabled: unknown;
|
|
2486
2605
|
}
|
|
2487
2606
|
|
|
@@ -2499,8 +2618,8 @@ declare class MonkeyTooltipComponent {
|
|
|
2499
2618
|
constructor(host: ElementRef<HTMLElement>);
|
|
2500
2619
|
close(): void;
|
|
2501
2620
|
onAnimationEnd(event: AnimationEvent): void;
|
|
2502
|
-
static ɵfac:
|
|
2503
|
-
static ɵcmp:
|
|
2621
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTooltipComponent, never>;
|
|
2622
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyTooltipComponent, "monkey-tooltip", never, { "text": { "alias": "text"; "required": false; }; "template": { "alias": "template"; "required": false; }; "left": { "alias": "left"; "required": false; }; "top": { "alias": "top"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, { "afterClose": "afterClose"; }, never, never, true, never>;
|
|
2504
2623
|
}
|
|
2505
2624
|
|
|
2506
2625
|
/** ************************
|
|
@@ -2510,7 +2629,7 @@ declare class MonkeyTooltipComponent {
|
|
|
2510
2629
|
************************* */
|
|
2511
2630
|
|
|
2512
2631
|
type Position = 'top' | 'bottom' | 'left' | 'right' | undefined;
|
|
2513
|
-
declare class MonkeyTooltipDirective {
|
|
2632
|
+
declare class MonkeyTooltipDirective implements OnDestroy {
|
|
2514
2633
|
private viewContainerRef;
|
|
2515
2634
|
private elementRef;
|
|
2516
2635
|
private appRef;
|
|
@@ -2523,6 +2642,12 @@ declare class MonkeyTooltipDirective {
|
|
|
2523
2642
|
private bounds;
|
|
2524
2643
|
constructor(viewContainerRef: ViewContainerRef, elementRef: ElementRef, appRef: ApplicationRef, document: Document);
|
|
2525
2644
|
private setBounds;
|
|
2645
|
+
/**
|
|
2646
|
+
* The top layer paints above every stacking context and ignores z-index entirely, so the
|
|
2647
|
+
* tooltip cannot be covered by an overlay, a modal or application chrome. Browsers without
|
|
2648
|
+
* the popover API fall back to the z-index in the component styles.
|
|
2649
|
+
*/
|
|
2650
|
+
private raiseToTopLayer;
|
|
2526
2651
|
private createTooltip;
|
|
2527
2652
|
private positionTooltip;
|
|
2528
2653
|
private isOutOfBounds;
|
|
@@ -2533,8 +2658,9 @@ declare class MonkeyTooltipDirective {
|
|
|
2533
2658
|
show(): void;
|
|
2534
2659
|
hide(): void;
|
|
2535
2660
|
onScroll(): void;
|
|
2536
|
-
|
|
2537
|
-
static
|
|
2661
|
+
ngOnDestroy(): void;
|
|
2662
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTooltipDirective, never>;
|
|
2663
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTooltipDirective, "[monkeyTooltip]", never, { "tooltipText": { "alias": "monkeyTooltip"; "required": false; }; "tooltipPosition": { "alias": "tooltipPosition"; "required": false; }; "enabled": { "alias": "enabled"; "required": false; }; }, {}, never, never, true, never>;
|
|
2538
2664
|
static ngAcceptInputType_enabled: unknown;
|
|
2539
2665
|
}
|
|
2540
2666
|
|
|
@@ -2552,8 +2678,8 @@ declare class MonkeyUserProfileComponent {
|
|
|
2552
2678
|
get id(): string;
|
|
2553
2679
|
set id(value: string);
|
|
2554
2680
|
constructor();
|
|
2555
|
-
static ɵfac:
|
|
2556
|
-
static ɵcmp:
|
|
2681
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyUserProfileComponent, never>;
|
|
2682
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyUserProfileComponent, "monkey-user-profile", never, { "email": { "alias": "email"; "required": true; "isSignal": true; }; "size": { "alias": "size"; "required": false; "isSignal": true; }; "id": { "alias": "id"; "required": false; }; }, {}, never, never, true, never>;
|
|
2557
2683
|
}
|
|
2558
2684
|
|
|
2559
2685
|
/** ************************
|
|
@@ -2575,8 +2701,8 @@ declare class MonkeyUserProfileButtonComponent {
|
|
|
2575
2701
|
constructor();
|
|
2576
2702
|
onClick(event: MouseEvent): void;
|
|
2577
2703
|
handleClose: () => void;
|
|
2578
|
-
static ɵfac:
|
|
2579
|
-
static ɵcmp:
|
|
2704
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyUserProfileButtonComponent, never>;
|
|
2705
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyUserProfileButtonComponent, "monkey-user-profile-button", never, { "size": { "alias": "size"; "required": false; }; "name": { "alias": "name"; "required": true; }; "iconName": { "alias": "iconName"; "required": false; }; "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
2580
2706
|
}
|
|
2581
2707
|
|
|
2582
2708
|
/** ************************
|
|
@@ -2599,39 +2725,39 @@ declare class MonkeyBadgeDirective implements OnChanges {
|
|
|
2599
2725
|
ngOnChanges(): void;
|
|
2600
2726
|
private updateBadge;
|
|
2601
2727
|
private removeBadge;
|
|
2602
|
-
static ɵfac:
|
|
2603
|
-
static ɵdir:
|
|
2728
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyBadgeDirective, never>;
|
|
2729
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyBadgeDirective, "[monkeyBadge]", never, { "badgePosition": { "alias": "badgePosition"; "required": false; }; "badgeSize": { "alias": "badgeSize"; "required": false; }; "badgeHidden": { "alias": "badgeHidden"; "required": false; }; "monkeyBadge": { "alias": "monkeyBadge"; "required": false; }; "badgeBackground": { "alias": "badgeBackground"; "required": false; }; "badgeColor": { "alias": "badgeColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
2604
2730
|
}
|
|
2605
2731
|
|
|
2606
2732
|
declare class MonkeyDisplayDirective {
|
|
2607
2733
|
private el;
|
|
2608
2734
|
private fallbackText;
|
|
2609
2735
|
readonly i18nDictionary: rxjs.Observable<any>;
|
|
2610
|
-
displayValue:
|
|
2736
|
+
displayValue: i0.InputSignal<string>;
|
|
2611
2737
|
private displayedText;
|
|
2612
2738
|
constructor(el: ElementRef<HTMLElement>);
|
|
2613
|
-
static ɵfac:
|
|
2614
|
-
static ɵdir:
|
|
2739
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDisplayDirective, never>;
|
|
2740
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyDisplayDirective, "monkey-display", never, { "displayValue": { "alias": "displayValue"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2615
2741
|
}
|
|
2616
2742
|
|
|
2617
2743
|
declare class MonkeyErrorDirective {
|
|
2618
|
-
static ɵfac:
|
|
2619
|
-
static ɵdir:
|
|
2744
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyErrorDirective, never>;
|
|
2745
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyErrorDirective, "monkey-error", never, {}, {}, never, never, true, never>;
|
|
2620
2746
|
}
|
|
2621
2747
|
|
|
2622
2748
|
declare class MonkeyHelperDirective {
|
|
2623
|
-
static ɵfac:
|
|
2624
|
-
static ɵdir:
|
|
2749
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyHelperDirective, never>;
|
|
2750
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyHelperDirective, "monkey-helper", never, {}, {}, never, never, true, never>;
|
|
2625
2751
|
}
|
|
2626
2752
|
|
|
2627
2753
|
declare class MonkeyInfoDirective {
|
|
2628
|
-
static ɵfac:
|
|
2629
|
-
static ɵdir:
|
|
2754
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInfoDirective, never>;
|
|
2755
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyInfoDirective, "monkey-info", never, {}, {}, never, never, true, never>;
|
|
2630
2756
|
}
|
|
2631
2757
|
|
|
2632
2758
|
declare class MonkeyLabelDirective {
|
|
2633
|
-
static ɵfac:
|
|
2634
|
-
static ɵdir:
|
|
2759
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyLabelDirective, never>;
|
|
2760
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyLabelDirective, "monkey-label", never, {}, {}, never, never, true, never>;
|
|
2635
2761
|
}
|
|
2636
2762
|
|
|
2637
2763
|
declare class MonkeyPopoverContentComponent implements AfterViewInit {
|
|
@@ -2647,8 +2773,8 @@ declare class MonkeyPopoverContentComponent implements AfterViewInit {
|
|
|
2647
2773
|
constructor(host: ElementRef<HTMLElement>);
|
|
2648
2774
|
ngAfterViewInit(): void;
|
|
2649
2775
|
isTemplate(value: unknown): value is TemplateRef<any>;
|
|
2650
|
-
static ɵfac:
|
|
2651
|
-
static ɵcmp:
|
|
2776
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPopoverContentComponent, never>;
|
|
2777
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPopoverContentComponent, "monkey-popover-content", never, { "title": { "alias": "title"; "required": false; }; "content": { "alias": "content"; "required": false; }; "actions": { "alias": "actions"; "required": false; }; "hideHeader": { "alias": "hideHeader"; "required": false; }; "hideClose": { "alias": "hideClose"; "required": false; }; "hideActions": { "alias": "hideActions"; "required": false; }; "enableAutofocus": { "alias": "enableAutofocus"; "required": false; }; }, { "onClose": "onClose"; }, never, never, true, never>;
|
|
2652
2778
|
static ngAcceptInputType_hideHeader: unknown;
|
|
2653
2779
|
static ngAcceptInputType_hideClose: unknown;
|
|
2654
2780
|
static ngAcceptInputType_hideActions: unknown;
|
|
@@ -2692,8 +2818,8 @@ declare class MonkeyPopoverDirective implements OnDestroy {
|
|
|
2692
2818
|
private disposePopover;
|
|
2693
2819
|
private getPositions;
|
|
2694
2820
|
private createPopover;
|
|
2695
|
-
static ɵfac:
|
|
2696
|
-
static ɵdir:
|
|
2821
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPopoverDirective, never>;
|
|
2822
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyPopoverDirective, "[monkeyPopover]", never, { "popover": { "alias": "monkeyPopover"; "required": false; }; "closed": { "alias": "monkeyPopoverClosed"; "required": false; }; "target": { "alias": "monkeyPopoverTarget"; "required": false; }; "minwidth": { "alias": "monkeyPopoverMinwidth"; "required": false; }; "backdrop": { "alias": "monkeyPopoverBackdrop"; "required": false; }; "watch": { "alias": "monkeyPopoverWatch"; "required": false; }; "dir": { "alias": "monkeyPopoverDir"; "required": false; }; "contextmenu": { "alias": "monkeyPopoverContextmenu"; "required": false; }; "height": { "alias": "monkeyPopoverHeight"; "required": false; }; "title": { "alias": "monkeyPopoverTitle"; "required": false; }; "actions": { "alias": "monkeyPopoverActions"; "required": false; }; "hideClose": { "alias": "monkeyPopoverHideClose"; "required": false; }; "hideHeader": { "alias": "monkeyPopoverHideHeader"; "required": false; }; "hideActions": { "alias": "monkeyPopoverHideActions"; "required": false; }; "enableAutofocus": { "alias": "monkeyPopoverEnableAutofocus"; "required": false; }; }, {}, never, never, true, never>;
|
|
2697
2823
|
static ngAcceptInputType_hideClose: unknown;
|
|
2698
2824
|
static ngAcceptInputType_hideHeader: unknown;
|
|
2699
2825
|
static ngAcceptInputType_hideActions: unknown;
|
|
@@ -2701,8 +2827,8 @@ declare class MonkeyPopoverDirective implements OnDestroy {
|
|
|
2701
2827
|
}
|
|
2702
2828
|
|
|
2703
2829
|
declare class MonkeyPrefixDirective {
|
|
2704
|
-
static ɵfac:
|
|
2705
|
-
static ɵdir:
|
|
2830
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPrefixDirective, never>;
|
|
2831
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyPrefixDirective, "monkey-prefix", never, {}, {}, never, never, true, never>;
|
|
2706
2832
|
}
|
|
2707
2833
|
|
|
2708
2834
|
declare class MonkeySuffixDirective {
|
|
@@ -2710,8 +2836,8 @@ declare class MonkeySuffixDirective {
|
|
|
2710
2836
|
hasAction: boolean;
|
|
2711
2837
|
action: Function | null;
|
|
2712
2838
|
onClick(event: PointerEvent): void;
|
|
2713
|
-
static ɵfac:
|
|
2714
|
-
static ɵdir:
|
|
2839
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySuffixDirective, never>;
|
|
2840
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeySuffixDirective, "monkey-suffix", never, { "_hasAction": { "alias": "hasAction"; "required": false; }; }, {}, never, never, true, never>;
|
|
2715
2841
|
}
|
|
2716
2842
|
|
|
2717
2843
|
/** ************************
|
|
@@ -2726,8 +2852,8 @@ declare class MonkeyFormDirective implements AfterContentInit {
|
|
|
2726
2852
|
constructor(el: ElementRef<HTMLElement>, renderer: Renderer2);
|
|
2727
2853
|
ngAfterContentInit(): void;
|
|
2728
2854
|
private createSubmitButton;
|
|
2729
|
-
static ɵfac:
|
|
2730
|
-
static ɵdir:
|
|
2855
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormDirective, never>;
|
|
2856
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyFormDirective, "form[monkey-form]", never, {}, {}, never, never, true, never>;
|
|
2731
2857
|
}
|
|
2732
2858
|
|
|
2733
2859
|
declare class MonkeyEcxAddressService {
|
|
@@ -2745,8 +2871,8 @@ declare class MonkeyEcxAddressService {
|
|
|
2745
2871
|
country: any;
|
|
2746
2872
|
zipCode: any;
|
|
2747
2873
|
}[]>;
|
|
2748
|
-
static ɵfac:
|
|
2749
|
-
static ɵprov:
|
|
2874
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAddressService, never>;
|
|
2875
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAddressService>;
|
|
2750
2876
|
}
|
|
2751
2877
|
|
|
2752
2878
|
declare class MonkeyDictionaryService {
|
|
@@ -2757,25 +2883,76 @@ declare class MonkeyDictionaryService {
|
|
|
2757
2883
|
constructor();
|
|
2758
2884
|
private handleWrapperValues;
|
|
2759
2885
|
get(key: string): rxjs.Observable<any>;
|
|
2760
|
-
static ɵfac:
|
|
2761
|
-
static ɵprov:
|
|
2886
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDictionaryService, never>;
|
|
2887
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyDictionaryService>;
|
|
2888
|
+
}
|
|
2889
|
+
|
|
2890
|
+
declare class MonkeyDownloadToastService {
|
|
2891
|
+
private overlay;
|
|
2892
|
+
private injector;
|
|
2893
|
+
private downloadStacks;
|
|
2894
|
+
private effectHolders;
|
|
2895
|
+
private handleStates;
|
|
2896
|
+
private disposeTimers;
|
|
2897
|
+
private closeTimers;
|
|
2898
|
+
constructor();
|
|
2899
|
+
private teardown;
|
|
2900
|
+
private getStackKey;
|
|
2901
|
+
private cancelPendingDispose;
|
|
2902
|
+
private scheduleDispose;
|
|
2903
|
+
private getOrCreateDownloadStack;
|
|
2904
|
+
private buildDownloadItem;
|
|
2905
|
+
private releaseEffect;
|
|
2906
|
+
private tryDisposeEmptyStack;
|
|
2907
|
+
private buildDoRemove;
|
|
2908
|
+
private shouldAutoCloseOnComplete;
|
|
2909
|
+
private cancelPendingClose;
|
|
2910
|
+
private scheduleClose;
|
|
2911
|
+
private setupSignalAutoClose;
|
|
2912
|
+
private scheduleNumberAutoClose;
|
|
2913
|
+
private getEffectHolder;
|
|
2914
|
+
private getHandleState;
|
|
2915
|
+
private invalidateHandleStates;
|
|
2916
|
+
private findStackWithId;
|
|
2917
|
+
private disposeStackIfEmpty;
|
|
2918
|
+
private removeById;
|
|
2919
|
+
show(config: DownloadToastConfig): {
|
|
2920
|
+
id: string;
|
|
2921
|
+
close: () => void;
|
|
2922
|
+
update: (partial: DownloadStackItemUpdate) => void;
|
|
2923
|
+
};
|
|
2924
|
+
close(id: string): void;
|
|
2925
|
+
update(id: string, partial: DownloadStackItemUpdate): void;
|
|
2926
|
+
closeAll(): void;
|
|
2927
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDownloadToastService, never>;
|
|
2928
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyDownloadToastService>;
|
|
2762
2929
|
}
|
|
2763
2930
|
|
|
2764
2931
|
declare class MonkeyStepperService {
|
|
2765
2932
|
private _steppers;
|
|
2766
|
-
currentStep(id: string):
|
|
2933
|
+
currentStep(id: string): i0.Signal<string | undefined>;
|
|
2767
2934
|
setCurrentStep(id: string, step: string): void;
|
|
2768
|
-
static ɵfac:
|
|
2769
|
-
static ɵprov:
|
|
2935
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperService, never>;
|
|
2936
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyStepperService>;
|
|
2770
2937
|
}
|
|
2771
2938
|
|
|
2772
2939
|
declare class MonkeyToastService {
|
|
2773
|
-
private lastToast?;
|
|
2774
2940
|
private overlay;
|
|
2775
|
-
private
|
|
2941
|
+
private current?;
|
|
2942
|
+
private activeToasts;
|
|
2943
|
+
constructor();
|
|
2944
|
+
private teardown;
|
|
2945
|
+
private release;
|
|
2946
|
+
private requestClose;
|
|
2947
|
+
private closePreviousToastIfNeeded;
|
|
2948
|
+
private configureToastInstance;
|
|
2949
|
+
private bindToastAction;
|
|
2950
|
+
private closeToastIfNeeded;
|
|
2951
|
+
private bindToastRelease;
|
|
2952
|
+
private scheduleToastAutoClose;
|
|
2776
2953
|
show(toastConfig: ToastConfig): MonkeyToastComponent;
|
|
2777
|
-
static ɵfac:
|
|
2778
|
-
static ɵprov:
|
|
2954
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToastService, never>;
|
|
2955
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyToastService>;
|
|
2779
2956
|
}
|
|
2780
2957
|
|
|
2781
2958
|
/** ************************
|
|
@@ -2791,5 +2968,5 @@ declare const MECX_GOOGLE_API_KEY: InjectionToken<string>;
|
|
|
2791
2968
|
declare const MECX_I18N_LANG: InjectionToken<BehaviorSubject<string>>;
|
|
2792
2969
|
declare function injectTokenWithWarning<T>(token: InjectionToken<T>, name?: string): T | null;
|
|
2793
2970
|
|
|
2794
|
-
export { MECX_COUNTRY_ISO_CODE, MECX_GOOGLE_API_KEY, MECX_I18N_LANG, MECX_I18N_WRAPPER, MECX_MODAL_DATA, MECX_MODAL_DEFAULT_CONFIG, MECX_POPOVER_OPTIONS, MonkeyAccordionComponent, MonkeyActionBarComponent, MonkeyAlertComponent, MonkeyAutocompleteAddressComponent, MonkeyAutocompleteComponent, MonkeyAvatarComponent, MonkeyBadgeComponent, MonkeyBadgeDirective, MonkeyBreadcrumbComponent, MonkeyButtonComponent, MonkeyCheckboxComponent, MonkeyComplexFilterBarComponent, MonkeyDateRangeComponent, MonkeyDictionaryService, MonkeyDisplayDirective, MonkeyDividerComponent, MonkeyDownloadButtonComponent, MonkeyEcxAddressService, MonkeyErrorDirective, MonkeyFilterBarComponent, MonkeyFilterBarService, MonkeyFilterChipComponent, MonkeyFilterMenuComponent, MonkeyFilterMenuItemComponent, MonkeyFilterSegmentComponent, MonkeyFilterTriggerComponent, MonkeyFormDirective, MonkeyFormFieldComponent, MonkeyFormFieldControl, MonkeyFormFieldModule, MonkeyHelperDirective, MonkeyIconButtonComponent, MonkeyInfoDirective, MonkeyInputCodeComponent, MonkeyInputCurrencyDirective, MonkeyInputDateRangeComponent, MonkeyInputDirective, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputUploadComponent, MonkeyLabelDirective, MonkeyModalActionsDirective, MonkeyModalComponent, MonkeyModalConfig, MonkeyModalContentDirective, MonkeyModalModule, MonkeyModalRef, MonkeyModalService, MonkeyModalSubtitleDirective, MonkeyModalTitleDirective, MonkeyOptionComponent, MonkeyPaginationActionComponent, MonkeyPaginationLabelComponent, MonkeyPaginationSizeComponent, MonkeyPassNumberComponent, MonkeyPassSecretNumberComponent, MonkeyPopoverContentComponent, MonkeyPopoverDirective, MonkeyPrefixDirective, MonkeyRadioButtonComponent, MonkeyScrollbarComponent, MonkeySecurityLevelComponent, MonkeySelectComponent, MonkeyStatusComponent, MonkeyStepComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStepperService, MonkeySuffixDirective, MonkeyTabComponent, MonkeyTabLinkDirective, MonkeyTableCellDirective, MonkeyTableColumnDirective, MonkeyTableComponent, MonkeyTableEmptyDirective, MonkeyTableHeaderCellDirective, MonkeyTableLoadingDirective, MonkeyTableRowDetailDirective, MonkeyTabsComponent, MonkeyTabsModule, MonkeyToastComponent, MonkeyToastRef, MonkeyToastService, MonkeyToggleComponent, MonkeyToggleLineButtonComponent, MonkeyToggleLineComponent, MonkeyTooltipComponent, MonkeyTooltipDirective, MonkeyUserProfileButtonComponent, MonkeyUserProfileComponent, addKeys, appliedFrom, ariaSortOf, arityOf, conditionsOf, getCurrencySymbol, indexAtOffset, injectTokenWithWarning, interpolate, isComplete, mergeOrder, offsetOfIndex, panelOf, removeKeys, sameColumnState, selectionState, sortByOrder, toPx, toggleKey, totalHeight, withCondition, withType };
|
|
2795
|
-
export type { ActiveFilter, AutocompleteSuggestion, AutocompleteSuggestionType, ColumnAlign, ColumnPinned, ComplexFilterCondition, ComplexFilterGroup, ComplexFilterOperator, ComplexFilterResult, FilterBarConfig, FilterBarState, FilterOption, FilterType, GoogleApiPlaces, GoogleApiPlacesAddressComponents, GoogleApiPlacesResponse, MonkeyAlertType, MonkeyAppliedFilter, MonkeyAutocompleteData, MonkeyAutocompleteResponse, MonkeyBreadcrumb, MonkeyButtonColor, MonkeyButtonType, MonkeyDownloadButtonChangeEvent, MonkeyFilterArity, MonkeyFilterBarConfig, MonkeyFilterBarOption, MonkeyFilterBarStatusOption, MonkeyFilterBarType, MonkeyFilterCondition, MonkeyFilterMenuItemProperty, MonkeyFilterOperand, MonkeyFilterOperator, MonkeyFilterPanel, MonkeyFilterRow, MonkeyFilterTriggerVariant, MonkeyInputUploadChangeEvent, MonkeyModalConfirmationConfig, MonkeyModalDefaultConfig, MonkeyPopoverDir, MonkeyPopoverOptions, MonkeyScrollbarOrientation, MonkeyScrollbarSize, MonkeySize, MonkeyTableCellContext, MonkeyTableColumnState, MonkeyTableScrollConfig, MonkeyTableSortKind, MonkeyToastPosition, MonkeyToastType, RowMetrics, SelectionState, SortDirection, SortState, StatusOption, ToastConfig };
|
|
2971
|
+
export { DOWNLOAD_TOAST_EXIT_MS, MECX_COUNTRY_ISO_CODE, MECX_GOOGLE_API_KEY, MECX_I18N_LANG, MECX_I18N_WRAPPER, MECX_MODAL_DATA, MECX_MODAL_DEFAULT_CONFIG, MECX_POPOVER_OPTIONS, MonkeyAccordionComponent, MonkeyActionBarComponent, MonkeyAlertComponent, MonkeyAutocompleteAddressComponent, MonkeyAutocompleteComponent, MonkeyAvatarComponent, MonkeyBadgeComponent, MonkeyBadgeDirective, MonkeyBreadcrumbComponent, MonkeyButtonComponent, MonkeyCheckboxComponent, MonkeyComplexFilterBarComponent, MonkeyDateRangeComponent, MonkeyDictionaryService, MonkeyDisplayDirective, MonkeyDividerComponent, MonkeyDownloadButtonComponent, MonkeyDownloadToastComponent, MonkeyDownloadToastService, MonkeyDownloadToastStackComponent, MonkeyEcxAddressService, MonkeyErrorDirective, MonkeyFilterBarComponent, MonkeyFilterBarService, MonkeyFilterChipComponent, MonkeyFilterMenuComponent, MonkeyFilterMenuItemComponent, MonkeyFilterSegmentComponent, MonkeyFilterTriggerComponent, MonkeyFormDirective, MonkeyFormFieldComponent, MonkeyFormFieldControl, MonkeyFormFieldModule, MonkeyHelperDirective, MonkeyIconButtonComponent, MonkeyInfoDirective, MonkeyInputCodeComponent, MonkeyInputCurrencyDirective, MonkeyInputDateRangeComponent, MonkeyInputDirective, MonkeyInputModule, MonkeyInputPhoneComponent, MonkeyInputUploadComponent, MonkeyLabelDirective, MonkeyModalActionsDirective, MonkeyModalComponent, MonkeyModalConfig, MonkeyModalContentDirective, MonkeyModalModule, MonkeyModalRef, MonkeyModalService, MonkeyModalSubtitleDirective, MonkeyModalTitleDirective, MonkeyOptionComponent, MonkeyPaginationActionComponent, MonkeyPaginationLabelComponent, MonkeyPaginationSizeComponent, MonkeyPassNumberComponent, MonkeyPassSecretNumberComponent, MonkeyPopoverContentComponent, MonkeyPopoverDirective, MonkeyPrefixDirective, MonkeyRadioButtonComponent, MonkeyScrollbarComponent, MonkeySecurityLevelComponent, MonkeySelectComponent, MonkeyStatusComponent, MonkeyStepComponent, MonkeyStepperComponent, MonkeyStepperModule, MonkeyStepperService, MonkeySuffixDirective, MonkeyTabComponent, MonkeyTabLinkDirective, MonkeyTableCellDirective, MonkeyTableColumnDirective, MonkeyTableComponent, MonkeyTableEmptyDirective, MonkeyTableHeaderCellDirective, MonkeyTableLoadingDirective, MonkeyTableRowDetailDirective, MonkeyTabsComponent, MonkeyTabsModule, MonkeyToastComponent, MonkeyToastRef, MonkeyToastService, MonkeyToggleComponent, MonkeyToggleLineButtonComponent, MonkeyToggleLineComponent, MonkeyTooltipComponent, MonkeyTooltipDirective, MonkeyUserProfileButtonComponent, MonkeyUserProfileComponent, addKeys, appliedFrom, ariaSortOf, arityOf, conditionsOf, getCurrencySymbol, indexAtOffset, injectTokenWithWarning, interpolate, isComplete, mergeOrder, offsetOfIndex, panelOf, removeKeys, sameColumnState, selectionState, sortByOrder, toPx, toggleKey, totalHeight, withCondition, withType };
|
|
2972
|
+
export type { ActiveFilter, AutocompleteSuggestion, AutocompleteSuggestionType, ColumnAlign, ColumnPinned, ComplexFilterCondition, ComplexFilterGroup, ComplexFilterOperator, ComplexFilterResult, DownloadStackItem, DownloadStackItemUpdate, DownloadToastConfig, DownloadToastDictionary, FilterBarConfig, FilterBarState, FilterOption, FilterType, GoogleApiPlaces, GoogleApiPlacesAddressComponents, GoogleApiPlacesResponse, MonkeyAlertType, MonkeyAppliedFilter, MonkeyAutocompleteData, MonkeyAutocompleteResponse, MonkeyBreadcrumb, MonkeyButtonColor, MonkeyButtonType, MonkeyDownloadButtonChangeEvent, MonkeyFilterArity, MonkeyFilterBarConfig, MonkeyFilterBarOption, MonkeyFilterBarStatusOption, MonkeyFilterBarType, MonkeyFilterCondition, MonkeyFilterMenuItemProperty, MonkeyFilterOperand, MonkeyFilterOperator, MonkeyFilterPanel, MonkeyFilterRow, MonkeyFilterTriggerVariant, MonkeyInputUploadChangeEvent, MonkeyModalConfirmationConfig, MonkeyModalDefaultConfig, MonkeyPopoverDir, MonkeyPopoverOptions, MonkeyScrollbarOrientation, MonkeyScrollbarSize, MonkeySize, MonkeyTableCellContext, MonkeyTableColumnState, MonkeyTableScrollConfig, MonkeyTableSortKind, MonkeyToastPosition, MonkeyToastType, RowMetrics, SelectionState, SortDirection, SortState, StatusOption, ToastConfig };
|