@colijnit/sharedcomponents 260.1.13 → 260.1.15

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.
@@ -3229,6 +3229,7 @@
3229
3229
  this.reportingDocumentEmailSignDocBaseRequestChanged = new rxjs.Subject();
3230
3230
  this.reportingDocumentPdfBaseRequestChanged = new rxjs.Subject();
3231
3231
  this.reportingDocumentCombinedBaseRequestChanged = new rxjs.Subject();
3232
+ this.printerNotSet = new rxjs.Subject();
3232
3233
  this.selectedEmailAddresses = [];
3233
3234
  this._reportingDocumentPrintSignDocBaseRequest = new reportingDocumentPrintSignDocBaseRequest.ReportingDocumentPrintSignDocBaseRequest();
3234
3235
  this._reportingDocumentEmailSignDocBaseRequest = new reportingDocumentEmailSignDocBaseRequest.ReportingDocumentEmailSignDocBaseRequest();
@@ -3374,9 +3375,10 @@
3374
3375
  this.showPdf = true;
3375
3376
  this.showCombinePrintAndEmail = true;
3376
3377
  this.additionalFileHasBeenSaved = false;
3378
+ this.disableOkButton = false;
3377
3379
  this._subscriptions = [];
3378
3380
  this._localPrint = false;
3379
- this._subscriptions.push(this._sendMethodService.reportingDocumentPrintSignDocBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentPrintRequestChange.next(value); }), this._sendMethodService.reportingDocumentEmailSignDocBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentEmailRequestChange.next(value); }), this._sendMethodService.reportingDocumentPdfBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentPdfRequestChange.next(value); }), this._sendMethodService.reportingDocumentCombinedBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentCombinedRequestChange.next(value); }));
3381
+ this._subscriptions.push(this._sendMethodService.reportingDocumentPrintSignDocBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentPrintRequestChange.next(value); }), this._sendMethodService.reportingDocumentEmailSignDocBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentEmailRequestChange.next(value); }), this._sendMethodService.reportingDocumentPdfBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentPdfRequestChange.next(value); }), this._sendMethodService.reportingDocumentCombinedBaseRequestChanged.subscribe(function (value) { return _this.reportingDocumentCombinedRequestChange.next(value); }), this._sendMethodService.printerNotSet.subscribe(function (value) { return _this.disableOkButton = value; }));
3380
3382
  }
3381
3383
  SendMethodDialogComponent.prototype.showClass = function () {
3382
3384
  return true;
@@ -3411,6 +3413,9 @@
3411
3413
  };
3412
3414
  SendMethodDialogComponent.prototype.handleUseLocalPrint = function (localPrint) {
3413
3415
  this._localPrint = localPrint;
3416
+ if (localPrint) {
3417
+ this.disableOkButton = false;
3418
+ }
3414
3419
  };
