@formio/angular 6.0.0-rc.2 → 6.0.0-rc.4
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/auth/auth.service.d.ts.map +1 -1
- package/auth/login/login.component.d.ts +1 -0
- package/auth/login/login.component.d.ts.map +1 -1
- package/auth/register/register.component.d.ts +1 -0
- package/auth/register/register.component.d.ts.map +1 -1
- package/esm2022/FormioBaseComponent.mjs +3 -3
- package/esm2022/auth/auth.component.mjs +3 -3
- package/esm2022/auth/auth.config.mjs +3 -3
- package/esm2022/auth/auth.module.mjs +4 -4
- package/esm2022/auth/auth.service.mjs +12 -6
- package/esm2022/auth/login/login.component.mjs +8 -5
- package/esm2022/auth/register/register.component.mjs +8 -5
- package/esm2022/auth/resetpass/resetpass.component.mjs +3 -3
- package/esm2022/components/alerts/formio.alerts.component.mjs +3 -3
- package/esm2022/components/alerts/parse-html-content.pipe.mjs +3 -3
- package/esm2022/components/formbuilder/formbuilder.component.mjs +3 -3
- package/esm2022/components/formio/formio.component.mjs +3 -3
- package/esm2022/components/loader/formio.loader.component.mjs +3 -3
- package/esm2022/custom-component/custom-tags.service.mjs +3 -3
- package/esm2022/formio.config.mjs +3 -3
- package/esm2022/formio.module.mjs +4 -4
- package/esm2022/grid/GridBodyComponent.mjs +3 -3
- package/esm2022/grid/GridFooterComponent.mjs +3 -3
- package/esm2022/grid/GridHeaderComponent.mjs +3 -3
- package/esm2022/grid/form/FormGridBody.component.mjs +52 -8
- package/esm2022/grid/form/FormGridFooter.component.mjs +5 -5
- package/esm2022/grid/form/FormGridHeader.component.mjs +5 -5
- package/esm2022/grid/form/time-since.pipe.mjs +3 -3
- package/esm2022/grid/grid.component.mjs +3 -3
- package/esm2022/grid/grid.module.mjs +4 -4
- package/esm2022/grid/grid.service.mjs +3 -3
- package/esm2022/grid/submission/SubmissionGridBody.component.mjs +3 -3
- package/esm2022/grid/submission/SubmissionGridFooter.component.mjs +5 -5
- package/esm2022/grid/submission/SubmissionGridHeader.component.mjs +5 -5
- package/esm2022/manager/create/create.component.mjs +5 -5
- package/esm2022/manager/delete/delete.component.mjs +3 -3
- package/esm2022/manager/edit/edit.component.mjs +5 -5
- package/esm2022/manager/form/form.component.mjs +5 -5
- package/esm2022/manager/form-manager.config.mjs +3 -3
- package/esm2022/manager/form-manager.module.mjs +4 -4
- package/esm2022/manager/form-manager.service.mjs +3 -3
- package/esm2022/manager/index/index.component.mjs +25 -18
- package/esm2022/manager/submission/delete/delete.component.mjs +3 -3
- package/esm2022/manager/submission/edit/edit.component.mjs +3 -3
- package/esm2022/manager/submission/index/index.component.mjs +3 -3
- package/esm2022/manager/submission/submission/submission.component.mjs +5 -5
- package/esm2022/manager/submission/view/view.component.mjs +3 -3
- package/esm2022/manager/view/view.component.mjs +3 -3
- package/esm2022/resource/create/create.component.mjs +6 -6
- package/esm2022/resource/delete/delete.component.mjs +3 -3
- package/esm2022/resource/edit/edit.component.mjs +3 -3
- package/esm2022/resource/index/index.component.mjs +7 -8
- package/esm2022/resource/resource.component.mjs +23 -27
- package/esm2022/resource/resource.config.mjs +3 -3
- package/esm2022/resource/resource.module.mjs +4 -4
- package/esm2022/resource/resource.service.mjs +60 -37
- package/esm2022/resource/resources.service.mjs +3 -3
- package/esm2022/resource/view/view.component.mjs +3 -3
- package/fesm2022/formio-angular-auth.mjs +38 -26
- package/fesm2022/formio-angular-auth.mjs.map +1 -1
- package/fesm2022/formio-angular-grid.mjs +92 -48
- package/fesm2022/formio-angular-grid.mjs.map +1 -1
- package/fesm2022/formio-angular-manager.mjs +71 -63
- package/fesm2022/formio-angular-manager.mjs.map +1 -1
- package/fesm2022/formio-angular-resource.mjs +111 -94
- package/fesm2022/formio-angular-resource.mjs.map +1 -1
- package/fesm2022/formio-angular.mjs +28 -28
- package/grid/form/FormGridBody.component.d.ts +12 -2
- package/grid/form/FormGridBody.component.d.ts.map +1 -1
- package/manager/index/index.component.d.ts +6 -4
- package/manager/index/index.component.d.ts.map +1 -1
- package/package.json +1 -1
- package/resource/create/create.component.d.ts.map +1 -1
- package/resource/index/index.component.d.ts.map +1 -1
- package/resource/resource.component.d.ts +8 -6
- package/resource/resource.component.d.ts.map +1 -1
- package/resource/resource.service.d.ts +12 -8
- package/resource/resource.service.d.ts.map +1 -1
|
@@ -1,8 +1,18 @@
|
|
|
1
|
+
import { ElementRef, OnDestroy } from '@angular/core';
|
|
1
2
|
import { GridBodyComponent } from '../GridBodyComponent';
|
|
2
3
|
import { FormioPromiseService } from '@formio/angular';
|
|
4
|
+
import { Tooltip } from 'bootstrap';
|
|
3
5
|
import * as i0 from "@angular/core";
|
|
4
|
-
export declare class FormGridBodyComponent extends GridBodyComponent {
|
|
5
|
-
|
|
6
|
+
export declare class FormGridBodyComponent extends GridBodyComponent implements OnDestroy {
|
|
7
|
+
createBtns: ElementRef[];
|
|
8
|
+
viewBtns: ElementRef[];
|
|
9
|
+
editBtns: ElementRef[];
|
|
10
|
+
permissionsBtns: ElementRef[];
|
|
11
|
+
deleteBtns: ElementRef[];
|
|
12
|
+
tooltips: Array<Tooltip>;
|
|
13
|
+
load(formio: FormioPromiseService, query?: any): Promise<void>;
|
|
14
|
+
attachTooltips(): void;
|
|
15
|
+
ngOnDestroy(): void;
|
|
6
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormGridBodyComponent, never>;
|
|
7
17
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormGridBodyComponent, "form-grid-body", never, {}, {}, never, never, false, never>;
|
|
8
18
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FormGridBody.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/form/FormGridBody.component.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"FormGridBody.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/grid/src/form/FormGridBody.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,UAAU,EAAE,SAAS,EAA2B,MAAM,eAAe,CAAC;AAC1F,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,OAAO,EAAE,MAAM,WAAW,CAAC;;AACpC,qBAKa,qBAAsB,SAAQ,iBAAkB,YAAW,SAAS;IACvD,UAAU,EAAE,UAAU,EAAE,CAAC;IAC3B,QAAQ,EAAE,UAAU,EAAE,CAAC;IACvB,QAAQ,EAAE,UAAU,EAAE,CAAC;IAChB,eAAe,EAAE,UAAU,EAAE,CAAC;IACnC,UAAU,EAAE,UAAU,EAAE,CAAC;IAC1C,QAAQ,EAAE,KAAK,CAAC,OAAO,CAAC,CAAM;IAErC,IAAI,CAAC,MAAM,EAAE,oBAAoB,EAAE,KAAK,CAAC,EAAE,GAAG;IAO9C,cAAc;IAkBd,WAAW,IAAI,IAAI;yCAjCR,qBAAqB;2CAArB,qBAAqB;CAoCjC"}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
import { OnInit } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, ElementRef, OnInit } from '@angular/core';
|
|
2
2
|
import { Router, ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { FormManagerService } from '../form-manager.service';
|
|
4
4
|
import { FormManagerConfig } from '../form-manager.config';
|
|
5
5
|
import { FormioGridComponent } from '@formio/angular/grid';
|
|
6
6
|
import * as i0 from "@angular/core";
|
|
7
|
-
export declare class FormManagerIndexComponent implements OnInit {
|
|
7
|
+
export declare class FormManagerIndexComponent implements OnInit, AfterViewInit {
|
|
8
8
|
service: FormManagerService;
|
|
9
9
|
route: ActivatedRoute;
|
|
10
10
|
router: Router;
|
|
11
11
|
config: FormManagerConfig;
|
|
12
|
+
searchElement: ElementRef;
|
|
12
13
|
formGrid: FormioGridComponent;
|
|
13
14
|
gridQuery: any;
|
|
14
|
-
|
|
15
|
+
onSearch: any;
|
|
15
16
|
constructor(service: FormManagerService, route: ActivatedRoute, router: Router, config: FormManagerConfig);
|
|
16
17
|
loadGrid(): void;
|
|
17
18
|
ngOnInit(): void;
|
|
18
|
-
|
|
19
|
+
ngAfterViewInit(): void;
|
|
20
|
+
_onSearch(): void;
|
|
19
21
|
clearSearch(): void;
|
|
20
22
|
onAction(action: any): void;
|
|
21
23
|
onSelect(row: any): void;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/index/index.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAa,MAAM,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/manager/src/index/index.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAa,UAAU,EAAE,MAAM,EAAa,MAAM,eAAe,CAAC;AACxF,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,kBAAkB,EAAE,MAAM,yBAAyB,CAAC;AAC7D,OAAO,EAAwB,iBAAiB,EAAE,MAAM,wBAAwB,CAAC;AACjF,OAAO,EAAE,mBAAmB,EAAE,MAAM,sBAAsB,CAAC;;AAG3D,qBAIa,yBAA0B,YAAW,MAAM,EAAE,aAAa;IAM5D,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,iBAAiB;IARb,aAAa,EAAE,UAAU,CAAC;IACE,QAAQ,EAAE,mBAAmB,CAAC;IACxE,SAAS,EAAE,GAAG,CAAC;IACf,QAAQ,MAAC;gBAEP,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,iBAAiB;IAUlC,QAAQ;IAQR,QAAQ;IAcR,eAAe,IAAI,IAAI;IAIvB,SAAS;IAeT,WAAW;IAgBX,QAAQ,CAAC,MAAM,EAAE,GAAG;IAKpB,QAAQ,CAAC,GAAG,EAAE,GAAG;IAIjB,YAAY;yCArFD,yBAAyB;2CAAzB,yBAAyB;CAwFrC"}
|
package/package.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/resource/src/create/create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;;AAE1D,qBAIa,6BAA8B,YAAW,MAAM;IAIjD,OAAO,EAAE,qBAAqB;IAC9B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,oBAAoB;IAN9B,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IAC3B,SAAS,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;gBAE3B,OAAO,EAAE,qBAAqB,EAC9B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,oBAAoB;IAMrC,QAAQ;
|
|
1
|
+
{"version":3,"file":"create.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/resource/src/create/create.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,YAAY,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAChE,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;;AAE1D,qBAIa,6BAA8B,YAAW,MAAM;IAIjD,OAAO,EAAE,qBAAqB;IAC9B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,oBAAoB;IAN9B,OAAO,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;IAC3B,SAAS,EAAE,YAAY,CAAC,GAAG,CAAC,CAAC;gBAE3B,OAAO,EAAE,qBAAqB,EAC9B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,oBAAoB;IAMrC,QAAQ,IAAI,IAAI;IAIhB,QAAQ,CAAC,UAAU,EAAE,GAAG;yCAjBb,6BAA6B;2CAA7B,6BAA6B;CA2BzC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/resource/src/index/index.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,iBAAiB,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;;AAG1D,qBAGa,4BAA6B,YAAW,MAAM;IAMhD,OAAO,EAAE,qBAAqB;IAC9B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,oBAAoB;IAC5B,GAAG,EAAE,iBAAiB;IACtB,MAAM,EAAE,MAAM;IAVhB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,GAAG,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;gBAGjB,OAAO,EAAE,qBAAqB,EAC9B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,oBAAoB,EAC5B,GAAG,EAAE,iBAAiB,EACtB,MAAM,EAAE,MAAM;IAIvB,QAAQ;
|
|
1
|
+
{"version":3,"file":"index.component.d.ts","sourceRoot":"","sources":["../../../../projects/angular-formio/resource/src/index/index.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,iBAAiB,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AAC7E,OAAO,EAAE,MAAM,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,qBAAqB,CAAC;AAC5D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oBAAoB,CAAC;;AAG1D,qBAGa,4BAA6B,YAAW,MAAM;IAMhD,OAAO,EAAE,qBAAqB;IAC9B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,oBAAoB;IAC5B,GAAG,EAAE,iBAAiB;IACtB,MAAM,EAAE,MAAM;IAVhB,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,GAAG,CAAC;IACf,UAAU,EAAE,MAAM,CAAC;gBAGjB,OAAO,EAAE,qBAAqB,EAC9B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,oBAAoB,EAC5B,GAAG,EAAE,iBAAiB,EACtB,MAAM,EAAE,MAAM;IAIvB,QAAQ;IA4BR,QAAQ,CAAC,GAAG,EAAE,GAAG;IAMjB,YAAY;yCAjDD,4BAA4B;2CAA5B,4BAA4B;CAsDxC"}
|
|
@@ -1,21 +1,23 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { ActivatedRoute } from '@angular/router';
|
|
1
|
+
import { OnInit } from '@angular/core';
|
|
2
|
+
import { ActivatedRoute, Router } from '@angular/router';
|
|
3
3
|
import { FormioAuthService } from '@formio/angular/auth';
|
|
4
4
|
import { FormioResourceService } from './resource.service';
|
|
5
|
+
import { Subscription } from 'rxjs';
|
|
5
6
|
import * as i0 from "@angular/core";
|
|
6
|
-
export declare class FormioResourceComponent implements OnInit
|
|
7
|
+
export declare class FormioResourceComponent implements OnInit {
|
|
7
8
|
service: FormioResourceService;
|
|
8
9
|
route: ActivatedRoute;
|
|
9
10
|
auth: FormioAuthService;
|
|
10
|
-
|
|
11
|
+
router: Router;
|
|
11
12
|
perms: {
|
|
12
13
|
delete: boolean;
|
|
13
14
|
edit: boolean;
|
|
14
15
|
};
|
|
15
|
-
|
|
16
|
+
routerSubscription: Subscription;
|
|
17
|
+
constructor(service: FormioResourceService, route: ActivatedRoute, auth: FormioAuthService, router: Router);
|
|
16
18
|
ngOnInit(): void;
|
|
17
|
-
init(): void;
|
|
18
19
|
ngOnDestroy(): void;
|
|
20
|
+
init(): any;
|
|
19
21
|
static ɵfac: i0.ɵɵFactoryDeclaration<FormioResourceComponent, never>;
|
|
20
22
|
static ɵcmp: i0.ɵɵComponentDeclaration<FormioResourceComponent, "ng-component", never, {}, {}, never, never, false, never>;
|
|
21
23
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource.component.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/resource/src/resource.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,
|
|
1
|
+
{"version":3,"file":"resource.component.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/resource/src/resource.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,MAAM,eAAe,CAAC;AAClD,OAAO,EAAE,cAAc,EAAiB,MAAM,EAAe,MAAM,iBAAiB,CAAC;AACrF,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,qBAAqB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,OAAO,EAAE,YAAY,EAAE,MAAM,MAAM,CAAC;;AAEpC,qBAGa,uBAAwB,YAAW,MAAM;IAK3C,OAAO,EAAE,qBAAqB;IAC9B,KAAK,EAAE,cAAc;IACrB,IAAI,EAAE,iBAAiB;IACvB,MAAM,EAAE,MAAM;IAPhB,KAAK;;;MAAgC;IACrC,kBAAkB,EAAE,YAAY,CAAC;gBAG/B,OAAO,EAAE,qBAAqB,EAC9B,KAAK,EAAE,cAAc,EACrB,IAAI,EAAE,iBAAiB,EACvB,MAAM,EAAE,MAAM;IAGvB,QAAQ;IASR,WAAW;IAIX,IAAI;yCAxBO,uBAAuB;2CAAvB,uBAAuB;CAsCnC"}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import { EventEmitter } from '@angular/core';
|
|
2
2
|
import { ActivatedRoute } from '@angular/router';
|
|
3
3
|
import { FormioResourceConfig } from './resource.config';
|
|
4
4
|
import { FormioResources } from './resources.service';
|
|
@@ -12,7 +12,6 @@ export declare class FormioResourceService {
|
|
|
12
12
|
appConfig: FormioAppConfig;
|
|
13
13
|
config: FormioResourceConfig;
|
|
14
14
|
resourcesService: FormioResources;
|
|
15
|
-
appRef: ApplicationRef;
|
|
16
15
|
initialized: boolean;
|
|
17
16
|
form: any;
|
|
18
17
|
alerts: FormioAlerts;
|
|
@@ -22,28 +21,33 @@ export declare class FormioResourceService {
|
|
|
22
21
|
formFormio: FormioPromiseService;
|
|
23
22
|
formio: FormioPromiseService;
|
|
24
23
|
refresh: EventEmitter<FormioRefreshValue>;
|
|
25
|
-
|
|
24
|
+
resourceResolve: any;
|
|
25
|
+
resourceReject: any;
|
|
26
26
|
resourceLoaded?: Promise<any>;
|
|
27
|
+
resourceLoading?: Promise<any>;
|
|
27
28
|
resourceId?: string;
|
|
28
29
|
resources: any;
|
|
30
|
+
ready?: Promise<any>;
|
|
31
|
+
readyResolve: any;
|
|
32
|
+
readyReject: any;
|
|
29
33
|
formLoading?: Promise<any>;
|
|
30
34
|
formLoaded: Promise<any>;
|
|
31
35
|
formResolve: any;
|
|
32
36
|
formReject: any;
|
|
33
37
|
isLoading: boolean;
|
|
34
|
-
constructor(appConfig: FormioAppConfig, config: FormioResourceConfig, resourcesService: FormioResources
|
|
38
|
+
constructor(appConfig: FormioAppConfig, config: FormioResourceConfig, resourcesService: FormioResources);
|
|
35
39
|
initialize(): void;
|
|
36
|
-
|
|
40
|
+
setResource(resourceId: any): void;
|
|
41
|
+
init(route: ActivatedRoute): any;
|
|
37
42
|
onError(error: any): void;
|
|
38
43
|
onFormError(err: any): void;
|
|
39
|
-
setContext(route: ActivatedRoute): void;
|
|
40
44
|
loadForm(): Promise<any>;
|
|
41
45
|
loadParents(): any;
|
|
42
46
|
onSubmissionError(err: any): void;
|
|
43
|
-
loadResource(
|
|
47
|
+
loadResource(): Promise<any>;
|
|
44
48
|
save(resource: any): Promise<any>;
|
|
45
49
|
remove(): Promise<void>;
|
|
46
|
-
static ɵfac: i0.ɵɵFactoryDeclaration<FormioResourceService, [null, null, { optional: true; }
|
|
50
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<FormioResourceService, [null, null, { optional: true; }]>;
|
|
47
51
|
static ɵprov: i0.ɵɵInjectableDeclaration<FormioResourceService>;
|
|
48
52
|
}
|
|
49
53
|
//# sourceMappingURL=resource.service.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"resource.service.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/resource/src/resource.service.ts"],"names":[],"mappings":"AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"resource.service.d.ts","sourceRoot":"","sources":["../../../projects/angular-formio/resource/src/resource.service.ts"],"names":[],"mappings":"AAAA,OAAO,EAAkB,YAAY,EAAwB,MAAM,eAAe,CAAC;AACnF,OAAO,EAAE,cAAc,EAAE,MAAM,iBAAiB,CAAC;AACjD,OAAO,EAAE,oBAAoB,EAAE,MAAM,mBAAmB,CAAC;AACzD,OAAO,EAAE,eAAe,EAAE,MAAM,qBAAqB,CAAC;AACtD,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;AACvD,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,eAAe,EAAE,MAAM,iBAAiB,CAAC;AAClD,OAAO,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACrD,OAAO,OAAO,MAAM,qBAAqB,CAAC;;AAI1C,qBACa,qBAAqB;IA8BvB,SAAS,EAAE,eAAe;IAC1B,MAAM,EAAE,oBAAoB;IAChB,gBAAgB,EAAE,eAAe;IA/B/C,WAAW,UAAS;IACpB,IAAI,EAAE,GAAG,CAAC;IACV,MAAM,EAAE,YAAY,CAAC;IACrB,QAAQ,EAAE,GAAG,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE,MAAM,CAAC;IAChB,UAAU,EAAE,oBAAoB,CAAC;IACjC,MAAM,EAAE,oBAAoB,CAAC;IAC7B,OAAO,EAAE,YAAY,CAAC,kBAAkB,CAAC,CAAC;IAE1C,eAAe,EAAE,GAAG,CAAC;IACrB,cAAc,EAAE,GAAG,CAAC;IACpB,cAAc,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IAE9B,eAAe,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IAC/B,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,GAAG,CAAC;IAEf,KAAK,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACrB,YAAY,EAAE,GAAG,CAAC;IAClB,WAAW,EAAE,GAAG,CAAC;IAEjB,WAAW,CAAC,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IAC3B,UAAU,EAAE,OAAO,CAAC,GAAG,CAAC,CAAC;IACzB,WAAW,EAAE,GAAG,CAAC;IACjB,UAAU,EAAE,GAAG,CAAC;IAChB,SAAS,EAAE,OAAO,CAAC;gBAGjB,SAAS,EAAE,eAAe,EAC1B,MAAM,EAAE,oBAAoB,EAChB,gBAAgB,EAAE,eAAe;IAOtD,UAAU;IAIV,WAAW,CAAC,UAAU,EAAE,GAAG;IA+B3B,IAAI,CAAC,KAAK,EAAE,cAAc;IA2B1B,OAAO,CAAC,KAAK,EAAE,GAAG;IAWlB,WAAW,CAAC,GAAG,EAAE,GAAG;IAKpB,QAAQ;IAuBR,WAAW;IAmDX,iBAAiB,CAAC,GAAG,EAAE,GAAG;IAK1B,YAAY;IAwBZ,IAAI,CAAC,QAAQ,EAAE,GAAG;IAclB,MAAM;yCA1OK,qBAAqB;6CAArB,qBAAqB;CAqPjC"}
|