@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.
- package/clr-addons.module.d.ts +2 -1
- package/datagrid-state-persistence/column-hidden-state-persistence.directive.d.ts +17 -0
- package/datagrid-state-persistence/datagrid-field.directive.d.ts +6 -0
- package/datagrid-state-persistence/datagrid-state-persistence-model.interface.d.ts +9 -0
- package/datagrid-state-persistence/datagrid-state-persistence.module.d.ts +9 -0
- package/datagrid-state-persistence/index.d.ts +5 -0
- package/datagrid-state-persistence/state-persistence-key.directive.d.ts +10 -0
- package/dropdown/clr-dropdown-overflow.directive.d.ts +10 -5
- package/esm2020/clr-addons.module.mjs +7 -3
- package/esm2020/datagrid-state-persistence/column-hidden-state-persistence.directive.mjs +76 -0
- package/esm2020/datagrid-state-persistence/datagrid-field.directive.mjs +15 -0
- package/esm2020/datagrid-state-persistence/datagrid-state-persistence-model.interface.mjs +2 -0
- package/esm2020/datagrid-state-persistence/datagrid-state-persistence.module.mjs +18 -0
- package/esm2020/datagrid-state-persistence/index.mjs +6 -0
- package/esm2020/datagrid-state-persistence/state-persistence-key.directive.mjs +38 -0
- package/esm2020/dropdown/clr-dropdown-overflow.directive.mjs +40 -7
- package/esm2020/index.mjs +2 -1
- package/fesm2015/clr-addons.mjs +177 -10
- package/fesm2015/clr-addons.mjs.map +1 -1
- package/fesm2020/clr-addons.mjs +172 -10
- package/fesm2020/clr-addons.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/styles/clr-addons-phs.css +0 -12
- package/styles/clr-addons-phs.css.map +1 -1
- package/styles/clr-addons-phs.min.css.map +1 -1
package/fesm2015/clr-addons.mjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule, Injectable, EventEmitter, Input, Output, Directive, ViewChild,
|
|
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,50 @@ 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
|
-
|
|
650
|
-
|
|
650
|
+
ngAfterContentInit() {
|
|
651
|
+
var _a;
|
|
652
|
+
// first trigger manually because the subscription lower only triggers after first change
|
|
653
|
+
if (!((_a = this.nestedDropdownChildren) === null || _a === void 0 ? void 0 : _a.length)) {
|
|
654
|
+
this.applyDropdownOverflowStyles();
|
|
655
|
+
}
|
|
656
|
+
this.nestedDropdownChildren.changes.pipe(takeUntil(this.destroy$)).subscribe((children) => {
|
|
657
|
+
// if there are any nested dropdowns, our overflow fix prevents those from showing and needs to be removed
|
|
658
|
+
if (!(children === null || children === void 0 ? void 0 : children.length)) {
|
|
659
|
+
this.applyDropdownOverflowStyles();
|
|
660
|
+
}
|
|
661
|
+
else if (children === null || children === void 0 ? void 0 : children.length) {
|
|
662
|
+
this.removeDropdownOverflowStyles();
|
|
663
|
+
}
|
|
664
|
+
});
|
|
665
|
+
}
|
|
666
|
+
ngOnDestroy() {
|
|
667
|
+
this.destroy$.next();
|
|
668
|
+
this.destroy$.complete();
|
|
651
669
|
}
|
|
652
|
-
|
|
670
|
+
applyDropdownOverflowStyles() {
|
|
653
671
|
// the vertical position of our element in the current window
|
|
654
672
|
const y = this.elRef.nativeElement.getBoundingClientRect().y;
|
|
655
673
|
const itemMinHeightPx = this.getItemMinHeight(this.clrDropdownMenuItemMinHeight);
|
|
656
674
|
// see https://stackoverflow.com/questions/22754315/for-loop-for-htmlcollection-elements
|
|
657
|
-
for (const item of this.
|
|
675
|
+
for (const item of this.getAllChildDropdownMenuItems()) {
|
|
658
676
|
item.style.minHeight = itemMinHeightPx + 'px';
|
|
659
677
|
}
|
|
660
678
|
this.elRef.nativeElement.style.maxHeight =
|
|
661
679
|
this.getMenuMaxHeight(this.clrDropdownMenuMaxHeight, window.innerHeight - y - this.convertRemToPixels(this.marginBottomRem)) + 'px';
|
|
662
680
|
this.elRef.nativeElement.style.overflowY = 'auto';
|
|
663
681
|
}
|
|
682
|
+
removeDropdownOverflowStyles() {
|
|
683
|
+
for (const item of this.getAllChildDropdownMenuItems()) {
|
|
684
|
+
item.style.minHeight = null;
|
|
685
|
+
}
|
|
686
|
+
this.elRef.nativeElement.style.maxHeight = null;
|
|
687
|
+
this.elRef.nativeElement.style.overflowY = null;
|
|
688
|
+
}
|
|
689
|
+
getAllChildDropdownMenuItems() {
|
|
690
|
+
return this.elRef.nativeElement.getElementsByClassName('dropdown-item');
|
|
691
|
+
}
|
|
664
692
|
getMenuMaxHeight(menuMaxHeightProvided, menuMaxHeightPx) {
|
|
665
693
|
if (menuMaxHeightProvided) {
|
|
666
694
|
const maxHeightPx = this.convertToPixels(menuMaxHeightProvided);
|
|
@@ -698,7 +726,7 @@ class ClrDropdownOverflowDirective {
|
|
|
698
726
|
}
|
|
699
727
|
}
|
|
700
728
|
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 });
|
|
729
|
+
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
730
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDropdownOverflowDirective, decorators: [{
|
|
703
731
|
type: Directive,
|
|
704
732
|
args: [{ selector: 'clr-dropdown-menu' }]
|
|
@@ -706,6 +734,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
706
734
|
type: Input
|
|
707
735
|
}], clrDropdownMenuItemMinHeight: [{
|
|
708
736
|
type: Input
|
|
737
|
+
}], nestedDropdownChildren: [{
|
|
738
|
+
type: ContentChildren,
|
|
739
|
+
args: [ClrDropdown, { descendants: true }]
|
|
709
740
|
}] } });
|
|
710
741
|
|
|
711
742
|
/*
|
|
@@ -4567,6 +4598,139 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
4567
4598
|
}]
|
|
4568
4599
|
}] });
|
|
4569
4600
|
|
|
4601
|
+
class DatagridFieldDirective {
|
|
4602
|
+
}
|
|
4603
|
+
DatagridFieldDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DatagridFieldDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4604
|
+
DatagridFieldDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: DatagridFieldDirective, selector: "[clrDgField]", inputs: { clrDgField: "clrDgField" }, ngImport: i0 });
|
|
4605
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: DatagridFieldDirective, decorators: [{
|
|
4606
|
+
type: Directive,
|
|
4607
|
+
args: [{
|
|
4608
|
+
selector: '[clrDgField]',
|
|
4609
|
+
}]
|
|
4610
|
+
}], propDecorators: { clrDgField: [{
|
|
4611
|
+
type: Input
|
|
4612
|
+
}] } });
|
|
4613
|
+
|
|
4614
|
+
class StatePersistenceKeyDirective {
|
|
4615
|
+
ngAfterContentInit() {
|
|
4616
|
+
if (this.pagination && this.pagination.page) {
|
|
4617
|
+
/* persist page size changes in local storage */
|
|
4618
|
+
this.pagination.page.sizeChange.subscribe(pageSize => {
|
|
4619
|
+
let state = JSON.parse(localStorage.getItem(this.clrStatePersistenceKey));
|
|
4620
|
+
if (!state) {
|
|
4621
|
+
state = {};
|
|
4622
|
+
}
|
|
4623
|
+
state.pageSize = pageSize;
|
|
4624
|
+
localStorage.setItem(this.clrStatePersistenceKey, JSON.stringify(state));
|
|
4625
|
+
});
|
|
4626
|
+
/* init page size of datagrid if already persisted in local storage */
|
|
4627
|
+
const state = JSON.parse(localStorage.getItem(this.clrStatePersistenceKey));
|
|
4628
|
+
if (state && state.pageSize) {
|
|
4629
|
+
/* postpone set size to other cycle as it is already set in this change detection cycle */
|
|
4630
|
+
setTimeout(() => (this.pagination.page.size = state.pageSize));
|
|
4631
|
+
}
|
|
4632
|
+
}
|
|
4633
|
+
}
|
|
4634
|
+
}
|
|
4635
|
+
StatePersistenceKeyDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StatePersistenceKeyDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive });
|
|
4636
|
+
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 });
|
|
4637
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: StatePersistenceKeyDirective, decorators: [{
|
|
4638
|
+
type: Directive,
|
|
4639
|
+
args: [{
|
|
4640
|
+
selector: '[clrStatePersistenceKey]',
|
|
4641
|
+
}]
|
|
4642
|
+
}], propDecorators: { clrStatePersistenceKey: [{
|
|
4643
|
+
type: Input
|
|
4644
|
+
}], pagination: [{
|
|
4645
|
+
type: ContentChild,
|
|
4646
|
+
args: [ClrDatagridPagination]
|
|
4647
|
+
}] } });
|
|
4648
|
+
|
|
4649
|
+
class ColumnHiddenStatePersistenceDirective {
|
|
4650
|
+
constructor(columnDirective, statePersistenceKey, datagrid, hideableColumnDirective) {
|
|
4651
|
+
this.columnDirective = columnDirective;
|
|
4652
|
+
this.statePersistenceKey = statePersistenceKey;
|
|
4653
|
+
this.datagrid = datagrid;
|
|
4654
|
+
this.hideableColumnDirective = hideableColumnDirective;
|
|
4655
|
+
}
|
|
4656
|
+
ngOnInit() {
|
|
4657
|
+
var _a, _b;
|
|
4658
|
+
if (((_a = this.statePersistenceKey) === null || _a === void 0 ? void 0 : _a.clrStatePersistenceKey) && ((_b = this.columnDirective) === null || _b === void 0 ? void 0 : _b.clrDgField)) {
|
|
4659
|
+
/* set hidden states from local storage (if existing) */
|
|
4660
|
+
this.initHiddenState();
|
|
4661
|
+
/* listen to state changes and persist in local storage */
|
|
4662
|
+
this.hideableColumnDirective.hiddenChange.subscribe(hidden => {
|
|
4663
|
+
this.setHiddenState(hidden);
|
|
4664
|
+
});
|
|
4665
|
+
}
|
|
4666
|
+
}
|
|
4667
|
+
initHiddenState() {
|
|
4668
|
+
/* read grid state if existing */
|
|
4669
|
+
const persistedGridStateJson = localStorage.getItem(this.statePersistenceKey.clrStatePersistenceKey);
|
|
4670
|
+
if (persistedGridStateJson !== null) {
|
|
4671
|
+
const persistedGridState = JSON.parse(persistedGridStateJson);
|
|
4672
|
+
/* read column state if existing */
|
|
4673
|
+
if (persistedGridState.columns && persistedGridState.columns[this.columnDirective.clrDgField]) {
|
|
4674
|
+
/* read column hidden state if existing */
|
|
4675
|
+
const persistedColumnHiddenState = persistedGridState.columns[this.columnDirective.clrDgField].hidden;
|
|
4676
|
+
if (persistedColumnHiddenState) {
|
|
4677
|
+
this.hideableColumnDirective.clrDgHidden = persistedColumnHiddenState === true;
|
|
4678
|
+
}
|
|
4679
|
+
}
|
|
4680
|
+
}
|
|
4681
|
+
}
|
|
4682
|
+
setHiddenState(hidden) {
|
|
4683
|
+
var _a, _b;
|
|
4684
|
+
if (!((_b = (_a = this.datagrid) === null || _a === void 0 ? void 0 : _a.detailService) === null || _b === void 0 ? void 0 : _b.isOpen)) {
|
|
4685
|
+
/* read grid state if existing */
|
|
4686
|
+
const persistedGridStateJson = localStorage.getItem(this.statePersistenceKey.clrStatePersistenceKey);
|
|
4687
|
+
let persistedGridState = {};
|
|
4688
|
+
if (persistedGridStateJson !== null) {
|
|
4689
|
+
persistedGridState = JSON.parse(persistedGridStateJson);
|
|
4690
|
+
}
|
|
4691
|
+
/* read column state if existing */
|
|
4692
|
+
if (!persistedGridState.columns) {
|
|
4693
|
+
persistedGridState.columns = {};
|
|
4694
|
+
}
|
|
4695
|
+
let persistedColumnState = persistedGridState.columns[this.columnDirective.clrDgField];
|
|
4696
|
+
if (!persistedColumnState) {
|
|
4697
|
+
persistedColumnState = {};
|
|
4698
|
+
persistedGridState.columns[this.columnDirective.clrDgField] = persistedColumnState;
|
|
4699
|
+
}
|
|
4700
|
+
/* set column hidden state and persist in local storage */
|
|
4701
|
+
persistedColumnState.hidden = hidden;
|
|
4702
|
+
localStorage.setItem(this.statePersistenceKey.clrStatePersistenceKey, JSON.stringify(persistedGridState));
|
|
4703
|
+
}
|
|
4704
|
+
}
|
|
4705
|
+
}
|
|
4706
|
+
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 });
|
|
4707
|
+
ColumnHiddenStatePersistenceDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "12.0.0", version: "13.3.8", type: ColumnHiddenStatePersistenceDirective, selector: "[clrDgHideableColumn]", ngImport: i0 });
|
|
4708
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ColumnHiddenStatePersistenceDirective, decorators: [{
|
|
4709
|
+
type: Directive,
|
|
4710
|
+
args: [{
|
|
4711
|
+
selector: '[clrDgHideableColumn]',
|
|
4712
|
+
}]
|
|
4713
|
+
}], ctorParameters: function () {
|
|
4714
|
+
return [{ type: DatagridFieldDirective, decorators: [{
|
|
4715
|
+
type: Optional
|
|
4716
|
+
}] }, { type: StatePersistenceKeyDirective, decorators: [{
|
|
4717
|
+
type: Optional
|
|
4718
|
+
}] }, { type: i1.ClrDatagrid }, { type: i1.ClrDatagridHideableColumn }];
|
|
4719
|
+
} });
|
|
4720
|
+
|
|
4721
|
+
class ClrDatagridStatePersistenceModule {
|
|
4722
|
+
}
|
|
4723
|
+
ClrDatagridStatePersistenceModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
4724
|
+
ClrDatagridStatePersistenceModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule, declarations: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective], exports: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective] });
|
|
4725
|
+
ClrDatagridStatePersistenceModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule });
|
|
4726
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrDatagridStatePersistenceModule, decorators: [{
|
|
4727
|
+
type: NgModule,
|
|
4728
|
+
args: [{
|
|
4729
|
+
declarations: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective],
|
|
4730
|
+
exports: [ColumnHiddenStatePersistenceDirective, DatagridFieldDirective, StatePersistenceKeyDirective],
|
|
4731
|
+
}]
|
|
4732
|
+
}] });
|
|
4733
|
+
|
|
4570
4734
|
/*
|
|
4571
4735
|
* Copyright (c) 2018-2022 Porsche Informatik. All Rights Reserved.
|
|
4572
4736
|
* This software is released under MIT license.
|
|
@@ -4601,7 +4765,8 @@ ClrAddonsModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "12.0.0", version
|
|
|
4601
4765
|
ClrBrandAvatarModule,
|
|
4602
4766
|
ClrLocationBarModule,
|
|
4603
4767
|
ClrFormModule,
|
|
4604
|
-
ClrDropdownOverflowModule
|
|
4768
|
+
ClrDropdownOverflowModule,
|
|
4769
|
+
ClrDatagridStatePersistenceModule] });
|
|
4605
4770
|
ClrAddonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrAddonsModule, imports: [ClrViewEditSectionModule,
|
|
4606
4771
|
ClrPagerModule,
|
|
4607
4772
|
ClrDotPagerModule,
|
|
@@ -4628,7 +4793,8 @@ ClrAddonsModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version
|
|
|
4628
4793
|
ClrBrandAvatarModule,
|
|
4629
4794
|
ClrLocationBarModule,
|
|
4630
4795
|
ClrFormModule,
|
|
4631
|
-
ClrDropdownOverflowModule
|
|
4796
|
+
ClrDropdownOverflowModule,
|
|
4797
|
+
ClrDatagridStatePersistenceModule] });
|
|
4632
4798
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImport: i0, type: ClrAddonsModule, decorators: [{
|
|
4633
4799
|
type: NgModule,
|
|
4634
4800
|
args: [{
|
|
@@ -4660,6 +4826,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.3.8", ngImpor
|
|
|
4660
4826
|
ClrLocationBarModule,
|
|
4661
4827
|
ClrFormModule,
|
|
4662
4828
|
ClrDropdownOverflowModule,
|
|
4829
|
+
ClrDatagridStatePersistenceModule,
|
|
4663
4830
|
],
|
|
4664
4831
|
}]
|
|
4665
4832
|
}] });
|
|
@@ -5255,5 +5422,5 @@ const ClrAddonsIconShapes = {
|
|
|
5255
5422
|
* Generated bundle index. Do not edit.
|
|
5256
5423
|
*/
|
|
5257
5424
|
|
|
5258
|
-
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 };
|
|
5259
5426
|
//# sourceMappingURL=clr-addons.mjs.map
|