3415
3420
  SendMethodDialogComponent.prototype.handleOkClick = function () {
3416
3421
  var _a, _b, _c, _d;
@@ -3531,7 +3536,10 @@
3531
3536
  SendMethodDialogComponent.decorators = [
3532
3537
  { type: i0.Component, args: [{
3533
3538
  selector: 'co-send-method-dialog',
3534
- template: "\n <co-dialog id=\"sendOptionsDialog\" [headerTemplate]=\"headerTemplate\" [footerTemplate]=\"footerTemplate\"\n (closeClick)=\"handleCancelClick()\">\n <ng-template #headerTemplate>\n <div class=\"co-dialog-header-title-wrapper\">\n <co-icon [iconData]=\"iconCacheService.getIcon(icons.ShareSolid)\"></co-icon>\n <div class=\"co-dialog-header-title\" [textContent]=\"headerTitle\"></div>\n </div>\n <div class=\"dialog-navigation-wrapper\" *ngIf=\"sendMethods.length > 1\">\n <div\n *ngFor=\"let sendMethod of sendMethods; let index = index\"\n class=\"send-button-wrapper\"\n [class.selected]=\"activeSendMethod ? sendMethod.code === activeSendMethod.code : index === 0\"\n (click)=\"handleSendMethodClick(sendMethod)\">\n <div class=\"custom-button-title\" [textContent]=\"sendMethod.description\"></div>\n </div>\n </div>\n </ng-template>\n\n <div class=\"dialog-content-wrapper\">\n <div class=\"send-methods-wrapper\">\n\n </div>\n <div #navigationItems class=\"send-method-navigation-wrapper\" [class.smooth-scrolling]=\"!startUp\">\n <div #faxItems class=\"send-method-navigation-content co-small-scrollbar\">\n\n </div>\n <div #printItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showPrint\">\n <co-send-method-printer\n #printerComponent\n [isPrinterLayoutsEnabled]=\"isPrinterLayoutsEnabled\"\n [printerList]=\"printerList\"\n [layouts]=\"printLayouts\"\n [isAdditionalDocEnabled]=\"isAdditionalDocEnabled\"\n [additionalFileContents]=\"additionalFileContents\"\n [additionalFileName]=\"additionalFileName\"\n [layoutCode]=\"layoutCode\"\n (additionalFileChangeEvent)=\"handleAdditionalFileSaved($event)\"\n (useLocalPrint)=\"handleUseLocalPrint($event)\"\n ></co-send-method-printer>\n </div>\n <div #emailItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showEmail\">\n <co-send-method-email\n #emailComponent\n [emailAddresses]=\"emailAddresses\"\n [layouts]=\"emailLayouts\"\n [emailUnsignedPossible]=\"emailUnsignedPossible\"\n (loadDefaultPrinterName)=\"loadDefaultPrinterName.emit($event)\"\n [isAdditionalDocEnabled]=\"isAdditionalDocEnabled\"\n [additionalFileContents]=\"additionalFileContents\"\n [additionalFileName]=\"additionalFileName\"\n (additionalFileChangeEvent)=\"handleAdditionalFileSaved($event)\">\n </co-send-method-email>\n </div>\n <div #ediItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showEdi\">\n\n </div>\n <div #emailTemplateItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showEmailTemplate\">\n\n </div>\n <div #smsItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showSms\">\n\n </div>\n <div #webServiceItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showWebservice\">\n\n </div>\n <div #pdfItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showPdf\">\n <co-send-method-pdf\n [layouts]=\"printLayouts\">\n </co-send-method-pdf>\n </div>\n <div #combinePrintAndEmail class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showCombinePrintAndEmail\">\n <co-send-method-combine-print-email\n [emailLayouts]=\"emailLayouts\"\n [printLayouts]=\"printLayouts\"\n [printerList]=\"printerList\"\n [showAdditionalChecks]=\"showAdditionalChecks\"\n [showLocalPrint]=\"showLocalPrint\"\n (useLocalPrint)=\"handleUseLocalPrint($event)\">\n <div extra-content-pass>\n <ng-content select=\"[extra-content]\"></ng-content>\n </div>\n </co-send-method-combine-print-email>\n </div>\n </div>\n\n <div class=\"pdf-preview-wrapper\" *ngIf=\"showPDFPreview\">\n <div class=\"pdf-preview-button\" [class.disabled]=\"disablePdfPreview\" (click)=\"createPdfPreview()\">\n <co-icon [iconData]=\"iconCacheService.getIcon(icons.FileMagnifyingGlass)\"></co-icon>\n </div>\n <co-preview-pdf-dialog\n *ngIf=\"pdfDoc\"\n [pdfDoc]=\"pdfDoc\"\n (closePDFDialog)=\"closePdfPreview()\">\n </co-preview-pdf-dialog>\n </div>\n </div>\n <ng-template #footerTemplate>\n <div class=\"co-dialog-footer-button-wrapper\">\n <co-button class=\"save-button\"\n [iconData]=\"iconCacheService.getIcon(icons.CheckDuotone)\"\n (click)=\"handleOkClick()\"></co-button>\n <co-button class=\"close-button\"\n [iconData]=\"iconCacheService.getIcon(icons.CrossSkinny)\"\n (click)=\"handleCancelClick()\"></co-button>\n </div>\n </ng-template>\n </co-dialog>\n ",
3539
+ template: "\n <co-dialog id=\"sendOptionsDialog\" [headerTemplate]=\"headerTemplate\" [footerTemplate]=\"footerTemplate\"\n (closeClick)=\"handleCancelClick()\">\n <ng-template #headerTemplate>\n <div class=\"co-dialog-header-title-wrapper\">\n <co-icon [iconData]=\"iconCacheService.getIcon(icons.ShareSolid)\"></co-icon>\n <div class=\"co-dialog-header-title\" [textContent]=\"headerTitle\"></div>\n </div>\n <div class=\"dialog-navigation-wrapper\" *ngIf=\"sendMethods.length > 1\">\n <div\n *ngFor=\"let sendMethod of sendMethods; let index = index\"\n class=\"send-button-wrapper\"\n [class.selected]=\"activeSendMethod ? sendMethod.code === activeSendMethod.code : index === 0\"\n (click)=\"handleSendMethodClick(sendMethod)\">\n <div class=\"custom-button-title\" [textContent]=\"sendMethod.description\"></div>\n </div>\n </div>\n </ng-template>\n\n <div class=\"dialog-content-wrapper\">\n <div class=\"send-methods-wrapper\">\n\n </div>\n <div #navigationItems class=\"send-method-navigation-wrapper\" [class.smooth-scrolling]=\"!startUp\">\n <div #faxItems class=\"send-method-navigation-content co-small-scrollbar\">\n\n </div>\n <div #printItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showPrint\">\n <co-send-method-printer\n #printerComponent\n [isPrinterLayoutsEnabled]=\"isPrinterLayoutsEnabled\"\n [printerList]=\"printerList\"\n [layouts]=\"printLayouts\"\n [isAdditionalDocEnabled]=\"isAdditionalDocEnabled\"\n [additionalFileContents]=\"additionalFileContents\"\n [additionalFileName]=\"additionalFileName\"\n [layoutCode]=\"layoutCode\"\n (additionalFileChangeEvent)=\"handleAdditionalFileSaved($event)\"\n (useLocalPrint)=\"handleUseLocalPrint($event)\"\n ></co-send-method-printer>\n </div>\n <div #emailItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showEmail\">\n <co-send-method-email\n #emailComponent\n [emailAddresses]=\"emailAddresses\"\n [layouts]=\"emailLayouts\"\n [emailUnsignedPossible]=\"emailUnsignedPossible\"\n (loadDefaultPrinterName)=\"loadDefaultPrinterName.emit($event)\"\n [isAdditionalDocEnabled]=\"isAdditionalDocEnabled\"\n [additionalFileContents]=\"additionalFileContents\"\n [additionalFileName]=\"additionalFileName\"\n (additionalFileChangeEvent)=\"handleAdditionalFileSaved($event)\">\n </co-send-method-email>\n </div>\n <div #ediItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showEdi\">\n\n </div>\n <div #emailTemplateItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showEmailTemplate\">\n\n </div>\n <div #smsItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showSms\">\n\n </div>\n <div #webServiceItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showWebservice\">\n\n </div>\n <div #pdfItems class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showPdf\">\n <co-send-method-pdf\n [layouts]=\"printLayouts\">\n </co-send-method-pdf>\n </div>\n <div #combinePrintAndEmail class=\"send-method-navigation-content co-small-scrollbar\" *ngIf=\"showCombinePrintAndEmail\">\n <co-send-method-combine-print-email\n [emailLayouts]=\"emailLayouts\"\n [printLayouts]=\"printLayouts\"\n [printerList]=\"printerList\"\n [showAdditionalChecks]=\"showAdditionalChecks\"\n [showLocalPrint]=\"showLocalPrint\"\n (useLocalPrint)=\"handleUseLocalPrint($event)\">\n <div extra-content-pass>\n <ng-content select=\"[extra-content]\"></ng-content>\n </div>\n </co-send-method-combine-print-email>\n </div>\n </div>\n\n <div class=\"pdf-preview-wrapper\" *ngIf=\"showPDFPreview\">\n <div class=\"pdf-preview-button\" [class.disabled]=\"disablePdfPreview\" (click)=\"createPdfPreview()\">\n <co-icon [iconData]=\"iconCacheService.getIcon(icons.FileMagnifyingGlass)\"></co-icon>\n </div>\n <co-preview-pdf-dialog\n *ngIf=\"pdfDoc\"\n [pdfDoc]=\"pdfDoc\"\n (closePDFDialog)=\"closePdfPreview()\">\n </co-preview-pdf-dialog>\n </div>\n </div>\n <ng-template #footerTemplate>\n <div class=\"co-dialog-footer-button-wrapper\">\n <co-button class=\"save-button\"\n [iconData]=\"iconCacheService.getIcon(icons.CheckDuotone)\"\n [disabled]=\"disableOkButton\"\n (click)=\"handleOkClick()\"></co-button>\n <co-button class=\"close-button\"\n [iconData]=\"iconCacheService.getIcon(icons.CrossSkinny)\"\n (click)=\"handleCancelClick()\"></co-button>\n </div>\n </ng-template>\n </co-dialog>\n ",
3540
+ providers: [
3541
+ SendMethodService
3542
+ ],
3535
3543
  encapsulation: i0.ViewEncapsulation.None,
3536
3544
  animations: [
3537
3545
  animations.trigger('slideInOut', [
@@ -4268,13 +4276,13 @@
4268
4276
  },] }
4269
4277
  ];
4270
4278
 
4271
- exports["ɵw"] = void 0;
4279
+ exports["ɵx"] = void 0;
4272
4280
  (function (LanguageCode) {
4273
4281
  LanguageCode["Dutch"] = "nl-NL";
4274
4282
  LanguageCode["English"] = "en-GB";
4275
4283
  LanguageCode["German"] = "de-DE";
4276
4284
  LanguageCode["French"] = "fr-FR";
4277
- })(exports["ɵw"] || (exports["ɵw"] = {}));
4285
+ })(exports["ɵx"] || (exports["ɵx"] = {}));
4278
4286
 
4279
4287
  var SharedService = /** @class */ (function () {
4280
4288
  function SharedService(locale, options, connector, dictionary) {
@@ -4709,7 +4717,7 @@
4709
4717
  },] }
4710
4718
  ];
4711
4719
  SharedService.ctorParameters = function () { return [
4712
- { type: exports["ɵw"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] },
4720
+ { type: exports["ɵx"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] },
4713
4721
  { type: OptionsService },
4714
4722
  { type: SharedConnectorService },
4715
4723
  { type: SharedComponentsDictionaryService }
@@ -4789,7 +4797,7 @@
4789
4797
  SendMethodPrinterComponent.decorators = [
4790
4798
  { type: i0.Component, args: [{
4791
4799
  selector: 'co-send-method-printer',
4792
- template: "\n <span class=\"send-methods-label\" [textContent]=\"'SETTINGS' | sharedLocalize\"></span>\n <div class=\"printer-layout-selections-wrapper\">\n <div class=\"printer-signature-wrapper\">\n <co-layout-selection\n [(request)]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest\"\n (requestChange)=\"updatePrinter($event)\"\n [layouts]=\"layouts\"\n [label]=\"'PRINTER_LAYOUT'\"\n [useDefault]=\"false\">\n </co-layout-selection>\n <co-additional-file-button\n #additionalFileButton\n *ngIf=\"isAdditionalDocEnabled\"\n [additionalFileContents]=\"additionalFileContents\"\n [additionalFileName]=\"additionalFileName\"\n (additionalFileChangeEvent)=\"additionalFileChangeEvent.emit($event)\">\n </co-additional-file-button>\n <co-signature-button [request]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest\"></co-signature-button>\n </div>\n\n <co-input-checkbox\n [model]=\"localPrint\"\n [label]=\"'LOCAL_PRINT' | sharedLocalize\"\n (modelChange)=\"handleLocalPrintChange($event)\">\n </co-input-checkbox>\n\n <div class=\"layout-buttons-wrapper\" *ngIf=\"isPrinterLayoutsEnabled\">\n <ng-container *ngIf=\"!localPrint\">\n <span [textContent]=\"'NETWORK_PRINTERS' | sharedLocalize\"></span>\n\n <co-printer-selection\n [defaultPrinter]=\"defaultPrinter\"\n [printers]=\"printerList\">\n </co-printer-selection>\n\n </ng-container>\n\n <div class=\"additional-checks\">\n <co-input-checkbox\n [model]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest.saveDefaultPrinterForUser\"\n [label]=\"'Koppeling onthouden'\"\n (modelChange)=\"handleDefaultPrinterUserChange($event)\">\n </co-input-checkbox>\n <co-input-checkbox\n [model]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest.saveDefaultPrinterForAllUsers\"\n [label]=\"'Alle gebruikers'\"\n (modelChange)=\"handleDefaultPrinterAllUsersChange($event)\">\n </co-input-checkbox>\n </div>\n </div>\n </div>\n ",
4800
+ template: "\n <span class=\"send-methods-label\" [textContent]=\"'SETTINGS' | sharedLocalize\"></span>\n <div class=\"printer-layout-selections-wrapper\">\n <div class=\"printer-signature-wrapper\">\n <co-layout-selection\n [(request)]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest\"\n (requestChange)=\"updatePrinter($event)\"\n [layouts]=\"layouts\"\n [label]=\"'PRINTER_LAYOUT'\"\n [useDefault]=\"false\">\n </co-layout-selection>\n <co-additional-file-button\n #additionalFileButton\n *ngIf=\"isAdditionalDocEnabled\"\n [additionalFileContents]=\"additionalFileContents\"\n [additionalFileName]=\"additionalFileName\"\n (additionalFileChangeEvent)=\"additionalFileChangeEvent.emit($event)\">\n </co-additional-file-button>\n <co-signature-button [request]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest\"></co-signature-button>\n </div>\n\n <co-input-checkbox\n [model]=\"localPrint\"\n [label]=\"'LOCAL_PRINT' | sharedLocalize\"\n (modelChange)=\"handleLocalPrintChange($event)\">\n </co-input-checkbox>\n\n <div class=\"layout-buttons-wrapper\" *ngIf=\"isPrinterLayoutsEnabled\">\n <ng-container *ngIf=\"!localPrint\">\n <span [textContent]=\"'NETWORK_PRINTERS' | sharedLocalize\"></span>\n <co-printer-selection\n [defaultPrinter]=\"defaultPrinter\"\n [required]=\"!localPrint\"\n [printers]=\"printerList\">\n </co-printer-selection>\n </ng-container>\n\n <div class=\"additional-checks\">\n <co-input-checkbox\n [model]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest.saveDefaultPrinterForUser\"\n [label]=\"'Koppeling onthouden'\"\n (modelChange)=\"handleDefaultPrinterUserChange($event)\">\n </co-input-checkbox>\n <co-input-checkbox\n [model]=\"sendMethodService.reportingDocumentPrintSignDocBaseRequest.saveDefaultPrinterForAllUsers\"\n [label]=\"'Alle gebruikers'\"\n (modelChange)=\"handleDefaultPrinterAllUsersChange($event)\">\n </co-input-checkbox>\n </div>\n </div>\n </div>\n ",
4793
4801
  encapsulation: i0.ViewEncapsulation.None
4794
4802
  },] }
4795
4803
  ];
@@ -4813,12 +4821,12 @@
4813
4821
  };
4814
4822
 
4815
4823
  var PrinterSelectionComponent = /** @class */ (function () {
4816
- function PrinterSelectionComponent(sendMethodService, iconService, _service) {
4824
+ function PrinterSelectionComponent(sendMethodService, iconService) {
4817
4825
  this.sendMethodService = sendMethodService;
4818
4826
  this.iconService = iconService;
4819
- this._service = _service;
4820
4827
  this.icons = exports["ɵcd"];
4821
4828
  this.printers = [];
4829
+ this.required = false;
4822
4830
  }
4823
4831
  Object.defineProperty(PrinterSelectionComponent.prototype, "defaultPrinter", {
4824
4832
  set: function (printer) {
@@ -4831,27 +4839,33 @@
4831
4839
  return true;
4832
4840
  };
4833
4841
  PrinterSelectionComponent.prototype.handlePrinterClicked = function (printer) {
4834
- this.printerModel = printer;
4835
- this.sendMethodService.reportingDocumentPrintSignDocBaseRequest.printerName = printer.name;
4836
- this.sendMethodService.reportingDocumentPrintSignDocBaseRequestChanged.next(this.sendMethodService.reportingDocumentPrintSignDocBaseRequest);
4842
+ if (printer === undefined) {
4843
+ this.sendMethodService.printerNotSet.next(true);
4844
+ }
4845
+ else {
4846
+ this.printerModel = printer;
4847
+ this.sendMethodService.reportingDocumentPrintSignDocBaseRequest.printerName = printer.name;
4848
+ this.sendMethodService.reportingDocumentPrintSignDocBaseRequestChanged.next(this.sendMethodService.reportingDocumentPrintSignDocBaseRequest);
4849
+ this.sendMethodService.printerNotSet.next(false);
4850
+ }
4837
4851
  };
4838
4852
  return PrinterSelectionComponent;
4839
4853
  }());
4840
4854
  PrinterSelectionComponent.decorators = [
4841
4855
  { type: i0.Component, args: [{
4842
4856
  selector: 'co-printer-selection',
4843
- template: "\n <co-list-of-values\n class=\"printers-list\"\n [displayField]=\"'name'\"\n [model]=\"printerModel\"\n [label]=\"'PRINTER'| sharedLocalize\"\n [collection]=\"printers\"\n (modelChange)=\"handlePrinterClicked($event)\">\n </co-list-of-values>\n ",
4857
+ template: "\n <co-list-of-values\n class=\"printers-list\"\n [displayField]=\"'name'\"\n [model]=\"printerModel\"\n [label]=\"'PRINTER'| sharedLocalize\"\n [collection]=\"printers\"\n [required]=\"required\"\n (modelChange)=\"handlePrinterClicked($event)\">\n </co-list-of-values>\n ",
4844
4858
  encapsulation: i0.ViewEncapsulation.None
4845
4859
  },] }
4846
4860
  ];
4847
4861
  PrinterSelectionComponent.ctorParameters = function () { return [
4848
4862
  { type: SendMethodService },
4849
- { type: IconCacheService },
4850
- { type: SharedService }
4863
+ { type: IconCacheService }
4851
4864
  ]; };
4852
4865
  PrinterSelectionComponent.propDecorators = {
4853
4866
  printers: [{ type: i0.Input }],
4854
4867
  defaultPrinter: [{ type: i0.Input }],
4868
+ required: [{ type: i0.Input }],
4855
4869
  showClass: [{ type: i0.HostBinding, args: ['class.co-printer-selection',] }]
4856
4870
  };
4857
4871
 
@@ -5228,7 +5242,6 @@
5228
5242
  SendMethodDialogComponent
5229
5243
  ],
5230
5244
  providers: [
5231
- SendMethodService,
5232
5245
  StockService
5233
5246
  ]
5234
5247
  },] }
@@ -7932,7 +7945,7 @@
7932
7945
  },] }
