@porscheinformatik/clr-addons 12.7.0 → 12.8.2

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.
@@ -4008,6 +4008,10 @@ class ClrHistoryService {
4008
4008
  this.setHistoryPinned(username, false, domain);
4009
4009
  historySettings = [{ username: username, historyPinned: false }];
4010
4010
  }
4011
+ if (!historySettings.find(hSetting => hSetting.username === username)) {
4012
+ this.setHistoryPinned(username, false, domain);
4013
+ historySettings.push({ username: username, historyPinned: false });
4014
+ }
4011
4015
  this.cookieSettings$.next(historySettings);
4012
4016
  }
4013
4017
  setHistoryPinned(username, pin, domain) {
@@ -4726,6 +4730,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
4726
4730
  class ClrEnumFilterComponent {
4727
4731
  constructor(filterContainer, datagrid) {
4728
4732
  this.property = '';
4733
+ this.clrFilterValuesChange = new EventEmitter();
4729
4734
  this.possibleValues = [];
4730
4735
  this.customPossibleValues = false;
4731
4736
  this.filteredValues = [];
@@ -4740,6 +4745,9 @@ class ClrEnumFilterComponent {
4740
4745
  }
4741
4746
  });
4742
4747
  }
4748
+ set clrFilterValues(values) {
4749
+ this.filteredValues = values;
4750
+ }
4743
4751
  set clrPossibleValues(values) {
4744
4752
  this.possibleValues = values;
4745
4753
  this.customPossibleValues = true;
@@ -4751,6 +4759,7 @@ class ClrEnumFilterComponent {
4751
4759
  else {
4752
4760
  this.filteredValues = this.filteredValues.filter(filteredState => filteredState !== selectedValue);
4753
4761
  }
4762
+ this.clrFilterValuesChange.emit(this.filteredValues);
4754
4763
  this.changes.emit(true);
4755
4764
  }
4756
4765
  isActive() {
@@ -4765,13 +4774,18 @@ class ClrEnumFilterComponent {
4765
4774
  }
4766
4775
  }
4767
4776
  ClrEnumFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrEnumFilterComponent, deps: [{ token: i1.ClrDatagridFilter }, { token: i1.ClrDatagrid }], target: i0.ɵɵFactoryTarget.Component });
