@porscheinformatik/clr-addons 15.12.2 → 15.13.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/esm2020/history/history-model.interface.mjs +4 -3
- package/esm2020/history/history.service.mjs +33 -5
- package/fesm2015/clr-addons.mjs +42 -7
- package/fesm2015/clr-addons.mjs.map +1 -1
- package/fesm2020/clr-addons.mjs +40 -13
- package/fesm2020/clr-addons.mjs.map +1 -1
- package/history/history-model.interface.d.ts +14 -0
- package/history/history.service.d.ts +6 -2
- package/package.json +1 -1
package/fesm2020/clr-addons.mjs
CHANGED
|
@@ -12,10 +12,11 @@ import { takeUntil, take, observeOn } from 'rxjs/operators';
|
|
|
12
12
|
import * as i3 from '@angular/router';
|
|
13
13
|
import { RouterModule } from '@angular/router';
|
|
14
14
|
import { trigger, transition, style, animate, state } from '@angular/animations';
|
|
15
|
+
import * as i1$2 from '@angular/common/http';
|
|
16
|
+
import { HttpClientModule } from '@angular/common/http';
|
|
15
17
|
import '@cds/core/icon/register.js';
|
|
16
|
-
import * as i1$
|
|
18
|
+
import * as i1$3 from '@kolkov/angular-editor';
|
|
17
19
|
import { AngularEditorComponent, AngularEditorModule } from '@kolkov/angular-editor';
|
|
18
|
-
import { HttpClientModule } from '@angular/common/http';
|
|
19
20
|
|
|
20
21
|
/*
|
|
21
22
|
* Copyright (c) 2018-2023 Porsche Informatik. All Rights Reserved.
|
|
@@ -4234,13 +4235,22 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
|
|
|
4234
4235
|
* The full license information can be found in LICENSE in the root directory of this project.
|
|
4235
4236
|
*/
|
|
4236
4237
|
|
|
4238
|
+
/*
|
|
4239
|
+
* Copyright (c) 2018-2024 Porsche Informatik. All Rights Reserved.
|
|
4240
|
+
* This software is released under MIT license.
|
|
4241
|
+
* The full license information can be found in LICENSE in the root directory of this project.
|
|
4242
|
+
*/
|
|
4243
|
+
const HISTORY_NOTIFICATION_URL_PROVIDER = new InjectionToken('HISTORY_NOTIFICATION_URL_PROVIDER');
|
|
4244
|
+
|
|
4237
4245
|
/*
|
|
4238
4246
|
* Copyright (c) 2018-2024 Porsche Informatik. All Rights Reserved.
|
|
4239
4247
|
* This software is released under MIT license.
|
|
4240
4248
|
* The full license information can be found in LICENSE in the root directory of this project.
|
|
4241
4249
|
*/
|
|
4242
4250
|
class ClrHistoryService {
|
|
4243
|
-
constructor() {
|
|
4251
|
+
constructor(historyNotificationUrl, httpClient) {
|
|
4252
|
+
this.historyNotificationUrl = historyNotificationUrl;
|
|
4253
|
+
this.httpClient = httpClient;
|
|
4244
4254
|
this.cookieSettings$ = new BehaviorSubject([]);
|
|
4245
4255
|
this.cookieName = 'clr.history';
|
|
4246
4256
|
this.cookieNameSettings = 'clr.history.settings';
|
|
@@ -4258,6 +4268,7 @@ class ClrHistoryService {
|
|
|
4258
4268
|
* @returns true when entry added, otherwise false is returned
|
|
4259
4269
|
*/
|
|
4260
4270
|
addHistoryEntry(historyEntry, domain) {
|
|
4271
|
+
this.notifyExternalUrl(historyEntry);
|
|
4261
4272
|
this.removeFromHistory(historyEntry);
|
|
4262
4273
|
let history = this.getHistory(historyEntry.username, historyEntry.context);
|
|
4263
4274
|
/* only add to history in case url does not exceed maxUrlSize characters */
|
|
@@ -4432,12 +4443,34 @@ class ClrHistoryService {
|
|
|
4432
4443
|
domain.shift();
|
|
4433
4444
|
return domain.join('.');
|
|
4434
4445
|
}
|
|
4446
|
+
notifyExternalUrl(historyEntry) {
|
|
4447
|
+
if (!this.historyNotificationUrl || !this.httpClient) {
|
|
4448
|
+
return;
|
|
4449
|
+
}
|
|
4450
|
+
const body = {
|
|
4451
|
+
username: historyEntry.username,
|
|
4452
|
+
pageName: historyEntry.pageName,
|
|
4453
|
+
applicationName: historyEntry.context.applicationName,
|
|
4454
|
+
tenantId: historyEntry.context.tenantid,
|
|
4455
|
+
title: historyEntry.title,
|
|
4456
|
+
url: historyEntry.url,
|
|
4457
|
+
context: historyEntry.context.context,
|
|
4458
|
+
};
|
|
4459
|
+
this.httpClient.post(this.historyNotificationUrl, body).subscribe();
|
|
4460
|
+
}
|
|
4435
4461
|
}
|
|
4436
|
-
ClrHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ClrHistoryService, deps: [], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4462
|
+
ClrHistoryService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ClrHistoryService, deps: [{ token: HISTORY_NOTIFICATION_URL_PROVIDER, optional: true }, { token: i1$2.HttpClient, optional: true }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
4437
4463
|
ClrHistoryService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ClrHistoryService });
|
|
4438
4464
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ClrHistoryService, decorators: [{
|
|
4439
4465
|
type: Injectable
|
|
4440
|
-
}], ctorParameters: function () { return [
|
|
4466
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
4467
|
+
type: Inject,
|
|
4468
|
+
args: [HISTORY_NOTIFICATION_URL_PROVIDER]
|
|
4469
|
+
}, {
|
|
4470
|
+
type: Optional
|
|
4471
|
+
}] }, { type: i1$2.HttpClient, decorators: [{
|
|
4472
|
+
type: Optional
|
|
4473
|
+
}] }]; } });
|
|
4441
4474
|
|
|
4442
4475
|
/*
|
|
4443
4476
|
* Copyright (c) 2018-2023 Porsche Informatik. All Rights Reserved.
|
|
@@ -4578,12 +4611,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImpor
|
|
|
4578
4611
|
* The full license information can be found in LICENSE in the root directory of this project.
|
|
4579
4612
|
*/
|
|
4580
4613
|
|
|
4581
|
-
/*
|
|
4582
|
-
* Copyright (c) 2018-2020 Porsche Informatik. All Rights Reserved.
|
|
4583
|
-
* This software is released under MIT license.
|
|
4584
|
-
* The full license information can be found in LICENSE in the root directory of this project.
|
|
4585
|
-
*/
|
|
4586
|
-
|
|
4587
4614
|
/*
|
|
4588
4615
|
* Copyright (c) 2018-2020 Porsche Informatik. All Rights Reserved.
|
|
4589
4616
|
* This software is released under MIT license.
|
|
@@ -7740,7 +7767,7 @@ class ClrHtmlEditorComponent {
|
|
|
7740
7767
|
}
|
|
7741
7768
|
}
|
|
7742
7769
|
ClrHtmlEditorComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ClrHtmlEditorComponent, deps: [], target: i0.ɵɵFactoryTarget.Component });
|
|
7743
|
-
ClrHtmlEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.1", type: ClrHtmlEditorComponent, selector: "clr-html-editor", inputs: { clrHtmlContent: "clrHtmlContent", clrConfig: "clrConfig" }, outputs: { clrHtmlChanged: "clrHtmlChanged" }, host: { properties: { "class.html-editor": "true" } }, viewQueries: [{ propertyName: "angularEditor", first: true, predicate: AngularEditorComponent, descendants: true }], ngImport: i0, template: "<angular-editor\n [(ngModel)]=\"clrHtmlContent\"\n [config]=\"clrConfig\"\n (ngModelChange)=\"onChange($event)\"\n class=\"editor\"\n [class.readonly]=\"false\"\n></angular-editor>\n", dependencies: [{ kind: "component", type: i1$
|
|
7770
|
+
ClrHtmlEditorComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "15.2.1", type: ClrHtmlEditorComponent, selector: "clr-html-editor", inputs: { clrHtmlContent: "clrHtmlContent", clrConfig: "clrConfig" }, outputs: { clrHtmlChanged: "clrHtmlChanged" }, host: { properties: { "class.html-editor": "true" } }, viewQueries: [{ propertyName: "angularEditor", first: true, predicate: AngularEditorComponent, descendants: true }], ngImport: i0, template: "<angular-editor\n [(ngModel)]=\"clrHtmlContent\"\n [config]=\"clrConfig\"\n (ngModelChange)=\"onChange($event)\"\n class=\"editor\"\n [class.readonly]=\"false\"\n></angular-editor>\n", dependencies: [{ kind: "component", type: i1$3.AngularEditorComponent, selector: "angular-editor", inputs: ["id", "config", "placeholder", "tabIndex"], outputs: ["html", "viewMode", "blur", "focus"] }, { 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"] }] });
|
|
7744
7771
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "15.2.1", ngImport: i0, type: ClrHtmlEditorComponent, decorators: [{
|
|
7745
7772
|
type: Component,
|
|
7746
7773
|
args: [{ selector: 'clr-html-editor', host: {
|
|
@@ -8000,5 +8027,5 @@ function escapeRegex(s) {
|
|
|
8000
8027
|
* Generated bundle index. Do not edit.
|
|
8001
8028
|
*/
|
|
8002
8029
|
|
|
8003
|
-
export { ACShape, AcceptanceDateShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BIG_ENDIAN, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CaliforniaSpecialistShape, CampaignOutdatedShape, CampaignShape, CarOffSite, CarOnSite, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridStatePersistenceModule, ClrDateFilterComponent, ClrDateFilterModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDaterangeMaxValidator, ClrDaterangeMinValidator, ClrDaterangeOrderValidator, ClrDaterangeRequiredValidator, ClrDaterangepickerContainerComponent, ClrDaterangepickerDirective, ClrDaterangepickerModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrHtmlEditorComponent, ClrHtmlEditorModule, 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, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, CompletedByDateShape, ConfiguratorCommercialShape, ConfiguratorPrivateShape, ConsumptionShape, ContactDealerShape, CupraBrandShape, CustomersCenterShape, DATE, DELIMITER_REGEX, DWABrandShape, DatagridFieldDirective, DayModel, DieselShape, DollarBillForwardShape, DollarBillPartialShape, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, ExternalPartForwardShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, InternalPartForwardShape, InvoiceReadyShape, InvoiceShape, ItemsForwardShape, ItemsReceiveShape, LITTLE_ENDIAN, LITTLE_ENDIAN_REGEX, LoadingVolumeShape, LocateShape, LocationBarComponent, LocationBarContentProvider, LocationBarNode, MIDDLE_ENDIAN, MIDDLE_ENDIAN_REGEX, MONTH, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintMaterialForwardShape, PaintMaterialShape, PaintShopShape, ParkingLocation, PartNonStockForwardShape, PartsForwardShape, PartsNonStockShape, PartsShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PopoverPositions, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RepeatRepairShape, ReturnDateShape, RoadsideAssistanceShape, RouteShape, SEPARATOR_TEXT_DEFAULT, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StatePersistenceKeyDirective, StockLocatorCommercialShape, StockLocatorPrivateShape, TRANSLATIONS, TaskAndAppointment, TaxiDealerShape, TextForward, TopcardShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, USER_INPUT_REGEX, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VinShape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, WrenchForward, YEAR, acceptanceDateIcon, accessoriesIcon, accessoryPartsIcon, airConditionerIcon, audiBrandIcon, awardWinnerPremiumIcon, blocksGroupForwardIcon, brochureIcon, bundleForwardIcon, businessCustomersCommercialIcon, businessCustomersPrivateIcon, businessPartnerWithCarIcon, calculatorForwardIcon, californiaServiceIcon, californiaSpecialistIcon, campaignIcon, campaignOutdatedIcon, carOffSite, carOnSite, carPickupServiceIcon, carWashIcon, certifiedRepairIcon, certifiedRetailerIcon, clrIconSVG, completedByDateIcon, configuratorCommercialIcon, configuratorPrivateIcon, consumptionIcon, contactDealerIcon, cupraBrandIcon, customersCenterIcon, dieselIcon, dollarBillForwardIcon, dollarBillPartialIcon, driversAssistanceIcon, dwaBrandIcon, efficiencyIcon, electricCarsIcon, electricCarsServiceIcon, electricityIcon, emissionIcon, energyIcon, engineIcon, escapeHtml, escapeRegex, expressServiceIcon, exteriorIcon, externalPartForwardIcon, findACarIcon, fleetServiceCommercialIcon, fleetServicePrivateIcon, gasCarsServiceIcon, gasIcon, hybridIcon, internalPartForwardIcon, invoiceIcon, invoiceReadyIcon, itemsForwardIcon, itemsRecieveIcon, loadingVolumeIcon, locateIcon, newCarCommercialIcon, newCarPrivateIcon, newCarUtilityVehicleIcon, nightServiceIcon, offersIcon, onCallDutyIcon, openSatIcon, paintMaterialForwardIcon, paintMaterialIcon, paintShopIcon, parkingLocationIcon, partsForwardIcon, partsIcon, partsNonStockForwardIcon, partsNonStockIcon, payloadIcon, performanceIcon, petrolIcon, plusServiceIcon, porscheBrandIcon, powerIcon, powerTrainIcon, priceTypeSwitchIcon, qualifiedWorkshopIcon, repeatRepairIcon, returnDateIcon, roadsideAssistanceIcon, routeIcon, seatAirIcon, seatBrandIcon, seatIcon, serviceBellIcon, serviceIcon, sizeIcon, skodaBrandIcon, stockLocatorCommercialIcon, stockLocatorPrivateIcon, taskAndAppointmentIcon, taxiDealerIcon, textForwardIcon, topcardIcon, touaregServiceIcon, transmissionAutomaticIcon, transmissionManualIcon, usedCarCommercialIcon, usedCarPrivateIcon, vehicleConversionIcon, view360Icon, vinIcon, virtualRealityIcon, volkswagenIcon, vwBrandIcon, vwnBrandIcon, wheelToWheelIcon, windscreenWashIcon, wrenchForwardIcon };
|
|
8030
|
+
export { ACShape, AcceptanceDateShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BIG_ENDIAN, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CaliforniaSpecialistShape, CampaignOutdatedShape, CampaignShape, CarOffSite, CarOnSite, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridStatePersistenceModule, ClrDateFilterComponent, ClrDateFilterModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDaterangeMaxValidator, ClrDaterangeMinValidator, ClrDaterangeOrderValidator, ClrDaterangeRequiredValidator, ClrDaterangepickerContainerComponent, ClrDaterangepickerDirective, ClrDaterangepickerModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrHtmlEditorComponent, ClrHtmlEditorModule, 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, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, CompletedByDateShape, ConfiguratorCommercialShape, ConfiguratorPrivateShape, ConsumptionShape, ContactDealerShape, CupraBrandShape, CustomersCenterShape, DATE, DELIMITER_REGEX, DWABrandShape, DatagridFieldDirective, DayModel, DieselShape, DollarBillForwardShape, DollarBillPartialShape, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, ExternalPartForwardShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HISTORY_NOTIFICATION_URL_PROVIDER, HybridShape, InternalPartForwardShape, InvoiceReadyShape, InvoiceShape, ItemsForwardShape, ItemsReceiveShape, LITTLE_ENDIAN, LITTLE_ENDIAN_REGEX, LoadingVolumeShape, LocateShape, LocationBarComponent, LocationBarContentProvider, LocationBarNode, MIDDLE_ENDIAN, MIDDLE_ENDIAN_REGEX, MONTH, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintMaterialForwardShape, PaintMaterialShape, PaintShopShape, ParkingLocation, PartNonStockForwardShape, PartsForwardShape, PartsNonStockShape, PartsShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PopoverPositions, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RepeatRepairShape, ReturnDateShape, RoadsideAssistanceShape, RouteShape, SEPARATOR_TEXT_DEFAULT, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StatePersistenceKeyDirective, StockLocatorCommercialShape, StockLocatorPrivateShape, TRANSLATIONS, TaskAndAppointment, TaxiDealerShape, TextForward, TopcardShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, USER_INPUT_REGEX, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VinShape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, WrenchForward, YEAR, acceptanceDateIcon, accessoriesIcon, accessoryPartsIcon, airConditionerIcon, audiBrandIcon, awardWinnerPremiumIcon, blocksGroupForwardIcon, brochureIcon, bundleForwardIcon, businessCustomersCommercialIcon, businessCustomersPrivateIcon, businessPartnerWithCarIcon, calculatorForwardIcon, californiaServiceIcon, californiaSpecialistIcon, campaignIcon, campaignOutdatedIcon, carOffSite, carOnSite, carPickupServiceIcon, carWashIcon, certifiedRepairIcon, certifiedRetailerIcon, clrIconSVG, completedByDateIcon, configuratorCommercialIcon, configuratorPrivateIcon, consumptionIcon, contactDealerIcon, cupraBrandIcon, customersCenterIcon, dieselIcon, dollarBillForwardIcon, dollarBillPartialIcon, driversAssistanceIcon, dwaBrandIcon, efficiencyIcon, electricCarsIcon, electricCarsServiceIcon, electricityIcon, emissionIcon, energyIcon, engineIcon, escapeHtml, escapeRegex, expressServiceIcon, exteriorIcon, externalPartForwardIcon, findACarIcon, fleetServiceCommercialIcon, fleetServicePrivateIcon, gasCarsServiceIcon, gasIcon, hybridIcon, internalPartForwardIcon, invoiceIcon, invoiceReadyIcon, itemsForwardIcon, itemsRecieveIcon, loadingVolumeIcon, locateIcon, newCarCommercialIcon, newCarPrivateIcon, newCarUtilityVehicleIcon, nightServiceIcon, offersIcon, onCallDutyIcon, openSatIcon, paintMaterialForwardIcon, paintMaterialIcon, paintShopIcon, parkingLocationIcon, partsForwardIcon, partsIcon, partsNonStockForwardIcon, partsNonStockIcon, payloadIcon, performanceIcon, petrolIcon, plusServiceIcon, porscheBrandIcon, powerIcon, powerTrainIcon, priceTypeSwitchIcon, qualifiedWorkshopIcon, repeatRepairIcon, returnDateIcon, roadsideAssistanceIcon, routeIcon, seatAirIcon, seatBrandIcon, seatIcon, serviceBellIcon, serviceIcon, sizeIcon, skodaBrandIcon, stockLocatorCommercialIcon, stockLocatorPrivateIcon, taskAndAppointmentIcon, taxiDealerIcon, textForwardIcon, topcardIcon, touaregServiceIcon, transmissionAutomaticIcon, transmissionManualIcon, usedCarCommercialIcon, usedCarPrivateIcon, vehicleConversionIcon, view360Icon, vinIcon, virtualRealityIcon, volkswagenIcon, vwBrandIcon, vwnBrandIcon, wheelToWheelIcon, windscreenWashIcon, wrenchForwardIcon };
|
|
8004
8031
|
//# sourceMappingURL=clr-addons.mjs.map
|