@porscheinformatik/clr-addons 12.4.2 → 12.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (26) hide show
  1. package/clr-addons.module.d.ts +2 -1
  2. package/datagrid-state-persistence/column-hidden-state-persistence.directive.d.ts +17 -0
  3. package/datagrid-state-persistence/datagrid-field.directive.d.ts +6 -0
  4. package/datagrid-state-persistence/datagrid-state-persistence-model.interface.d.ts +9 -0
  5. package/datagrid-state-persistence/datagrid-state-persistence.module.d.ts +9 -0
  6. package/datagrid-state-persistence/index.d.ts +5 -0
  7. package/datagrid-state-persistence/state-persistence-key.directive.d.ts +10 -0
  8. package/dropdown/clr-dropdown-overflow.directive.d.ts +10 -5
  9. package/esm2020/clr-addons.module.mjs +7 -3
  10. package/esm2020/datagrid-state-persistence/column-hidden-state-persistence.directive.mjs +76 -0
  11. package/esm2020/datagrid-state-persistence/datagrid-field.directive.mjs +15 -0
  12. package/esm2020/datagrid-state-persistence/datagrid-state-persistence-model.interface.mjs +2 -0
  13. package/esm2020/datagrid-state-persistence/datagrid-state-persistence.module.mjs +18 -0
  14. package/esm2020/datagrid-state-persistence/index.mjs +6 -0
  15. package/esm2020/datagrid-state-persistence/state-persistence-key.directive.mjs +38 -0
  16. package/esm2020/dropdown/clr-dropdown-overflow.directive.mjs +40 -7
  17. package/esm2020/index.mjs +2 -1
  18. package/fesm2015/clr-addons.mjs +177 -10
  19. package/fesm2015/clr-addons.mjs.map +1 -1
  20. package/fesm2020/clr-addons.mjs +172 -10
  21. package/fesm2020/clr-addons.mjs.map +1 -1
  22. package/index.d.ts +1 -0
  23. package/package.json +1 -1
  24. package/styles/clr-addons-phs.css +0 -12
  25. package/styles/clr-addons-phs.css.map +1 -1
  26. package/styles/clr-addons-phs.min.css.map +1 -1
@@ -1,11 +1,11 @@
1
1
  import * as i0 from '@angular/core';
2
- import { Component, NgModule, Injectable, EventEmitter, Input, Output, Directive, ViewChild, TemplateRef, ContentChildren, ViewChildren, HostBinding, ElementRef, Renderer2, forwardRef, ContentChild, HostListener, InjectionToken, Inject, Optional } from '@angular/core';
2
+ import { Component, NgModule, Injectable, EventEmitter, Input, Output, Directive, ViewChild, ContentChildren, TemplateRef, ViewChildren, HostBinding, ElementRef, Renderer2, forwardRef, ContentChild, HostListener, InjectionToken, Inject, Optional } from '@angular/core';
3
3
  import * as i2 from '@angular/common';
4
4
  import { CommonModule, DOCUMENT } from '@angular/common';
5
5
  import * as i3$1 from '@angular/forms';
