@valtimo/zgw 13.27.0 → 13.28.1
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/fesm2022/valtimo-zgw.mjs +251 -3
- package/fesm2022/valtimo-zgw.mjs.map +1 -1
- package/lib/components/case-management-zgw-general/case-management-zgw-general.component.d.ts.map +1 -1
- package/lib/modules/index.d.ts +1 -0
- package/lib/modules/index.d.ts.map +1 -1
- package/lib/modules/zaakdetails/services/document-objecten-api-sync.service.d.ts.map +1 -1
- package/lib/modules/zakenapi-sync/components/case-zaken-api-sync/case-zaken-api-sync.component.d.ts +57 -0
- package/lib/modules/zakenapi-sync/components/case-zaken-api-sync/case-zaken-api-sync.component.d.ts.map +1 -0
- package/lib/modules/zakenapi-sync/components/index.d.ts +2 -0
- package/lib/modules/zakenapi-sync/components/index.d.ts.map +1 -0
- package/lib/modules/zakenapi-sync/index.d.ts +4 -0
- package/lib/modules/zakenapi-sync/index.d.ts.map +1 -0
- package/lib/modules/zakenapi-sync/models/case-zaken-api-sync.model.d.ts +18 -0
- package/lib/modules/zakenapi-sync/models/case-zaken-api-sync.model.d.ts.map +1 -0
- package/lib/modules/zakenapi-sync/models/index.d.ts +2 -0
- package/lib/modules/zakenapi-sync/models/index.d.ts.map +1 -0
- package/lib/modules/zakenapi-sync/services/case-zaken-api-sync.service.d.ts +17 -0
- package/lib/modules/zakenapi-sync/services/case-zaken-api-sync.service.d.ts.map +1 -0
- package/lib/modules/zakenapi-sync/services/index.d.ts +2 -0
- package/lib/modules/zakenapi-sync/services/index.d.ts.map +1 -0
- package/package.json +1 -1
package/fesm2022/valtimo-zgw.mjs
CHANGED
|
@@ -4637,6 +4637,253 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
4637
4637
|
* limitations under the License.
|
|
4638
4638
|
*/
|
|
4639
4639
|
|
|
4640
|
+
/*
|
|
4641
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
4642
|
+
*
|
|
4643
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4644
|
+
* you may not use this file except in compliance with the License.
|
|
4645
|
+
* You may obtain a copy of the License at
|
|
4646
|
+
*
|
|
4647
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4648
|
+
*
|
|
4649
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4650
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4651
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4652
|
+
* See the License for the specific language governing permissions and
|
|
4653
|
+
* limitations under the License.
|
|
4654
|
+
*/
|
|
4655
|
+
class CaseZakenApiSyncService extends BaseApiService {
|
|
4656
|
+
constructor(httpClient, configService) {
|
|
4657
|
+
super(httpClient, configService);
|
|
4658
|
+
this.httpClient = httpClient;
|
|
4659
|
+
this.configService = configService;
|
|
4660
|
+
}
|
|
4661
|
+
getCaseZakenApiSync(caseDefinitionKey, caseDefinitionVersionTag) {
|
|
4662
|
+
return this.httpClient.get(this.getApiUrl(`/management/v1/case-definition/${caseDefinitionKey}/version/${caseDefinitionVersionTag}/zaken-api-sync`));
|
|
4663
|
+
}
|
|
4664
|
+
updateCaseZakenApiSync(caseDefinitionKey, caseDefinitionVersionTag, request) {
|
|
4665
|
+
return this.httpClient.put(this.getApiUrl(`/management/v1/case-definition/${caseDefinitionKey}/version/${caseDefinitionVersionTag}/zaken-api-sync`), request);
|
|
4666
|
+
}
|
|
4667
|
+
deleteCaseZakenApiSync(caseDefinitionKey, caseDefinitionVersionTag) {
|
|
4668
|
+
return this.httpClient.delete(this.getApiUrl(`/management/v1/case-definition/${caseDefinitionKey}/version/${caseDefinitionVersionTag}/zaken-api-sync`));
|
|
4669
|
+
}
|
|
4670
|
+
getAvailableRoltypes(caseDefinitionKey, caseDefinitionVersionTag) {
|
|
4671
|
+
return this.httpClient.get(this.getApiUrl(`/v1/case-definition/${caseDefinitionKey}/zaaktype/roltype`), { params: { caseDefinitionVersionTag } });
|
|
4672
|
+
}
|
|
4673
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseZakenApiSyncService, deps: [{ token: i1.HttpClient }, { token: i2.ConfigService }], target: i0.ɵɵFactoryTarget.Injectable }); }
|
|
4674
|
+
static { this.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseZakenApiSyncService, providedIn: 'root' }); }
|
|
4675
|
+
}
|
|
4676
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseZakenApiSyncService, decorators: [{
|
|
4677
|
+
type: Injectable,
|
|
4678
|
+
args: [{
|
|
4679
|
+
providedIn: 'root',
|
|
4680
|
+
}]
|
|
4681
|
+
}], ctorParameters: () => [{ type: i1.HttpClient }, { type: i2.ConfigService }] });
|
|
4682
|
+
|
|
4683
|
+
/*
|
|
4684
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
4685
|
+
*
|
|
4686
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4687
|
+
* you may not use this file except in compliance with the License.
|
|
4688
|
+
* You may obtain a copy of the License at
|
|
4689
|
+
*
|
|
4690
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4691
|
+
*
|
|
4692
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4693
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4694
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4695
|
+
* See the License for the specific language governing permissions and
|
|
4696
|
+
* limitations under the License.
|
|
4697
|
+
*/
|
|
4698
|
+
|
|
4699
|
+
/*
|
|
4700
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
4701
|
+
*
|
|
4702
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4703
|
+
* you may not use this file except in compliance with the License.
|
|
4704
|
+
* You may obtain a copy of the License at
|
|
4705
|
+
*
|
|
4706
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4707
|
+
*
|
|
4708
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4709
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4710
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4711
|
+
* See the License for the specific language governing permissions and
|
|
4712
|
+
* limitations under the License.
|
|
4713
|
+
*/
|
|
4714
|
+
class CaseZakenApiSyncComponent {
|
|
4715
|
+
constructor(route, configurationIssueService, draftVersionService, caseZakenApiSyncService, documentService, cdsThemeService, iconService) {
|
|
4716
|
+
this.route = route;
|
|
4717
|
+
this.configurationIssueService = configurationIssueService;
|
|
4718
|
+
this.draftVersionService = draftVersionService;
|
|
4719
|
+
this.caseZakenApiSyncService = caseZakenApiSyncService;
|
|
4720
|
+
this.documentService = documentService;
|
|
4721
|
+
this.cdsThemeService = cdsThemeService;
|
|
4722
|
+
this.iconService = iconService;
|
|
4723
|
+
this.loading$ = new BehaviorSubject(true);
|
|
4724
|
+
this._params$ = getCaseManagementRouteParams(this.route);
|
|
4725
|
+
this._documentDefinition$ = this._params$.pipe(switchMap(params => this.documentService.getDocumentDefinitionByVersion(params?.caseDefinitionKey ?? '', params?.caseDefinitionVersionTag ?? '')));
|
|
4726
|
+
this.caseZakenApiSync$ = new BehaviorSubject(null);
|
|
4727
|
+
this.modalShowing$ = new BehaviorSubject(false);
|
|
4728
|
+
this.currentTheme$ = this.cdsThemeService.currentTheme$;
|
|
4729
|
+
this.formGroup = new FormGroup({
|
|
4730
|
+
assigneeSyncEnabled: new FormControl(false),
|
|
4731
|
+
roltypeUrl: new FormControl('', Validators.required),
|
|
4732
|
+
noteSyncEnabled: new FormControl(false),
|
|
4733
|
+
noteSubject: new FormControl('Note created by Valtimo GZAC', Validators.required),
|
|
4734
|
+
});
|
|
4735
|
+
this._roltypeOptions$ = new BehaviorSubject([]);
|
|
4736
|
+
this._selectedRoltypeUrl$ = new BehaviorSubject('');
|
|
4737
|
+
this.roltypeListItems$ = combineLatest([
|
|
4738
|
+
this._roltypeOptions$,
|
|
4739
|
+
this._selectedRoltypeUrl$,
|
|
4740
|
+
]).pipe(map(([options, selectedUrl]) => options.map(option => ({
|
|
4741
|
+
content: option.name,
|
|
4742
|
+
url: option.url,
|
|
4743
|
+
selected: option.url === selectedUrl,
|
|
4744
|
+
}))));
|
|
4745
|
+
this.hasConfigurationIssue$ = this.configurationIssueService.hasIssue$('zaken-api-sync');
|
|
4746
|
+
this._isDraftVersion$ = this._params$.pipe(switchMap(params => this.draftVersionService.isDraftVersion(params?.caseDefinitionKey ?? '', params?.caseDefinitionVersionTag ?? '')));
|
|
4747
|
+
this.canEdit$ = combineLatest([
|
|
4748
|
+
this._isDraftVersion$,
|
|
4749
|
+
this.hasConfigurationIssue$,
|
|
4750
|
+
]).pipe(map(([isDraft, hasIssue]) => isDraft || hasIssue));
|
|
4751
|
+
this.iconService.registerAll([TrashCan16, Edit16, WarningFilled16]);
|
|
4752
|
+
}
|
|
4753
|
+
ngOnInit() {
|
|
4754
|
+
this.loadCaseZakenApiSync();
|
|
4755
|
+
this.loadRoltypeOptions();
|
|
4756
|
+
}
|
|
4757
|
+
loadCaseZakenApiSync() {
|
|
4758
|
+
this._documentDefinition$
|
|
4759
|
+
.pipe(filter$1(documentDefinition => !!documentDefinition?.id?.blueprintId), switchMap((documentDefinition) => this.caseZakenApiSyncService.getCaseZakenApiSync(documentDefinition.id.blueprintId.blueprintKey, documentDefinition.id.blueprintId.blueprintVersionTag)))
|
|
4760
|
+
.subscribe(caseZakenApiSync => {
|
|
4761
|
+
this.loading$.next(false);
|
|
4762
|
+
if (caseZakenApiSync) {
|
|
4763
|
+
this.formGroup.patchValue({
|
|
4764
|
+
assigneeSyncEnabled: caseZakenApiSync.assigneeSyncEnabled,
|
|
4765
|
+
roltypeUrl: caseZakenApiSync.roltypeUrl,
|
|
4766
|
+
noteSyncEnabled: caseZakenApiSync.noteSyncEnabled,
|
|
4767
|
+
noteSubject: caseZakenApiSync.noteSubject,
|
|
4768
|
+
});
|
|
4769
|
+
this._selectedRoltypeUrl$.next(caseZakenApiSync.roltypeUrl);
|
|
4770
|
+
}
|
|
4771
|
+
this.caseZakenApiSync$.next(caseZakenApiSync);
|
|
4772
|
+
});
|
|
4773
|
+
}
|
|
4774
|
+
loadRoltypeOptions() {
|
|
4775
|
+
this._documentDefinition$
|
|
4776
|
+
.pipe(filter$1(documentDefinition => !!documentDefinition?.id?.blueprintId), take$1(1), switchMap((documentDefinition) => this.caseZakenApiSyncService.getAvailableRoltypes(documentDefinition.id.blueprintId.blueprintKey, documentDefinition.id.blueprintId.blueprintVersionTag)))
|
|
4777
|
+
.subscribe(options => this._roltypeOptions$.next(options));
|
|
4778
|
+
}
|
|
4779
|
+
onRoltypeSelected(event) {
|
|
4780
|
+
const url = event.item?.url ?? '';
|
|
4781
|
+
this.formGroup.patchValue({ roltypeUrl: url });
|
|
4782
|
+
this._selectedRoltypeUrl$.next(url);
|
|
4783
|
+
}
|
|
4784
|
+
remove() {
|
|
4785
|
+
this._documentDefinition$
|
|
4786
|
+
.pipe(take$1(1), switchMap(documentDefinition => this.caseZakenApiSyncService.deleteCaseZakenApiSync(documentDefinition.id.blueprintId.blueprintKey, documentDefinition.id.blueprintId.blueprintVersionTag)), tap(() => {
|
|
4787
|
+
this.caseZakenApiSync$.next(null);
|
|
4788
|
+
}))
|
|
4789
|
+
.subscribe();
|
|
4790
|
+
}
|
|
4791
|
+
submit() {
|
|
4792
|
+
const formValues = this.formGroup.getRawValue();
|
|
4793
|
+
this._documentDefinition$
|
|
4794
|
+
.pipe(take$1(1), switchMap(documentDefinition => this.caseZakenApiSyncService.updateCaseZakenApiSync(documentDefinition.id.blueprintId.blueprintKey, documentDefinition.id.blueprintId.blueprintVersionTag, {
|
|
4795
|
+
assigneeSyncEnabled: !!formValues.assigneeSyncEnabled,
|
|
4796
|
+
roltypeUrl: formValues.roltypeUrl ?? '',
|
|
4797
|
+
noteSyncEnabled: !!formValues.noteSyncEnabled,
|
|
4798
|
+
noteSubject: formValues.noteSubject ?? '',
|
|
4799
|
+
})))
|
|
4800
|
+
.subscribe(() => {
|
|
4801
|
+
this.loadCaseZakenApiSync();
|
|
4802
|
+
this.hideModal();
|
|
4803
|
+
});
|
|
4804
|
+
}
|
|
4805
|
+
onModalClose() {
|
|
4806
|
+
this.hideModal();
|
|
4807
|
+
}
|
|
4808
|
+
showModal() {
|
|
4809
|
+
this.modalShowing$.next(true);
|
|
4810
|
+
}
|
|
4811
|
+
hideModal() {
|
|
4812
|
+
this.modalShowing$.next(false);
|
|
4813
|
+
}
|
|
4814
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseZakenApiSyncComponent, deps: [{ token: i1$2.ActivatedRoute }, { token: i2.ConfigurationIssueService }, { token: i2.DraftVersionService }, { token: CaseZakenApiSyncService }, { token: i4$1.DocumentService }, { token: i3.CdsThemeService }, { token: i6.IconService }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4815
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.20", type: CaseZakenApiSyncComponent, isStandalone: true, selector: "valtimo-case-zaken-api-sync", ngImport: i0, template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<cds-tile [class.tile--danger]=\"hasConfigurationIssue$ | async\">\n <h2 class=\"valtimo-zakenapi-sync__title\">{{ 'zakenApiSync.title' | translate }}</h2>\n\n @if (loading$ | async) {\n <valtimo-spinner></valtimo-spinner>\n } @else {\n @if (caseZakenApiSync$ | async; as caseZakenApiSync) {\n <section class=\"valtimo-zakenapi-sync__card-header\">\n @if (canEdit$ | async) {\n <div class=\"valtimo-zakenapi-sync__card-controls\">\n <button cdsButton=\"tertiary\" (click)=\"showModal()\">\n {{ 'interface.edit' | translate }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"edit\" size=\"16\"></svg>\n </button>\n\n <button cdsButton=\"danger\" (click)=\"remove()\">\n {{ 'interface.delete' | translate }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n </div>\n }\n </section>\n\n <section class=\"valtimo-zakenapi-sync__card-body\">\n <div>\n <strong>{{ 'zakenApiSync.assigneeSyncEnabled' | translate }}</strong>\n\n {{\n caseZakenApiSync.assigneeSyncEnabled\n ? ('zakenApiSync.yes' | translate)\n : ('zakenApiSync.no' | translate)\n }}\n </div>\n\n <div>\n <strong>{{ 'zakenApiSync.noteSyncEnabled' | translate }}</strong>\n\n {{\n caseZakenApiSync.noteSyncEnabled\n ? ('zakenApiSync.yes' | translate)\n : ('zakenApiSync.no' | translate)\n }}\n </div>\n </section>\n } @else if (canEdit$ | async) {\n <button cdsButton=\"primary\" (click)=\"showModal()\">\n {{ 'zakenApiSync.submitButton' | translate }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n }\n }\n\n @if (hasConfigurationIssue$ | async) {\n <div class=\"tile-error-message\">\n <svg cdsIcon=\"warning--filled\" size=\"16\" class=\"tile-error-message__icon\"></svg>\n <span class=\"tile-error-message__text\">{{\n 'zakenApiSync.configurationIssue' | translate\n }}</span>\n </div>\n }\n</cds-tile>\n\n<valtimo-render-in-body>\n <cds-modal\n valtimoCdsModal\n [open]=\"modalShowing$ | async\"\n [title]=\"'zakenApiSync.editModal.title' | translate\"\n showFooter=\"true\"\n (close)=\"onModalClose()\"\n >\n <cds-modal-header [showCloseButton]=\"true\" (closeSelect)=\"onModalClose()\">\n <h3 cdsModalHeaderHeading>\n {{ 'zakenApiSync.editModal.title' | translate }}\n </h3>\n </cds-modal-header>\n\n <section cdsModalContent [cdsLayer]=\"1\">\n <form [formGroup]=\"formGroup\">\n <cds-toggle\n formControlName=\"assigneeSyncEnabled\"\n [label]=\"'zakenApiSync.editModal.assigneeSyncEnabled' | translate\"\n [onText]=\"'interface.on' | translate\"\n [offText]=\"'interface.off' | translate\"\n ></cds-toggle>\n\n <cds-dropdown\n [label]=\"'zakenApiSync.editModal.roltypeUrl' | translate\"\n [placeholder]=\"'zakenApiSync.editModal.roltypeUrlPlaceholder' | translate\"\n [dropUp]=\"false\"\n (selected)=\"onRoltypeSelected($event)\"\n >\n <cds-dropdown-list [items]=\"roltypeListItems$ | async\"></cds-dropdown-list>\n </cds-dropdown>\n\n <cds-toggle\n formControlName=\"noteSyncEnabled\"\n [label]=\"'zakenApiSync.editModal.noteSyncEnabled' | translate\"\n [onText]=\"'interface.on' | translate\"\n [offText]=\"'interface.off' | translate\"\n ></cds-toggle>\n\n <cds-label>\n {{ 'zakenApiSync.editModal.noteSubject' | translate }}\n <input\n cdsText\n formControlName=\"noteSubject\"\n [placeholder]=\"'zakenApiSync.editModal.noteSubjectPlaceholder' | translate\"\n />\n </cds-label>\n </form>\n </section>\n\n <cds-modal-footer>\n <button cdsButton=\"secondary\" (click)=\"onModalClose()\" [disabled]=\"false\">\n {{ 'interface.cancel' | translate }}\n </button>\n\n <button\n cdsButton=\"primary\"\n [disabled]=\"!formGroup.valid\"\n (click)=\"submit()\"\n >\n {{ 'searchFieldsOverview.submit' | translate }}\n </button>\n </cds-modal-footer>\n </cds-modal>\n</valtimo-render-in-body>\n", styles: ["cds-tile{background:var(--cds-layer-02);width:100%}form{display:flex;flex-direction:column;gap:1rem}::ng-deep cds-tile.tile--danger.cds--tile{outline:2px solid var(--cds-support-error, #da1e28)}.tile-error-message{display:flex;align-items:center;gap:8px;margin:16px -16px -16px;padding:8px 16px;border-top:1px solid var(--cds-border-subtle);color:var(--cds-support-error, #da1e28);font-size:12px;line-height:16px}.tile-error-message__icon{flex-shrink:0;fill:var(--cds-support-error, #da1e28)}.valtimo-zakenapi-sync__title{font-size:16px;line-height:24px;font-weight:600;margin-bottom:16px}.valtimo-zakenapi-sync__card-header{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;padding-bottom:20px}.valtimo-zakenapi-sync__card-controls{display:flex;align-items:center;gap:16px}.valtimo-zakenapi-sync__card-body{display:flex;flex-direction:column;gap:16px}.valtimo-zakenapi-sync__card-body>div{display:grid;grid-template-columns:repeat(3,1fr);font-size:16px}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: ButtonModule }, { kind: "directive", type: i6.Button, selector: "[cdsButton], [ibmButton]", inputs: ["ibmButton", "cdsButton", "size", "skeleton", "iconOnly", "isExpressive"] }, { kind: "ngmodule", type: CommonModule }, { kind: "pipe", type: i4.AsyncPipe, name: "async" }, { kind: "ngmodule", type: DropdownModule }, { kind: "component", type: i6.Dropdown, selector: "cds-dropdown, ibm-dropdown", inputs: ["id", "label", "hideLabel", "helperText", "placeholder", "displayValue", "clearText", "size", "type", "theme", "disabled", "readonly", "skeleton", "inline", "disableArrowKeys", "invalid", "invalidText", "warn", "warnText", "appendInline", "scrollableContainer", "itemValueKey", "selectionFeedback", "menuButtonLabel", "selectedLabel", "dropUp", "fluid"], outputs: ["selected", "onClose", "close"] }, { kind: "component", type: i6.DropdownList, selector: "cds-dropdown-list, ibm-dropdown-list", inputs: ["ariaLabel", "items", "listTpl", "type", "showTitles"], outputs: ["select", "scroll", "blurIntent"] }, { kind: "ngmodule", type: FormModule }, { kind: "ngmodule", type: FormsModule }, { kind: "directive", type: i1$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i1$1.DefaultValueAccessor, selector: "input:not([type=checkbox])[formControlName],textarea[formControlName],input:not([type=checkbox])[formControl],textarea[formControl],input:not([type=checkbox])[ngModel],textarea[ngModel],[ngDefaultControl]" }, { kind: "directive", type: i1$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i1$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "ngmodule", type: IconModule }, { kind: "directive", type: i6.IconDirective, selector: "[cdsIcon], [ibmIcon]", inputs: ["ibmIcon", "cdsIcon", "size", "title", "ariaLabel", "ariaLabelledBy", "ariaHidden", "isFocusable"] }, { kind: "ngmodule", type: InputModule }, { kind: "component", type: i6.Label, selector: "cds-label, ibm-label", inputs: ["labelInputID", "disabled", "skeleton", "helperText", "invalidText", "invalid", "warn", "warnText", "ariaLabel"] }, { kind: "directive", type: i6.TextInput, selector: "[cdsText], [ibmText]", inputs: ["theme", "size", "invalid", "warn", "skeleton"] }, { kind: "ngmodule", type: LayerModule }, { kind: "directive", type: i6.LayerDirective, selector: "[cdsLayer], [ibmLayer]", inputs: ["ibmLayer", "cdsLayer"], exportAs: ["layer"] }, { kind: "ngmodule", type: ModalModule }, { kind: "component", type: i6.Modal, selector: "cds-modal, ibm-modal", inputs: ["size", "theme", "ariaLabel", "open", "trigger", "hasScrollingContent"], outputs: ["overlaySelected", "close"] }, { kind: "component", type: i6.ModalHeader, selector: "cds-modal-header, ibm-modal-header", inputs: ["theme", "closeLabel", "showCloseButton"], outputs: ["closeSelect"] }, { kind: "component", type: i6.ModalFooter, selector: "cds-modal-footer, ibm-modal-footer" }, { kind: "directive", type: i6.ModalContent, selector: "[cdsModalContent], [ibmModalContent]", inputs: ["hasForm"] }, { kind: "directive", type: i6.ModalHeaderHeading, selector: "[cdsModalHeaderHeading], [ibmModalHeaderHeading]" }, { kind: "ngmodule", type: ReactiveFormsModule }, { kind: "directive", type: i1$1.FormGroupDirective, selector: "[formGroup]", inputs: ["formGroup"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }, { kind: "directive", type: i1$1.FormControlName, selector: "[formControlName]", inputs: ["formControlName", "disabled", "ngModel"], outputs: ["ngModelChange"] }, { kind: "ngmodule", type: SpinnerModule }, { kind: "component", type: i3.SpinnerComponent, selector: "valtimo-spinner", inputs: ["useBootstrapSpinner", "name", "type", "size", "color", "bdColor", "fullScreen", "noMarginTop"] }, { kind: "ngmodule", type: TilesModule }, { kind: "component", type: i6.Tile, selector: "cds-tile, ibm-tile", inputs: ["theme"] }, { kind: "ngmodule", type: ToggleModule }, { kind: "component", type: i6.Toggle, selector: "cds-toggle, ibm-toggle", inputs: ["offText", "onText", "label", "size", "hideLabel", "ariaLabel", "skeleton"] }, { kind: "ngmodule", type: TranslateModule }, { kind: "pipe", type: i5.TranslatePipe, name: "translate" }, { kind: "directive", type: ValtimoCdsModalDirective, selector: "[valtimoCdsModal]", inputs: ["minContentHeight"] }, { kind: "component", type: RenderInBodyComponent, selector: "valtimo-render-in-body" }] }); }
|
|
4816
|
+
}
|
|
4817
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseZakenApiSyncComponent, decorators: [{
|
|
4818
|
+
type: Component,
|
|
4819
|
+
args: [{ selector: 'valtimo-case-zaken-api-sync', standalone: true, imports: [
|
|
4820
|
+
ButtonModule,
|
|
4821
|
+
CommonModule,
|
|
4822
|
+
DropdownModule,
|
|
4823
|
+
FormModule,
|
|
4824
|
+
FormsModule,
|
|
4825
|
+
IconModule,
|
|
4826
|
+
InputModule,
|
|
4827
|
+
LayerModule,
|
|
4828
|
+
ModalModule,
|
|
4829
|
+
ReactiveFormsModule,
|
|
4830
|
+
SpinnerModule,
|
|
4831
|
+
TilesModule,
|
|
4832
|
+
ToggleModule,
|
|
4833
|
+
TranslateModule,
|
|
4834
|
+
ValtimoCdsModalDirective,
|
|
4835
|
+
RenderInBodyComponent,
|
|
4836
|
+
], template: "<!--\n ~ Copyright 2015-2026 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<cds-tile [class.tile--danger]=\"hasConfigurationIssue$ | async\">\n <h2 class=\"valtimo-zakenapi-sync__title\">{{ 'zakenApiSync.title' | translate }}</h2>\n\n @if (loading$ | async) {\n <valtimo-spinner></valtimo-spinner>\n } @else {\n @if (caseZakenApiSync$ | async; as caseZakenApiSync) {\n <section class=\"valtimo-zakenapi-sync__card-header\">\n @if (canEdit$ | async) {\n <div class=\"valtimo-zakenapi-sync__card-controls\">\n <button cdsButton=\"tertiary\" (click)=\"showModal()\">\n {{ 'interface.edit' | translate }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"edit\" size=\"16\"></svg>\n </button>\n\n <button cdsButton=\"danger\" (click)=\"remove()\">\n {{ 'interface.delete' | translate }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"trash-can\" size=\"16\"></svg>\n </button>\n </div>\n }\n </section>\n\n <section class=\"valtimo-zakenapi-sync__card-body\">\n <div>\n <strong>{{ 'zakenApiSync.assigneeSyncEnabled' | translate }}</strong>\n\n {{\n caseZakenApiSync.assigneeSyncEnabled\n ? ('zakenApiSync.yes' | translate)\n : ('zakenApiSync.no' | translate)\n }}\n </div>\n\n <div>\n <strong>{{ 'zakenApiSync.noteSyncEnabled' | translate }}</strong>\n\n {{\n caseZakenApiSync.noteSyncEnabled\n ? ('zakenApiSync.yes' | translate)\n : ('zakenApiSync.no' | translate)\n }}\n </div>\n </section>\n } @else if (canEdit$ | async) {\n <button cdsButton=\"primary\" (click)=\"showModal()\">\n {{ 'zakenApiSync.submitButton' | translate }}\n\n <svg class=\"cds--btn__icon\" cdsIcon=\"add\" size=\"16\"></svg>\n </button>\n }\n }\n\n @if (hasConfigurationIssue$ | async) {\n <div class=\"tile-error-message\">\n <svg cdsIcon=\"warning--filled\" size=\"16\" class=\"tile-error-message__icon\"></svg>\n <span class=\"tile-error-message__text\">{{\n 'zakenApiSync.configurationIssue' | translate\n }}</span>\n </div>\n }\n</cds-tile>\n\n<valtimo-render-in-body>\n <cds-modal\n valtimoCdsModal\n [open]=\"modalShowing$ | async\"\n [title]=\"'zakenApiSync.editModal.title' | translate\"\n showFooter=\"true\"\n (close)=\"onModalClose()\"\n >\n <cds-modal-header [showCloseButton]=\"true\" (closeSelect)=\"onModalClose()\">\n <h3 cdsModalHeaderHeading>\n {{ 'zakenApiSync.editModal.title' | translate }}\n </h3>\n </cds-modal-header>\n\n <section cdsModalContent [cdsLayer]=\"1\">\n <form [formGroup]=\"formGroup\">\n <cds-toggle\n formControlName=\"assigneeSyncEnabled\"\n [label]=\"'zakenApiSync.editModal.assigneeSyncEnabled' | translate\"\n [onText]=\"'interface.on' | translate\"\n [offText]=\"'interface.off' | translate\"\n ></cds-toggle>\n\n <cds-dropdown\n [label]=\"'zakenApiSync.editModal.roltypeUrl' | translate\"\n [placeholder]=\"'zakenApiSync.editModal.roltypeUrlPlaceholder' | translate\"\n [dropUp]=\"false\"\n (selected)=\"onRoltypeSelected($event)\"\n >\n <cds-dropdown-list [items]=\"roltypeListItems$ | async\"></cds-dropdown-list>\n </cds-dropdown>\n\n <cds-toggle\n formControlName=\"noteSyncEnabled\"\n [label]=\"'zakenApiSync.editModal.noteSyncEnabled' | translate\"\n [onText]=\"'interface.on' | translate\"\n [offText]=\"'interface.off' | translate\"\n ></cds-toggle>\n\n <cds-label>\n {{ 'zakenApiSync.editModal.noteSubject' | translate }}\n <input\n cdsText\n formControlName=\"noteSubject\"\n [placeholder]=\"'zakenApiSync.editModal.noteSubjectPlaceholder' | translate\"\n />\n </cds-label>\n </form>\n </section>\n\n <cds-modal-footer>\n <button cdsButton=\"secondary\" (click)=\"onModalClose()\" [disabled]=\"false\">\n {{ 'interface.cancel' | translate }}\n </button>\n\n <button\n cdsButton=\"primary\"\n [disabled]=\"!formGroup.valid\"\n (click)=\"submit()\"\n >\n {{ 'searchFieldsOverview.submit' | translate }}\n </button>\n </cds-modal-footer>\n </cds-modal>\n</valtimo-render-in-body>\n", styles: ["cds-tile{background:var(--cds-layer-02);width:100%}form{display:flex;flex-direction:column;gap:1rem}::ng-deep cds-tile.tile--danger.cds--tile{outline:2px solid var(--cds-support-error, #da1e28)}.tile-error-message{display:flex;align-items:center;gap:8px;margin:16px -16px -16px;padding:8px 16px;border-top:1px solid var(--cds-border-subtle);color:var(--cds-support-error, #da1e28);font-size:12px;line-height:16px}.tile-error-message__icon{flex-shrink:0;fill:var(--cds-support-error, #da1e28)}.valtimo-zakenapi-sync__title{font-size:16px;line-height:24px;font-weight:600;margin-bottom:16px}.valtimo-zakenapi-sync__card-header{display:flex;flex-direction:row;justify-content:flex-end;align-items:center;padding-bottom:20px}.valtimo-zakenapi-sync__card-controls{display:flex;align-items:center;gap:16px}.valtimo-zakenapi-sync__card-body{display:flex;flex-direction:column;gap:16px}.valtimo-zakenapi-sync__card-body>div{display:grid;grid-template-columns:repeat(3,1fr);font-size:16px}\n/*!\n * Copyright 2015-2026 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
|
|
4837
|
+
}], ctorParameters: () => [{ type: i1$2.ActivatedRoute }, { type: i2.ConfigurationIssueService }, { type: i2.DraftVersionService }, { type: CaseZakenApiSyncService }, { type: i4$1.DocumentService }, { type: i3.CdsThemeService }, { type: i6.IconService }] });
|
|
4838
|
+
|
|
4839
|
+
/*
|
|
4840
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
4841
|
+
*
|
|
4842
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4843
|
+
* you may not use this file except in compliance with the License.
|
|
4844
|
+
* You may obtain a copy of the License at
|
|
4845
|
+
*
|
|
4846
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4847
|
+
*
|
|
4848
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4849
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4850
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4851
|
+
* See the License for the specific language governing permissions and
|
|
4852
|
+
* limitations under the License.
|
|
4853
|
+
*/
|
|
4854
|
+
|
|
4855
|
+
/*
|
|
4856
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
4857
|
+
*
|
|
4858
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4859
|
+
* you may not use this file except in compliance with the License.
|
|
4860
|
+
* You may obtain a copy of the License at
|
|
4861
|
+
*
|
|
4862
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4863
|
+
*
|
|
4864
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4865
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4866
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4867
|
+
* See the License for the specific language governing permissions and
|
|
4868
|
+
* limitations under the License.
|
|
4869
|
+
*/
|
|
4870
|
+
|
|
4871
|
+
/*
|
|
4872
|
+
* Copyright 2015-2026 Ritense BV, the Netherlands.
|
|
4873
|
+
*
|
|
4874
|
+
* Licensed under EUPL, Version 1.2 (the "License");
|
|
4875
|
+
* you may not use this file except in compliance with the License.
|
|
4876
|
+
* You may obtain a copy of the License at
|
|
4877
|
+
*
|
|
4878
|
+
* https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12
|
|
4879
|
+
*
|
|
4880
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
4881
|
+
* distributed under the License is distributed on an "AS IS" basis,
|
|
4882
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
4883
|
+
* See the License for the specific language governing permissions and
|
|
4884
|
+
* limitations under the License.
|
|
4885
|
+
*/
|
|
4886
|
+
|
|
4640
4887
|
/*
|
|
4641
4888
|
* Copyright 2015-2024 Ritense BV, the Netherlands.
|
|
4642
4889
|
*
|
|
@@ -4967,17 +5214,18 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
4967
5214
|
*/
|
|
4968
5215
|
class CaseManagementZgwGeneralComponent {
|
|
4969
5216
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseManagementZgwGeneralComponent, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
4970
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: CaseManagementZgwGeneralComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"muuri-container\">\n <div muuri [columnMinWidth]=\"450\">\n <valtimo-muuri-item>\n <valtimo-document-objecten-api-sync></valtimo-document-objecten-api-sync>\n </valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-documenten-api-version></valtimo-documenten-api-version\n ></valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-zaken-api-zaaktype-link></valtimo-zaken-api-zaaktype-link>\n </valtimo-muuri-item>\n </div>\n</div>\n", styles: [".muuri-container{margin-bottom:-16px;padding:16px;background-color:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2025 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: ZakenApiZaaktypeLinkComponent, selector: "valtimo-zaken-api-zaaktype-link" }, { kind: "component", type: DocumentObjectenApiSyncComponent, selector: "valtimo-document-objecten-api-sync" }, { kind: "ngmodule", type: MuuriDirectiveModule }, { kind: "directive", type: i3.MuuriDirective, selector: "[muuri]", inputs: ["columnMinWidth"] }, { kind: "component", type: i3.MuuriItemComponent, selector: "valtimo-muuri-item" }, { kind: "component", type: DocumentenApiVersionComponent, selector: "valtimo-documenten-api-version" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
5217
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.20", type: CaseManagementZgwGeneralComponent, isStandalone: true, selector: "ng-component", ngImport: i0, template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"muuri-container\">\n <div muuri [columnMinWidth]=\"450\">\n <valtimo-muuri-item>\n <valtimo-document-objecten-api-sync></valtimo-document-objecten-api-sync>\n </valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-case-zaken-api-sync></valtimo-case-zaken-api-sync>\n </valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-documenten-api-version></valtimo-documenten-api-version\n ></valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-zaken-api-zaaktype-link></valtimo-zaken-api-zaaktype-link>\n </valtimo-muuri-item>\n </div>\n</div>\n", styles: [".muuri-container{margin-bottom:-16px;padding:16px;background-color:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2025 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"], dependencies: [{ kind: "ngmodule", type: CommonModule }, { kind: "component", type: CaseZakenApiSyncComponent, selector: "valtimo-case-zaken-api-sync" }, { kind: "component", type: ZakenApiZaaktypeLinkComponent, selector: "valtimo-zaken-api-zaaktype-link" }, { kind: "component", type: DocumentObjectenApiSyncComponent, selector: "valtimo-document-objecten-api-sync" }, { kind: "ngmodule", type: MuuriDirectiveModule }, { kind: "directive", type: i3.MuuriDirective, selector: "[muuri]", inputs: ["columnMinWidth"] }, { kind: "component", type: i3.MuuriItemComponent, selector: "valtimo-muuri-item" }, { kind: "component", type: DocumentenApiVersionComponent, selector: "valtimo-documenten-api-version" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
4971
5218
|
}
|
|
4972
5219
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImport: i0, type: CaseManagementZgwGeneralComponent, decorators: [{
|
|
4973
5220
|
type: Component,
|
|
4974
5221
|
args: [{ changeDetection: ChangeDetectionStrategy.OnPush, standalone: true, imports: [
|
|
4975
5222
|
CommonModule,
|
|
5223
|
+
CaseZakenApiSyncComponent,
|
|
4976
5224
|
ZakenApiZaaktypeLinkComponent,
|
|
4977
5225
|
DocumentObjectenApiSyncComponent,
|
|
4978
5226
|
MuuriDirectiveModule,
|
|
4979
5227
|
DocumentenApiVersionComponent,
|
|
4980
|
-
], template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"muuri-container\">\n <div muuri [columnMinWidth]=\"450\">\n <valtimo-muuri-item>\n <valtimo-document-objecten-api-sync></valtimo-document-objecten-api-sync>\n </valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-documenten-api-version></valtimo-documenten-api-version\n ></valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-zaken-api-zaaktype-link></valtimo-zaken-api-zaaktype-link>\n </valtimo-muuri-item>\n </div>\n</div>\n", styles: [".muuri-container{margin-bottom:-16px;padding:16px;background-color:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2025 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
|
|
5228
|
+
], template: "<!--\n ~ Copyright 2015-2025 Ritense BV, the Netherlands.\n ~\n ~ Licensed under EUPL, Version 1.2 (the \"License\");\n ~ you may not use this file except in compliance with the License.\n ~ You may obtain a copy of the License at\n ~\n ~ https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n ~\n ~ Unless required by applicable law or agreed to in writing, software\n ~ distributed under the License is distributed on an \"AS IS\" basis,\n ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n ~ See the License for the specific language governing permissions and\n ~ limitations under the License.\n -->\n\n<div class=\"muuri-container\">\n <div muuri [columnMinWidth]=\"450\">\n <valtimo-muuri-item>\n <valtimo-document-objecten-api-sync></valtimo-document-objecten-api-sync>\n </valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-case-zaken-api-sync></valtimo-case-zaken-api-sync>\n </valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-documenten-api-version></valtimo-documenten-api-version\n ></valtimo-muuri-item>\n\n <valtimo-muuri-item>\n <valtimo-zaken-api-zaaktype-link></valtimo-zaken-api-zaaktype-link>\n </valtimo-muuri-item>\n </div>\n</div>\n", styles: [".muuri-container{margin-bottom:-16px;padding:16px;background-color:var(--cds-layer-01)}\n/*!\n * Copyright 2015-2025 Ritense BV, the Netherlands.\n *\n * Licensed under EUPL, Version 1.2 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * https://joinup.ec.europa.eu/collection/eupl/eupl-text-eupl-12\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" basis,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n"] }]
|
|
4981
5229
|
}] });
|
|
4982
5230
|
|
|
4983
5231
|
/*
|
|
@@ -5286,5 +5534,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.20", ngImpo
|
|
|
5286
5534
|
* Generated bundle index. Do not edit.
|
|
5287
5535
|
*/
|
|
5288
5536
|
|
|
5289
|
-
export { COLUMN_VIEW_TYPES, CONFIDENTIALITY_LEVELS, CaseDetailTabDocumentenApiDocumentsComponent, CaseDetailTabObjectTypeComponent, CaseDetailTabZaakobjectenComponent, CaseManagementLinkProcessComponent, CaseManagementZgwComponent, CaseManagementZgwService, DOCUMENTEN_COLUMN_KEYS, DocumentObjectenApiSyncComponent, DocumentObjectenApiSyncService, DocumentenApiColumnModalComponent, DocumentenApiColumnService, DocumentenApiColumnsComponent, DocumentenApiDocumentService, DocumentenApiFilterComponent, DocumentenApiLinkProcessService, DocumentenApiMetadataModalComponent, DocumentenApiPreviewModalComponent, DocumentenApiPreviewService, DocumentenApiTagModalComponent, DocumentenApiTagService, DocumentenApiTagsComponent, DocumentenApiUploadFieldModalComponent, DocumentenApiUploadFieldsComponent, DocumentenApiUploaderComponent, DocumentenApiVersionComponent, DocumentenApiVersionService, FailedNotificationDetailComponent, FailedNotificationsPageComponent, FailedNotificationsService, LANGUAGE_ITEMS, NotificatiesApiInboundEventStatus, NotificatiesApiRoutingModule, STATUS_ITEMS, ZGW_CASE_SYNC_TEST_IDS, ZGW_CASE_TYPE_LINK_TEST_IDS, ZGW_DOCUMENT_COLUMNS_TEST_IDS, ZGW_KEYWORDS_TEST_IDS, ZGW_LINK_UPLOAD_PROCESS_TEST_IDS, ZGW_UPLOAD_FIELDS_TEST_IDS, ZaakobjectenService, ZakenApiZaaktypeLinkComponent, ZakenApiZaaktypeLinkService, ZgwModule, ZgwTabEnum, customDocumentApiUploaderType, documentenApiUploaderEditForm, registerDocumentenApiFormioUploadComponent };
|
|
5537
|
+
export { COLUMN_VIEW_TYPES, CONFIDENTIALITY_LEVELS, CaseDetailTabDocumentenApiDocumentsComponent, CaseDetailTabObjectTypeComponent, CaseDetailTabZaakobjectenComponent, CaseManagementLinkProcessComponent, CaseManagementZgwComponent, CaseManagementZgwService, CaseZakenApiSyncComponent, CaseZakenApiSyncService, DOCUMENTEN_COLUMN_KEYS, DocumentObjectenApiSyncComponent, DocumentObjectenApiSyncService, DocumentenApiColumnModalComponent, DocumentenApiColumnService, DocumentenApiColumnsComponent, DocumentenApiDocumentService, DocumentenApiFilterComponent, DocumentenApiLinkProcessService, DocumentenApiMetadataModalComponent, DocumentenApiPreviewModalComponent, DocumentenApiPreviewService, DocumentenApiTagModalComponent, DocumentenApiTagService, DocumentenApiTagsComponent, DocumentenApiUploadFieldModalComponent, DocumentenApiUploadFieldsComponent, DocumentenApiUploaderComponent, DocumentenApiVersionComponent, DocumentenApiVersionService, FailedNotificationDetailComponent, FailedNotificationsPageComponent, FailedNotificationsService, LANGUAGE_ITEMS, NotificatiesApiInboundEventStatus, NotificatiesApiRoutingModule, STATUS_ITEMS, ZGW_CASE_SYNC_TEST_IDS, ZGW_CASE_TYPE_LINK_TEST_IDS, ZGW_DOCUMENT_COLUMNS_TEST_IDS, ZGW_KEYWORDS_TEST_IDS, ZGW_LINK_UPLOAD_PROCESS_TEST_IDS, ZGW_UPLOAD_FIELDS_TEST_IDS, ZaakobjectenService, ZakenApiZaaktypeLinkComponent, ZakenApiZaaktypeLinkService, ZgwModule, ZgwTabEnum, customDocumentApiUploaderType, documentenApiUploaderEditForm, registerDocumentenApiFormioUploadComponent };
|
|
5290
5538
|
//# sourceMappingURL=valtimo-zgw.mjs.map
|