@valtimo/plugin 5.4.0 → 5.5.0

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 (103) hide show
  1. package/esm2020/lib/components/plugin-configuration-container/plugin-configuration-container.component.mjs +8 -9
  2. package/esm2020/lib/constants/index.mjs +6 -2
  3. package/esm2020/lib/constants/injection-tokens.mjs +6 -2
  4. package/esm2020/lib/models/index.mjs +6 -2
  5. package/esm2020/lib/models/plugin.mjs +6 -2
  6. package/esm2020/lib/pipes/index.mjs +6 -2
  7. package/esm2020/lib/pipes/plugin-translate/index.mjs +6 -2
  8. package/esm2020/lib/pipes/plugin-translate/plugin-translate-pipe.module.mjs +6 -2
  9. package/esm2020/lib/pipes/plugin-translate/plugin-translate.pipe.mjs +6 -2
  10. package/esm2020/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.mjs +18 -0
  11. package/esm2020/lib/plugins/documenten-api/assets/index.mjs +17 -0
  12. package/esm2020/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.mjs +72 -0
  13. package/esm2020/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.mjs +96 -0
  14. package/esm2020/lib/plugins/documenten-api/documenten-api-plugin.module.mjs +36 -0
  15. package/esm2020/lib/plugins/documenten-api/documenten-api-plugin.specification.mjs +81 -0
  16. package/esm2020/lib/plugins/documenten-api/models/config.mjs +17 -0
  17. package/esm2020/lib/plugins/documenten-api/models/index.mjs +17 -0
  18. package/esm2020/lib/plugins/open-zaak/assets/index.mjs +6 -2
  19. package/esm2020/lib/plugins/open-zaak/assets/open-zaak-plugin-logo.mjs +6 -2
  20. package/esm2020/lib/plugins/open-zaak/components/create-zaak-configuration/create-zaak-configuration.component.mjs +11 -10
  21. package/esm2020/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.mjs +10 -10
  22. package/esm2020/lib/plugins/open-zaak/components/select-zaak-type/select-zaak-type.component.mjs +7 -3
  23. package/esm2020/lib/plugins/open-zaak/components/set-besluit-configuration/set-besluit-configuration.component.mjs +10 -10
  24. package/esm2020/lib/plugins/open-zaak/components/set-resultaat-configuration/set-resultaat-configuration.component.mjs +10 -10
  25. package/esm2020/lib/plugins/open-zaak/components/set-status-configuration/set-status-configuration.component.mjs +10 -10
  26. package/esm2020/lib/plugins/open-zaak/models/config.mjs +6 -2
  27. package/esm2020/lib/plugins/open-zaak/models/index.mjs +6 -2
  28. package/esm2020/lib/plugins/open-zaak/open-zaak-plugin.specification.mjs +6 -2
  29. package/esm2020/lib/plugins/smart-documents/assets/index.mjs +6 -2
  30. package/esm2020/lib/plugins/smart-documents/assets/smart-documents-plugin-logo.mjs +6 -2
  31. package/esm2020/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.mjs +38 -14
  32. package/esm2020/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.mjs +10 -10
  33. package/esm2020/lib/plugins/smart-documents/models/config.mjs +6 -2
  34. package/esm2020/lib/plugins/smart-documents/models/index.mjs +6 -2
  35. package/esm2020/lib/plugins/smart-documents/smart-documents-plugin.module.mjs +6 -3
  36. package/esm2020/lib/plugins/smart-documents/smart-documents-plugin.specification.mjs +15 -2
  37. package/esm2020/lib/services/index.mjs +6 -2
  38. package/esm2020/lib/services/plugin-translation.service.mjs +6 -2
  39. package/esm2020/public-api.mjs +11 -2
  40. package/fesm2015/valtimo-plugin.mjs +503 -101
  41. package/fesm2015/valtimo-plugin.mjs.map +1 -1
  42. package/fesm2020/valtimo-plugin.mjs +501 -102
  43. package/fesm2020/valtimo-plugin.mjs.map +1 -1
  44. package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts +3 -4
  45. package/lib/components/plugin-configuration-container/plugin-configuration-container.component.d.ts.map +1 -1
  46. package/lib/constants/index.d.ts.map +1 -1
  47. package/lib/constants/injection-tokens.d.ts.map +1 -1
  48. package/lib/models/index.d.ts.map +1 -1
  49. package/lib/models/plugin.d.ts +5 -5
  50. package/lib/models/plugin.d.ts.map +1 -1
  51. package/lib/pipes/index.d.ts.map +1 -1
  52. package/lib/pipes/plugin-translate/index.d.ts.map +1 -1
  53. package/lib/pipes/plugin-translate/plugin-translate-pipe.module.d.ts.map +1 -1
  54. package/lib/pipes/plugin-translate/plugin-translate.pipe.d.ts.map +1 -1
  55. package/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.d.ts +3 -0
  56. package/lib/plugins/documenten-api/assets/documenten-api-plugin-logo.d.ts.map +1 -0
  57. package/lib/plugins/documenten-api/assets/index.d.ts +2 -0
  58. package/lib/plugins/documenten-api/assets/index.d.ts.map +1 -0
  59. package/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.d.ts +23 -0
  60. package/lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component.d.ts.map +1 -0
  61. package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts +39 -0
  62. package/lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component.d.ts.map +1 -0
  63. package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts +12 -0
  64. package/lib/plugins/documenten-api/documenten-api-plugin.module.d.ts.map +1 -0
  65. package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts +4 -0
  66. package/lib/plugins/documenten-api/documenten-api-plugin.specification.d.ts.map +1 -0
  67. package/lib/plugins/documenten-api/models/config.d.ts +15 -0
  68. package/lib/plugins/documenten-api/models/config.d.ts.map +1 -0
  69. package/lib/plugins/documenten-api/models/index.d.ts +2 -0
  70. package/lib/plugins/documenten-api/models/index.d.ts.map +1 -0
  71. package/lib/plugins/open-zaak/assets/index.d.ts.map +1 -1
  72. package/lib/plugins/open-zaak/assets/open-zaak-plugin-logo.d.ts.map +1 -1
  73. package/lib/plugins/open-zaak/components/create-zaak-configuration/create-zaak-configuration.component.d.ts +2 -4
  74. package/lib/plugins/open-zaak/components/create-zaak-configuration/create-zaak-configuration.component.d.ts.map +1 -1
  75. package/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.d.ts +2 -4
  76. package/lib/plugins/open-zaak/components/open-zaak-configuration/open-zaak-configuration.component.d.ts.map +1 -1
  77. package/lib/plugins/open-zaak/components/select-zaak-type/select-zaak-type.component.d.ts.map +1 -1
  78. package/lib/plugins/open-zaak/components/set-besluit-configuration/set-besluit-configuration.component.d.ts +2 -4
  79. package/lib/plugins/open-zaak/components/set-besluit-configuration/set-besluit-configuration.component.d.ts.map +1 -1
  80. package/lib/plugins/open-zaak/components/set-resultaat-configuration/set-resultaat-configuration.component.d.ts +2 -4
  81. package/lib/plugins/open-zaak/components/set-resultaat-configuration/set-resultaat-configuration.component.d.ts.map +1 -1
  82. package/lib/plugins/open-zaak/components/set-status-configuration/set-status-configuration.component.d.ts +2 -4
  83. package/lib/plugins/open-zaak/components/set-status-configuration/set-status-configuration.component.d.ts.map +1 -1
  84. package/lib/plugins/open-zaak/models/config.d.ts.map +1 -1
  85. package/lib/plugins/open-zaak/models/index.d.ts.map +1 -1
  86. package/lib/plugins/open-zaak/open-zaak-plugin.specification.d.ts.map +1 -1
  87. package/lib/plugins/smart-documents/assets/index.d.ts.map +1 -1
  88. package/lib/plugins/smart-documents/assets/smart-documents-plugin-logo.d.ts.map +1 -1
  89. package/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.d.ts +11 -6
  90. package/lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component.d.ts.map +1 -1
  91. package/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.d.ts +2 -4
  92. package/lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component.d.ts.map +1 -1
  93. package/lib/plugins/smart-documents/models/config.d.ts +1 -0
  94. package/lib/plugins/smart-documents/models/config.d.ts.map +1 -1
  95. package/lib/plugins/smart-documents/models/index.d.ts.map +1 -1
  96. package/lib/plugins/smart-documents/smart-documents-plugin.module.d.ts +1 -1
  97. package/lib/plugins/smart-documents/smart-documents-plugin.module.d.ts.map +1 -1
  98. package/lib/plugins/smart-documents/smart-documents-plugin.specification.d.ts.map +1 -1
  99. package/lib/services/index.d.ts.map +1 -1
  100. package/lib/services/plugin-translation.service.d.ts.map +1 -1
  101. package/package.json +1 -1
  102. package/public-api.d.ts +4 -0
  103. package/public-api.d.ts.map +1 -1
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/models/index.ts"],"names":[],"mappings":"AAYA,cAAc,UAAU,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/models/index.ts"],"names":[],"mappings":"AAgBA,cAAc,UAAU,CAAC"}
@@ -6,7 +6,7 @@ import * as i4 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
6
6
  import * as i5 from "@valtimo/user-interface";