6
6
  import { FormsModule, NG_VALIDATORS, NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
7
7
  import * as i1 from '@clr/angular';
8
- import { ClarityModule, ClrFormsModule, ClrForm, ClrAlert, ClrAxis, ClrSide, ClrAlignment, ClrPopoverToggleService, ClrPopoverEventsService, ClrPopoverPositionService, ClrIconModule, ClrDropdownModule } from '@clr/angular';
8
+ import { ClarityModule, ClrFormsModule, ClrDropdown, ClrForm, ClrAlert, ClrAxis, ClrSide, ClrAlignment, ClrPopoverToggleService, ClrPopoverEventsService, ClrPopoverPositionService, ClrIconModule, ClrDropdownModule, ClrDatagridPagination } from '@clr/angular';
9
9
  import { Subject, BehaviorSubject, timer, asyncScheduler, interval, of, ReplaySubject, takeUntil as takeUntil$1 } from 'rxjs';
10
10
  import { takeUntil, observeOn, take } from 'rxjs/operators';
11
11
  import * as i3 from '@angular/router';
@@ -645,22 +645,49 @@ class ClrDropdownOverflowDirective {
645
645
  this.elRef = elRef;
646
646
  this.defaultItemMinHeightRem = 1.5;
647
647
  this.marginBottomRem = 0.1;
648
+ this.destroy$ = new Subject();
648
649
  }
649
- ngAfterViewInit() {
650
- this.calculateDropdownMenu();
650
+ ngAfterContentInit() {
651
+ // first trigger manually because the subscription lower only triggers after first change
652
+ if (!this.nestedDropdownChildren?.length) {
653
+ this.applyDropdownOverflowStyles();
654
+ }
655
+ this.nestedDropdownChildren.changes.pipe(takeUntil(this.destroy$)).subscribe((children) => {
656
+ // if there are any nested dropdowns, our overflow fix prevents those from showing and needs to be removed
657
+ if (!children?.length) {
658
+ this.applyDropdownOverflowStyles();
659
+ }
660
+ else if (children?.length) {
661
+ this.removeDropdownOverflowStyles();
662
+ }
663
+ });
664
+ }
665
+ ngOnDestroy() {
666
+ this.destroy$.next();
667
+ this.destroy$.complete();
651
668
  }
652
- calculateDropdownMenu() {
669
+ applyDropdownOverflowStyles() {
653
670
  // the vertical position of our element in the current window
654
671
  const y = this.elRef.nativeElement.getBoundingClientRect().y;
655
672
  const itemMinHeightPx = this.getItemMinHeight(this.clrDropdownMenuItemMinHeight);
656
673
  // see https://stackoverflow.com/questions/22754315/for-loop-for-htmlcollection-elements
657
- for (const item of this.elRef.nativeElement.getElementsByClassName('dropdown-item')) {
674
+ for (const item of this.getAllChildDropdownMenuItems()) {
658
675
  item.style.minHeight = itemMinHeightPx + 'px';
659
676
  }
660
677
  this.elRef.nativeElement.style.maxHeight =
661
678
  this.getMenuMaxHeight(this.clrDropdownMenuMaxHeight, window.innerHeight - y - this.convertRemToPixels(this.marginBottomRem)) + 'px';
662
679
  this.elRef.nativeElement.style.overflowY = 'auto';
663
680
  }
681
+ removeDropdownOverflowStyles() {
682
+ for (const item of this.getAllChildDropdownMenuItems()) {
683
+ item.style.minHeight = null;
684
+ }
685
+ this.elRef.nativeElement.style.maxHeight = null;
686
+ this.elRef.nativeElement.style.overflowY = null;
687
+ }
688
+ getAllChildDropdownMenuItems() {
689
+ return this.elRef.nativeElement.getElementsByClassName('dropdown-item');
690
+ }
664
691
  getMenuMaxHeight(menuMaxHeightProvided, menuMaxHeightPx) {
665
692
  if (menuMaxHeightProvided) {
666
693
  const maxHeightPx = this.convertToPixels(menuMaxHeightProvided);
@@ -698,7 +725,7 @@ class ClrDropdownOverflowDirective {
698
725
  }
699
726
  }
700
727
  ClrDropdownOverflowDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDropdownOverflowDirective, deps: [{ token: i0.ElementRef }], target: i0.ɵɵFactoryTarget.Directive });
701
- ClrDropdownOverflowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ClrDropdownOverflowDirective, selector: "clr-dropdown-menu", inputs: { clrDropdownMenuMaxHeight: "clrDropdownMenuMaxHeight", clrDropdownMenuItemMinHeight: "clrDropdownMenuItemMinHeight" }, ngImport: i0 });
728
+ ClrDropdownOverflowDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ClrDropdownOverflowDirective, selector: "clr-dropdown-menu", inputs: { clrDropdownMenuMaxHeight: "clrDropdownMenuMaxHeight", clrDropdownMenuItemMinHeight: "clrDropdownMenuItemMinHeight" }, queries: [{ propertyName: "nestedDropdownChildren", predicate: ClrDropdown, descendants: true }], ngImport: i0 });
702
729
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDropdownOverflowDirective, decorators: [{
703
730
  type: Directive,
704
731
  args: [{ selector: 'clr-dropdown-menu' }]
@@ -706,6 +733,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
706
733
  type: Input
707
734
  }], clrDropdownMenuItemMinHeight: [{
708
735
  type: Input
736
+ }], nestedDropdownChildren: [{
737
+ type: ContentChildren,
738
+ args: [ClrDropdown, { descendants: true }]
709
739
  }] } });
