@porscheinformatik/clr-addons 12.8.3 → 12.9.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -4814,6 +4814,185 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
4814
4814
  }]
4815
4815
  }] });
4816
4816
 
4817
+ /*
4818
+ * Copyright (c) 2016-2022 VMware, Inc. All Rights Reserved.
4819
+ * This software is released under MIT license.
4820
+ * The full license information can be found in LICENSE in the root directory of this project.
4821
+ */
4822
+ /**
4823
+ * Generic accessor for deep object properties
4824
+ * that can be specified as simple dot-separated strings.
4825
+ */
4826
+ class NestedProperty {
4827
+ constructor(prop) {
4828
+ this.prop = prop;
4829
+ if (prop.indexOf('.') >= 0) {
4830
+ this.splitProp = prop.split('.');
4831
+ }
4832
+ }
4833
+ // Safe getter for a deep object property, will not throw an error but return
4834
+ // undefined if one of the intermediate properties is null or undefined.
4835
+ getPropValue(item) {
4836
+ if (this.splitProp) {
4837
+ let value = item;
4838
+ for (const nestedProp of this.splitProp) {
4839
+ if (value === null ||
4840
+ typeof value === 'undefined' ||
4841
+ typeof value[nestedProp] === 'undefined') {
4842
+ return undefined;
4843
+ }
4844
+ value = value[nestedProp];
4845
+ }
4846
+ return value;
4847
+ }
4848
+ else {
4849
+ return item[this.prop];
4850
+ }
4851
+ }
4852
+ }
4853
+
4854
+ class ClrDateFilterComponent {
4855
+ constructor(filterContainer, commonStrings) {
4856
+ this.commonStrings = commonStrings;
4857
+ this.filterValueChange = new EventEmitter();
4858
+ /**
4859
+ * Internal values and accessor
4860
+ */
4861
+ this._from = null;
4862
+ this._to = null;
4863
+ /**
4864
+ * The Observable required as part of the Filter interface
4865
+ */
4866
+ this._changes = new Subject();
4867
+ filterContainer.setFilter(this);
4868
+ }
4869
+ set property(value) {
4870
+ this.nestedProp = new NestedProperty(value);
4871
+ }
4872
+ get maxPlaceholderValue() {
4873
+ return this.maxPlaceholder || this.commonStrings.keys.maxValue;
4874
+ }
4875
+ get minPlaceholderValue() {
4876
+ return this.minPlaceholder || this.commonStrings.keys.minValue;
4877
+ }
4878
+ set value(values) {
4879
+ if (Array.isArray(values)) {
4880
+ if (values && (values[0] !== this._from || values[1] !== this._to)) {
4881
+ if (typeof values[0] === 'object') {
4882
+ this._from = values[0];
4883
+ }
4884
+ else {
4885
+ this._from = null;
4886
+ }
4887
+ if (typeof values[1] === 'object') {
4888
+ this._to = values[1];
4889
+ }
4890
+ else {
4891
+ this._to = null;
4892
+ }
4893
+ this._changes.next(values);
4894
+ }
4895
+ }
4896
+ }
4897
+ get from() {
4898
+ return this._from;
4899
+ }
4900
+ set from(from) {
4901
+ if (typeof from === 'object' && from !== this._from) {
4902
+ if (from && typeof from.setHours === 'function') {
4903
+ from.setHours(0, 0, 0, 0); // set from-date to start of day
4904
+ }
4905
+ this._from = from;
4906
+ this._changes.next([this._from, this._to]);
4907
+ this.filterValueChange.emit([this._from, this._to]);
4908
+ }
4909
+ }
4910
+ get to() {
4911
+ return this._to;
4912
+ }
4913
+ set to(to) {
4914
+ if (typeof to === 'object' && to !== this._to) {
4915
+ if (to && typeof to.setHours === 'function') {
4916
+ to.setHours(23, 59, 59, 999); // set to-date to end of day
4917
+ }
4918
+ this._to = to;
4919
+ this._changes.next([this._from, this._to]);
4920
+ this.filterValueChange.emit([this._from, this._to]);
4921
+ }
4922
+ }
4923
+ /**
4924
+ * Indicates if the filter is currently active, (at least one input is set)
4925
+ */
4926
+ isActive() {
4927
+ return this._from !== null || this._to !== null;
4928
+ }
4929
+ accepts(item) {
4930
+ const propValue = this.nestedProp.getPropValue(item);
4931
+ if (propValue === undefined) {
4932
+ return false;
4933
+ }
4934
+ if (this._from !== null && (!(propValue instanceof Date) || propValue.getTime() < this._from.getTime())) {
4935
+ return false;
4936
+ }
4937
+ if (this._to !== null && (!(propValue instanceof Date) || propValue.getTime() > this._to.getTime())) {
4938
+ return false;
4939
+ }
4940
+ return true;
4941
+ }
4942
+ // We do not want to expose the Subject itself, but the Observable which is read-only
4943
+ get changes() {
4944
+ return this._changes.asObservable();
4945
+ }
4946
+ get state() {
4947
+ return {
4948
+ property: this.nestedProp,
4949
+ from: this._from,
4950
+ to: this._to,
4951
+ };
4952
+ }
4953
+ equals(other) {
4954
+ return other === this;
4955
+ }
4956
+ ngOnDestroy() {
4957
+ throw new Error('Method not implemented.');
4958
+ }
4959
+ }
4960
+ ClrDateFilterComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrDateFilterComponent, deps: [{ token: i1.ClrDatagridFilter }, { token: i1.ClrCommonStringsService }], target: i0.ɵɵFactoryTarget.Component });
4961
+ ClrDateFilterComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "12.0.0", version: "13.3.11", type: ClrDateFilterComponent, selector: "clr-date-filter", inputs: { property: ["clrProperty", "property"], maxPlaceholder: ["clrFilterMaxPlaceholder", "maxPlaceholder"], minPlaceholder: ["clrFilterMinPlaceholder", "minPlaceholder"], value: ["clrFilterValue", "value"] }, outputs: { filterValueChange: "clrFilterValueChange" }, ngImport: i0, template: "<clr-date-container>\n <input\n #input_from\n type=\"date\"\n name=\"from\"\n class=\"datagrid-date-filter-input\"\n [(clrDate)]=\"from\"\n [placeholder]=\"minPlaceholderValue\"\n [attr.aria-label]=\"minPlaceholderValue\"\n />\n</clr-date-container>\n<clr-date-container>\n <input\n type=\"date\"\n name=\"to\"\n class=\"datagrid-date-filter-input\"\n [(clrDate)]=\"to\"\n [placeholder]=\"maxPlaceholderValue\"\n [attr.aria-label]=\"maxPlaceholderValue\"\n />\n</clr-date-container>\n", styles: [""], components: [{ type: i1.ClrDateContainer, selector: "clr-date-container", inputs: ["clrPosition"] }], directives: [{ type: i1.ClrDateInput, selector: "[clrDate]", inputs: ["placeholder", "clrDate", "min", "max", "disabled"], outputs: ["clrDateChange"] }] });
4962
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrDateFilterComponent, decorators: [{
4963
+ type: Component,
4964
+ args: [{ selector: 'clr-date-filter', template: "<clr-date-container>\n <input\n #input_from\n type=\"date\"\n name=\"from\"\n class=\"datagrid-date-filter-input\"\n [(clrDate)]=\"from\"\n [placeholder]=\"minPlaceholderValue\"\n [attr.aria-label]=\"minPlaceholderValue\"\n />\n</clr-date-container>\n<clr-date-container>\n <input\n type=\"date\"\n name=\"to\"\n class=\"datagrid-date-filter-input\"\n [(clrDate)]=\"to\"\n [placeholder]=\"maxPlaceholderValue\"\n [attr.aria-label]=\"maxPlaceholderValue\"\n />\n</clr-date-container>\n", styles: [""] }]
4965
+ }], ctorParameters: function () { return [{ type: i1.ClrDatagridFilter }, { type: i1.ClrCommonStringsService }]; }, propDecorators: { property: [{
4966
+ type: Input,
4967
+ args: ['clrProperty']
4968
+ }], maxPlaceholder: [{
4969
+ type: Input,
4970
+ args: ['clrFilterMaxPlaceholder']
4971
+ }], minPlaceholder: [{
4972
+ type: Input,
4973
+ args: ['clrFilterMinPlaceholder']
4974
+ }], value: [{
4975
+ type: Input,
4976
+ args: ['clrFilterValue']
4977
+ }], filterValueChange: [{
4978
+ type: Output,
4979
+ args: ['clrFilterValueChange']
4980
+ }] } });
4981
+
4982
+ class ClrDateFilterModule {
4983
+ }
4984
+ ClrDateFilterModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrDateFilterModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4985
+ ClrDateFilterModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrDateFilterModule, declarations: [ClrDateFilterComponent], imports: [ClarityModule, CommonModule, FormsModule], exports: [ClrDateFilterComponent] });
4986
+ ClrDateFilterModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrDateFilterModule, imports: [[ClarityModule, CommonModule, FormsModule]] });
4987
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrDateFilterModule, decorators: [{
4988
+ type: NgModule,
4989
+ args: [{
4990
+ imports: [ClarityModule, CommonModule, FormsModule],
4991
+ declarations: [ClrDateFilterComponent],
4992
+ exports: [ClrDateFilterComponent],
4993
+ }]
4994
+ }] });
4995
+
4817
4996
  /*
4818
4997
  * Copyright (c) 2018-2022 Porsche Informatik. All Rights Reserved.
4819
4998
  * This software is released under MIT license.
@@ -4850,7 +5029,8 @@ ClrAddonsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
4850
5029
  ClrFormModule,
4851
5030
  ClrDropdownOverflowModule,
4852
5031
  ClrDatagridStatePersistenceModule,
4853
- ClrEnumFilterModule] });
5032
+ ClrEnumFilterModule,
5033
+ ClrDateFilterModule] });
4854
5034
  ClrAddonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrAddonsModule, imports: [ClrViewEditSectionModule,
4855
5035
  ClrPagerModule,
4856
5036
  ClrDotPagerModule,
@@ -4879,7 +5059,8 @@ ClrAddonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
4879
5059
  ClrFormModule,
4880
5060
  ClrDropdownOverflowModule,
4881
5061
  ClrDatagridStatePersistenceModule,
4882
- ClrEnumFilterModule] });
5062
+ ClrEnumFilterModule,
5063
+ ClrDateFilterModule] });
4883
5064
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImport: i0, type: ClrAddonsModule, decorators: [{
4884
5065
  type: NgModule,
4885
5066
  args: [{
@@ -4913,6 +5094,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.11", ngImpo
4913
5094
  ClrDropdownOverflowModule,
4914
5095
  ClrDatagridStatePersistenceModule,
4915
5096
  ClrEnumFilterModule,
5097
+ ClrDateFilterModule,
4916
5098
  ],
4917
5099
  }]
4918
5100
  }] });
@@ -5375,12 +5557,12 @@ const BundleForwardShape = clrIconSVG(`<path d="M32.43 8.35l-13-6.21a1 1 0 00-.8
5375
5557
  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');
5376
5558
  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');
5377
5559
  const BusinessPartnerWithCar = clrIconSVG('<g clip-path="url(#clip0_10808_12864)">' +
5378
- '<path d="M30.2941 20H23.6801C22.8807 20.0774 22.162 20.5351 21.7623 21.2313L21.7526 21.2506L21.7429 21.2699L20.9887 23.1007C20.5278 23.033 20.0604 22.9557 19.5737 22.8687L19.5447 22.8622H19.1869L19.1515 23.1426L19.0387 23.9871L19 24.2901L19.303 24.3449C19.6479 24.4061 20.0056 24.4674 20.3892 24.5254L20.1797 25.0314C19.7832 25.7051 19.577 26.4754 19.5802 27.2587V31.4746C19.5608 32.2288 20.1668 32.8703 20.9307 32.8928H22.2297C23.0064 32.8703 23.6156 32.2288 23.5963 31.4617H30.3973V31.4746C30.3876 31.8388 30.5262 32.1934 30.7808 32.4609C31.0387 32.7317 31.3836 32.8832 31.7542 32.8928H33.05C33.8203 32.867 34.423 32.2256 34.4037 31.4682V27.2587C34.4037 26.4786 34.2006 25.7083 33.8106 25.0314L33.5915 24.5028C33.9525 24.448 34.3199 24.39 34.6873 24.3191L35 24.2579L34.942 23.9452L34.7873 23.1072L34.7292 22.7913L34.4134 22.8493C33.9492 22.9331 33.4915 23.0073 32.9952 23.0814L32.2409 21.2699L32.2345 21.2506L32.2248 21.2345C31.8251 20.5351 31.1096 20.0741 30.3102 20H30.2941ZM23.7897 21.502H30.1942C30.4714 21.5439 30.7131 21.7019 30.8646 21.9371L31.4448 23.2748C29.9686 23.4359 28.473 23.5165 26.9903 23.5165C25.5077 23.5165 24.0121 23.4359 22.5359 23.2716L23.1096 21.9339C23.2643 21.6954 23.5093 21.5375 23.7897 21.4988V21.502ZM26.8582 25.0411C28.5729 25.0379 30.3038 24.9283 32.0056 24.7188C32.0056 24.7188 32.6696 26.1821 32.7341 26.4174C31.8735 26.5431 30.9839 26.6398 30.0814 26.7107L29.7623 26.7365L29.7881 27.0556L29.8525 27.9065L29.8783 28.2288L30.2006 28.2063C31.0322 28.145 31.9025 28.0483 32.8598 27.9162V31.394H31.9122V29.9629H22.0846V31.394H21.0725V27.9807C22.0588 28.116 22.9549 28.2127 23.8026 28.274L24.1249 28.2965L24.1475 27.9742L24.2119 27.1168L24.2377 26.7945L23.9154 26.772C23.0032 26.7043 22.0846 26.6076 21.1853 26.4819C21.2498 26.2337 21.8622 24.7381 21.8622 24.7381C23.5157 24.9412 25.1918 25.0443 26.855 25.0443L26.8582 25.0411ZM26.9936 26.7043C26.4617 26.7043 26.0266 27.1555 26.0266 27.7099C26.0266 28.2643 26.4617 28.7156 26.9936 28.7156C27.5254 28.7156 27.9605 28.2643 27.9605 27.7099C27.9605 27.1555 27.5254 26.7043 26.9936 26.7043Z" fill="black"/>' +
5560
+ '<path d="M30.2941 20H23.6801C22.8807 20.0774 22.162 20.5351 21.7623 21.2313L21.7526 21.2506L21.7429 21.2699L20.9887 23.1007C20.5278 23.033 20.0604 22.9557 19.5737 22.8687L19.5447 22.8622H19.1869L19.1515 23.1426L19.0387 23.9871L19 24.2901L19.303 24.3449C19.6479 24.4061 20.0056 24.4674 20.3892 24.5254L20.1797 25.0314C19.7832 25.7051 19.577 26.4754 19.5802 27.2587V31.4746C19.5608 32.2288 20.1668 32.8703 20.9307 32.8928H22.2297C23.0064 32.8703 23.6156 32.2288 23.5963 31.4617H30.3973V31.4746C30.3876 31.8388 30.5262 32.1934 30.7808 32.4609C31.0387 32.7317 31.3836 32.8832 31.7542 32.8928H33.05C33.8203 32.867 34.423 32.2256 34.4037 31.4682V27.2587C34.4037 26.4786 34.2006 25.7083 33.8106 25.0314L33.5915 24.5028C33.9525 24.448 34.3199 24.39 34.6873 24.3191L35 24.2579L34.942 23.9452L34.7873 23.1072L34.7292 22.7913L34.4134 22.8493C33.9492 22.9331 33.4915 23.0073 32.9952 23.0814L32.2409 21.2699L32.2345 21.2506L32.2248 21.2345C31.8251 20.5351 31.1096 20.0741 30.3102 20H30.2941ZM23.7897 21.502H30.1942C30.4714 21.5439 30.7131 21.7019 30.8646 21.9371L31.4448 23.2748C29.9686 23.4359 28.473 23.5165 26.9903 23.5165C25.5077 23.5165 24.0121 23.4359 22.5359 23.2716L23.1096 21.9339C23.2643 21.6954 23.5093 21.5375 23.7897 21.4988V21.502ZM26.8582 25.0411C28.5729 25.0379 30.3038 24.9283 32.0056 24.7188C32.0056 24.7188 32.6696 26.1821 32.7341 26.4174C31.8735 26.5431 30.9839 26.6398 30.0814 26.7107L29.7623 26.7365L29.7881 27.0556L29.8525 27.9065L29.8783 28.2288L30.2006 28.2063C31.0322 28.145 31.9025 28.0483 32.8598 27.9162V31.394H31.9122V29.9629H22.0846V31.394H21.0725V27.9807C22.0588 28.116 22.9549 28.2127 23.8026 28.274L24.1249 28.2965L24.1475 27.9742L24.2119 27.1168L24.2377 26.7945L23.9154 26.772C23.0032 26.7043 22.0846 26.6076 21.1853 26.4819C21.2498 26.2337 21.8622 24.7381 21.8622 24.7381C23.5157 24.9412 25.1918 25.0443 26.855 25.0443L26.8582 25.0411ZM26.9936 26.7043C26.4617 26.7043 26.0266 27.1555 26.0266 27.7099C26.0266 28.2643 26.4617 28.7156 26.9936 28.7156C27.5254 28.7156 27.9605 28.2643 27.9605 27.7099C27.9605 27.1555 27.5254 26.7043 26.9936 26.7043Z"/>' +
5379
5561
  '</g>' +
5380
- '<path fill-rule="evenodd" clip-rule="evenodd" d="M18 17C19.3845 17 20.7378 16.5895 21.889 15.8203C23.0401 15.0511 23.9373 13.9579 24.4672 12.6788C24.997 11.3997 25.1356 9.99224 24.8655 8.63437C24.5954 7.2765 23.9287 6.02922 22.9497 5.05026C21.9708 4.07129 20.7235 3.4046 19.3656 3.13451C18.0078 2.86441 16.6003 3.00303 15.3212 3.53285C14.0421 4.06266 12.9489 4.95987 12.1797 6.11101C11.4105 7.26216 11 8.61553 11 10C11 11.8565 11.7375 13.637 13.0503 14.9497C14.363 16.2625 16.1435 17 18 17ZM18 5C18.9889 5 19.9556 5.29325 20.7779 5.84265C21.6001 6.39206 22.241 7.17296 22.6194 8.08659C22.9978 9.00022 23.0969 10.0055 22.9039 10.9755C22.711 11.9454 22.2348 12.8363 21.5355 13.5355C20.8363 14.2348 19.9454 14.711 18.9755 14.9039C18.0055 15.0969 17.0002 14.9978 16.0866 14.6194C15.173 14.241 14.3921 13.6001 13.8427 12.7779C13.2932 11.9556 13 10.9889 13 10C13 8.67392 13.5268 7.40215 14.4645 6.46447C15.4021 5.52679 16.6739 5 18 5ZM7 31H17.0275C17.0093 31.1642 17 31.331 17 31.5C17 32.026 17.0902 32.5308 17.2561 33H7C6.46957 33 5.96086 32.7893 5.58579 32.4142C5.21072 32.0391 5 31.5304 5 31V25.74C4.99921 25.2313 5.19231 24.7414 5.54 24.37C7.14369 22.675 9.07623 21.3249 11.2195 20.4022C13.3627 19.4795 15.6716 19.0036 18.005 19.0036C18.7916 19.0036 19.5754 19.0577 20.3511 19.1647C19.7711 19.65 19.3467 20.2816 19.1404 21.0494C18.7615 21.0208 18.3811 21.0065 18 21.0065C15.942 21.0065 13.9054 21.4252 12.0144 22.2373C10.1233 23.0493 8.41723 24.2377 7 25.73V31Z" fill="black"/>\n' +
5562
+ '<path fill-rule="evenodd" clip-rule="evenodd" d="M18 17C19.3845 17 20.7378 16.5895 21.889 15.8203C23.0401 15.0511 23.9373 13.9579 24.4672 12.6788C24.997 11.3997 25.1356 9.99224 24.8655 8.63437C24.5954 7.2765 23.9287 6.02922 22.9497 5.05026C21.9708 4.07129 20.7235 3.4046 19.3656 3.13451C18.0078 2.86441 16.6003 3.00303 15.3212 3.53285C14.0421 4.06266 12.9489 4.95987 12.1797 6.11101C11.4105 7.26216 11 8.61553 11 10C11 11.8565 11.7375 13.637 13.0503 14.9497C14.363 16.2625 16.1435 17 18 17ZM18 5C18.9889 5 19.9556 5.29325 20.7779 5.84265C21.6001 6.39206 22.241 7.17296 22.6194 8.08659C22.9978 9.00022 23.0969 10.0055 22.9039 10.9755C22.711 11.9454 22.2348 12.8363 21.5355 13.5355C20.8363 14.2348 19.9454 14.711 18.9755 14.9039C18.0055 15.0969 17.0002 14.9978 16.0866 14.6194C15.173 14.241 14.3921 13.6001 13.8427 12.7779C13.2932 11.9556 13 10.9889 13 10C13 8.67392 13.5268 7.40215 14.4645 6.46447C15.4021 5.52679 16.6739 5 18 5ZM7 31H17.0275C17.0093 31.1642 17 31.331 17 31.5C17 32.026 17.0902 32.5308 17.2561 33H7C6.46957 33 5.96086 32.7893 5.58579 32.4142C5.21072 32.0391 5 31.5304 5 31V25.74C4.99921 25.2313 5.19231 24.7414 5.54 24.37C7.14369 22.675 9.07623 21.3249 11.2195 20.4022C13.3627 19.4795 15.6716 19.0036 18.005 19.0036C18.7916 19.0036 19.5754 19.0577 20.3511 19.1647C19.7711 19.65 19.3467 20.2816 19.1404 21.0494C18.7615 21.0208 18.3811 21.0065 18 21.0065C15.942 21.0065 13.9054 21.4252 12.0144 22.2373C10.1233 23.0493 8.41723 24.2377 7 25.73V31Z"/>\n' +
5381
5563
  '<defs>' +
5382
5564
  '<clipPath id="clip0_10808_12864">' +
5383
- '<rect width="16" height="12.8928" fill="white" transform="translate(19 20)"/>' +
5565
+ '<rect width="16" height="12.8928" transform="translate(19 20)"/>' +
5384
5566
  '</clipPath>' +
5385
5567
  '</defs>', '0 0 36 36');
5386
5568
  const ClrAddonsIconShapes = {
@@ -5522,5 +5704,5 @@ const ClrAddonsIconShapes = {
5522
5704
  * Generated bundle index. Do not edit.
5523
5705
  */
5524
5706
 
5525
- export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, 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 };
5707
+ export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, 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, ClrDateFilterComponent, ClrDateFilterModule, 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 };
5526
5708
  //# sourceMappingURL=clr-addons.mjs.map