7
7
  export declare class SmartDocumentsPluginModule {
8
8
  static ɵfac: i0.ɵɵFactoryDeclaration<SmartDocumentsPluginModule, never>;
9
- static ɵmod: i0.ɵɵNgModuleDeclaration<SmartDocumentsPluginModule, [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent], [typeof i3.CommonModule, typeof i4.PluginTranslatePipeModule, typeof i5.FormModule, typeof i5.InputModule, typeof i5.SelectModule, typeof i5.MultiInputModule], [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent]>;
9
+ static ɵmod: i0.ɵɵNgModuleDeclaration<SmartDocumentsPluginModule, [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent], [typeof i3.CommonModule, typeof i4.PluginTranslatePipeModule, typeof i5.FormModule, typeof i5.InputModule, typeof i5.SelectModule, typeof i5.MultiInputModule, typeof i5.ParagraphModule], [typeof i1.SmartDocumentsConfigurationComponent, typeof i2.GenerateDocumentConfigurationComponent]>;
10
10
  static ɵinj: i0.ɵɵInjectorDeclaration<SmartDocumentsPluginModule>;
11
11
  }
12
12
  //# sourceMappingURL=smart-documents-plugin.module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"smart-documents-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.module.ts"],"names":[],"mappings":";;;;;;AAuBA,qBAYa,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAG"}