710
740
 
711
741
  /*
@@ -4562,6 +4592,135 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
4562
4592
  }]
4563
4593
  }] });
4564
4594
 
4595
+ class DatagridFieldDirective {
4596
+ }
4597
+ DatagridFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DatagridFieldDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
4598
+ DatagridFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: DatagridFieldDirective, selector: "[clrDgField]", inputs: { clrDgField: "clrDgField" }, ngImport: i0 });
4599
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DatagridFieldDirective, decorators: [{
4600
+ type: Directive,
4601
+ args: [{
4602
+ selector: '[clrDgField]',
4603
+ }]
4604
+ }], propDecorators: { clrDgField: [{
4605
+ type: Input
4606
+ }] } });
4607
+
4608
+ class StatePersistenceKeyDirective {
4609
+ ngAfterContentInit() {
4610
+ if (this.pagination && this.pagination.page) {
4611
+ /* persist page size changes in local storage */
4612
+ this.pagination.page.sizeChange.subscribe(pageSize => {
4613
+ let state = JSON.parse(localStorage.getItem(this.clrStatePersistenceKey));
4614
+ if (!state) {
4615
+ state = {};
4616
+ }
4617
+ state.pageSize = pageSize;
4618
+ localStorage.setItem(this.clrStatePersistenceKey, JSON.stringify(state));
4619
+ });
4620
+ /* init page size of datagrid if already persisted in local storage */
4621
+ const state = JSON.parse(localStorage.getItem(this.clrStatePersistenceKey));
4622
+ if (state && state.pageSize) {
4623
+ /* postpone set size to other cycle as it is already set in this change detection cycle */
4624
+ setTimeout(() => (this.pagination.page.size = state.pageSize));
4625
+ }
4626
+ }
4627
+ }
4628
+ }
4629
+ StatePersistenceKeyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StatePersistenceKeyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
4630
+ StatePersistenceKeyDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: StatePersistenceKeyDirective, selector: "[clrStatePersistenceKey]", inputs: { clrStatePersistenceKey: "clrStatePersistenceKey" }, queries: [{ propertyName: "pagination", first: true, predicate: ClrDatagridPagination, descendants: true }], ngImport: i0 });
4631
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StatePersistenceKeyDirective, decorators: [{
4632
+ type: Directive,
4633
+ args: [{
4634
+ selector: '[clrStatePersistenceKey]',
4635
+ }]
4636
+ }], propDecorators: { clrStatePersistenceKey: [{
4637
+ type: Input
4638
+ }], pagination: [{
4639
+ type: ContentChild,
4640
+ args: [ClrDatagridPagination]
4641
+ }] } });
4642
+
4643
+ class ColumnHiddenStatePersistenceDirective {
4644
+ constructor(columnDirective, statePersistenceKey, datagrid, hideableColumnDirective) {
4645
+ this.columnDirective = columnDirective;
4646
+ this.statePersistenceKey = statePersistenceKey;
4647
+ this.datagrid = datagrid;
4648
+ this.hideableColumnDirective = hideableColumnDirective;
4649
+ }
4650
+ ngOnInit() {
4651
+ if (this.statePersistenceKey?.clrStatePersistenceKey && this.columnDirective?.clrDgField) {
4652
+ /* set hidden states from local storage (if existing) */
4653
+ this.initHiddenState();
4654
+ /* listen to state changes and persist in local storage */
4655
+ this.hideableColumnDirective.hiddenChange.subscribe(hidden => {
4656
+ this.setHiddenState(hidden);
4657
+ });
4658
+ }
4659
+ }
4660
+ initHiddenState() {
4661
+ /* read grid state if existing */
4662
+ const persistedGridStateJson = localStorage.getItem(this.statePersistenceKey.clrStatePersistenceKey);
4663
+ if (persistedGridStateJson !== null) {
4664
+ const persistedGridState = JSON.parse(persistedGridStateJson);
4665
+ /* read column state if existing */
4666
+ if (persistedGridState.columns && persistedGridState.columns[this.columnDirective.clrDgField]) {
4667
+ /* read column hidden state if existing */
4668
+ const persistedColumnHiddenState = persistedGridState.columns[this.columnDirective.clrDgField].hidden;
4669
+ if (persistedColumnHiddenState) {
4670
+ this.hideableColumnDirective.clrDgHidden = persistedColumnHiddenState === true;
4671
+ }
4672
+ }
4673
+ }
4674
+ }
4675
+ setHiddenState(hidden) {
4676
+ if (!this.datagrid?.detailService?.isOpen) {
4677
+ /* read grid state if existing */
4678
+ const persistedGridStateJson = localStorage.getItem(this.statePersistenceKey.clrStatePersistenceKey);
4679
+ let persistedGridState = {};
4680
+ if (persistedGridStateJson !== null) {
4681
+ persistedGridState = JSON.parse(persistedGridStateJson);
4682
+ }
4683
+ /* read column state if existing */
4684
+ if (!persistedGridState.columns) {
4685
+ persistedGridState.columns = {};
4686
+ }
4687
+ let persistedColumnState = persistedGridState.columns[this.columnDirective.clrDgField];
4688
+ if (!persistedColumnState) {
4689
+ persistedColumnState = {};
4690
+ persistedGridState.columns[this.columnDirective.clrDgField] = persistedColumnState;
4691
+ }
4692
+ /* set column hidden state and persist in local storage */
4693
+ persistedColumnState.hidden = hidden;
4694
+ localStorage.setItem(this.statePersistenceKey.clrStatePersistenceKey, JSON.stringify(persistedGridState));
4695
+ }
4696
+ }
4697
+ }
4698
+ ColumnHiddenStatePersistenceDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ColumnHiddenStatePersistenceDirective, deps: [{ token: DatagridFieldDirective, optional: true }, { token: StatePersistenceKeyDirective, optional: true }, { token: i1.ClrDatagrid }, { token: i1.ClrDatagridHideableColumn }], target: i0.ɵɵFactoryTarget.Directive });
4699
+ ColumnHiddenStatePersistenceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ColumnHiddenStatePersistenceDirective, selector: "[clrDgHideableColumn]", ngImport: i0 });
4700
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ColumnHiddenStatePersistenceDirective, decorators: [{
4701
+ type: Directive,
4702
+ args: [{
4703
+ selector: '[clrDgHideableColumn]',
4704
+ }]
4705
+ }], ctorParameters: function () { return [{ type: DatagridFieldDirective, decorators: [{
4706
+ type: Optional
4707
+ }] }, { type: StatePersistenceKeyDirective, decorators: [{
4708
+ type: Optional
4709
+ }] }, { type: i1.ClrDatagrid }, { type: i1.ClrDatagridHideableColumn }]; } });
4710
+
4711
+ class ClrDatagridStatePersistenceModule {
4712
+ }
4713
+ ClrDatagridStatePersistenceModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
4714
+ ClrDatagridStatePersistenceModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule, declarations: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective], exports: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective] });
4715
+ ClrDatagridStatePersistenceModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule });
4716
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule, decorators: [{
4717
+ type: NgModule,
4718
+ args: [{
4719
+ declarations: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective],
4720
+ exports: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective],
4721
+ }]
4722
+ }] });
4723
+
4565
4724
  /*
4566
4725
  * Copyright (c) 2018-2022 Porsche Informatik. All Rights Reserved.
4567
4726
  * This software is released under MIT license.
@@ -4596,7 +4755,8 @@ ClrAddonsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
4596
4755
  ClrBrandAvatarModule,
4597
4756
  ClrLocationBarModule,
4598
4757
  ClrFormModule,
4599
- ClrDropdownOverflowModule] });
4758
+ ClrDropdownOverflowModule,
4759
+ ClrDatagridStatePersistenceModule] });
4600
4760
  ClrAddonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrAddonsModule, imports: [ClrViewEditSectionModule,
4601
4761
  ClrPagerModule,
4602
4762
  ClrDotPagerModule,
@@ -4623,7 +4783,8 @@ ClrAddonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
4623
4783
  ClrBrandAvatarModule,
4624
4784
  ClrLocationBarModule,
4625
4785
  ClrFormModule,
4626
- ClrDropdownOverflowModule] });
4786
+ ClrDropdownOverflowModule,
4787
+ ClrDatagridStatePersistenceModule] });
4627
4788
  i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrAddonsModule, decorators: [{
4628
4789
  type: NgModule,
4629
4790
  args: [{
@@ -4655,6 +4816,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
4655
4816
  ClrLocationBarModule,
4656
4817
  ClrFormModule,
4657
4818
  ClrDropdownOverflowModule,
4819
+ ClrDatagridStatePersistenceModule,
4658
4820
  ],
4659
4821
  }]
4660
4822
  }] });
@@ -5260,5 +5422,5 @@ const ClrAddonsIconShapes = {
5260
5422
  * Generated bundle index. Do not edit.
5261
5423
  */