4768
- ClrEnumFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ClrEnumFilterComponent, selector: "clr-enum-filter", inputs: { property: ["clrProperty", "property"], clrPossibleValues: "clrPossibleValues" }, ngImport: i0, template: "<clr-checkbox-container class=\"filter-selection\">\n <clr-checkbox-wrapper *ngFor=\"let possibleValue of possibleValues\">\n <input\n type=\"checkbox\"\n clrCheckbox\n value=\"{{ possibleValue }}\"\n name=\"possibleValue\"\n ngModel\n (ngModelChange)=\"onChange(possibleValue, $event)\"\n />\n <label>{{ possibleValue }}</label>\n </clr-checkbox-wrapper>\n</clr-checkbox-container>\n", styles: [".filter-selection{margin-top:0}\n"], components: [{ type: i1.ClrCheckboxContainer, selector: "clr-checkbox-container,clr-toggle-container", inputs: ["clrInline"] }, { type: i1.ClrCheckboxWrapper, selector: "clr-checkbox-wrapper,clr-toggle-wrapper" }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i1.ClrCheckbox, selector: "[clrCheckbox],[clrToggle]" }, { type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i1.ClrLabel, selector: "label", inputs: ["for"] }] });
4777
+ ClrEnumFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ClrEnumFilterComponent, selector: "clr-enum-filter", inputs: { property: ["clrProperty", "property"], clrFilterValues: "clrFilterValues", clrPossibleValues: "clrPossibleValues" }, outputs: { clrFilterValuesChange: "clrFilterValuesChange" }, ngImport: i0, template: "<clr-checkbox-container class=\"filter-selection\">\n <clr-checkbox-wrapper *ngFor=\"let possibleValue of possibleValues\">\n <input\n type=\"checkbox\"\n clrCheckbox\n value=\"{{ possibleValue }}\"\n name=\"possibleValue\"\n [ngModel]=\"filteredValues.includes(possibleValue)\"\n (ngModelChange)=\"onChange(possibleValue, $event)\"\n />\n <label>{{ possibleValue }}</label>\n </clr-checkbox-wrapper>\n</clr-checkbox-container>\n", styles: [".filter-selection{margin-top:0}\n"], components: [{ type: i1.ClrCheckboxContainer, selector: "clr-checkbox-container,clr-toggle-container", inputs: ["clrInline"] }, { type: i1.ClrCheckboxWrapper, selector: "clr-checkbox-wrapper,clr-toggle-wrapper" }], directives: [{ type: i2.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { type: i3$1.CheckboxControlValueAccessor, selector: "input[type=checkbox][formControlName],input[type=checkbox][formControl],input[type=checkbox][ngModel]" }, { type: i1.ClrCheckbox, selector: "[clrCheckbox],[clrToggle]" }, { type: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { type: i1.ClrLabel, selector: "label", inputs: ["for"] }] });
4769
4778
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrEnumFilterComponent, decorators: [{
4770
4779
  type: Component,
4771
- args: [{ selector: 'clr-enum-filter', template: "<clr-checkbox-container class=\"filter-selection\">\n <clr-checkbox-wrapper *ngFor=\"let possibleValue of possibleValues\">\n <input\n type=\"checkbox\"\n clrCheckbox\n value=\"{{ possibleValue }}\"\n name=\"possibleValue\"\n ngModel\n (ngModelChange)=\"onChange(possibleValue, $event)\"\n />\n <label>{{ possibleValue }}</label>\n </clr-checkbox-wrapper>\n</clr-checkbox-container>\n", styles: [".filter-selection{margin-top:0}\n"] }]
4780
+ args: [{ selector: 'clr-enum-filter', template: "<clr-checkbox-container class=\"filter-selection\">\n <clr-checkbox-wrapper *ngFor=\"let possibleValue of possibleValues\">\n <input\n type=\"checkbox\"\n clrCheckbox\n value=\"{{ possibleValue }}\"\n name=\"possibleValue\"\n [ngModel]=\"filteredValues.includes(possibleValue)\"\n (ngModelChange)=\"onChange(possibleValue, $event)\"\n />\n <label>{{ possibleValue }}</label>\n </clr-checkbox-wrapper>\n</clr-checkbox-container>\n", styles: [".filter-selection{margin-top:0}\n"] }]
4772
4781
  }], ctorParameters: function () { return [{ type: i1.ClrDatagridFilter }, { type: i1.ClrDatagrid }]; }, propDecorators: { property: [{
4773
4782
  type: Input,
4774
4783
  args: ['clrProperty']
4784
+ }], clrFilterValues: [{
4785
+ type: Input,
4786
+ args: ['clrFilterValues']
4787
+ }], clrFilterValuesChange: [{
4788
+ type: Output
4775
4789
  }], clrPossibleValues: [{
4776
4790
  type: Input
4777
4791
  }] } });