7933
7946
  ];
7934
7947
  CalendarViewComponent.ctorParameters = function () { return [
7935
- { type: exports["ɵw"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
7948
+ { type: exports["ɵx"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
7936
7949
  ]; };
7937
7950
  CalendarViewComponent.propDecorators = {
7938
7951
  view: [{ type: i0.Input }],
@@ -8131,7 +8144,7 @@
8131
8144
  CalendarUtils.Locale = undefined;
8132
8145
  CalendarUtils.Now = new Date();
8133
8146
  CalendarUtils.ctorParameters = function () { return [
8134
- { type: exports["ɵw"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
8147
+ { type: exports["ɵx"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
8135
8148
  ]; };
8136
8149
 
8137
8150
  var AgendaEvent = /** @class */ (function () {
@@ -8418,7 +8431,7 @@
8418
8431
  },] }
8419
8432
  ];
8420
8433
  AgendaHeaderComponent.ctorParameters = function () { return [
8421
- { type: exports["ɵw"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] },
8434
+ { type: exports["ɵx"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] },
8422
8435
  { type: i0.ElementRef },
8423
8436
  { type: i0.Renderer2 },
8424
8437
  { type: i0.NgZone },
@@ -8519,7 +8532,7 @@
8519
8532
  { type: i0.Directive }
8520
8533
  ];
8521
8534
  AgendaBaseViewComponent.ctorParameters = function () { return [
8522
- { type: exports["ɵw"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] },
8535
+ { type: exports["ɵx"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] },
8523
8536
  { type: IconCacheService }
8524
8537
  ]; };
8525
8538
  AgendaBaseViewComponent.propDecorators = {
@@ -14991,7 +15004,7 @@
14991
15004
  { type: SharedComponentsDictionaryService },
14992
15005
  { type: corecomponents_v12.CoreDialogService },
14993
15006
  { type: SharedService },
14994
- { type: exports["ɵw"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
15007
+ { type: exports["ɵx"], decorators: [{ type: i0.Inject, args: [i0.LOCALE_ID,] }] }
14995
15008
  ]; };
14996
15009
  CreationSummaryBlockComponent.propDecorators = {
14997
15010
  editTemplate: [{ type: i0.ViewChild, args: ["editTemplate", { static: true },] }],
@@ -17969,7 +17982,7 @@
17969
17982
  exports["ɵt"] = SendMethodPrinterModule;
17970
17983
  exports["ɵu"] = PrinterSelectionModule;
17971
17984
  exports["ɵv"] = PrinterSelectionComponent;
17972
- exports["ɵx"] = SendMethodPrinterComponent;
17985
+ exports["ɵw"] = SendMethodPrinterComponent;
17973
17986
  exports["ɵy"] = SendMethodPdfModule;
17974
17987
  exports["ɵz"] = SendMethodPdfComponent;
17975
17988