@porscheinformatik/clr-addons 19.3.1 → 19.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/collapse-expand-section/collapse-expand-section.d.ts +4 -2
- package/fesm2022/clr-addons.mjs +19 -6
- package/fesm2022/clr-addons.mjs.map +1 -1
- package/icons/shapes.d.ts +2 -0
- package/main-nav-group/main-nav-group.d.ts +2 -1
- package/package.json +3 -3
- package/styles/clr-addons-phs.css +44 -36
- package/styles/clr-addons-phs.css.map +1 -1
- package/styles/clr-addons-phs.min.css +1 -1
- package/styles/clr-addons-phs.min.css.map +1 -1
|
@@ -1,11 +1,13 @@
|
|
|
1
|
-
import { EventEmitter } from '@angular/core';
|
|
1
|
+
import { AfterViewInit, EventEmitter } from '@angular/core';
|
|
2
2
|
import * as i0 from "@angular/core";
|
|
3
|
-
export declare class ClrCollapseExpandSection {
|
|
3
|
+
export declare class ClrCollapseExpandSection implements AfterViewInit {
|
|
4
4
|
isCollapsed: boolean;
|
|
5
5
|
disableHeaderStyles: boolean;
|
|
6
6
|
disableSubtitle: boolean;
|
|
7
7
|
collapsed: EventEmitter<any>;
|
|
8
8
|
expanded: EventEmitter<any>;
|
|
9
|
+
disableAnimation: boolean;
|
|
10
|
+
ngAfterViewInit(): void;
|
|
9
11
|
onCollapseExpand(): void;
|
|
10
12
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClrCollapseExpandSection, never>;
|
|
11
13
|
static ɵcmp: i0.ɵɵComponentDeclaration<ClrCollapseExpandSection, "clr-collapse-expand-section", never, { "isCollapsed": { "alias": "clrIsCollapsed"; "required": false; }; "disableHeaderStyles": { "alias": "clrDisableHeaderStyles"; "required": false; }; "disableSubtitle": { "alias": "clrDisableSubtitle"; "required": false; }; }, { "collapsed": "clrCollapsed"; "expanded": "clrExpanded"; }, never, ["[clr-ces-title]", "[clr-ces-subtitle]", "[clr-ces-content]"], false, never>;
|
package/fesm2022/clr-addons.mjs
CHANGED
|
@@ -159,6 +159,13 @@ class ClrCollapseExpandSection {
|
|
|
159
159
|
this.disableSubtitle = false;
|
|
160
160
|
this.collapsed = new EventEmitter();
|
|
161
161
|
this.expanded = new EventEmitter();
|
|
162
|
+
this.disableAnimation = true;
|
|
163
|
+
}
|
|
164
|
+
ngAfterViewInit() {
|
|
165
|
+
// do not animate before first change detection cycle
|
|
166
|
+
setTimeout(() => {
|
|
167
|
+
this.disableAnimation = false;
|
|
168
|
+
}, 0);
|
|
162
169
|
}
|
|
163
170
|
onCollapseExpand() {
|
|
164
171
|
if (this.isCollapsed) {
|
|
@@ -170,7 +177,7 @@ class ClrCollapseExpandSection {
|
|
|
170
177
|
this.isCollapsed = !this.isCollapsed;
|
|
171
178
|
}
|
|
172
179
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ClrCollapseExpandSection, deps: [], target: i0.ɵɵFactoryTarget.Component }); }
|
|
173
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: ClrCollapseExpandSection, isStandalone: false, selector: "clr-collapse-expand-section", inputs: { isCollapsed: ["clrIsCollapsed", "isCollapsed"], disableHeaderStyles: ["clrDisableHeaderStyles", "disableHeaderStyles"], disableSubtitle: ["clrDisableSubtitle", "disableSubtitle"] }, outputs: { collapsed: "clrCollapsed", expanded: "clrExpanded" }, ngImport: i0, template: "<div class=\"ces\">\n <div class=\"ces-title\" [class.disabled-header-styles]=\"disableHeaderStyles\">\n <h2 *ngIf=\"!disableHeaderStyles; else title\">\n <ng-container *ngTemplateOutlet=\"title\"></ng-container>\n </h2>\n <ng-template #title>\n <ng-content select=\"[clr-ces-title]\"></ng-content>\n <button type=\"button\" (click)=\"onCollapseExpand()\" class=\"btn btn-icon btn-link ces-caret-btn\">\n <cds-icon
|
|
180
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "19.2.6", type: ClrCollapseExpandSection, isStandalone: false, selector: "clr-collapse-expand-section", inputs: { isCollapsed: ["clrIsCollapsed", "isCollapsed"], disableHeaderStyles: ["clrDisableHeaderStyles", "disableHeaderStyles"], disableSubtitle: ["clrDisableSubtitle", "disableSubtitle"] }, outputs: { collapsed: "clrCollapsed", expanded: "clrExpanded" }, ngImport: i0, template: "<div class=\"ces\">\n <div class=\"ces-title\" [class.disabled-header-styles]=\"disableHeaderStyles\">\n <h2 *ngIf=\"!disableHeaderStyles; else title\">\n <ng-container *ngTemplateOutlet=\"title\"></ng-container>\n </h2>\n <ng-template #title>\n <ng-content select=\"[clr-ces-title]\"></ng-content>\n <button type=\"button\" (click)=\"onCollapseExpand()\" class=\"btn btn-icon btn-link ces-caret-btn\">\n <cds-icon\n shape=\"angle\"\n direction=\"up\"\n size=\"28\"\n class=\"ces-caret-icon\"\n [@rotateIcon]=\"isCollapsed\"\n [@.disabled]=\"disableAnimation\"\n ></cds-icon>\n </button>\n </ng-template>\n </div>\n <div class=\"ces-subtitle\" *ngIf=\"!disableSubtitle\">\n <h4 *ngIf=\"!disableHeaderStyles; else subtitle\">\n <ng-container *ngTemplateOutlet=\"subtitle\"></ng-container>\n </h4>\n <ng-template #subtitle>\n <ng-content select=\"[clr-ces-subtitle]\"></ng-content>\n </ng-template>\n </div>\n <div [@collapseExpandAnimation]=\"isCollapsed\" [@.disabled]=\"disableAnimation\" *ngIf=\"!isCollapsed\">\n <ng-content select=\"[clr-ces-content]\"></ng-content>\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" }], animations: [
|
|
174
181
|
trigger('collapseExpandAnimation', [
|
|
175
182
|
transition(':enter', [
|
|
176
183
|
style({ opacity: 0, height: 0, overflow: 'hidden' }),
|
|
@@ -208,7 +215,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
208
215
|
transition('true => false', animate('300ms ease-out')),
|
|
209
216
|
transition('false => true', animate('300ms ease-in')),
|
|
210
217
|
]),
|
|
211
|
-
], standalone: false, template: "<div class=\"ces\">\n <div class=\"ces-title\" [class.disabled-header-styles]=\"disableHeaderStyles\">\n <h2 *ngIf=\"!disableHeaderStyles; else title\">\n <ng-container *ngTemplateOutlet=\"title\"></ng-container>\n </h2>\n <ng-template #title>\n <ng-content select=\"[clr-ces-title]\"></ng-content>\n <button type=\"button\" (click)=\"onCollapseExpand()\" class=\"btn btn-icon btn-link ces-caret-btn\">\n <cds-icon
|
|
218
|
+
], standalone: false, template: "<div class=\"ces\">\n <div class=\"ces-title\" [class.disabled-header-styles]=\"disableHeaderStyles\">\n <h2 *ngIf=\"!disableHeaderStyles; else title\">\n <ng-container *ngTemplateOutlet=\"title\"></ng-container>\n </h2>\n <ng-template #title>\n <ng-content select=\"[clr-ces-title]\"></ng-content>\n <button type=\"button\" (click)=\"onCollapseExpand()\" class=\"btn btn-icon btn-link ces-caret-btn\">\n <cds-icon\n shape=\"angle\"\n direction=\"up\"\n size=\"28\"\n class=\"ces-caret-icon\"\n [@rotateIcon]=\"isCollapsed\"\n [@.disabled]=\"disableAnimation\"\n ></cds-icon>\n </button>\n </ng-template>\n </div>\n <div class=\"ces-subtitle\" *ngIf=\"!disableSubtitle\">\n <h4 *ngIf=\"!disableHeaderStyles; else subtitle\">\n <ng-container *ngTemplateOutlet=\"subtitle\"></ng-container>\n </h4>\n <ng-template #subtitle>\n <ng-content select=\"[clr-ces-subtitle]\"></ng-content>\n </ng-template>\n </div>\n <div [@collapseExpandAnimation]=\"isCollapsed\" [@.disabled]=\"disableAnimation\" *ngIf=\"!isCollapsed\">\n <ng-content select=\"[clr-ces-content]\"></ng-content>\n </div>\n</div>\n" }]
|
|
212
219
|
}], propDecorators: { isCollapsed: [{
|
|
213
220
|
type: Input,
|
|
214
221
|
args: ['clrIsCollapsed']
|
|
@@ -1377,14 +1384,17 @@ class ClrMainNavGroup {
|
|
|
1377
1384
|
setTimeout(() => this.items.toArray()[this.currentFocusedId].focus());
|
|
1378
1385
|
}
|
|
1379
1386
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ClrMainNavGroup, deps: [{ token: i0.Injector }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
1380
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "
|
|
1387
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "17.0.0", version: "19.2.6", type: ClrMainNavGroup, isStandalone: false, selector: "clr-main-nav-group", inputs: { title: ["clrTitle", "title"], icon: ["clrIcon", "icon"] }, host: { properties: { "class.main-nav-group": "true" } }, queries: [{ propertyName: "items", predicate: ClrMainNavGroupItem }], ngImport: i0, template: "<section\n class=\"nav-link collapsible\"\n (click)=\"onClick($event)\"\n (keydown.enter)=\"onClick($event)\"\n (keydown.space)=\"onClick($event)\"\n [class.active]=\"isActive()\"\n tabindex=\"0\"\n>\n <input id=\"{{prefix}}{{id}}\" type=\"checkbox\" [checked]=\"isChecked()\" />\n <label class=\"nav-text nav-trigger\" for=\"{{prefix}}{{id}}\">\n @if (icon) {\n <cds-icon class=\"title-icon\" [attr.shape]=\"icon\"></cds-icon>\n } {{title}}\n <cds-icon class=\"dropdown-icon\" shape=\"angle\" direction=\"down\"></cds-icon>\n </label>\n <div class=\"nav-list dropdown-menu\">\n <ng-content></ng-content>\n </div>\n</section>\n", dependencies: [{ kind: "directive", type: i2.CdsIconCustomTag, selector: "cds-icon" }, { kind: "directive", type: i2.ClrLabel, selector: "label", inputs: ["id", "for"] }] }); }
|
|
1381
1388
|
}
|
|
1382
1389
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImport: i0, type: ClrMainNavGroup, decorators: [{
|
|
1383
1390
|
type: Component,
|
|
1384
|
-
args: [{ selector: 'clr-main-nav-group', host: { '[class.main-nav-group]': 'true' }, standalone: false, template: "<section\n class=\"nav-link collapsible\"\n (click)=\"onClick($event)\"\n (keydown.enter)=\"onClick($event)\"\n (keydown.space)=\"onClick($event)\"\n [class.active]=\"isActive()\"\n tabindex=\"0\"\n>\n <input id=\"{{prefix}}{{id}}\" type=\"checkbox\" [checked]=\"isChecked()\" />\n <label class=\"nav-text nav-trigger\" for=\"{{prefix}}{{id}}\"\n
|
|
1391
|
+
args: [{ selector: 'clr-main-nav-group', host: { '[class.main-nav-group]': 'true' }, standalone: false, template: "<section\n class=\"nav-link collapsible\"\n (click)=\"onClick($event)\"\n (keydown.enter)=\"onClick($event)\"\n (keydown.space)=\"onClick($event)\"\n [class.active]=\"isActive()\"\n tabindex=\"0\"\n>\n <input id=\"{{prefix}}{{id}}\" type=\"checkbox\" [checked]=\"isChecked()\" />\n <label class=\"nav-text nav-trigger\" for=\"{{prefix}}{{id}}\">\n @if (icon) {\n <cds-icon class=\"title-icon\" [attr.shape]=\"icon\"></cds-icon>\n } {{title}}\n <cds-icon class=\"dropdown-icon\" shape=\"angle\" direction=\"down\"></cds-icon>\n </label>\n <div class=\"nav-list dropdown-menu\">\n <ng-content></ng-content>\n </div>\n</section>\n" }]
|
|
1385
1392
|
}], ctorParameters: () => [{ type: i0.Injector }], propDecorators: { title: [{
|
|
1386
1393
|
type: Input,
|
|
1387
1394
|
args: ['clrTitle']
|
|
1395
|
+
}], icon: [{
|
|
1396
|
+
type: Input,
|
|
1397
|
+
args: ['clrIcon']
|
|
1388
1398
|
}], items: [{
|
|
1389
1399
|
type: ContentChildren,
|
|
1390
1400
|
args: [ClrMainNavGroupItem]
|
|
@@ -4849,6 +4859,7 @@ const CampaignShape = clrIconSVG(`<sodipodi:namedview bordercolor="#000000" bor
|
|
|
4849
4859
|
</g>
|
|
4850
4860
|
</g>`, '0 0 36 36');
|
|
4851
4861
|
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');
|
|
4862
|
+
const DeliveryDate = clrIconSVG(`<path d="M27,4V9.11a1.468,1.468,0,0,1-1,.39,2.772,2.772,0,0,0-1,.18V4a1,1,0,0,1,2,0ZM10,11a1,1,0,0,0,1-1V4A1,1,0,0,0,9,4v6A1,1,0,0,0,10,11ZM2,9V27.18A2.772,2.772,0,0,1,3,27a2.94,2.94,0,0,1,1-2.23V9H7V7H4A2.006,2.006,0,0,0,2,9ZM32,19.6V31H11.83A3.48,3.48,0,0,1,9,33H32a2.006,2.006,0,0,0,2-2V15.89A1.467,1.467,0,0,0,33.5,17,3,3,0,0,1,32,19.6ZM23,7H13V9H23ZM19.17,23.56a1.121,1.121,0,1,1-2.24-.1A1.127,1.127,0,0,1,18,22.39,1.178,1.178,0,0,1,19.17,23.56Zm7.67-4.51a5.311,5.311,0,0,1,.73,2.81v5.5a1.675,1.675,0,0,1-1.67,1.67H24.2a1.691,1.691,0,0,1-1.67-1.67v-.13H13.37v.13a1.626,1.626,0,0,1-1.54,1.66,2.95,2.95,0,0,0-2.846-2.011A2.822,2.822,0,0,0,8.43,25.24V21.86a6.231,6.231,0,0,1,.73-2.82l.4-.67-1.87-.28.28-1.83.5.07c.57.08,1.2.17,1.78.31l1.11-2.39a2.779,2.779,0,0,1,2.31-1.65l8.63-.01a3.435,3.435,0,0,1,.72.17,2.973,2.973,0,0,0,2.26,2.65l.49,1.16.04-.01c.48-.07,1.01-.14,1.51-.25a1.367,1.367,0,0,1,.18.69,2.908,2.908,0,0,0,.2,1.07c-.48.09-1.09.18-1.21.2ZM12.28,16.84a50.864,50.864,0,0,0,5.77.33,50.864,50.864,0,0,0,5.77-.33l-.77-1.88a1.159,1.159,0,0,0-.9-.53H13.83a1.178,1.178,0,0,0-.79.55Zm13.44,5.94c-1.08.17-2.19.26-3.4.35l-.27.02-.14-1.83.27-.03c1.21-.09,2.31-.18,3.39-.35a7.049,7.049,0,0,0-.39-1.11l-.55-1.27a53.545,53.545,0,0,1-6.63.37,48.479,48.479,0,0,1-6.45-.38l-.71,1.43a5.774,5.774,0,0,0-.41.96c1.1.17,2.3.26,3.46.35l.25.02.03.25v1.59l-.29-.02c-1.19-.09-2.4-.18-3.51-.35v4.41h1.16v-1.8H24.47v1.9h1.16ZM31.5,17A3.5,3.5,0,0,1,35,13.5a1,1,0,0,0,0-2A3.5,3.5,0,0,1,31.5,8a1,1,0,0,0-2,0A3.5,3.5,0,0,1,26,11.5a1,1,0,0,0,0,2A3.5,3.5,0,0,1,29.5,17a1,1,0,0,0,2,0Zm-1-5.841A5.51,5.51,0,0,0,31.841,12.5,5.51,5.51,0,0,0,30.5,13.841,5.51,5.51,0,0,0,29.159,12.5,5.51,5.51,0,0,0,30.5,11.159ZM7,33a2,2,0,0,1,2-2,1,1,0,0,0,0-2,2,2,0,0,1-2-2,1,1,0,0,0-2,0,2,2,0,0,1-2,2,1,1,0,0,0,0,2,2,2,0,0,1,2,2,1,1,0,0,0,2,0ZM6,29.643A3.759,3.759,0,0,0,6.357,30,3.759,3.759,0,0,0,6,30.357,3.759,3.759,0,0,0,5.643,30,3.759,3.759,0,0,0,6,29.643Z"/>`, '0 0 36 36');
|
|
4852
4863
|
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');
|
|
4853
4864
|
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"/>`);
|
|
4854
4865
|
const RepeatRepairCollection = {
|
|
@@ -4887,7 +4898,7 @@ const PriceTypeSwitchShape = clrIconSVG(`<path d="M2.598 6.605h13.106c3.1 0 3.92
|
|
|
4887
4898
|
<path d="M3.69 4.996c.808-.81 2.022-1.982 3.643-3.512L6.42.516C2.407 4.306 1.335 5.382 1.335 5.9c0 .518 1.072 1.597 5.085 5.39l.914-.967A176.794 176.794 0 013.69 6.806c-.384-.386-.674-.69-.868-.906.194-.216.484-.518.868-.904zM19.978 16.996c-.807-.81-2.022-1.982-3.643-3.512l.913-.968c4.014 3.79 5.086 4.866 5.086 5.384 0 .518-1.073 1.597-5.085 5.39l-.914-.967a176.795 176.795 0 003.643-3.517c.384-.386.674-.69.867-.906a25.407 25.407 0 00-.867-.904z"/>`);
|
|
4888
4899
|
const TouaregServiceShape = clrIconSVG(`<path d="M.735 9.949a2.213 2.213 0 003.129 0L5.913 7.9a3.921 3.921 0 004.245-2.084l.157-.486L9.5 3.877l.8-1.45-.157-.314A3.861 3.861 0 006.6 0a3.848 3.848 0 00-3.982 3.979 4.383 4.383 0 00.061.723L.649 6.731a2.213 2.213 0 000 3.128zm.855-2.276l2.556-2.558-.1-.369a2.974 2.974 0 01-.1-.767A2.534 2.534 0 016.6 1.33a2.585 2.585 0 012.184 1.09l-.124.224H6.887L5.768 4.037l1.17 1.123h1.755l.158.278a2.688 2.688 0 01-2.994 1.1l-.366-.092-2.567 2.562a.907.907 0 01-1.246 0l-.089-.09a.88.88 0 010-1.248zm19.819 10.535a2.38 2.38 0 00.1-1.827c-.007-.018-.017-.033-.024-.051a53.47 53.47 0 001-.383 2.1 2.1 0 001.467-1.6c.247-.872-.558-2.289-1.022-3.084a1.918 1.918 0 00-2.025-1.143 7.536 7.536 0 00-.819.05c-1.985.217-4.093.7-4.093.7a32.316 32.316 0 00-3.254-1.21 5.418 5.418 0 00-1.639-.291A13.983 13.983 0 006.555 10.6C3.023 11.932 1.16 13.109.6 13.786c.505.651.368.612-.291 2.325S.18 18.64.684 20.337a3.548 3.548 0 001.269 2.125 4.064 4.064 0 00.437.019 8.044 8.044 0 001.63-.181c.074-.016.166-.038.274-.066.014.054.02.109.039.162A2.391 2.391 0 006.587 24c.065 0 .129-.011.194-.016L6.734 24h4.035L24 19.38v-1.409l-3.447 1.2a2.382 2.382 0 00.856-.963zm-1.154-1.386a1.061 1.061 0 01-2 .705 1.062 1.062 0 011-1.413 1.073 1.073 0 01.314.049 1.059 1.059 0 01.26.126c.006 0 .014.006.02.01a1.061 1.061 0 01.393.5c.002.006.009.013.013.023zm-.022-5.334a6.3 6.3 0 01.674-.042c.565 0 .6.02.842.427-.608.13-1.192.272-1.964.48l.346 1.285c.9-.243 1.537-.395 2.27-.543a2.115 2.115 0 01.273.884c-.128.454-.18.532-.682.734-.224.09-.712.275-1.356.516a2.383 2.383 0 00-3.537.91 2.455 2.455 0 00-.163.453c-1.2.437-2.4.869-3.336 1.2-.411.144-.891.311-1.4.487l-1.472-3.761c4.66-1.682 7.865-2.766 7.916-2.784l-.008-.02c.51-.087 1.057-.167 1.597-.226zm-7.882-.564a29.11 29.11 0 012.251.8c-1.254.441-2.776.981-4.5 1.6l-1.64-2A8.41 8.41 0 0111.1 10.7a4.108 4.108 0 011.251.224zM2.215 14.147a23.583 23.583 0 014.808-2.3l.117-.043L8.8 13.8c-2.2.8-4.655 1.713-7.214 2.691.089-.23.17-.432.238-.6a3.44 3.44 0 00.391-1.744zM3.747 21a6.742 6.742 0 01-1.242.148 3.867 3.867 0 01-.546-1.191c-.093-.314-.187-.6-.275-.866A8.591 8.591 0 011.37 18a500.413 500.413 0 018.1-3.027l1.463 3.739c-.952.323-1.964.662-2.925.978a2.377 2.377 0 00-3.675 1.161c-.253.069-.456.123-.586.149zm2.383 1.564a1.051 1.051 0 01-.541-.605c-.011-.031-.006-.063-.014-.095a1.07 1.07 0 01.085-.751.822.822 0 01.049-.067 1.021 1.021 0 01.181-.232 1.032 1.032 0 01.7-.267 1.029 1.029 0 01.31.053 1.059 1.059 0 01.256.123c.008 0 .017.007.025.012a1.068 1.068 0 01.392.495c0 .011.013.019.017.031a1.061 1.061 0 01-.651 1.352 1.051 1.051 0 01-.809-.049zm1.785 1.024a2.371 2.371 0 00.931-2.772c1.909-.632 3.923-1.32 5.2-1.767.841-.3 1.892-.673 2.965-1.063a2.391 2.391 0 002.246 1.582c.08 0 .159-.012.239-.02z"/>`);
|
|
4889
4900
|
const VehicleConversionShape = clrIconSVG(`<path d="M23.887 17.55a4.447 4.447 0 00-2.092-3.5l-.852-.508a3.6 3.6 0 01-.718-.565L17.019 9.72a2.723 2.723 0 00-1.928-.831h-1.949l.005-1.771H.584v7.859A35.209 35.209 0 00.4 16.568L.171 19.21a1.044 1.044 0 00.757 1.123l1.992.477a2.354 2.354 0 004.7.015l9.136-.029a2.354 2.354 0 004.7-.015h.166l1.5-.43A1.286 1.286 0 0024 19zm-8.8-7.331a1.392 1.392 0 01.984.434l2.823 2.867-5.765-.026.009-3.275zm-3.274-1.771v1.054l-.03 5.263H1.914V8.448zM1.722 16.681c.013-.163.036-.371.061-.586h10.008l-.01 3.387-4.452.018a2.344 2.344 0 00-4.128.013l-1.685-.4zm3.546 4.989a1.023 1.023 0 01-1-.834 1.052 1.052 0 01-.04-.2 1.036 1.036 0 111.04 1.034zm13.832 0a1.035 1.035 0 111.036-1.035 1.076 1.076 0 01-.03.15 1.024 1.024 0 01-1.006.885zm2.328-2.219h-.291a2.345 2.345 0 00-4.08.013l-3.945.013.013-4.654 7.429.033.56.334a2.878 2.878 0 01.944.944 44.139 44.139 0 00-2.639-.148l-.031 1.33c1.074.025 2.128.092 3.146.191.005.048.023.093.026.142l.105 1.446z"/>`);
|
|
4890
|
-
const WrenchForward = clrIconSVG(`<path d="
|
|
4901
|
+
const WrenchForward = clrIconSVG(`<path d="M.18 26.11L20.35 13.28A9.28 9.28 0 007.54 2.79l-1.34.59 5.38 5.38-2.82 2.83-5.38-5.38-.59 1.33a9.27 9.27 0 0010.49 12.81l12.83 12.83a2 2 0 002.83 0l4.24-4.24a2 2 0 000-2.83zm-5.66 5.66L13.88 18.12l-.57.16a7.27 7.27 0 01-9-4.94A7.54 7.54 0 014 11.28a7.36 7.36 0 01.15-1.48l4.61 4.61 5.66-5.66-4.61-4.6a7.27 7.27 0 018.47 9.16l-.16.57 13.65 13.65z"/><circle cx="27.13" cy="27.09" r="1.3"/><path d="M18.06 28.94l-4-4a1.5 1.5 0 00-2.12 2.12l1.44 1.44H3a1.5 1.5 0 000 3h10.38l-1.44 1.44a1.49 1.49 0 000 2.12 1.5 1.5 0 002.12 0l4-4a1.49 1.49 0 000-2.12z"/><path fill="none" d="M0 0h36v36H0z"/>`, '0 0 36 36');
|
|
4891
4902
|
const TopcardShape = clrIconSVG(`<path fill="none" d="M0 0h36v36H0z"/><path d="M32 6H4a2 2 0 00-2 2v20a2 2 0 002 2h28a2 2 0 002-2V8a2 2 0 00-2-2zm0 2v12H4V8zM4 28v-4h28v4z"/><path d="M12.09 11.24h-1.9v6.24a1.16 1.16 0 01-.24.8.82.82 0 01-.62.26.8.8 0 01-.63-.27 1.13 1.13 0 01-.24-.79v-6.24h-1.9A1 1 0 015.9 11a.65.65 0 01-.22-.52.67.67 0 01.23-.48 1 1 0 01.65-.19h5.53a1 1 0 01.67.2.66.66 0 01.22.52.65.65 0 01-.22.52 1 1 0 01-.67.19zM17.63 9.65a4.53 4.53 0 012.3.55 3.49 3.49 0 011.45 1.54 5.2 5.2 0 01.49 2.34 5.69 5.69 0 01-.27 1.81 3.9 3.9 0 01-.81 1.42 3.51 3.51 0 01-1.32.91 4.85 4.85 0 01-1.8.32 4.75 4.75 0 01-1.81-.33 3.49 3.49 0 01-1.33-.92 3.86 3.86 0 01-.8-1.42 5.76 5.76 0 01-.27-1.8 5.5 5.5 0 01.28-1.81 3.94 3.94 0 01.82-1.41 3.58 3.58 0 011.32-.85 4.79 4.79 0 011.75-.35zm2.48 4.42a4 4 0 00-.31-1.63 2.27 2.27 0 00-.87-1 2.46 2.46 0 00-1.3-.35 2.35 2.35 0 00-1 .19 2.12 2.12 0 00-.76.57 2.9 2.9 0 00-.51 1 4.46 4.46 0 00-.18 1.31 4.6 4.6 0 00.18 1.33 2.78 2.78 0 00.53 1 2.15 2.15 0 00.77.58 2.32 2.32 0 001 .19 2.27 2.27 0 002.12-1.36 4 4 0 00.33-1.83zM26.69 15H25.1v2.44a1.12 1.12 0 01-.25.79.86.86 0 01-1.25 0 1.14 1.14 0 01-.24-.78v-6.58a1.09 1.09 0 01.26-.82 1.19 1.19 0 01.84-.25h2.23a6 6 0 011.53.15 2.3 2.3 0 01.91.49 2.22 2.22 0 01.58.83 3 3 0 01.2 1.11 2.45 2.45 0 01-.81 2 3.69 3.69 0 01-2.41.62zm-.42-3.93H25.1v2.62h1.17a3.4 3.4 0 001-.13 1.18 1.18 0 00.63-.42 1.28 1.28 0 00.22-.77 1.32 1.32 0 00-.34-.92 2.19 2.19 0 00-1.51-.34z"/>`, '0 0 36 36');
|
|
4892
4903
|
const TaskAndAppointment = clrIconSVG(`<path d="M11.59,5.12v2h8.24v-2ZM5,23.85V7.12H7.34v-2H4.58a1.6079,1.6079,0,0,0-1.13.49A1.5847,1.5847,0,0,0,3,6.75l.01,17.56a1.7838,1.7838,0,0,0,.03.28c.02.08.09.28.09.28a1.4509,1.4509,0,0,0,.12.22l.07.1a1.1511,1.1511,0,0,0,.14.17l.09.09.12.1a1.0634,1.0634,0,0,0,.19.11l.11.05c.05.02.1.04.16.06a.6468.6468,0,0,0,.13.04,1.5682,1.5682,0,0,0,.33.04h5.69v-2ZM26.83,5.12H24.07V6.77a4.6661,4.6661,0,0,1,.9.35h1.44V8.14a4.97,4.97,0,0,1,.65.79h1.35V6.72A1.6138,1.6138,0,0,0,26.83,5.12ZM21.95,2a1.0029,1.0029,0,0,0-1,1V6.86c.11-.04.24-.08.36-.11a5.0565,5.0565,0,0,1,1.33-.17c.1,0,.2,0,.31.01V3A1.0029,1.0029,0,0,0,21.95,2ZM9.46,2a1.0029,1.0029,0,0,0-1,1V7.68a1,1,0,0,0,2,0V3A.9965.9965,0,0,0,9.46,2ZM7.68,19.17v2h2v-2Zm0-3.9v2h2v-2Zm0-3.91v2h2v-2Z"/><path d="M17.5626,24.0412a1,1,0,0,1,1.3984-1.4229L21.62,25.2765l5.1353-5.1357a.9994.9994,0,0,1,1.4228.0976.9945.9945,0,0,1,0,1.3l-6.5581,6.56ZM16.1769,16.047V12.963a2.05,2.05,0,0,1,2.0366-2.0371h1.2319a3.3415,3.3415,0,0,1,2.3608-2.2431,3.3794,3.3794,0,0,1,.8316-.1055,3.3389,3.3389,0,0,1,3.1875,2.3486h1.2388a2.0508,2.0508,0,0,1,2.0376,2.0362V16.047Zm10.9248-2V12.963L23.98,12.9259v-1a1.3409,1.3409,0,0,0-2.6817,0v1h-3.084a.0374.0374,0,0,0-.0375.0371v1.084ZM31.45,10.93H31V32H14.28V10.93h-.22a1.6292,1.6292,0,0,0-1.77,1.34,1.21,1.21,0,0,0-.01.19v20A1.5429,1.5429,0,0,0,13.83,34H31.46A1.5407,1.5407,0,0,0,33,32.46v-20A1.5408,1.5408,0,0,0,31.45,10.93Z"/>`, '0 0 36 36');
|
|
4893
4904
|
const ParkingLocation = clrIconSVG(`<path d="M28,8V28H8V8H28m0-2H8A2,2,0,0,0,6,8V28a2,2,0,0,0,2,2H28a2,2,0,0,0,2-2V8a2,2,0,0,0-2-2Z"/><path d="M16,25H14V11h4.5a4.5,4.5,0,0,1,0,9H16Zm0-7h2.5a2.5,2.5,0,0,0,0-5H16Z"/>`, '0 0 36 36');
|
|
@@ -9098,6 +9109,7 @@ const californiaServiceIcon = ['california-service', CaliforniaServiceShape];
|
|
|
9098
9109
|
const carOffSite = ['car-off-site', CarOffSite];
|
|
9099
9110
|
const carOnSite = ['car-on-site', CarOnSite];
|
|
9100
9111
|
const completedByDateIcon = ['completed-by-date', CompletedByDateShape];
|
|
9112
|
+
const deliveryDateIcon = ['delivery-date', DeliveryDate];
|
|
9101
9113
|
const dieselIcon = ['diesel', DieselShape];
|
|
9102
9114
|
const energyIcon = ['energy', EnergyShape];
|
|
9103
9115
|
const gasIcon = ['gas', GasShape];
|
|
@@ -9758,6 +9770,7 @@ const allIcons = [
|
|
|
9758
9770
|
certifiedRetailerIcon,
|
|
9759
9771
|
completedByDateIcon,
|
|
9760
9772
|
configuratorCommercialIcon,
|
|
9773
|
+
deliveryDateIcon,
|
|
9761
9774
|
dieselIcon,
|
|
9762
9775
|
efficiencyIcon,
|
|
9763
9776
|
electricityIcon,
|
|
@@ -14205,5 +14218,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.6", ngImpor
|
|
|
14205
14218
|
* Generated bundle index. Do not edit.
|
|
14206
14219
|
*/
|
|
14207
14220
|
|
|
14208
|
-
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, PartIdenticalPredecessorShape, PartIdenticalShape, PartIdenticalSuccessorShape, PartIdenticalSuccpredecessorShape, PartNonStockForwardShape, PartPredecessorShape, PartSuccessorPredecessorShape, PartSuccessorShape, 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, partIdenticalSuccessorIcon, partIdenticalSuccpredecessorIcon, partPredecessorIcon, partSuccessorIcon, partSuccessorPredecessorIcon, 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 };
|
|
14221
|
+
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, DeliveryDate, 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, PartIdenticalPredecessorShape, PartIdenticalShape, PartIdenticalSuccessorShape, PartIdenticalSuccpredecessorShape, PartNonStockForwardShape, PartPredecessorShape, PartSuccessorPredecessorShape, PartSuccessorShape, 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, deliveryDateIcon, 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, partIdenticalSuccessorIcon, partIdenticalSuccpredecessorIcon, partPredecessorIcon, partSuccessorIcon, partSuccessorPredecessorIcon, 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 };
|
|
14209
14222
|
//# sourceMappingURL=clr-addons.mjs.map
|