@valtimo/plugin 12.8.0 → 12.10.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.
@@ -3,12 +3,13 @@ import * as i1 from "./components/catalogi-api-configuration/catalogi-api-config
3
3
  import * as i2 from "./components/get-besluittype/get-besluittype-configuration.component";
4
4
  import * as i3 from "./components/get-resultaattype/get-resultaattype-configuration.component";
5
5
  import * as i4 from "./components/get-statustype/get-statustype-configuration.component";
6
- import * as i5 from "@angular/common";
7
- import * as i6 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
8
- import * as i7 from "@valtimo/components";
6
+ import * as i5 from "./components/get-eigenschap/get-eigenschap-configuration.component";
7
+ import * as i6 from "@angular/common";
8
+ import * as i7 from "../../pipes/plugin-translate/plugin-translate-pipe.module";
9
+ import * as i8 from "@valtimo/components";
9
10
  export declare class CatalogiApiPluginModule {
10
11
  static ɵfac: i0.ɵɵFactoryDeclaration<CatalogiApiPluginModule, never>;
11
- static ɵmod: i0.ɵɵNgModuleDeclaration<CatalogiApiPluginModule, [typeof i1.CatalogiApiConfigurationComponent, typeof i2.GetBesluittypeConfigurationComponent, typeof i3.GetResultaattypeConfigurationComponent, typeof i4.GetStatustypeConfigurationComponent], [typeof i5.CommonModule, typeof i6.PluginTranslatePipeModule, typeof i7.FormModule, typeof i7.InputModule, typeof i7.SelectModule, typeof i7.ParagraphModule], [typeof i1.CatalogiApiConfigurationComponent, typeof i2.GetBesluittypeConfigurationComponent, typeof i3.GetResultaattypeConfigurationComponent, typeof i4.GetStatustypeConfigurationComponent]>;
12
+ static ɵmod: i0.ɵɵNgModuleDeclaration<CatalogiApiPluginModule, [typeof i1.CatalogiApiConfigurationComponent, typeof i2.GetBesluittypeConfigurationComponent, typeof i3.GetResultaattypeConfigurationComponent, typeof i4.GetStatustypeConfigurationComponent, typeof i5.GetEigenschapConfigurationComponent], [typeof i6.CommonModule, typeof i7.PluginTranslatePipeModule, typeof i8.FormModule, typeof i8.InputModule, typeof i8.SelectModule, typeof i8.ParagraphModule], [typeof i1.CatalogiApiConfigurationComponent, typeof i2.GetBesluittypeConfigurationComponent, typeof i3.GetResultaattypeConfigurationComponent, typeof i4.GetStatustypeConfigurationComponent, typeof i5.GetEigenschapConfigurationComponent]>;
12
13
  static ɵinj: i0.ɵɵInjectorDeclaration<CatalogiApiPluginModule>;
13
14
  }
14
15
  //# sourceMappingURL=catalogi-api-plugin-module.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"catalogi-api-plugin-module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/catalogi-api-plugin-module.ts"],"names":[],"mappings":";;;;;;;;AAyBA,qBAsBa,uBAAuB;yCAAvB,uBAAuB;0CAAvB,uBAAuB;0CAAvB,uBAAuB;CAAG"}
