@porscheinformatik/clr-addons 19.0.5 → 19.0.7

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.
@@ -4138,7 +4138,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
4138
4138
  */
4139
4139
  ClarityIcons.addIcons(angleIcon, pencilIcon);
4140
4140
  class ClrViewEditSection {
4141
- constructor() {
4141
+ set editMode(value) {
4142
+ this._editMode = value;
4143
+ if (value) {
4144
+ this.toggleCollapsed(false);
4145
+ }
4146
+ }
4147
+ get editMode() {
4148
+ return this._editMode;
4149
+ }
4150
+ constructor(cdr) {
4151
+ this.cdr = cdr;
4142
4152
  this._saveText = 'Save';
4143
4153
  this._preventSave = false;
4144
4154
  this._cancelText = 'Cancel';
@@ -4151,15 +4161,11 @@ class ClrViewEditSection {
4151
4161
  this._submitted = new EventEmitter(false);
4152
4162
  this._cancelled = new EventEmitter(false);
4153
4163
  this._editMode = false;
4164
+ this.initialized = false;
4154
4165
  }
4155
- set editMode(value) {
4156
- this._editMode = value;
4157
- if (value) {
4158
- this.toggleCollapsed(false);
4159
- }
4160
- }
4161
- get editMode() {
4162
- return this._editMode;
4166
+ ngAfterViewInit() {
4167
+ this.initialized = true;
4168
+ this.cdr.detectChanges();
4163
4169
  }
4164
4170
  onSubmit() {
4165
4171
  this._submitted.emit();
@@ -4191,8 +4197,8 @@ class ClrViewEditSection {
4191
4197
  this.toggleCollapsed(true);
4192
4198
  }
4193
4199
  }
4194
- static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ClrViewEditSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
4195
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: ClrViewEditSection, isStandalone: false, selector: "clr-view-edit-section", inputs: { _title: ["clrTitle", "_title"], _saveText: ["clrSaveText", "_saveText"], _preventSave: ["clrPreventModeChangeOnSave", "_preventSave"], _cancelText: ["clrCancelText", "_cancelText"], _editable: ["clrEditable", "_editable"], _editIcon: ["clrEditIcon", "_editIcon"], _isCollapsible: ["clrIsCollapsible", "_isCollapsible"], _isCollapsed: ["clrIsCollapsed", "_isCollapsed"], viewRef: ["clrViewRef", "viewRef"], editRef: ["clrEditRef", "editRef"], editMode: ["clrEditMode", "editMode"] }, outputs: { _isCollapsedChange: "clrIsCollapsedChange", _editModeChanged: "clrEditModeChange", _submitted: "clrSectionSubmitted", _cancelled: "clrSectionEditCancelled" }, ngImport: i0, template: "<div class=\"card view-edit-section\" (keyup.escape)=\"onCancel()\">\n <div class=\"card-block\">\n <div class=\"card-title\">\n {{_title}}\n <button\n type=\"button\"\n (click)=\"onCollapseExpand()\"\n class=\"btn btn-icon btn-link ces-caret-btn\"\n *ngIf=\"_isCollapsible && !editMode\"\n >\n <cds-icon shape=\"angle\" direction=\"up\" size=\"20\" class=\"ces-caret-icon\" [@rotateIcon]=\"_isCollapsed\"></cds-icon>\n </button>\n <div class=\"ves-actions\">\n <button\n type=\"button\"\n (click)=\"onEdit()\"\n class=\"btn btn-icon btn-link ves-action\"\n *ngIf=\"_editable && !editMode && actionBlock.children.length == 0\"\n >\n <cds-icon class=\"ves-edit-icon\" [attr.shape]=\"_editIcon\" size=\"20\"></cds-icon>\n </button>\n <div #actionBlock>\n <ng-content select=\"[action-block]\"></ng-content>\n </div>\n </div>\n </div>\n <div class=\"card-text\" [@collapseExpandAnimation] *ngIf=\"!(_isCollapsed && _isCollapsible)\">\n <ng-template [ngTemplateOutlet]=\"viewRef\" *ngIf=\"!editMode\"></ng-template>\n <ng-template [ngTemplateOutlet]=\"editRef\" *ngIf=\"editMode\"></ng-template>\n <ng-container *ngIf=\"editMode\">\n <form clrForm (ngSubmit)=\"onSubmit()\" class=\"button-bar\">\n <button class=\"btn btn-primary ves-save\" type=\"submit\">{{_saveText}}</button>\n <button class=\"btn ves-cancel\" (click)=\"onCancel()\" type=\"button\">{{_cancelText}}</button>\n </form>\n </ng-container>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.CdsIconCustomTag, selector: "cds-icon" }, { kind: "directive", type: i2.ClrForm, selector: "[clrForm]", inputs: ["clrLabelSize"] }, { kind: "directive", type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }], animations: [
4200
+ static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ClrViewEditSection, deps: [{ token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
4201
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: ClrViewEditSection, isStandalone: false, selector: "clr-view-edit-section", inputs: { _title: ["clrTitle", "_title"], _saveText: ["clrSaveText", "_saveText"], _preventSave: ["clrPreventModeChangeOnSave", "_preventSave"], _cancelText: ["clrCancelText", "_cancelText"], _editable: ["clrEditable", "_editable"], _editIcon: ["clrEditIcon", "_editIcon"], _isCollapsible: ["clrIsCollapsible", "_isCollapsible"], _isCollapsed: ["clrIsCollapsed", "_isCollapsed"], viewRef: ["clrViewRef", "viewRef"], editRef: ["clrEditRef", "editRef"], editMode: ["clrEditMode", "editMode"] }, outputs: { _isCollapsedChange: "clrIsCollapsedChange", _editModeChanged: "clrEditModeChange", _submitted: "clrSectionSubmitted", _cancelled: "clrSectionEditCancelled" }, ngImport: i0, template: "<div class=\"card view-edit-section\" (keyup.escape)=\"onCancel()\">\n <div class=\"card-block\">\n <div class=\"card-title\">\n {{ _title }}\n <button\n type=\"button\"\n (click)=\"onCollapseExpand()\"\n class=\"btn btn-icon btn-link ces-caret-btn\"\n *ngIf=\"_isCollapsible && !editMode\"\n >\n <cds-icon shape=\"angle\" direction=\"up\" size=\"20\" class=\"ces-caret-icon\" [@rotateIcon]=\"_isCollapsed\"></cds-icon>\n </button>\n <div class=\"ves-actions\">\n <button\n type=\"button\"\n (click)=\"onEdit()\"\n class=\"btn btn-icon btn-link ves-action\"\n *ngIf=\"_editable && !editMode && actionBlock.children.length == 0\"\n >\n <cds-icon class=\"ves-edit-icon\" [attr.shape]=\"_editIcon\" size=\"20\"></cds-icon>\n </button>\n <div #actionBlock>\n <ng-content select=\"[action-block]\"></ng-content>\n </div>\n </div>\n </div>\n <div class=\"card-text\" [@collapseExpandAnimation]=\"initialized\" *ngIf=\"!(_isCollapsed && _isCollapsible)\">\n <ng-template [ngTemplateOutlet]=\"viewRef\" *ngIf=\"!editMode\"></ng-template>\n <ng-template [ngTemplateOutlet]=\"editRef\" *ngIf=\"editMode\"></ng-template>\n <ng-container *ngIf=\"editMode\">\n <form clrForm (ngSubmit)=\"onSubmit()\" class=\"button-bar\">\n <button class=\"btn btn-primary ves-save\" type=\"submit\">{{ _saveText }}</button>\n <button class=\"btn ves-cancel\" (click)=\"onCancel()\" type=\"button\">{{ _cancelText }}</button>\n </form>\n </ng-container>\n </div>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "directive", type: i2.CdsIconCustomTag, selector: "cds-icon" }, { kind: "directive", type: i2.ClrForm, selector: "[clrForm]", inputs: ["clrLabelSize"] }, { kind: "directive", type: i3$1.ɵNgNoValidate, selector: "form:not([ngNoForm]):not([ngNativeValidate])" }, { kind: "directive", type: i3$1.NgControlStatusGroup, selector: "[formGroupName],[formArrayName],[ngModelGroup],[formGroup],form:not([ngNoForm]),[ngForm]" }, { kind: "directive", type: i3$1.NgForm, selector: "form:not([ngNoForm]):not([formGroup]),ng-form,[ngForm]", inputs: ["ngFormOptions"], outputs: ["ngSubmit"], exportAs: ["ngForm"] }], animations: [
4196
4202
  trigger('collapseExpandAnimation', [
4197
4203
  transition(':enter', [
4198
4204
  style({ opacity: 0, height: 0, overflow: 'hidden' }),
@@ -4230,8 +4236,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
4230
4236
  transition('true => false', animate('300ms ease-out')),
4231
4237
  transition('false => true', animate('300ms ease-in')),
4232
4238
  ]),
4233
- ], standalone: false, template: "<div class=\"card view-edit-section\" (keyup.escape)=\"onCancel()\">\n <div class=\"card-block\">\n <div class=\"card-title\">\n {{_title}}\n <button\n type=\"button\"\n (click)=\"onCollapseExpand()\"\n class=\"btn btn-icon btn-link ces-caret-btn\"\n *ngIf=\"_isCollapsible && !editMode\"\n >\n <cds-icon shape=\"angle\" direction=\"up\" size=\"20\" class=\"ces-caret-icon\" [@rotateIcon]=\"_isCollapsed\"></cds-icon>\n </button>\n <div class=\"ves-actions\">\n <button\n type=\"button\"\n (click)=\"onEdit()\"\n class=\"btn btn-icon btn-link ves-action\"\n *ngIf=\"_editable && !editMode && actionBlock.children.length == 0\"\n >\n <cds-icon class=\"ves-edit-icon\" [attr.shape]=\"_editIcon\" size=\"20\"></cds-icon>\n </button>\n <div #actionBlock>\n <ng-content select=\"[action-block]\"></ng-content>\n </div>\n </div>\n </div>\n <div class=\"card-text\" [@collapseExpandAnimation] *ngIf=\"!(_isCollapsed && _isCollapsible)\">\n <ng-template [ngTemplateOutlet]=\"viewRef\" *ngIf=\"!editMode\"></ng-template>\n <ng-template [ngTemplateOutlet]=\"editRef\" *ngIf=\"editMode\"></ng-template>\n <ng-container *ngIf=\"editMode\">\n <form clrForm (ngSubmit)=\"onSubmit()\" class=\"button-bar\">\n <button class=\"btn btn-primary ves-save\" type=\"submit\">{{_saveText}}</button>\n <button class=\"btn ves-cancel\" (click)=\"onCancel()\" type=\"button\">{{_cancelText}}</button>\n </form>\n </ng-container>\n </div>\n </div>\n</div>\n" }]
4234
- }], propDecorators: { _title: [{
4239
+ ], standalone: false, template: "<div class=\"card view-edit-section\" (keyup.escape)=\"onCancel()\">\n <div class=\"card-block\">\n <div class=\"card-title\">\n {{ _title }}\n <button\n type=\"button\"\n (click)=\"onCollapseExpand()\"\n class=\"btn btn-icon btn-link ces-caret-btn\"\n *ngIf=\"_isCollapsible && !editMode\"\n >\n <cds-icon shape=\"angle\" direction=\"up\" size=\"20\" class=\"ces-caret-icon\" [@rotateIcon]=\"_isCollapsed\"></cds-icon>\n </button>\n <div class=\"ves-actions\">\n <button\n type=\"button\"\n (click)=\"onEdit()\"\n class=\"btn btn-icon btn-link ves-action\"\n *ngIf=\"_editable && !editMode && actionBlock.children.length == 0\"\n >\n <cds-icon class=\"ves-edit-icon\" [attr.shape]=\"_editIcon\" size=\"20\"></cds-icon>\n </button>\n <div #actionBlock>\n <ng-content select=\"[action-block]\"></ng-content>\n </div>\n </div>\n </div>\n <div class=\"card-text\" [@collapseExpandAnimation]=\"initialized\" *ngIf=\"!(_isCollapsed && _isCollapsible)\">\n <ng-template [ngTemplateOutlet]=\"viewRef\" *ngIf=\"!editMode\"></ng-template>\n <ng-template [ngTemplateOutlet]=\"editRef\" *ngIf=\"editMode\"></ng-template>\n <ng-container *ngIf=\"editMode\">\n <form clrForm (ngSubmit)=\"onSubmit()\" class=\"button-bar\">\n <button class=\"btn btn-primary ves-save\" type=\"submit\">{{ _saveText }}</button>\n <button class=\"btn ves-cancel\" (click)=\"onCancel()\" type=\"button\">{{ _cancelText }}</button>\n </form>\n </ng-container>\n </div>\n </div>\n</div>\n" }]
4240
+ }], ctorParameters: () => [{ type: i0.ChangeDetectorRef }], propDecorators: { _title: [{
4235
4241
  type: Input,
4236
4242
  args: ['clrTitle']
4237
4243
  }], _saveText: [{
@@ -4839,6 +4845,15 @@ const CampaignShape = clrIconSVG(`<sodipodi:namedview bordercolor="#000000" bor
4839
4845
  const CompletedByDateShape = clrIconSVG(`<rect x="13" y="7" width="10" height="2"/><path d="M4,16.89V9H7V7H4A2.0059,2.0059,0,0,0,2,9v8.29a2.9516,2.9516,0,0,1,1.5-.4Z"/><path d="M26,11a1.0029,1.0029,0,0,0,1-1V4a1,1,0,0,0-2,0v6A1.0029,1.0029,0,0,0,26,11Z"/><path d="M10,11a1.0029,1.0029,0,0,0,1-1V4A1,1,0,0,0,9,4v6A1.0029,1.0029,0,0,0,10,11Z"/><path d="M32,22.89V31H4V22.89H3.5a3.0545,3.0545,0,0,1-1.5-.4V31a2.0059,2.0059,0,0,0,2,2H32a2.0059,2.0059,0,0,0,2-2V22.48a2.9688,2.9688,0,0,1-1.51.41Z"/><path d="M32,7H29V9h3v7.89h.49A2.9688,2.9688,0,0,1,34,17.3V9A2.0059,2.0059,0,0,0,32,7Z"/><circle cx="8.6602" cy="19.8896" r="1.5"/><path d="M16.64,15.8887v8a1.5,1.5,0,0,0,3,0v-8a1.5,1.5,0,0,0-3,0Z"/><circle cx="3.5098" cy="19.8896" r="1.5"/><circle cx="13.8096" cy="19.8896" r="1.5"/><circle cx="27.3403" cy="19.8896" r="1.5"/><circle cx="22.1899" cy="19.8896" r="1.5"/><circle cx="32.4897" cy="19.8896" r="1.5"/>`, '0 0 36 36');
4840
4846
  const ReturnDateShape = clrIconSVG(`<path d="M26,11a1.0029,1.0029,0,0,0,1-1V4a1,1,0,0,0-2,0v6A1.0029,1.0029,0,0,0,26,11Z"/><path d="M10,11a1.0029,1.0029,0,0,0,1-1V4A1,1,0,0,0,9,4v6A1.0029,1.0029,0,0,0,10,11Z"/><path d="M4,16.89V9H7V7H4A2.0059,2.0059,0,0,0,2,9v8.29a2.9516,2.9516,0,0,1,1.5-.4Z"/><rect x="13" y="7" width="10" height="2"/><path d="M32,31H4V22.89H3.5a3.0545,3.0545,0,0,1-1.5-.4V31a2.0059,2.0059,0,0,0,2,2H32a2.0059,2.0059,0,0,0,2-2V22.44l-2,2Z"/><path d="M32,7H29V9h3v6.34l2,2V9A2.0059,2.0059,0,0,0,32,7Z"/><path d="M27.2446,16.9493l1.44,1.4395H18.3052a1.5,1.5,0,0,0,0,3H28.6841l-1.44,1.4394a1.5,1.5,0,1,0,2.1211,2.1211l4-4a1.4993,1.4993,0,0,0,0-2.1211l-4-4a1.5,1.5,0,1,0-2.1211,2.1211Z"/><circle cx="8.6602" cy="19.8896" r="1.5"/><circle cx="3.5098" cy="19.8896" r="1.5"/><circle cx="13.8096" cy="19.8896" r="1.5"/>`, '0 0 36 36');
4841
4847
  const RepeatRepairShape = clrIconSVG(`<path d="M15.6072,9.7988l.56-.65,1.3-1.52h5.03a6.8631,6.8631,0,0,0-.5-1.33,7.2324,7.2324,0,0,0-6.71-4,4.17,4.17,0,0,0-.5,0,7.1116,7.1116,0,0,0-2.95.75l.54.54.45.45a5.9155,5.9155,0,0,1,2.46-.44,6.0331,6.0331,0,0,1,5.21,2.7h-3.64l-1.64,1.91-.8.94a.138.138,0,0,0-.03.04c-.01.02-.02.03-.02.04a1.0062,1.0062,0,0,0,.05,1.22l1.64,1.91.8.94h3.64a6.025,6.025,0,0,1-5.21,2.69,7.26,7.26,0,0,1-.93-.06,7.0226,7.0226,0,0,1-1.5-.38,5.76,5.76,0,0,1-3.18-3.01,5.4706,5.4706,0,0,1-2.96,1h-.27l-3.56,3.55a3.5066,3.5066,0,0,0,0,4.96l.2.2h.01a3.4916,3.4916,0,0,0,4.94,0l5.21-5.21a8.2682,8.2682,0,0,0,2.04.26,7.2772,7.2772,0,0,0,6.71-4,7.3892,7.3892,0,0,0,.5-1.33h-5.03Zm-8.5,11.51a2.1788,2.1788,0,0,1-3.08,0l-.2-.2a2.1788,2.1788,0,0,1,0-3.08l4.75-4.74a6.92,6.92,0,0,0,3.29,3.25Zm-.56-1.72a1,1,0,1,1-1-1A1.0029,1.0029,0,0,1,6.5472,19.5888Zm-4.03-10.31a4.5942,4.5942,0,0,1-.17-.82,4.1759,4.1759,0,0,1,4.17-4.59h2.37l-2-2.05.9-.94,3.65,3.65-3.49,3.5-.16.16-.94-.94,2-2.05h-2.33a2.84,2.84,0,1,0-.34,5.67,1.93,1.93,0,0,0,.34,0,2.9459,2.9459,0,0,0,1.31-.32,3.247,3.247,0,0,0,.78-.6l.45-.46.94.94-.43.44c-.11.11-.22.22-.33.32a3.9935,3.9935,0,0,1-1.18.71,4.1406,4.1406,0,0,1-4.39-.8,3.672,3.672,0,0,1-.58-.67,3.6882,3.6882,0,0,1-.42-.75A2.74,2.74,0,0,1,2.5172,9.2788Z"/>`);
4848
+ const RepeatRepairCollection = {
4849
+ outline: RepeatRepairShape,
4850
+ outlineBadged: RepeatRepairShape,
4851
+ };
4852
+ const ReplacementVehicleShape = clrIconSVG(`<path d="M23.482,14.79a1.127,1.127,0,0,0-1.07,1.07,1.121,1.121,0,0,0,2.24.1A1.178,1.178,0,0,0,23.482,14.79Zm8.49-4.12,1.81-.29L33.5,8.52l-.3.08a13.963,13.963,0,0,1-1.91.36l-.05.01-1.03-2.45a3.271,3.271,0,0,0-2.43-1.53L19.152,5a2.794,2.794,0,0,0-2.32,1.65l-1.1,2.39c-.59-.14-1.22-.23-1.78-.31l-.5-.07-.28,1.83s1.66.25,1.87.28l-.4.67a6.231,6.231,0,0,0-.73,2.82v2.88l1.94.72V15.18c1.11.17,2.31.26,3.51.35l.29.02V13.96l-.04-.25-.24-.02c-1.16-.09-2.36-.18-3.46-.35a5.774,5.774,0,0,1,.41-.96l.71-1.43a48.269,48.269,0,0,0,6.45.38,53.545,53.545,0,0,0,6.63-.37l.55,1.27a6.28,6.28,0,0,1,.38,1.11c-1.07.17-2.17.26-3.38.35l-.27.02.14,1.84.27-.02c1.21-.09,2.31-.19,3.4-.35l-.09,4.51h-1.16v-1.9H17.012v.5l3.42,1.27a1.336,1.336,0,0,1,.18.07h7.4v.13a1.691,1.691,0,0,0,1.67,1.67h1.7a1.636,1.636,0,0,0,1.67-1.67v-5.5a5.378,5.378,0,0,0-.73-2.81Zm-8.44-1.1a50.733,50.733,0,0,1-5.77-.33l.76-1.86a1.178,1.178,0,0,1,.79-.55h8.31a1.2,1.2,0,0,1,.91.53l.76,1.88A50.558,50.558,0,0,1,23.532,9.57Z"/><path d="M18.934,33.057a.968.968,0,0,1-.267-.038L7.988,29.933h0a1.924,1.924,0,0,1-1.925,1.924H3.9a2,2,0,0,1-2-2V20.288a2,2,0,0,1,2-2h6.956a1.99,1.99,0,0,1,.422.045c.135.029.264.063.39.1l8.08,3A4.205,4.205,0,0,1,21.61,22.8a3.6,3.6,0,0,1,.77,2.222h3.668a3.413,3.413,0,0,1,2.621,1.1,3.83,3.83,0,0,1,1.012,2.68v.991L19.217,33.014A.971.971,0,0,1,18.934,33.057Zm-.34-2.123a.781.781,0,0,0,.215.03.8.8,0,0,0,.227-.034L27.464,28.3a1.243,1.243,0,0,0-.432-.922,1.488,1.488,0,0,0-.984-.36H18.89a11.722,11.722,0,0,1-1.4-.079,6.407,6.407,0,0,1-1.325-.312l-3.39-1.063.03-.1a1.952,1.952,0,0,1,2.511-1.246l1.34.47a4.757,4.757,0,0,0,1.169.258c.417.042.95.064,1.584.064h.925a1.743,1.743,0,0,0-.355-1.029,2.1,2.1,0,0,0-.909-.668l-8.053-3.008-.117-.021H7.988v7.54ZM5.959,29.854V20.293H3.905v9.561Z"/>`, '0 0 36 36');
4853
+ const ReplacementVehicleCollection = {
4854
+ outline: ReplacementVehicleShape,
4855
+ outlineBadged: ReplacementVehicleShape,
4856
+ };
4842
4857
  const GasShape = clrIconSVG(`<path d="M21.75 2.83h-8.87a8.81 8.81 0 00-8.8 8.79v.76a8.73 8.73 0 002.13 5.71l-.8.81a4.89 4.89 0 01-3.47 1.43H1v1.34h.94a6.19 6.19 0 004.41-1.83l.81-.8a8.74 8.74 0 005.72 2.13h.74a8.81 8.81 0 008.8-8.79V3.5zm-.67 9.55a7.46 7.46 0 01-7.46 7.45h-.74A7.42 7.42 0 018.1 18.1l2.9-2.93h5.5v-1.34h-4.14l5.36-5.36-.94-.94-5.61 5.61V8.5H9.83v6l-2.68 2.65a7.42 7.42 0 01-1.73-4.77v-.76a7.46 7.46 0 017.46-7.45h8.2z"/>`);
4843
4858
  const ACShape = clrIconSVG(`<path d="M12.7,16.36a2.929,2.929,0,0,0,1.53-2.3c0-.64-.33-1-.9-1.65a4.448,4.448,0,0,1-1.48-3.23,3.479,3.479,0,0,1,2.06-2.94l.58,1.2a2.13,2.13,0,0,0-1.34,1.79,3.11,3.11,0,0,0,1.13,2.28,3.653,3.653,0,0,1,1.25,2.55,4.191,4.191,0,0,1-2.1,3.41Zm-5.11,0a2.932,2.932,0,0,0,1.561-2.3c0-.64-.33-1-.9-1.65A4.449,4.449,0,0,1,6.77,9.18,3.482,3.482,0,0,1,8.8,6.24l.58,1.2A2.128,2.128,0,0,0,8.07,9.23,3.112,3.112,0,0,0,9.2,11.51a3.646,3.646,0,0,1,1.25,2.55,4.19,4.19,0,0,1-2.13,3.41ZM18.25,11.88,20.73,4.19a19,19,0,0,0-9.58-2.86A19.122,19.122,0,0,0,1.54,4.2l2,7.719-1.29.33L0,3.58l.42-.26A20.687,20.687,0,0,1,11.15,0,20.687,20.687,0,0,1,21.88,3.32l.44.27-2.81,8.7Z" transform="translate(0.75 3)"/>`);
4844
4859
  const VWShape = clrIconSVG(`<path d="M24 45.792c-11.952 0-21.744-9.84-21.744-21.792 0-2.688.48-5.232 1.392-7.632l12.72 25.584c.144.336.384.624.768.624s.624-.288.768-.624l5.856-13.104c.048-.144.144-.288.288-.288s.192.144.288.288l5.856 13.104c.144.336.384.624.768.624s.624-.288.768-.624l12.72-25.584A21.318 21.318 0 0145.84 24C45.744 35.952 35.952 45.792 24 45.792zm0-26.736c-.144 0-.192-.144-.288-.288l-6.816-15.36A20.473 20.473 0 0124 2.16c2.496 0 4.896.432 7.104 1.248l-6.816 15.36c-.096.192-.144.288-.288.288zm-6.96 15.792c-.144 0-.192-.144-.288-.288L5.712 12.288C7.68 9.264 10.32 6.72 13.536 4.944l7.968 17.712c.096.288.336.384.576.384h3.84c.288 0 .48-.048.624-.384l7.968-17.712a22.496 22.496 0 017.824 7.344L31.2 34.56c-.048.144-.144.288-.288.288s-.192-.144-.288-.288l-4.176-9.504c-.144-.336-.336-.384-.624-.384h-3.84c-.288 0-.48.048-.624.384l-4.032 9.504c-.048.144-.144.288-.288.288zM24 48c13.296 0 24-10.704 24-24S37.296 0 24 0 0 10.704 0 24s10.704 24 24 24z"/>`, '0 0 48 48');
@@ -4874,6 +4889,15 @@ const PartsShape = clrIconSVG(`<path data-name="Path 177" d="M6.6 10l-3.39 6.2 3
4874
4889
  const PartsForwardShape = clrIconSVG(`<path data-name="Path 177" d="M32.79 5.42H18v6.16h4.11v18.16h6.56l.12-18.16h4zM27.13 15v2.14l-3.37-1.07v-2.16zm0 3.85v2l-3.34-1.06v-2.02zm0 3.76v2.19l-3.32-1.06v-2.2zm-3.33 5.5v-2.66l3.31 1.05v1.6zm3.4-14.83l-3.4-1.08v-.61h3.41zm4-3.33H19.64V7.06h11.51z"/><path d="M13.38 10H6.6l-3.39 6.2 3.39 6.16h6.78l3.39-6.16zm-1 10.68H7.57L5.08 16.2l2.49-4.53h4.84l2.49 4.53z"/><path d="M10 13.43a2.77 2.77 0 102.78 2.77A2.77 2.77 0 0010 13.43zm1.12 2.77A1.13 1.13 0 0110 17.33a1.13 1.13 0 111.13-1.13zM16.08 24.83l.69.69v-.69zm-12.86 0V27h1.64v-.53H10a2.42 2.42 0 010-.47 2.92 2.92 0 01.24-1.17zm14.84 6.23l-4 4a1.5 1.5 0 01-2.12 0 1.49 1.49 0 010-2.12l1.44-1.44H3a1.5 1.5 0 010-3h10.38l-1.44-1.44a1.5 1.5 0 012.12-2.12l4 4a1.49 1.49 0 010 2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
4875
4890
  const PartsNonStockShape = clrIconSVG(`<path d="M6.61 14.07l-3.39 6.15 3.39 6.16h6.77l3.39-6.16-3.39-6.15zm5.8 10.67H7.58l-2.49-4.52 2.49-4.52h4.83l2.49 4.52zM10 17.45A2.77 2.77 0 0010 23a2.77 2.77 0 000-5.55zm0 3.9a1.13 1.13 0 111.14-1.13A1.13 1.13 0 0110 21.35zm22.78-15.9H18v6.15h4.11v18.16h6.56l.12-18.16h4zM27.13 15v2.14l-3.37-1.07v-2.13zm0 3.86v2l-3.34-1.06v-2zm0 3.75v2.18l-3.31-1.05v-2.18zm-3.33 5.5v-2.64l3.3 1.05v1.6zm3.4-14.82l-3.4-1.08v-.61h3.4zm4-3.33H19.65V7.09h11.5zM10.5 13.5v-3h-8v-4h8v-3l6 5z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
4876
4891
  const PartNonStockForwardShape = clrIconSVG(`<path d="M10.5 13.5v-3h-8v-4h8v-3l6 5zM10 26.38a2.33 2.33 0 010-.38 3 3 0 01.29-1.26H7.57l-2.48-4.51 2.48-4.53h4.84l2.49 4.52L13.35 23a2.87 2.87 0 011.52.64l1.9-3.45-3.39-6.16H6.61l-3.39 6.2 3.39 6.15zm2.73-6.16A2.77 2.77 0 1110 17.45a2.77 2.77 0 012.76 2.77zm-1.63 0a1.14 1.14 0 10-1.1 1.13 1.13 1.13 0 001.13-1.13zm6.92 8.72l-4-4a1.49 1.49 0 00-2.12 0 1.51 1.51 0 000 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.37l-1.44 1.44a1.51 1.51 0 000 2.12 1.53 1.53 0 001.07.44 1.49 1.49 0 001.06-.44l4-4a1.49 1.49 0 00-.01-2.12zM32.79 5.42H18v6.16h4.11v18.16h6.56l.12-18.16h4zM27.13 15v2.14l-3.37-1.07v-2.16zm0 3.85v2l-3.34-1.06v-2.02zm0 3.76v2.19l-3.32-1.06v-2.2zm-3.33 5.5v-2.66l3.31 1.05v1.6zm3.4-14.83l-3.4-1.08v-.61h3.41zm4-3.33H19.64V7.06h11.51z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
4892
+ const PartAvailabilityInfoShape = clrIconSVG(`<path d="M16,28H14V20H11a1,1,0,0,0,0,2h1v6H10a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm-3.07-9.7a1.4,1.4,0,1,0-1.4-1.4A1.4,1.4,0,0,0,12.93,18.3Z"/><g id="parts"><path id="Path_177" data-name="Path 177" d="M20,1.42V7.58h4.11V14.5a13.731,13.731,0,0,1,1.8,3.08l3.17,1.02-.01,2.19-2.39-.76a13.469,13.469,0,0,1,.27,1.8l2.1.67-.01,1.6h-2.09a12.683,12.683,0,0,1-.22,1.64h3.94l.12-18.16h3.99V1.42Zm9.09,15.46-3.34-1.06V13.77l3.36,1.07Zm.03-3.75-3.37-1.07V9.91l3.38,1.08Zm.03-3.86-3.4-1.08V7.58h3.41Zm4-3.33H21.642V3.06h11.51Z"/></g><path d="M13,11A12,12,0,1,0,25,23,12.01,12.01,0,0,0,13,11Zm0,22A10,10,0,1,1,23,23,10.016,10.016,0,0,1,13,33Z"/>`, '0 0 36 36');
4893
+ const PartAvailabilityNoShape = clrIconSVG(`<path d="M14.414,22.9l3.465-3.465a1,1,0,0,0-1.414-1.414L13,21.486,9.535,18.021a1,1,0,0,0-1.414,1.414L11.586,22.9,8.121,26.365a1,1,0,1,0,1.414,1.414L13,24.314l3.465,3.465a1,1,0,0,0,1.414-1.414Z"/><g id="parts"><path id="Path_177" data-name="Path 177" d="M20,1.42V7.58h4.11V14.5a13.731,13.731,0,0,1,1.8,3.08l3.17,1.02-.01,2.19-2.39-.76a13.469,13.469,0,0,1,.27,1.8l2.1.67-.01,1.6h-2.09a12.683,12.683,0,0,1-.22,1.64h3.94l.12-18.16h3.99V1.42Zm9.09,15.46-3.34-1.06V13.77l3.36,1.07Zm.03-3.75-3.37-1.07V9.91l3.38,1.08Zm.03-3.86-3.4-1.08V7.58h3.41Zm4-3.33H21.642V3.06h11.51Z"/></g><path d="M13,11A12,12,0,1,0,25,23,12.01,12.01,0,0,0,13,11Zm0,22A10,10,0,1,1,23,23,10.016,10.016,0,0,1,13,33Z"/>`, '0 0 36 36');
4894
+ const PartAvailabilityUnknownShape = clrIconSVG(`<g id="parts"><path id="Path_177" data-name="Path 177" d="M20,1.42V7.58h4.11V14.5a13.731,13.731,0,0,1,1.8,3.08l3.17,1.02-.01,2.19-2.39-.76a13.469,13.469,0,0,1,.27,1.8l2.1.67-.01,1.6h-2.09a12.683,12.683,0,0,1-.22,1.64h3.94l.12-18.16h3.99V1.42Zm9.09,15.46-3.34-1.06V13.77l3.36,1.07Zm.03-3.75-3.37-1.07V9.91l3.38,1.08Zm.03-3.86-3.4-1.08V7.58h3.41Zm4-3.33H21.642V3.06h11.51Z"/></g><path d="M13,11A12,12,0,1,0,25,23,12.01,12.01,0,0,0,13,11Zm0,22A10,10,0,1,1,23,23,10.016,10.016,0,0,1,13,33Z"/><circle cx="12.732" cy="29.503" r="1.065"/><path d="M12.732,27.265a1,1,0,0,1-1-1V23.471a1,1,0,0,1,.859-.991c.755-.108,3.054-.671,3.7-1.809a1.532,1.532,0,0,0-.018-1.46,2.425,2.425,0,0,0-1.807-1.51,6.509,6.509,0,0,0-4.8,1.161,1,1,0,1,1-1.322-1.5,8.466,8.466,0,0,1,6.568-1.609,4.411,4.411,0,0,1,3.2,2.688,3.519,3.519,0,0,1-.092,3.222c-.921,1.615-3.069,2.34-4.3,2.631v1.971A1,1,0,0,1,12.732,27.265Z"/>`, '0 0 36 36');
4895
+ const PartAvailabilityWarningShape = clrIconSVG(`<g id="parts"><path id="Path_177" data-name="Path 177" d="M20,1.42V7.58h4.11V21.85l2.17,3.89h4.39l.12-18.16h3.99V1.42Zm9.04,22.68h-3.29V21.45l3.3,1.05Zm.03-3.31-3.32-1.06v-2.2l3.33,1.07Zm.02-3.91-3.34-1.06V13.77l3.36,1.07Zm.03-3.75-3.37-1.07V9.91l3.38,1.08Zm.03-3.86-3.4-1.08V7.58h3.41Zm4-3.33H21.642V3.06h11.51Z"/></g><path d="M26.6,30.43l-9.93-17.86a3.055,3.055,0,0,0-5.34,0L1.392,30.43A3.071,3.071,0,0,0,4.062,35h19.87a3.071,3.071,0,0,0,2.67-4.57Zm-1.75,2.04a1.039,1.039,0,0,1-.91.53H4.062a1.025,1.025,0,0,1-.91-.53,1.037,1.037,0,0,1,0-1.06l9.92-17.86a1.046,1.046,0,0,1,.92-.55,1.025,1.025,0,0,1,.92.55l9.93,17.86a1.055,1.055,0,0,1-.01,1.06Zm-9.74-4.13a1.268,1.268,0,0,0-.26-.39,1.4,1.4,0,0,0-.39-.26,1.221,1.221,0,0,0-.92,0,1.4,1.4,0,0,0-.39.26,1.207,1.207,0,0,0,0,1.7,1.4,1.4,0,0,0,.39.26,1.221,1.221,0,0,0,.92,0,1.4,1.4,0,0,0,.39-.26,1.23,1.23,0,0,0,.35-.85A1.216,1.216,0,0,0,15.112,28.34ZM14,18a1,1,0,0,0-1,1v5.8a1,1,0,0,0,2,0V19A1,1,0,0,0,14,18Z"/>`, '0 0 36 36');
4896
+ const PartAvailabilityYesShape = clrIconSVG(`<g id="parts"><path id="Path_177" data-name="Path 177" d="M20,1.42V7.58h4.11V14.5a13.731,13.731,0,0,1,1.8,3.08l3.17,1.02-.01,2.19-2.39-.76a13.469,13.469,0,0,1,.27,1.8l2.1.67-.01,1.6h-2.09a12.683,12.683,0,0,1-.22,1.64h3.94l.12-18.16h3.99V1.42Zm9.09,15.46-3.34-1.06V13.77l3.36,1.07Zm.03-3.75-3.37-1.07V9.91l3.38,1.08Zm.03-3.86-3.4-1.08V7.58h3.41Zm4-3.33H21.642V3.06h11.51Z"/></g><path d="M17.61,19.22l-6.36,6.36L7.71,22.04A1,1,0,1,0,6.3,23.45l4.95,4.95,7.78-7.78a1,1,0,1,0-1.41-1.41ZM13,11A12,12,0,1,0,25,23,12.01,12.01,0,0,0,13,11Zm0,22A10,10,0,1,1,23,23,10.016,10.016,0,0,1,13,33Z"/>`, '0 0 36 36');
4897
+ const partIdenticalShape = clrIconSVG(`<path d="M19.67,23l-.02,2.04-3.27-1.1V23H14.76v7.16h6.47L21.28,23Zm-.04,5.46H16.38V25.72l3.26,1.09ZM10.71,5v6.37h4.05V13h4.61l-2.99-1v-.63h3.36L19.73,13h1.61l.01-1.63h3.94V5ZM23.68,9.68H12.32V6.7H23.68ZM24,16a1,1,0,0,1-1,1H13a1,1,0,0,1,0-2H23A1,1,0,0,1,24,16Zm0,4a1,1,0,0,1-1,1H13a1,1,0,0,1,0-2H23A1,1,0,0,1,24,20Z"/>`, '0 0 36 36');
4898
+ const partIdenticalPredecessorShape = clrIconSVG(`<path d="M18.5,21.5h-3.8v8.7h6.5l0.1-8.7L18.5,21.5z M19.5,28.5h-3.3v-2.7l3.3,1.1L19.5,28.5z M19.6,25l-3.3-1.1v-2.3l3.3,1.1L19.6,25z M14.7,14.5h1.6v-0.7l2.1,0.7h2.8l0-3.1h3.9V5H10.6v6.4h4.1V14.5z M19.6,13.1L16.3,12v-0.6h3.4L19.6,13.1z M12.2,9.7v-3h11.4v3H12.2z M8.8,23.1c-0.6,0.6-1.5,0.6-2.1,0l-4-4c-0.6-0.6-0.6-1.5,0-2.1c0,0,0,0,0,0l4-4c0.6-0.6,1.5-0.6,2.1,0s0.6,1.5,0,2.1l-1.4,1.4h10.4c0.8,0,1.5,0.7,1.5,1.5s-0.7,1.5-1.5,1.5H7.3l1.4,1.4C9.4,21.5,9.4,22.5,8.8,23.1C8.8,23.1,8.8,23.1,8.8,23.1zM30.2,17h-6c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1h6c0.6,0,1,0.4,1,1C31.2,16.6,30.7,17,30.2,17z M30.2,21h-6c-0.6,0-1-0.4-1-1s0.4-1,1-1h6c0.6,0,1,0.4,1,1S30.7,21,30.2,21z"/>`, '0 0 36 36');
4899
+ const partIdenticalSuccessorShape = clrIconSVG(`<path d="M18.5,21.5h-3.8v8.7h6.5l0.1-8.7L18.5,21.5z M19.5,28.5h-3.3v-2.7l3.3,1.1L19.5,28.5z M19.6,25l-3.3-1.1v-2.3l3.3,1.1L19.6,25z M14.7,14.5h1.6v-0.7l2.1,0.7h2.8l0-3.1h3.9V5H10.6v6.4h4.1V14.5z M19.6,13.1L16.3,12v-0.6h3.4L19.6,13.1z M12.2,9.7v-3h11.4v3H12.2z M12.2,17h-6c-0.6,0-1-0.4-1-1c0-0.6,0.4-1,1-1h6c0.6,0,1,0.4,1,1C13.2,16.6,12.7,17,12.2,17z M12.2,21h-6c-0.6,0-1-0.4-1-1s0.4-1,1-1h6c0.6,0,1,0.4,1,1S12.7,21,12.2,21z M27.4,12.9c0.6-0.6,1.5-0.6,2.1,0c0,0,0,0,0,0l4,4c0.6,0.6,0.6,1.5,0,2.1c0,0,0,0,0,0l-4,4c-0.6,0.6-1.5,0.6-2.1,0s-0.6-1.5,0-2.1l1.4-1.4H18.5c-0.8,0-1.5-0.7-1.5-1.5s0.7-1.5,1.5-1.5h10.4l-1.4-1.4C26.9,14.5,26.9,13.5,27.4,12.9C27.4,12.9,27.4,12.9,27.4,12.9z"/>`, '0 0 36 36');
4900
+ const partIdenticalSuccpredecessorShape = clrIconSVG(`<path d="M8.765,23.061a1.5,1.5,0,0,1-2.121,0l-4-4a1.5,1.5,0,0,1,0-2.122l4-4a1.5,1.5,0,0,1,2.121,2.122L7.326,16.5h3.379a1.5,1.5,0,0,1,0,3H7.326l1.439,1.439A1.5,1.5,0,0,1,8.765,23.061ZM27.439,12.939a1.5,1.5,0,0,1,2.122,0l4,4a1.5,1.5,0,0,1,0,2.122l-4,4a1.5,1.5,0,0,1-2.122-2.122l1.44-1.439H25.5a1.5,1.5,0,0,1,0-3h3.379l-1.44-1.439A1.5,1.5,0,0,1,27.439,12.939ZM21,23h-1.44l-.01,2.04-3.27-1.1V23H15c-.11,0-.23-.01-.34-.02v7.18h6.47l.05-7.17A1.087,1.087,0,0,1,21,23Zm-1.47,5.46h-3.25V25.72l3.26,1.09ZM10.612,5v6.37h4.05v1.65c.11-.01.23-.02.34-.02h4.27l-2.99-1v-.63h3.36L19.632,13H21a.974.974,0,0,1,.24.02l.01-1.65h3.94V5Zm1.61,4.68V6.7h11.35l.01,2.98ZM21,15H15a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Zm0,4H15a1,1,0,0,0,0,2h6a1,1,0,0,0,0-2Z"/>`, '0 0 36 36');
4877
4901
  const PaintMaterialShape = clrIconSVG(`<path d="M18,5.65C11.63,5.65,7.83,7,7.83,9.27V26.73c0,2.27,3.8,3.62,10.17,3.62S28.17,29,28.17,26.73V9.27C28.17,7,24.37,5.65,18,5.65ZM9.98,9.35c.19-.2,1.69-1.55,8.02-1.55s7.83,1.35,8.02,1.55v17.3c-.19.2-1.69,1.55-8.02,1.55s-7.83-1.35-8.02-1.55Z"/></g><ellipse cx="18" cy="10.7" rx="6.34" ry="2"/><path d="M20.86,13.91l-2,2.89a2.482,2.482,0,1,0,4.08,0Z"/>`, '0 0 36 36');
4878
4902
  const PaintMaterialForwardShape = clrIconSVG(`<path d="M18.86,16.8a2.482,2.482,0,1,0,4.08,0l-2.08-2.89Z"/><ellipse cx="18" cy="10.7" rx="6.34" ry="2"/><path d="M28.17,9.27V26.73c0,1.94-2.79,3.22-7.68,3.54a1.4769,1.4769,0,0,0,.01-.21,3.3752,3.3752,0,0,0-.57-1.91c4.72-.24,5.92-1.31,6.09-1.5V9.35C25.83,9.14,24.33,7.8,18,7.8S10.17,9.14,9.98,9.35V24.29a3.4091,3.4091,0,0,0-.48,1.77,2.8858,2.8858,0,0,0,.04.5H7.83V9.27C7.83,7,11.63,5.65,18,5.65S28.17,7,28.17,9.27Z"/><path d="M18.0605,28.9952l-4-4a1.5,1.5,0,0,0-2.121,2.1211l1.4394,1.44H3a1.5,1.5,0,0,0,0,3H13.3789L11.94,32.9952a1.5,1.5,0,1,0,2.121,2.1211l4-4A1.4993,1.4993,0,0,0,18.0605,28.9952Z"/><path d="M18.0605,28.9952l-4-4a1.5,1.5,0,0,0-2.121,2.1211l1.4394,1.44H3a1.5,1.5,0,0,0,0,3H13.3789L11.94,32.9952a1.5,1.5,0,1,0,2.121,2.1211l4-4A1.4993,1.4993,0,0,0,18.0605,28.9952Z"/>`, '0 0 36 36');
4879
4903
  const ItemsReceiveShape = clrIconSVG(`<path d="M31.995,8.1968H4.0049A2.005,2.005,0,0,0,2,10.2018v5.4008a2.9662,2.9662,0,0,1,1.5-.4172h.5034l.0015-4.9886h27.99l.005.005L31.995,26.174,4,26.169l.0015-4.9836H3.5A2.9662,2.9662,0,0,1,2,20.7682V26.169a2.005,2.005,0,0,0,2.0049,2.005h27.99A2.005,2.005,0,0,0,34,26.169V10.2018A2.005,2.005,0,0,0,31.995,8.1968Z"/><path d="M18.5605,17.1248l-4-4a1.5,1.5,0,1,0-2.1211,2.1211l1.44,1.44H3.5a1.5,1.5,0,0,0,0,3H13.8789l-1.44,1.4394a1.5,1.5,0,1,0,2.1211,2.1211l4-4A1.4993,1.4993,0,0,0,18.5605,17.1248Z"/><path d="M25.9893,23.1855h-4a1,1,0,0,1,0-2h4a1,1,0,0,1,0,2Z"/><path d="M28.4893,19.1855h-6.5a1,1,0,0,1,0-2h6.5a1,1,0,0,1,0,2Z"/><path d="M27.9893,15.1855h-6a1,1,0,0,1,0-2h6a1,1,0,0,1,0,2Z"/>`, '0 0 36 36');
@@ -5002,6 +5026,10 @@ const CircleHalfFilled = clrIconSVG('<path d="M18,2A16,16,0,1,0,34,18,16,16,0,0,
5002
5026
  const CircleQuarterFilled = clrIconSVG('<defs><style>.cls-1{fill:none;}</style></defs><path class="cls-1" d="M31.06,13H19V11H30.11l.27.48A15.976,15.976,0,0,1,31.06,13Z"/><path class="cls-1" d="M31.95,17H19V15H31.67A14.589,14.589,0,0,1,31.95,17Z"/><path class="cls-1" d="M23.17,5H19V4.05A13.851,13.851,0,0,1,23.17,5Z"/><path class="cls-1" d="M28.71,9H19V7h7.63a13.858,13.858,0,0,1,1.6,1.46Q28.485,8.73,28.71,9Z"/><path d="M34,18A16,16,0,0,0,18,2c-.34,0-.67.03-1,.05h0A15.99,15.99,0,1,0,33.95,19h0C33.97,18.67,34,18.34,34,18ZM19.965,4.155c.111.015.221.034.331.053a13.9,13.9,0,0,1,2.6.7c.084.031.167.063.25.1H19V4.053l.055,0C19.361,4.078,19.665,4.113,19.965,4.155ZM19,15H31.657c.073.335.141.672.189,1.015.033.237.055.478.076.719.008.088.01.178.016.266H19Zm12.06-2H19V11H30.1c.092.161.2.314.284.48A15.976,15.976,0,0,1,31.06,13ZM28.71,9H19V7h7.618c.069.054.139.109.207.164.186.152.371.3.549.464.3.267.585.541.856.832A4.037,4.037,0,0,1,28.71,9ZM18,32A14,14,0,0,1,17,4.04V19H31.96A14.01,14.01,0,0,1,18,32Z"/>', '0 0 36 36');
5003
5027
  const CircleThreeQuartersFilled = clrIconSVG('<path d="M18,2A16,16,0,1,0,34,18,16,16,0,0,0,18,2Zm8.632,27H9.368a14.077,14.077,0,0,1-2.076-2H28.708A14.077,14.077,0,0,1,26.632,29ZM5.894,25a13.9,13.9,0,0,1-.955-2H31.061a13.9,13.9,0,0,1-.955,2ZM4.332,21a13.857,13.857,0,0,1-.281-2h27.9a13.857,13.857,0,0,1-.281,2ZM28.708,9H19V7h7.632A14.077,14.077,0,0,1,28.708,9Zm1.4,2a13.9,13.9,0,0,1,.955,2H19V11ZM19,5V4.051A13.889,13.889,0,0,1,23.166,5Zm0,12V15H31.668a13.857,13.857,0,0,1,.281,2ZM17,4.051V17H4.051A14,14,0,0,1,17,4.051ZM12.834,31H23.166a13.844,13.844,0,0,1-10.332,0Z"/>', '0 0 36 36');
5004
5028
  const CustomerVip = clrIconSVG('<path d="M33,34H13a1,1,0,0,1-1-1V24.5a1,1,0,0,1,1.445-.9l3.932,1.956,4.967-4.318a1,1,0,0,1,1.312,0l4.967,4.318,3.932-1.956A1,1,0,0,1,34,24.5V33A1,1,0,0,1,33,34ZM14,32H32V26.117l-3.084,1.534a1,1,0,0,1-1.1-.14L23,23.325l-4.814,4.186a1,1,0,0,1-1.1.14L14,26.117Z"/><circle cx="23" cy="28" r="1.5"/><path d="M14,2a6,6,0,1,0,6,6A6,6,0,0,0,14,2Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,14,12Z"/><path d="M21.16,19.63c-.35-.17-.74-.35-1.12-.49a15.481,15.481,0,0,0-3.56-.96,17.235,17.235,0,0,0-5.02.01,14.66,14.66,0,0,0-3.52.95,14.907,14.907,0,0,0-3.552,1.989A1,1,0,0,0,4,21.92v5.07a1,1,0,0,1-2,0V21.92c.06-3.23,5.72-4.97,8.5-5.6.01,0,.02-.01.03,0a14.178,14.178,0,0,1,1.85-.24,15.751,15.751,0,0,1,3.22,0,14.178,14.178,0,0,1,1.85.24h.03a17.525,17.525,0,0,1,6.875,2.895.055.055,0,0,1-.056.093A3,3,0,0,0,21.16,19.63Z"/>', '0 0 36 36');
5029
+ const CustomerVipCollection = {
5030
+ outline: CustomerVip,
5031
+ outlineBadged: CustomerVip,
5032
+ };
5005
5033
  const Customer = clrIconSVG('<path d="M18,18.045a7.023,7.023,0,1,0-7-7.022A7.019,7.019,0,0,0,18,18.045ZM18,6.006a5.017,5.017,0,1,1-5,5.017A5.011,5.011,0,0,1,18,6.006ZM29.79,24.817c-.15-.191-3.76-4.765-11.79-4.765S6.36,24.626,6.21,24.817a1.026,1.026,0,0,0-.21.612V31a1,1,0,1,0,2,0V25.81c.81-.873,3.93-3.752,10-3.752s9.2,2.879,10,3.752V31a1,1,0,1,0,2,0V25.429A.965.965,0,0,0,29.79,24.817Z"/>', '0 0 36 36');
5006
5034
  const CustomerWaiting = clrIconSVG(`
5007
5035
  <path d="M17.9,9.8c-0.6,0-1,0.4-1,1v8.7l5.9,4c0.4,0.3,1.1,0.2,1.4-0.2s0.2-1.1-0.2-1.4c0,0-0.1,0-0.1-0.1l-5-3.4v-7.6
@@ -5015,6 +5043,10 @@ c1.5-1.3,3.5-2,5.5-1.9c2-0.1,4,0.6,5.5,1.9V16c0,0.6,0.4,1,1,1s1-0.4,1-1v-3.2C15,
5015
5043
  <path d="M7.4,9c2.5,0,4.5-2,4.5-4.5C11.9,2,9.9,0,7.4,0S2.9,2,2.9,4.5C2.9,7,4.9,9,7.4,9z M7.4,2c1.4,0,2.5,1.1,2.5,2.5
5016
5044
  C9.9,5.9,8.8,7,7.4,7S4.9,5.9,4.9,4.5C4.9,3.1,6,2,7.4,2C7.4,2,7.4,2,7.4,2z"/>
5017
5045
  `, '0 0 36 36');
5046
+ const CustomerWaitingCollection = {
5047
+ outline: CustomerWaiting,
5048
+ outlineBadged: CustomerWaiting,
5049
+ };
5018
5050
  const InvoiceRecipient = clrIconSVG('<path d="M14,2a6,6,0,1,0,6,6A6,6,0,0,0,14,2Zm0,10a4,4,0,1,1,4-4A4,4,0,0,1,14,12Z"/><path d="M3.19,19.53A2.984,2.984,0,0,0,2,21.92v5.07a1,1,0,0,0,2,0V21.92a1,1,0,0,1,.4-.8A15.734,15.734,0,0,1,14,18a16.671,16.671,0,0,1,4,.48V16.43A18.3,18.3,0,0,0,14,16,17.75,17.75,0,0,0,3.19,19.53Z"/><path d="M33.707,19.293l-3-3A1,1,0,0,0,30,16H21a1,1,0,0,0-1,1V33a1,1,0,0,0,1,1H33a1,1,0,0,0,1-1V20A1,1,0,0,0,33.707,19.293ZM32,32H22V18h6.5v3.5H32Zm0-11.5H29.5V18h.086L32,20.414Z"/><path d="M26.4,23.36a3.793,3.793,0,0,0-1.219.859,3.572,3.572,0,0,0-.778,1.24h-.9v.721h.722a3.424,3.424,0,0,0-.031.477c0,.075.007.186.021.335H23.5v.722h.854a3.58,3.58,0,0,0,.756,1.315,3.76,3.76,0,0,0,1.24.915,3.627,3.627,0,0,0,2.956.03,3.606,3.606,0,0,0,1.194-.838l-.9-.833a2.386,2.386,0,0,1-.787.6,2.239,2.239,0,0,1-2.21-.173,2.52,2.52,0,0,1-.884-1.016h2.7v-.722H25.5c-.014-.149-.02-.26-.02-.335a2.427,2.427,0,0,1,.05-.477h2.885v-.721H25.8a2.43,2.43,0,0,1,.868-.91,2.246,2.246,0,0,1,1.194-.34,2.157,2.157,0,0,1,.95.219,2.525,2.525,0,0,1,.787.594l.9-.843a3.821,3.821,0,0,0-1.2-.829,3.6,3.6,0,0,0-2.895.01Z"/>', '0 0 36 36');
5019
5051
  const FirstRegistrationDate = clrIconSVG('<path d="M26,11a1,1,0,0,0,1-1V4a1,1,0,0,0-2,0v6A1,1,0,0,0,26,11Z"/><path d="M10,11a1,1,0,0,0,1-1V4A1,1,0,0,0,9,4v6A1,1,0,0,0,10,11Z"/><path d="M34,9V31a2.006,2.006,0,0,1-2,2H4a2.006,2.006,0,0,1-2-2V9A2.006,2.006,0,0,1,4,7H7V9H4V31H32V9H29V7h3A2.006,2.006,0,0,1,34,9Z"/><rect x="13" y="7" width="10" height="2"/><path d="M24.2,29.032a1.693,1.693,0,0,1-1.67-1.669v-.131H13.369v.131A1.632,1.632,0,0,1,11.7,29.032H10.1a1.693,1.693,0,0,1-1.669-1.669v-5.5a6.23,6.23,0,0,1,.728-2.82l.4-.672-1.87-.279.283-1.832.494.069a17.072,17.072,0,0,1,1.782.316l1.1-2.394A2.8,2.8,0,0,1,13.671,12.6l8.629,0a3.256,3.256,0,0,1,2.429,1.526l1.038,2.447.043,0a14.689,14.689,0,0,0,1.916-.358l.294-.084.287,1.864-1.817.289.355.779a5.384,5.384,0,0,1,.724,2.811v5.5A1.632,1.632,0,0,1,25.9,29.032Zm1.435-1.738.09-4.515c-1.087.166-2.191.259-3.405.353l-.268.02-.141-1.837.269-.02c1.211-.094,2.309-.186,3.385-.351a6.393,6.393,0,0,0-.385-1.115l-.547-1.273A52.167,52.167,0,0,1,18,18.933a49.312,49.312,0,0,1-6.445-.378l-.714,1.428a5.843,5.843,0,0,0-.409.96c1.1.167,2.3.26,3.457.35l.249.019.032.252v1.59l-.29-.022c-1.193-.093-2.4-.186-3.511-.354v4.415H11.53v-1.8H24.47v1.9ZM12.283,16.838a50.721,50.721,0,0,0,5.767.331,50.69,50.69,0,0,0,5.766-.331l-.765-1.873a1.179,1.179,0,0,0-.9-.538l-8.313.006a1.152,1.152,0,0,0-.793.55ZM18,24.633a1.086,1.086,0,0,1-1.069-1.17A1.125,1.125,0,0,1,18,22.394a1.172,1.172,0,0,1,1.17,1.17A1.086,1.086,0,0,1,18,24.633Z"/>', '0 0 36 36');
5020
5052
  const Mechanic = clrIconSVG('<path d="M14,14A6,6,0,1,0,8,8,6,6,0,0,0,14,14ZM14,4a4,4,0,1,1-4,4A4,4,0,0,1,14,4Z"/><path d="M34.354,18.654a1,1,0,0,0-1.623-.3l-2.389,2.389-1.26-1.26,2.39-2.389a1,1,0,0,0-.3-1.621,6.219,6.219,0,0,0-8.208,3.159,6.268,6.268,0,0,0-.484,3.319l-6.856,6.857a2.13,2.13,0,0,0,0,3.007L18.01,34.2a2.132,2.132,0,0,0,3.008,0l6.856-6.856a6.226,6.226,0,0,0,6.48-8.69Zm-1.57,3.425a4.228,4.228,0,0,1-5.035,3.215,1.007,1.007,0,0,0-.923.269L19.6,32.786a.129.129,0,0,1-.18,0L17.037,30.4a.126.126,0,0,1,0-.179L24.26,23a1,1,0,0,0,.268-.925,4.25,4.25,0,0,1,.263-2.63,4.23,4.23,0,0,1,3.857-2.508c.05,0,.1,0,.151,0l-1.838,1.837a1,1,0,0,0,0,1.414l2.674,2.674a1,1,0,0,0,1.414,0l1.834-1.834A4.2,4.2,0,0,1,32.784,22.079Z"/><path d="M17,23.25a1,1,0,0,0,0-2H10V18.494a16.588,16.588,0,0,1,8-.009V20a1,1,0,0,0,2,0v-.883c.217.086.428.173.63.263a7.874,7.874,0,0,1,.5-1.56,2.586,2.586,0,0,1,.17-.33A18.067,18.067,0,0,0,14,16,17.75,17.75,0,0,0,3.19,19.53,2.984,2.984,0,0,0,2,21.92v5.07a1,1,0,0,0,2,0V21.92a1,1,0,0,1,.4-.8A14.8,14.8,0,0,1,8,19.111V26.5a1,1,0,0,0,2,0V23.25Z"/>', '0 0 36 36');
@@ -5040,6 +5072,8 @@ const Number17 = clrIconSVG('<path d="M18,4.125a14,14,0,1,1-14,14,14.015,14.015,
5040
5072
  const Number18 = clrIconSVG('<path d="M18,4.125a14,14,0,1,1-14,14,14.015,14.015,0,0,1,14-14m0-2a16,16,0,1,0,16,16,16,16,0,0,0-16-16Z"/><path d="M12.259,13.53,10,14.975l-.8-1.387,3.439-2.337h1.539V24.3H12.259Z"/><path d="M18.928,24.076a4.185,4.185,0,0,1-1.767-1.283,3.038,3.038,0,0,1-.646-1.929,2.948,2.948,0,0,1,.769-2.023,4.593,4.593,0,0,1,2.005-1.282A4.455,4.455,0,0,1,17.5,16.343a2.721,2.721,0,0,1-.646-1.824,2.9,2.9,0,0,1,.636-1.863,4.006,4.006,0,0,1,1.692-1.216,6.305,6.305,0,0,1,4.541.01,3.992,3.992,0,0,1,1.681,1.226,2.9,2.9,0,0,1,.627,1.843,2.7,2.7,0,0,1-.675,1.862A4.428,4.428,0,0,1,23.6,17.559a4.678,4.678,0,0,1,2,1.3,2.942,2.942,0,0,1,.76,2A3.048,3.048,0,0,1,25.7,22.8a4.14,4.14,0,0,1-1.776,1.282,7.154,7.154,0,0,1-5-.009Zm4.636-1.834a1.817,1.817,0,0,0,.855-1.549,1.7,1.7,0,0,0-.456-1.158,3.079,3.079,0,0,0-1.15-.8,3.892,3.892,0,0,0-1.377-.3,3.86,3.86,0,0,0-1.359.3,3.171,3.171,0,0,0-1.159.8,1.681,1.681,0,0,0-.465,1.158,1.817,1.817,0,0,0,.855,1.549,3.613,3.613,0,0,0,2.128.6A3.615,3.615,0,0,0,23.564,22.242Zm-.285-6.032a1.728,1.728,0,0,0,.067-2.917,3.089,3.089,0,0,0-1.91-.579,3.07,3.07,0,0,0-1.9.57,1.755,1.755,0,0,0,.067,2.935,3.56,3.56,0,0,0,1.833.618A3.572,3.572,0,0,0,23.279,16.21Z"/>', '0 0 36 36');
5041
5073
  const Number19 = clrIconSVG('<path d="M18,4.125a14,14,0,1,1-14,14,14.015,14.015,0,0,1,14-14m0-2a16,16,0,1,0,16,16,16,16,0,0,0-16-16Z"/><path d="M12.288,13.53l-2.262,1.445-.8-1.387,3.439-2.337h1.539V24.3H12.288Z"/><path d="M25,12.818a8.067,8.067,0,0,1,1.272,4.76,8.568,8.568,0,0,1-.711,3.543,6.07,6.07,0,0,1-1.977,2.5,4.705,4.705,0,0,1-2.821.911,5.483,5.483,0,0,1-3.8-1.5l.988-1.481a5.62,5.62,0,0,0,1.329.93,3.39,3.39,0,0,0,1.5.324,2.719,2.719,0,0,0,1.767-.656,4.448,4.448,0,0,0,1.264-1.795,7.278,7.278,0,0,0,.5-2.565,3.918,3.918,0,0,1-1.529,1.263,4.61,4.61,0,0,1-2,.447A4.924,4.924,0,0,1,18.567,19a3.9,3.9,0,0,1-1.587-1.416,3.955,3.955,0,0,1-.588-2.175,4.228,4.228,0,0,1,2.3-3.819,5.149,5.149,0,0,1,2.433-.571A4.434,4.434,0,0,1,25,12.818Zm-1.9,4.494a2.719,2.719,0,0,0,1.064-1.52,4.493,4.493,0,0,0-.988-2.309,2.55,2.55,0,0,0-2-.827,2.847,2.847,0,0,0-1.492.381,2.721,2.721,0,0,0-.988,1,2.561,2.561,0,0,0-.351,1.282,2.324,2.324,0,0,0,.826,1.863,3.05,3.05,0,0,0,2.043.7A3.162,3.162,0,0,0,23.1,17.312Z"/>', '0 0 36 36');
5042
5074
  const Number20 = clrIconSVG('<path d="M18,4.125a14,14,0,1,1-14,14,14.015,14.015,0,0,1,14-14m0-2a16,16,0,1,0,16,16,16,16,0,0,0-16-16Z"/><path d="M6.939,22.727l4.789-3.953A9.01,9.01,0,0,0,13.58,16.8a3.344,3.344,0,0,0,.56-1.786,2.057,2.057,0,0,0-.722-1.644,2.6,2.6,0,0,0-1.748-.617,3.486,3.486,0,0,0-1.843.494,5.648,5.648,0,0,0-1.539,1.443L7,13.55a5.608,5.608,0,0,1,4.75-2.528,4.925,4.925,0,0,1,2.214.495,3.891,3.891,0,0,1,1.577,1.4,3.736,3.736,0,0,1,.579,2.062,4.584,4.584,0,0,1-.7,2.451,10.863,10.863,0,0,1-2.375,2.508L9.979,22.518H16.23V24.3H6.939Z"/><path d="M20.467,23.667a5.738,5.738,0,0,1-1.986-2.4,8.235,8.235,0,0,1-.712-3.5,8.168,8.168,0,0,1,.712-3.487,5.752,5.752,0,0,1,1.986-2.393,5.014,5.014,0,0,1,2.887-.866,4.94,4.94,0,0,1,2.86.866,5.769,5.769,0,0,1,1.976,2.393,8.168,8.168,0,0,1,.713,3.487,8.235,8.235,0,0,1-.713,3.5,5.787,5.787,0,0,1-1.966,2.4,4.928,4.928,0,0,1-2.87.864A5.012,5.012,0,0,1,20.467,23.667Zm4.75-1.539a4.135,4.135,0,0,0,1.273-1.776,6.912,6.912,0,0,0,.456-2.584,6.842,6.842,0,0,0-.456-2.575,4.141,4.141,0,0,0-1.273-1.767,2.951,2.951,0,0,0-1.863-.636,2.989,2.989,0,0,0-1.871.636,4.191,4.191,0,0,0-1.292,1.767,6.725,6.725,0,0,0-.465,2.575,6.794,6.794,0,0,0,.465,2.584,4.184,4.184,0,0,0,1.292,1.776,2.984,2.984,0,0,0,1.871.637A2.946,2.946,0,0,0,25.217,22.128Z"/>', '0 0 36 36');
5075
+ const OrderShape = clrIconSVG('<path d="M15,12m15-.08V30.09A1.88,1.88,0,0,1,28.17,32H7.83A1.88,1.88,0,0,1,6,30.09V5.91A1.88,1.88,0,0,1,7.83,4H21.89Zm-8.41.47h6l-6-5.9ZM28,30V14H20V6H8V30ZM12,25.833a1,1,0,0,0-1-1h-.39a1,1,0,0,0,0,2H11A1,1,0,0,0,12,25.833Zm0-4a1,1,0,0,0-1-1h-.39a1,1,0,0,0,0,2H11A1,1,0,0,0,12,21.833Zm9.39,4a1,1,0,0,0-1-1H14a1,1,0,0,0,0,2h6.39A1,1,0,0,0,21.39,25.833Zm4-4a1,1,0,0,0-1-1H14a1,1,0,0,0,0,2H24.39A1,1,0,0,0,25.39,21.833Zm-13.39-4a1,1,0,0,0-1-1h-.39a1,1,0,0,0,0,2H11A1,1,0,0,0,12,17.833Zm7.39,0a1,1,0,0,0-1-1H14a1,1,0,0,0,0,2h4.39A1,1,0,0,0,19.39,17.833Z"/>', '0 0 36 36');
5076
+ const OrderStatusShape = clrIconSVG('<path d="M14,24.833a1,1,0,0,0,0,2h3.883a9.026,9.026,0,0,1,.265-2Z"/><path d="M14,22.833h4.9a9.071,9.071,0,0,1,1.418-2H14a1,1,0,0,0,0,2Z"/><path d="M18.4,30H8V6H20v8h8v4a8.952,8.952,0,0,1,2,.477V11.92L21.89,4H7.83A1.88,1.88,0,0,0,6,5.91V30.09A1.88,1.88,0,0,0,7.83,32H19.386A9.025,9.025,0,0,1,18.4,30ZM21.59,6.49l6,5.9h-6Z"/><path d="M11,16.833h-.39a1,1,0,0,0,0,2H11a1,1,0,0,0,0-2Z"/><path d="M14,18.833h4.39a1,1,0,0,0,0-2H14a1,1,0,0,0,0,2Z"/><path d="M11,24.833h-.39a1,1,0,0,0,0,2H11a1,1,0,0,0,0-2Z"/><path d="M11,20.833h-.39a1,1,0,0,0,0,2H11a1,1,0,0,0,0-2Z"/><path d="M26.937,19.938A7.062,7.062,0,1,0,34,27,7.062,7.062,0,0,0,26.937,19.938ZM27,32a5,5,0,1,1,5-5A5,5,0,0,1,27,32Z"/><path d="M23.9,27.87a.986.986,0,0,1-.38-.07,1.06,1.06,0,0,1-.33-.22.99.99,0,0,1-.29-.71.965.965,0,0,1,.29-.7.823.823,0,0,1,.33-.22.932.932,0,0,1,.57-.06.579.579,0,0,1,.19.06.915.915,0,0,1,.17.09.992.992,0,0,1,.45.83,1.033,1.033,0,0,1-.29.71,1.19,1.19,0,0,1-.33.22A.986.986,0,0,1,23.9,27.87Zm3.04,0h0a1,1,0,0,0,1-1h0a1,1,0,0,0-1-1h0a1,1,0,0,0,0,2Zm3.42-.07a1.19,1.19,0,0,0,.33-.22,1.033,1.033,0,0,0,.29-.71.992.992,0,0,0-.45-.83.915.915,0,0,0-.17-.09.579.579,0,0,0-.19-.06,1,1,0,0,0-1.19.98,1.01,1.01,0,0,0,1.38.93Z"/>', '0 0 36 36');
5043
5077
  const faq = clrIconSVG('<g id="24px/FAQ"> <path id="Shape" fill-rule="evenodd" clip-rule="evenodd" d="M18 1.16016C18.5523 1.16016 19 1.65305 19 2.26106V13.2701C19 13.8781 18.5523 14.371 18 14.371H10C9.40728 14.4105 8.82998 14.5948 8.31 14.9105C6.85875 16.0388 5.57949 17.4137 4.52 18.9838C4.4843 19.0802 4.40388 19.1477 4.31 19.16C4.22872 19.163 4.14982 19.1295 4.09137 19.0672C4.03293 19.005 3.99995 18.9192 4 18.8297V14.4261H2C1.44772 14.4261 1 13.9332 1 13.3252V2.31611C1 1.70809 1.44772 1.2152 2 1.2152L18 1.16016ZM22.01 7.80999C22.5623 7.80999 23.01 8.2577 23.01 8.80999V17.81C23.01 18.3623 22.5623 18.81 22.01 18.81H20.01V22.81C20.0145 22.941 19.9334 23.0597 19.8097 23.1032C19.6861 23.1467 19.5485 23.1049 19.47 23C18.4171 21.5629 17.141 20.3036 15.69 19.27C15.17 18.9832 14.5927 18.8159 14 18.78H11C10.4477 18.78 10 18.3323 10 17.78V15.78H11.33V17.49H14C14.8125 17.5288 15.6056 17.751 16.32 18.14C17.1888 18.6794 17.9795 19.3356 18.67 20.09V17.49H21.67V9.15999H20V7.80999H22.01ZM2.32 2.67941H17.66V12.9068H10C9.18412 12.9479 8.38739 13.1926 7.67 13.6224C6.79982 14.2142 6.00886 14.9368 5.32 15.7692V12.9068H2.32V2.67941ZM10.6111 8.78675L10.7576 8.08816C11.5012 7.72759 12.628 7.04027 12.628 5.7783C12.628 4.45999 11.6139 3.65999 10.0026 3.65999C8.93223 3.65999 8.01955 4.30224 7.62518 4.75295L8.42518 5.80083C8.86462 5.3614 9.32659 5.00083 10.0026 5.00083C10.6449 5.00083 10.9942 5.41774 10.9942 5.85717C10.9942 6.53323 10.2956 7.04027 9.31532 7.33323L9.38293 8.78675H10.6111ZM10.9491 10.691C10.9491 11.2656 10.5773 11.66 9.99138 11.66C9.40547 11.66 9.03363 11.2656 9.03363 10.691C9.03363 10.1163 9.40547 9.72196 9.99138 9.72196C10.5773 9.72196 10.9491 10.1163 10.9491 10.691Z" /> </g> ', '0 0 24 24');
5044
5078
  const gte = clrIconSVG('<g id="24px/GTE"> <path id="Shape" fill-rule="evenodd" clip-rule="evenodd" d="M4.85001 8.51C5.70392 8.54355 6.53871 8.77278 7.29001 9.18L7.44001 9.26L8.00001 8L7.89001 7.9C6.98265 7.35412 5.94864 7.05426 4.89001 7.03C2.00001 7 0.450012 8.79 0.450012 12C0.450012 15.21 2.00001 17 4.73001 17C5.89394 16.9909 7.03008 16.6435 8.00001 16V11.85H4.62001V13L6.44001 13.27V15.14C5.91017 15.4027 5.32006 15.5201 4.73001 15.48C2.93001 15.48 2.06001 14.34 2.06001 11.99C2.06001 9.64 3.00001 8.51 4.85001 8.51ZM9.04001 8.69H11.73V16.77H13.31V8.69H15.99V7.23H9.04001V8.69ZM18.9 12.64V15.31H23.55V16.77H17.32V7.23H23.51V8.69H18.9V11.19H23.08V12.64H18.9Z" /> </g> ', '0 0 24 24');
5045
5079
  const mot = clrIconSVG('<g id="24px/MOT"> <path id="Shape" fill-rule="evenodd" clip-rule="evenodd" d="M24 13.07H13.24L18.6 22.38H5.36L10.76 13.07H0L6.64 1.62L12 10.93L17.4 1.62L24 13.07ZM21.7 11.74L17.4 4.27L13.07 11.74H21.7ZM2.31 11.74L6.64 4.27L10.94 11.74H2.31ZM12 13.59L7.67 21.05H16.3L12 13.59Z" /> </g> ', '0 0 24 24');
@@ -9063,7 +9097,8 @@ const newCarUtilityVehicleIcon = ['new-car-utility-vehicle', NewCarUtilityVehicl
9063
9097
  const plusServiceIcon = ['plus-service', PlusServiceShape];
9064
9098
  const priceTypeSwitchIcon = ['price-type-switch', PriceTypeSwitchShape];
9065
9099
  const returnDateIcon = ['return-date', ReturnDateShape];
9066
- const repeatRepairIcon = ['repeat-repair', RepeatRepairShape];
9100
+ const repeatRepairIcon = ['repeat-repair', RepeatRepairCollection];
9101
+ const replacementVehicleIcon = ['replacement-vehicle', ReplacementVehicleCollection];
9067
9102
  const touaregServiceIcon = ['touareg-service', TouaregServiceShape];
9068
9103
  const vehicleConversionIcon = ['vehicle-conversion', VehicleConversionShape];
9069
9104
  const volkswagenIcon = ['volkswagen', VWShape];
@@ -9083,6 +9118,21 @@ const partsIcon = ['parts', PartsShape];
9083
9118
  const partsForwardIcon = ['parts-fwd', PartsForwardShape];
9084
9119
  const partsNonStockIcon = ['parts-nonstock', PartsNonStockShape];
9085
9120
  const partsNonStockForwardIcon = ['parts-nonstock-fwd', PartNonStockForwardShape];
9121
+ const partAvailabilityInfoIcon = ['part-availability-info', PartAvailabilityInfoShape];
9122
+ const partAvailabilityNoIcon = ['part-availability-no', PartAvailabilityNoShape];
9123
+ const partAvailabilityUnknownIcon = ['part-availability-unknown', PartAvailabilityUnknownShape];
9124
+ const partAvailabilityWarningIcon = ['part-availability-warning', PartAvailabilityWarningShape];
9125
+ const partAvailabilityYesIcon = ['part-availability-yes', PartAvailabilityYesShape];
9126
+ const partIdenticalIcon = ['part-identical', partIdenticalShape];
9127
+ const partIdenticalPredecessorIcon = [
9128
+ 'part-identical-predecessor',
9129
+ partIdenticalPredecessorShape,
9130
+ ];
9131
+ const partIdenticalSuccessorIcon = ['part-identical-successor', partIdenticalSuccessorShape];
9132
+ const partIdenticalSuccpredecessorIcon = [
9133
+ 'part-identical-succpredecessor',
9134
+ partIdenticalSuccpredecessorShape,
9135
+ ];
9086
9136
  const paintMaterialIcon = ['paint-material', PaintMaterialShape];
9087
9137
  const paintMaterialForwardIcon = ['paint-material-fwd', PaintMaterialForwardShape];
9088
9138
  const itemsRecieveIcon = ['items-receive', ItemsReceiveShape];
@@ -9243,8 +9293,8 @@ const circleHalfFilledIcon = ['circle-half-filled', CircleHalfFilled];
9243
9293
  const circleQuarterFilledIcon = ['circle-quarter-filled', CircleQuarterFilled];
9244
9294
  const circleThreeQuartersFilledIcon = ['circle-threequarters-filled', CircleThreeQuartersFilled];
9245
9295
  const customerIcon = ['customer', Customer];
9246
- const customerWaitingIcon = ['customer-waiting', CustomerWaiting];
9247
- const customerVipIcon = ['customer-vip', CustomerVip];
9296
+ const customerWaitingIcon = ['customer-waiting', CustomerWaitingCollection];
9297
+ const customerVipIcon = ['customer-vip', CustomerVipCollection];
9248
9298
  const firstRegistrationDateIcon = ['first-registration-date', FirstRegistrationDate];
9249
9299
  const mechanicIcon = ['mechanic', Mechanic];
9250
9300
  const serviceAdvisorIcon = ['service-advisor', ServiceAdvisor];
@@ -9269,6 +9319,8 @@ const number17Icon = ['number17', Number17];
9269
9319
  const number18Icon = ['number18', Number18];
9270
9320
  const number19Icon = ['number19', Number19];
9271
9321
  const number20Icon = ['number20', Number20];
9322
+ const orderIcon = ['order', OrderShape];
9323
+ const orderStatusIcon = ['order-status', OrderStatusShape];
9272
9324
  const invoiceRecipientIcon = ['invoice-recipient', InvoiceRecipient];
9273
9325
  const faqIcon = ['faq', faq];
9274
9326
  const gteIcon = ['gte', gte];
@@ -9715,6 +9767,7 @@ const allIcons = [
9715
9767
  priceTypeSwitchIcon,
9716
9768
  returnDateIcon,
9717
9769
  repeatRepairIcon,
9770
+ replacementVehicleIcon,
9718
9771
  routeIcon,
9719
9772
  seatIcon,
9720
9773
  sizeIcon,
@@ -9738,6 +9791,15 @@ const allIcons = [
9738
9791
  partsForwardIcon,
9739
9792
  partsNonStockIcon,
9740
9793
  partsNonStockForwardIcon,
9794
+ partAvailabilityInfoIcon,
9795
+ partAvailabilityNoIcon,
9796
+ partAvailabilityUnknownIcon,
9797
+ partAvailabilityWarningIcon,
9798
+ partAvailabilityYesIcon,
9799
+ partIdenticalIcon,
9800
+ partIdenticalPredecessorIcon,
9801
+ partIdenticalSuccessorIcon,
9802
+ partIdenticalSuccpredecessorIcon,
9741
9803
  paintMaterialIcon,
9742
9804
  paintMaterialForwardIcon,
9743
9805
  itemsRecieveIcon,
@@ -9855,6 +9917,8 @@ const allIcons = [
9855
9917
  number18Icon,
9856
9918
  number19Icon,
9857
9919
  number20Icon,
9920
+ orderIcon,
9921
+ orderStatusIcon,
9858
9922
  invoiceRecipientIcon,
9859
9923
  faqIcon,
9860
9924
  gteIcon,
@@ -11534,7 +11598,7 @@ class ClrDateFilterComponent {
11534
11598
  }
11535
11599
  }
11536
11600
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ClrDateFilterComponent, deps: [{ token: i2.ClrCommonStringsService }, { token: i2.ClrPopoverEventsService }, { token: i2.ClrDatagridFilter }], target: i0.ɵɵFactoryTarget.Component }); }
11537
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: ClrDateFilterComponent, isStandalone: false, selector: "clr-date-filter", inputs: { timeActive: "timeActive", dateValidationError: "dateValidationError", property: ["clrProperty", "property"], maxPlaceholder: ["clrFilterMaxPlaceholder", "maxPlaceholder"], minPlaceholder: ["clrFilterMinPlaceholder", "minPlaceholder"], value: ["clrFilterValue", "value"] }, outputs: { filterValueChange: "clrFilterValueChange" }, ngImport: i0, template: "<button class=\"btn btn-sm btn-icon btn-link btn-trash\" (click)=\"clearFilter()\">\n <cds-icon shape=\"trash\"></cds-icon>\n</button>\n<ng-container *ngIf=\"!timeActive\">\n <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</ng-container>\n<ng-container *ngIf=\"timeActive\">\n <clr-date-time-container>\n <clr-date-container class=\"time-filter-active\">\n <input\n #input_from\n type=\"date\"\n name=\"from\"\n class=\"datagrid-date-filter-input time-filter-active-input\"\n [(clrDate)]=\"from\"\n [placeholder]=\"minPlaceholderValue\"\n [attr.aria-label]=\"minPlaceholderValue\"\n />\n </clr-date-container>\n <input clrTime type=\"time\" class=\"time-filter-input\" step=\"60\" [(ngModel)]=\"fromTime\" />\n </clr-date-time-container>\n <clr-date-time-container>\n <clr-date-container class=\"time-filter-active\">\n <input\n type=\"date\"\n name=\"to\"\n class=\"datagrid-date-filter-input time-filter-active-input\"\n [(clrDate)]=\"to\"\n [placeholder]=\"maxPlaceholderValue\"\n [attr.aria-label]=\"maxPlaceholderValue\"\n />\n </clr-date-container>\n <input clrTime type=\"time\" class=\"time-filter-input\" step=\"60\" [(ngModel)]=\"toTime\" />\n </clr-date-time-container>\n <clr-control-error *ngIf=\"valError\"\n >{{ dateValidationError || 'Date \"from\" must be before date \"to\"!' }}\n </clr-control-error>\n</ng-container>\n", styles: [".btn-trash{position:absolute;top:15px;right:40px;padding:0}.time-filter-active{width:12rem}.time-filter-active-input,.time-filter-input{width:4.5rem!important}\n"], dependencies: [{ kind: "directive", type: i2.CdsIconCustomTag, selector: "cds-icon" }, { kind: "component", type: i2.ClrControlError, selector: "clr-control-error" }, { kind: "component", type: i2.ClrDateContainer, selector: "clr-date-container", inputs: ["showActionButtons", "clrPosition"] }, { kind: "directive", type: i2.ClrDateInput, selector: "[clrDate]", inputs: ["placeholder", "clrDate", "min", "max", "disabled"], outputs: ["clrDateChange"] }, { kind: "directive", type: i2.ClrDateInputValidator, selector: "[clrDate]" }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3$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: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: ClrDateTimeContainer, selector: "clr-date-time-container" }, { kind: "directive", type: ClrTimeInput, selector: "[clrTime]" }] }); }
11601
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: ClrDateFilterComponent, isStandalone: false, selector: "clr-date-filter", inputs: { timeActive: "timeActive", dateValidationError: "dateValidationError", property: ["clrProperty", "property"], maxPlaceholder: ["clrFilterMaxPlaceholder", "maxPlaceholder"], minPlaceholder: ["clrFilterMinPlaceholder", "minPlaceholder"], value: ["clrFilterValue", "value"] }, outputs: { filterValueChange: "clrFilterValueChange" }, ngImport: i0, template: "<button class=\"btn btn-sm btn-icon btn-link btn-trash\" (click)=\"clearFilter()\">\n <cds-icon shape=\"trash\"></cds-icon>\n</button>\n<ng-container *ngIf=\"!timeActive\">\n <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</ng-container>\n<ng-container *ngIf=\"timeActive\">\n <clr-date-time-container>\n <clr-date-container class=\"time-filter-active\">\n <input\n #input_from\n type=\"date\"\n name=\"from\"\n class=\"datagrid-date-filter-input time-filter-active-input\"\n [(clrDate)]=\"from\"\n [placeholder]=\"minPlaceholderValue\"\n [attr.aria-label]=\"minPlaceholderValue\"\n />\n </clr-date-container>\n <input clrTime type=\"time\" class=\"time-filter-input\" step=\"60\" [(ngModel)]=\"fromTime\" />\n </clr-date-time-container>\n <clr-date-time-container>\n <clr-date-container class=\"time-filter-active\">\n <input\n type=\"date\"\n name=\"to\"\n class=\"datagrid-date-filter-input time-filter-active-input\"\n [(clrDate)]=\"to\"\n [placeholder]=\"maxPlaceholderValue\"\n [attr.aria-label]=\"maxPlaceholderValue\"\n />\n </clr-date-container>\n <input clrTime type=\"time\" class=\"time-filter-input\" step=\"60\" [(ngModel)]=\"toTime\" />\n </clr-date-time-container>\n <clr-control-error *ngIf=\"valError\"\n >{{ dateValidationError || 'Date \"from\" must be before date \"to\"!' }}\n </clr-control-error>\n</ng-container>\n", styles: [".btn-trash{position:absolute;top:15px;right:40px;padding:0}.time-filter-active{width:12rem}.time-filter-active-input,.time-filter-input{width:4.5rem!important}\n"], dependencies: [{ kind: "directive", type: i2.CdsIconCustomTag, selector: "cds-icon" }, { kind: "component", type: i2.ClrControlError, selector: "clr-control-error" }, { kind: "component", type: i2.ClrDateContainer, selector: "clr-date-container, clr-date-range-container", inputs: ["showActionButtons", "clrPosition", "rangeOptions", "min", "max"] }, { kind: "directive", type: i2.ClrDateInput, selector: "[clrDate]", inputs: ["clrDate", "min", "max"], outputs: ["clrDateChange"] }, { kind: "directive", type: i2.ClrDateInputValidator, selector: "[clrDate], [clrStartDate], [clrEndDate]" }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i3$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: i3$1.NgControlStatus, selector: "[formControlName],[ngModel],[formControl]" }, { kind: "directive", type: i3$1.NgModel, selector: "[ngModel]:not([formControlName]):not([formControl])", inputs: ["name", "disabled", "ngModel", "ngModelOptions"], outputs: ["ngModelChange"], exportAs: ["ngModel"] }, { kind: "component", type: ClrDateTimeContainer, selector: "clr-date-time-container" }, { kind: "directive", type: ClrTimeInput, selector: "[clrTime]" }] }); }
11538
11602
  }
11539
11603
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ClrDateFilterComponent, decorators: [{
11540
11604
  type: Component,
@@ -11802,7 +11866,7 @@ class ClrDatepickerComponent {
11802
11866
  this.inputElm.nativeElement.focus();
11803
11867
  }
11804
11868
  static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ClrDatepickerComponent, deps: [{ token: OpenedDatepickersTrackerService }], target: i0.ɵɵFactoryTarget.Component }); }
11805
- static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: ClrDatepickerComponent, isStandalone: false, selector: "clr-datepicker", inputs: { value: "value", label: "label", minDate: "minDate", maxDate: "maxDate", timeSelection: "timeSelection" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "inputElm", first: true, predicate: ["inputElm"], descendants: true }, { propertyName: "clrDateContainer", first: true, predicate: ClrDateContainer, descendants: true }], ngImport: i0, template: "<clr-date-container>\n <label>{{ this.label }}</label>\n <input #inputElm clrDate [(clrDate)]=\"this.date\" [min]=\"this.minDateAttr\" [max]=\"this.maxDateAttr\" />\n</clr-date-container>\n", dependencies: [{ kind: "directive", type: i2.ClrLabel, selector: "label", inputs: ["id", "for"] }, { kind: "component", type: i2.ClrDateContainer, selector: "clr-date-container", inputs: ["showActionButtons", "clrPosition"] }, { kind: "directive", type: i2.ClrDateInput, selector: "[clrDate]", inputs: ["placeholder", "clrDate", "min", "max", "disabled"], outputs: ["clrDateChange"] }, { kind: "directive", type: i2.ClrDateInputValidator, selector: "[clrDate]" }] }); }
11869
+ static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.1.5", type: ClrDatepickerComponent, isStandalone: false, selector: "clr-datepicker", inputs: { value: "value", label: "label", minDate: "minDate", maxDate: "maxDate", timeSelection: "timeSelection" }, outputs: { valueChange: "valueChange" }, viewQueries: [{ propertyName: "inputElm", first: true, predicate: ["inputElm"], descendants: true }, { propertyName: "clrDateContainer", first: true, predicate: ClrDateContainer, descendants: true }], ngImport: i0, template: "<clr-date-container>\n <label>{{ this.label }}</label>\n <input #inputElm clrDate [(clrDate)]=\"this.date\" [min]=\"this.minDateAttr\" [max]=\"this.maxDateAttr\" />\n</clr-date-container>\n", dependencies: [{ kind: "directive", type: i2.ClrLabel, selector: "label", inputs: ["id", "for"] }, { kind: "component", type: i2.ClrDateContainer, selector: "clr-date-container, clr-date-range-container", inputs: ["showActionButtons", "clrPosition", "rangeOptions", "min", "max"] }, { kind: "directive", type: i2.ClrDateInput, selector: "[clrDate]", inputs: ["clrDate", "min", "max"], outputs: ["clrDateChange"] }, { kind: "directive", type: i2.ClrDateInputValidator, selector: "[clrDate], [clrStartDate], [clrEndDate]" }] }); }
11806
11870
  }
11807
11871
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImport: i0, type: ClrDatepickerComponent, decorators: [{
11808
11872
  type: Component,
@@ -14092,5 +14156,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.1.5", ngImpor
14092
14156
  * Generated bundle index. Do not edit.
14093
14157
  */
14094
14158
 
14095
- export { ACShape, AcceptanceDateShape, AcceptedBrands, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BIG_ENDIAN, BlocksGroupForwardShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CampaignOutdatedShape, CampaignShape, CarOffSite, CarOnSite, CircleFilled, CircleHalfFilled, CircleQuarterFilled, CircleThreeQuartersFilled, ClrActionPanel, ClrActionPanelContainer, ClrActionPanelContainerContent, ClrActionPanelContainerFooter, ClrActionPanelModule, ClrActiveNotification, 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, ClrDaterangeMaxValidator, ClrDaterangeMinValidator, ClrDaterangeOrderValidator, ClrDaterangeRequiredValidator, ClrDaterangepickerContainerComponent, ClrDaterangepickerDirective, ClrDaterangepickerModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrIfDaterangeErrorDirective, ClrIfWarning, ClrIfWarningModule, 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, ClrReadonlyDirective, ClrReadonlyDirectiveModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, CompletedByDateShape, CupraBrandShape, Customer, CustomerVip, CustomerWaiting, DATE, DELIMITER_REGEX, DWABrandShape, DatagridFieldDirective, DayModel, DieselShape, DollarBillForwardShape, DollarBillPartialShape, EnergyShape, ExternalPartForwardShape, FirstRegistrationDate, GasCarsServiceShape, GasShape, HISTORY_NOTIFICATION_URL_PROVIDER, HISTORY_PROVIDER, HistoryProvider, InternalPartForwardShape, InvoiceReadyShape, InvoiceRecipient, InvoiceShape, ItemsForwardShape, ItemsReceiveShape, LITTLE_ENDIAN, LITTLE_ENDIAN_REGEX, LocationBarComponent, LocationBarContentProvider, LocationBarNode, LogoCommissionModule, LogoCommissionModuleFavIcon, LogoCommissionModuleNegative, LogoCommissionModuleNegativeFavIcon, LogoCostApproval, LogoCostApprovalFavIcon, LogoCostApprovalNegative, LogoCostApprovalNegativeFavIcon, LogoCostControlling, LogoCostControllingFavIcon, LogoCostControllingNegative, LogoCostControllingNegativeFavIcon, LogoDigitalServiceReception, LogoDigitalServiceReceptionFavIcon, LogoDigitalServiceReceptionNegative, LogoDigitalServiceReceptionNegativeFavIcon, LogoDocFlow, LogoDocFlowFavIcon, LogoDocFlowNegative, LogoDocFlowNegativeFavIcon, LogoDocScan, LogoDocScanFavIcon, LogoDocScanNegative, LogoDocScanNegativeFavIcon, LogoDocStore, LogoDocStoreFavIcon, LogoDocStoreNegative, LogoDocStoreNegativeFavIcon, LogoEBilling, LogoEBillingFavIcon, LogoEBillingNegative, LogoEBillingNegativeFavIcon, LogoEPayment, LogoEPaymentFavIcon, LogoEPaymentNegative, LogoEPaymentNegativeFavIcon, LogoMobilityPlanner, LogoMobilityPlannerFavIcon, LogoMobilityPlannerNegative, LogoMobilityPlannerNegativeFavIcon, LogoPartsMobile, LogoPartsMobileFavIcon, LogoPartsMobileNegative, LogoPartsMobileNegativeFavIcon, LogoSBO, LogoSBOFavIcon, LogoSBONegative, LogoSBONegativeFavIcon, LogoServiceCube, LogoServiceCubeFavIcon, LogoServiceCubeNegative, LogoServiceCubeNegativeFavIcon, LogoWCP, LogoWCPFavIcon, LogoWCPNegative, LogoWCPNegativeFavIcon, LogoWorkshopOrderTracker, LogoWorkshopOrderTrackerFavIcon, LogoWorkshopOrderTrackerNegative, LogoWorkshopOrderTrackerNegativeFavIcon, MIDDLE_ENDIAN, MIDDLE_ENDIAN_REGEX, MONTH, Mechanic, NewCarUtilityVehicleShape, NodeId, Number0, Number1, Number10, Number11, Number12, Number13, Number14, Number15, Number16, Number17, Number18, Number19, Number2, Number20, Number3, Number4, Number5, Number6, Number7, Number8, Number9, PaintMaterialForwardShape, PaintMaterialShape, ParkingLocation, PartNonStockForwardShape, PartsChangelocation, PartsForwardShape, PartsInventory, PartsNonStockShape, PartsPicking, PartsPickingPlus, PartsReceiving, PartsShape, PlusServiceShape, PopoverPositions, PorscheBrandShape, PriceTypeSwitchShape, RepeatRepairShape, ReturnDateShape, SEPARATOR_TEXT_DEFAULT, SeatBrandShape, ServiceAdvisor, SkodaBrandShape, StatePersistenceKeyDirective, TRANSLATIONS, TaskAndAppointment, TextForward, TimeModel, TopcardShape, TouaregServiceShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, USER_INPUT_REGEX, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, VinShape, VsfSearchShape, VsfSearchShape48, WCPShape, WrenchForward, YEAR, acceleration, accelerationIcon, acceptanceDateIcon, accessories, accessoriesIcon, accessoryPartsIcon, adblueAppIcon, adblue_app, add, addIcon, airConditionerIcon, air_conditioning, alert, alertFilledAppIcon, alertIcon, alertNotificationFilledAppIcon, alert_filled_app, alert_notification_filled_app, allIcons, ambientLightAppIcon, ambient_light_app, amplifier, amplifierIcon, appConnectAppIcon, app_connect_app, archive, archiveIcon, arrowDownIcon, arrowLeftAlignedAppIcon, arrowLeftIcon, arrowRightIcon, arrowSliderAppIcon, arrowUpIcon, arrow_down, arrow_left, arrow_left_aligned_app, arrow_right, arrow_slider_app, arrow_up, attachment, attachmentIcon, audiBrandIcon, authentPlugChargeAppIcon, authentQrAppIcon, authentRfidAppIcon, authentTouchidAppIcon, authent_plug_charge_app, authent_qr_app, authent_rfid_app, authent_touch_id_app, automaticTempAppIcon, automatic_temp_app, awardWinnerPremiumIcon, award_winner_premium, back, backIcon, battery, batteryIcon, batterySocChargingAppIcon, batterySocDepartureAppIcon, batterySocDestinationAppIcon, battery_soc_charging_app, battery_soc_departure_app, battery_soc_destination_app, bin, binIcon, blocksGroupForwardIcon, bluetooth, bluetoothIcon, bookmark, bookmarkFilledIcon, bookmarkIcon, bookmark_filled, brakeAppIcon, brake_app, brochure, brochureIcon, bulletpointAppIcon, bulletpoint_app, bundleForwardIcon, businessCustomersCommercialIcon, businessCustomersPrivateIcon, businessPartnerWithCarIcon, business_customers_commercial, business_customers_private, calc, calcIcon, calculatorForwardIcon, calendar, calendarCustomIcon, californiaServiceIcon, californiaSpecialistIcon, california_specialist, cameraScanIcon, camera_scan, campaignIcon, campaignOutdatedIcon, carDocumentsIcon, carErrorAppIcon, carInsuranceIcon, carOffSite, carOnSite, carPickupServiceIcon, carPlusIcon, carSettingsIcon, carVerifiedAppIcon, carWashIcon, carWheelAppIcon, car_documents, car_error_app, car_insurance, car_pickup_service, car_plus, car_settings, car_verified_app, car_wheel_app, carwash, certifiedRepairIcon, certifiedRetailerIcon, certified_repair, certified_retailer, challengeAppIcon, challenge_app, charging, chargingIcon, chargingPduAppIcon, chargingStationIcon, chargingTarifOverviewAppIcon, charging_pdu_app, charging_station, charging_tarif_overview_app, chat, chatAppIcon, chatIcon, chat_app, checkboxCheckedAppIcon, checkboxCheckedIcon, checkboxUncheckedAppIcon, checkboxUncheckedIcon, checkbox_checked, checkbox_checked_app, checkbox_unchecked, checkbox_unchecked_app, checkmark, checkmarkAppIcon, checkmarkFilledAppIcon, checkmarkIcon, checkmark_app, checkmark_filled_app, chevronDownIcon, chevronLeftAlignedappIcon, chevronLeftIcon, chevronRightAlignedappIcon, chevronRightIcon, chevronSmallLeftAlignedappIcon, chevronSmallRightAlignedappIcon, chevronUpIcon, chevron_down, chevron_left, chevron_left_alignedapp, chevron_right, chevron_right_alignedapp, chevron_small_left_alignedapp, chevron_small_right_alignedapp, chevron_up, circleFilledIcon, circleHalfFilledIcon, circleQuarterFilledIcon, circleThreeQuartersFilledIcon, city, cityIcon, clearAppIcon, clearRightAlignedappIcon, clear_app, clear_right_alignedapp, clock, clockIcon, close, closeAppIcon, closeCircleIcon, closeIcon, closeLeftAlignedappIcon, closeRightAlignedappIcon, close_app, close_circle, close_left_alignedapp, close_right_alignedapp, clrIconSVG, coffeeFilledAppIcon, coffee_filled_app, compassAppIcon, compass_app, completedByDateIcon, configuratorCommercialIcon, configuratorPrivateIcon, configurator_commercial, configurator_private, construction, constructionIcon, consumptionFuelFilledAppIcon, consumptionIcon, consumption_fuel, consumption_fuel_filled_app, contact, contactDealerFilledAppIcon, contactDealerIcon, contactIcon, contact_dealer, contact_dealer_filled_app, countryRoadIcon, country_road, craft, craftIcon, cupraBrandIcon, customerIcon, customerVipIcon, customerWaitingIcon, customersCenterIcon, customers_center, dataCopyAppIcon, dataExpiredIcon, dataFilledIcon, dataInputIcon, dataPlugAppIcon, dataSearchIcon, dataTimeExtensionIcon, data_copy_app, data_expired, data_filled, data_input, data_plug_app, data_search, data_time_extension, defogDefrostAutoAppIcon, defogDefrostIcon, defog_defrost, defog_defrost_auto_app, destinationAppIcon, destination_app, dieselIcon, direction, directionIcon, dischargingAppIcon, discharging_app, discountAppIcon, discount_app, discoveryAppIcon, discovery_app, dollarBillForwardIcon, dollarBillPartialIcon, download, downloadCustomIcon, dragIndicatorIcon, drag_indicator, driversAssistanceIcon, drivers_assistance, dropFilledAppIcon, drop_filled_app, dwaBrandIcon, eco, ecoIcon, edit, editIcon, editSmallRightAlignedAppIcon, edit_small_right_aligned_app, efficiency, efficiencyIcon, electricCarsIcon, electricCarsServiceIcon, electric_cars, electric_cars_service, electricity, electricityFilledAppIcon, electricityIcon, electricity_filled_app, emergency, emergencyIcon, emission, emissionIcon, energyIcon, engine, engineIcon, entertainment, entertainmentIcon, escapeHtml, escapeRegex, exportAppIcon, export_app, expressServiceIcon, express_service, exterior, exterior360Icon, exteriorIcon, exterior_360, externalPartForwardIcon, faq, faqIcon, fastForwardIcon, fast_forward, fax, faxIcon, filter, filterIcon, findACarIcon, findADealerIcon, find_a_car, find_a_dealer, firstRegistrationDateIcon, fleetServiceCommercialIcon, fleetServicePrivateIcon, fleet_service_commercial, fleet_service_private, folderFilledAppIcon, folder_filled_app, foodFilledAppIcon, food_filled_app, formatNumber, fullscreenEnterIcon, fullscreenExitIcon, fullscreen_enter, fullscreen_exit, gallery, galleryIcon, garageAppIcon, garage_app, gasAppIcon, gasCarsServiceIcon, gasIcon, gas_app, glassDamageAppIcon, glass_damage_app, gte, gteIcon, heart, heartFilledAppIcon, heartIcon, heart_filled_app, heightAppIcon, height_app, highwayRoadIcon, highway_road, history, historyIcon, homeAppIcon, homeEnergyAppIcon, homeFilledAppIcon, home_app, home_energy_app, home_filled_app, hornAppIcon, hornFilledAppIcon, horn_app, horn_filled_app, hybrid, hybridIcon, immediateChargingAppIcon, immediate_charging_app, info, infoFilledIcon, infoIcon, info_filled, inputHideIcon, inputShowIcon, input_hide, input_show, interior, interior360Icon, interiorIcon, interior_360, internalPartForwardIcon, internet, internetIcon, invitationAppIcon, invitation_app, invoiceIcon, invoiceReadyIcon, invoiceRecipientIcon, itemsForwardIcon, itemsRecieveIcon, jobportal, jobportalIcon, keyAppIcon, keyCardAppIcon, keyDigitalAppIcon, key_app, key_card_app, key_digital_app, keyboardAppIcon, keyboard_app, layerCollapseAppIcon, layerExpandAppIcon, layer_collapse_app, layer_expand_app, layersAppIcon, layers_app, legalTermsAndConditionsAppIcon, legal_terms_and_conditions_app, licencePlateAppIcon, licence_plate_app, lightAssistappIcon, light_assistapp, lightingAppIcon, lighting_app, linkExternAppIcon, link_extern_app, list, listIcon, loadingVolumeIcon, loading_volume, localBusinessIcon, local_business, locate, locateIcon, lock, lockIcon, lockOpenIcon, lock_open, login, loginIcon, logistic, logisticIcon, logoCommissionModuleFavIcon, logoCommissionModuleIcon, logoCommissionModuleNegativeFavIcon, logoCommissionModuleNegativeIcon, logoCostApprovalFavIcon, logoCostApprovalIcon, logoCostApprovalNegativeFavIcon, logoCostApprovalNegativeIcon, logoCrossControllingFavIcon, logoCrossControllingIcon, logoCrossControllingNegativeFavIcon, logoCrossControllingNegativeIcon, logoDigitalServiceReceptionFavIcon, logoDigitalServiceReceptionIcon, logoDigitalServiceReceptionNegativeFavIcon, logoDigitalServiceReceptionNegativeIcon, logoDocFlowFavIcon, logoDocFlowIcon, logoDocFlowNegativeFavIcon, logoDocFlowNegativeIcon, logoDocScanFavIcon, logoDocScanIcon, logoDocScanNegativeFavIcon, logoDocScanNegativeIcon, logoDocStoreFavIcon, logoDocStoreIcon, logoDocStoreNegativeFavIcon, logoDocStoreNegativeIcon, logoEBillingFavIcon, logoEBillingIcon, logoEBillingNegativeFavIcon, logoEBillingNegativeIcon, logoEPaymentFavIcon, logoEPaymentIcon, logoEPaymentNegativeFavIcon, logoEPaymentNegativeIcon, logoMobilityPlannerFavIcon, logoMobilityPlannerIcon, logoMobilityPlannerNegativeFavIcon, logoMobilityPlannerNegativeIcon, logoPartsMobileFavIcon, logoPartsMobileIcon, logoPartsMobileNegativeFavIcon, logoPartsMobileNegativeIcon, logoSBOFavIcon, logoSBOIcon, logoSBONegativeFavIcon, logoSBONegativeIcon, logoServiceCubeFavIcon, logoServiceCubeIcon, logoServiceCubeNegativeFavIcon, logoServiceCubeNegativeIcon, logoWCPFavIcon, logoWCPIcon, logoWCPNegativeFavIcon, logoWCPNegativeIcon, logoWorkshopOrderTrackerFavIcon, logoWorkshopOrderTrackerIcon, logoWorkshopOrderTrackerNegativeFavIcon, logoWorkshopOrderTrackerNegativeIcon, logout, logoutIcon, magnifier, magnifierIcon, magnifierMinusIcon, magnifierPlusIcon, magnifier_minus, magnifier_plus, mail, mailIcon, mailResendAppIcon, mail_resend_app, manual, manualIcon, map, mapIcon, mechanicIcon, media, mediaIcon, menu, menuAppAppIcon, menuIcon, menu_app_app, microphoneAppIcon, microphone_app, mobile, mobileIcon, moreAppIcon, moreAppbarAppIcon, more_app, more_appbar_app, mot, motIcon, motability, motabilityIcon, navigate, navigateFilledAppIcon, navigateIcon, navigate_filled_app, newCarCommercialIcon, newCarPrivateFilledAppIcon, newCarPrivateIcon, newCarUtilityVehicleIcon, new_car_commercial, new_car_private, new_car_private_filled_app, nightServiceIcon, night_service, notification, notificationFilledIcon, notificationIcon, notification_filled, number0Icon, number10Icon, number11Icon, number12Icon, number13Icon, number14Icon, number15Icon, number16Icon, number17Icon, number18Icon, number19Icon, number1Icon, number20Icon, number2Icon, number3Icon, number4Icon, number5Icon, number6Icon, number7Icon, number8Icon, number9Icon, offers, offersFilledAppIcon, offersIcon, offers_filled_app, officeAppIcon, officeFilledAppIcon, office_app, office_filled_app, oilLevelIcon, oilLevelWarningIcon, oilTemperatureAppIcon, oil_level, oil_level_warning, oil_temperature_app, onCallDutyIcon, on_call_duty, openSatIcon, open_sat, paintMaterialForwardIcon, paintMaterialIcon, paintShopIcon, paint_shop, paragraphAppIcon, paragraph_app, parkHeaterAppIcon, park_heater_app, parking, parkingFilledAppIcon, parkingGarageAppIcon, parkingIcon, parkingLocationIcon, parkingRouteAppIcon, parkingValetAppIcon, parking_filled_app, parking_garage_app, parking_route_app, parking_valet_app, partsChangelocationIcon, partsForwardIcon, partsIcon, partsInventoryIcon, partsNonStockForwardIcon, partsNonStockIcon, partsPickingIcon, partsPickingPlusIcon, partsReceivingIcon, pause, pauseIcon, payload, payloadIcon, paymentAppIcon, paymentCashAppIcon, paymentChargingCardAppIcon, paymentCreditcardAppIcon, paymentMachineAppIcon, payment_app, payment_cash_app, payment_charging_card_app, payment_creditcard_app, payment_machine_app, performance, performanceIcon, petrol, petrolIcon, phone, phoneIcon, pin, pinFilledAppIcon, pinGenericFilledAppIcon, pinIcon, pin_filled_app, pin_generic_filled_app, play, playIcon, plugCcsAppIcon, plugChademoAppIcon, plugChargeAppIcon, plugGenericAppIcon, plugSchukoAppIcon, plugType1AppIcon, plugType2AppIcon, plug_ccs_app, plug_chademo_app, plug_charge_app, plug_generic_app, plug_schuko_app, plug_type1_app, plug_type2_app, plusServiceIcon, porscheBrandIcon, power, powerIcon, powerTrainIcon, powertrain, preHeaterAppIcon, pre_heater_app, preciseLaneNavigationAppIcon, precise_lane_navigation_app, presentAppIcon, present_app, priceTypeSwitchIcon, printer, printerIcon, privacyAppIcon, privacy_app, profile, profileIcon, profileRegisterAppIcon, profileVerifiedIcon, profile_register_app, profile_verified, publicServiceIcon, publicTransportAppIcon, public_service, public_transport_app, qualifiedWorkshopIcon, qualified_workshop, questionnaireAppIcon, questionnaire_app, radio, radioButtonInselectedIcon, radioButtonSelectedForDefIcon, radioButtonSelectedIcon, radioIcon, radio_button_inselected, radio_button_selected, radio_button_selected_for_development, range, rangeIcon, reload, reloadIcon, remove, removeIcon, repeat, repeatIcon, repeatRepairIcon, returnDateIcon, rewind, rewindIcon, roadsideAssistanceIcon, roadside_assistance, route, routeArrowAppIcon, routeIcon, route_arrow_app, routesHistoryAppIcon, routes_history_app, rss, rssIcon, safety, safetyIcon, save, saveAppIcon, saveIcon, save_app, seat, seatAirIcon, seatBrandIcon, seatIcon, seat_air, secretTipAppIcon, secretTipFilledAppIcon, secret_tip_app, secret_tip_filled_app, selected, selectedIcon, selectedPartnerNetworkAppIcon, selected_partner_network_app, sendToCarAppIcon, send_to_car_app, service, serviceAdvisorIcon, serviceBellIcon, serviceFilledAppIcon, serviceIcon, service_bell, service_filled_app, settings, settingsIcon, shareAndroidIcon, shareIosIcon, share_android, share_ios, shoppingCartFilledAppIcon, shoppingCartIcon, shopping_cart, shopping_cart_filled_app, shuffle, shuffleIcon, size, sizeIcon, skillAppIcon, skill_app, skipBackwardIcon, skipForwardIcon, skip_backward, skip_forward, skodaBrandIcon, softwareDownloadAppIcon, software_download_app, sortingAppIcon, sorting_app, sound, soundIcon, standardEquipmentIcon, standard_equipment, starFilledIcon, starOutlineIcon, star_filled, star_outline, statisticAppIcon, statistic_app, stockLocatorCommercialIcon, stockLocatorPrivateIcon, stock_locator_commercial, stock_locator_private, stop, stopIcon, strip, switchPositionAppIcon, switch_position_app, syncAppIcon, sync_app, taskAndAppointmentIcon, taxiDealerIcon, taxi_dealer, technicalSpecificationIcon, technical_specification, temperatureAppIcon, temperature_app, testDriveIcon, test_drive, textForwardIcon, thumbsdownAppIcon, thumbsdownFilledAppIcon, thumbsdown_app, thumbsdown_filled_app, thumbsupAppIcon, thumbsupFilledAppIcon, thumbsup_app, thumbsup_filled_app, timeClimatisationAppIcon, timePreferredAppIcon, time_climatisation_app, time_preferred_app, timer, timerIcon, topcardIcon, touaregServiceIcon, transcriptDownloadIcon, transcript_download, transmissionAutomaticIcon, transmissionManualIcon, transmission_automatic, transmission_manual, tripAppIcon, tripLongAppIcon, tripPartedAppIcon, tripShortAppIcon, trip_app, trip_long_app, trip_parted_app, trip_short_app, turnSignalsIcon, turn_signals, unselected, unselectedIcon, updateRefreshAppIcon, update_refresh_app, upload, uploadAppIcon, uploadCustomIcon, upload_app, usedCarCommercialIcon, usedCarPrivateIcon, used_car_commercial, used_car_private, vehicleAmarokIcon, vehicleCaddyIcon, vehicleConversionIcon, vehicleCrafterIcon, vehicleHightIcon, vehicleIdBuzzIcon, vehicleMultivanIcon, vehicleTransporterIcon, vehicle_amarok, vehicle_caddy, vehicle_crafter, vehicle_hight, vehicle_idbuzz, vehicle_multivan, vehicle_transporter, videoChatIcon, video_chat, view360Icon, view_360, vinIcon, virtualRealityIcon, virtual_reality, voiceMessageAppIcon, voice_message_app, volkswagenAppIcon, volkswagenIcon, volkswagen_app, volumeMaximumIcon, volumeMediumIcon, volumeMuteIcon, volume_maximum, volume_medium, volume_mute, vsfSearch48Icon, vsfSearchIcon, vwBrandIcon, vwConnectLicenseAppIcon, vw_connect_license_app, vwnBrandIcon, walkingAppIcon, walkingFilledAppIcon, walking_app, walking_filled_app, wallbox, wallboxIcon, wcAppIcon, wc_app, wcpIcon, weAssistAppIcon, weChargeAppIcon, weDeliverAppIcon, weExperienceAppIcon, weParkAppIcon, weUpgradeAppIcon, we_assist_app, we_charge_app, we_deliver_app, we_experience_app, we_park_app, we_upgrade_app, weatherSunAppIcon, weather_sun_app, wheelToWheelIcon, wheel_to_wheel, windscreenWashIcon, windscreen_wash, wlanHotspotIcon, wlan_hotspot, wrenchForwardIcon };
14159
+ export { ACShape, AcceptanceDateShape, AcceptedBrands, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BIG_ENDIAN, BlocksGroupForwardShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CampaignOutdatedShape, CampaignShape, CarOffSite, CarOnSite, CircleFilled, CircleHalfFilled, CircleQuarterFilled, CircleThreeQuartersFilled, ClrActionPanel, ClrActionPanelContainer, ClrActionPanelContainerContent, ClrActionPanelContainerFooter, ClrActionPanelModule, ClrActiveNotification, 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, ClrDaterangeMaxValidator, ClrDaterangeMinValidator, ClrDaterangeOrderValidator, ClrDaterangeRequiredValidator, ClrDaterangepickerContainerComponent, ClrDaterangepickerDirective, ClrDaterangepickerModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrIfDaterangeErrorDirective, ClrIfWarning, ClrIfWarningModule, 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, ClrReadonlyDirective, ClrReadonlyDirectiveModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, CompletedByDateShape, CupraBrandShape, Customer, CustomerVip, CustomerVipCollection, CustomerWaiting, CustomerWaitingCollection, DATE, DELIMITER_REGEX, DWABrandShape, DatagridFieldDirective, DayModel, DieselShape, DollarBillForwardShape, DollarBillPartialShape, EnergyShape, ExternalPartForwardShape, FirstRegistrationDate, GasCarsServiceShape, GasShape, HISTORY_NOTIFICATION_URL_PROVIDER, HISTORY_PROVIDER, HistoryProvider, InternalPartForwardShape, InvoiceReadyShape, InvoiceRecipient, InvoiceShape, ItemsForwardShape, ItemsReceiveShape, LITTLE_ENDIAN, LITTLE_ENDIAN_REGEX, LocationBarComponent, LocationBarContentProvider, LocationBarNode, LogoCommissionModule, LogoCommissionModuleFavIcon, LogoCommissionModuleNegative, LogoCommissionModuleNegativeFavIcon, LogoCostApproval, LogoCostApprovalFavIcon, LogoCostApprovalNegative, LogoCostApprovalNegativeFavIcon, LogoCostControlling, LogoCostControllingFavIcon, LogoCostControllingNegative, LogoCostControllingNegativeFavIcon, LogoDigitalServiceReception, LogoDigitalServiceReceptionFavIcon, LogoDigitalServiceReceptionNegative, LogoDigitalServiceReceptionNegativeFavIcon, LogoDocFlow, LogoDocFlowFavIcon, LogoDocFlowNegative, LogoDocFlowNegativeFavIcon, LogoDocScan, LogoDocScanFavIcon, LogoDocScanNegative, LogoDocScanNegativeFavIcon, LogoDocStore, LogoDocStoreFavIcon, LogoDocStoreNegative, LogoDocStoreNegativeFavIcon, LogoEBilling, LogoEBillingFavIcon, LogoEBillingNegative, LogoEBillingNegativeFavIcon, LogoEPayment, LogoEPaymentFavIcon, LogoEPaymentNegative, LogoEPaymentNegativeFavIcon, LogoMobilityPlanner, LogoMobilityPlannerFavIcon, LogoMobilityPlannerNegative, LogoMobilityPlannerNegativeFavIcon, LogoPartsMobile, LogoPartsMobileFavIcon, LogoPartsMobileNegative, LogoPartsMobileNegativeFavIcon, LogoSBO, LogoSBOFavIcon, LogoSBONegative, LogoSBONegativeFavIcon, LogoServiceCube, LogoServiceCubeFavIcon, LogoServiceCubeNegative, LogoServiceCubeNegativeFavIcon, LogoWCP, LogoWCPFavIcon, LogoWCPNegative, LogoWCPNegativeFavIcon, LogoWorkshopOrderTracker, LogoWorkshopOrderTrackerFavIcon, LogoWorkshopOrderTrackerNegative, LogoWorkshopOrderTrackerNegativeFavIcon, MIDDLE_ENDIAN, MIDDLE_ENDIAN_REGEX, MONTH, Mechanic, NewCarUtilityVehicleShape, NodeId, Number0, Number1, Number10, Number11, Number12, Number13, Number14, Number15, Number16, Number17, Number18, Number19, Number2, Number20, Number3, Number4, Number5, Number6, Number7, Number8, Number9, OrderShape, OrderStatusShape, PaintMaterialForwardShape, PaintMaterialShape, ParkingLocation, PartAvailabilityInfoShape, PartAvailabilityNoShape, PartAvailabilityUnknownShape, PartAvailabilityWarningShape, PartAvailabilityYesShape, PartNonStockForwardShape, PartsChangelocation, PartsForwardShape, PartsInventory, PartsNonStockShape, PartsPicking, PartsPickingPlus, PartsReceiving, PartsShape, PlusServiceShape, PopoverPositions, PorscheBrandShape, PriceTypeSwitchShape, RepeatRepairCollection, RepeatRepairShape, ReplacementVehicleCollection, ReplacementVehicleShape, ReturnDateShape, SEPARATOR_TEXT_DEFAULT, SeatBrandShape, ServiceAdvisor, SkodaBrandShape, StatePersistenceKeyDirective, TRANSLATIONS, TaskAndAppointment, TextForward, TimeModel, TopcardShape, TouaregServiceShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, USER_INPUT_REGEX, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, VinShape, VsfSearchShape, VsfSearchShape48, WCPShape, WrenchForward, YEAR, acceleration, accelerationIcon, acceptanceDateIcon, accessories, accessoriesIcon, accessoryPartsIcon, adblueAppIcon, adblue_app, add, addIcon, airConditionerIcon, air_conditioning, alert, alertFilledAppIcon, alertIcon, alertNotificationFilledAppIcon, alert_filled_app, alert_notification_filled_app, allIcons, ambientLightAppIcon, ambient_light_app, amplifier, amplifierIcon, appConnectAppIcon, app_connect_app, archive, archiveIcon, arrowDownIcon, arrowLeftAlignedAppIcon, arrowLeftIcon, arrowRightIcon, arrowSliderAppIcon, arrowUpIcon, arrow_down, arrow_left, arrow_left_aligned_app, arrow_right, arrow_slider_app, arrow_up, attachment, attachmentIcon, audiBrandIcon, authentPlugChargeAppIcon, authentQrAppIcon, authentRfidAppIcon, authentTouchidAppIcon, authent_plug_charge_app, authent_qr_app, authent_rfid_app, authent_touch_id_app, automaticTempAppIcon, automatic_temp_app, awardWinnerPremiumIcon, award_winner_premium, back, backIcon, battery, batteryIcon, batterySocChargingAppIcon, batterySocDepartureAppIcon, batterySocDestinationAppIcon, battery_soc_charging_app, battery_soc_departure_app, battery_soc_destination_app, bin, binIcon, blocksGroupForwardIcon, bluetooth, bluetoothIcon, bookmark, bookmarkFilledIcon, bookmarkIcon, bookmark_filled, brakeAppIcon, brake_app, brochure, brochureIcon, bulletpointAppIcon, bulletpoint_app, bundleForwardIcon, businessCustomersCommercialIcon, businessCustomersPrivateIcon, businessPartnerWithCarIcon, business_customers_commercial, business_customers_private, calc, calcIcon, calculatorForwardIcon, calendar, calendarCustomIcon, californiaServiceIcon, californiaSpecialistIcon, california_specialist, cameraScanIcon, camera_scan, campaignIcon, campaignOutdatedIcon, carDocumentsIcon, carErrorAppIcon, carInsuranceIcon, carOffSite, carOnSite, carPickupServiceIcon, carPlusIcon, carSettingsIcon, carVerifiedAppIcon, carWashIcon, carWheelAppIcon, car_documents, car_error_app, car_insurance, car_pickup_service, car_plus, car_settings, car_verified_app, car_wheel_app, carwash, certifiedRepairIcon, certifiedRetailerIcon, certified_repair, certified_retailer, challengeAppIcon, challenge_app, charging, chargingIcon, chargingPduAppIcon, chargingStationIcon, chargingTarifOverviewAppIcon, charging_pdu_app, charging_station, charging_tarif_overview_app, chat, chatAppIcon, chatIcon, chat_app, checkboxCheckedAppIcon, checkboxCheckedIcon, checkboxUncheckedAppIcon, checkboxUncheckedIcon, checkbox_checked, checkbox_checked_app, checkbox_unchecked, checkbox_unchecked_app, checkmark, checkmarkAppIcon, checkmarkFilledAppIcon, checkmarkIcon, checkmark_app, checkmark_filled_app, chevronDownIcon, chevronLeftAlignedappIcon, chevronLeftIcon, chevronRightAlignedappIcon, chevronRightIcon, chevronSmallLeftAlignedappIcon, chevronSmallRightAlignedappIcon, chevronUpIcon, chevron_down, chevron_left, chevron_left_alignedapp, chevron_right, chevron_right_alignedapp, chevron_small_left_alignedapp, chevron_small_right_alignedapp, chevron_up, circleFilledIcon, circleHalfFilledIcon, circleQuarterFilledIcon, circleThreeQuartersFilledIcon, city, cityIcon, clearAppIcon, clearRightAlignedappIcon, clear_app, clear_right_alignedapp, clock, clockIcon, close, closeAppIcon, closeCircleIcon, closeIcon, closeLeftAlignedappIcon, closeRightAlignedappIcon, close_app, close_circle, close_left_alignedapp, close_right_alignedapp, clrIconSVG, coffeeFilledAppIcon, coffee_filled_app, compassAppIcon, compass_app, completedByDateIcon, configuratorCommercialIcon, configuratorPrivateIcon, configurator_commercial, configurator_private, construction, constructionIcon, consumptionFuelFilledAppIcon, consumptionIcon, consumption_fuel, consumption_fuel_filled_app, contact, contactDealerFilledAppIcon, contactDealerIcon, contactIcon, contact_dealer, contact_dealer_filled_app, countryRoadIcon, country_road, craft, craftIcon, cupraBrandIcon, customerIcon, customerVipIcon, customerWaitingIcon, customersCenterIcon, customers_center, dataCopyAppIcon, dataExpiredIcon, dataFilledIcon, dataInputIcon, dataPlugAppIcon, dataSearchIcon, dataTimeExtensionIcon, data_copy_app, data_expired, data_filled, data_input, data_plug_app, data_search, data_time_extension, defogDefrostAutoAppIcon, defogDefrostIcon, defog_defrost, defog_defrost_auto_app, destinationAppIcon, destination_app, dieselIcon, direction, directionIcon, dischargingAppIcon, discharging_app, discountAppIcon, discount_app, discoveryAppIcon, discovery_app, dollarBillForwardIcon, dollarBillPartialIcon, download, downloadCustomIcon, dragIndicatorIcon, drag_indicator, driversAssistanceIcon, drivers_assistance, dropFilledAppIcon, drop_filled_app, dwaBrandIcon, eco, ecoIcon, edit, editIcon, editSmallRightAlignedAppIcon, edit_small_right_aligned_app, efficiency, efficiencyIcon, electricCarsIcon, electricCarsServiceIcon, electric_cars, electric_cars_service, electricity, electricityFilledAppIcon, electricityIcon, electricity_filled_app, emergency, emergencyIcon, emission, emissionIcon, energyIcon, engine, engineIcon, entertainment, entertainmentIcon, escapeHtml, escapeRegex, exportAppIcon, export_app, expressServiceIcon, express_service, exterior, exterior360Icon, exteriorIcon, exterior_360, externalPartForwardIcon, faq, faqIcon, fastForwardIcon, fast_forward, fax, faxIcon, filter, filterIcon, findACarIcon, findADealerIcon, find_a_car, find_a_dealer, firstRegistrationDateIcon, fleetServiceCommercialIcon, fleetServicePrivateIcon, fleet_service_commercial, fleet_service_private, folderFilledAppIcon, folder_filled_app, foodFilledAppIcon, food_filled_app, formatNumber, fullscreenEnterIcon, fullscreenExitIcon, fullscreen_enter, fullscreen_exit, gallery, galleryIcon, garageAppIcon, garage_app, gasAppIcon, gasCarsServiceIcon, gasIcon, gas_app, glassDamageAppIcon, glass_damage_app, gte, gteIcon, heart, heartFilledAppIcon, heartIcon, heart_filled_app, heightAppIcon, height_app, highwayRoadIcon, highway_road, history, historyIcon, homeAppIcon, homeEnergyAppIcon, homeFilledAppIcon, home_app, home_energy_app, home_filled_app, hornAppIcon, hornFilledAppIcon, horn_app, horn_filled_app, hybrid, hybridIcon, immediateChargingAppIcon, immediate_charging_app, info, infoFilledIcon, infoIcon, info_filled, inputHideIcon, inputShowIcon, input_hide, input_show, interior, interior360Icon, interiorIcon, interior_360, internalPartForwardIcon, internet, internetIcon, invitationAppIcon, invitation_app, invoiceIcon, invoiceReadyIcon, invoiceRecipientIcon, itemsForwardIcon, itemsRecieveIcon, jobportal, jobportalIcon, keyAppIcon, keyCardAppIcon, keyDigitalAppIcon, key_app, key_card_app, key_digital_app, keyboardAppIcon, keyboard_app, layerCollapseAppIcon, layerExpandAppIcon, layer_collapse_app, layer_expand_app, layersAppIcon, layers_app, legalTermsAndConditionsAppIcon, legal_terms_and_conditions_app, licencePlateAppIcon, licence_plate_app, lightAssistappIcon, light_assistapp, lightingAppIcon, lighting_app, linkExternAppIcon, link_extern_app, list, listIcon, loadingVolumeIcon, loading_volume, localBusinessIcon, local_business, locate, locateIcon, lock, lockIcon, lockOpenIcon, lock_open, login, loginIcon, logistic, logisticIcon, logoCommissionModuleFavIcon, logoCommissionModuleIcon, logoCommissionModuleNegativeFavIcon, logoCommissionModuleNegativeIcon, logoCostApprovalFavIcon, logoCostApprovalIcon, logoCostApprovalNegativeFavIcon, logoCostApprovalNegativeIcon, logoCrossControllingFavIcon, logoCrossControllingIcon, logoCrossControllingNegativeFavIcon, logoCrossControllingNegativeIcon, logoDigitalServiceReceptionFavIcon, logoDigitalServiceReceptionIcon, logoDigitalServiceReceptionNegativeFavIcon, logoDigitalServiceReceptionNegativeIcon, logoDocFlowFavIcon, logoDocFlowIcon, logoDocFlowNegativeFavIcon, logoDocFlowNegativeIcon, logoDocScanFavIcon, logoDocScanIcon, logoDocScanNegativeFavIcon, logoDocScanNegativeIcon, logoDocStoreFavIcon, logoDocStoreIcon, logoDocStoreNegativeFavIcon, logoDocStoreNegativeIcon, logoEBillingFavIcon, logoEBillingIcon, logoEBillingNegativeFavIcon, logoEBillingNegativeIcon, logoEPaymentFavIcon, logoEPaymentIcon, logoEPaymentNegativeFavIcon, logoEPaymentNegativeIcon, logoMobilityPlannerFavIcon, logoMobilityPlannerIcon, logoMobilityPlannerNegativeFavIcon, logoMobilityPlannerNegativeIcon, logoPartsMobileFavIcon, logoPartsMobileIcon, logoPartsMobileNegativeFavIcon, logoPartsMobileNegativeIcon, logoSBOFavIcon, logoSBOIcon, logoSBONegativeFavIcon, logoSBONegativeIcon, logoServiceCubeFavIcon, logoServiceCubeIcon, logoServiceCubeNegativeFavIcon, logoServiceCubeNegativeIcon, logoWCPFavIcon, logoWCPIcon, logoWCPNegativeFavIcon, logoWCPNegativeIcon, logoWorkshopOrderTrackerFavIcon, logoWorkshopOrderTrackerIcon, logoWorkshopOrderTrackerNegativeFavIcon, logoWorkshopOrderTrackerNegativeIcon, logout, logoutIcon, magnifier, magnifierIcon, magnifierMinusIcon, magnifierPlusIcon, magnifier_minus, magnifier_plus, mail, mailIcon, mailResendAppIcon, mail_resend_app, manual, manualIcon, map, mapIcon, mechanicIcon, media, mediaIcon, menu, menuAppAppIcon, menuIcon, menu_app_app, microphoneAppIcon, microphone_app, mobile, mobileIcon, moreAppIcon, moreAppbarAppIcon, more_app, more_appbar_app, mot, motIcon, motability, motabilityIcon, navigate, navigateFilledAppIcon, navigateIcon, navigate_filled_app, newCarCommercialIcon, newCarPrivateFilledAppIcon, newCarPrivateIcon, newCarUtilityVehicleIcon, new_car_commercial, new_car_private, new_car_private_filled_app, nightServiceIcon, night_service, notification, notificationFilledIcon, notificationIcon, notification_filled, number0Icon, number10Icon, number11Icon, number12Icon, number13Icon, number14Icon, number15Icon, number16Icon, number17Icon, number18Icon, number19Icon, number1Icon, number20Icon, number2Icon, number3Icon, number4Icon, number5Icon, number6Icon, number7Icon, number8Icon, number9Icon, offers, offersFilledAppIcon, offersIcon, offers_filled_app, officeAppIcon, officeFilledAppIcon, office_app, office_filled_app, oilLevelIcon, oilLevelWarningIcon, oilTemperatureAppIcon, oil_level, oil_level_warning, oil_temperature_app, onCallDutyIcon, on_call_duty, openSatIcon, open_sat, orderIcon, orderStatusIcon, paintMaterialForwardIcon, paintMaterialIcon, paintShopIcon, paint_shop, paragraphAppIcon, paragraph_app, parkHeaterAppIcon, park_heater_app, parking, parkingFilledAppIcon, parkingGarageAppIcon, parkingIcon, parkingLocationIcon, parkingRouteAppIcon, parkingValetAppIcon, parking_filled_app, parking_garage_app, parking_route_app, parking_valet_app, partAvailabilityInfoIcon, partAvailabilityNoIcon, partAvailabilityUnknownIcon, partAvailabilityWarningIcon, partAvailabilityYesIcon, partIdenticalIcon, partIdenticalPredecessorIcon, partIdenticalPredecessorShape, partIdenticalShape, partIdenticalSuccessorIcon, partIdenticalSuccessorShape, partIdenticalSuccpredecessorIcon, partIdenticalSuccpredecessorShape, partsChangelocationIcon, partsForwardIcon, partsIcon, partsInventoryIcon, partsNonStockForwardIcon, partsNonStockIcon, partsPickingIcon, partsPickingPlusIcon, partsReceivingIcon, pause, pauseIcon, payload, payloadIcon, paymentAppIcon, paymentCashAppIcon, paymentChargingCardAppIcon, paymentCreditcardAppIcon, paymentMachineAppIcon, payment_app, payment_cash_app, payment_charging_card_app, payment_creditcard_app, payment_machine_app, performance, performanceIcon, petrol, petrolIcon, phone, phoneIcon, pin, pinFilledAppIcon, pinGenericFilledAppIcon, pinIcon, pin_filled_app, pin_generic_filled_app, play, playIcon, plugCcsAppIcon, plugChademoAppIcon, plugChargeAppIcon, plugGenericAppIcon, plugSchukoAppIcon, plugType1AppIcon, plugType2AppIcon, plug_ccs_app, plug_chademo_app, plug_charge_app, plug_generic_app, plug_schuko_app, plug_type1_app, plug_type2_app, plusServiceIcon, porscheBrandIcon, power, powerIcon, powerTrainIcon, powertrain, preHeaterAppIcon, pre_heater_app, preciseLaneNavigationAppIcon, precise_lane_navigation_app, presentAppIcon, present_app, priceTypeSwitchIcon, printer, printerIcon, privacyAppIcon, privacy_app, profile, profileIcon, profileRegisterAppIcon, profileVerifiedIcon, profile_register_app, profile_verified, publicServiceIcon, publicTransportAppIcon, public_service, public_transport_app, qualifiedWorkshopIcon, qualified_workshop, questionnaireAppIcon, questionnaire_app, radio, radioButtonInselectedIcon, radioButtonSelectedForDefIcon, radioButtonSelectedIcon, radioIcon, radio_button_inselected, radio_button_selected, radio_button_selected_for_development, range, rangeIcon, reload, reloadIcon, remove, removeIcon, repeat, repeatIcon, repeatRepairIcon, replacementVehicleIcon, returnDateIcon, rewind, rewindIcon, roadsideAssistanceIcon, roadside_assistance, route, routeArrowAppIcon, routeIcon, route_arrow_app, routesHistoryAppIcon, routes_history_app, rss, rssIcon, safety, safetyIcon, save, saveAppIcon, saveIcon, save_app, seat, seatAirIcon, seatBrandIcon, seatIcon, seat_air, secretTipAppIcon, secretTipFilledAppIcon, secret_tip_app, secret_tip_filled_app, selected, selectedIcon, selectedPartnerNetworkAppIcon, selected_partner_network_app, sendToCarAppIcon, send_to_car_app, service, serviceAdvisorIcon, serviceBellIcon, serviceFilledAppIcon, serviceIcon, service_bell, service_filled_app, settings, settingsIcon, shareAndroidIcon, shareIosIcon, share_android, share_ios, shoppingCartFilledAppIcon, shoppingCartIcon, shopping_cart, shopping_cart_filled_app, shuffle, shuffleIcon, size, sizeIcon, skillAppIcon, skill_app, skipBackwardIcon, skipForwardIcon, skip_backward, skip_forward, skodaBrandIcon, softwareDownloadAppIcon, software_download_app, sortingAppIcon, sorting_app, sound, soundIcon, standardEquipmentIcon, standard_equipment, starFilledIcon, starOutlineIcon, star_filled, star_outline, statisticAppIcon, statistic_app, stockLocatorCommercialIcon, stockLocatorPrivateIcon, stock_locator_commercial, stock_locator_private, stop, stopIcon, strip, switchPositionAppIcon, switch_position_app, syncAppIcon, sync_app, taskAndAppointmentIcon, taxiDealerIcon, taxi_dealer, technicalSpecificationIcon, technical_specification, temperatureAppIcon, temperature_app, testDriveIcon, test_drive, textForwardIcon, thumbsdownAppIcon, thumbsdownFilledAppIcon, thumbsdown_app, thumbsdown_filled_app, thumbsupAppIcon, thumbsupFilledAppIcon, thumbsup_app, thumbsup_filled_app, timeClimatisationAppIcon, timePreferredAppIcon, time_climatisation_app, time_preferred_app, timer, timerIcon, topcardIcon, touaregServiceIcon, transcriptDownloadIcon, transcript_download, transmissionAutomaticIcon, transmissionManualIcon, transmission_automatic, transmission_manual, tripAppIcon, tripLongAppIcon, tripPartedAppIcon, tripShortAppIcon, trip_app, trip_long_app, trip_parted_app, trip_short_app, turnSignalsIcon, turn_signals, unselected, unselectedIcon, updateRefreshAppIcon, update_refresh_app, upload, uploadAppIcon, uploadCustomIcon, upload_app, usedCarCommercialIcon, usedCarPrivateIcon, used_car_commercial, used_car_private, vehicleAmarokIcon, vehicleCaddyIcon, vehicleConversionIcon, vehicleCrafterIcon, vehicleHightIcon, vehicleIdBuzzIcon, vehicleMultivanIcon, vehicleTransporterIcon, vehicle_amarok, vehicle_caddy, vehicle_crafter, vehicle_hight, vehicle_idbuzz, vehicle_multivan, vehicle_transporter, videoChatIcon, video_chat, view360Icon, view_360, vinIcon, virtualRealityIcon, virtual_reality, voiceMessageAppIcon, voice_message_app, volkswagenAppIcon, volkswagenIcon, volkswagen_app, volumeMaximumIcon, volumeMediumIcon, volumeMuteIcon, volume_maximum, volume_medium, volume_mute, vsfSearch48Icon, vsfSearchIcon, vwBrandIcon, vwConnectLicenseAppIcon, vw_connect_license_app, vwnBrandIcon, walkingAppIcon, walkingFilledAppIcon, walking_app, walking_filled_app, wallbox, wallboxIcon, wcAppIcon, wc_app, wcpIcon, weAssistAppIcon, weChargeAppIcon, weDeliverAppIcon, weExperienceAppIcon, weParkAppIcon, weUpgradeAppIcon, we_assist_app, we_charge_app, we_deliver_app, we_experience_app, we_park_app, we_upgrade_app, weatherSunAppIcon, weather_sun_app, wheelToWheelIcon, wheel_to_wheel, windscreenWashIcon, windscreen_wash, wlanHotspotIcon, wlan_hotspot, wrenchForwardIcon };
14096
14160
  //# sourceMappingURL=clr-addons.mjs.map