@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.
Files changed (72) hide show
  1. package/auth/auth.service.d.ts.map +1 -1
  2. package/auth/login/login.component.d.ts +1 -0
  3. package/auth/login/login.component.d.ts.map +1 -1
  4. package/auth/register/register.component.d.ts +1 -0
  5. package/auth/register/register.component.d.ts.map +1 -1
  6. package/esm2022/FormioBaseComponent.mjs +3 -3
  7. package/esm2022/auth/auth.component.mjs +3 -3
  8. package/esm2022/auth/auth.config.mjs +3 -3
  9. package/esm2022/auth/auth.module.mjs +4 -4
  10. package/esm2022/auth/auth.service.mjs +12 -6
  11. package/esm2022/auth/login/login.component.mjs +8 -5
  12. package/esm2022/auth/register/register.component.mjs +8 -5
  13. package/esm2022/auth/resetpass/resetpass.component.mjs +3 -3
  14. package/esm2022/components/alerts/formio.alerts.component.mjs +3 -3
  15. package/esm2022/components/alerts/parse-html-content.pipe.mjs +3 -3
  16. package/esm2022/components/formbuilder/formbuilder.component.mjs +3 -3
  17. package/esm2022/components/formio/formio.component.mjs +3 -3
  18. package/esm2022/components/loader/formio.loader.component.mjs +3 -3
  19. package/esm2022/custom-component/custom-tags.service.mjs +3 -3
  20. package/esm2022/formio.config.mjs +3 -3
  21. package/esm2022/formio.module.mjs +4 -4
  22. package/esm2022/grid/GridBodyComponent.mjs +3 -3
  23. package/esm2022/grid/GridFooterComponent.mjs +3 -3
  24. package/esm2022/grid/GridHeaderComponent.mjs +3 -3
  25. package/esm2022/grid/form/FormGridBody.component.mjs +52 -8
  26. package/esm2022/grid/form/FormGridFooter.component.mjs +5 -5
  27. package/esm2022/grid/form/FormGridHeader.component.mjs +5 -5
  28. package/esm2022/grid/form/time-since.pipe.mjs +3 -3
  29. package/esm2022/grid/grid.component.mjs +3 -3
  30. package/esm2022/grid/grid.module.mjs +4 -4
  31. package/esm2022/grid/grid.service.mjs +3 -3
  32. package/esm2022/grid/submission/SubmissionGridBody.component.mjs +3 -3
  33. package/esm2022/grid/submission/SubmissionGridFooter.component.mjs +5 -5
  34. package/esm2022/grid/submission/SubmissionGridHeader.component.mjs +5 -5
  35. package/esm2022/manager/create/create.component.mjs +5 -5
  36. package/esm2022/manager/delete/delete.component.mjs +3 -3
  37. package/esm2022/manager/edit/edit.component.mjs +5 -5
  38. package/esm2022/manager/form/form.component.mjs +5 -5
  39. package/esm2022/manager/form-manager.config.mjs +3 -3
  40. package/esm2022/manager/form-manager.module.mjs +4 -4
  41. package/esm2022/manager/form-manager.service.mjs +3 -3
  42. package/esm2022/manager/index/index.component.mjs +25 -18
  43. package/esm2022/manager/submission/delete/delete.component.mjs +3 -3
  44. package/esm2022/manager/submission/edit/edit.component.mjs +3 -3
  45. package/esm2022/manager/submission/index/index.component.mjs +3 -3
  46. package/esm2022/manager/submission/submission/submission.component.mjs +5 -5
  47. package/esm2022/manager/submission/view/view.component.mjs +3 -3
  48. package/esm2022/manager/view/view.component.mjs +3 -3
  49. package/esm2022/resource/create/create.component.mjs +5 -5
  50. package/esm2022/resource/delete/delete.component.mjs +3 -3
  51. package/esm2022/resource/edit/edit.component.mjs +3 -3
  52. package/esm2022/resource/index/index.component.mjs +3 -3
  53. package/esm2022/resource/resource.component.mjs +5 -5
  54. package/esm2022/resource/resource.config.mjs +3 -3
  55. package/esm2022/resource/resource.module.mjs +4 -4
  56. package/esm2022/resource/resource.service.mjs +3 -3
  57. package/esm2022/resource/resources.service.mjs +3 -3
  58. package/esm2022/resource/view/view.component.mjs +3 -3
  59. package/fesm2022/formio-angular-auth.mjs +38 -26
  60. package/fesm2022/formio-angular-auth.mjs.map +1 -1
  61. package/fesm2022/formio-angular-grid.mjs +92 -48
  62. package/fesm2022/formio-angular-grid.mjs.map +1 -1
  63. package/fesm2022/formio-angular-manager.mjs +71 -63
  64. package/fesm2022/formio-angular-manager.mjs.map +1 -1
  65. package/fesm2022/formio-angular-resource.mjs +33 -33
  66. package/fesm2022/formio-angular-resource.mjs.map +1 -1
  67. package/fesm2022/formio-angular.mjs +28 -28
  68. package/grid/form/FormGridBody.component.d.ts +12 -2
  69. package/grid/form/FormGridBody.component.d.ts.map +1 -1
  70. package/manager/index/index.component.d.ts +6 -4
  71. package/manager/index/index.component.d.ts.map +1 -1
  72. 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
- load(formio: FormioPromiseService, query?: any): Promise<any[]>;
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":"AACA,OAAO,EAAE,iBAAiB,EAAE,MAAM,sBAAsB,CAAC;AACzD,OAAO,EAAE,oBAAoB,EAAE,MAAM,iBAAiB,CAAC;;AAEvD,qBAKa,qBAAsB,SAAQ,iBAAiB;IAC1D,IAAI,CAAC,MAAM,EAAE,oBAAoB,EAAE,KAAK,CAAC,EAAE,GAAG;yCADnC,qBAAqB;2CAArB,qBAAqB;CAKjC"}
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
- search: string;
15
+ onSearch: any;
15
16
  constructor(service: FormManagerService, route: ActivatedRoute, router: Router, config: FormManagerConfig);
16
17
  loadGrid(): void;
17
18
  ngOnInit(): void;
18
- onSearch(event?: KeyboardEvent): void;
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;AAC7D,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;IAK7C,OAAO,EAAE,kBAAkB;IAC3B,KAAK,EAAE,cAAc;IACrB,MAAM,EAAE,MAAM;IACd,MAAM,EAAE,iBAAiB;IAPe,QAAQ,EAAE,mBAAmB,CAAC;IACxE,SAAS,EAAE,GAAG,CAAC;IACf,MAAM,SAAM;gBAEV,OAAO,EAAE,kBAAkB,EAC3B,KAAK,EAAE,cAAc,EACrB,MAAM,EAAE,MAAM,EACd,MAAM,EAAE,iBAAiB;IAUlC,QAAQ;IASR,QAAQ;IAcR,QAAQ,CAAC,KAAK,CAAC,EAAE,aAAa;IAe9B,WAAW;IAcX,QAAQ,CAAC,MAAM,EAAE,GAAG;IAKpB,QAAQ,CAAC,GAAG,EAAE,GAAG;IAIjB,YAAY;yCA/ED,yBAAyB;2CAAzB,yBAAyB;CAkFrC"}
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,6 +1,6 @@
1
1
  {
2
2
  "name": "@formio/angular",
3
- "version": "6.0.0-rc.2",
3
+ "version": "6.0.0-rc.3",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "https://github.com/formio/angular-formio"