@formio/angular 6.0.0-rc.2 → 6.0.0-rc.3
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 +5 -5
- 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 +3 -3
- package/esm2022/resource/resource.component.mjs +5 -5
- package/esm2022/resource/resource.config.mjs +3 -3
- package/esm2022/resource/resource.module.mjs +4 -4
- package/esm2022/resource/resource.service.mjs +3 -3
- 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 +33 -33
- 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
|
@@ -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"}
|