@porscheinformatik/clr-addons 11.0.1 → 11.1.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/bundles/clr-addons.umd.js +248 -5
- package/bundles/clr-addons.umd.js.map +1 -1
- package/clr-addons.d.ts +2 -0
- package/clr-addons.metadata.json +1 -1
- package/esm2015/clr-addons.js +3 -1
- package/esm2015/clr-addons.module.js +3 -1
- package/esm2015/clr-addons.module.ngfactory.js +3 -2
- package/esm2015/clr-addons.module.ngsummary.json +1 -1
- package/esm2015/clr-addons.ngsummary.json +1 -1
- package/esm2015/index.js +3 -2
- package/esm2015/index.ngsummary.json +1 -1
- package/esm2015/location-bar/index.js +4 -0
- package/esm2015/location-bar/index.ngsummary.json +1 -0
- package/esm2015/location-bar/location-bar-node/location-bar-node.component.js +92 -0
- package/esm2015/location-bar/location-bar-node/location-bar-node.component.ngfactory.js +50 -0
- package/esm2015/location-bar/location-bar-node/location-bar-node.component.ngsummary.json +1 -0
- package/esm2015/location-bar/location-bar.component.js +38 -0
- package/esm2015/location-bar/location-bar.component.ngfactory.js +25 -0
- package/esm2015/location-bar/location-bar.component.ngsummary.json +1 -0
- package/esm2015/location-bar/location-bar.model.js +63 -0
- package/esm2015/location-bar/location-bar.model.ngsummary.json +1 -0
- package/esm2015/location-bar/location-bar.module.js +15 -0
- package/esm2015/location-bar/location-bar.module.ngfactory.js +13 -0
- package/esm2015/location-bar/location-bar.module.ngsummary.json +1 -0
- package/esm2015/location-bar/location-bar.provider.js +10 -0
- package/esm2015/location-bar/location-bar.provider.ngsummary.json +1 -0
- package/esm2015/public_api.ngsummary.json +1 -1
- package/fesm2015/clr-addons.js +209 -5
- package/fesm2015/clr-addons.js.map +1 -1
- package/index.d.ts +1 -0
- package/location-bar/index.d.ts +3 -0
- package/location-bar/location-bar-node/location-bar-node.component.d.ts +44 -0
- package/location-bar/location-bar-node/location-bar-node.component.ngfactory.d.ts +1 -0
- package/location-bar/location-bar.component.d.ts +12 -0
- package/location-bar/location-bar.component.ngfactory.d.ts +1 -0
- package/location-bar/location-bar.model.d.ts +54 -0
- package/location-bar/location-bar.module.d.ts +2 -0
- package/location-bar/location-bar.module.ngfactory.d.ts +3 -0
- package/location-bar/location-bar.provider.d.ts +18 -0
- package/package.json +1 -1
- package/src/components.clr-addons.scss +1 -0
- package/src/location-bar/location-bar-node/location-bar-node.component.scss +54 -0
- package/styles/clr-addons-phs.css +40 -0
- 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
package/fesm2015/clr-addons.js
CHANGED
|
@@ -1,12 +1,14 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, NgModule, Injectable, EventEmitter, Input, Output, Directive, Renderer2, ElementRef, ViewChild, ContentChildren, TemplateRef, ViewChildren, HostBinding, Injector, forwardRef, NgZone, ContentChild, ChangeDetectorRef, HostListener, ApplicationRef, ComponentFactoryResolver
|
|
2
|
+
import { Component, NgModule, Injectable, EventEmitter, Input, Output, Directive, Renderer2, ElementRef, ViewChild, ContentChildren, TemplateRef, ViewChildren, HostBinding, Injector, forwardRef, NgZone, ContentChild, ChangeDetectorRef, HostListener, InjectionToken, Inject, Optional, ApplicationRef, ComponentFactoryResolver } from '@angular/core';
|
|
3
3
|
import { Location, CommonModule, DOCUMENT } from '@angular/common';
|
|
4
4
|
import { FormsModule, NG_VALIDATORS, NgControl, NG_VALUE_ACCESSOR } from '@angular/forms';
|
|
5
|
-
import { ClarityModule, ClrFormsModule, ɵbc, ɵbi, ClrAlert, ClrAxis, ClrSide, ClrAlignment, ClrPopoverToggleService, ClrPopoverEventsService, ClrPopoverPositionService } from '@clr/angular';
|
|
6
|
-
import { Subject, timer, asyncScheduler, interval, BehaviorSubject } from 'rxjs';
|
|
5
|
+
import { ClarityModule, ClrFormsModule, ɵbc, ɵbi, ClrAlert, ClrAxis, ClrSide, ClrAlignment, ClrPopoverToggleService, ClrPopoverEventsService, ClrPopoverPositionService, ClrIconModule, ClrDropdownModule } from '@clr/angular';
|
|
6
|
+
import { Subject, timer, asyncScheduler, interval, BehaviorSubject, ReplaySubject, of } from 'rxjs';
|
|
7
7
|
import { takeUntil, observeOn, take } from 'rxjs/operators';
|
|
8
8
|
import { RouterModule } from '@angular/router';
|
|
9
9
|
import { trigger, transition, style, animate, state } from '@angular/animations';
|
|
10
|
+
import { ClarityIcons, organizationIcon, treeViewIcon, angleIcon } from '@cds/core/icon';
|
|
11
|
+
import '@cds/core/icon/register.js';
|
|
10
12
|
|
|
11
13
|
/*
|
|
12
14
|
* Copyright (c) 2018-2019 Porsche Informatik. All Rights Reserved.
|
|
@@ -3526,6 +3528,207 @@ ClrBrandAvatarModule.decorators = [
|
|
|
3526
3528
|
},] }
|
|
3527
3529
|
];
|
|
3528
3530
|
|
|
3531
|
+
/**
|
|
3532
|
+
* The abstract base class for all identifier types
|
|
3533
|
+
*/
|
|
3534
|
+
class NodeId {
|
|
3535
|
+
}
|
|
3536
|
+
/**
|
|
3537
|
+
* The data structure of the location bar component. A location bar node holds the data of
|
|
3538
|
+
* a single node of the location bar. The type of the nodes id is generic and is determined
|
|
3539
|
+
* by the user of the location bar component (e.g. can be a combined identifier). Each node
|
|
3540
|
+
* can have a parent node (except the root node) and an array of children (except leaf nodes).
|
|
3541
|
+
*/
|
|
3542
|
+
class LocationBarNode {
|
|
3543
|
+
/**
|
|
3544
|
+
* @param id The generic identifier of the node
|
|
3545
|
+
* @param label The label to visualize the node
|
|
3546
|
+
* @param selectable Indicator whether the node is selectable
|
|
3547
|
+
* @param preSelected Indicator whether the node is pre-selected
|
|
3548
|
+
*/
|
|
3549
|
+
constructor(id, label, selectable = true, preSelected = false) {
|
|
3550
|
+
this.id = id;
|
|
3551
|
+
this.label = label;
|
|
3552
|
+
this.selectable = selectable;
|
|
3553
|
+
this.preSelected = preSelected;
|
|
3554
|
+
}
|
|
3555
|
+
/**
|
|
3556
|
+
* Returns the children of this node. If the children has not been determined so far, null will
|
|
3557
|
+
* be returned. If this node does not have any children, an empty array will be returned.
|
|
3558
|
+
*/
|
|
3559
|
+
getChildren() {
|
|
3560
|
+
return this.children;
|
|
3561
|
+
}
|
|
3562
|
+
/**
|
|
3563
|
+
* Sets the children for this node
|
|
3564
|
+
* @param children The children to be set for this node
|
|
3565
|
+
* @return This node instance to support a fluent API
|
|
3566
|
+
*/
|
|
3567
|
+
setChildren(children) {
|
|
3568
|
+
this.children = children || [];
|
|
3569
|
+
}
|
|
3570
|
+
/**
|
|
3571
|
+
* Sets the new selected child
|
|
3572
|
+
* @param selectedChild The child to be selected
|
|
3573
|
+
*/
|
|
3574
|
+
setSelectedChild(selectedChild) {
|
|
3575
|
+
if (this.selectedChild && !selectedChild) {
|
|
3576
|
+
this.selectedChild.setSelectedChild(null);
|
|
3577
|
+
}
|
|
3578
|
+
this.selectedChild = selectedChild;
|
|
3579
|
+
}
|
|
3580
|
+
/**
|
|
3581
|
+
* @returns The currently selected child
|
|
3582
|
+
*/
|
|
3583
|
+
getSelectedChild() {
|
|
3584
|
+
return this.selectedChild;
|
|
3585
|
+
}
|
|
3586
|
+
/**
|
|
3587
|
+
* @param other The other instance to check for equality
|
|
3588
|
+
*/
|
|
3589
|
+
equals(other) {
|
|
3590
|
+
return this.id.equals(other.id);
|
|
3591
|
+
}
|
|
3592
|
+
}
|
|
3593
|
+
|
|
3594
|
+
ClarityIcons.addIcons(organizationIcon);
|
|
3595
|
+
class LocationBarComponent {
|
|
3596
|
+
constructor() {
|
|
3597
|
+
this.root$ = new ReplaySubject();
|
|
3598
|
+
this.iconShape = 'organization';
|
|
3599
|
+
this.iconTitle = '';
|
|
3600
|
+
this.selectionChanged = new EventEmitter();
|
|
3601
|
+
}
|
|
3602
|
+
set roots(roots) {
|
|
3603
|
+
const internalRoot = new LocationBarNode(null, null, false);
|
|
3604
|
+
internalRoot.setChildren(roots);
|
|
3605
|
+
if (roots.length === 1) {
|
|
3606
|
+
internalRoot.setSelectedChild(roots[0]);
|
|
3607
|
+
}
|
|
3608
|
+
this.root$.next(internalRoot);
|
|
3609
|
+
}
|
|
3610
|
+
onSelectionChanged(selection) {
|
|
3611
|
+
this.selectionChanged.emit(selection);
|
|
3612
|
+
}
|
|
3613
|
+
}
|
|
3614
|
+
LocationBarComponent.decorators = [
|
|
3615
|
+
{ type: Component, args: [{
|
|
3616
|
+
selector: 'clr-location-bar',
|
|
3617
|
+
template: "<cds-icon *ngIf=\"iconShape\" [attr.shape]=\"iconShape\" [title]=\"iconTitle\"></cds-icon>\n<clr-location-bar-node (selectionChanged)=\"onSelectionChanged($event)\" [parentNode]=\"root$ | async\">\n</clr-location-bar-node>\n"
|
|
3618
|
+
},] }
|
|
3619
|
+
];
|
|
3620
|
+
LocationBarComponent.propDecorators = {
|
|
3621
|
+
iconShape: [{ type: Input }],
|
|
3622
|
+
iconTitle: [{ type: Input }],
|
|
3623
|
+
roots: [{ type: Input }],
|
|
3624
|
+
selectionChanged: [{ type: Output }]
|
|
3625
|
+
};
|
|
3626
|
+
|
|
3627
|
+
const CONTENT_PROVIDER = new InjectionToken('CONTENT_PROVIDER');
|
|
3628
|
+
/**
|
|
3629
|
+
* Interface denoting the contract between the location bar component and
|
|
3630
|
+
* its users. The content provider offers callback methods for the location bar
|
|
3631
|
+
* component to gather the content to be displayed.
|
|
3632
|
+
*/
|
|
3633
|
+
class LocationBarContentProvider {
|
|
3634
|
+
}
|
|
3635
|
+
|
|
3636
|
+
ClarityIcons.addIcons(treeViewIcon, angleIcon);
|
|
3637
|
+
/**
|
|
3638
|
+
* Component which renders a node of the location bar.
|
|
3639
|
+
*/
|
|
3640
|
+
class LocationBarNodeComponent {
|
|
3641
|
+
constructor(contentProvider) {
|
|
3642
|
+
this.contentProvider = contentProvider;
|
|
3643
|
+
/**
|
|
3644
|
+
* Emits selection changes
|
|
3645
|
+
*/
|
|
3646
|
+
this.selectionChanged = new EventEmitter();
|
|
3647
|
+
/**
|
|
3648
|
+
* The selectable nodes
|
|
3649
|
+
*/
|
|
3650
|
+
this.selectableChilds = [];
|
|
3651
|
+
}
|
|
3652
|
+
set parentNode(parentNode) {
|
|
3653
|
+
this._parentNode = parentNode;
|
|
3654
|
+
if (this._parentNode) {
|
|
3655
|
+
const children$ = this._parentNode.getChildren() ? of(this._parentNode.getChildren()) : this.getLazyChildren();
|
|
3656
|
+
children$.toPromise().then(nodes => this.prepareChildren(nodes || []));
|
|
3657
|
+
}
|
|
3658
|
+
}
|
|
3659
|
+
get parentNode() {
|
|
3660
|
+
return this._parentNode;
|
|
3661
|
+
}
|
|
3662
|
+
getLazyChildren() {
|
|
3663
|
+
return this.contentProvider ? this.contentProvider.getLazyChildren(this._parentNode) : of([]);
|
|
3664
|
+
}
|
|
3665
|
+
prepareChildren(nodes) {
|
|
3666
|
+
this._parentNode.setChildren(nodes);
|
|
3667
|
+
/* when no node is selected search within the children for the first child to be pre-selected */
|
|
3668
|
+
if (!this._parentNode.getSelectedChild()) {
|
|
3669
|
+
for (const node of nodes) {
|
|
3670
|
+
if (node.preSelected) {
|
|
3671
|
+
this._parentNode.setSelectedChild(node);
|
|
3672
|
+
node.preSelected = false;
|
|
3673
|
+
break;
|
|
3674
|
+
}
|
|
3675
|
+
}
|
|
3676
|
+
}
|
|
3677
|
+
this.selectableChilds = nodes.filter(n => n.selectable);
|
|
3678
|
+
}
|
|
3679
|
+
/**
|
|
3680
|
+
* Listens for selection changes of child components and re-emits the selection event.
|
|
3681
|
+
* @param selection The changed selection of child components
|
|
3682
|
+
*/
|
|
3683
|
+
onSelectionChanged(selection) {
|
|
3684
|
+
selection.unshift(this._parentNode.getSelectedChild().id);
|
|
3685
|
+
this.selectionChanged.emit(selection);
|
|
3686
|
+
}
|
|
3687
|
+
/**
|
|
3688
|
+
* Selects the given node
|
|
3689
|
+
* node
|
|
3690
|
+
* @param selectedNode The selected child node.
|
|
3691
|
+
*/
|
|
3692
|
+
selectNode(selectedNode) {
|
|
3693
|
+
if (selectedNode) {
|
|
3694
|
+
selectedNode.setSelectedChild(null);
|
|
3695
|
+
this._parentNode.setSelectedChild(selectedNode);
|
|
3696
|
+
this.notifySelectionChanged(selectedNode);
|
|
3697
|
+
}
|
|
3698
|
+
}
|
|
3699
|
+
/**
|
|
3700
|
+
* Method called internally to emit the selection event
|
|
3701
|
+
* @param selectedNode The node which has been selected
|
|
3702
|
+
*/
|
|
3703
|
+
notifySelectionChanged(selectedNode) {
|
|
3704
|
+
this.selectionChanged.emit([selectedNode.id]);
|
|
3705
|
+
}
|
|
3706
|
+
}
|
|
3707
|
+
LocationBarNodeComponent.decorators = [
|
|
3708
|
+
{ type: Component, args: [{
|
|
3709
|
+
selector: 'clr-location-bar-node',
|
|
3710
|
+
template: "<ng-container *ngIf=\"parentNode\">\n <ng-content *ngIf=\"parentNode.getChildren()?.length > 0\"></ng-content>\n\n <ng-container\n *ngIf=\"\n (selectableChilds.length > 0 && !parentNode.getSelectedChild()) || selectableChilds.length > 1;\n else singleSelected\n \"\n >\n <clr-dropdown>\n <button class=\"btn btn-link btn-sm\" (blur)=\"focus = false\" (focus)=\"focus = true\" clrDropdownTrigger>\n <ng-container *ngIf=\"parentNode.getSelectedChild() as node; else unselected\">\n <span [class.last-level]=\"!parentNode.getSelectedChild().getSelectedChild()\" title=\"{{ node.label }}\">{{\n node.label\n }}</span>\n <cds-icon shape=\"angle\" direction=\"down\" size=\"xs\" class=\"caret-icon\"></cds-icon>\n </ng-container>\n <ng-template #unselected>\n <cds-icon class=\"unselected\" size=\"18\" [attr.solid]=\"focus\" shape=\"tree-view\"></cds-icon> ...\n </ng-template>\n </button>\n <clr-dropdown-menu [clrPosition]=\"'bottom-left'\" *clrIfOpen>\n <button\n *ngFor=\"let item of selectableChilds\"\n type=\"button\"\n clrDropdownItem\n class=\"text-truncate\"\n [class.selected-child]=\"item.id === parentNode.getSelectedChild()?.id\"\n (click)=\"selectNode(item)\"\n title=\"{{ item.label }}\"\n >\n {{ item.label }}\n </button>\n </clr-dropdown-menu>\n </clr-dropdown>\n </ng-container>\n\n <ng-template #singleSelected>\n <ng-container *ngIf=\"parentNode.getSelectedChild()\">\n <ng-container *ngIf=\"parentNode.getSelectedChild().selectable; else unselectable\">\n <button\n class=\"btn btn-link btn-sm\"\n (click)=\"selectNode(parentNode.getSelectedChild())\"\n [class.last-level]=\"!parentNode.getSelectedChild().getSelectedChild()\"\n title=\"{{ parentNode.getSelectedChild().label }}\"\n >\n {{ parentNode.getSelectedChild().label }}\n </button>\n </ng-container>\n <ng-template #unselectable>\n <span\n class=\"unselectable-node\"\n [class.last-level]=\"!parentNode.getSelectedChild().getSelectedChild()\"\n title=\"{{ parentNode.getSelectedChild().label }}\"\n >\n {{ parentNode.getSelectedChild().label }}\n </span>\n </ng-template>\n </ng-container>\n </ng-template>\n\n <clr-location-bar-node\n *ngIf=\"parentNode.getSelectedChild() && parentNode.getChildren().length > 0\"\n [parentNode]=\"parentNode.getSelectedChild()\"\n (selectionChanged)=\"onSelectionChanged($event)\"\n >\n <span>/</span>\n </clr-location-bar-node>\n</ng-container>\n",
|
|
3711
|
+
host: { '[class.location-bar-node]': 'true' }
|
|
3712
|
+
},] }
|
|
3713
|
+
];
|
|
3714
|
+
LocationBarNodeComponent.ctorParameters = () => [
|
|
3715
|
+
{ type: LocationBarContentProvider, decorators: [{ type: Inject, args: [CONTENT_PROVIDER,] }, { type: Optional }] }
|
|
3716
|
+
];
|
|
3717
|
+
LocationBarNodeComponent.propDecorators = {
|
|
3718
|
+
selectionChanged: [{ type: Output }],
|
|
3719
|
+
parentNode: [{ type: Input }]
|
|
3720
|
+
};
|
|
3721
|
+
|
|
3722
|
+
class ClrLocationBarModule {
|
|
3723
|
+
}
|
|
3724
|
+
ClrLocationBarModule.decorators = [
|
|
3725
|
+
{ type: NgModule, args: [{
|
|
3726
|
+
declarations: [LocationBarComponent, LocationBarNodeComponent],
|
|
3727
|
+
imports: [CommonModule, ClrIconModule, ClrDropdownModule],
|
|
3728
|
+
exports: [LocationBarComponent],
|
|
3729
|
+
},] }
|
|
3730
|
+
];
|
|
3731
|
+
|
|
3529
3732
|
/*
|
|
3530
3733
|
* Copyright (c) 2018-2022 Porsche Informatik. All Rights Reserved.
|
|
3531
3734
|
* This software is released under MIT license.
|
|
@@ -3560,6 +3763,7 @@ ClrAddonsModule.decorators = [
|
|
|
3560
3763
|
ClrHistoryModule,
|
|
3561
3764
|
ClrAutocompleteOffModule,
|
|
3562
3765
|
ClrBrandAvatarModule,
|
|
3766
|
+
ClrLocationBarModule,
|
|
3563
3767
|
],
|
|
3564
3768
|
},] }
|
|
3565
3769
|
];
|
|
@@ -4117,7 +4321,7 @@ const ClrAddonsIconShapes = {
|
|
|
4117
4321
|
*/
|
|
4118
4322
|
|
|
4119
4323
|
/*
|
|
4120
|
-
* Copyright (c) 2018-
|
|
4324
|
+
* Copyright (c) 2018-2022 Porsche Informatik. All Rights Reserved.
|
|
4121
4325
|
* This software is released under MIT license.
|
|
4122
4326
|
* The full license information can be found in LICENSE in the root directory of this project.
|
|
4123
4327
|
*/
|
|
@@ -4132,5 +4336,5 @@ const ClrAddonsIconShapes = {
|
|
|
4132
4336
|
* Generated bundle index. Do not edit.
|
|
4133
4337
|
*/
|
|
4134
4338
|
|
|
4135
|
-
export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BrochureShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, CLR_BLANK_OPTION, CaliforniaServiceShape, CaliforniaSpecialistShape, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDateTimeContainer, ClrDateTimeModule, ClrDotPager, ClrDotPagerModule, ClrFlowBar, ClrFlowBarModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrLetterAvatar, ClrLetterAvatarModule, 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, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, LoadingVolumeShape, LocateShape, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, OffersShape, OnCallDutyShape, OpenSatShape, PaintShopShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RoadsideAssistanceShape, RouteShape, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StockLocatorCommercialShape, StockLocatorPrivateShape, TaxiDealerShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, clrIconSVG, escapeHtml, escapeRegex, TreetableMainRenderer as ɵa, TreetableHeaderRenderer as ɵb, TreetableRowRenderer as ɵc, TreetableCellRenderer as ɵd, ClrAddOption as ɵe, ClrMultilingualAbstract as ɵf, ClrAbstractFormComponent as ɵg, ClrAutocompleteOffModule as ɵh, ClrAutocompleteOff as ɵi };
|
|
4339
|
+
export { ACShape, AcceptedBrands, AccessoriesShape, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BrochureShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, CLR_BLANK_OPTION, CONTENT_PROVIDER, CaliforniaServiceShape, CaliforniaSpecialistShape, CarPickupServiceShape, CarWashShape, CertifiedRepairShape, CertifiedRetailerShape, ClrActiveNotification, ClrAddonsIconShapes, ClrAddonsModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDateTimeContainer, ClrDateTimeModule, ClrDotPager, ClrDotPagerModule, ClrFlowBar, ClrFlowBarModule, 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, DriversAssistanceShape, EfficiencyShape, ElectricCarsServiceShape, ElectricCarsShape, ElectricityShape, EmissionShape, EnergyShape, EngineShape, ExpressServiceShape, ExteriorShape, FindACarShape, FleetServiceCommercialShape, FleetServicePrivateShape, GasCarsServiceShape, GasShape, HybridShape, LoadingVolumeShape, LocateShape, LocationBarContentProvider, LocationBarNode, NewCarCommercialShape, NewCarPrivateShape, NewCarUtilityVehicleShape, NightServiceShape, NodeId, OffersShape, OnCallDutyShape, OpenSatShape, PaintShopShape, PayloadShape, PerformanceShape, PetrolShape, PlusServiceShape, PorscheBrandShape, PowerShape, PowerTrainShape, PriceTypeSwitchShape, QualifiedWorkshopShape, RoadsideAssistanceShape, RouteShape, SeatAirShape, SeatBrandShape, SeatShape, ServiceBellShape, ServiceShape, SizeShape, SkodaBrandShape, StockLocatorCommercialShape, StockLocatorPrivateShape, TaxiDealerShape, TouaregServiceShape, TransmissionAutomaticShape, TransmissionManualShape, UsedCarCommercialShape, UsedCarPrivateShape, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, View360Shape, VirtualRealityShape, WheelToWheelShape, WindscreenWashShape, clrIconSVG, escapeHtml, escapeRegex, TreetableMainRenderer as ɵa, TreetableHeaderRenderer as ɵb, TreetableRowRenderer as ɵc, TreetableCellRenderer as ɵd, ClrAddOption as ɵe, ClrMultilingualAbstract as ɵf, ClrAbstractFormComponent as ɵg, ClrAutocompleteOffModule as ɵh, ClrAutocompleteOff as ɵi, LocationBarComponent as ɵj, LocationBarNodeComponent as ɵk };
|
|
4136
4340
|
//# sourceMappingURL=clr-addons.js.map
|