@@ -5346,12 +5360,14 @@ const PaintMaterialShape = clrIconSVG(`<path data-name="Path 345" d="M24.34 11.7
5346
5360
  const PaintMaterialForwardShape = clrIconSVG(`<path d="M18.86 17.8a2.48 2.48 0 104.08 0l-2.08-2.89z"/><ellipse cx="18" cy="11.7" rx="6.34" ry="2"/><path d="M18 7c-6.08 0-9 1.34-9 3v16a1.61 1.61 0 00.45 1.06h.72a3.09 3.09 0 01-.17-1 3 3 0 01.33-1.35V10c0-.22 1.43-1.67 7.67-1.67s7.67 1.45 7.67 1.67v16c0 .21-1.31 1.53-6.83 1.66l.28.27a3.06 3.06 0 01.67 1C24.65 28.71 27 27.49 27 26V10c0-1.66-2.92-3-9-3z"/><path d="M18.06 29l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38L11.94 33a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5347
5361
  const ItemsRecieveShape = clrIconSVG(`<defs><style>.prefix__cls-1{fill:none;stroke:#000;stroke-linecap:round;stroke-miterlimit:10;stroke-width:2px}</style></defs><g id="prefix__items-rcv"><path d="M32 8.2H4a2 2 0 00-2 2v5.4a2.93 2.93 0 011.5-.41H4v-5h28v16H4v-5h-.5a2.94 2.94 0 01-1.5-.42v5.4a2 2 0 002 2h28a2 2 0 002-2v-16a2 2 0 00-2-1.97z"/><path d="M18.56 17.12l-4-4a1.5 1.5 0 10-2.12 2.13l1.44 1.44H3.5a1.5 1.5 0 000 3h10.38l-1.44 1.43a1.5 1.5 0 102.12 2.13l4-4a1.5 1.5 0 000-2.13z"/><path class="prefix__cls-1" d="M21.99 22.19h4M21.99 18.19h6.5M21.99 14.19h6"/></g><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5348
5362
  const ItemsForwardShape = clrIconSVG(`<defs><style>.prefix__cls-1{fill:none;stroke:#000;stroke-linecap:round;stroke-miterlimit:10;stroke-width:2px}</style></defs><g id="prefix__items-fwd"><g id="prefix__fwd-template"><path d="M32 22.93v3.24H4v-16h28v3.24l2 2V10.2a2 2 0 00-2-2H4a2 2 0 00-2 2v16a2 2 0 002 2h28a2 2 0 002-2v-5.27z"/><path d="M33.56 17.12l-4-4a1.5 1.5 0 10-2.12 2.13l1.44 1.44H18.5a1.5 1.5 0 000 3h10.38l-1.44 1.43a1.5 1.5 0 102.12 2.13l4-4a1.5 1.5 0 000-2.13z"/></g><path class="prefix__cls-1" d="M7.68 22.19h4M7.68 18.19h6.5M7.68 14.19h6"/></g><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5349
- const DollarBillShape = clrIconSVG(`<path d="M18 24.55h-.16a5.52 5.52 0 01-1.07-.15 1 1 0 01-.77-1.23 1 1 0 011.22-.72 6.48 6.48 0 00.86.1 3.2 3.2 0 00.62-.09 1 1 0 11.5 1.93 4.74 4.74 0 01-1.2.16zM14.67 22.9a1 1 0 01-.76-.35 6.84 6.84 0 01-1.44-3 1 1 0 012-.43 4.79 4.79 0 001 2.1 1 1 0 01-.12 1.41 1 1 0 01-.68.27zm-1.21-5.33a.78.78 0 01-.22 0 1 1 0 01-.76-1.19 6.87 6.87 0 011.45-3 1 1 0 111.52 1.3 4.87 4.87 0 00-1 2.09 1 1 0 01-.99.8zM21.35 22.88a1 1 0 01-.64-.23 1 1 0 01-.13-1.41 4.88 4.88 0 001-2.1 1 1 0 011.19-.76 1 1 0 01.76 1.18 6.79 6.79 0 01-1.41 3 1 1 0 01-.77.32zm1.19-5.34a1 1 0 01-1-.77 4.85 4.85 0 00-1-2.08 1 1 0 011.52-1.31 6.85 6.85 0 011.46 2.94 1 1 0 01-.75 1.2.82.82 0 01-.23.02zm-5.48-4a1 1 0 01-.23-2 5 5 0 012.34 0 1 1 0 11-.47 1.94 3 3 0 00-1.4 0z"/><path d="M21.57 26H9.49A5.87 5.87 0 004 20.44V15.6A5.87 5.87 0 009.51 10h17A5.87 5.87 0 0032 15.6v3.93l2-1.25V10a2 2 0 00-2-2H4a2 2 0 00-2 2v16a2 2 0 002 2h14.35zM32 10v4a4.25 4.25 0 01-3.9-4zM4 10h3.9A4.25 4.25 0 014 14zm0 16v-3.94A4.25 4.25 0 017.9 26z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5363
+ const DollarBillPartialShape = clrIconSVG(`<path d="M18 24.55h-.16a5.52 5.52 0 01-1.07-.15 1 1 0 01-.77-1.23 1 1 0 011.22-.72 6.48 6.48 0 00.86.1 3.2 3.2 0 00.62-.09 1 1 0 11.5 1.93 4.74 4.74 0 01-1.2.16zM14.67 22.9a1 1 0 01-.76-.35 6.84 6.84 0 01-1.44-3 1 1 0 012-.43 4.79 4.79 0 001 2.1 1 1 0 01-.12 1.41 1 1 0 01-.68.27zm-1.21-5.33a.78.78 0 01-.22 0 1 1 0 01-.76-1.19 6.87 6.87 0 011.45-3 1 1 0 111.52 1.3 4.87 4.87 0 00-1 2.09 1 1 0 01-.99.8zM21.35 22.88a1 1 0 01-.64-.23 1 1 0 01-.13-1.41 4.88 4.88 0 001-2.1 1 1 0 011.19-.76 1 1 0 01.76 1.18 6.79 6.79 0 01-1.41 3 1 1 0 01-.77.32zm1.19-5.34a1 1 0 01-1-.77 4.85 4.85 0 00-1-2.08 1 1 0 011.52-1.31 6.85 6.85 0 011.46 2.94 1 1 0 01-.75 1.2.82.82 0 01-.23.02zm-5.48-4a1 1 0 01-.23-2 5 5 0 012.34 0 1 1 0 11-.47 1.94 3 3 0 00-1.4 0z"/><path d="M21.57 26H9.49A5.87 5.87 0 004 20.44V15.6A5.87 5.87 0 009.51 10h17A5.87 5.87 0 0032 15.6v3.93l2-1.25V10a2 2 0 00-2-2H4a2 2 0 00-2 2v16a2 2 0 002 2h14.35zM32 10v4a4.25 4.25 0 01-3.9-4zM4 10h3.9A4.25 4.25 0 014 14zm0 16v-3.94A4.25 4.25 0 017.9 26z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5350
5364
  const DollarBillForwardShape = clrIconSVG(`<path d="M24.3 18c0-3.94-2.83-7.15-6.3-7.15s-6.3 3.21-6.3 7.15a7.63 7.63 0 001.85 5.05 3 3 0 011.57.83l.91.9a5.43 5.43 0 002 .37c3.44 0 6.27-3.21 6.27-7.15zm-11 0c0-3.06 2.11-5.55 4.7-5.55s4.7 2.49 4.7 5.55-2.11 5.56-4.7 5.56c-2.59-.02-4.7-2.51-4.7-5.56z"/><path d="M32 8H4a2 2 0 00-2 2v16a2 2 0 00.32 1.08A3.08 3.08 0 013 27h7.17a3 3 0 01-.17-1h-.51A5.87 5.87 0 004 20.44V15.6A5.87 5.87 0 009.51 10h17A5.87 5.87 0 0032 15.6v4.85A5.88 5.88 0 0026.49 26h-9.25l1.88 1.88.1.12H32a2 2 0 002-2V10a2 2 0 00-2-2zM7.9 26H4v-3.94A4.25 4.25 0 017.9 26zM4 14v-4h3.9A4.25 4.25 0 014 14zm28 12h-3.9a4.25 4.25 0 013.9-3.94zm0-12a4.25 4.25 0 01-3.9-4H32z"/><path d="M18.06 28.94l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38l-1.44 1.44a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5351
5365
  const BlocksGroupForwardShape = clrIconSVG(`<path d="M10.17 33H8.42l1.6.74a3 3 0 01.15-.74zM33.53 18.76l-6.93-3.19V6.43a1 1 0 00-.6-.9l-7.5-3.45a1 1 0 00-.84 0l-7.5 3.45a1 1 0 00-.58.91v9.14l-6.9 3.18a1 1 0 00-.58.91v7.48A3 3 0 013 27h1.1v-5.77L10.18 24a1 1 0 00.55.06 1.3 1.3 0 01.15-.18A3 3 0 0113 23h.14l3.94-1.81v4.65l2 2v-6.62L25.19 24a1 1 0 00.81 0l6.08-2.8v7.61l-6.5 3-5.74-2.65A3 3 0 0120 30a3 3 0 01-.3 1.29l5.48 2.52a1 1 0 00.84 0l7.5-3.45a1 1 0 00.58-.91v-9.78a1 1 0 00-.57-.91zM18.1 4.08l5.11 2.35-5.11 2.35L13 6.43zM10.6 22l-5.11-2.33 5.11-2.36 5.11 2.35zm7.5-3.42l-6.5-3V8l6.08 2.8a1 1 0 00.84 0L24.6 8v7.58zM25.61 22l-5.11-2.33 5.11-2.35 5.11 2.35z"/><path d="M18.06 28.94l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38l-1.44 1.44a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5352
5366
  const TextForward = clrIconSVG(`<path d="M26 16.5a1 1 0 01-1 1H11a1 1 0 010-2h14a1 1 0 011 1zm-4.25 4h-7.5a1 1 0 000 2h7.5a1 1 0 000-2zm-10.47-8h13.44a1 1 0 000-2H11.28a1 1 0 000 2zM18 2.5c-8.82 0-16 6.28-16 14A13.31 13.31 0 007.45 27h2.73a3 3 0 01-.15-.64A11.62 11.62 0 014 16.5c0-6.62 6.28-12 14-12s14 5.38 14 12a11.09 11.09 0 01-3.71 8.11 1 1 0 00-.32.73v5.34l-4.38-2.79a1 1 0 00-.83-.11 16.11 16.11 0 01-3.22.64 3 3 0 01.42 2 18.13 18.13 0 002.92-.56l5.53 3.52a1 1 0 001.38-.3 1 1 0 00.21-.58v-6.73a13 13 0 004-9.27c0-7.72-7.18-14-16-14zm.06 26.44l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38l-1.44 1.44a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5353
5367
  const CalculatorForwardShape = clrIconSVG(`<path d="M22 28v2h4v-4h-2v2h-2zM26 20h-2v2h-2v2h4v-4zM13 23a3.05 3.05 0 011 .18V20h-2v2h-2v2h.78l.1-.12A3 3 0 0113 23zM26 14h-2v2h-2v2h4v-4zM6.28 33A2 2 0 008 34h2a3 3 0 01.17-1zM18 26v.76l1.12 1.12A3 3 0 0120 30v-4z"/><path d="M28 2H8a2 2 0 00-2 2v23h2V4h20v28h-8.78l-.1.12L17.24 34H28a2 2 0 002-2V4a2 2 0 00-2-2z"/><path d="M10 7v4.67h2V8h13.67V6H11a1 1 0 00-1 1zM10 18h4v-4h-2v2h-2v2zM20 20h-2v2h-2v2h4v-4zM20 14h-2v2h-2v2h4v-4zM18.06 28.94l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38l-1.44 1.44a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5354
5368
  const BundleForwardShape = clrIconSVG(`<path d="M32.43 8.35l-13-6.21a1 1 0 00-.87 0l-15 7.24a1 1 0 00-.57.9v16.55A1 1 0 003 27h3.67L5 26.2V12.13l11 5.27v7.36l2 2v-9.4l13-6.29v14.1l-11 5.34a2.88 2.88 0 01-.83 1.61L17.26 34a1.46 1.46 0 00.2-.05l15-7.24a1 1 0 00.57-.9V9.25a1 1 0 00-.6-.9zM17 15.64L6 10.41l5.9-2.85 10.7 5.35zm7.88-3.83L14.21 6.46 19 4.15l10.93 5.22z"/><path d="M18.06 28.94l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38l-1.44 1.44a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5369
+ const InternalPartForwardShape = clrIconSVG(`<path d="M9.9945,18.971a2.7725,2.7725,0,0,0,.001-5.545h-.004l.003.001a2.772,2.772,0,0,0,0,5.544Zm-.008-3.906a1.134,1.134,0,0,1,1.138,1.13v.004a1.134,1.134,0,1,1-1.138-1.134Z"/><path d="M18.0005,5.42v6.161H22.11V29.739h6.561l.123-18.158h3.992V5.42Zm9.044,22.679-3.296-.002v-2.65l3.307,1.052Zm.023-3.312-3.319-1.056V21.535l3.334,1.062Zm.026-3.906-3.345-1.065V17.774l3.36,1.071Zm.025-3.753-3.371-1.072V13.9109l3.387,1.0771Zm.03-3.86-3.4-1.081v-.61h3.409Zm-7.51-3.327V7.059h11.509l.001,2.882Z"/><path d="M13.38,22.36l3.388-6.161L13.38,10.038H6.6025l-3.388,6.161,3.388,6.161ZM7.5715,11.674h4.843l2.486,4.522-2.486,4.525H7.5715l-2.487-4.522Z"/><path d="M3.2145,29.76h13.554V24.831H3.2145Zm1.639-3.2859H15.13v1.651H4.8535Z"/><path d="M8.6811,8.8945a.4812.4812,0,0,0,.7819-.3758v-1.74L12.2255,8.9A.4813.4813,0,0,0,13,8.5187V2.4813A.4814.4814,0,0,0,12.2255,2.1L9.463,4.2216v-1.74a.4813.4813,0,0,0-.7819-.3759L4.9077,5.1242a.4812.4812,0,0,0,0,.7515Z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5370
+ const ExternalPartForwardShape = clrIconSVG(`<path d="M18.0005,5.42v6.161H22.11V29.739h6.561l.123-18.158h3.992V5.42Zm9.044,22.679-3.296-.002v-2.65l3.307,1.052Zm.023-3.312-3.319-1.056V21.535l3.334,1.062Zm.026-3.906-3.345-1.065V17.774l3.36,1.071Zm.025-3.753-3.371-1.072V13.9109l3.387,1.0771Zm.03-3.86-3.4-1.081v-.61h3.409Zm-7.51-3.327V7.059h11.509l.001,2.882Z"/><path d="M13.38,22.36l3.388-6.161L13.38,10.038H6.6026l-3.388,6.161,3.388,6.161ZM7.5716,11.674h4.8429l2.486,4.522-2.486,4.525H7.5716l-2.487-4.522Z"/><path d="M9.9945,18.971a2.7725,2.7725,0,0,0,.0011-5.545H9.9915l.003.001a2.772,2.772,0,0,0,0,5.544Zm-.008-3.906a1.134,1.134,0,0,1,1.138,1.13v.004a1.1337,1.1337,0,0,1-1.132,1.1336l.002,0H9.9906l.0019,0a1.1338,1.1338,0,0,1-.006-2.2676Z"/><polygon points="16.766 24.83 16.076 24.83 16.766 25.52 16.766 24.83"/><path d="M14.0606,24.94A1.5,1.5,0,0,0,11.94,27.0613l1.4394,1.44H3a1.5,1.5,0,1,0,0,3H13.3789L11.94,32.94a1.5,1.5,0,1,0,2.1211,2.1211l4-4a1.5,1.5,0,0,0,0-2.1211Z"/><path d="M3.2161,24.83V27h1.64v-.53h5.18a2.41,2.41,0,0,1-.04-.47,2.9166,2.9166,0,0,1,.24-1.17Z"/><path d="M8.6811,8.8945a.4812.4812,0,0,0,.7819-.3758v-1.74L12.2255,8.9A.4812.4812,0,0,0,13,8.5187V2.4813A.4814.4814,0,0,0,12.2255,2.1L9.463,4.2216v-1.74a.4813.4813,0,0,0-.7819-.3759L4.9077,5.1242a.4812.4812,0,0,0,0,.7515Z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
5355
5371
  const ClrAddonsIconShapes = {
5356
5372
  'air-conditioner': ACShape,
5357
5373
  accessories: AccessoriesShape,
@@ -5446,12 +5462,14 @@ const ClrAddonsIconShapes = {
5446
5462
  'paint-material-fwd': PaintMaterialForwardShape,
5447
5463
  'items-receive': ItemsRecieveShape,
5448
5464
  'items-forward': ItemsForwardShape,
5449
- 'dollar-bill': DollarBillShape,
5465
+ 'money-partial': DollarBillPartialShape,
5450
5466
  'money-fwd': DollarBillForwardShape,
5451
5467
  'blocksgroup-fwd': BlocksGroupForwardShape,
5452
5468
  'text-fwd': TextForward,
5453
5469
  'calculator-fwd': CalculatorForwardShape,
5454
5470
  'bundle-fwd': BundleForwardShape,
5471
+ 'part-return': InternalPartForwardShape,
5472
+ 'part-return-fwd': ExternalPartForwardShape,
5455
5473
  };
5456
5474
 
5457
5475
  /*
@@ -5494,5 +5512,5 @@ const ClrAddonsIconShapes = {
5494
5512
  * Generated bundle index. Do not edit.
5495
5513
  */
5496
5514
 
5497
- export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CaliforniaSpecialistShape, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridStatePersistenceModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrLetterAvatar, ClrLetterAvatarModule, ClrLocationBarModule, ClrMainNavGroup, ClrMainNavGroupItem, ClrMainNavGroupModule, ClrMaxNumeric, ClrMinNumeric, ClrMultilingualInput, ClrMultilingualInputValidators, ClrMultilingualModule, ClrMultilingualSelector, ClrMultilingualTextarea, ClrNotification, ClrNotificationModule, ClrNotificationRef, ClrNotificationService, ClrNumericField, ClrNumericFieldModule, ClrNumericFieldValidators, ClrPagedSearchResultList, ClrPagedSearchResultListModule, ClrPager, ClrPagerModule, ClrProgressSpinnerComponent, ClrProgressSpinnerModule, ClrQuickList, ClrQuickListModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, ConfiguratorCommercialShape, ConfiguratorPrivateShape, ConsumptionShape, ContactDealerShape, CupraBrandShape, CustomersCenterShape, DWABrandShape, DatagridFieldDirective, DieselShape, DollarBillForwardShape, DollarBillShape, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, ItemsForwardShape, ItemsRecieveShape, LoadingVolumeShape, LocateShape, LocationBarComponent, LocationBarContentProvider, LocationBarNode, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintMaterialForwardShape, PaintMaterialShape, PaintShopShape, PartNonStockForwardShape, PartsForwardShape, PartsNonStockShape, PartsShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RoadsideAssistanceShape, RouteShape, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StatePersistenceKeyDirective, StockLocatorCommercialShape, StockLocatorPrivateShape, TaskAndAppointment, TaxiDealerShape, TextForward, TopcardShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, WrenchForward, clrIconSVG, escapeHtml, escapeRegex };
5515
+ export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CaliforniaSpecialistShape, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridStatePersistenceModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrLetterAvatar, ClrLetterAvatarModule, ClrLocationBarModule, ClrMainNavGroup, ClrMainNavGroupItem, ClrMainNavGroupModule, ClrMaxNumeric, ClrMinNumeric, ClrMultilingualInput, ClrMultilingualInputValidators, ClrMultilingualModule, ClrMultilingualSelector, ClrMultilingualTextarea, ClrNotification, ClrNotificationModule, ClrNotificationRef, ClrNotificationService, ClrNumericField, ClrNumericFieldModule, ClrNumericFieldValidators, ClrPagedSearchResultList, ClrPagedSearchResultListModule, ClrPager, ClrPagerModule, ClrProgressSpinnerComponent, ClrProgressSpinnerModule, ClrQuickList, ClrQuickListModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, ConfiguratorCommercialShape, ConfiguratorPrivateShape, ConsumptionShape, ContactDealerShape, CupraBrandShape, CustomersCenterShape, DWABrandShape, DatagridFieldDirective, DieselShape, DollarBillForwardShape, DollarBillPartialShape, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, ExternalPartForwardShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, InternalPartForwardShape, ItemsForwardShape, ItemsRecieveShape, LoadingVolumeShape, LocateShape, LocationBarComponent, LocationBarContentProvider, LocationBarNode, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintMaterialForwardShape, PaintMaterialShape, PaintShopShape, PartNonStockForwardShape, PartsForwardShape, PartsNonStockShape, PartsShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RoadsideAssistanceShape, RouteShape, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StatePersistenceKeyDirective, StockLocatorCommercialShape, StockLocatorPrivateShape, TaskAndAppointment, TaxiDealerShape, TextForward, TopcardShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, WrenchForward, clrIconSVG, escapeHtml, escapeRegex };
5498
5516
  //# sourceMappingURL=clr-addons.mjs.map