sf-crud 13.2.49 → 13.2.50
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.
|
@@ -6,6 +6,7 @@ import { SfCrudService } from '../../sf-crud.service';
|
|
|
6
6
|
import { Tooltip } from 'primeng/tooltip';
|
|
7
7
|
import { Archivo } from '../file-upload/file-upload.component';
|
|
8
8
|
import { NotificationService } from '../../shared/services/notification.service';
|
|
9
|
+
import { StepService } from '../../shared/services/step.service';
|
|
9
10
|
import { Subscription } from 'rxjs';
|
|
10
11
|
import * as i0 from "@angular/core";
|
|
11
12
|
export declare class ControlComponent implements OnInit, OnChanges, OnDestroy {
|
|
@@ -13,6 +14,7 @@ export declare class ControlComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
13
14
|
private crudService;
|
|
14
15
|
private cdr;
|
|
15
16
|
private notificationService;
|
|
17
|
+
private stepService;
|
|
16
18
|
showTempValue: Boolean;
|
|
17
19
|
control: Shema;
|
|
18
20
|
label: string;
|
|
@@ -38,7 +40,7 @@ export declare class ControlComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
38
40
|
tempCheckVal: boolean;
|
|
39
41
|
uploadingFiles: boolean;
|
|
40
42
|
subscription: Subscription | undefined;
|
|
41
|
-
constructor(generalService: GeneralService, crudService: SfCrudService, cdr: ChangeDetectorRef, notificationService: NotificationService);
|
|
43
|
+
constructor(generalService: GeneralService, crudService: SfCrudService, cdr: ChangeDetectorRef, notificationService: NotificationService, stepService: StepService);
|
|
42
44
|
ngOnChanges(changes: SimpleChanges): void;
|
|
43
45
|
ngOnInit(): void;
|
|
44
46
|
ngOnDestroy(): void;
|
|
@@ -76,6 +78,7 @@ export declare class ControlComponent implements OnInit, OnChanges, OnDestroy {
|
|
|
76
78
|
onClickedAddres(): void;
|
|
77
79
|
displayTemplate(): string;
|
|
78
80
|
formatWithTemplate(item: any): string;
|
|
81
|
+
onAutocompleteBlur(): void;
|
|
79
82
|
sendDependencyValue(data: any): void;
|
|
80
83
|
static ɵfac: i0.ɵɵFactoryDeclaration<ControlComponent, never>;
|
|
81
84
|
static ɵcmp: i0.ɵɵComponentDeclaration<ControlComponent, "sf-control", never, { "showTempValue": { "alias": "showTempValue"; "required": false; }; "control": { "alias": "control"; "required": false; }; "label": { "alias": "label"; "required": false; }; "value": { "alias": "value"; "required": false; }; "appendTo": { "alias": "appendTo"; "required": false; }; "showCssClass": { "alias": "showCssClass"; "required": false; }; "environment": { "alias": "environment"; "required": false; }; "context": { "alias": "context"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; }, { "setValue": "setValue"; "sendObject": "sendObject"; "addressClicked": "addressClicked"; "setDependencyValue": "setDependencyValue"; }, never, never, true, never>;
|
|
@@ -11,6 +11,7 @@ export declare class StepComponent implements OnInit, AfterViewInit {
|
|
|
11
11
|
activeIndex: number;
|
|
12
12
|
loading: boolean;
|
|
13
13
|
nextMovement: number;
|
|
14
|
+
uploadingFile: boolean;
|
|
14
15
|
constructor(router: Router, stepService: StepService, activatedRoute: ActivatedRoute);
|
|
15
16
|
ngOnInit(): void;
|
|
16
17
|
ngAfterViewInit(): void;
|
|
@@ -19,6 +19,9 @@ export declare class StepService {
|
|
|
19
19
|
*/
|
|
20
20
|
set requestApproved(approved: boolean);
|
|
21
21
|
set desiredIndex(index: number | undefined);
|
|
22
|
+
private _fileUploading;
|
|
23
|
+
get fileUploading$(): import("rxjs").Observable<boolean>;
|
|
24
|
+
set fileUploading(value: boolean);
|
|
22
25
|
addCustomChildrenEvent(name: string, data: any): void;
|
|
23
26
|
reset(): void;
|
|
24
27
|
get customChildrenEvents$(): import("rxjs").Observable<any>;
|