1
+ {"version":3,"file":"smart-documents-plugin.module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.module.ts"],"names":[],"mappings":";;;;;;AA6BA,qBAaa,0BAA0B;yCAA1B,0BAA0B;0CAA1B,0BAA0B;0CAA1B,0BAA0B;CAAG"}
@@ -1 +1 @@
1
- {"version":3,"file":"smart-documents-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.specification.ts"],"names":[],"mappings":"AAYA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAKjD,QAAA,MAAM,iCAAiC,EAAE,mBAgDxC,CAAC;AAEF,OAAO,EAAC,iCAAiC,EAAC,CAAC"}
1
+ {"version":3,"file":"smart-documents-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/smart-documents/smart-documents-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAKjD,QAAA,MAAM,iCAAiC,EAAE,mBA+DxC,CAAC;AAEF,OAAO,EAAC,iCAAiC,EAAC,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/services/index.ts"],"names":[],"mappings":"AAYA,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/services/index.ts"],"names":[],"mappings":"AAgBA,cAAc,kBAAkB,CAAC;AACjC,cAAc,8BAA8B,CAAC"}
@@ -1 +1 @@
1
- {"version":3,"file":"plugin-translation.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/services/plugin-translation.service.ts"],"names":[],"mappings":"AAaA,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAE/C,OAAO,EAAgB,UAAU,EAAC,MAAM,MAAM,CAAC;;AAG/C,qBAGa,wBAAwB;IAEjC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;gBADb,gBAAgB,EAAE,gBAAgB,EAClC,aAAa,EAAE,aAAa;IAG/C,SAAS,CAAC,YAAY,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;IAWhF,OAAO,CAAC,YAAY,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;IAQlE,OAAO,CAAC,cAAc;yCAzBX,wBAAwB;6CAAxB,wBAAwB;CAqCpC"}
1
+ {"version":3,"file":"plugin-translation.service.d.ts","sourceRoot":"","sources":["../../../../../projects/valtimo/plugin/src/lib/services/plugin-translation.service.ts"],"names":[],"mappings":"AAiBA,OAAO,EAAC,gBAAgB,EAAC,MAAM,qBAAqB,CAAC;AACrD,OAAO,EAAC,aAAa,EAAC,MAAM,kBAAkB,CAAC;AAE/C,OAAO,EAAgB,UAAU,EAAC,MAAM,MAAM,CAAC;;AAG/C,qBAGa,wBAAwB;IAEjC,OAAO,CAAC,QAAQ,CAAC,gBAAgB;IACjC,OAAO,CAAC,QAAQ,CAAC,aAAa;gBADb,gBAAgB,EAAE,gBAAgB,EAClC,aAAa,EAAE,aAAa;IAG/C,SAAS,CAAC,YAAY,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,UAAU,CAAC,MAAM,CAAC;IAWhF,OAAO,CAAC,YAAY,EAAE,MAAM,EAAE,mBAAmB,EAAE,MAAM,GAAG,MAAM;IAQlE,OAAO,CAAC,cAAc;yCAzBX,wBAAwB;6CAAxB,wBAAwB;CAqCpC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valtimo/plugin",
3
3
  "license": "EUPL-1.2",
4
- "version": "5.4.0",
4
+ "version": "5.5.0",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^13.2.3",
7
7
  "@angular/core": "^13.2.3",
package/public-api.d.ts CHANGED
@@ -16,4 +16,8 @@ export * from './lib/plugins/smart-documents/smart-documents-plugin.module';
16
16
  export * from './lib/plugins/smart-documents/smart-documents-plugin.specification';
17
17
  export * from './lib/plugins/smart-documents/components/smart-documents-configuration/smart-documents-configuration.component';
18
18
  export * from './lib/plugins/smart-documents/components/generate-document-configuration/generate-document-configuration.component';
19
+ export * from './lib/plugins/documenten-api/documenten-api-plugin.module';
20
+ export * from './lib/plugins/documenten-api/documenten-api-plugin.specification';
21
+ export * from './lib/plugins/documenten-api/components/store-temp-document/store-temp-document-configuration.component';
22
+ export * from './lib/plugins/documenten-api/components/documenten-api-configuration/documenten-api-configuration.component';
19
23
  //# sourceMappingURL=public-api.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/plugin/src/public-api.ts"],"names":[],"mappings":"AAgBA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,0FAA0F,CAAC;AACzG,cAAc,uFAAuF,CAAC;AAEtG,cAAc,iDAAiD,CAAC;AAChE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wDAAwD,CAAC;AACvE,cAAc,kGAAkG,CAAC;AACjH,cAAc,kGAAkG,CAAC;AACjH,cAAc,sGAAsG,CAAC;AACrH,cAAc,gGAAgG,CAAC;AAC/G,cAAc,gFAAgF,CAAC;AAE/F,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAC/H,cAAc,oHAAoH,CAAC"}
1
+ {"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../../../projects/valtimo/plugin/src/public-api.ts"],"names":[],"mappings":"AAoBA,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,iBAAiB,CAAC;AAEhC,cAAc,0FAA0F,CAAC;AACzG,cAAc,uFAAuF,CAAC;AAEtG,cAAc,iDAAiD,CAAC;AAChE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wDAAwD,CAAC;AACvE,cAAc,kGAAkG,CAAC;AACjH,cAAc,kGAAkG,CAAC;AACjH,cAAc,sGAAsG,CAAC;AACrH,cAAc,gGAAgG,CAAC;AAC/G,cAAc,gFAAgF,CAAC;AAE/F,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAC/H,cAAc,oHAAoH,CAAC;AAEnI,cAAc,2DAA2D,CAAC;AAC1E,cAAc,kEAAkE,CAAC;AACjF,cAAc,yGAAyG,CAAC;AACxH,cAAc,6GAA6G,CAAC"}