@dereekb/dbx-web 9.23.12 → 9.23.14
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/calendar/package.json +2 -2
- package/esm2020/lib/interaction/filter/filter.menu.mjs +2 -0
- package/esm2020/lib/interaction/filter/filter.module.mjs +7 -5
- package/esm2020/lib/interaction/filter/filter.partial.menu.component.mjs +60 -0
- package/esm2020/lib/interaction/filter/filter.partial.mjs +64 -0
- package/esm2020/lib/interaction/filter/filter.preset.menu.component.mjs +2 -5
- package/esm2020/lib/interaction/filter/filter.preset.mjs +3 -1
- package/esm2020/lib/interaction/filter/index.mjs +4 -1
- package/fesm2015/dereekb-dbx-web.mjs +128 -23
- package/fesm2015/dereekb-dbx-web.mjs.map +1 -1
- package/fesm2020/dereekb-dbx-web.mjs +130 -22
- package/fesm2020/dereekb-dbx-web.mjs.map +1 -1
- package/lib/interaction/filter/filter.menu.d.ts +11 -0
- package/lib/interaction/filter/filter.module.d.ts +17 -16
- package/lib/interaction/filter/filter.partial.d.ts +23 -0
- package/lib/interaction/filter/filter.partial.menu.component.d.ts +17 -0
- package/lib/interaction/filter/filter.preset.menu.component.d.ts +1 -11
- package/lib/interaction/filter/index.d.ts +3 -0
- package/mapbox/package.json +3 -3
- package/package.json +3 -3
- package/table/package.json +3 -3
|
@@ -15,7 +15,7 @@ import * as i3 from '@angular/material/progress-spinner';
|
|
|
15
15
|
import { MatProgressSpinnerModule } from '@angular/material/progress-spinner';
|
|
16
16
|
import * as i2$1 from '@angular/material/icon';
|
|
17
17
|
import { MatIconModule } from '@angular/material/icon';
|
|
18
|
-
import { getValueFromGetter, mergeObjects, splitCommaSeparatedStringToSet, asPromise, objectHasNoKeys, modifier, combineMaps, addModifiers, removeModifiers, applyBestFit, isMaybeNot, isNotNullOrEmptyString, filterMaybeValues, mapIterable, toReadableError, isDefaultReadableError, build, ServerErrorResponse, UnauthorizedServerErrorResponse, maybeModifierMapToFunction, ModelRelationUtility, encodeModelKeyTypePair, useIterableOrValue } from '@dereekb/util';
|
|
18
|
+
import { getValueFromGetter, mergeObjects, splitCommaSeparatedStringToSet, asPromise, objectHasNoKeys, modifier, combineMaps, addModifiers, removeModifiers, applyBestFit, firstValue, filterUndefinedValues, isMaybeNot, isNotNullOrEmptyString, filterMaybeValues, mapIterable, toReadableError, isDefaultReadableError, build, ServerErrorResponse, UnauthorizedServerErrorResponse, maybeModifierMapToFunction, ModelRelationUtility, encodeModelKeyTypePair, useIterableOrValue } from '@dereekb/util';
|
|
19
19
|
import * as i3$1 from '@angular/material/progress-bar';
|
|
20
20
|
import { MatProgressBarModule } from '@angular/material/progress-bar';
|
|
21
21
|
import * as i5 from '@angular/material/core';
|
|
@@ -1218,7 +1218,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
1218
1218
|
type: Input
|
|
1219
1219
|
}] } });
|
|
1220
1220
|
|
|
1221
|
-
const declarations$
|
|
1221
|
+
const declarations$8 = [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective];
|
|
1222
1222
|
class DbxStyleLayoutModule {
|
|
1223
1223
|
}
|
|
1224
1224
|
DbxStyleLayoutModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxStyleLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -1228,8 +1228,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
1228
1228
|
type: NgModule,
|
|
1229
1229
|
args: [{
|
|
1230
1230
|
imports: [CommonModule],
|
|
1231
|
-
declarations: declarations$
|
|
1232
|
-
exports: declarations$
|
|
1231
|
+
declarations: declarations$8,
|
|
1232
|
+
exports: declarations$8
|
|
1233
1233
|
}]
|
|
1234
1234
|
}] });
|
|
1235
1235
|
|
|
@@ -2121,7 +2121,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2121
2121
|
}] }];
|
|
2122
2122
|
} });
|
|
2123
2123
|
|
|
2124
|
-
const declarations$
|
|
2124
|
+
const declarations$7 = [DbxPopoverContentComponent, DbxPopoverControlsDirective, DbxPopoverHeaderComponent, DbxPopoverScrollContentComponent];
|
|
2125
2125
|
/**
|
|
2126
2126
|
* Contains all popover content components, allowing other sibling dbx-web modules to use the directives without referencing the full popover module.
|
|
2127
2127
|
*/
|
|
@@ -2134,8 +2134,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2134
2134
|
type: NgModule,
|
|
2135
2135
|
args: [{
|
|
2136
2136
|
imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule],
|
|
2137
|
-
declarations: declarations$
|
|
2138
|
-
exports: declarations$
|
|
2137
|
+
declarations: declarations$7,
|
|
2138
|
+
exports: declarations$7
|
|
2139
2139
|
}]
|
|
2140
2140
|
}] });
|
|
2141
2141
|
|
|
@@ -2178,7 +2178,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2178
2178
|
type: Input
|
|
2179
2179
|
}] } });
|
|
2180
2180
|
|
|
2181
|
-
const declarations$
|
|
2181
|
+
const declarations$6 = [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective];
|
|
2182
2182
|
class DbxPopoverInteractionModule {
|
|
2183
2183
|
}
|
|
2184
2184
|
DbxPopoverInteractionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxPopoverInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
@@ -2188,8 +2188,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2188
2188
|
type: NgModule,
|
|
2189
2189
|
args: [{
|
|
2190
2190
|
imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule, DbxPopoverInteractionContentModule],
|
|
2191
|
-
declarations: declarations$
|
|
2192
|
-
exports: [...declarations$
|
|
2191
|
+
declarations: declarations$6,
|
|
2192
|
+
exports: [...declarations$6, DbxPopoverInteractionContentModule]
|
|
2193
2193
|
}]
|
|
2194
2194
|
}] });
|
|
2195
2195
|
|
|
@@ -2238,6 +2238,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
2238
2238
|
class AbstractDbxPresetFilterMenuComponent {
|
|
2239
2239
|
constructor(filterSourceDirective) {
|
|
2240
2240
|
this.filterSourceDirective = filterSourceDirective;
|
|
2241
|
+
//TODO: Rename to AbstractDbxPresetFilterMenuDirective
|
|
2241
2242
|
this._presets = new BehaviorSubject([]);
|
|
2242
2243
|
this.selected$ = this.filterSourceDirective.filter$.pipe(startWith(undefined), distinctUntilChanged());
|
|
2243
2244
|
this.selectedPresetString$ = this.selected$.pipe(map((selectedFilter) => (selectedFilter ? selectedFilter.preset : undefined)), distinctUntilChanged());
|
|
@@ -2259,6 +2260,7 @@ class AbstractDbxPresetFilterMenuComponent {
|
|
|
2259
2260
|
selectPreset(preset) {
|
|
2260
2261
|
const presetValue = preset.presetValue;
|
|
2261
2262
|
if (presetValue == null || (typeof presetValue !== 'function' && objectHasNoKeys(presetValue))) {
|
|
2263
|
+
// set and then reset if the value is null or empty
|
|
2262
2264
|
this.filterSourceDirective.setFilter((presetValue !== null && presetValue !== void 0 ? presetValue : {}));
|
|
2263
2265
|
this.filterSourceDirective.resetFilter();
|
|
2264
2266
|
}
|
|
@@ -2525,11 +2527,7 @@ class DbxPresetFilterMenuComponent extends AbstractDbxPresetFilterMenuComponent
|
|
|
2525
2527
|
constructor() {
|
|
2526
2528
|
super(...arguments);
|
|
2527
2529
|
this._config = new BehaviorSubject({});
|
|
2528
|
-
this.buttonText$ = combineLatest([this._config, this.selectedPreset$]).pipe(map(([config, preset]) => {
|
|
2529
|
-
var _a, _b;
|
|
2530
|
-
const buttonText = (_b = (_a = preset === null || preset === void 0 ? void 0 : preset.title) !== null && _a !== void 0 ? _a : config.unknownSelectionText) !== null && _b !== void 0 ? _b : 'Filter';
|
|
2531
|
-
return buttonText;
|
|
2532
|
-
}), distinctUntilChanged(), shareReplay(1));
|
|
2530
|
+
this.buttonText$ = combineLatest([this._config, this.selectedPreset$]).pipe(map(([config, preset]) => { var _a, _b; return (_b = (_a = preset === null || preset === void 0 ? void 0 : preset.title) !== null && _a !== void 0 ? _a : config.unknownSelectionText) !== null && _b !== void 0 ? _b : 'Filter'; }), distinctUntilChanged(), shareReplay(1));
|
|
2533
2531
|
this.buttonIcon$ = this._config.pipe(switchMap((config) => {
|
|
2534
2532
|
const filterIcon = config.filterIcon === false ? '' : config.filterIcon || 'arrow_drop_down';
|
|
2535
2533
|
return this.selectedPreset$.pipe(map((preset) => {
|
|
@@ -3504,7 +3502,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3504
3502
|
}]
|
|
3505
3503
|
}] });
|
|
3506
3504
|
|
|
3507
|
-
const declarations$
|
|
3505
|
+
const declarations$5 = [
|
|
3508
3506
|
//
|
|
3509
3507
|
DbxContentDirective,
|
|
3510
3508
|
DbxContentContainerDirective,
|
|
@@ -3544,8 +3542,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3544
3542
|
type: NgModule,
|
|
3545
3543
|
args: [{
|
|
3546
3544
|
imports: [CommonModule],
|
|
3547
|
-
declarations: declarations$
|
|
3548
|
-
exports: declarations$
|
|
3545
|
+
declarations: declarations$5,
|
|
3546
|
+
exports: declarations$5
|
|
3549
3547
|
}]
|
|
3550
3548
|
}] });
|
|
3551
3549
|
|
|
@@ -3666,10 +3664,117 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3666
3664
|
}]
|
|
3667
3665
|
}] });
|
|
3668
3666
|
|
|
3667
|
+
/**
|
|
3668
|
+
* Displays a button and menu for filtering partialPresets.
|
|
3669
|
+
*/
|
|
3670
|
+
class AbstractDbxPartialPresetFilterMenuDirective {
|
|
3671
|
+
constructor(filterSourceDirective) {
|
|
3672
|
+
this.filterSourceDirective = filterSourceDirective;
|
|
3673
|
+
this._partialPresets = new BehaviorSubject([]);
|
|
3674
|
+
this.filter$ = this.filterSourceDirective.filter$.pipe(startWith(undefined), distinctUntilChanged());
|
|
3675
|
+
this.selectedPartialPresets$ = combineLatest([this._partialPresets, this.filter$]).pipe(map(([partialPresets, selectedFilter]) => {
|
|
3676
|
+
const selectedPresets = partialPresets.filter((x) => x.isActive(selectedFilter));
|
|
3677
|
+
return selectedPresets;
|
|
3678
|
+
}), distinctUntilChanged());
|
|
3679
|
+
this.firstSelectedPartialPreset$ = this.selectedPartialPresets$.pipe(map((selectedPartialPresets) => firstValue(selectedPartialPresets)), distinctUntilChanged());
|
|
3680
|
+
this.presetAnchors$ = combineLatest([this._partialPresets, this.firstSelectedPartialPreset$]).pipe(map(([partialPresets, firstSelectedPartialPreset]) => {
|
|
3681
|
+
return partialPresets.map((x) => {
|
|
3682
|
+
return Object.assign(Object.assign({}, x), { selected: x === firstSelectedPartialPreset, onClick: () => {
|
|
3683
|
+
this.selectPartialPreset(x);
|
|
3684
|
+
} });
|
|
3685
|
+
});
|
|
3686
|
+
}), shareReplay(1));
|
|
3687
|
+
}
|
|
3688
|
+
get partialPresets() {
|
|
3689
|
+
return this._partialPresets.value;
|
|
3690
|
+
}
|
|
3691
|
+
set partialPresets(partialPresets) {
|
|
3692
|
+
this._partialPresets.next(partialPresets);
|
|
3693
|
+
}
|
|
3694
|
+
selectPartialPreset(preset) {
|
|
3695
|
+
const presetValue = preset.partialPresetValue;
|
|
3696
|
+
if (presetValue == null || (typeof presetValue !== 'function' && objectHasNoKeys(presetValue))) {
|
|
3697
|
+
// set and then reset if the value is null or empty
|
|
3698
|
+
this.filterSourceDirective.setFilter((presetValue !== null && presetValue !== void 0 ? presetValue : {}));
|
|
3699
|
+
this.filterSourceDirective.resetFilter();
|
|
3700
|
+
}
|
|
3701
|
+
else {
|
|
3702
|
+
let filter = getValueFromGetter(preset.partialPresetValue);
|
|
3703
|
+
this.filter$.pipe(first()).subscribe((currentFilter) => {
|
|
3704
|
+
const nextFilter = Object.assign(Object.assign({}, currentFilter), filterUndefinedValues(Object.assign(Object.assign({}, currentFilter), filter), true));
|
|
3705
|
+
this.filterSourceDirective.setFilter(nextFilter);
|
|
3706
|
+
});
|
|
3707
|
+
}
|
|
3708
|
+
}
|
|
3709
|
+
ngOnDestroy() {
|
|
3710
|
+
this._partialPresets.complete();
|
|
3711
|
+
}
|
|
3712
|
+
}
|
|
3713
|
+
AbstractDbxPartialPresetFilterMenuDirective.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxPartialPresetFilterMenuDirective, deps: [{ token: i1$2.FilterSourceDirective }], target: i0.ɵɵFactoryTarget.Directive });
|
|
3714
|
+
AbstractDbxPartialPresetFilterMenuDirective.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "14.2.12", type: AbstractDbxPartialPresetFilterMenuDirective, inputs: { partialPresets: "partialPresets" }, ngImport: i0 });
|
|
3715
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: AbstractDbxPartialPresetFilterMenuDirective, decorators: [{
|
|
3716
|
+
type: Directive
|
|
3717
|
+
}], ctorParameters: function () { return [{ type: i1$2.FilterSourceDirective }]; }, propDecorators: { partialPresets: [{
|
|
3718
|
+
type: Input
|
|
3719
|
+
}] } });
|
|
3720
|
+
|
|
3721
|
+
/**
|
|
3722
|
+
* Displays a button and menu for filtering partial preset values.
|
|
3723
|
+
*/
|
|
3724
|
+
class DbxPartialPresetFilterMenuComponent extends AbstractDbxPartialPresetFilterMenuDirective {
|
|
3725
|
+
constructor() {
|
|
3726
|
+
super(...arguments);
|
|
3727
|
+
this._config = new BehaviorSubject({});
|
|
3728
|
+
this.buttonText$ = combineLatest([this._config, this.firstSelectedPartialPreset$]).pipe(map(([config, preset]) => {
|
|
3729
|
+
var _a, _b;
|
|
3730
|
+
const buttonText = (_b = (_a = preset === null || preset === void 0 ? void 0 : preset.title) !== null && _a !== void 0 ? _a : config.unknownSelectionText) !== null && _b !== void 0 ? _b : 'Filter';
|
|
3731
|
+
return buttonText;
|
|
3732
|
+
}), distinctUntilChanged(), shareReplay(1));
|
|
3733
|
+
this.buttonIcon$ = this._config.pipe(switchMap((config) => {
|
|
3734
|
+
const filterIcon = config.filterIcon === false ? '' : config.filterIcon || 'arrow_drop_down';
|
|
3735
|
+
return this.firstSelectedPartialPreset$.pipe(map((preset) => {
|
|
3736
|
+
var _a;
|
|
3737
|
+
let icon;
|
|
3738
|
+
if (config.filterIcon === false) {
|
|
3739
|
+
if (config.usePresetIcon) {
|
|
3740
|
+
icon = preset === null || preset === void 0 ? void 0 : preset.icon;
|
|
3741
|
+
}
|
|
3742
|
+
}
|
|
3743
|
+
else if (config.usePresetIcon) {
|
|
3744
|
+
icon = (_a = preset === null || preset === void 0 ? void 0 : preset.icon) !== null && _a !== void 0 ? _a : filterIcon;
|
|
3745
|
+
}
|
|
3746
|
+
else {
|
|
3747
|
+
icon = filterIcon;
|
|
3748
|
+
}
|
|
3749
|
+
return icon;
|
|
3750
|
+
}));
|
|
3751
|
+
}), distinctUntilChanged(), shareReplay(1));
|
|
3752
|
+
}
|
|
3753
|
+
get config() {
|
|
3754
|
+
return this._config.value;
|
|
3755
|
+
}
|
|
3756
|
+
set config(config) {
|
|
3757
|
+
this._config.next(config);
|
|
3758
|
+
}
|
|
3759
|
+
ngOnDestroy() {
|
|
3760
|
+
super.ngOnDestroy();
|
|
3761
|
+
this._config.complete();
|
|
3762
|
+
}
|
|
3763
|
+
}
|
|
3764
|
+
DbxPartialPresetFilterMenuComponent.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxPartialPresetFilterMenuComponent, deps: null, target: i0.ɵɵFactoryTarget.Component });
|
|
3765
|
+
DbxPartialPresetFilterMenuComponent.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "14.2.12", type: DbxPartialPresetFilterMenuComponent, selector: "dbx-partial-preset-filter-menu", inputs: { config: "config" }, usesInheritance: true, ngImport: i0, template: "<button mat-button [matMenuTriggerFor]=\"menu\" class=\"dbx-preset-filter-menu-button\" aria-label=\"open filter\">\n <mat-icon class=\"dbx-icon-spacer\" *ngIf=\"buttonIcon$ | async\">{{ buttonIcon$ | async }}</mat-icon>\n <span>{{ buttonText$ | async }}</span>\n</button>\n<mat-menu #menu class=\"dbx-preset-filter-menu\">\n <dbx-anchor *ngFor=\"let anchor of presetAnchors$ | async\" [anchor]=\"anchor\">\n <button mat-menu-item [ngClass]=\"anchor.selected ? 'active' : ''\">{{ anchor.title }}</button>\n </dbx-anchor>\n</mat-menu>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: DbxAnchorComponent, selector: "dbx-anchor, [dbx-anchor]", inputs: ["block"] }, { kind: "directive", type: i3$3.DefaultClassDirective, selector: " [ngClass], [ngClass.xs], [ngClass.sm], [ngClass.md], [ngClass.lg], [ngClass.xl], [ngClass.lt-sm], [ngClass.lt-md], [ngClass.lt-lg], [ngClass.lt-xl], [ngClass.gt-xs], [ngClass.gt-sm], [ngClass.gt-md], [ngClass.gt-lg]", inputs: ["ngClass", "ngClass.xs", "ngClass.sm", "ngClass.md", "ngClass.lg", "ngClass.xl", "ngClass.lt-sm", "ngClass.lt-md", "ngClass.lt-lg", "ngClass.lt-xl", "ngClass.gt-xs", "ngClass.gt-sm", "ngClass.gt-md", "ngClass.gt-lg"] }, { kind: "component", type: i4$2.MatMenu, selector: "mat-menu", exportAs: ["matMenu"] }, { kind: "component", type: i4$2.MatMenuItem, selector: "[mat-menu-item]", inputs: ["disabled", "disableRipple", "role"], exportAs: ["matMenuItem"] }, { kind: "directive", type: i4$2.MatMenuTrigger, selector: "[mat-menu-trigger-for], [matMenuTriggerFor]", exportAs: ["matMenuTrigger"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i2.MatButton, selector: "button[mat-button], button[mat-raised-button], button[mat-icon-button], button[mat-fab], button[mat-mini-fab], button[mat-stroked-button], button[mat-flat-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] });
|
|
3766
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxPartialPresetFilterMenuComponent, decorators: [{
|
|
3767
|
+
type: Component,
|
|
3768
|
+
args: [{ selector: 'dbx-partial-preset-filter-menu', template: "<button mat-button [matMenuTriggerFor]=\"menu\" class=\"dbx-preset-filter-menu-button\" aria-label=\"open filter\">\n <mat-icon class=\"dbx-icon-spacer\" *ngIf=\"buttonIcon$ | async\">{{ buttonIcon$ | async }}</mat-icon>\n <span>{{ buttonText$ | async }}</span>\n</button>\n<mat-menu #menu class=\"dbx-preset-filter-menu\">\n <dbx-anchor *ngFor=\"let anchor of presetAnchors$ | async\" [anchor]=\"anchor\">\n <button mat-menu-item [ngClass]=\"anchor.selected ? 'active' : ''\">{{ anchor.title }}</button>\n </dbx-anchor>\n</mat-menu>\n" }]
|
|
3769
|
+
}], propDecorators: { config: [{
|
|
3770
|
+
type: Input
|
|
3771
|
+
}] } });
|
|
3772
|
+
|
|
3773
|
+
const declarations$4 = [DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent];
|
|
3669
3774
|
class DbxFilterInteractionModule {
|
|
3670
3775
|
}
|
|
3671
3776
|
DbxFilterInteractionModule.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule });
|
|
3672
|
-
DbxFilterInteractionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterInteractionModule, declarations: [DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent], imports: [CommonModule,
|
|
3777
|
+
DbxFilterInteractionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterInteractionModule, declarations: [DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent], imports: [CommonModule,
|
|
3673
3778
|
DbxPopoverInteractionModule,
|
|
3674
3779
|
DbxCoreFilterModule,
|
|
3675
3780
|
DbxButtonModule,
|
|
@@ -3680,7 +3785,7 @@ DbxFilterInteractionModule.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.
|
|
|
3680
3785
|
// Material
|
|
3681
3786
|
MatMenuModule,
|
|
3682
3787
|
MatIconModule,
|
|
3683
|
-
MatButtonModule], exports: [
|
|
3788
|
+
MatButtonModule], exports: [DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxCoreFilterModule] });
|
|
3684
3789
|
DbxFilterInteractionModule.ɵinj = i0.ɵɵngDeclareInjector({ minVersion: "12.0.0", version: "14.2.12", ngImport: i0, type: DbxFilterInteractionModule, imports: [CommonModule,
|
|
3685
3790
|
DbxPopoverInteractionModule,
|
|
3686
3791
|
DbxCoreFilterModule,
|
|
@@ -3710,8 +3815,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
3710
3815
|
MatIconModule,
|
|
3711
3816
|
MatButtonModule
|
|
3712
3817
|
],
|
|
3713
|
-
declarations:
|
|
3714
|
-
exports: [
|
|
3818
|
+
declarations: declarations$4,
|
|
3819
|
+
exports: [...declarations$4, DbxCoreFilterModule]
|
|
3715
3820
|
}]
|
|
3716
3821
|
}] });
|
|
3717
3822
|
|
|
@@ -8710,5 +8815,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.2.12", ngImpo
|
|
|
8710
8815
|
* Generated bundle index. Do not edit.
|
|
8711
8816
|
*/
|
|
8712
8817
|
|
|
8713
|
-
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxErrorWidgetComponent, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_VALUE_LIST_VIEW_ITEM, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_DIRECTIVE_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES, DEFAULT_DBX_VALUE_LIST_GRID_DIRECTIVE_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_DIRECTIVE_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_STATIC_LIST_DIRECTIVE_TEMPLATE, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionModule, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorLinkComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxBarButtonComponent, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBlockLayoutModule, DbxButtonComponent, DbxButtonDisplayType, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerComponent, DbxCardBoxLayoutModule, DbxChipDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxFormDescriptionComponent, DbxHintComponent, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxInteractionModule, DbxIntroActionSectionComponent, DbxItemLayoutModule, DbxKeypressModule, DbxLabelBlockComponent, DbxLabelComponent, DbxLayoutModule, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListView, DbxListViewWrapper, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelInfoModule, DbxModelObjectStateService, actions as DbxModelStateActions, model_actions as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNoteComponent, DbxNoticeComponent, DbxOkComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentComponent, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressButtonsModule, DbxPromptBoxComponent, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptConfirmTypes, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorComponent, DbxReadableErrorModule, DbxRouterAnchorListModule, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterListModule, DbxRouterNavbarModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxScreenModule, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListItemViewComponent, DbxSelectionValueListViewComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxSpinnerButtonComponent, DbxStepComponent, DbxStepLayoutModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxSuccessComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlocksComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadComponent, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxValueListGridItemViewComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListItemViewComponent, DbxValueListView, DbxValueListViewComponent, DbxWarnComponent, DbxWebAngularRouterModule, DbxWebModule, DbxWebRootModule, DbxWebUIRouterModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetModule, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, LoadingComponentState, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, appObjectViewTrackerStorageFactory, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, dbxColorBackground, dbxValueListItemDecisionFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewModifier, provideTwoColumnsContext, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
|
|
8818
|
+
export { APP_POPUP_MINIMIZED_WIDTH, APP_POPUP_NORMAL_HEIGHT, APP_POPUP_NORMAL_WIDTH, AbstractDbxErrorWidgetComponent, AbstractDbxListGridViewDirective, AbstractDbxListViewDirective, AbstractDbxListWrapperDirective, AbstractDbxPartialPresetFilterMenuDirective, AbstractDbxSegueAnchorDirective, AbstractDbxSelectionListViewDirective, AbstractDbxSelectionListWrapperDirective, AbstractDbxValueListItemModifierDirective, AbstractDbxValueListViewDirective, AbstractDbxValueListViewItemComponent, AbstractDbxWidgetComponent, AbstractDialogDirective, AbstractFilterPopoverButtonDirective, AbstractPopoverDirective, AbstractPopoverRefDirective, AbstractPopoverRefWithEventsDirective, AbstractPopupDirective, AbstractPromptConfirmDirective, CompactContextStore, CompactMode, DBX_ACTION_SNACKBAR_DEFAULTS, DBX_ACTION_SNACKBAR_SERVICE_CONFIG, DBX_LIST_ITEM_DEFAULT_DISABLE_FUNCTION, DBX_LIST_ITEM_DISABLE_RIPPLE_LIST_ITEM_MODIFIER_KEY, DBX_LIST_ITEM_IS_SELECTED_ITEM_MODIFIER_KEY, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_VALUE_LIST_VIEW_ITEM, DEFAULT_DBX_LIST_ITEM_IS_SELECTED_FUNCTION, DEFAULT_DBX_PROMPT_CONFIRM_DIALOG_CONFIG, DEFAULT_DBX_SELECTION_VALUE_LIST_DIRECTIVE_TEMPLATE, DEFAULT_DBX_SIDENAV_MENU_ICON, DEFAULT_DBX_VALUE_LIST_CONFIG_MAP_VALUES, DEFAULT_DBX_VALUE_LIST_GRID_DIRECTIVE_TEMPLATE, DEFAULT_ERROR_POPOVER_KEY, DEFAULT_ERROR_WIDGET_CODE, DEFAULT_FILTER_POPOVER_KEY, DEFAULT_LIST_GRID_SIZE_CONFIG, DEFAULT_LIST_WRAPPER_DIRECTIVE_TEMPLATE, DEFAULT_LOADING_PROGRESS_DIAMETER, DEFAULT_SCREEN_MEDIA_SERVICE_CONFIG, DEFAULT_SNACKBAR_DIRECTIVE_DURATION, DEFAULT_STATIC_LIST_DIRECTIVE_TEMPLATE, DEFAULT_TWO_COLUMNS_MIN_RIGHT_WIDTH, DbxActionConfirmDirective, DbxActionDialogDirective, DbxActionErrorDirective, DbxActionKeyTriggerDirective, DbxActionLoadingContextDirective, DbxActionModule, DbxActionPopoverDirective, DbxActionSnackbarComponent, DbxActionSnackbarDirective, DbxActionSnackbarModule, DbxActionSnackbarService, DbxActionTransitionSafetyDialogResult, DbxActionTransitionSafetyDirective, DbxActionUIRouterTransitionModule, DbxActionUIRouterTransitionSafetyDialogComponent, DbxAnchorComponent, DbxAnchorContentComponent, DbxAnchorIconComponent, DbxAnchorLinkComponent, DbxAnchorListComponent, DbxAngularRouterSegueAnchorComponent, DbxBarButtonComponent, DbxBarDirective, DbxBarHeaderComponent, DbxBarLayoutModule, DbxBasicLoadingComponent, DbxBlockLayoutModule, DbxButtonComponent, DbxButtonDisplayType, DbxButtonModule, DbxButtonSpacerDirective, DbxCardBoxComponent, DbxCardBoxContainerComponent, DbxCardBoxLayoutModule, DbxChipDirective, DbxColorDirective, DbxColumnLayoutModule, DbxCompactDirective, DbxCompactLayoutModule, DbxContentBorderDirective, DbxContentBoxDirective, DbxContentContainerDirective, DbxContentDirective, DbxContentElevateDirective, DbxContentLayoutModule, DbxContentPageDirective, DbxContentPitDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxDialogContentCloseComponent, DbxDialogContentDirective, DbxDialogContentFooterComponent, DbxDialogInteractionModule, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxFormDescriptionComponent, DbxHintComponent, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxInteractionModule, DbxIntroActionSectionComponent, DbxItemLayoutModule, DbxKeypressModule, DbxLabelBlockComponent, DbxLabelComponent, DbxLayoutModule, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListView, DbxListViewWrapper, DbxLoadingComponent, DbxLoadingErrorDirective, DbxLoadingModule, DbxLoadingProgressComponent, DbxModelInfoModule, DbxModelObjectStateService, actions as DbxModelStateActions, model_actions as DbxModelStateModelActions, DbxModelTrackerService, DbxModelTypesService, DbxModelViewTrackerStorage, DbxNavbarComponent, DbxNoteComponent, DbxNoticeComponent, DbxOkComponent, DbxOneColumnComponent, DbxOneColumnLayoutModule, DbxPagebarComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverComponent, DbxPopoverComponentController, DbxPopoverContentComponent, DbxPopoverController, DbxPopoverControlsDirective, DbxPopoverCoordinatorComponent, DbxPopoverCoordinatorService, DbxPopoverHeaderComponent, DbxPopoverInteractionContentModule, DbxPopoverInteractionModule, DbxPopoverScrollContentComponent, DbxPopoverService, DbxPopupComponent, DbxPopupComponentController, DbxPopupContentComponent, DbxPopupControlButtonsComponent, DbxPopupController, DbxPopupControlsComponent, DbxPopupCoordinatorComponent, DbxPopupCoordinatorService, DbxPopupInteractionModule, DbxPopupService, DbxPopupWindowState, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent, DbxProgressButtonsModule, DbxPromptBoxComponent, DbxPromptComponent, DbxPromptConfirm, DbxPromptConfirmButtonDirective, DbxPromptConfirmComponent, DbxPromptConfirmDialogComponent, DbxPromptConfirmDirective, DbxPromptConfirmTypes, DbxPromptModule, DbxPromptPageComponent, DbxReadableErrorComponent, DbxReadableErrorModule, DbxRouterAnchorListModule, DbxRouterAnchorModule, DbxRouterLayoutModule, DbxRouterListModule, DbxRouterNavbarModule, DbxRouterSidenavModule, DbxRouterWebProviderConfig, DbxScreenMediaService, DbxScreenMediaServiceConfig, DbxScreenModule, DbxSectionComponent, DbxSectionHeaderComponent, DbxSectionLayoutModule, DbxSectionPageComponent, DbxSelectionValueListItemViewComponent, DbxSelectionValueListViewComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxSpinnerButtonComponent, DbxStepComponent, DbxStepLayoutModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxSuccessComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlocksComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadComponent, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxValueListGridItemViewComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListItemViewComponent, DbxValueListView, DbxValueListViewComponent, DbxWarnComponent, DbxWebAngularRouterModule, DbxWebModule, DbxWebRootModule, DbxWebUIRouterModule, DbxWidgetListGridComponent, DbxWidgetListGridViewComponent, DbxWidgetListGridViewItemComponent, DbxWidgetModule, DbxWidgetService, DbxWidgetViewComponent, DbxWindowKeyDownListenerDirective, LoadingComponentState, PopoverPositionStrategy, PopupGlobalPositionStrategy, SCREEN_MEDIA_WIDTH_TYPE_SIZE_MAP, SideNavDisplayMode, TRACK_BY_MODEL_ID, TRACK_BY_MODEL_KEY, TwoColumnsContextStore, addConfigToValueListItems, allDbxModelViewTrackerEventModelKeys, allDbxModelViewTrackerEventSetModelKeys, appObjectViewTrackerStorageFactory, catchErrorServerParams, compactModeFromInput, compareScreenMediaWidthTypes, convertServerErrorParams, convertToPOJOServerErrorResponse, convertToServerErrorResponse, dbxColorBackground, dbxValueListItemDecisionFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewModifier, provideTwoColumnsContext, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
|
|
8714
8819
|
//# sourceMappingURL=dereekb-dbx-web.mjs.map
|