5262
5424
 
5263
- export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CaliforniaSpecialistShape, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDateTimeContainer, ClrDateTimeModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrLetterAvatar, ClrLetterAvatarModule, ClrLocationBarModule, ClrMainNavGroup, ClrMainNavGroupItem, ClrMainNavGroupModule, ClrMaxNumeric, ClrMinNumeric, ClrMultilingualInput, ClrMultilingualInputValidators, ClrMultilingualModule, ClrMultilingualSelector, ClrMultilingualTextarea, ClrNotification, ClrNotificationModule, ClrNotificationRef, ClrNotificationService, ClrNumericField, ClrNumericFieldModule, ClrNumericFieldValidators, ClrPagedSearchResultList, ClrPagedSearchResultListModule, ClrPager, ClrPagerModule, ClrProgressSpinnerComponent, ClrProgressSpinnerModule, ClrQuickList, ClrQuickListModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ConfiguratorCommercialShape, ConfiguratorPrivateShape, ConsumptionShape, ContactDealerShape, CupraBrandShape, CustomersCenterShape, DWABrandShape, DieselShape, DollarBillForwardShape, DollarBillShape, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, ItemsForwardShape, ItemsRecieveShape, LoadingVolumeShape, LocateShape, LocationBarComponent, LocationBarContentProvider, LocationBarNode, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintMaterialForwardShape, PaintMaterialShape, PaintShopShape, PartNonStockForwardShape, PartsForwardShape, PartsNonStockShape, PartsShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RoadsideAssistanceShape, RouteShape, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StockLocatorCommercialShape, StockLocatorPrivateShape, TaskAndAppointment, TaxiDealerShape, TextForward, TopcardShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, WrenchForward, clrIconSVG, escapeHtml, escapeRegex };
5425
+ export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BlocksGroupForwardShape, BrochureShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CaliforniaSpecialistShape, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridStatePersistenceModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrFlowBar, ClrFlowBarModule, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrLetterAvatar, ClrLetterAvatarModule, ClrLocationBarModule, ClrMainNavGroup, ClrMainNavGroupItem, ClrMainNavGroupModule, ClrMaxNumeric, ClrMinNumeric, ClrMultilingualInput, ClrMultilingualInputValidators, ClrMultilingualModule, ClrMultilingualSelector, ClrMultilingualTextarea, ClrNotification, ClrNotificationModule, ClrNotificationRef, ClrNotificationService, ClrNumericField, ClrNumericFieldModule, ClrNumericFieldValidators, ClrPagedSearchResultList, ClrPagedSearchResultListModule, ClrPager, ClrPagerModule, ClrProgressSpinnerComponent, ClrProgressSpinnerModule, ClrQuickList, ClrQuickListModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, ConfiguratorCommercialShape, ConfiguratorPrivateShape, ConsumptionShape, ContactDealerShape, CupraBrandShape, CustomersCenterShape, DWABrandShape, DatagridFieldDirective, DieselShape, DollarBillForwardShape, DollarBillShape, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, ItemsForwardShape, ItemsRecieveShape, LoadingVolumeShape, LocateShape, LocationBarComponent, LocationBarContentProvider, LocationBarNode, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintMaterialForwardShape, PaintMaterialShape, PaintShopShape, PartNonStockForwardShape, PartsForwardShape, PartsNonStockShape, PartsShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RoadsideAssistanceShape, RouteShape, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StatePersistenceKeyDirective, StockLocatorCommercialShape, StockLocatorPrivateShape, TaskAndAppointment, TaxiDealerShape, TextForward, TopcardShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, TreetableCellRenderer, TreetableHeaderRenderer, TreetableMainRenderer, TreetableRowRenderer, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, WrenchForward, clrIconSVG, escapeHtml, escapeRegex };
5264
5426
  //# sourceMappingURL=clr-addons.mjs.map