monkey-style-guide 21.2.21 → 21.2.22
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/fesm2022/monkey-style-guide.mjs +1779 -887
- package/fesm2022/monkey-style-guide.mjs.map +1 -1
- package/monkey-style-guide-21.2.22.tgz +0 -0
- package/package.json +3 -2
- package/types/monkey-style-guide.d.ts +556 -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,14 @@ 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;
|
|
1657
1774
|
get displayContent(): string;
|
|
1658
|
-
selected:
|
|
1775
|
+
selected: i0.InputSignal<boolean>;
|
|
1659
1776
|
tabIndex: number;
|
|
1660
1777
|
action: Function;
|
|
1661
|
-
isSelected:
|
|
1778
|
+
isSelected: i0.Signal<boolean>;
|
|
1662
1779
|
readonly id: string;
|
|
1663
1780
|
private _selectedState;
|
|
1664
1781
|
private handleAction;
|
|
@@ -1666,8 +1783,8 @@ declare class MonkeyOptionComponent {
|
|
|
1666
1783
|
onClick(event: MouseEvent): void;
|
|
1667
1784
|
handleKeyDown(event: KeyboardEvent): void;
|
|
1668
1785
|
onSelect(select: boolean): void;
|
|
1669
|
-
static ɵfac:
|
|
1670
|
-
static ɵcmp:
|
|
1786
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyOptionComponent, never>;
|
|
1787
|
+
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; }; "selected": { "alias": "selected"; "required": false; "isSignal": true; }; }, {}, never, ["*"], true, never>;
|
|
1671
1788
|
static ngAcceptInputType_disabled: unknown;
|
|
1672
1789
|
}
|
|
1673
1790
|
|
|
@@ -1676,7 +1793,7 @@ declare class MonkeyPassNumberComponent {
|
|
|
1676
1793
|
protected _uid: string;
|
|
1677
1794
|
protected _id: string;
|
|
1678
1795
|
protected selected: number[];
|
|
1679
|
-
onChange:
|
|
1796
|
+
onChange: i0.OutputEmitterRef<number[]>;
|
|
1680
1797
|
get isDisabledNumbers(): boolean;
|
|
1681
1798
|
get isDisabledClear(): boolean;
|
|
1682
1799
|
get id(): string;
|
|
@@ -1684,8 +1801,8 @@ declare class MonkeyPassNumberComponent {
|
|
|
1684
1801
|
constructor();
|
|
1685
1802
|
protected clear(): void;
|
|
1686
1803
|
protected onPress(pin: number): void;
|
|
1687
|
-
static ɵfac:
|
|
1688
|
-
static ɵcmp:
|
|
1804
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPassNumberComponent, never>;
|
|
1805
|
+
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
1806
|
}
|
|
1690
1807
|
|
|
1691
1808
|
type PinCombinations = {
|
|
@@ -1705,7 +1822,7 @@ declare class MonkeyPassSecretNumberComponent implements OnInit {
|
|
|
1705
1822
|
readonly orLabel: rxjs.Observable<any>;
|
|
1706
1823
|
protected pins: PinCombinations[];
|
|
1707
1824
|
protected selected: string[];
|
|
1708
|
-
onChange:
|
|
1825
|
+
onChange: i0.OutputEmitterRef<PinResult>;
|
|
1709
1826
|
get id(): string;
|
|
1710
1827
|
set id(value: string);
|
|
1711
1828
|
get isDisabledNumbers(): boolean;
|
|
@@ -1715,8 +1832,8 @@ declare class MonkeyPassSecretNumberComponent implements OnInit {
|
|
|
1715
1832
|
protected clear(): void;
|
|
1716
1833
|
private getPinPassword;
|
|
1717
1834
|
protected onPress(pin: PinCombinations): void;
|
|
1718
|
-
static ɵfac:
|
|
1719
|
-
static ɵcmp:
|
|
1835
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPassSecretNumberComponent, never>;
|
|
1836
|
+
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
1837
|
}
|
|
1721
1838
|
|
|
1722
1839
|
/** ************************
|
|
@@ -1766,8 +1883,8 @@ declare class MonkeyRadioButtonComponent implements MonkeyFormFieldControl, Cont
|
|
|
1766
1883
|
registerOnChange(fn: any): void;
|
|
1767
1884
|
registerOnTouched(fn: any): void;
|
|
1768
1885
|
setDisabledState(isDisabled: boolean): void;
|
|
1769
|
-
static ɵfac:
|
|
1770
|
-
static ɵcmp:
|
|
1886
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyRadioButtonComponent, [null, { optional: true; }]>;
|
|
1887
|
+
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
1888
|
static ngAcceptInputType_disabled: unknown;
|
|
1772
1889
|
static ngAcceptInputType_required: unknown;
|
|
1773
1890
|
}
|
|
@@ -1790,10 +1907,10 @@ type MonkeyScrollbarSize = 'small' | 'medium';
|
|
|
1790
1907
|
*/
|
|
1791
1908
|
declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
1792
1909
|
private readonly _zone;
|
|
1793
|
-
readonly orientation:
|
|
1794
|
-
readonly size:
|
|
1910
|
+
readonly orientation: i0.InputSignal<MonkeyScrollbarOrientation>;
|
|
1911
|
+
readonly size: i0.InputSignal<MonkeyScrollbarSize>;
|
|
1795
1912
|
/** The element that actually scrolls. */
|
|
1796
|
-
readonly target:
|
|
1913
|
+
readonly target: i0.InputSignal<HTMLElement>;
|
|
1797
1914
|
private readonly trackEl;
|
|
1798
1915
|
/** Scrollable length of the content, in px. */
|
|
1799
1916
|
private readonly total;
|
|
@@ -1803,8 +1920,8 @@ declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
|
1803
1920
|
private readonly scrolled;
|
|
1804
1921
|
/** Length of the track the thumb slides along, in px. */
|
|
1805
1922
|
private readonly trackLength;
|
|
1806
|
-
protected readonly scrollable:
|
|
1807
|
-
protected readonly thumbSize:
|
|
1923
|
+
protected readonly scrollable: i0.Signal<boolean>;
|
|
1924
|
+
protected readonly thumbSize: i0.Signal<string>;
|
|
1808
1925
|
/**
|
|
1809
1926
|
* A px distance, applied as a `translate`, not as `left`/`top`: moving the
|
|
1810
1927
|
* thumb then costs a composited transform instead of a layout pass on every
|
|
@@ -1812,7 +1929,7 @@ declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
|
1812
1929
|
* because the thumb has a minimum length — once that kicks in, a
|
|
1813
1930
|
* percentage of its own (clamped) size no longer maps to track distance.
|
|
1814
1931
|
*/
|
|
1815
|
-
protected readonly thumbOffset:
|
|
1932
|
+
protected readonly thumbOffset: i0.Signal<string>;
|
|
1816
1933
|
private resizeObserver?;
|
|
1817
1934
|
private observedTarget?;
|
|
1818
1935
|
/** Pending animation frame, 0 when none is queued. */
|
|
@@ -1845,22 +1962,22 @@ declare class MonkeyScrollbarComponent implements OnDestroy {
|
|
|
1845
1962
|
* a target swapped out from under the component.
|
|
1846
1963
|
*/
|
|
1847
1964
|
remeasure(): void;
|
|
1848
|
-
static ɵfac:
|
|
1849
|
-
static ɵcmp:
|
|
1965
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyScrollbarComponent, never>;
|
|
1966
|
+
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
1967
|
}
|
|
1851
1968
|
|
|
1852
1969
|
declare class MonkeySecurityLevelComponent {
|
|
1853
|
-
label:
|
|
1854
|
-
score:
|
|
1855
|
-
strengthLabel:
|
|
1970
|
+
label: i0.InputSignal<string | undefined>;
|
|
1971
|
+
score: i0.InputSignal<number>;
|
|
1972
|
+
strengthLabel: i0.InputSignal<string | undefined>;
|
|
1856
1973
|
get class(): string;
|
|
1857
1974
|
protected _uid: string;
|
|
1858
1975
|
protected _id: string;
|
|
1859
1976
|
get id(): string;
|
|
1860
1977
|
set id(value: string);
|
|
1861
1978
|
constructor();
|
|
1862
|
-
static ɵfac:
|
|
1863
|
-
static ɵcmp:
|
|
1979
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySecurityLevelComponent, never>;
|
|
1980
|
+
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
1981
|
}
|
|
1865
1982
|
|
|
1866
1983
|
declare class MonkeySelectComponent implements MonkeyFormFieldControl, ControlValueAccessor, AfterContentInit, OnInit, OnDestroy, OnChanges {
|
|
@@ -1935,8 +2052,8 @@ declare class MonkeySelectComponent implements MonkeyFormFieldControl, ControlVa
|
|
|
1935
2052
|
setDisabledState(isDisabled: boolean): void;
|
|
1936
2053
|
ngOnChanges(changes: SimpleChanges): void;
|
|
1937
2054
|
onHandleSearch(event: Event): void;
|
|
1938
|
-
static ɵfac:
|
|
1939
|
-
static ɵcmp:
|
|
2055
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySelectComponent, [null, null, null, { optional: true; }]>;
|
|
2056
|
+
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
2057
|
static ngAcceptInputType_loading: unknown;
|
|
1941
2058
|
static ngAcceptInputType_showSearch: unknown;
|
|
1942
2059
|
static ngAcceptInputType_disabled: unknown;
|
|
@@ -1945,17 +2062,17 @@ declare class MonkeySelectComponent implements MonkeyFormFieldControl, ControlVa
|
|
|
1945
2062
|
|
|
1946
2063
|
type Status = 'default' | 'success' | 'warning' | 'error' | 'question' | 'info';
|
|
1947
2064
|
declare class MonkeyStatusComponent {
|
|
1948
|
-
type:
|
|
1949
|
-
size:
|
|
1950
|
-
label:
|
|
2065
|
+
type: i0.InputSignal<Status>;
|
|
2066
|
+
size: i0.InputSignal<MonkeySize>;
|
|
2067
|
+
label: i0.InputSignal<string | undefined>;
|
|
1951
2068
|
get class(): string;
|
|
1952
2069
|
protected _uid: string;
|
|
1953
2070
|
protected _id: string;
|
|
1954
2071
|
get id(): string;
|
|
1955
2072
|
set id(value: string);
|
|
1956
2073
|
constructor();
|
|
1957
|
-
static ɵfac:
|
|
1958
|
-
static ɵcmp:
|
|
2074
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStatusComponent, never>;
|
|
2075
|
+
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
2076
|
}
|
|
1960
2077
|
|
|
1961
2078
|
declare class MonkeyStepComponent implements AfterContentInit {
|
|
@@ -1964,15 +2081,15 @@ declare class MonkeyStepComponent implements AfterContentInit {
|
|
|
1964
2081
|
label: string;
|
|
1965
2082
|
step: string;
|
|
1966
2083
|
icon: string;
|
|
1967
|
-
number:
|
|
1968
|
-
hasSubSteps:
|
|
1969
|
-
isSubStep:
|
|
1970
|
-
isCurrent:
|
|
1971
|
-
isComplete:
|
|
1972
|
-
isActive:
|
|
2084
|
+
number: i0.WritableSignal<number | undefined>;
|
|
2085
|
+
hasSubSteps: i0.WritableSignal<boolean>;
|
|
2086
|
+
isSubStep: i0.WritableSignal<boolean>;
|
|
2087
|
+
isCurrent: i0.WritableSignal<boolean>;
|
|
2088
|
+
isComplete: i0.WritableSignal<boolean>;
|
|
2089
|
+
isActive: i0.WritableSignal<boolean>;
|
|
1973
2090
|
ngAfterContentInit(): void;
|
|
1974
|
-
static ɵfac:
|
|
1975
|
-
static ɵcmp:
|
|
2091
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepComponent, never>;
|
|
2092
|
+
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
2093
|
}
|
|
1977
2094
|
|
|
1978
2095
|
/** ************************
|
|
@@ -1992,14 +2109,14 @@ declare class MonkeyStepperComponent implements AfterContentInit, OnChanges {
|
|
|
1992
2109
|
ngAfterContentInit(): void;
|
|
1993
2110
|
ngOnChanges(): void;
|
|
1994
2111
|
render(): void;
|
|
1995
|
-
static ɵfac:
|
|
1996
|
-
static ɵcmp:
|
|
2112
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperComponent, never>;
|
|
2113
|
+
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
2114
|
}
|
|
1998
2115
|
|
|
1999
2116
|
declare class MonkeyStepperModule {
|
|
2000
|
-
static ɵfac:
|
|
2001
|
-
static ɵmod:
|
|
2002
|
-
static ɵinj:
|
|
2117
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperModule, never>;
|
|
2118
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyStepperModule, [typeof MonkeyStepperComponent, typeof MonkeyStepComponent], [typeof UtilIconComponent], [typeof MonkeyStepperComponent, typeof MonkeyStepComponent]>;
|
|
2119
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyStepperModule>;
|
|
2003
2120
|
}
|
|
2004
2121
|
|
|
2005
2122
|
/** ************************
|
|
@@ -2020,8 +2137,8 @@ declare class MonkeyPaginationActionComponent {
|
|
|
2020
2137
|
get id(): string;
|
|
2021
2138
|
set id(value: string);
|
|
2022
2139
|
constructor();
|
|
2023
|
-
static ɵfac:
|
|
2024
|
-
static ɵcmp:
|
|
2140
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPaginationActionComponent, never>;
|
|
2141
|
+
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
2142
|
}
|
|
2026
2143
|
|
|
2027
2144
|
declare class MonkeyPaginationLabelComponent {
|
|
@@ -2030,8 +2147,8 @@ declare class MonkeyPaginationLabelComponent {
|
|
|
2030
2147
|
get id(): string;
|
|
2031
2148
|
set id(value: string);
|
|
2032
2149
|
constructor();
|
|
2033
|
-
static ɵfac:
|
|
2034
|
-
static ɵcmp:
|
|
2150
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPaginationLabelComponent, never>;
|
|
2151
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<MonkeyPaginationLabelComponent, "monkey-pagination-label", ["monkeyPaginationLabel"], { "id": { "alias": "id"; "required": false; }; }, {}, never, ["*"], true, never>;
|
|
2035
2152
|
}
|
|
2036
2153
|
|
|
2037
2154
|
/** ************************
|
|
@@ -2050,8 +2167,8 @@ declare class MonkeyPaginationSizeComponent {
|
|
|
2050
2167
|
get id(): string;
|
|
2051
2168
|
set id(value: string);
|
|
2052
2169
|
constructor();
|
|
2053
|
-
static ɵfac:
|
|
2054
|
-
static ɵcmp:
|
|
2170
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPaginationSizeComponent, never>;
|
|
2171
|
+
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
2172
|
}
|
|
2056
2173
|
|
|
2057
2174
|
/** ************************
|
|
@@ -2103,32 +2220,32 @@ type MonkeyTableSortKind = 'text' | 'number' | 'date';
|
|
|
2103
2220
|
declare class MonkeyTableCellDirective<T> {
|
|
2104
2221
|
readonly template: TemplateRef<MonkeyTableCellContext<T>>;
|
|
2105
2222
|
static ngTemplateContextGuard<T>(_dir: MonkeyTableCellDirective<T>, _ctx: unknown): _ctx is MonkeyTableCellContext<T>;
|
|
2106
|
-
static ɵfac:
|
|
2107
|
-
static ɵdir:
|
|
2223
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableCellDirective<any>, never>;
|
|
2224
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableCellDirective<any>, "ng-template[mkCell]", never, {}, {}, never, never, true, never>;
|
|
2108
2225
|
}
|
|
2109
2226
|
declare class MonkeyTableHeaderCellDirective {
|
|
2110
2227
|
readonly template: TemplateRef<void>;
|
|
2111
|
-
static ɵfac:
|
|
2112
|
-
static ɵdir:
|
|
2228
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableHeaderCellDirective, never>;
|
|
2229
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableHeaderCellDirective, "ng-template[mkHeaderCell]", never, {}, {}, never, never, true, never>;
|
|
2113
2230
|
}
|
|
2114
2231
|
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:
|
|
2232
|
+
readonly name: i0.InputSignal<string>;
|
|
2233
|
+
readonly label: i0.InputSignal<string>;
|
|
2234
|
+
readonly labelHidden: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2235
|
+
readonly unit: i0.InputSignal<string>;
|
|
2236
|
+
readonly width: i0.InputSignal<string>;
|
|
2237
|
+
readonly align: i0.InputSignal<ColumnAlign>;
|
|
2238
|
+
readonly sortable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2239
|
+
readonly sortKind: i0.InputSignal<MonkeyTableSortKind>;
|
|
2240
|
+
readonly hideable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2241
|
+
readonly movable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2242
|
+
readonly pinnable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2243
|
+
readonly pinned: i0.ModelSignal<ColumnPinned>;
|
|
2244
|
+
readonly hidden: i0.ModelSignal<boolean>;
|
|
2245
|
+
readonly cell: i0.Signal<MonkeyTableCellDirective<any> | undefined>;
|
|
2246
|
+
readonly headerCell: i0.Signal<MonkeyTableHeaderCellDirective | undefined>;
|
|
2247
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableColumnDirective<any>, never>;
|
|
2248
|
+
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
2249
|
}
|
|
2133
2250
|
declare class MonkeyTableRowDetailDirective<T> {
|
|
2134
2251
|
readonly template: TemplateRef<{
|
|
@@ -2139,18 +2256,18 @@ declare class MonkeyTableRowDetailDirective<T> {
|
|
|
2139
2256
|
$implicit: T;
|
|
2140
2257
|
row: T;
|
|
2141
2258
|
};
|
|
2142
|
-
static ɵfac:
|
|
2143
|
-
static ɵdir:
|
|
2259
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableRowDetailDirective<any>, never>;
|
|
2260
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableRowDetailDirective<any>, "ng-template[mkRowDetail]", never, {}, {}, never, never, true, never>;
|
|
2144
2261
|
}
|
|
2145
2262
|
declare class MonkeyTableEmptyDirective {
|
|
2146
2263
|
readonly template: TemplateRef<void>;
|
|
2147
|
-
static ɵfac:
|
|
2148
|
-
static ɵdir:
|
|
2264
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableEmptyDirective, never>;
|
|
2265
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableEmptyDirective, "ng-template[mkEmpty]", never, {}, {}, never, never, true, never>;
|
|
2149
2266
|
}
|
|
2150
2267
|
declare class MonkeyTableLoadingDirective {
|
|
2151
2268
|
readonly template: TemplateRef<void>;
|
|
2152
|
-
static ɵfac:
|
|
2153
|
-
static ɵdir:
|
|
2269
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableLoadingDirective, never>;
|
|
2270
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTableLoadingDirective, "ng-template[mkLoading]", never, {}, {}, never, never, true, never>;
|
|
2154
2271
|
}
|
|
2155
2272
|
|
|
2156
2273
|
/** ************************
|
|
@@ -2225,75 +2342,75 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2225
2342
|
private _clientWidth;
|
|
2226
2343
|
private _scrollWidth;
|
|
2227
2344
|
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:
|
|
2345
|
+
readonly rows: i0.InputSignal<readonly T[]>;
|
|
2346
|
+
readonly rowKey: i0.InputSignal<(row: T) => string>;
|
|
2347
|
+
readonly rowLabel: i0.InputSignal<((row: T) => string) | undefined>;
|
|
2348
|
+
readonly rowSelectable: i0.InputSignal<((row: T) => boolean) | undefined>;
|
|
2349
|
+
readonly ariaLabel: i0.InputSignal<string>;
|
|
2350
|
+
readonly caption: i0.InputSignal<string>;
|
|
2351
|
+
readonly selectionMode: i0.InputSignal<"none" | "multiple">;
|
|
2352
|
+
readonly selected: i0.ModelSignal<ReadonlySet<string>>;
|
|
2353
|
+
readonly maxSelected: i0.InputSignal<number>;
|
|
2354
|
+
readonly sort: i0.InputSignal<SortState | null>;
|
|
2355
|
+
readonly expandable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2356
|
+
readonly expanded: i0.ModelSignal<ReadonlySet<string>>;
|
|
2357
|
+
readonly reorderable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2358
|
+
readonly hideable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2359
|
+
readonly pinnable: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2360
|
+
readonly rowHeight: i0.InputSignal<number>;
|
|
2361
|
+
readonly maxVisibleRows: i0.InputSignal<number | "none">;
|
|
2362
|
+
readonly virtualScroll: i0.InputSignal<"auto" | "off">;
|
|
2363
|
+
readonly columnOrder: i0.ModelSignal<readonly string[]>;
|
|
2364
|
+
readonly columnState: i0.InputSignal<readonly MonkeyTableColumnState[]>;
|
|
2365
|
+
readonly striped: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2366
|
+
readonly loading: i0.InputSignalWithTransform<boolean, unknown>;
|
|
2367
|
+
readonly emptyText: i0.InputSignal<string>;
|
|
2368
|
+
readonly skeletonRows: i0.InputSignal<number | "auto">;
|
|
2369
|
+
readonly onSortChange: i0.OutputEmitterRef<SortState | null>;
|
|
2370
|
+
readonly onColumnHidden: i0.OutputEmitterRef<{
|
|
2254
2371
|
name: string;
|
|
2255
2372
|
label: string;
|
|
2256
2373
|
}>;
|
|
2257
|
-
readonly onColumnStateChange:
|
|
2258
|
-
readonly onSelectionChange:
|
|
2259
|
-
readonly onExpandChange:
|
|
2374
|
+
readonly onColumnStateChange: i0.OutputEmitterRef<MonkeyTableColumnState[]>;
|
|
2375
|
+
readonly onSelectionChange: i0.OutputEmitterRef<string[]>;
|
|
2376
|
+
readonly onExpandChange: i0.OutputEmitterRef<{
|
|
2260
2377
|
row: T;
|
|
2261
2378
|
key: string;
|
|
2262
2379
|
expanded: boolean;
|
|
2263
2380
|
}>;
|
|
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:
|
|
2381
|
+
protected readonly emptyTemplate: i0.Signal<MonkeyTableEmptyDirective | undefined>;
|
|
2382
|
+
protected readonly loadingTemplate: i0.Signal<MonkeyTableLoadingDirective | undefined>;
|
|
2383
|
+
protected readonly rowDetailTemplate: i0.Signal<MonkeyTableRowDetailDirective<any> | undefined>;
|
|
2384
|
+
protected readonly plainScroller: i0.Signal<ElementRef<HTMLElement> | undefined>;
|
|
2385
|
+
protected readonly headClip: i0.Signal<ElementRef<HTMLElement> | undefined>;
|
|
2386
|
+
protected readonly virtualViewport: i0.Signal<CdkVirtualScrollViewport | undefined>;
|
|
2387
|
+
protected readonly scrollTarget: i0.Signal<HTMLElement | null>;
|
|
2271
2388
|
private readonly _rowCap;
|
|
2272
|
-
protected readonly bounded:
|
|
2273
|
-
protected readonly virtual:
|
|
2274
|
-
protected readonly effectiveHeight:
|
|
2275
|
-
protected readonly rowMetrics:
|
|
2389
|
+
protected readonly bounded: i0.Signal<boolean>;
|
|
2390
|
+
protected readonly virtual: i0.Signal<boolean>;
|
|
2391
|
+
protected readonly effectiveHeight: i0.Signal<string>;
|
|
2392
|
+
protected readonly rowMetrics: i0.Signal<{
|
|
2276
2393
|
openIndices: number[];
|
|
2277
2394
|
count: number;
|
|
2278
2395
|
rowHeight: number;
|
|
2279
2396
|
detailHeight: number;
|
|
2280
2397
|
}>;
|
|
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:
|
|
2398
|
+
protected readonly overflowing: i0.WritableSignal<boolean>;
|
|
2399
|
+
protected readonly atStart: i0.WritableSignal<boolean>;
|
|
2400
|
+
protected readonly atEnd: i0.WritableSignal<boolean>;
|
|
2401
|
+
protected readonly openMenu: i0.WritableSignal<string | null>;
|
|
2402
|
+
protected readonly slots: i0.Signal<Slot<T>[]>;
|
|
2403
|
+
protected readonly pinnedStartWidth: i0.Signal<number>;
|
|
2404
|
+
protected readonly pinnedEndWidth: i0.Signal<number>;
|
|
2405
|
+
protected readonly totalWidth: i0.Signal<number>;
|
|
2406
|
+
protected readonly allSelected: i0.Signal<boolean>;
|
|
2407
|
+
protected readonly someSelected: i0.Signal<boolean>;
|
|
2408
|
+
protected readonly atSelectionLimit: i0.Signal<boolean>;
|
|
2409
|
+
protected readonly hasSelectable: i0.Signal<boolean>;
|
|
2410
|
+
protected readonly rowViews: i0.Signal<RowView<T>[]>;
|
|
2411
|
+
protected readonly renderRows: i0.Signal<RenderRow<T>[]>;
|
|
2412
|
+
protected readonly skeletonRange: i0.Signal<number[]>;
|
|
2413
|
+
protected readonly labels: i0.Signal<{
|
|
2297
2414
|
moveLeft: string;
|
|
2298
2415
|
moveRight: string;
|
|
2299
2416
|
hide: string;
|
|
@@ -2340,8 +2457,8 @@ declare class MonkeyTableComponent<T> implements OnDestroy {
|
|
|
2340
2457
|
protected toggleRow(view: RowView<T>): void;
|
|
2341
2458
|
protected toggleAllRows(): void;
|
|
2342
2459
|
protected toggleOpen(view: RowView<T>): void;
|
|
2343
|
-
static ɵfac:
|
|
2344
|
-
static ɵcmp:
|
|
2460
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTableComponent<any>, never>;
|
|
2461
|
+
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
2462
|
}
|
|
2346
2463
|
|
|
2347
2464
|
/** ************************
|
|
@@ -2360,8 +2477,8 @@ declare class MonkeyTabLinkDirective implements OnInit {
|
|
|
2360
2477
|
constructor(router: Router);
|
|
2361
2478
|
ngOnInit(): void;
|
|
2362
2479
|
private updateActiveState;
|
|
2363
|
-
static ɵfac:
|
|
2364
|
-
static ɵdir:
|
|
2480
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabLinkDirective, [{ optional: true; }]>;
|
|
2481
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyTabLinkDirective, "[monkey-tab-link]", never, { "disabled": { "alias": "disabled"; "required": false; }; }, {}, never, never, false, never>;
|
|
2365
2482
|
static ngAcceptInputType_disabled: unknown;
|
|
2366
2483
|
}
|
|
2367
2484
|
|
|
@@ -2377,8 +2494,8 @@ declare class MonkeyTabComponent {
|
|
|
2377
2494
|
onClick: EventEmitter<string>;
|
|
2378
2495
|
isSelected: boolean;
|
|
2379
2496
|
handleClick(): void;
|
|
2380
|
-
static ɵfac:
|
|
2381
|
-
static ɵcmp:
|
|
2497
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabComponent, never>;
|
|
2498
|
+
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
2499
|
static ngAcceptInputType_disabled: unknown;
|
|
2383
2500
|
}
|
|
2384
2501
|
|
|
@@ -2414,15 +2531,15 @@ declare class MonkeyTabsComponent implements AfterContentInit, AfterViewInit, On
|
|
|
2414
2531
|
scrollLeft(): void;
|
|
2415
2532
|
scrollRight(): void;
|
|
2416
2533
|
ngOnDestroy(): void;
|
|
2417
|
-
static ɵfac:
|
|
2418
|
-
static ɵcmp:
|
|
2534
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabsComponent, never>;
|
|
2535
|
+
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
2536
|
static ngAcceptInputType_fullWidth: unknown;
|
|
2420
2537
|
}
|
|
2421
2538
|
|
|
2422
2539
|
declare class MonkeyTabsModule {
|
|
2423
|
-
static ɵfac:
|
|
2424
|
-
static ɵmod:
|
|
2425
|
-
static ɵinj:
|
|
2540
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTabsModule, never>;
|
|
2541
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<MonkeyTabsModule, [typeof MonkeyTabsComponent, typeof MonkeyTabComponent, typeof MonkeyTabLinkDirective], never, [typeof MonkeyTabsComponent, typeof MonkeyTabComponent, typeof MonkeyTabLinkDirective]>;
|
|
2542
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<MonkeyTabsModule>;
|
|
2426
2543
|
}
|
|
2427
2544
|
|
|
2428
2545
|
declare class MonkeyToggleComponent {
|
|
@@ -2437,8 +2554,8 @@ declare class MonkeyToggleComponent {
|
|
|
2437
2554
|
set id(value: string);
|
|
2438
2555
|
constructor();
|
|
2439
2556
|
onClick(event: any): void;
|
|
2440
|
-
static ɵfac:
|
|
2441
|
-
static ɵcmp:
|
|
2557
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToggleComponent, never>;
|
|
2558
|
+
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
2559
|
}
|
|
2443
2560
|
|
|
2444
2561
|
/** ************************
|
|
@@ -2453,8 +2570,8 @@ declare class MonkeyToggleLineButtonComponent {
|
|
|
2453
2570
|
value: boolean | undefined;
|
|
2454
2571
|
checked: boolean | undefined;
|
|
2455
2572
|
name: string | undefined;
|
|
2456
|
-
static ɵfac:
|
|
2457
|
-
static ɵcmp:
|
|
2573
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToggleLineButtonComponent, never>;
|
|
2574
|
+
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
2575
|
}
|
|
2459
2576
|
|
|
2460
2577
|
/** ************************
|
|
@@ -2480,8 +2597,8 @@ declare class MonkeyToggleLineComponent implements AfterContentInit, OnDestroy,
|
|
|
2480
2597
|
ngAfterContentInit(): void;
|
|
2481
2598
|
ngOnChanges(): void;
|
|
2482
2599
|
ngOnDestroy(): void;
|
|
2483
|
-
static ɵfac:
|
|
2484
|
-
static ɵcmp:
|
|
2600
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToggleLineComponent, never>;
|
|
2601
|
+
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
2602
|
static ngAcceptInputType_disabled: unknown;
|
|
2486
2603
|
}
|
|
2487
2604
|
|
|
@@ -2499,8 +2616,8 @@ declare class MonkeyTooltipComponent {
|
|
|
2499
2616
|
constructor(host: ElementRef<HTMLElement>);
|
|
2500
2617
|
close(): void;
|
|
2501
2618
|
onAnimationEnd(event: AnimationEvent): void;
|
|
2502
|
-
static ɵfac:
|
|
2503
|
-
static ɵcmp:
|
|
2619
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTooltipComponent, never>;
|
|
2620
|
+
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
2621
|
}
|
|
2505
2622
|
|
|
2506
2623
|
/** ************************
|
|
@@ -2510,7 +2627,7 @@ declare class MonkeyTooltipComponent {
|
|
|
2510
2627
|
************************* */
|
|
2511
2628
|
|
|
2512
2629
|
type Position = 'top' | 'bottom' | 'left' | 'right' | undefined;
|
|
2513
|
-
declare class MonkeyTooltipDirective {
|
|
2630
|
+
declare class MonkeyTooltipDirective implements OnDestroy {
|
|
2514
2631
|
private viewContainerRef;
|
|
2515
2632
|
private elementRef;
|
|
2516
2633
|
private appRef;
|
|
@@ -2523,6 +2640,12 @@ declare class MonkeyTooltipDirective {
|
|
|
2523
2640
|
private bounds;
|
|
2524
2641
|
constructor(viewContainerRef: ViewContainerRef, elementRef: ElementRef, appRef: ApplicationRef, document: Document);
|
|
2525
2642
|
private setBounds;
|
|
2643
|
+
/**
|
|
2644
|
+
* The top layer paints above every stacking context and ignores z-index entirely, so the
|
|
2645
|
+
* tooltip cannot be covered by an overlay, a modal or application chrome. Browsers without
|
|
2646
|
+
* the popover API fall back to the z-index in the component styles.
|
|
2647
|
+
*/
|
|
2648
|
+
private raiseToTopLayer;
|
|
2526
2649
|
private createTooltip;
|
|
2527
2650
|
private positionTooltip;
|
|
2528
2651
|
private isOutOfBounds;
|
|
@@ -2533,8 +2656,9 @@ declare class MonkeyTooltipDirective {
|
|
|
2533
2656
|
show(): void;
|
|
2534
2657
|
hide(): void;
|
|
2535
2658
|
onScroll(): void;
|
|
2536
|
-
|
|
2537
|
-
static
|
|
2659
|
+
ngOnDestroy(): void;
|
|
2660
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyTooltipDirective, never>;
|
|
2661
|
+
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
2662
|
static ngAcceptInputType_enabled: unknown;
|
|
2539
2663
|
}
|
|
2540
2664
|
|
|
@@ -2552,8 +2676,8 @@ declare class MonkeyUserProfileComponent {
|
|
|
2552
2676
|
get id(): string;
|
|
2553
2677
|
set id(value: string);
|
|
2554
2678
|
constructor();
|
|
2555
|
-
static ɵfac:
|
|
2556
|
-
static ɵcmp:
|
|
2679
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyUserProfileComponent, never>;
|
|
2680
|
+
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
2681
|
}
|
|
2558
2682
|
|
|
2559
2683
|
/** ************************
|
|
@@ -2575,8 +2699,8 @@ declare class MonkeyUserProfileButtonComponent {
|
|
|
2575
2699
|
constructor();
|
|
2576
2700
|
onClick(event: MouseEvent): void;
|
|
2577
2701
|
handleClose: () => void;
|
|
2578
|
-
static ɵfac:
|
|
2579
|
-
static ɵcmp:
|
|
2702
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyUserProfileButtonComponent, never>;
|
|
2703
|
+
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
2704
|
}
|
|
2581
2705
|
|
|
2582
2706
|
/** ************************
|
|
@@ -2599,39 +2723,39 @@ declare class MonkeyBadgeDirective implements OnChanges {
|
|
|
2599
2723
|
ngOnChanges(): void;
|
|
2600
2724
|
private updateBadge;
|
|
2601
2725
|
private removeBadge;
|
|
2602
|
-
static ɵfac:
|
|
2603
|
-
static ɵdir:
|
|
2726
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyBadgeDirective, never>;
|
|
2727
|
+
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
2728
|
}
|
|
2605
2729
|
|
|
2606
2730
|
declare class MonkeyDisplayDirective {
|
|
2607
2731
|
private el;
|
|
2608
2732
|
private fallbackText;
|
|
2609
2733
|
readonly i18nDictionary: rxjs.Observable<any>;
|
|
2610
|
-
displayValue:
|
|
2734
|
+
displayValue: i0.InputSignal<string>;
|
|
2611
2735
|
private displayedText;
|
|
2612
2736
|
constructor(el: ElementRef<HTMLElement>);
|
|
2613
|
-
static ɵfac:
|
|
2614
|
-
static ɵdir:
|
|
2737
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDisplayDirective, never>;
|
|
2738
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyDisplayDirective, "monkey-display", never, { "displayValue": { "alias": "displayValue"; "required": true; "isSignal": true; }; }, {}, never, never, true, never>;
|
|
2615
2739
|
}
|
|
2616
2740
|
|
|
2617
2741
|
declare class MonkeyErrorDirective {
|
|
2618
|
-
static ɵfac:
|
|
2619
|
-
static ɵdir:
|
|
2742
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyErrorDirective, never>;
|
|
2743
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyErrorDirective, "monkey-error", never, {}, {}, never, never, true, never>;
|
|
2620
2744
|
}
|
|
2621
2745
|
|
|
2622
2746
|
declare class MonkeyHelperDirective {
|
|
2623
|
-
static ɵfac:
|
|
2624
|
-
static ɵdir:
|
|
2747
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyHelperDirective, never>;
|
|
2748
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyHelperDirective, "monkey-helper", never, {}, {}, never, never, true, never>;
|
|
2625
2749
|
}
|
|
2626
2750
|
|
|
2627
2751
|
declare class MonkeyInfoDirective {
|
|
2628
|
-
static ɵfac:
|
|
2629
|
-
static ɵdir:
|
|
2752
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyInfoDirective, never>;
|
|
2753
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyInfoDirective, "monkey-info", never, {}, {}, never, never, true, never>;
|
|
2630
2754
|
}
|
|
2631
2755
|
|
|
2632
2756
|
declare class MonkeyLabelDirective {
|
|
2633
|
-
static ɵfac:
|
|
2634
|
-
static ɵdir:
|
|
2757
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyLabelDirective, never>;
|
|
2758
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyLabelDirective, "monkey-label", never, {}, {}, never, never, true, never>;
|
|
2635
2759
|
}
|
|
2636
2760
|
|
|
2637
2761
|
declare class MonkeyPopoverContentComponent implements AfterViewInit {
|
|
@@ -2647,8 +2771,8 @@ declare class MonkeyPopoverContentComponent implements AfterViewInit {
|
|
|
2647
2771
|
constructor(host: ElementRef<HTMLElement>);
|
|
2648
2772
|
ngAfterViewInit(): void;
|
|
2649
2773
|
isTemplate(value: unknown): value is TemplateRef<any>;
|
|
2650
|
-
static ɵfac:
|
|
2651
|
-
static ɵcmp:
|
|
2774
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPopoverContentComponent, never>;
|
|
2775
|
+
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
2776
|
static ngAcceptInputType_hideHeader: unknown;
|
|
2653
2777
|
static ngAcceptInputType_hideClose: unknown;
|
|
2654
2778
|
static ngAcceptInputType_hideActions: unknown;
|
|
@@ -2692,8 +2816,8 @@ declare class MonkeyPopoverDirective implements OnDestroy {
|
|
|
2692
2816
|
private disposePopover;
|
|
2693
2817
|
private getPositions;
|
|
2694
2818
|
private createPopover;
|
|
2695
|
-
static ɵfac:
|
|
2696
|
-
static ɵdir:
|
|
2819
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPopoverDirective, never>;
|
|
2820
|
+
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
2821
|
static ngAcceptInputType_hideClose: unknown;
|
|
2698
2822
|
static ngAcceptInputType_hideHeader: unknown;
|
|
2699
2823
|
static ngAcceptInputType_hideActions: unknown;
|
|
@@ -2701,8 +2825,8 @@ declare class MonkeyPopoverDirective implements OnDestroy {
|
|
|
2701
2825
|
}
|
|
2702
2826
|
|
|
2703
2827
|
declare class MonkeyPrefixDirective {
|
|
2704
|
-
static ɵfac:
|
|
2705
|
-
static ɵdir:
|
|
2828
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyPrefixDirective, never>;
|
|
2829
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyPrefixDirective, "monkey-prefix", never, {}, {}, never, never, true, never>;
|
|
2706
2830
|
}
|
|
2707
2831
|
|
|
2708
2832
|
declare class MonkeySuffixDirective {
|
|
@@ -2710,8 +2834,8 @@ declare class MonkeySuffixDirective {
|
|
|
2710
2834
|
hasAction: boolean;
|
|
2711
2835
|
action: Function | null;
|
|
2712
2836
|
onClick(event: PointerEvent): void;
|
|
2713
|
-
static ɵfac:
|
|
2714
|
-
static ɵdir:
|
|
2837
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeySuffixDirective, never>;
|
|
2838
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeySuffixDirective, "monkey-suffix", never, { "_hasAction": { "alias": "hasAction"; "required": false; }; }, {}, never, never, true, never>;
|
|
2715
2839
|
}
|
|
2716
2840
|
|
|
2717
2841
|
/** ************************
|
|
@@ -2726,8 +2850,8 @@ declare class MonkeyFormDirective implements AfterContentInit {
|
|
|
2726
2850
|
constructor(el: ElementRef<HTMLElement>, renderer: Renderer2);
|
|
2727
2851
|
ngAfterContentInit(): void;
|
|
2728
2852
|
private createSubmitButton;
|
|
2729
|
-
static ɵfac:
|
|
2730
|
-
static ɵdir:
|
|
2853
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyFormDirective, never>;
|
|
2854
|
+
static ɵdir: i0.ɵɵDirectiveDeclaration<MonkeyFormDirective, "form[monkey-form]", never, {}, {}, never, never, true, never>;
|
|
2731
2855
|
}
|
|
2732
2856
|
|
|
2733
2857
|
declare class MonkeyEcxAddressService {
|
|
@@ -2745,8 +2869,8 @@ declare class MonkeyEcxAddressService {
|
|
|
2745
2869
|
country: any;
|
|
2746
2870
|
zipCode: any;
|
|
2747
2871
|
}[]>;
|
|
2748
|
-
static ɵfac:
|
|
2749
|
-
static ɵprov:
|
|
2872
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyEcxAddressService, never>;
|
|
2873
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyEcxAddressService>;
|
|
2750
2874
|
}
|
|
2751
2875
|
|
|
2752
2876
|
declare class MonkeyDictionaryService {
|
|
@@ -2757,25 +2881,76 @@ declare class MonkeyDictionaryService {
|
|
|
2757
2881
|
constructor();
|
|
2758
2882
|
private handleWrapperValues;
|
|
2759
2883
|
get(key: string): rxjs.Observable<any>;
|
|
2760
|
-
static ɵfac:
|
|
2761
|
-
static ɵprov:
|
|
2884
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDictionaryService, never>;
|
|
2885
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyDictionaryService>;
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
declare class MonkeyDownloadToastService {
|
|
2889
|
+
private overlay;
|
|
2890
|
+
private injector;
|
|
2891
|
+
private downloadStacks;
|
|
2892
|
+
private effectHolders;
|
|
2893
|
+
private handleStates;
|
|
2894
|
+
private disposeTimers;
|
|
2895
|
+
private closeTimers;
|
|
2896
|
+
constructor();
|
|
2897
|
+
private teardown;
|
|
2898
|
+
private getStackKey;
|
|
2899
|
+
private cancelPendingDispose;
|
|
2900
|
+
private scheduleDispose;
|
|
2901
|
+
private getOrCreateDownloadStack;
|
|
2902
|
+
private buildDownloadItem;
|
|
2903
|
+
private releaseEffect;
|
|
2904
|
+
private tryDisposeEmptyStack;
|
|
2905
|
+
private buildDoRemove;
|
|
2906
|
+
private shouldAutoCloseOnComplete;
|
|
2907
|
+
private cancelPendingClose;
|
|
2908
|
+
private scheduleClose;
|
|
2909
|
+
private setupSignalAutoClose;
|
|
2910
|
+
private scheduleNumberAutoClose;
|
|
2911
|
+
private getEffectHolder;
|
|
2912
|
+
private getHandleState;
|
|
2913
|
+
private invalidateHandleStates;
|
|
2914
|
+
private findStackWithId;
|
|
2915
|
+
private disposeStackIfEmpty;
|
|
2916
|
+
private removeById;
|
|
2917
|
+
show(config: DownloadToastConfig): {
|
|
2918
|
+
id: string;
|
|
2919
|
+
close: () => void;
|
|
2920
|
+
update: (partial: DownloadStackItemUpdate) => void;
|
|
2921
|
+
};
|
|
2922
|
+
close(id: string): void;
|
|
2923
|
+
update(id: string, partial: DownloadStackItemUpdate): void;
|
|
2924
|
+
closeAll(): void;
|
|
2925
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyDownloadToastService, never>;
|
|
2926
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyDownloadToastService>;
|
|
2762
2927
|
}
|
|
2763
2928
|
|
|
2764
2929
|
declare class MonkeyStepperService {
|
|
2765
2930
|
private _steppers;
|
|
2766
|
-
currentStep(id: string):
|
|
2931
|
+
currentStep(id: string): i0.Signal<string | undefined>;
|
|
2767
2932
|
setCurrentStep(id: string, step: string): void;
|
|
2768
|
-
static ɵfac:
|
|
2769
|
-
static ɵprov:
|
|
2933
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyStepperService, never>;
|
|
2934
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyStepperService>;
|
|
2770
2935
|
}
|
|
2771
2936
|
|
|
2772
2937
|
declare class MonkeyToastService {
|
|
2773
|
-
private lastToast?;
|
|
2774
2938
|
private overlay;
|
|
2775
|
-
private
|
|
2939
|
+
private current?;
|
|
2940
|
+
private activeToasts;
|
|
2941
|
+
constructor();
|
|
2942
|
+
private teardown;
|
|
2943
|
+
private release;
|
|
2944
|
+
private requestClose;
|
|
2945
|
+
private closePreviousToastIfNeeded;
|
|
2946
|
+
private configureToastInstance;
|
|
2947
|
+
private bindToastAction;
|
|
2948
|
+
private closeToastIfNeeded;
|
|
2949
|
+
private bindToastRelease;
|
|
2950
|
+
private scheduleToastAutoClose;
|
|
2776
2951
|
show(toastConfig: ToastConfig): MonkeyToastComponent;
|
|
2777
|
-
static ɵfac:
|
|
2778
|
-
static ɵprov:
|
|
2952
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<MonkeyToastService, never>;
|
|
2953
|
+
static ɵprov: i0.ɵɵInjectableDeclaration<MonkeyToastService>;
|
|
2779
2954
|
}
|
|
2780
2955
|
|
|
2781
2956
|
/** ************************
|
|
@@ -2791,5 +2966,5 @@ declare const MECX_GOOGLE_API_KEY: InjectionToken<string>;
|
|
|
2791
2966
|
declare const MECX_I18N_LANG: InjectionToken<BehaviorSubject<string>>;
|
|
2792
2967
|
declare function injectTokenWithWarning<T>(token: InjectionToken<T>, name?: string): T | null;
|
|
2793
2968
|
|
|
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 };
|
|
2969
|
+
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 };
|
|
2970
|
+
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 };
|