1
+ {"version":3,"file":"catalogi-api-plugin-module.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/catalogi-api-plugin-module.ts"],"names":[],"mappings":";;;;;;;;;AA0BA,qBAwBa,uBAAuB;yCAAvB,uBAAuB;0CAAvB,uBAAuB;0CAAvB,uBAAuB;CAAG"}
@@ -1 +1 @@
1
- {"version":3,"file":"catalogi-api-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/catalogi-api-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAOjD,QAAA,MAAM,8BAA8B,EAAE,mBA6GrC,CAAC;AAEF,OAAO,EAAC,8BAA8B,EAAC,CAAC"}
1
+ {"version":3,"file":"catalogi-api-plugin.specification.d.ts","sourceRoot":"","sources":["../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/catalogi-api-plugin.specification.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AAQjD,QAAA,MAAM,8BAA8B,EAAE,mBAkIrC,CAAC;AAEF,OAAO,EAAC,8BAA8B,EAAC,CAAC"}
@@ -0,0 +1,39 @@
1
+ /*!
2
+ * Copyright 2015-2024 Ritense BV, the Netherlands.
3
+ *
4
+ * Licensed under EUPL, Version 1.2 (the "License");
5
+ * you may not use this file except in compliance with the License.
6
+ * You may obtain a copy of the License at
7
+ *
8
+ * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
9
+ *
10
+ * Unless required by applicable law or agreed to in writing, software
11
+ * distributed under the License is distributed on an "AS IS" basis,
12
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ * See the License for the specific language governing permissions and
14
+ * limitations under the License.
15
+ */
16
+ import { EventEmitter, OnDestroy, OnInit } from '@angular/core';
17
+ import { Observable } from 'rxjs';
18
+ import { GetEigenschapConfig } from '../../models';
19
+ import { FunctionConfigurationComponent } from '../../../../models';
20
+ import * as i0 from "@angular/core";
21
+ export declare class GetEigenschapConfigurationComponent implements FunctionConfigurationComponent, OnInit, OnDestroy {
22
+ save$: Observable<void>;
23
+ disabled$: Observable<boolean>;
24
+ pluginId: string;
25
+ prefillConfiguration$: Observable<GetEigenschapConfig>;
26
+ valid: EventEmitter<boolean>;
27
+ configuration: EventEmitter<GetEigenschapConfig>;
28
+ private _saveSubscription;
29
+ private readonly formValue$;
30
+ private readonly valid$;
31
+ ngOnInit(): void;
32
+ ngOnDestroy(): void;
33
+ formValueChange(formValue: GetEigenschapConfig): void;
34
+ private handleValid;
35
+ private openSaveSubscription;
36
+ static ɵfac: i0.ɵɵFactoryDeclaration<GetEigenschapConfigurationComponent, never>;
37
+ static ɵcmp: i0.ɵɵComponentDeclaration<GetEigenschapConfigurationComponent, "valtimo-get-eigenschap-configuration", never, { "save$": { "alias": "save$"; "required": false; }; "disabled$": { "alias": "disabled$"; "required": false; }; "pluginId": { "alias": "pluginId"; "required": false; }; "prefillConfiguration$": { "alias": "prefillConfiguration$"; "required": false; }; }, { "valid": "valid"; "configuration": "configuration"; }, never, never, false, never>;
38
+ }
39
+ //# sourceMappingURL=get-eigenschap-configuration.component.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"get-eigenschap-configuration.component.d.ts","sourceRoot":"","sources":["../../../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/components/get-eigenschap/get-eigenschap-configuration.component.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;GAcG;AAEH,OAAO,EAAY,YAAY,EAAS,SAAS,EAAE,MAAM,EAAS,MAAM,eAAe,CAAC;AACxF,OAAO,EAAiC,UAAU,EAAqB,MAAM,MAAM,CAAC;AACpF,OAAO,EAAC,mBAAmB,EAAC,MAAM,cAAc,CAAC;AACjD,OAAO,EAAC,8BAA8B,EAAC,MAAM,oBAAoB,CAAC;;AAElE,qBAKa,mCACX,YAAW,8BAA8B,EAAE,MAAM,EAAE,SAAS;IAE5C,KAAK,EAAE,UAAU,CAAC,IAAI,CAAC,CAAC;IACxB,SAAS,EAAE,UAAU,CAAC,OAAO,CAAC,CAAC;IAC/B,QAAQ,EAAE,MAAM,CAAC;IACjB,qBAAqB,EAAE,UAAU,CAAC,mBAAmB,CAAC,CAAC;IACtD,KAAK,EAAE,YAAY,CAAC,OAAO,CAAC,CAA+B;IAC3D,aAAa,EAAE,YAAY,CAAC,mBAAmB,CAAC,CACvB;IAE1C,OAAO,CAAC,iBAAiB,CAAgB;IAEzC,OAAO,CAAC,QAAQ,CAAC,UAAU,CAAyD;IACpF,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAuC;IAEvD,QAAQ,IAAI,IAAI;IAIhB,WAAW;IAIX,eAAe,CAAC,SAAS,EAAE,mBAAmB,GAAG,IAAI;IAK5D,OAAO,CAAC,WAAW;IAOnB,OAAO,CAAC,oBAAoB;yCApCjB,mCAAmC;2CAAnC,mCAAmC;CA+C/C"}
@@ -15,5 +15,9 @@ interface GetStatustypeConfig {
15
15
  statustype: string;
16
16
  processVariable: string;
17
17
  }
18
- export { CatalogiApiConfig, GetBesluittypeConfig, GetResultaattypeConfig, GetStatustypeConfig };
18
+ interface GetEigenschapConfig {
19
+ eigenschap: string;
20
+ processVariable: string;
21
+ }
22
+ export { CatalogiApiConfig, GetBesluittypeConfig, GetResultaattypeConfig, GetStatustypeConfig, GetEigenschapConfig };
19
23
  //# sourceMappingURL=config.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/models/config.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;AAExD,UAAU,iBAAkB,SAAQ,uBAAuB;IACzD,GAAG,EAAE,MAAM,CAAC;IACZ,iCAAiC,EAAE,MAAM,CAAC;CAC3C;AAED,UAAU,oBAAoB;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,sBAAsB;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,mBAAmB;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,OAAO,EAAC,iBAAiB,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,mBAAmB,EAAC,CAAC"}
1
+ {"version":3,"file":"config.d.ts","sourceRoot":"","sources":["../../../../../../../projects/valtimo/plugin/src/lib/plugins/catalogi-api/models/config.ts"],"names":[],"mappings":"AAgBA,OAAO,EAAC,uBAAuB,EAAC,MAAM,iBAAiB,CAAC;AAExD,UAAU,iBAAkB,SAAQ,uBAAuB;IACzD,GAAG,EAAE,MAAM,CAAC;IACZ,iCAAiC,EAAE,MAAM,CAAC;CAC3C;AAED,UAAU,oBAAoB;IAC5B,WAAW,EAAE,MAAM,CAAC;IACpB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,sBAAsB;IAC9B,aAAa,EAAE,MAAM,CAAC;IACtB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,mBAAmB;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,UAAU,mBAAmB;IAC3B,UAAU,EAAE,MAAM,CAAC;IACnB,eAAe,EAAE,MAAM,CAAC;CACzB;AAED,OAAO,EAAC,iBAAiB,EAAE,oBAAoB,EAAE,sBAAsB,EAAE,mBAAmB,EAAE,mBAAmB,EAAC,CAAC"}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@valtimo/plugin",
3
3
  "license": "EUPL-1.2",
4
- "version": "12.8.0",
4
+ "version": "12.10.0",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^17.2.2",
7
7
  "@angular/core": "^17.2.2"
package/public-api.d.ts CHANGED
@@ -52,6 +52,7 @@ export * from './lib/plugins/catalogi-api/components/catalogi-api-configuration/
52
52
  export * from './lib/plugins/catalogi-api/components/get-besluittype/get-besluittype-configuration.component';
53
53
  export * from './lib/plugins/catalogi-api/components/get-resultaattype/get-resultaattype-configuration.component';
54
54
  export * from './lib/plugins/catalogi-api/components/get-statustype/get-statustype-configuration.component';
55
+ export * from './lib/plugins/catalogi-api/components/get-eigenschap/get-eigenschap-configuration.component';
55
56
  export * from './lib/plugins/notificaties-api/notificaties-api-plugin.module';
56
57
  export * from './lib/plugins/notificaties-api/notificaties-api-plugin.specification';
57
58
  export * from './lib/plugins/notificaties-api/components/notificaties-api-configuration/notificaties-api-configuration.component';
@@ -1 +1 @@
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;AAEvE,cAAc,qFAAqF,CAAC;AACpG,cAAc,4FAA4F,CAAC;AAC3G,cAAc,kJAAkJ,CAAC;AAEjK,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAC/H,cAAc,oHAAoH,CAAC;AACnI,cAAc,0FAA0F,CAAC;AAEzG,cAAc,2DAA2D,CAAC;AAC1E,cAAc,kEAAkE,CAAC;AACjF,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yGAAyG,CAAC;AACxH,cAAc,6GAA6G,CAAC;AAC5H,cAAc,iHAAiH,CAAC;AAChI,cAAc,qGAAqG,CAAC;AACpH,cAAc,mIAAmI,CAAC;AAElJ,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAE/H,cAAc,iDAAiD,CAAC;AAChE,cAAc,wDAAwD,CAAC;AACvE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wGAAwG,CAAC;AACvH,cAAc,4FAA4F,CAAC;AAC3G,cAAc,wGAAwG,CAAC;AACvH,cAAc,0HAA0H,CAAC;AACzI,cAAc,oHAAoH,CAAC;AACnI,cAAc,8HAA8H,CAAC;AAC7I,cAAc,oFAAoF,CAAC;AACnG,cAAc,sFAAsF,CAAC;AACrG,cAAc,sGAAsG,CAAC;AACrH,cAAc,oFAAoF,CAAC;AACnG,cAAc,0FAA0F,CAAC;AACzG,cAAc,0FAA0F,CAAC;AACzG,cAAc,0FAA0F,CAAC;AAEzG,cAAc,uDAAuD,CAAC;AACtE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uGAAuG,CAAC;AACtH,cAAc,6EAA6E,CAAC;AAE5F,cAAc,uDAAuD,CAAC;AACtE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uGAAuG,CAAC;AACtH,cAAc,+FAA+F,CAAC;AAC9G,cAAc,mGAAmG,CAAC;AAClH,cAAc,6FAA6F,CAAC;AAE5G,cAAc,+DAA+D,CAAC;AAC9E,cAAc,sEAAsE,CAAC;AACrF,cAAc,mHAAmH,CAAC;AAElI,cAAc,+EAA+E,CAAC;AAC9F,cAAc,sFAAsF,CAAC;AACrG,cAAc,oIAAoI,CAAC;AAEnJ,cAAc,qDAAqD,CAAC;AACpE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oGAAoG,CAAC;AACnH,cAAc,sFAAsF,CAAC;AACrG,cAAc,0FAA0F,CAAC;AAEzG,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AACnE,cAAc,wFAAwF,CAAC;AAEvG,cAAc,yDAAyD,CAAC;AACxE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,0GAA0G,CAAC;AACzH,cAAc,wGAAwG,CAAC;AACvH,cAAc,kHAAkH,CAAC;AAEjI,cAAc,gDAAgD,CAAC;AAC/D,cAAc,yCAAyC,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;AAEvE,cAAc,qFAAqF,CAAC;AACpG,cAAc,4FAA4F,CAAC;AAC3G,cAAc,kJAAkJ,CAAC;AAEjK,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAC/H,cAAc,oHAAoH,CAAC;AACnI,cAAc,0FAA0F,CAAC;AAEzG,cAAc,2DAA2D,CAAC;AAC1E,cAAc,kEAAkE,CAAC;AACjF,cAAc,4CAA4C,CAAC;AAC3D,cAAc,yGAAyG,CAAC;AACxH,cAAc,6GAA6G,CAAC;AAC5H,cAAc,iHAAiH,CAAC;AAChI,cAAc,qGAAqG,CAAC;AACpH,cAAc,mIAAmI,CAAC;AAElJ,cAAc,6DAA6D,CAAC;AAC5E,cAAc,oEAAoE,CAAC;AACnF,cAAc,gHAAgH,CAAC;AAE/H,cAAc,iDAAiD,CAAC;AAChE,cAAc,wDAAwD,CAAC;AACvE,cAAc,8FAA8F,CAAC;AAC7G,cAAc,wGAAwG,CAAC;AACvH,cAAc,4FAA4F,CAAC;AAC3G,cAAc,wGAAwG,CAAC;AACvH,cAAc,0HAA0H,CAAC;AACzI,cAAc,oHAAoH,CAAC;AACnI,cAAc,8HAA8H,CAAC;AAC7I,cAAc,oFAAoF,CAAC;AACnG,cAAc,sFAAsF,CAAC;AACrG,cAAc,sGAAsG,CAAC;AACrH,cAAc,oFAAoF,CAAC;AACnG,cAAc,0FAA0F,CAAC;AACzG,cAAc,0FAA0F,CAAC;AACzG,cAAc,0FAA0F,CAAC;AAEzG,cAAc,uDAAuD,CAAC;AACtE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uGAAuG,CAAC;AACtH,cAAc,6EAA6E,CAAC;AAE5F,cAAc,uDAAuD,CAAC;AACtE,cAAc,8DAA8D,CAAC;AAC7E,cAAc,uGAAuG,CAAC;AACtH,cAAc,+FAA+F,CAAC;AAC9G,cAAc,mGAAmG,CAAC;AAClH,cAAc,6FAA6F,CAAC;AAC5G,cAAc,6FAA6F,CAAC;AAE5G,cAAc,+DAA+D,CAAC;AAC9E,cAAc,sEAAsE,CAAC;AACrF,cAAc,mHAAmH,CAAC;AAElI,cAAc,+EAA+E,CAAC;AAC9F,cAAc,sFAAsF,CAAC;AACrG,cAAc,oIAAoI,CAAC;AAEnJ,cAAc,qDAAqD,CAAC;AACpE,cAAc,4DAA4D,CAAC;AAC3E,cAAc,oGAAoG,CAAC;AACnH,cAAc,sFAAsF,CAAC;AACrG,cAAc,0FAA0F,CAAC;AAEzG,cAAc,6CAA6C,CAAC;AAC5D,cAAc,oDAAoD,CAAC;AACnE,cAAc,wFAAwF,CAAC;AAEvG,cAAc,yDAAyD,CAAC;AACxE,cAAc,gEAAgE,CAAC;AAC/E,cAAc,0GAA0G,CAAC;AACzH,cAAc,wGAAwG,CAAC;AACvH,cAAc,kHAAkH,CAAC;AAEjI,cAAc,gDAAgD,CAAC;AAC/D,cAAc,yCAAyC,CAAC"}