@porscheinformatik/clr-addons 19.18.3 → 19.19.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/charts/shared/d3-chart-axes.d.ts +22 -0
- package/clr-addons.module.d.ts +40 -38
- package/fesm2022/clr-addons.mjs +330 -4
- package/fesm2022/clr-addons.mjs.map +1 -1
- package/fesm2022/porscheinformatik-clr-addons-charts.mjs +36 -5
- package/fesm2022/porscheinformatik-clr-addons-charts.mjs.map +1 -1
- package/index.d.ts +1 -0
- package/keyboard-nav/clr-keyboard-nav-alt-mnemonic.directive.d.ts +50 -0
- package/keyboard-nav/clr-keyboard-nav-ctrl-arrow.directive.d.ts +60 -0
- package/keyboard-nav/index.d.ts +2 -0
- package/package.json +1 -1
- package/styles/clr-addons-phs.css +86 -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
|
@@ -12,6 +12,28 @@ export interface XYAxisOptions {
|
|
|
12
12
|
/** Left margin already accounting for the Y-axis label offset. */
|
|
13
13
|
effectiveLeft: number;
|
|
14
14
|
}
|
|
15
|
+
/**
|
|
16
|
+
* Computes sensible tick values for a linear Y scale.
|
|
17
|
+
*
|
|
18
|
+
* When the domain contains enough integer values (≥ 3) the ticks are filtered
|
|
19
|
+
* to integers only (avoids fractional labels for count data). For small-range
|
|
20
|
+
* domains – e.g. 0–1 ratios / probabilities – the raw D3 ticks are returned
|
|
21
|
+
* unchanged so that decimal labels are still visible.
|
|
22
|
+
*/
|
|
23
|
+
export declare function computeYTickValues(y: ScaleLinear<number, number>, count?: number): number[];
|
|
24
|
+
/**
|
|
25
|
+
* Returns a D3 tick-format function that matches the decision made in
|
|
26
|
+
* {@link computeYTickValues}:
|
|
27
|
+
*
|
|
28
|
+
* - **Integer / large-value domain** (≥ 3 integer ticks): SI prefix format
|
|
29
|
+
* (`~s`), e.g. `1k`, `200`.
|
|
30
|
+
* - **Small / decimal domain** (< 3 integer ticks, e.g. 0–1 ratios): plain
|
|
31
|
+
* fixed-point format (`.3~f`) – avoids the SI "milli" prefix (`m`) that
|
|
32
|
+
* D3 would otherwise apply to values < 1.
|
|
33
|
+
*/
|
|
34
|
+
export declare function computeYTickFormat(y: ScaleLinear<number, number>, count?: number): (d: number | {
|
|
35
|
+
valueOf(): number;
|
|
36
|
+
}) => string;
|
|
15
37
|
/**
|
|
16
38
|
* Draws the X and Y axes (with integer-only Y ticks and grid lines) plus
|
|
17
39
|
* optional description labels onto the given D3 group.
|
package/clr-addons.module.d.ts
CHANGED
|
@@ -1,45 +1,47 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./focus-first-invalid-field/focus-first-invalid-field.directive";
|
|
3
3
|
import * as i2 from "./control-enter-submit/clr-control-enter-submit.directive";
|
|
4
|
-
import * as i3 from "./
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "./
|
|
16
|
-
import * as i15 from "./
|
|
17
|
-
import * as i16 from "./
|
|
18
|
-
import * as i17 from "./
|
|
19
|
-
import * as i18 from "./
|
|
20
|
-
import * as i19 from "./
|
|
21
|
-
import * as i20 from "./
|
|
22
|
-
import * as i21 from "./
|
|
23
|
-
import * as i22 from "./
|
|
24
|
-
import * as i23 from "./
|
|
25
|
-
import * as i24 from "./
|
|
26
|
-
import * as i25 from "./
|
|
27
|
-
import * as i26 from "./
|
|
28
|
-
import * as i27 from "./
|
|
29
|
-
import * as i28 from "./
|
|
30
|
-
import * as i29 from "./
|
|
31
|
-
import * as i30 from "./
|
|
32
|
-
import * as i31 from "./
|
|
33
|
-
import * as i32 from "./
|
|
34
|
-
import * as i33 from "./datagrid/
|
|
35
|
-
import * as i34 from "./
|
|
36
|
-
import * as i35 from "./
|
|
37
|
-
import * as i36 from "./
|
|
38
|
-
import * as i37 from "./
|
|
39
|
-
import * as i38 from "./
|
|
40
|
-
import * as i39 from "./
|
|
4
|
+
import * as i3 from "./keyboard-nav/clr-keyboard-nav-ctrl-arrow.directive";
|
|
5
|
+
import * as i4 from "./keyboard-nav/clr-keyboard-nav-alt-mnemonic.directive";
|
|
6
|
+
import * as i5 from "./view-edit-section/view-edit-section.module";
|
|
7
|
+
import * as i6 from "./pager/pager.module";
|
|
8
|
+
import * as i7 from "./dot-pager/dot-pager.module";
|
|
9
|
+
import * as i8 from "./paged-search-result-list/paged-search-result-list.module";
|
|
10
|
+
import * as i9 from "./collapse-expand-section/collapse-expand-section.module";
|
|
11
|
+
import * as i10 from "./breadcrumb/breadcrumb.module";
|
|
12
|
+
import * as i11 from "./main-nav-group/main-nav-group.module";
|
|
13
|
+
import * as i12 from "./content-panel/content-panel.module";
|
|
14
|
+
import * as i13 from "./notification/notification.module";
|
|
15
|
+
import * as i14 from "./flow-bar/flow-bar.module";
|
|
16
|
+
import * as i15 from "./back-button/back-button.module";
|
|
17
|
+
import * as i16 from "./numericfield/numeric-field.module";
|
|
18
|
+
import * as i17 from "./searchfield/search-field.module";
|
|
19
|
+
import * as i18 from "./treetable/treetable.module";
|
|
20
|
+
import * as i19 from "./progress-spinner/progress-spinner.module";
|
|
21
|
+
import * as i20 from "./date-time-container/date-time-module";
|
|
22
|
+
import * as i21 from "./quick-list/quick-list.module";
|
|
23
|
+
import * as i22 from "./icon-avatar/icon-avatar.module";
|
|
24
|
+
import * as i23 from "./letter-avatar/letter-avatar.module";
|
|
25
|
+
import * as i24 from "./multilingual/multilingual.module";
|
|
26
|
+
import * as i25 from "./generic-quick-list/generic-quick-list.module";
|
|
27
|
+
import * as i26 from "./data-list-validator/data-list-validator.module";
|
|
28
|
+
import * as i27 from "./history/history.module";
|
|
29
|
+
import * as i28 from "./autocomplete-off/autocomplete-off.module";
|
|
30
|
+
import * as i29 from "./brand-avatar/brand-avatar.module";
|
|
31
|
+
import * as i30 from "./location-bar/location-bar.module";
|
|
32
|
+
import * as i31 from "./abstract-form-component/form.module";
|
|
33
|
+
import * as i32 from "./dropdown/clr-dropdown-overflow.module";
|
|
34
|
+
import * as i33 from "./datagrid/datagrid-state-persistence/datagrid-state-persistence.module";
|
|
35
|
+
import * as i34 from "./datagrid/enum-filter/enum-filter.module";
|
|
36
|
+
import * as i35 from "./datagrid/date-filter/date-filter.module";
|
|
37
|
+
import * as i36 from "./daterangepicker/daterangepicker.module";
|
|
38
|
+
import * as i37 from "./clr-control-warning/if-warning.module";
|
|
39
|
+
import * as i38 from "./action-panel/action-panel.module";
|
|
40
|
+
import * as i39 from "./readonly/readonly.module";
|
|
41
|
+
import * as i40 from "./datagrid/column-reorder/datagrid-column-reorder.module";
|
|
42
|
+
import * as i41 from "./signpost/signpost.module";
|
|
41
43
|
export declare class ClrAddonsModule {
|
|
42
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<ClrAddonsModule, never>;
|
|
43
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ClrAddonsModule, never, [typeof i1.ClrFocusFirstInvalidFieldDirective, typeof i2.ClrControlEnterSubmitDirective], [typeof
|
|
45
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ClrAddonsModule, never, [typeof i1.ClrFocusFirstInvalidFieldDirective, typeof i2.ClrControlEnterSubmitDirective, typeof i3.ClrKeyboardNavCtrlArrowDirective, typeof i4.ClrKeyboardNavAltMnemonicDirective], [typeof i5.ClrViewEditSectionModule, typeof i6.ClrPagerModule, typeof i7.ClrDotPagerModule, typeof i8.ClrPagedSearchResultListModule, typeof i9.ClrCollapseExpandSectionModule, typeof i10.ClrBreadcrumbModule, typeof i11.ClrMainNavGroupModule, typeof i12.ClrContentPanelModule, typeof i13.ClrNotificationModule, typeof i14.ClrFlowBarModule, typeof i15.ClrBackButtonModule, typeof i16.ClrNumericFieldModule, typeof i17.ClrSearchFieldModule, typeof i18.ClrTreetableModule, typeof i19.ClrProgressSpinnerModule, typeof i20.ClrDateTimeModule, typeof i21.ClrQuickListModule, typeof i22.ClrIconAvatarModule, typeof i23.ClrLetterAvatarModule, typeof i24.ClrMultilingualModule, typeof i25.ClrGenericQuickListModule, typeof i26.ClrDataListValidatorModule, typeof i27.ClrHistoryModule, typeof i28.ClrAutocompleteOffModule, typeof i29.ClrBrandAvatarModule, typeof i30.ClrLocationBarModule, typeof i31.ClrFormModule, typeof i32.ClrDropdownOverflowModule, typeof i33.ClrDatagridStatePersistenceModule, typeof i34.ClrEnumFilterModule, typeof i35.ClrDateFilterModule, typeof i36.ClrDaterangepickerModule, typeof i37.ClrIfWarningModule, typeof i38.ClrActionPanelModule, typeof i39.ClrReadonlyDirectiveModule, typeof i40.ClrDatagridColumnReorderModule, typeof i41.ClrSignpostAddonModule, typeof i1.ClrFocusFirstInvalidFieldDirective, typeof i2.ClrControlEnterSubmitDirective, typeof i3.ClrKeyboardNavCtrlArrowDirective, typeof i4.ClrKeyboardNavAltMnemonicDirective]>;
|
|
44
46
|
static ɵinj: i0.ɵɵInjectorDeclaration<ClrAddonsModule>;
|
|
45
47
|
}
|
package/fesm2022/clr-addons.mjs
CHANGED
|
@@ -15624,6 +15624,314 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
15624
15624
|
* The full license information can be found in LICENSE in the root directory of this project.
|
|
15625
15625
|
*/
|
|
15626
15626
|
|
|
15627
|
+
/*
|
|
15628
|
+
* Copyright (c) 2018-2026 Porsche Informatik. All Rights Reserved.
|
|
15629
|
+
* This software is released under MIT license.
|
|
15630
|
+
* The full license information can be found in LICENSE in the root directory of this project.
|
|
15631
|
+
*/
|
|
15632
|
+
/** Default CSS selector matching navigable items in common Clarity navigation components. */
|
|
15633
|
+
const DEFAULT_NAV_ITEM_SELECTOR$1 = '[clrVerticalNavLink], [clrTabLink]';
|
|
15634
|
+
/**
|
|
15635
|
+
* Directive that enables circular keyboard navigation using Ctrl+Arrow keys.
|
|
15636
|
+
*
|
|
15637
|
+
* - **Ctrl+Left** / **Ctrl+Up**: navigate to the previous item (wraps to last).
|
|
15638
|
+
* - **Ctrl+Right** / **Ctrl+Down**: navigate to the next item (wraps to first).
|
|
15639
|
+
*
|
|
15640
|
+
* The order of items is fixed at the time the page loads and does not change for
|
|
15641
|
+
* the lifetime of the directive, regardless of visual reordering (e.g. overflow menus).
|
|
15642
|
+
*
|
|
15643
|
+
* Navigation is suppressed while `clrNavDisabled` is `true` (e.g. when an overlay is open).
|
|
15644
|
+
*
|
|
15645
|
+
* @example
|
|
15646
|
+
* ```html
|
|
15647
|
+
* <!-- Horizontal navigation (tabs) -->
|
|
15648
|
+
* <clr-tabs clrKeyboardNavCtrlArrow clrNavOrientation="horizontal">…</clr-tabs>
|
|
15649
|
+
*
|
|
15650
|
+
* <!-- Vertical navigation (sidebar) -->
|
|
15651
|
+
* <clr-vertical-nav clrKeyboardNavCtrlArrow clrNavOrientation="vertical">…</clr-vertical-nav>
|
|
15652
|
+
*
|
|
15653
|
+
* <!-- Custom selector + overlay guard -->
|
|
15654
|
+
* <div clrKeyboardNavCtrlArrow
|
|
15655
|
+
* clrNavItemSelector=".my-nav-btn"
|
|
15656
|
+
* [clrNavDisabled]="isOverlayOpen">…</div>
|
|
15657
|
+
* ```
|
|
15658
|
+
*/
|
|
15659
|
+
class ClrKeyboardNavCtrlArrowDirective {
|
|
15660
|
+
constructor() {
|
|
15661
|
+
/**
|
|
15662
|
+
* CSS selector for the navigable items inside the host element.
|
|
15663
|
+
* Defaults to Clarity's vertical-nav links and tab-links.
|
|
15664
|
+
*/
|
|
15665
|
+
this.clrNavItemSelector = DEFAULT_NAV_ITEM_SELECTOR$1;
|
|
15666
|
+
/**
|
|
15667
|
+
* Restricts which arrow directions trigger navigation:
|
|
15668
|
+
* - `'horizontal'` – only Ctrl+Left / Ctrl+Right
|
|
15669
|
+
* - `'vertical'` – only Ctrl+Up / Ctrl+Down
|
|
15670
|
+
* - `'both'` – all four directions (default)
|
|
15671
|
+
*/
|
|
15672
|
+
this.clrNavOrientation = 'both';
|
|
15673
|
+
/**
|
|
15674
|
+
* Set to `true` to temporarily disable all keyboard navigation,
|
|
15675
|
+
* e.g. while an overlay or modal dialog is open.
|
|
15676
|
+
*/
|
|
15677
|
+
this.clrNavDisabled = false;
|
|
15678
|
+
this.el = inject(ElementRef);
|
|
15679
|
+
/** Items captured at initialization time – order is fixed per spec. */
|
|
15680
|
+
this.navItems = [];
|
|
15681
|
+
}
|
|
15682
|
+
ngAfterViewInit() {
|
|
15683
|
+
// Defer one tick to ensure the host component has projected and rendered all content.
|
|
15684
|
+
setTimeout(() => {
|
|
15685
|
+
this.navItems = Array.from(this.el.nativeElement.querySelectorAll(this.clrNavItemSelector));
|
|
15686
|
+
}, 0);
|
|
15687
|
+
}
|
|
15688
|
+
onWindowKeyDown(event) {
|
|
15689
|
+
if (this.clrNavDisabled || !event.ctrlKey) {
|
|
15690
|
+
return;
|
|
15691
|
+
}
|
|
15692
|
+
const { key } = event;
|
|
15693
|
+
const isLeft = key === 'ArrowLeft';
|
|
15694
|
+
const isRight = key === 'ArrowRight';
|
|
15695
|
+
const isUp = key === 'ArrowUp';
|
|
15696
|
+
const isDown = key === 'ArrowDown';
|
|
15697
|
+
if (!isLeft && !isRight && !isUp && !isDown) {
|
|
15698
|
+
return;
|
|
15699
|
+
}
|
|
15700
|
+
if (this.clrNavOrientation === 'horizontal' && (isUp || isDown)) {
|
|
15701
|
+
return;
|
|
15702
|
+
}
|
|
15703
|
+
if (this.clrNavOrientation === 'vertical' && (isLeft || isRight)) {
|
|
15704
|
+
return;
|
|
15705
|
+
}
|
|
15706
|
+
// Filter out items that are currently not reachable.
|
|
15707
|
+
const navigable = this.navItems.filter(item => this.isNavigable(item));
|
|
15708
|
+
if (!navigable.length) {
|
|
15709
|
+
return;
|
|
15710
|
+
}
|
|
15711
|
+
const currentIndex = this.findActiveIndex(navigable);
|
|
15712
|
+
let nextIndex;
|
|
15713
|
+
if (isLeft || isUp) {
|
|
15714
|
+
// Backward – wrap to last item when on first.
|
|
15715
|
+
nextIndex = currentIndex <= 0 ? navigable.length - 1 : currentIndex - 1;
|
|
15716
|
+
}
|
|
15717
|
+
else {
|
|
15718
|
+
// Forward – wrap to first item when on last.
|
|
15719
|
+
nextIndex = currentIndex >= navigable.length - 1 ? 0 : currentIndex + 1;
|
|
15720
|
+
}
|
|
15721
|
+
event.preventDefault();
|
|
15722
|
+
event.stopPropagation();
|
|
15723
|
+
navigable[nextIndex].click();
|
|
15724
|
+
}
|
|
15725
|
+
/** Returns `true` when the item is currently usable (not hidden, not disabled). */
|
|
15726
|
+
isNavigable(item) {
|
|
15727
|
+
return !item.hidden && !item.disabled;
|
|
15728
|
+
}
|
|
15729
|
+
/**
|
|
15730
|
+
* Returns the index of the currently active item, or `-1` if none is found.
|
|
15731
|
+
* Checks `aria-current`, `aria-selected="true"`, and the `.active` CSS class.
|
|
15732
|
+
*/
|
|
15733
|
+
findActiveIndex(items) {
|
|
15734
|
+
for (let i = 0; i < items.length; i++) {
|
|
15735
|
+
const item = items[i];
|
|
15736
|
+
if (item.hasAttribute('aria-current') ||
|
|
15737
|
+
item.getAttribute('aria-selected') === 'true' ||
|
|
15738
|
+
item.classList.contains('active')) {
|
|
15739
|
+
return i;
|
|
15740
|
+
}
|
|
15741
|
+
}
|
|
15742
|
+
// No active item found – returning -1 causes the first/last item to be selected
|
|
15743
|
+
// on the next navigation event, which is intuitive fallback behaviour.
|
|
15744
|
+
return -1;
|
|
15745
|
+
}
|
|
15746
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrKeyboardNavCtrlArrowDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
15747
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: ClrKeyboardNavCtrlArrowDirective, isStandalone: true, selector: "[clrKeyboardNavCtrlArrow]", inputs: { clrNavItemSelector: "clrNavItemSelector", clrNavOrientation: "clrNavOrientation", clrNavDisabled: "clrNavDisabled" }, host: { listeners: { "window:keydown": "onWindowKeyDown($event)" } }, ngImport: i0 }); }
|
|
15748
|
+
}
|
|
15749
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrKeyboardNavCtrlArrowDirective, decorators: [{
|
|
15750
|
+
type: Directive,
|
|
15751
|
+
args: [{
|
|
15752
|
+
selector: '[clrKeyboardNavCtrlArrow]',
|
|
15753
|
+
standalone: true,
|
|
15754
|
+
}]
|
|
15755
|
+
}], propDecorators: { clrNavItemSelector: [{
|
|
15756
|
+
type: Input
|
|
15757
|
+
}], clrNavOrientation: [{
|
|
15758
|
+
type: Input
|
|
15759
|
+
}], clrNavDisabled: [{
|
|
15760
|
+
type: Input
|
|
15761
|
+
}], onWindowKeyDown: [{
|
|
15762
|
+
type: HostListener,
|
|
15763
|
+
args: ['window:keydown', ['$event']]
|
|
15764
|
+
}] } });
|
|
15765
|
+
|
|
15766
|
+
/*
|
|
15767
|
+
* Copyright (c) 2018-2026 Porsche Informatik. All Rights Reserved.
|
|
15768
|
+
* This software is released under MIT license.
|
|
15769
|
+
* The full license information can be found in LICENSE in the root directory of this project.
|
|
15770
|
+
*/
|
|
15771
|
+
const DEFAULT_NAV_ITEM_SELECTOR = '[clrVerticalNavLink], [clrTabLink]';
|
|
15772
|
+
const MNEMONICS_VISIBLE_CLASS = 'clr-kbd-mnemonics-visible';
|
|
15773
|
+
const MNEMONIC_DATA_ATTR = 'data-clr-kbd-mnemonic';
|
|
15774
|
+
const ICON_SLOT_CLASS = 'clr-kbd-icon-slot';
|
|
15775
|
+
const MNEMONIC_BADGE_CLASS = 'clr-kbd-mnemonic-badge';
|
|
15776
|
+
/** Selector for functional/structural icons that must not be swapped out. */
|
|
15777
|
+
const EXCLUDED_ICON_SELECTOR = 'cds-icon.dropdown-icon, cds-icon[shape="angle"]';
|
|
15778
|
+
/**
|
|
15779
|
+
* Directive that assigns sequential numeric keyboard mnemonics to navigation items
|
|
15780
|
+
* and enables Alt-key-based navigation.
|
|
15781
|
+
*
|
|
15782
|
+
* - Mnemonics (1, 2, 3, ...) are assigned once at view initialisation and never change.
|
|
15783
|
+
* - While Alt is held the CSS class `clr-kbd-mnemonics-visible` is added to the host,
|
|
15784
|
+
* causing numbered badges to appear on each item (styled via keyboard-nav.scss).
|
|
15785
|
+
* - Digit keys pressed while Alt is held accumulate into a buffer.
|
|
15786
|
+
* - When Alt is released the buffer is matched to a mnemonic and the item is activated.
|
|
15787
|
+
* - Multi-digit: |Alt-down|, |1|, |1|, |Alt-up| navigates to item 11.
|
|
15788
|
+
* - [Alt]+[Arrow] browser navigation is never overridden.
|
|
15789
|
+
*
|
|
15790
|
+
* @example
|
|
15791
|
+
* ```html
|
|
15792
|
+
* <clr-tabs clrKeyboardNavAltMnemonic>...</clr-tabs>
|
|
15793
|
+
* <clr-vertical-nav clrKeyboardNavAltMnemonic>...</clr-vertical-nav>
|
|
15794
|
+
* <div clrKeyboardNavAltMnemonic clrNavItemSelector=".my-btn" [clrNavDisabled]="overlayOpen">...</div>
|
|
15795
|
+
* ```
|
|
15796
|
+
*/
|
|
15797
|
+
class ClrKeyboardNavAltMnemonicDirective {
|
|
15798
|
+
constructor() {
|
|
15799
|
+
/** CSS selector for the navigable items inside the host element. */
|
|
15800
|
+
this.clrNavItemSelector = DEFAULT_NAV_ITEM_SELECTOR;
|
|
15801
|
+
/** Set to true to disable navigation while an overlay or modal is active. */
|
|
15802
|
+
this.clrNavDisabled = false;
|
|
15803
|
+
this.el = inject(ElementRef);
|
|
15804
|
+
this.renderer = inject(Renderer2);
|
|
15805
|
+
/** Fixed mapping: mnemonic number -> nav item element (assigned once at init). */
|
|
15806
|
+
this.mnemonicMap = new Map();
|
|
15807
|
+
/** Map: mnemonic number → injected icon-slot wrapper span (null when no icon found). */
|
|
15808
|
+
this.iconSlotMap = new Map();
|
|
15809
|
+
/** Digit characters accumulated while Alt is held. */
|
|
15810
|
+
this.digitBuffer = '';
|
|
15811
|
+
/** Whether the Alt key is currently pressed. */
|
|
15812
|
+
this.altKeyActive = false;
|
|
15813
|
+
}
|
|
15814
|
+
ngAfterViewInit() {
|
|
15815
|
+
// Defer one tick to ensure projected content is fully rendered.
|
|
15816
|
+
setTimeout(() => this.assignMnemonics(), 0);
|
|
15817
|
+
}
|
|
15818
|
+
ngOnDestroy() {
|
|
15819
|
+
// Guard against the directive being destroyed while Alt is still held.
|
|
15820
|
+
this.resetAltState();
|
|
15821
|
+
// Unwrap any injected icon slots to leave the DOM clean.
|
|
15822
|
+
this.iconSlotMap.forEach(slot => {
|
|
15823
|
+
if (!slot) {
|
|
15824
|
+
return;
|
|
15825
|
+
}
|
|
15826
|
+
const icon = slot.querySelector('cds-icon');
|
|
15827
|
+
if (icon && slot.parentElement) {
|
|
15828
|
+
this.renderer.insertBefore(slot.parentElement, icon, slot);
|
|
15829
|
+
this.renderer.removeChild(slot.parentElement, slot);
|
|
15830
|
+
}
|
|
15831
|
+
});
|
|
15832
|
+
this.iconSlotMap.clear();
|
|
15833
|
+
}
|
|
15834
|
+
onWindowKeyDown(event) {
|
|
15835
|
+
if (this.clrNavDisabled) {
|
|
15836
|
+
return;
|
|
15837
|
+
}
|
|
15838
|
+
if (event.key === 'Alt') {
|
|
15839
|
+
this.altKeyActive = true;
|
|
15840
|
+
this.digitBuffer = '';
|
|
15841
|
+
this.renderer.addClass(this.el.nativeElement, MNEMONICS_VISIBLE_CLASS);
|
|
15842
|
+
// Suppress browser menu-bar activation on Windows/Linux.
|
|
15843
|
+
event.preventDefault();
|
|
15844
|
+
return;
|
|
15845
|
+
}
|
|
15846
|
+
// Accumulate digits while Alt is held.
|
|
15847
|
+
// Arrow keys are NOT handled here to preserve [Alt+Arrow] browser history navigation.
|
|
15848
|
+
if (this.altKeyActive && /^\d$/.test(event.key)) {
|
|
15849
|
+
this.digitBuffer += event.key;
|
|
15850
|
+
event.preventDefault();
|
|
15851
|
+
event.stopPropagation();
|
|
15852
|
+
}
|
|
15853
|
+
}
|
|
15854
|
+
onWindowKeyUp(event) {
|
|
15855
|
+
if (event.key !== 'Alt') {
|
|
15856
|
+
return;
|
|
15857
|
+
}
|
|
15858
|
+
const bufferSnapshot = this.digitBuffer;
|
|
15859
|
+
this.resetAltState();
|
|
15860
|
+
if (this.clrNavDisabled || !bufferSnapshot) {
|
|
15861
|
+
return;
|
|
15862
|
+
}
|
|
15863
|
+
const mnemonic = parseInt(bufferSnapshot, 10);
|
|
15864
|
+
const target = this.mnemonicMap.get(mnemonic);
|
|
15865
|
+
if (target) {
|
|
15866
|
+
target.click();
|
|
15867
|
+
}
|
|
15868
|
+
}
|
|
15869
|
+
/**
|
|
15870
|
+
* Reset state when the window loses focus (e.g. Alt+Tab to another app).
|
|
15871
|
+
* Without this the badge overlay could remain visible indefinitely.
|
|
15872
|
+
*/
|
|
15873
|
+
onWindowBlur() {
|
|
15874
|
+
this.resetAltState();
|
|
15875
|
+
}
|
|
15876
|
+
assignMnemonics() {
|
|
15877
|
+
const items = Array.from(this.el.nativeElement.querySelectorAll(this.clrNavItemSelector));
|
|
15878
|
+
this.mnemonicMap.clear();
|
|
15879
|
+
this.iconSlotMap.clear();
|
|
15880
|
+
items.forEach((item, index) => {
|
|
15881
|
+
const mnemonic = index + 1;
|
|
15882
|
+
this.mnemonicMap.set(mnemonic, item);
|
|
15883
|
+
this.renderer.setAttribute(item, MNEMONIC_DATA_ATTR, String(mnemonic));
|
|
15884
|
+
// Find first cds-icon that is not a structural/functional icon.
|
|
15885
|
+
const excludedIcons = new Set(Array.from(item.querySelectorAll(EXCLUDED_ICON_SELECTOR)));
|
|
15886
|
+
const icon = Array.from(item.querySelectorAll('cds-icon')).find(el => !excludedIcons.has(el));
|
|
15887
|
+
if (icon) {
|
|
15888
|
+
// Wrap the icon so the badge can be absolutely positioned inside it.
|
|
15889
|
+
const slot = this.renderer.createElement('span');
|
|
15890
|
+
this.renderer.addClass(slot, ICON_SLOT_CLASS);
|
|
15891
|
+
this.renderer.insertBefore(icon.parentElement, slot, icon);
|
|
15892
|
+
this.renderer.appendChild(slot, icon);
|
|
15893
|
+
// Badge span — sits on top of the (hidden) icon.
|
|
15894
|
+
const badge = this.renderer.createElement('span');
|
|
15895
|
+
this.renderer.addClass(badge, MNEMONIC_BADGE_CLASS);
|
|
15896
|
+
this.renderer.setAttribute(badge, 'aria-hidden', 'true');
|
|
15897
|
+
badge.textContent = String(mnemonic);
|
|
15898
|
+
this.renderer.appendChild(slot, badge);
|
|
15899
|
+
this.iconSlotMap.set(mnemonic, slot);
|
|
15900
|
+
}
|
|
15901
|
+
else {
|
|
15902
|
+
this.iconSlotMap.set(mnemonic, null);
|
|
15903
|
+
}
|
|
15904
|
+
});
|
|
15905
|
+
}
|
|
15906
|
+
resetAltState() {
|
|
15907
|
+
this.altKeyActive = false;
|
|
15908
|
+
this.digitBuffer = '';
|
|
15909
|
+
this.renderer.removeClass(this.el.nativeElement, MNEMONICS_VISIBLE_CLASS);
|
|
15910
|
+
}
|
|
15911
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrKeyboardNavAltMnemonicDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
15912
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "19.2.18", type: ClrKeyboardNavAltMnemonicDirective, isStandalone: true, selector: "[clrKeyboardNavAltMnemonic]", inputs: { clrNavItemSelector: "clrNavItemSelector", clrNavDisabled: "clrNavDisabled" }, host: { listeners: { "window:keydown": "onWindowKeyDown($event)", "window:keyup": "onWindowKeyUp($event)", "window:blur": "onWindowBlur()" } }, ngImport: i0 }); }
|
|
15913
|
+
}
|
|
15914
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrKeyboardNavAltMnemonicDirective, decorators: [{
|
|
15915
|
+
type: Directive,
|
|
15916
|
+
args: [{
|
|
15917
|
+
selector: '[clrKeyboardNavAltMnemonic]',
|
|
15918
|
+
standalone: true,
|
|
15919
|
+
}]
|
|
15920
|
+
}], propDecorators: { clrNavItemSelector: [{
|
|
15921
|
+
type: Input
|
|
15922
|
+
}], clrNavDisabled: [{
|
|
15923
|
+
type: Input
|
|
15924
|
+
}], onWindowKeyDown: [{
|
|
15925
|
+
type: HostListener,
|
|
15926
|
+
args: ['window:keydown', ['$event']]
|
|
15927
|
+
}], onWindowKeyUp: [{
|
|
15928
|
+
type: HostListener,
|
|
15929
|
+
args: ['window:keyup', ['$event']]
|
|
15930
|
+
}], onWindowBlur: [{
|
|
15931
|
+
type: HostListener,
|
|
15932
|
+
args: ['window:blur']
|
|
15933
|
+
}] } });
|
|
15934
|
+
|
|
15627
15935
|
/*
|
|
15628
15936
|
* Copyright (c) 2018-2026 Porsche Informatik. All Rights Reserved.
|
|
15629
15937
|
* This software is released under MIT license.
|
|
@@ -15631,7 +15939,10 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
15631
15939
|
*/
|
|
15632
15940
|
class ClrAddonsModule {
|
|
15633
15941
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrAddonsModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
15634
|
-
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: ClrAddonsModule, imports: [ClrFocusFirstInvalidFieldDirective,
|
|
15942
|
+
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "19.2.18", ngImport: i0, type: ClrAddonsModule, imports: [ClrFocusFirstInvalidFieldDirective,
|
|
15943
|
+
ClrControlEnterSubmitDirective,
|
|
15944
|
+
ClrKeyboardNavCtrlArrowDirective,
|
|
15945
|
+
ClrKeyboardNavAltMnemonicDirective], exports: [ClrViewEditSectionModule,
|
|
15635
15946
|
ClrPagerModule,
|
|
15636
15947
|
ClrDotPagerModule,
|
|
15637
15948
|
ClrPagedSearchResultListModule,
|
|
@@ -15669,7 +15980,9 @@ class ClrAddonsModule {
|
|
|
15669
15980
|
ClrDatagridColumnReorderModule,
|
|
15670
15981
|
ClrSignpostAddonModule,
|
|
15671
15982
|
ClrFocusFirstInvalidFieldDirective,
|
|
15672
|
-
ClrControlEnterSubmitDirective
|
|
15983
|
+
ClrControlEnterSubmitDirective,
|
|
15984
|
+
ClrKeyboardNavCtrlArrowDirective,
|
|
15985
|
+
ClrKeyboardNavAltMnemonicDirective] }); }
|
|
15673
15986
|
static { this.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrAddonsModule, imports: [ClrViewEditSectionModule,
|
|
15674
15987
|
ClrPagerModule,
|
|
15675
15988
|
ClrDotPagerModule,
|
|
@@ -15711,7 +16024,12 @@ class ClrAddonsModule {
|
|
|
15711
16024
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImport: i0, type: ClrAddonsModule, decorators: [{
|
|
15712
16025
|
type: NgModule,
|
|
15713
16026
|
args: [{
|
|
15714
|
-
imports: [
|
|
16027
|
+
imports: [
|
|
16028
|
+
ClrFocusFirstInvalidFieldDirective,
|
|
16029
|
+
ClrControlEnterSubmitDirective,
|
|
16030
|
+
ClrKeyboardNavCtrlArrowDirective,
|
|
16031
|
+
ClrKeyboardNavAltMnemonicDirective,
|
|
16032
|
+
],
|
|
15715
16033
|
declarations: [],
|
|
15716
16034
|
exports: [
|
|
15717
16035
|
ClrViewEditSectionModule,
|
|
@@ -15753,6 +16071,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
15753
16071
|
ClrSignpostAddonModule,
|
|
15754
16072
|
ClrFocusFirstInvalidFieldDirective,
|
|
15755
16073
|
ClrControlEnterSubmitDirective,
|
|
16074
|
+
ClrKeyboardNavCtrlArrowDirective,
|
|
16075
|
+
ClrKeyboardNavAltMnemonicDirective,
|
|
15756
16076
|
],
|
|
15757
16077
|
}]
|
|
15758
16078
|
}] });
|
|
@@ -17010,9 +17330,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "19.2.18", ngImpo
|
|
|
17010
17330
|
* The full license information can be found in LICENSE in the root directory of this project.
|
|
17011
17331
|
*/
|
|
17012
17332
|
|
|
17333
|
+
/*
|
|
17334
|
+
* Copyright (c) 2018-2026 Porsche Informatik. All Rights Reserved.
|
|
17335
|
+
* This software is released under MIT license.
|
|
17336
|
+
* The full license information can be found in LICENSE in the root directory of this project.
|
|
17337
|
+
*/
|
|
17338
|
+
|
|
17013
17339
|
/**
|
|
17014
17340
|
* Generated bundle index. Do not edit.
|
|
17015
17341
|
*/
|
|
17016
17342
|
|
|
17017
|
-
export { ACShape, AcceptanceDateShape, AcceptedBrands, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BIG_ENDIAN, BlocksGroupForwardShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CampaignOutdatedShape, CampaignShape, CarOffSite, CarOnSite, CircleFilled, CircleHalfFilled, CircleQuarterFilled, CircleThreeQuartersFilled, ClrActionPanel, ClrActionPanelContainer, ClrActionPanelContainerContent, ClrActionPanelContainerFooter, ClrActionPanelModule, ClrActiveNotification, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrControlEnterSubmitDirective, ClrCopyToClipboard, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridColumnReorderModule, ClrDatagridStatePersistenceModule, ClrDateFilterComponent, ClrDateFilterModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDaterangeMaxValidator, ClrDaterangeMinValidator, ClrDaterangeOrderValidator, ClrDaterangeRequiredValidator, ClrDaterangepickerContainerComponent, ClrDaterangepickerDirective, ClrDaterangepickerModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrExportDatagridButtonModule, ClrFlowBar, ClrFlowBarModule, ClrFocusFirstInvalidFieldDirective, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrIconAvatar, ClrIconAvatarModule, ClrIfDaterangeErrorDirective, ClrIfWarning, ClrIfWarningModule, ClrLetterAvatar, ClrLetterAvatarModule, ClrLocationBarModule, ClrMainNavGroup, ClrMainNavGroupItem, ClrMainNavGroupModule, ClrMaxNumeric, ClrMinNumeric, ClrMultilingualInput, ClrMultilingualInputValidators, ClrMultilingualModule, ClrMultilingualSelector, ClrMultilingualTextarea, ClrNotification, ClrNotificationModule, ClrNotificationRef, ClrNotificationService, ClrNumericField, ClrNumericFieldModule, ClrNumericFieldValidators, ClrPagedSearchResultList, ClrPagedSearchResultListModule, ClrPager, ClrPagerModule, ClrProgressSpinnerComponent, ClrProgressSpinnerModule, ClrQuickList, ClrQuickListModule, ClrReadonlyDirective, ClrReadonlyDirectiveModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrSignpostAddonComponent, ClrSignpostAddonModule, ClrSummaryArea, ClrSummaryAreaStateService, ClrSummaryAreaToggle, ClrSummaryItem, ClrSummaryItemValue, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableFilter, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrTreetableSortOrder, ClrTreetableStringFilter, ClrTreetableTreeNode, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, CompletedByDateShape, CupraBrandShape, Customer, CustomerVip, CustomerVipCollection, CustomerWaiting, CustomerWaitingCollection, DATE, DELIMITER_REGEX, DWABrandShape, DatagridColumnReorderDirective, DatagridFieldDirective, DayModel, DeliveryDate, DieselShape, DollarBillForwardShape, DollarBillPartialShape, DynamicCellContentComponent, EnergyShape, ExportDatagridButtonComponent, ExportDatagridService, ExportTypeEnum, ExternalPartForwardShape, FirstRegistrationDate, GasCarsServiceShape, GasShape, HISTORY_NOTIFICATION_URL_PROVIDER, HISTORY_PROVIDER, HISTORY_TOKEN, HistoryProvider, InternalPartForwardShape, InvoiceReadyShape, InvoiceRecipient, InvoiceShape, ItemsForwardShape, ItemsReceiveShape, LITTLE_ENDIAN, LITTLE_ENDIAN_REGEX, LocationBarComponent, LocationBarContentProvider, LocationBarNode, LogoCommissionModule, LogoCommissionModuleFavIcon, LogoCommissionModuleNegative, LogoCommissionModuleNegativeFavIcon, LogoCostApproval, LogoCostApprovalFavIcon, LogoCostApprovalNegative, LogoCostApprovalNegativeFavIcon, LogoCostControlling, LogoCostControllingFavIcon, LogoCostControllingNegative, LogoCostControllingNegativeFavIcon, LogoDigitalServiceReception, LogoDigitalServiceReceptionFavIcon, LogoDigitalServiceReceptionNegative, LogoDigitalServiceReceptionNegativeFavIcon, LogoDocFlow, LogoDocFlowFavIcon, LogoDocFlowNegative, LogoDocFlowNegativeFavIcon, LogoDocScan, LogoDocScanFavIcon, LogoDocScanNegative, LogoDocScanNegativeFavIcon, LogoDocStore, LogoDocStoreFavIcon, LogoDocStoreNegative, LogoDocStoreNegativeFavIcon, LogoEBilling, LogoEBillingFavIcon, LogoEBillingNegative, LogoEBillingNegativeFavIcon, LogoEPayment, LogoEPaymentFavIcon, LogoEPaymentNegative, LogoEPaymentNegativeFavIcon, LogoMobilityPlanner, LogoMobilityPlannerFavIcon, LogoMobilityPlannerNegative, LogoMobilityPlannerNegativeFavIcon, LogoPartsMobile, LogoPartsMobileFavIcon, LogoPartsMobileNegative, LogoPartsMobileNegativeFavIcon, LogoSBO, LogoSBOFavIcon, LogoSBONegative, LogoSBONegativeFavIcon, LogoServiceCube, LogoServiceCubeFavIcon, LogoServiceCubeNegative, LogoServiceCubeNegativeFavIcon, LogoWCP, LogoWCPFavIcon, LogoWCPNegative, LogoWCPNegativeFavIcon, LogoWorkshopOrderTracker, LogoWorkshopOrderTrackerFavIcon, LogoWorkshopOrderTrackerNegative, LogoWorkshopOrderTrackerNegativeFavIcon, MIDDLE_ENDIAN, MIDDLE_ENDIAN_REGEX, MONTH, Mechanic, NewCarUtilityVehicleShape, NodeId, Number0, Number1, Number10, Number11, Number12, Number13, Number14, Number15, Number16, Number17, Number18, Number19, Number2, Number20, Number3, Number4, Number5, Number6, Number7, Number8, Number9, OrderShape, OrderStatusShape, PaintMaterialForwardShape, PaintMaterialShape, ParkingLocation, PartAvailabilityInfoShape, PartAvailabilityNoShape, PartAvailabilityUnknownShape, PartAvailabilityWarningShape, PartAvailabilityYesShape, PartIdenticalPredecessorShape, PartIdenticalShape, PartIdenticalSuccessorShape, PartIdenticalSuccpredecessorShape, PartNonStockForwardShape, PartPredecessorShape, PartSuccessorPredecessorShape, PartSuccessorShape, PartsChangelocation, PartsForwardShape, PartsInventory, PartsNonStockShape, PartsPicking, PartsPickingPlus, PartsReceiving, PartsShape, PlusServiceShape, PopoverPositions, PorscheBrandShape, PriceTypeSwitchShape, RepeatRepairCollection, RepeatRepairShape, ReplacementVehicleCollection, ReplacementVehicleShape, ReturnDateShape, SEPARATOR_TEXT_DEFAULT, SeatBrandShape, ServiceAdvisor, SkodaBrandShape, Sort, StatePersistenceKeyDirective, TRANSLATIONS, TaskAndAppointment, TextForward, TimeModel, TopcardShape, TouaregServiceShape, TreetableCellRenderer, TreetableDataStateService, TreetableHeaderRenderer, TreetableItemsDirective, TreetableMainRenderer, TreetableRowRenderer, USER_INPUT_REGEX, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, VinShape, VsfSearchShape, VsfSearchShape48, WCPShape, WrenchForward, YEAR, acceleration, accelerationIcon, acceptanceDateIcon, accessories, accessoriesIcon, accessoryPartsIcon, adblueAppIcon, adblue_app, add, addIcon, airConditionerIcon, air_conditioning, alert, alertFilledAppIcon, alertIcon, alertNotificationFilledAppIcon, alert_filled_app, alert_notification_filled_app, allIcons, ambientLightAppIcon, ambient_light_app, amplifier, amplifierIcon, appConnectAppIcon, app_connect_app, archive, archiveIcon, arrowDownIcon, arrowLeftAlignedAppIcon, arrowLeftIcon, arrowRightIcon, arrowSliderAppIcon, arrowUpIcon, arrow_down, arrow_left, arrow_left_aligned_app, arrow_right, arrow_slider_app, arrow_up, attachment, attachmentIcon, audiBrandIcon, authentPlugChargeAppIcon, authentQrAppIcon, authentRfidAppIcon, authentTouchidAppIcon, authent_plug_charge_app, authent_qr_app, authent_rfid_app, authent_touch_id_app, automaticTempAppIcon, automatic_temp_app, awardWinnerPremiumIcon, award_winner_premium, back, backIcon, battery, batteryIcon, batterySocChargingAppIcon, batterySocDepartureAppIcon, batterySocDestinationAppIcon, battery_soc_charging_app, battery_soc_departure_app, battery_soc_destination_app, bin, binIcon, blocksGroupForwardIcon, bluetooth, bluetoothIcon, bookmark, bookmarkFilledIcon, bookmarkIcon, bookmark_filled, brakeAppIcon, brake_app, brochure, brochureIcon, bulletpointAppIcon, bulletpoint_app, bundleForwardIcon, businessCustomersCommercialIcon, businessCustomersPrivateIcon, businessPartnerWithCarIcon, business_customers_commercial, business_customers_private, calc, calcIcon, calculatorForwardIcon, calendar, calendarCustomIcon, californiaServiceIcon, californiaSpecialistIcon, california_specialist, cameraScanIcon, camera_scan, campaignIcon, campaignOutdatedIcon, carDocumentsIcon, carErrorAppIcon, carInsuranceIcon, carOffSite, carOnSite, carPickupServiceIcon, carPlusIcon, carSettingsIcon, carVerifiedAppIcon, carWashIcon, carWheelAppIcon, car_documents, car_error_app, car_insurance, car_pickup_service, car_plus, car_settings, car_verified_app, car_wheel_app, carwash, certifiedRepairIcon, certifiedRetailerIcon, certified_repair, certified_retailer, challengeAppIcon, challenge_app, charging, chargingIcon, chargingPduAppIcon, chargingStationIcon, chargingTarifOverviewAppIcon, charging_pdu_app, charging_station, charging_tarif_overview_app, chat, chatAppIcon, chatIcon, chat_app, checkboxCheckedAppIcon, checkboxCheckedIcon, checkboxUncheckedAppIcon, checkboxUncheckedIcon, checkbox_checked, checkbox_checked_app, checkbox_unchecked, checkbox_unchecked_app, checkmark, checkmarkAppIcon, checkmarkFilledAppIcon, checkmarkIcon, checkmark_app, checkmark_filled_app, chevronDownIcon, chevronLeftAlignedappIcon, chevronLeftIcon, chevronRightAlignedappIcon, chevronRightIcon, chevronSmallLeftAlignedappIcon, chevronSmallRightAlignedappIcon, chevronUpIcon, chevron_down, chevron_left, chevron_left_alignedapp, chevron_right, chevron_right_alignedapp, chevron_small_left_alignedapp, chevron_small_right_alignedapp, chevron_up, circleFilledIcon, circleHalfFilledIcon, circleQuarterFilledIcon, circleThreeQuartersFilledIcon, city, cityIcon, clearAppIcon, clearRightAlignedappIcon, clear_app, clear_right_alignedapp, clock, clockIcon, close, closeAppIcon, closeCircleIcon, closeIcon, closeLeftAlignedappIcon, closeRightAlignedappIcon, close_app, close_circle, close_left_alignedapp, close_right_alignedapp, clrIconSVG, coffeeFilledAppIcon, coffee_filled_app, compassAppIcon, compass_app, completedByDateIcon, configuratorCommercialIcon, configuratorPrivateIcon, configurator_commercial, configurator_private, construction, constructionIcon, consumptionFuelFilledAppIcon, consumptionIcon, consumption_fuel, consumption_fuel_filled_app, contact, contactDealerFilledAppIcon, contactDealerIcon, contactIcon, contact_dealer, contact_dealer_filled_app, countryRoadIcon, country_road, craft, craftIcon, cupraBrandIcon, customerIcon, customerVipIcon, customerWaitingIcon, customersCenterIcon, customers_center, dataCopyAppIcon, dataExpiredIcon, dataFilledIcon, dataInputIcon, dataPlugAppIcon, dataSearchIcon, dataTimeExtensionIcon, data_copy_app, data_expired, data_filled, data_input, data_plug_app, data_search, data_time_extension, defaultSummaryAreaCollapsedKey, defogDefrostAutoAppIcon, defogDefrostIcon, defog_defrost, defog_defrost_auto_app, deliveryDateIcon, destinationAppIcon, destination_app, dieselIcon, direction, directionIcon, dischargingAppIcon, discharging_app, discountAppIcon, discount_app, discoveryAppIcon, discovery_app, dollarBillForwardIcon, dollarBillPartialIcon, download, downloadCustomIcon, dragIndicatorIcon, drag_indicator, driversAssistanceIcon, drivers_assistance, dropFilledAppIcon, drop_filled_app, dwaBrandIcon, eco, ecoIcon, edit, editIcon, editSmallRightAlignedAppIcon, edit_small_right_aligned_app, efficiency, efficiencyIcon, electricCarsIcon, electricCarsServiceIcon, electric_cars, electric_cars_service, electricity, electricityFilledAppIcon, electricityIcon, electricity_filled_app, emergency, emergencyIcon, emission, emissionIcon, energyIcon, engine, engineIcon, entertainment, entertainmentIcon, escapeHtml, escapeRegex, exportAppIcon, export_app, expressServiceIcon, express_service, exterior, exterior360Icon, exteriorIcon, exterior_360, externalPartForwardIcon, faq, faqIcon, fastForwardIcon, fast_forward, fax, faxIcon, filter, filterIcon, findACarIcon, findADealerIcon, find_a_car, find_a_dealer, firstRegistrationDateIcon, fleetServiceCommercialIcon, fleetServicePrivateIcon, fleet_service_commercial, fleet_service_private, folderFilledAppIcon, folder_filled_app, foodFilledAppIcon, food_filled_app, formatNumber, fullscreenEnterIcon, fullscreenExitIcon, fullscreen_enter, fullscreen_exit, gallery, galleryIcon, garageAppIcon, garage_app, gasAppIcon, gasCarsServiceIcon, gasIcon, gas_app, glassDamageAppIcon, glass_damage_app, gte, gteIcon, heart, heartFilledAppIcon, heartIcon, heart_filled_app, heightAppIcon, height_app, highwayRoadIcon, highway_road, history, historyIcon, homeAppIcon, homeEnergyAppIcon, homeFilledAppIcon, home_app, home_energy_app, home_filled_app, hornAppIcon, hornFilledAppIcon, horn_app, horn_filled_app, hybrid, hybridIcon, immediateChargingAppIcon, immediate_charging_app, info, infoFilledIcon, infoIcon, info_filled, inputHideIcon, inputShowIcon, input_hide, input_show, interior, interior360Icon, interiorIcon, interior_360, internalPartForwardIcon, internet, internetIcon, invitationAppIcon, invitation_app, invoiceIcon, invoiceReadyIcon, invoiceRecipientIcon, itemsForwardIcon, itemsRecieveIcon, jobportal, jobportalIcon, keyAppIcon, keyCardAppIcon, keyDigitalAppIcon, key_app, key_card_app, key_digital_app, keyboardAppIcon, keyboard_app, layerCollapseAppIcon, layerExpandAppIcon, layer_collapse_app, layer_expand_app, layersAppIcon, layers_app, legalTermsAndConditionsAppIcon, legal_terms_and_conditions_app, licencePlateAppIcon, licence_plate_app, lightAssistappIcon, light_assistapp, lightingAppIcon, lighting_app, linkExternAppIcon, link_extern_app, list, listIcon, loadingVolumeIcon, loading_volume, localBusinessIcon, local_business, locate, locateIcon, lock, lockIcon, lockOpenIcon, lock_open, login, loginIcon, logistic, logisticIcon, logoCommissionModuleFavIcon, logoCommissionModuleIcon, logoCommissionModuleNegativeFavIcon, logoCommissionModuleNegativeIcon, logoCostApprovalFavIcon, logoCostApprovalIcon, logoCostApprovalNegativeFavIcon, logoCostApprovalNegativeIcon, logoCrossControllingFavIcon, logoCrossControllingIcon, logoCrossControllingNegativeFavIcon, logoCrossControllingNegativeIcon, logoDigitalServiceReceptionFavIcon, logoDigitalServiceReceptionIcon, logoDigitalServiceReceptionNegativeFavIcon, logoDigitalServiceReceptionNegativeIcon, logoDocFlowFavIcon, logoDocFlowIcon, logoDocFlowNegativeFavIcon, logoDocFlowNegativeIcon, logoDocScanFavIcon, logoDocScanIcon, logoDocScanNegativeFavIcon, logoDocScanNegativeIcon, logoDocStoreFavIcon, logoDocStoreIcon, logoDocStoreNegativeFavIcon, logoDocStoreNegativeIcon, logoEBillingFavIcon, logoEBillingIcon, logoEBillingNegativeFavIcon, logoEBillingNegativeIcon, logoEPaymentFavIcon, logoEPaymentIcon, logoEPaymentNegativeFavIcon, logoEPaymentNegativeIcon, logoMobilityPlannerFavIcon, logoMobilityPlannerIcon, logoMobilityPlannerNegativeFavIcon, logoMobilityPlannerNegativeIcon, logoPartsMobileFavIcon, logoPartsMobileIcon, logoPartsMobileNegativeFavIcon, logoPartsMobileNegativeIcon, logoSBOFavIcon, logoSBOIcon, logoSBONegativeFavIcon, logoSBONegativeIcon, logoServiceCubeFavIcon, logoServiceCubeIcon, logoServiceCubeNegativeFavIcon, logoServiceCubeNegativeIcon, logoWCPFavIcon, logoWCPIcon, logoWCPNegativeFavIcon, logoWCPNegativeIcon, logoWorkshopOrderTrackerFavIcon, logoWorkshopOrderTrackerIcon, logoWorkshopOrderTrackerNegativeFavIcon, logoWorkshopOrderTrackerNegativeIcon, logout, logoutIcon, magnifier, magnifierIcon, magnifierMinusIcon, magnifierPlusIcon, magnifier_minus, magnifier_plus, mail, mailIcon, mailResendAppIcon, mail_resend_app, manual, manualIcon, map, mapIcon, mapToInternalTree, mechanicIcon, media, mediaIcon, menu, menuAppAppIcon, menuIcon, menu_app_app, microphoneAppIcon, microphone_app, mobile, mobileIcon, moreAppIcon, moreAppbarAppIcon, more_app, more_appbar_app, mot, motIcon, motability, motabilityIcon, navigate, navigateFilledAppIcon, navigateIcon, navigate_filled_app, newCarCommercialIcon, newCarPrivateFilledAppIcon, newCarPrivateIcon, newCarUtilityVehicleIcon, new_car_commercial, new_car_private, new_car_private_filled_app, nightServiceIcon, night_service, notification, notificationFilledIcon, notificationIcon, notification_filled, number0Icon, number10Icon, number11Icon, number12Icon, number13Icon, number14Icon, number15Icon, number16Icon, number17Icon, number18Icon, number19Icon, number1Icon, number20Icon, number2Icon, number3Icon, number4Icon, number5Icon, number6Icon, number7Icon, number8Icon, number9Icon, offers, offersFilledAppIcon, offersIcon, offers_filled_app, officeAppIcon, officeFilledAppIcon, office_app, office_filled_app, oilLevelIcon, oilLevelWarningIcon, oilTemperatureAppIcon, oil_level, oil_level_warning, oil_temperature_app, onCallDutyIcon, on_call_duty, openSatIcon, open_sat, orderIcon, orderStatusIcon, paintMaterialForwardIcon, paintMaterialIcon, paintShopIcon, paint_shop, paragraphAppIcon, paragraph_app, parkHeaterAppIcon, park_heater_app, parking, parkingFilledAppIcon, parkingGarageAppIcon, parkingIcon, parkingLocationIcon, parkingRouteAppIcon, parkingValetAppIcon, parking_filled_app, parking_garage_app, parking_route_app, parking_valet_app, partAvailabilityInfoIcon, partAvailabilityNoIcon, partAvailabilityUnknownIcon, partAvailabilityWarningIcon, partAvailabilityYesIcon, partIdenticalIcon, partIdenticalPredecessorIcon, partIdenticalSuccessorIcon, partIdenticalSuccpredecessorIcon, partPredecessorIcon, partSuccessorIcon, partSuccessorPredecessorIcon, partsChangelocationIcon, partsForwardIcon, partsIcon, partsInventoryIcon, partsNonStockForwardIcon, partsNonStockIcon, partsPickingIcon, partsPickingPlusIcon, partsReceivingIcon, pause, pauseIcon, payload, payloadIcon, paymentAppIcon, paymentCashAppIcon, paymentChargingCardAppIcon, paymentCreditcardAppIcon, paymentMachineAppIcon, payment_app, payment_cash_app, payment_charging_card_app, payment_creditcard_app, payment_machine_app, performance, performanceIcon, petrol, petrolIcon, phone, phoneIcon, pin, pinFilledAppIcon, pinGenericFilledAppIcon, pinIcon, pin_filled_app, pin_generic_filled_app, play, playIcon, plugCcsAppIcon, plugChademoAppIcon, plugChargeAppIcon, plugGenericAppIcon, plugSchukoAppIcon, plugType1AppIcon, plugType2AppIcon, plug_ccs_app, plug_chademo_app, plug_charge_app, plug_generic_app, plug_schuko_app, plug_type1_app, plug_type2_app, plusServiceIcon, porscheBrandIcon, power, powerIcon, powerTrainIcon, powertrain, preHeaterAppIcon, pre_heater_app, preciseLaneNavigationAppIcon, precise_lane_navigation_app, presentAppIcon, present_app, priceTypeSwitchIcon, printer, printerIcon, privacyAppIcon, privacy_app, profile, profileIcon, profileRegisterAppIcon, profileVerifiedIcon, profile_register_app, profile_verified, publicServiceIcon, publicTransportAppIcon, public_service, public_transport_app, qualifiedWorkshopIcon, qualified_workshop, questionnaireAppIcon, questionnaire_app, radio, radioButtonInselectedIcon, radioButtonSelectedForDefIcon, radioButtonSelectedIcon, radioIcon, radio_button_inselected, radio_button_selected, radio_button_selected_for_development, range, rangeIcon, reload, reloadIcon, remove, removeIcon, repeat, repeatIcon, repeatRepairIcon, replacementVehicleIcon, returnDateIcon, rewind, rewindIcon, roadsideAssistanceIcon, roadside_assistance, route, routeArrowAppIcon, routeIcon, route_arrow_app, routesHistoryAppIcon, routes_history_app, rss, rssIcon, safety, safetyIcon, save, saveAppIcon, saveIcon, save_app, seat, seatAirIcon, seatBrandIcon, seatIcon, seat_air, secretTipAppIcon, secretTipFilledAppIcon, secret_tip_app, secret_tip_filled_app, selected, selectedIcon, selectedPartnerNetworkAppIcon, selected_partner_network_app, sendToCarAppIcon, send_to_car_app, service, serviceAdvisorIcon, serviceBellIcon, serviceFilledAppIcon, serviceIcon, service_bell, service_filled_app, settings, settingsIcon, shareAndroidIcon, shareIosIcon, share_android, share_ios, shoppingCartFilledAppIcon, shoppingCartIcon, shopping_cart, shopping_cart_filled_app, shuffle, shuffleIcon, size, sizeIcon, skillAppIcon, skill_app, skipBackwardIcon, skipForwardIcon, skip_backward, skip_forward, skodaBrandIcon, softwareDownloadAppIcon, software_download_app, sortingAppIcon, sorting_app, sound, soundIcon, standardEquipmentIcon, standard_equipment, starFilledIcon, starOutlineIcon, star_filled, star_outline, statisticAppIcon, statistic_app, stockLocatorCommercialIcon, stockLocatorPrivateIcon, stock_locator_commercial, stock_locator_private, stop, stopIcon, strip, switchPositionAppIcon, switch_position_app, syncAppIcon, sync_app, taskAndAppointmentIcon, taxiDealerIcon, taxi_dealer, technicalSpecificationIcon, technical_specification, temperatureAppIcon, temperature_app, testDriveIcon, test_drive, textForwardIcon, thumbsdownAppIcon, thumbsdownFilledAppIcon, thumbsdown_app, thumbsdown_filled_app, thumbsupAppIcon, thumbsupFilledAppIcon, thumbsup_app, thumbsup_filled_app, timeClimatisationAppIcon, timePreferredAppIcon, time_climatisation_app, time_preferred_app, timer, timerIcon, topcardIcon, touaregServiceIcon, transcriptDownloadIcon, transcript_download, transmissionAutomaticIcon, transmissionManualIcon, transmission_automatic, transmission_manual, tripAppIcon, tripLongAppIcon, tripPartedAppIcon, tripShortAppIcon, trip_app, trip_long_app, trip_parted_app, trip_short_app, turnSignalsIcon, turn_signals, unselected, unselectedIcon, updateRefreshAppIcon, update_refresh_app, upload, uploadAppIcon, uploadCustomIcon, upload_app, usedCarCommercialIcon, usedCarPrivateIcon, used_car_commercial, used_car_private, vehicleAmarokIcon, vehicleCaddyIcon, vehicleConversionIcon, vehicleCrafterIcon, vehicleHightIcon, vehicleIdBuzzIcon, vehicleMultivanIcon, vehicleTransporterIcon, vehicle_amarok, vehicle_caddy, vehicle_crafter, vehicle_hight, vehicle_idbuzz, vehicle_multivan, vehicle_transporter, videoChatIcon, video_chat, view360Icon, view_360, vinIcon, virtualRealityIcon, virtual_reality, voiceMessageAppIcon, voice_message_app, volkswagenAppIcon, volkswagenIcon, volkswagen_app, volumeMaximumIcon, volumeMediumIcon, volumeMuteIcon, volume_maximum, volume_medium, volume_mute, vsfSearch48Icon, vsfSearchIcon, vwBrandIcon, vwConnectLicenseAppIcon, vw_connect_license_app, vwnBrandIcon, walkingAppIcon, walkingFilledAppIcon, walking_app, walking_filled_app, wallbox, wallboxIcon, wcAppIcon, wc_app, wcpIcon, weAssistAppIcon, weChargeAppIcon, weDeliverAppIcon, weExperienceAppIcon, weParkAppIcon, weUpgradeAppIcon, we_assist_app, we_charge_app, we_deliver_app, we_experience_app, we_park_app, we_upgrade_app, weatherSunAppIcon, weather_sun_app, wheelToWheelIcon, wheel_to_wheel, windscreenWashIcon, windscreen_wash, wlanHotspotIcon, wlan_hotspot, wrenchForwardIcon };
|
|
17343
|
+
export { ACShape, AcceptanceDateShape, AcceptedBrands, AccessoryPartsShape, AudiBrandShape, AwardWinnerPremiumShape, BIG_ENDIAN, BlocksGroupForwardShape, BundleForwardShape, BusinessCustomersCommercialShape, BusinessCustomersPrivateShape, BusinessPartnerWithCar, CLR_BLANK_OPTION, CONTENT_PROVIDER, CalculatorForwardShape, CaliforniaServiceShape, CampaignOutdatedShape, CampaignShape, CarOffSite, CarOnSite, CircleFilled, CircleHalfFilled, CircleQuarterFilled, CircleThreeQuartersFilled, ClrActionPanel, ClrActionPanelContainer, ClrActionPanelContainerContent, ClrActionPanelContainerFooter, ClrActionPanelModule, ClrActiveNotification, ClrAddonsLabel, ClrAddonsModule, ClrAutocompleteOff, ClrAutocompleteOffModule, ClrBackButton, ClrBackButtonModule, ClrBrandAvatar, ClrBrandAvatarModule, ClrBreadcrumb, ClrBreadcrumbModule, ClrBreadcrumbService, ClrCollapseExpandSection, ClrCollapseExpandSectionModule, ClrContentPanel, ClrContentPanelContainer, ClrContentPanelContainerContent, ClrContentPanelContainerFooter, ClrContentPanelModule, ClrContentRef, ClrControlEnterSubmitDirective, ClrCopyToClipboard, ClrDataListPredefinedValidatorDirective, ClrDataListValidatorModule, ClrDataListValidators, ClrDatagridColumnReorderModule, ClrDatagridStatePersistenceModule, ClrDateFilterComponent, ClrDateFilterModule, ClrDateTimeContainer, ClrDateTimeModule, ClrDaterangeMaxValidator, ClrDaterangeMinValidator, ClrDaterangeOrderValidator, ClrDaterangeRequiredValidator, ClrDaterangepickerContainerComponent, ClrDaterangepickerDirective, ClrDaterangepickerModule, ClrDotPager, ClrDotPagerModule, ClrDropdownOverflowDirective, ClrDropdownOverflowModule, ClrEnumFilterComponent, ClrEnumFilterModule, ClrExportDatagridButtonModule, ClrFlowBar, ClrFlowBarModule, ClrFocusFirstInvalidFieldDirective, ClrFormModule, ClrGenericQuickList, ClrGenericQuickListModule, ClrHistory, ClrHistoryModule, ClrHistoryPinned, ClrHistoryService, ClrIconAvatar, ClrIconAvatarModule, ClrIfDaterangeErrorDirective, ClrIfWarning, ClrIfWarningModule, ClrKeyboardNavAltMnemonicDirective, ClrKeyboardNavCtrlArrowDirective, ClrLetterAvatar, ClrLetterAvatarModule, ClrLocationBarModule, ClrMainNavGroup, ClrMainNavGroupItem, ClrMainNavGroupModule, ClrMaxNumeric, ClrMinNumeric, ClrMultilingualInput, ClrMultilingualInputValidators, ClrMultilingualModule, ClrMultilingualSelector, ClrMultilingualTextarea, ClrNotification, ClrNotificationModule, ClrNotificationRef, ClrNotificationService, ClrNumericField, ClrNumericFieldModule, ClrNumericFieldValidators, ClrPagedSearchResultList, ClrPagedSearchResultListModule, ClrPager, ClrPagerModule, ClrProgressSpinnerComponent, ClrProgressSpinnerModule, ClrQuickList, ClrQuickListModule, ClrReadonlyDirective, ClrReadonlyDirectiveModule, ClrRequiredAllMultilang, ClrRequiredOneMultilang, ClrSearchField, ClrSearchFieldModule, ClrSignpostAddonComponent, ClrSignpostAddonModule, ClrSummaryArea, ClrSummaryAreaStateService, ClrSummaryAreaToggle, ClrSummaryItem, ClrSummaryItemValue, ClrTimeInput, ClrTreetable, ClrTreetableActionOverflow, ClrTreetableCell, ClrTreetableColumn, ClrTreetableFilter, ClrTreetableModule, ClrTreetablePlaceholder, ClrTreetableRow, ClrTreetableSortOrder, ClrTreetableStringFilter, ClrTreetableTreeNode, ClrViewEditSection, ClrViewEditSectionModule, ColumnHiddenStatePersistenceDirective, CompletedByDateShape, CupraBrandShape, Customer, CustomerVip, CustomerVipCollection, CustomerWaiting, CustomerWaitingCollection, DATE, DELIMITER_REGEX, DWABrandShape, DatagridColumnReorderDirective, DatagridFieldDirective, DayModel, DeliveryDate, DieselShape, DollarBillForwardShape, DollarBillPartialShape, DynamicCellContentComponent, EnergyShape, ExportDatagridButtonComponent, ExportDatagridService, ExportTypeEnum, ExternalPartForwardShape, FirstRegistrationDate, GasCarsServiceShape, GasShape, HISTORY_NOTIFICATION_URL_PROVIDER, HISTORY_PROVIDER, HISTORY_TOKEN, HistoryProvider, InternalPartForwardShape, InvoiceReadyShape, InvoiceRecipient, InvoiceShape, ItemsForwardShape, ItemsReceiveShape, LITTLE_ENDIAN, LITTLE_ENDIAN_REGEX, LocationBarComponent, LocationBarContentProvider, LocationBarNode, LogoCommissionModule, LogoCommissionModuleFavIcon, LogoCommissionModuleNegative, LogoCommissionModuleNegativeFavIcon, LogoCostApproval, LogoCostApprovalFavIcon, LogoCostApprovalNegative, LogoCostApprovalNegativeFavIcon, LogoCostControlling, LogoCostControllingFavIcon, LogoCostControllingNegative, LogoCostControllingNegativeFavIcon, LogoDigitalServiceReception, LogoDigitalServiceReceptionFavIcon, LogoDigitalServiceReceptionNegative, LogoDigitalServiceReceptionNegativeFavIcon, LogoDocFlow, LogoDocFlowFavIcon, LogoDocFlowNegative, LogoDocFlowNegativeFavIcon, LogoDocScan, LogoDocScanFavIcon, LogoDocScanNegative, LogoDocScanNegativeFavIcon, LogoDocStore, LogoDocStoreFavIcon, LogoDocStoreNegative, LogoDocStoreNegativeFavIcon, LogoEBilling, LogoEBillingFavIcon, LogoEBillingNegative, LogoEBillingNegativeFavIcon, LogoEPayment, LogoEPaymentFavIcon, LogoEPaymentNegative, LogoEPaymentNegativeFavIcon, LogoMobilityPlanner, LogoMobilityPlannerFavIcon, LogoMobilityPlannerNegative, LogoMobilityPlannerNegativeFavIcon, LogoPartsMobile, LogoPartsMobileFavIcon, LogoPartsMobileNegative, LogoPartsMobileNegativeFavIcon, LogoSBO, LogoSBOFavIcon, LogoSBONegative, LogoSBONegativeFavIcon, LogoServiceCube, LogoServiceCubeFavIcon, LogoServiceCubeNegative, LogoServiceCubeNegativeFavIcon, LogoWCP, LogoWCPFavIcon, LogoWCPNegative, LogoWCPNegativeFavIcon, LogoWorkshopOrderTracker, LogoWorkshopOrderTrackerFavIcon, LogoWorkshopOrderTrackerNegative, LogoWorkshopOrderTrackerNegativeFavIcon, MIDDLE_ENDIAN, MIDDLE_ENDIAN_REGEX, MONTH, Mechanic, NewCarUtilityVehicleShape, NodeId, Number0, Number1, Number10, Number11, Number12, Number13, Number14, Number15, Number16, Number17, Number18, Number19, Number2, Number20, Number3, Number4, Number5, Number6, Number7, Number8, Number9, OrderShape, OrderStatusShape, PaintMaterialForwardShape, PaintMaterialShape, ParkingLocation, PartAvailabilityInfoShape, PartAvailabilityNoShape, PartAvailabilityUnknownShape, PartAvailabilityWarningShape, PartAvailabilityYesShape, PartIdenticalPredecessorShape, PartIdenticalShape, PartIdenticalSuccessorShape, PartIdenticalSuccpredecessorShape, PartNonStockForwardShape, PartPredecessorShape, PartSuccessorPredecessorShape, PartSuccessorShape, PartsChangelocation, PartsForwardShape, PartsInventory, PartsNonStockShape, PartsPicking, PartsPickingPlus, PartsReceiving, PartsShape, PlusServiceShape, PopoverPositions, PorscheBrandShape, PriceTypeSwitchShape, RepeatRepairCollection, RepeatRepairShape, ReplacementVehicleCollection, ReplacementVehicleShape, ReturnDateShape, SEPARATOR_TEXT_DEFAULT, SeatBrandShape, ServiceAdvisor, SkodaBrandShape, Sort, StatePersistenceKeyDirective, TRANSLATIONS, TaskAndAppointment, TextForward, TimeModel, TopcardShape, TouaregServiceShape, TreetableCellRenderer, TreetableDataStateService, TreetableHeaderRenderer, TreetableItemsDirective, TreetableMainRenderer, TreetableRowRenderer, USER_INPUT_REGEX, VWBrandShape, VWNBrandShape, VWShape, VehicleConversionShape, VinShape, VsfSearchShape, VsfSearchShape48, WCPShape, WrenchForward, YEAR, acceleration, accelerationIcon, acceptanceDateIcon, accessories, accessoriesIcon, accessoryPartsIcon, adblueAppIcon, adblue_app, add, addIcon, airConditionerIcon, air_conditioning, alert, alertFilledAppIcon, alertIcon, alertNotificationFilledAppIcon, alert_filled_app, alert_notification_filled_app, allIcons, ambientLightAppIcon, ambient_light_app, amplifier, amplifierIcon, appConnectAppIcon, app_connect_app, archive, archiveIcon, arrowDownIcon, arrowLeftAlignedAppIcon, arrowLeftIcon, arrowRightIcon, arrowSliderAppIcon, arrowUpIcon, arrow_down, arrow_left, arrow_left_aligned_app, arrow_right, arrow_slider_app, arrow_up, attachment, attachmentIcon, audiBrandIcon, authentPlugChargeAppIcon, authentQrAppIcon, authentRfidAppIcon, authentTouchidAppIcon, authent_plug_charge_app, authent_qr_app, authent_rfid_app, authent_touch_id_app, automaticTempAppIcon, automatic_temp_app, awardWinnerPremiumIcon, award_winner_premium, back, backIcon, battery, batteryIcon, batterySocChargingAppIcon, batterySocDepartureAppIcon, batterySocDestinationAppIcon, battery_soc_charging_app, battery_soc_departure_app, battery_soc_destination_app, bin, binIcon, blocksGroupForwardIcon, bluetooth, bluetoothIcon, bookmark, bookmarkFilledIcon, bookmarkIcon, bookmark_filled, brakeAppIcon, brake_app, brochure, brochureIcon, bulletpointAppIcon, bulletpoint_app, bundleForwardIcon, businessCustomersCommercialIcon, businessCustomersPrivateIcon, businessPartnerWithCarIcon, business_customers_commercial, business_customers_private, calc, calcIcon, calculatorForwardIcon, calendar, calendarCustomIcon, californiaServiceIcon, californiaSpecialistIcon, california_specialist, cameraScanIcon, camera_scan, campaignIcon, campaignOutdatedIcon, carDocumentsIcon, carErrorAppIcon, carInsuranceIcon, carOffSite, carOnSite, carPickupServiceIcon, carPlusIcon, carSettingsIcon, carVerifiedAppIcon, carWashIcon, carWheelAppIcon, car_documents, car_error_app, car_insurance, car_pickup_service, car_plus, car_settings, car_verified_app, car_wheel_app, carwash, certifiedRepairIcon, certifiedRetailerIcon, certified_repair, certified_retailer, challengeAppIcon, challenge_app, charging, chargingIcon, chargingPduAppIcon, chargingStationIcon, chargingTarifOverviewAppIcon, charging_pdu_app, charging_station, charging_tarif_overview_app, chat, chatAppIcon, chatIcon, chat_app, checkboxCheckedAppIcon, checkboxCheckedIcon, checkboxUncheckedAppIcon, checkboxUncheckedIcon, checkbox_checked, checkbox_checked_app, checkbox_unchecked, checkbox_unchecked_app, checkmark, checkmarkAppIcon, checkmarkFilledAppIcon, checkmarkIcon, checkmark_app, checkmark_filled_app, chevronDownIcon, chevronLeftAlignedappIcon, chevronLeftIcon, chevronRightAlignedappIcon, chevronRightIcon, chevronSmallLeftAlignedappIcon, chevronSmallRightAlignedappIcon, chevronUpIcon, chevron_down, chevron_left, chevron_left_alignedapp, chevron_right, chevron_right_alignedapp, chevron_small_left_alignedapp, chevron_small_right_alignedapp, chevron_up, circleFilledIcon, circleHalfFilledIcon, circleQuarterFilledIcon, circleThreeQuartersFilledIcon, city, cityIcon, clearAppIcon, clearRightAlignedappIcon, clear_app, clear_right_alignedapp, clock, clockIcon, close, closeAppIcon, closeCircleIcon, closeIcon, closeLeftAlignedappIcon, closeRightAlignedappIcon, close_app, close_circle, close_left_alignedapp, close_right_alignedapp, clrIconSVG, coffeeFilledAppIcon, coffee_filled_app, compassAppIcon, compass_app, completedByDateIcon, configuratorCommercialIcon, configuratorPrivateIcon, configurator_commercial, configurator_private, construction, constructionIcon, consumptionFuelFilledAppIcon, consumptionIcon, consumption_fuel, consumption_fuel_filled_app, contact, contactDealerFilledAppIcon, contactDealerIcon, contactIcon, contact_dealer, contact_dealer_filled_app, countryRoadIcon, country_road, craft, craftIcon, cupraBrandIcon, customerIcon, customerVipIcon, customerWaitingIcon, customersCenterIcon, customers_center, dataCopyAppIcon, dataExpiredIcon, dataFilledIcon, dataInputIcon, dataPlugAppIcon, dataSearchIcon, dataTimeExtensionIcon, data_copy_app, data_expired, data_filled, data_input, data_plug_app, data_search, data_time_extension, defaultSummaryAreaCollapsedKey, defogDefrostAutoAppIcon, defogDefrostIcon, defog_defrost, defog_defrost_auto_app, deliveryDateIcon, destinationAppIcon, destination_app, dieselIcon, direction, directionIcon, dischargingAppIcon, discharging_app, discountAppIcon, discount_app, discoveryAppIcon, discovery_app, dollarBillForwardIcon, dollarBillPartialIcon, download, downloadCustomIcon, dragIndicatorIcon, drag_indicator, driversAssistanceIcon, drivers_assistance, dropFilledAppIcon, drop_filled_app, dwaBrandIcon, eco, ecoIcon, edit, editIcon, editSmallRightAlignedAppIcon, edit_small_right_aligned_app, efficiency, efficiencyIcon, electricCarsIcon, electricCarsServiceIcon, electric_cars, electric_cars_service, electricity, electricityFilledAppIcon, electricityIcon, electricity_filled_app, emergency, emergencyIcon, emission, emissionIcon, energyIcon, engine, engineIcon, entertainment, entertainmentIcon, escapeHtml, escapeRegex, exportAppIcon, export_app, expressServiceIcon, express_service, exterior, exterior360Icon, exteriorIcon, exterior_360, externalPartForwardIcon, faq, faqIcon, fastForwardIcon, fast_forward, fax, faxIcon, filter, filterIcon, findACarIcon, findADealerIcon, find_a_car, find_a_dealer, firstRegistrationDateIcon, fleetServiceCommercialIcon, fleetServicePrivateIcon, fleet_service_commercial, fleet_service_private, folderFilledAppIcon, folder_filled_app, foodFilledAppIcon, food_filled_app, formatNumber, fullscreenEnterIcon, fullscreenExitIcon, fullscreen_enter, fullscreen_exit, gallery, galleryIcon, garageAppIcon, garage_app, gasAppIcon, gasCarsServiceIcon, gasIcon, gas_app, glassDamageAppIcon, glass_damage_app, gte, gteIcon, heart, heartFilledAppIcon, heartIcon, heart_filled_app, heightAppIcon, height_app, highwayRoadIcon, highway_road, history, historyIcon, homeAppIcon, homeEnergyAppIcon, homeFilledAppIcon, home_app, home_energy_app, home_filled_app, hornAppIcon, hornFilledAppIcon, horn_app, horn_filled_app, hybrid, hybridIcon, immediateChargingAppIcon, immediate_charging_app, info, infoFilledIcon, infoIcon, info_filled, inputHideIcon, inputShowIcon, input_hide, input_show, interior, interior360Icon, interiorIcon, interior_360, internalPartForwardIcon, internet, internetIcon, invitationAppIcon, invitation_app, invoiceIcon, invoiceReadyIcon, invoiceRecipientIcon, itemsForwardIcon, itemsRecieveIcon, jobportal, jobportalIcon, keyAppIcon, keyCardAppIcon, keyDigitalAppIcon, key_app, key_card_app, key_digital_app, keyboardAppIcon, keyboard_app, layerCollapseAppIcon, layerExpandAppIcon, layer_collapse_app, layer_expand_app, layersAppIcon, layers_app, legalTermsAndConditionsAppIcon, legal_terms_and_conditions_app, licencePlateAppIcon, licence_plate_app, lightAssistappIcon, light_assistapp, lightingAppIcon, lighting_app, linkExternAppIcon, link_extern_app, list, listIcon, loadingVolumeIcon, loading_volume, localBusinessIcon, local_business, locate, locateIcon, lock, lockIcon, lockOpenIcon, lock_open, login, loginIcon, logistic, logisticIcon, logoCommissionModuleFavIcon, logoCommissionModuleIcon, logoCommissionModuleNegativeFavIcon, logoCommissionModuleNegativeIcon, logoCostApprovalFavIcon, logoCostApprovalIcon, logoCostApprovalNegativeFavIcon, logoCostApprovalNegativeIcon, logoCrossControllingFavIcon, logoCrossControllingIcon, logoCrossControllingNegativeFavIcon, logoCrossControllingNegativeIcon, logoDigitalServiceReceptionFavIcon, logoDigitalServiceReceptionIcon, logoDigitalServiceReceptionNegativeFavIcon, logoDigitalServiceReceptionNegativeIcon, logoDocFlowFavIcon, logoDocFlowIcon, logoDocFlowNegativeFavIcon, logoDocFlowNegativeIcon, logoDocScanFavIcon, logoDocScanIcon, logoDocScanNegativeFavIcon, logoDocScanNegativeIcon, logoDocStoreFavIcon, logoDocStoreIcon, logoDocStoreNegativeFavIcon, logoDocStoreNegativeIcon, logoEBillingFavIcon, logoEBillingIcon, logoEBillingNegativeFavIcon, logoEBillingNegativeIcon, logoEPaymentFavIcon, logoEPaymentIcon, logoEPaymentNegativeFavIcon, logoEPaymentNegativeIcon, logoMobilityPlannerFavIcon, logoMobilityPlannerIcon, logoMobilityPlannerNegativeFavIcon, logoMobilityPlannerNegativeIcon, logoPartsMobileFavIcon, logoPartsMobileIcon, logoPartsMobileNegativeFavIcon, logoPartsMobileNegativeIcon, logoSBOFavIcon, logoSBOIcon, logoSBONegativeFavIcon, logoSBONegativeIcon, logoServiceCubeFavIcon, logoServiceCubeIcon, logoServiceCubeNegativeFavIcon, logoServiceCubeNegativeIcon, logoWCPFavIcon, logoWCPIcon, logoWCPNegativeFavIcon, logoWCPNegativeIcon, logoWorkshopOrderTrackerFavIcon, logoWorkshopOrderTrackerIcon, logoWorkshopOrderTrackerNegativeFavIcon, logoWorkshopOrderTrackerNegativeIcon, logout, logoutIcon, magnifier, magnifierIcon, magnifierMinusIcon, magnifierPlusIcon, magnifier_minus, magnifier_plus, mail, mailIcon, mailResendAppIcon, mail_resend_app, manual, manualIcon, map, mapIcon, mapToInternalTree, mechanicIcon, media, mediaIcon, menu, menuAppAppIcon, menuIcon, menu_app_app, microphoneAppIcon, microphone_app, mobile, mobileIcon, moreAppIcon, moreAppbarAppIcon, more_app, more_appbar_app, mot, motIcon, motability, motabilityIcon, navigate, navigateFilledAppIcon, navigateIcon, navigate_filled_app, newCarCommercialIcon, newCarPrivateFilledAppIcon, newCarPrivateIcon, newCarUtilityVehicleIcon, new_car_commercial, new_car_private, new_car_private_filled_app, nightServiceIcon, night_service, notification, notificationFilledIcon, notificationIcon, notification_filled, number0Icon, number10Icon, number11Icon, number12Icon, number13Icon, number14Icon, number15Icon, number16Icon, number17Icon, number18Icon, number19Icon, number1Icon, number20Icon, number2Icon, number3Icon, number4Icon, number5Icon, number6Icon, number7Icon, number8Icon, number9Icon, offers, offersFilledAppIcon, offersIcon, offers_filled_app, officeAppIcon, officeFilledAppIcon, office_app, office_filled_app, oilLevelIcon, oilLevelWarningIcon, oilTemperatureAppIcon, oil_level, oil_level_warning, oil_temperature_app, onCallDutyIcon, on_call_duty, openSatIcon, open_sat, orderIcon, orderStatusIcon, paintMaterialForwardIcon, paintMaterialIcon, paintShopIcon, paint_shop, paragraphAppIcon, paragraph_app, parkHeaterAppIcon, park_heater_app, parking, parkingFilledAppIcon, parkingGarageAppIcon, parkingIcon, parkingLocationIcon, parkingRouteAppIcon, parkingValetAppIcon, parking_filled_app, parking_garage_app, parking_route_app, parking_valet_app, partAvailabilityInfoIcon, partAvailabilityNoIcon, partAvailabilityUnknownIcon, partAvailabilityWarningIcon, partAvailabilityYesIcon, partIdenticalIcon, partIdenticalPredecessorIcon, partIdenticalSuccessorIcon, partIdenticalSuccpredecessorIcon, partPredecessorIcon, partSuccessorIcon, partSuccessorPredecessorIcon, partsChangelocationIcon, partsForwardIcon, partsIcon, partsInventoryIcon, partsNonStockForwardIcon, partsNonStockIcon, partsPickingIcon, partsPickingPlusIcon, partsReceivingIcon, pause, pauseIcon, payload, payloadIcon, paymentAppIcon, paymentCashAppIcon, paymentChargingCardAppIcon, paymentCreditcardAppIcon, paymentMachineAppIcon, payment_app, payment_cash_app, payment_charging_card_app, payment_creditcard_app, payment_machine_app, performance, performanceIcon, petrol, petrolIcon, phone, phoneIcon, pin, pinFilledAppIcon, pinGenericFilledAppIcon, pinIcon, pin_filled_app, pin_generic_filled_app, play, playIcon, plugCcsAppIcon, plugChademoAppIcon, plugChargeAppIcon, plugGenericAppIcon, plugSchukoAppIcon, plugType1AppIcon, plugType2AppIcon, plug_ccs_app, plug_chademo_app, plug_charge_app, plug_generic_app, plug_schuko_app, plug_type1_app, plug_type2_app, plusServiceIcon, porscheBrandIcon, power, powerIcon, powerTrainIcon, powertrain, preHeaterAppIcon, pre_heater_app, preciseLaneNavigationAppIcon, precise_lane_navigation_app, presentAppIcon, present_app, priceTypeSwitchIcon, printer, printerIcon, privacyAppIcon, privacy_app, profile, profileIcon, profileRegisterAppIcon, profileVerifiedIcon, profile_register_app, profile_verified, publicServiceIcon, publicTransportAppIcon, public_service, public_transport_app, qualifiedWorkshopIcon, qualified_workshop, questionnaireAppIcon, questionnaire_app, radio, radioButtonInselectedIcon, radioButtonSelectedForDefIcon, radioButtonSelectedIcon, radioIcon, radio_button_inselected, radio_button_selected, radio_button_selected_for_development, range, rangeIcon, reload, reloadIcon, remove, removeIcon, repeat, repeatIcon, repeatRepairIcon, replacementVehicleIcon, returnDateIcon, rewind, rewindIcon, roadsideAssistanceIcon, roadside_assistance, route, routeArrowAppIcon, routeIcon, route_arrow_app, routesHistoryAppIcon, routes_history_app, rss, rssIcon, safety, safetyIcon, save, saveAppIcon, saveIcon, save_app, seat, seatAirIcon, seatBrandIcon, seatIcon, seat_air, secretTipAppIcon, secretTipFilledAppIcon, secret_tip_app, secret_tip_filled_app, selected, selectedIcon, selectedPartnerNetworkAppIcon, selected_partner_network_app, sendToCarAppIcon, send_to_car_app, service, serviceAdvisorIcon, serviceBellIcon, serviceFilledAppIcon, serviceIcon, service_bell, service_filled_app, settings, settingsIcon, shareAndroidIcon, shareIosIcon, share_android, share_ios, shoppingCartFilledAppIcon, shoppingCartIcon, shopping_cart, shopping_cart_filled_app, shuffle, shuffleIcon, size, sizeIcon, skillAppIcon, skill_app, skipBackwardIcon, skipForwardIcon, skip_backward, skip_forward, skodaBrandIcon, softwareDownloadAppIcon, software_download_app, sortingAppIcon, sorting_app, sound, soundIcon, standardEquipmentIcon, standard_equipment, starFilledIcon, starOutlineIcon, star_filled, star_outline, statisticAppIcon, statistic_app, stockLocatorCommercialIcon, stockLocatorPrivateIcon, stock_locator_commercial, stock_locator_private, stop, stopIcon, strip, switchPositionAppIcon, switch_position_app, syncAppIcon, sync_app, taskAndAppointmentIcon, taxiDealerIcon, taxi_dealer, technicalSpecificationIcon, technical_specification, temperatureAppIcon, temperature_app, testDriveIcon, test_drive, textForwardIcon, thumbsdownAppIcon, thumbsdownFilledAppIcon, thumbsdown_app, thumbsdown_filled_app, thumbsupAppIcon, thumbsupFilledAppIcon, thumbsup_app, thumbsup_filled_app, timeClimatisationAppIcon, timePreferredAppIcon, time_climatisation_app, time_preferred_app, timer, timerIcon, topcardIcon, touaregServiceIcon, transcriptDownloadIcon, transcript_download, transmissionAutomaticIcon, transmissionManualIcon, transmission_automatic, transmission_manual, tripAppIcon, tripLongAppIcon, tripPartedAppIcon, tripShortAppIcon, trip_app, trip_long_app, trip_parted_app, trip_short_app, turnSignalsIcon, turn_signals, unselected, unselectedIcon, updateRefreshAppIcon, update_refresh_app, upload, uploadAppIcon, uploadCustomIcon, upload_app, usedCarCommercialIcon, usedCarPrivateIcon, used_car_commercial, used_car_private, vehicleAmarokIcon, vehicleCaddyIcon, vehicleConversionIcon, vehicleCrafterIcon, vehicleHightIcon, vehicleIdBuzzIcon, vehicleMultivanIcon, vehicleTransporterIcon, vehicle_amarok, vehicle_caddy, vehicle_crafter, vehicle_hight, vehicle_idbuzz, vehicle_multivan, vehicle_transporter, videoChatIcon, video_chat, view360Icon, view_360, vinIcon, virtualRealityIcon, virtual_reality, voiceMessageAppIcon, voice_message_app, volkswagenAppIcon, volkswagenIcon, volkswagen_app, volumeMaximumIcon, volumeMediumIcon, volumeMuteIcon, volume_maximum, volume_medium, volume_mute, vsfSearch48Icon, vsfSearchIcon, vwBrandIcon, vwConnectLicenseAppIcon, vw_connect_license_app, vwnBrandIcon, walkingAppIcon, walkingFilledAppIcon, walking_app, walking_filled_app, wallbox, wallboxIcon, wcAppIcon, wc_app, wcpIcon, weAssistAppIcon, weChargeAppIcon, weDeliverAppIcon, weExperienceAppIcon, weParkAppIcon, weUpgradeAppIcon, we_assist_app, we_charge_app, we_deliver_app, we_experience_app, we_park_app, we_upgrade_app, weatherSunAppIcon, weather_sun_app, wheelToWheelIcon, wheel_to_wheel, windscreenWashIcon, windscreen_wash, wlanHotspotIcon, wlan_hotspot, wrenchForwardIcon };
|
|
17018
17344
|
//# sourceMappingURL=clr-addons.mjs.map
|