@muraai/mnl-form 0.0.1-alpha-11e96eb → 0.0.1-alpha-9e96598
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/muraai-mnl-form.mjs +151 -151
- package/fesm2022/muraai-mnl-form.mjs.map +1 -1
- package/package.json +8 -5
- package/types/muraai-mnl-form.d.ts +201 -0
- package/index.d.ts +0 -5
- package/lib/confirmation-dialog/confirmation-dialog.component.d.ts +0 -19
- package/lib/mnl-form/mnl-form-standalone.module.d.ts +0 -6
- package/lib/mnl-form/mnl-form.component.d.ts +0 -38
- package/lib/models/custom-form-field.model.d.ts +0 -35
- package/lib/models/workflow-status.model.d.ts +0 -21
- package/lib/services/graphql.service.d.ts +0 -12
- package/lib/services/scoring.service.d.ts +0 -15
- package/lib/types/action-button-renderer.component.d.ts +0 -11
- package/lib/types/autocomplete-type.component.d.ts +0 -11
- package/lib/types/button.type.d.ts +0 -7
- package/lib/types/comments.type.d.ts +0 -11
- package/lib/types/country-code-input.type.d.ts +0 -24
- package/lib/types/custom-date.type.d.ts +0 -5
- package/lib/types/custom-input.component.d.ts +0 -8
- package/lib/types/date-format.type.d.ts +0 -19
- package/lib/types/expansion-panel.types.d.ts +0 -12
- package/lib/types/formly-field-panel.type.d.ts +0 -8
- package/lib/types/grid-actionable.type.d.ts +0 -29
- package/lib/types/grid-formly-cell.component.d.ts +0 -14
- package/lib/types/grid.type.d.ts +0 -29
- package/lib/types/input.type.d.ts +0 -7
- package/lib/types/mu-helper-text.type.d.ts +0 -31
- package/lib/types/multi-select-autocomplete.d.ts +0 -18
- package/lib/types/multi-select-checkbox.component.d.ts +0 -22
- package/lib/types/radio.type.d.ts +0 -7
- package/lib/types/scrollable-tabs.types.d.ts +0 -27
- package/lib/types/select-api-auto-complete.component.d.ts +0 -19
- package/lib/types/select-autocomplete-redefined.component.d.ts +0 -18
- package/lib/types/select-autocomplete.type.d.ts +0 -15
- package/lib/types/stepper.type.d.ts +0 -23
- package/lib/types/table.types.d.ts +0 -17
- package/lib/types/tabs.types.d.ts +0 -26
- package/lib/types/tabular-form-dialog.component.d.ts +0 -43
- package/lib/types/tabular-form.type.d.ts +0 -56
- package/lib/types/upload-file.d.ts +0 -35
- package/lib/types/view-file-dialog.component.d.ts +0 -13
- package/lib/utils/formly.utils.d.ts +0 -4
- package/lib/validators/custom-email-validator.d.ts +0 -8
- package/lib/validators/ein-validators.d.ts +0 -4
- package/lib/validators/gst-validator.d.ts +0 -4
- package/lib/validators/normal-email-validator.d.ts +0 -4
- package/lib/validators/npi-validator.d.ts +0 -4
- package/lib/validators/pan-validator.d.ts +0 -4
- package/lib/validators/phone-number-validator.d.ts +0 -4
- package/lib/validators/select-validator.d.ts +0 -2
- package/lib/validators/tinSsn-validator.d.ts +0 -4
- package/lib/workflow-status/ workflow-status.module.d.ts +0 -13
- package/lib/workflow-status/workflow-status.component.d.ts +0 -22
- package/lib/wrappers/form-field-description-wrapper.component.d.ts +0 -8
- package/lib/wrappers/form-field-wrapper.component.d.ts +0 -6
- package/lib/wrappers/formly-wrapper-with-old-value.component.d.ts +0 -18
- package/lib/wrappers/prefix-suffix-wrapper.component.d.ts +0 -12
- package/lib/wrappers/prefix-sufix-extension.component.d.ts +0 -2
- package/public-api.d.ts +0 -8
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { FieldType } from "@ngx-formly/material";
|
|
2
|
-
import { FieldTypeConfig } from "@ngx-formly/core";
|
|
3
|
-
import { FormControl } from "@angular/forms";
|
|
4
|
-
import { MatAutocompleteSelectedEvent } from "@angular/material/autocomplete";
|
|
5
|
-
import { LiveAnnouncer } from "@angular/cdk/a11y";
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class MultiSelectAutocompleteComponent extends FieldType<FieldTypeConfig> {
|
|
8
|
-
readonly currentState: import("@angular/core").ModelSignal<string>;
|
|
9
|
-
readonly chipsArr: import("@angular/core").WritableSignal<string[]>;
|
|
10
|
-
readonly announcer: LiveAnnouncer;
|
|
11
|
-
tempArr: any;
|
|
12
|
-
itemControl: FormControl<any>;
|
|
13
|
-
readonly filteredStates: import("@angular/core").Signal<any>;
|
|
14
|
-
removeChip(i: any): void;
|
|
15
|
-
selectedChip(event: MatAutocompleteSelectedEvent): void;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<MultiSelectAutocompleteComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<MultiSelectAutocompleteComponent, "mu-formly-autocomplete-type", never, { "currentState": { "alias": "currentState"; "required": false; "isSignal": true; }; }, { "currentState": "currentStateChange"; }, never, never, true, never>;
|
|
18
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FormControl } from '@angular/forms';
|
|
3
|
-
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
4
|
-
import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
|
|
5
|
-
import { Observable } from 'rxjs';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormlyMultiSelectCheckboxAutocompleteComponent extends FieldType<FieldTypeConfig> implements OnInit {
|
|
8
|
-
searchControl: FormControl<any>;
|
|
9
|
-
filteredOptions: Observable<any>;
|
|
10
|
-
protected optionsList: any[];
|
|
11
|
-
trigger: MatAutocompleteTrigger;
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
onKeydown(event: KeyboardEvent): void;
|
|
14
|
-
private filterOptions;
|
|
15
|
-
onCheckboxChange(event: any, value: any): void;
|
|
16
|
-
toggleSelection(event: any, value: any): void;
|
|
17
|
-
isSelected(value: any): boolean;
|
|
18
|
-
removeOption(value: any): void;
|
|
19
|
-
removeChip(chipIndex: number): void;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyMultiSelectCheckboxAutocompleteComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyMultiSelectCheckboxAutocompleteComponent, "mu-multi-checkbox-autocomplete", never, {}, {}, never, never, true, never>;
|
|
22
|
-
}
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { FieldType } from '@ngx-formly/core';
|
|
2
|
-
import { FieldTypeConfig } from '@ngx-formly/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class CustomFormlyRadioComponent extends FieldType<FieldTypeConfig> {
|
|
5
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<CustomFormlyRadioComponent, never>;
|
|
6
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CustomFormlyRadioComponent, "mu-radio", never, {}, {}, never, never, true, never>;
|
|
7
|
-
}
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { ElementRef, NgZone, OnInit } from '@angular/core';
|
|
2
|
-
import { MatTabChangeEvent, MatTabGroup } from '@angular/material/tabs';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FormlyFieldScrollableTabsComponent extends FieldType<FieldTypeConfig> implements OnInit {
|
|
7
|
-
private ngZone;
|
|
8
|
-
submittedData: any[];
|
|
9
|
-
router: Router;
|
|
10
|
-
user: any;
|
|
11
|
-
tabGroup: MatTabGroup;
|
|
12
|
-
selectedIndex: number;
|
|
13
|
-
tabContent: ElementRef;
|
|
14
|
-
private debounceTimeout;
|
|
15
|
-
constructor(ngZone: NgZone);
|
|
16
|
-
nextTab(tabGroup: MatTabGroup): void;
|
|
17
|
-
previousTab(tabGroup: MatTabGroup): void;
|
|
18
|
-
isFirstTab(tabGroup: MatTabGroup): boolean;
|
|
19
|
-
isLastTab(tabGroup: MatTabGroup): boolean;
|
|
20
|
-
ngOnInit(): void;
|
|
21
|
-
isValid(field: any): boolean;
|
|
22
|
-
onTabChange(event: MatTabChangeEvent): void;
|
|
23
|
-
onTabIndexChange(index: number): void;
|
|
24
|
-
onScroll(event: Event): void;
|
|
25
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyFieldScrollableTabsComponent, never>;
|
|
26
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldScrollableTabsComponent, "mu-formly-field-tabs1", never, {}, {}, never, never, true, never>;
|
|
27
|
-
}
|
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit } from "@angular/core";
|
|
2
|
-
import { FormControl } from "@angular/forms";
|
|
3
|
-
import { FieldType } from "@ngx-formly/material";
|
|
4
|
-
import { Observable } from "rxjs";
|
|
5
|
-
import { CustomFormlyFieldConfig } from "../models/custom-form-field.model";
|
|
6
|
-
import { GraphQLService } from "../services/graphql.service";
|
|
7
|
-
import * as i0 from "@angular/core";
|
|
8
|
-
export declare class SelectApiAutoCompleteComponent extends FieldType<CustomFormlyFieldConfig> implements OnInit {
|
|
9
|
-
private graphqlService;
|
|
10
|
-
private changedetecref;
|
|
11
|
-
filteredOptions: Observable<any[]>;
|
|
12
|
-
displayValue: string;
|
|
13
|
-
get control(): FormControl;
|
|
14
|
-
constructor(graphqlService: GraphQLService, changedetecref: ChangeDetectorRef);
|
|
15
|
-
ngOnInit(): void;
|
|
16
|
-
validateInput(): void;
|
|
17
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectApiAutoCompleteComponent, never>;
|
|
18
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectApiAutoCompleteComponent, "mu-temp-auto-complete", never, {}, {}, never, never, true, never>;
|
|
19
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
|
|
3
|
-
import { FormControl } from '@angular/forms';
|
|
4
|
-
import { Observable } from 'rxjs';
|
|
5
|
-
import { MatAutocompleteTrigger } from '@angular/material/autocomplete';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class SelectAutocompleteComponent extends FieldType<FieldTypeConfig> implements OnInit {
|
|
8
|
-
displayValue: string;
|
|
9
|
-
searchControl: FormControl<any>;
|
|
10
|
-
filteredOptions: Observable<any[]>;
|
|
11
|
-
trigger: MatAutocompleteTrigger;
|
|
12
|
-
ngOnInit(): void;
|
|
13
|
-
onKeydown(event: KeyboardEvent): void;
|
|
14
|
-
filterOptions(searchTerm: string): any[];
|
|
15
|
-
private updateDisplayValue;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<SelectAutocompleteComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<SelectAutocompleteComponent, "mu-formly-select", never, {}, {}, never, never, true, never>;
|
|
18
|
-
}
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FieldType, FormlyFieldConfig } from '@ngx-formly/core';
|
|
3
|
-
import { Observable } from 'rxjs';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class FormlySelectAutocompleteComponent extends FieldType<FormlyFieldConfig> implements OnInit {
|
|
6
|
-
filteredOptions$: Observable<any>;
|
|
7
|
-
protected optionsList: any[];
|
|
8
|
-
ngOnInit(): void;
|
|
9
|
-
displayFn: (value: any) => string;
|
|
10
|
-
onBlur(): void;
|
|
11
|
-
private filterOptions;
|
|
12
|
-
clearSearchedInput(): void;
|
|
13
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlySelectAutocompleteComponent, never>;
|
|
14
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlySelectAutocompleteComponent, "mu-select-autocomplete", never, {}, {}, never, never, true, never>;
|
|
15
|
-
}
|
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit } from "@angular/core";
|
|
2
|
-
import { FieldType } from "@ngx-formly/core";
|
|
3
|
-
import { Router } from "@angular/router";
|
|
4
|
-
import { StepperSelectionEvent } from "@angular/cdk/stepper";
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FormlyFieldStepperComponent extends FieldType implements OnInit, AfterViewInit {
|
|
7
|
-
router: Router;
|
|
8
|
-
isLinear: boolean;
|
|
9
|
-
selectedStepIndex: number;
|
|
10
|
-
ngOnInit(): void;
|
|
11
|
-
ngAfterViewInit(): void;
|
|
12
|
-
isValid(field: any): boolean;
|
|
13
|
-
onApprove(): void;
|
|
14
|
-
onReject(): void;
|
|
15
|
-
onStepChange(event: StepperSelectionEvent): void;
|
|
16
|
-
removeValidationsForTabularFormFields(fields: any): void;
|
|
17
|
-
rmvValidity(field: any): void;
|
|
18
|
-
scrollToTop(): void;
|
|
19
|
-
getColorForTheTabChanged(step: any): string;
|
|
20
|
-
isTabDataChanged(step: any): boolean;
|
|
21
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyFieldStepperComponent, never>;
|
|
22
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldStepperComponent, "mu-formly-field-stepper", never, {}, {}, never, never, true, never>;
|
|
23
|
-
}
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, OnInit } from '@angular/core';
|
|
2
|
-
import { FieldArrayType } from '@ngx-formly/core';
|
|
3
|
-
import { MatTableDataSource } from '@angular/material/table';
|
|
4
|
-
import { MatSort } from '@angular/material/sort';
|
|
5
|
-
import { MatPaginator } from '@angular/material/paginator';
|
|
6
|
-
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormlyFieldTableComponent extends FieldArrayType implements OnInit, AfterViewInit {
|
|
8
|
-
displayedColumns: string[];
|
|
9
|
-
columnsToDisplay: string[];
|
|
10
|
-
data: MatTableDataSource<any, MatPaginator>;
|
|
11
|
-
paginator: MatPaginator;
|
|
12
|
-
sort: MatSort;
|
|
13
|
-
ngAfterViewInit(): void;
|
|
14
|
-
ngOnInit(): void;
|
|
15
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyFieldTableComponent, never>;
|
|
16
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldTableComponent, "mu-selector-name", never, {}, {}, never, never, true, never>;
|
|
17
|
-
}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { MatTabChangeEvent, MatTabGroup } from '@angular/material/tabs';
|
|
3
|
-
import { Router } from '@angular/router';
|
|
4
|
-
import { FieldType, FieldTypeConfig } from '@ngx-formly/core';
|
|
5
|
-
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FormlyFieldTabsComponent extends FieldType<FieldTypeConfig> implements OnInit {
|
|
7
|
-
submittedData: any[];
|
|
8
|
-
router: Router;
|
|
9
|
-
user: any;
|
|
10
|
-
tabGroup: MatTabGroup;
|
|
11
|
-
showSubmitBtn: boolean;
|
|
12
|
-
hideTab: boolean;
|
|
13
|
-
nextTab(tabGroup: MatTabGroup): void;
|
|
14
|
-
previousTab(tabGroup: MatTabGroup): void;
|
|
15
|
-
isFirstTab(tabGroup: MatTabGroup): boolean;
|
|
16
|
-
isLastTab(tabGroup: MatTabGroup): boolean;
|
|
17
|
-
ngOnInit(): void;
|
|
18
|
-
isValid(field: any): boolean;
|
|
19
|
-
onTabChange(event: MatTabChangeEvent): void;
|
|
20
|
-
goToPreviousForm(tabGroup: MatTabGroup): void;
|
|
21
|
-
getTabHeightClass(): string;
|
|
22
|
-
getColorForTheTabChanged(tab: any): string;
|
|
23
|
-
isTabDataChanged(step: any): boolean;
|
|
24
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyFieldTabsComponent, never>;
|
|
25
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFieldTabsComponent, "mu-formly-field-tabs", never, {}, {}, never, never, true, never>;
|
|
26
|
-
}
|
|
@@ -1,43 +0,0 @@
|
|
|
1
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
2
|
-
import { DestroyRef, ElementRef, EventEmitter } from '@angular/core';
|
|
3
|
-
import { FormGroup } from '@angular/forms';
|
|
4
|
-
import { MatDialog, MatDialogRef } from '@angular/material/dialog';
|
|
5
|
-
import { FormlyFormBuilder } from '@ngx-formly/core';
|
|
6
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
-
import { CustomFormlyFieldConfig } from '../models/custom-form-field.model';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class TabularFormDialogComponent {
|
|
10
|
-
dialogRef: MatDialogRef<TabularFormDialogComponent>;
|
|
11
|
-
data: any;
|
|
12
|
-
private formlyBuilder;
|
|
13
|
-
private translateService;
|
|
14
|
-
private matDialog;
|
|
15
|
-
private hostElement;
|
|
16
|
-
private breakpointObserver;
|
|
17
|
-
form: FormGroup<{}>;
|
|
18
|
-
fieldConfig: any[];
|
|
19
|
-
fields: CustomFormlyFieldConfig[];
|
|
20
|
-
model: any;
|
|
21
|
-
options: any;
|
|
22
|
-
dialogLabel: string;
|
|
23
|
-
saveData: EventEmitter<any>;
|
|
24
|
-
selectedRowData: any;
|
|
25
|
-
destroyRef: DestroyRef;
|
|
26
|
-
propsOfDialog: any;
|
|
27
|
-
parentModel: any;
|
|
28
|
-
isMobileDevice: boolean;
|
|
29
|
-
constructor(dialogRef: MatDialogRef<TabularFormDialogComponent>, data: any, formlyBuilder: FormlyFormBuilder, translateService: TranslateService, matDialog: MatDialog, hostElement: ElementRef, breakpointObserver: BreakpointObserver);
|
|
30
|
-
private resetForm;
|
|
31
|
-
onSave(): void;
|
|
32
|
-
onCancel(): void;
|
|
33
|
-
onSaveAddNew(): void;
|
|
34
|
-
translateFormConfig(config: CustomFormlyFieldConfig[]): CustomFormlyFieldConfig[];
|
|
35
|
-
onModelChange(event: any): void;
|
|
36
|
-
subscribeToDependencies(fields: CustomFormlyFieldConfig[], form: FormGroup, vendorModel: any): void;
|
|
37
|
-
updateDependentFieldsFullName(fields: any): void;
|
|
38
|
-
updateLabelValueForField(field: any, value: any): void;
|
|
39
|
-
isFilesUploaded(): boolean;
|
|
40
|
-
generateSequentialIdNumber(parentModel: any): number;
|
|
41
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TabularFormDialogComponent, never>;
|
|
42
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabularFormDialogComponent, "mu-app-add-data-dialog", never, {}, { "saveData": "saveData"; }, never, never, true, never>;
|
|
43
|
-
}
|
|
@@ -1,56 +0,0 @@
|
|
|
1
|
-
import { ChangeDetectorRef, OnInit } from '@angular/core';
|
|
2
|
-
import { MatDialog } from '@angular/material/dialog';
|
|
3
|
-
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
-
import { DatePipe } from '@angular/common';
|
|
5
|
-
import { FieldArrayType } from '@ngx-formly/core';
|
|
6
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
-
import { ColDef } from 'ag-grid-community';
|
|
8
|
-
import { CustomFormlyFieldConfig } from '../models/custom-form-field.model';
|
|
9
|
-
import { GridApi, RowSelectedEvent } from 'ag-grid-community';
|
|
10
|
-
import * as i0 from "@angular/core";
|
|
11
|
-
export declare class TabularFormComponent extends FieldArrayType<CustomFormlyFieldConfig> implements OnInit {
|
|
12
|
-
private dialog;
|
|
13
|
-
private snackBar;
|
|
14
|
-
private cd;
|
|
15
|
-
private translateService;
|
|
16
|
-
private datePipe;
|
|
17
|
-
selectedRowCount: number;
|
|
18
|
-
isButtonsDisabled: boolean;
|
|
19
|
-
columnDefs: ColDef[];
|
|
20
|
-
rowData: Record<string, any>[];
|
|
21
|
-
gridApi: GridApi;
|
|
22
|
-
defaultColDef: {
|
|
23
|
-
sortable: boolean;
|
|
24
|
-
filter: boolean;
|
|
25
|
-
resizable: boolean;
|
|
26
|
-
flex: number;
|
|
27
|
-
minWidth: number;
|
|
28
|
-
wrapHeaderText: boolean;
|
|
29
|
-
autoHeaderHeight: boolean;
|
|
30
|
-
};
|
|
31
|
-
oldValue: any;
|
|
32
|
-
constructor(dialog: MatDialog, snackBar: MatSnackBar, cd: ChangeDetectorRef, translateService: TranslateService, datePipe: DatePipe);
|
|
33
|
-
ngOnInit(): void;
|
|
34
|
-
onGridReady(params: any): void;
|
|
35
|
-
openDialog(): void;
|
|
36
|
-
generateRandomNumber(): number;
|
|
37
|
-
addRowToGrid(data: any): void;
|
|
38
|
-
findFieldConfigByKey(fieldConfigs: any[], key: string): any;
|
|
39
|
-
getMaxRows(): number;
|
|
40
|
-
findLabelInNestedFields(fieldConfigs: any[], key: string): string;
|
|
41
|
-
removeSelectedRows(): void;
|
|
42
|
-
onRowSelected(event: RowSelectedEvent): void;
|
|
43
|
-
updateSelectedRowCount(): void;
|
|
44
|
-
translateLabels(columnDefs: any[]): any[];
|
|
45
|
-
editDialog(): void;
|
|
46
|
-
formatDate(date: string): string;
|
|
47
|
-
onFilenameClick(params: any): void;
|
|
48
|
-
viewFile(element: any): void;
|
|
49
|
-
showChangedValues(params: any): void;
|
|
50
|
-
generateSequentialIdNumber(parentModel: any): number;
|
|
51
|
-
getRowStyle: (params: any) => {
|
|
52
|
-
backgroundColor: string;
|
|
53
|
-
};
|
|
54
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<TabularFormComponent, never>;
|
|
55
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TabularFormComponent, "mu-formly-add-dialog-type", never, {}, {}, never, never, true, never>;
|
|
56
|
-
}
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { BreakpointObserver } from '@angular/cdk/layout';
|
|
2
|
-
import { ChangeDetectorRef, DestroyRef, OnInit } from '@angular/core';
|
|
3
|
-
import { MatSnackBar } from '@angular/material/snack-bar';
|
|
4
|
-
import { MatTableDataSource } from '@angular/material/table';
|
|
5
|
-
import { FieldType } from '@ngx-formly/core';
|
|
6
|
-
import { TranslateService } from '@ngx-translate/core';
|
|
7
|
-
import { CustomFormlyFieldConfig, FileAction } from '../models/custom-form-field.model';
|
|
8
|
-
import * as i0 from "@angular/core";
|
|
9
|
-
export declare class FormlyFileUploadComponent extends FieldType<CustomFormlyFieldConfig> implements OnInit {
|
|
10
|
-
private snackBar;
|
|
11
|
-
private translateService;
|
|
12
|
-
private breakpointObserver;
|
|
13
|
-
private cdr;
|
|
14
|
-
uploadedFiles: any[];
|
|
15
|
-
displayedColumns: string[];
|
|
16
|
-
dataSource: MatTableDataSource<unknown, import("@angular/material/paginator.d-CexYxFq4").M>;
|
|
17
|
-
showUploadbtn: boolean;
|
|
18
|
-
loggedInUserDetails: any;
|
|
19
|
-
destroyRef: DestroyRef;
|
|
20
|
-
isMobileDevice: boolean;
|
|
21
|
-
constructor(snackBar: MatSnackBar, translateService: TranslateService, breakpointObserver: BreakpointObserver, cdr: ChangeDetectorRef);
|
|
22
|
-
ngOnInit(): void;
|
|
23
|
-
onFileSelect(event: any): void;
|
|
24
|
-
handleActionClick(action: FileAction, index: number, element: any): void;
|
|
25
|
-
refreshUploadedTable(element: any, index: number): void;
|
|
26
|
-
removeFile(index: number): void;
|
|
27
|
-
isFileAlreadyUploaded(selectedFile: any): boolean;
|
|
28
|
-
resetFileInput(fileInput: any): void;
|
|
29
|
-
showUploadAction(action: any, file: any): boolean;
|
|
30
|
-
formatFileSize(bytes: number): string;
|
|
31
|
-
private invokeAction;
|
|
32
|
-
successMessage(icon: string): void;
|
|
33
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyFileUploadComponent, never>;
|
|
34
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyFileUploadComponent, "mu-formly-field-file", never, {}, {}, never, never, true, never>;
|
|
35
|
-
}
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { ElementRef } from '@angular/core';
|
|
2
|
-
import { MatDialogRef } from '@angular/material/dialog';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class ViewFileDialogComponent {
|
|
5
|
-
private dialogRef;
|
|
6
|
-
data: any;
|
|
7
|
-
private hostElement;
|
|
8
|
-
constructor(dialogRef: MatDialogRef<ViewFileDialogComponent>, data: any, hostElement: ElementRef);
|
|
9
|
-
close(): void;
|
|
10
|
-
renderFrame(querySelector: string, blob: Blob): void;
|
|
11
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<ViewFileDialogComponent, never>;
|
|
12
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<ViewFileDialogComponent, "mu-view-file-dialog", never, {}, {}, never, never, true, never>;
|
|
13
|
-
}
|
|
@@ -1,4 +0,0 @@
|
|
|
1
|
-
import { GraphQLService } from "../services/graphql.service";
|
|
2
|
-
export declare function updateFieldOptionsWithGql(fieldConfig: any, graphQLService: GraphQLService, model: any): void;
|
|
3
|
-
export declare function flattenJson(data: any, result?: any): any;
|
|
4
|
-
export declare function deepEqual(obj1: any, obj2: any): boolean;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import * as i0 from "@angular/core";
|
|
2
|
-
import * as i1 from "@angular/common";
|
|
3
|
-
import * as i2 from "@angular/material/stepper";
|
|
4
|
-
import * as i3 from "@angular/material/card";
|
|
5
|
-
import * as i4 from "@angular/material/icon";
|
|
6
|
-
import * as i5 from "@angular/material/badge";
|
|
7
|
-
import * as i6 from "@angular/material/tooltip";
|
|
8
|
-
import * as i7 from "./workflow-status.component";
|
|
9
|
-
export declare class WorkflowStatusModule {
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowStatusModule, never>;
|
|
11
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<WorkflowStatusModule, never, [typeof i1.CommonModule, typeof i2.MatStepperModule, typeof i3.MatCardModule, typeof i4.MatIconModule, typeof i5.MatBadgeModule, typeof i6.MatTooltipModule, typeof i7.WorkflowStatusComponent], [typeof i7.WorkflowStatusComponent]>;
|
|
12
|
-
static ɵinj: i0.ɵɵInjectorDeclaration<WorkflowStatusModule>;
|
|
13
|
-
}
|
|
@@ -1,22 +0,0 @@
|
|
|
1
|
-
import { AfterViewInit, ChangeDetectorRef, OnChanges, SimpleChanges } from '@angular/core';
|
|
2
|
-
import { MatStepper } from '@angular/material/stepper';
|
|
3
|
-
import { WorkflowStatusSteps } from '../models/workflow-status.model';
|
|
4
|
-
import * as i0 from "@angular/core";
|
|
5
|
-
export declare class WorkflowStatusComponent implements OnChanges, AfterViewInit {
|
|
6
|
-
private cdr;
|
|
7
|
-
stepper: MatStepper;
|
|
8
|
-
subStepper: MatStepper;
|
|
9
|
-
workflowSteps: WorkflowStatusSteps[];
|
|
10
|
-
completedBackgroundColor: string;
|
|
11
|
-
completedTextColor: string;
|
|
12
|
-
inProgressTextColor: string;
|
|
13
|
-
constructor(cdr: ChangeDetectorRef);
|
|
14
|
-
ngOnChanges(changes: SimpleChanges): void;
|
|
15
|
-
ngAfterViewInit(): void;
|
|
16
|
-
setStepperStates(): void;
|
|
17
|
-
setActive(status: string, index: number): void;
|
|
18
|
-
setActiveSubStepper(status: string, index: number): void;
|
|
19
|
-
isCompleted(data: any): boolean;
|
|
20
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WorkflowStatusComponent, never>;
|
|
21
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WorkflowStatusComponent, "lib-workflow-status", never, { "workflowSteps": { "alias": "workflowSteps"; "required": false; }; "completedBackgroundColor": { "alias": "completedBackgroundColor"; "required": false; }; "completedTextColor": { "alias": "completedTextColor"; "required": false; }; "inProgressTextColor": { "alias": "inProgressTextColor"; "required": false; }; }, {}, never, never, true, never>;
|
|
22
|
-
}
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
2
|
-
import { FieldWrapper } from '@ngx-formly/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormlyDescriptionWrapperComponent extends FieldWrapper implements OnInit {
|
|
5
|
-
ngOnInit(): void;
|
|
6
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyDescriptionWrapperComponent, never>;
|
|
7
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyDescriptionWrapperComponent, "mu-formly-wrapper-description", never, {}, {}, never, never, true, never>;
|
|
8
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { FieldWrapper } from '@ngx-formly/core';
|
|
2
|
-
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class FormFieldWrapperComponent extends FieldWrapper {
|
|
4
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormFieldWrapperComponent, never>;
|
|
5
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormFieldWrapperComponent, "mu-formly-wrapper-form-field", never, {}, {}, never, never, true, never>;
|
|
6
|
-
}
|
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import { DoCheck, OnInit, Renderer2, ElementRef } from '@angular/core';
|
|
2
|
-
import { FieldWrapper } from '@ngx-formly/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class WithOldValueWrapperComponent extends FieldWrapper implements OnInit, DoCheck {
|
|
5
|
-
private renderer;
|
|
6
|
-
private elRef;
|
|
7
|
-
oldValues: any;
|
|
8
|
-
currentValue: any;
|
|
9
|
-
showOldValues: boolean;
|
|
10
|
-
constructor(renderer: Renderer2, elRef: ElementRef);
|
|
11
|
-
ngOnInit(): void;
|
|
12
|
-
ngDoCheck(): void;
|
|
13
|
-
normalizeToUTCMidnight(date: Date): string;
|
|
14
|
-
hasValueChanged(): boolean;
|
|
15
|
-
get oldValueDisplay(): string;
|
|
16
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<WithOldValueWrapperComponent, never>;
|
|
17
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<WithOldValueWrapperComponent, "mu-with-old-value-wrapper", never, {}, {}, never, never, true, never>;
|
|
18
|
-
}
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { TemplateRef, AfterViewInit } from '@angular/core';
|
|
2
|
-
import { FieldWrapper } from '@ngx-formly/core';
|
|
3
|
-
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormlyWrapperAddonsComponent extends FieldWrapper implements AfterViewInit {
|
|
5
|
-
matPrefix: TemplateRef<any>;
|
|
6
|
-
matSuffix: TemplateRef<any>;
|
|
7
|
-
ngAfterViewInit(): void;
|
|
8
|
-
addonRightClick($event: any): void;
|
|
9
|
-
addonLeftClick($event: any): void;
|
|
10
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormlyWrapperAddonsComponent, never>;
|
|
11
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<FormlyWrapperAddonsComponent, "mu-formly-wrapper-addons", never, {}, {}, never, never, true, never>;
|
|
12
|
-
}
|
package/public-api.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
export * from './lib/mnl-form/mnl-form-standalone.module';
|
|
2
|
-
export * from './lib/mnl-form/mnl-form.component';
|
|
3
|
-
export * from './lib/models/custom-form-field.model';
|
|
4
|
-
export * from './lib/models/workflow-status.model';
|
|
5
|
-
export * from './lib/workflow-status/workflow-status.component';
|
|
6
|
-
export * from './lib/workflow-status/ workflow-status.module';
|
|
7
|
-
export * from './lib/confirmation-dialog/confirmation-dialog.component';
|
|
8
|
-
export * from './lib/types/mu-helper-text.type';
|