@dereekb/dbx-web 10.0.24 → 10.1.1
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/_index.scss +1 -0
- package/calendar/package.json +1 -1
- package/esm2022/lib/action/snackbar/action.snackbar.component.mjs +1 -1
- package/esm2022/lib/action/transition/transition.safety.dialog.component.mjs +1 -1
- package/esm2022/lib/button/button.component.mjs +36 -19
- package/esm2022/lib/button/progress/bar.button.component.mjs +3 -3
- package/esm2022/lib/button/progress/button.progress.config.mjs +1 -1
- package/esm2022/lib/button/progress/spinner.button.component.mjs +3 -3
- package/esm2022/lib/extension/download/text/download.text.component.mjs +1 -1
- package/esm2022/lib/interaction/filter/filter.wrapper.component.mjs +1 -1
- package/esm2022/lib/interaction/popup/popup.controls.buttons.component.mjs +1 -1
- package/esm2022/lib/layout/list/index.mjs +4 -1
- package/esm2022/lib/layout/list/list.grid.view.component.mjs +13 -11
- package/esm2022/lib/layout/list/list.layout.module.mjs +41 -45
- package/esm2022/lib/layout/list/list.view.value.component.mjs +126 -22
- package/esm2022/lib/layout/list/list.view.value.group.mjs +32 -0
- package/esm2022/lib/layout/list/list.view.value.group.title.directive.mjs +132 -0
- package/esm2022/lib/layout/list/list.view.value.group.title.mjs +2 -0
- package/esm2022/lib/layout/list/list.view.value.selection.component.mjs +20 -13
- package/esm2022/lib/layout/style/style.mjs +8 -5
- package/esm2022/lib/layout/text/form.description.component.mjs +8 -10
- package/esm2022/lib/layout/text/hint.component.mjs +8 -10
- package/esm2022/lib/layout/text/label.block.component.mjs +1 -1
- package/esm2022/lib/layout/text/label.component.mjs +8 -10
- package/esm2022/lib/layout/text/note.component.mjs +8 -10
- package/esm2022/lib/layout/text/notice.component.mjs +8 -10
- package/esm2022/lib/layout/text/ok.component.mjs +8 -10
- package/esm2022/lib/layout/text/success.component.mjs +8 -10
- package/esm2022/lib/layout/text/warn.component.mjs +8 -10
- package/esm2022/lib/loading/basic-loading.component.mjs +1 -1
- package/esm2022/lib/loading/loading-progress.component.mjs +1 -1
- package/esm2022/lib/loading/loading.component.mjs +1 -1
- package/fesm2022/dereekb-dbx-web.mjs +463 -199
- package/fesm2022/dereekb-dbx-web.mjs.map +1 -1
- package/lib/button/_button.scss +23 -9
- package/lib/button/button.component.d.ts +15 -7
- package/lib/button/progress/button.progress.config.d.ts +5 -4
- package/lib/layout/list/_list.scss +40 -0
- package/lib/layout/list/index.d.ts +3 -0
- package/lib/layout/list/list.grid.view.component.d.ts +4 -4
- package/lib/layout/list/list.layout.module.d.ts +15 -14
- package/lib/layout/list/list.view.value.component.d.ts +39 -8
- package/lib/layout/list/list.view.value.group.d.ts +44 -0
- package/lib/layout/list/list.view.value.group.title.d.ts +49 -0
- package/lib/layout/list/list.view.value.group.title.directive.d.ts +31 -0
- package/lib/layout/list/list.view.value.selection.component.d.ts +6 -5
- package/lib/layout/style/_style.scss +30 -61
- package/lib/layout/style/style.d.ts +8 -1
- package/lib/layout/text/form.description.component.d.ts +4 -1
- package/lib/layout/text/hint.component.d.ts +4 -1
- package/lib/layout/text/label.component.d.ts +4 -1
- package/lib/layout/text/note.component.d.ts +4 -1
- package/lib/layout/text/notice.component.d.ts +4 -1
- package/lib/layout/text/ok.component.d.ts +4 -1
- package/lib/layout/text/success.component.d.ts +4 -1
- package/lib/layout/text/warn.component.d.ts +4 -1
- package/lib/loading/_loading.scss +9 -0
- package/lib/loading/basic-loading.component.d.ts +2 -1
- package/lib/loading/loading-progress.component.d.ts +2 -1
- package/lib/loading/loading.component.d.ts +2 -1
- package/lib/style/_config.scss +23 -1
- package/lib/style/_root-variables.scss +67 -0
- package/lib/style/_variables.scss +89 -0
- package/mapbox/package.json +1 -1
- package/package.json +1 -1
- package/table/package.json +1 -1
|
@@ -9,7 +9,7 @@ import { AbstractSubscriptionDirective, safeMarkForCheck, AbstractDbxButtonDirec
|
|
|
9
9
|
import ms from 'ms';
|
|
10
10
|
import * as i1 from '@angular/common';
|
|
11
11
|
import { CommonModule } from '@angular/common';
|
|
12
|
-
import { spaceSeparatedCssClasses, getValueFromGetter, mergeObjects, cssClassesSet, splitCommaSeparatedStringToSet, asPromise, objectHasNoKeys, modifier, combineMaps, addModifiers, removeModifiers, applyBestFit, findNext, filterMaybeValues, asArray, firstValue, filterUndefinedValues, isMaybeNot, isNotNullOrEmptyString, mapIterable, toReadableError, isDefaultReadableError, build, ServerErrorResponse, UnauthorizedServerErrorResponse, maybeModifierMapToFunction, ModelRelationUtility, encodeModelKeyTypePair, useIterableOrValue, MS_IN_SECOND } from '@dereekb/util';
|
|
12
|
+
import { spaceSeparatedCssClasses, getValueFromGetter, mergeObjects, cssClassesSet, splitCommaSeparatedStringToSet, asPromise, objectHasNoKeys, modifier, combineMaps, addModifiers, removeModifiers, applyBestFit, findNext, filterMaybeValues, asArray, firstValue, filterUndefinedValues, isMaybeNot, isNotNullOrEmptyString, mapIterable, toReadableError, isDefaultReadableError, build, ServerErrorResponse, UnauthorizedServerErrorResponse, maybeModifierMapToFunction, makeValuesGroupMap, compareWithMappedValuesFunction, ModelRelationUtility, encodeModelKeyTypePair, useIterableOrValue, MS_IN_SECOND } from '@dereekb/util';
|
|
13
13
|
import * as i2 from '@angular/material/button';
|
|
14
14
|
import { MatButtonModule } from '@angular/material/button';
|
|
15
15
|
import * as i3 from '@angular/material/progress-spinner';
|
|
@@ -232,22 +232,25 @@ class DbxSpinnerButtonComponent extends AbstractProgressButtonDirective {
|
|
|
232
232
|
return size;
|
|
233
233
|
}
|
|
234
234
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSpinnerButtonComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
235
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxSpinnerButtonComponent, selector: "dbx-spinner-button", viewQueries: [{ propertyName: "buttonRef", first: true, predicate: ["button"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, ngImport: i0, template: "<button class=\"dbx-spinner-button\" #button mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"showText\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [class.working]=\"options.working && !options.disabled\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span class=\"button-text\" [class.working]=\"options.working && !options.disabled\">\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n </ng-container>\n\n <ng-container *ngIf=\"!showText && options.buttonIcon\">\n <mat-icon class=\"mat-fab-icon\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.fab && options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <mat-spinner class=\"spinner\" *ngIf=\"options.working && !options.disabled\" [diameter]=\"calcSpinnerSize()\" [color]=\"options.spinnerColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\" [ngStyle]=\"customSpinnerStyle!\" [ngClass]=\"{ 'dbx-spinner-custom': customSpinnerStyle! }\" [class.working]=\"options.working && !options.disabled\"></mat-spinner>\n</button>\n", styles: [":host button{min-height:36px;height:unset;outline:none}:host button.working{cursor:not-allowed}:host button ::ng-deep .mdc-button__label{display:flex;align-items:center;justify-content:center}:host button.mat-mdc-button.mat-mdc-icon-button{min-width:unset;--mdc-icon-button-icon-size: unset}:host button.fullWidth{width:100%}:host button .spinner{position:absolute;opacity:0;transition:opacity .3s ease-in-out}:host button .spinner.working{opacity:1}:host button .dbx-spinner-custom.mat-progress-spinner.mat-accent circle,:host button .dbx-spinner-custom.mat-spinner.mat-accent circle{stroke:unset!important}:host button .button-text{opacity:1;transition:opacity .3s ease-in-out}:host button .button-text.working{opacity:0}:host button mat-icon.mat-button-icon{padding-right:5px;transition:opacity .3s ease-in-out}:host button mat-icon.mat-button-icon.is-mat-icon{font-size:18px;position:relative;top:3px}:host button mat-icon.mat-button-icon.working{opacity:0}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
235
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxSpinnerButtonComponent, selector: "dbx-spinner-button", viewQueries: [{ propertyName: "buttonRef", first: true, predicate: ["button"], descendants: true, read: ElementRef, static: true }], usesInheritance: true, ngImport: i0, template: "<button class=\"dbx-base-button dbx-spinner-button\" #button mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"showText\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [class.working]=\"options.working && !options.disabled\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span class=\"button-text\" [class.working]=\"options.working && !options.disabled\">\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n </ng-container>\n\n <ng-container *ngIf=\"!showText && options.buttonIcon\">\n <mat-icon class=\"mat-fab-icon\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.fab && options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <mat-spinner class=\"spinner\" *ngIf=\"options.working && !options.disabled\" [diameter]=\"calcSpinnerSize()\" [color]=\"options.spinnerColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\" [ngStyle]=\"customSpinnerStyle!\" [ngClass]=\"{ 'dbx-spinner-custom': customSpinnerStyle! }\" [class.working]=\"options.working && !options.disabled\"></mat-spinner>\n</button>\n", styles: [":host button{min-height:36px;height:unset;outline:none}:host button.working{cursor:not-allowed}:host button ::ng-deep .mdc-button__label{display:flex;align-items:center;justify-content:center}:host button.mat-mdc-button.mat-mdc-icon-button{min-width:unset;--mdc-icon-button-icon-size: unset}:host button.fullWidth{width:100%}:host button .spinner{position:absolute;opacity:0;transition:opacity .3s ease-in-out}:host button .spinner.working{opacity:1}:host button .dbx-spinner-custom.mat-progress-spinner.mat-accent circle,:host button .dbx-spinner-custom.mat-spinner.mat-accent circle{stroke:unset!important}:host button .button-text{opacity:1;transition:opacity .3s ease-in-out}:host button .button-text.working{opacity:0}:host button mat-icon.mat-button-icon{padding-right:5px;transition:opacity .3s ease-in-out}:host button mat-icon.mat-button-icon.is-mat-icon{font-size:18px;position:relative;top:3px}:host button mat-icon.mat-button-icon.working{opacity:0}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i3.MatProgressSpinner, selector: "mat-progress-spinner, mat-spinner", inputs: ["color", "mode", "value", "diameter", "strokeWidth"], exportAs: ["matProgressSpinner"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
236
236
|
}
|
|
237
237
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSpinnerButtonComponent, decorators: [{
|
|
238
238
|
type: Component,
|
|
239
|
-
args: [{ selector: 'dbx-spinner-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button class=\"dbx-spinner-button\" #button mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"showText\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [class.working]=\"options.working && !options.disabled\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span class=\"button-text\" [class.working]=\"options.working && !options.disabled\">\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n </ng-container>\n\n <ng-container *ngIf=\"!showText && options.buttonIcon\">\n <mat-icon class=\"mat-fab-icon\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.fab && options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <mat-spinner class=\"spinner\" *ngIf=\"options.working && !options.disabled\" [diameter]=\"calcSpinnerSize()\" [color]=\"options.spinnerColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\" [ngStyle]=\"customSpinnerStyle!\" [ngClass]=\"{ 'dbx-spinner-custom': customSpinnerStyle! }\" [class.working]=\"options.working && !options.disabled\"></mat-spinner>\n</button>\n", styles: [":host button{min-height:36px;height:unset;outline:none}:host button.working{cursor:not-allowed}:host button ::ng-deep .mdc-button__label{display:flex;align-items:center;justify-content:center}:host button.mat-mdc-button.mat-mdc-icon-button{min-width:unset;--mdc-icon-button-icon-size: unset}:host button.fullWidth{width:100%}:host button .spinner{position:absolute;opacity:0;transition:opacity .3s ease-in-out}:host button .spinner.working{opacity:1}:host button .dbx-spinner-custom.mat-progress-spinner.mat-accent circle,:host button .dbx-spinner-custom.mat-spinner.mat-accent circle{stroke:unset!important}:host button .button-text{opacity:1;transition:opacity .3s ease-in-out}:host button .button-text.working{opacity:0}:host button mat-icon.mat-button-icon{padding-right:5px;transition:opacity .3s ease-in-out}:host button mat-icon.mat-button-icon.is-mat-icon{font-size:18px;position:relative;top:3px}:host button mat-icon.mat-button-icon.working{opacity:0}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"] }]
|
|
239
|
+
args: [{ selector: 'dbx-spinner-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button class=\"dbx-base-button dbx-spinner-button\" #button mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"showText\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [class.working]=\"options.working && !options.disabled\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span class=\"button-text\" [class.working]=\"options.working && !options.disabled\">\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n </ng-container>\n\n <ng-container *ngIf=\"!showText && options.buttonIcon\">\n <mat-icon class=\"mat-fab-icon\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.fab && options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <mat-spinner class=\"spinner\" *ngIf=\"options.working && !options.disabled\" [diameter]=\"calcSpinnerSize()\" [color]=\"options.spinnerColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\" [ngStyle]=\"customSpinnerStyle!\" [ngClass]=\"{ 'dbx-spinner-custom': customSpinnerStyle! }\" [class.working]=\"options.working && !options.disabled\"></mat-spinner>\n</button>\n", styles: [":host button{min-height:36px;height:unset;outline:none}:host button.working{cursor:not-allowed}:host button ::ng-deep .mdc-button__label{display:flex;align-items:center;justify-content:center}:host button.mat-mdc-button.mat-mdc-icon-button{min-width:unset;--mdc-icon-button-icon-size: unset}:host button.fullWidth{width:100%}:host button .spinner{position:absolute;opacity:0;transition:opacity .3s ease-in-out}:host button .spinner.working{opacity:1}:host button .dbx-spinner-custom.mat-progress-spinner.mat-accent circle,:host button .dbx-spinner-custom.mat-spinner.mat-accent circle{stroke:unset!important}:host button .button-text{opacity:1;transition:opacity .3s ease-in-out}:host button .button-text.working{opacity:0}:host button mat-icon.mat-button-icon{padding-right:5px;transition:opacity .3s ease-in-out}:host button mat-icon.mat-button-icon.is-mat-icon{font-size:18px;position:relative;top:3px}:host button mat-icon.mat-button-icon.working{opacity:0}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"] }]
|
|
240
240
|
}], propDecorators: { buttonRef: [{
|
|
241
241
|
type: ViewChild,
|
|
242
242
|
args: ['button', { static: true, read: ElementRef }]
|
|
243
243
|
}] } });
|
|
244
244
|
|
|
245
|
+
/**
|
|
246
|
+
* @deprecated use DbxButtonType instead.
|
|
247
|
+
*/
|
|
245
248
|
var DbxButtonDisplayType;
|
|
246
249
|
(function (DbxButtonDisplayType) {
|
|
247
|
-
DbxButtonDisplayType[
|
|
248
|
-
DbxButtonDisplayType[
|
|
249
|
-
DbxButtonDisplayType[
|
|
250
|
-
DbxButtonDisplayType[
|
|
250
|
+
DbxButtonDisplayType["RAISED"] = "raised";
|
|
251
|
+
DbxButtonDisplayType["STROKED"] = "stroked";
|
|
252
|
+
DbxButtonDisplayType["FLAT"] = "flag";
|
|
253
|
+
DbxButtonDisplayType["ICON_ONLY"] = "icon";
|
|
251
254
|
})(DbxButtonDisplayType || (DbxButtonDisplayType = {}));
|
|
252
255
|
/**
|
|
253
256
|
* Complex button that supports loading states.
|
|
@@ -255,38 +258,47 @@ var DbxButtonDisplayType;
|
|
|
255
258
|
class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
256
259
|
constructor() {
|
|
257
260
|
super(...arguments);
|
|
258
|
-
this.color =
|
|
261
|
+
this.color = undefined;
|
|
262
|
+
this.spinnerColor = undefined;
|
|
263
|
+
}
|
|
264
|
+
get basic() {
|
|
265
|
+
return !this.type || this.type === 'basic';
|
|
266
|
+
}
|
|
267
|
+
set basic(basic) {
|
|
268
|
+
if (basic) {
|
|
269
|
+
this.type = 'basic';
|
|
270
|
+
}
|
|
259
271
|
}
|
|
260
272
|
get raised() {
|
|
261
|
-
return this.type ===
|
|
273
|
+
return this.type === 'raised';
|
|
262
274
|
}
|
|
263
275
|
set raised(raised) {
|
|
264
276
|
if (raised) {
|
|
265
|
-
this.type =
|
|
277
|
+
this.type = 'raised';
|
|
266
278
|
}
|
|
267
279
|
}
|
|
268
280
|
get stroked() {
|
|
269
|
-
return this.type ===
|
|
281
|
+
return this.type === 'stroked';
|
|
270
282
|
}
|
|
271
283
|
set stroked(stroked) {
|
|
272
284
|
if (stroked) {
|
|
273
|
-
this.type =
|
|
285
|
+
this.type = 'stroked';
|
|
274
286
|
}
|
|
275
287
|
}
|
|
276
288
|
get flat() {
|
|
277
|
-
return this.type ===
|
|
289
|
+
return this.type === 'flat';
|
|
278
290
|
}
|
|
279
291
|
set flat(flat) {
|
|
280
292
|
if (flat) {
|
|
281
|
-
this.type =
|
|
293
|
+
this.type = 'flat';
|
|
282
294
|
}
|
|
283
295
|
}
|
|
284
296
|
get iconOnly() {
|
|
285
|
-
return this.type ===
|
|
297
|
+
return this.type === 'icon';
|
|
286
298
|
}
|
|
287
299
|
set iconOnly(iconOnly) {
|
|
288
300
|
if (iconOnly) {
|
|
289
|
-
this.type =
|
|
301
|
+
this.type = 'icon';
|
|
290
302
|
}
|
|
291
303
|
}
|
|
292
304
|
get btnOptions() {
|
|
@@ -319,17 +331,17 @@ class DbxButtonComponent extends AbstractDbxButtonDirective {
|
|
|
319
331
|
flat: this.flat,
|
|
320
332
|
iconOnly: this.iconOnly,
|
|
321
333
|
mode: 'indeterminate',
|
|
322
|
-
spinnerColor: this.
|
|
334
|
+
spinnerColor: this.spinnerColor ?? this.color,
|
|
323
335
|
customSpinnerColor,
|
|
324
336
|
disabled
|
|
325
337
|
};
|
|
326
338
|
}
|
|
327
339
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxButtonComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
328
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxButtonComponent, selector: "dbx-button", inputs: { type: "type", raised: "raised", stroked: "stroked", flat: "flat", iconOnly: "iconOnly", color: "color", customButtonColor: "customButtonColor", customTextColor: "customTextColor", customSpinnerColor: "customSpinnerColor" }, providers: provideDbxButton(DbxButtonComponent), usesInheritance: true, ngImport: i0, template: `
|
|
340
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxButtonComponent, selector: "dbx-button", inputs: { type: "type", basic: "basic", raised: "raised", stroked: "stroked", flat: "flat", iconOnly: "iconOnly", color: "color", spinnerColor: "spinnerColor", customButtonColor: "customButtonColor", customTextColor: "customTextColor", customSpinnerColor: "customSpinnerColor" }, providers: provideDbxButton(DbxButtonComponent), usesInheritance: true, ngImport: i0, template: `
|
|
329
341
|
<dbx-spinner-button (btnClick)="clickButton()" [options]="btnOptions">
|
|
330
342
|
<ng-content></ng-content>
|
|
331
343
|
</dbx-spinner-button>
|
|
332
|
-
`, isInline: true, dependencies: [{ kind: "component", type: DbxSpinnerButtonComponent, selector: "dbx-spinner-button" }] }); }
|
|
344
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DbxSpinnerButtonComponent, selector: "dbx-spinner-button" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
333
345
|
}
|
|
334
346
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxButtonComponent, decorators: [{
|
|
335
347
|
type: Component,
|
|
@@ -340,10 +352,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
340
352
|
<ng-content></ng-content>
|
|
341
353
|
</dbx-spinner-button>
|
|
342
354
|
`,
|
|
343
|
-
providers: provideDbxButton(DbxButtonComponent)
|
|
355
|
+
providers: provideDbxButton(DbxButtonComponent),
|
|
356
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
344
357
|
}]
|
|
345
358
|
}], propDecorators: { type: [{
|
|
346
359
|
type: Input
|
|
360
|
+
}], basic: [{
|
|
361
|
+
type: Input
|
|
347
362
|
}], raised: [{
|
|
348
363
|
type: Input
|
|
349
364
|
}], stroked: [{
|
|
@@ -354,6 +369,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
354
369
|
type: Input
|
|
355
370
|
}], color: [{
|
|
356
371
|
type: Input
|
|
372
|
+
}], spinnerColor: [{
|
|
373
|
+
type: Input
|
|
357
374
|
}], customButtonColor: [{
|
|
358
375
|
type: Input
|
|
359
376
|
}], customTextColor: [{
|
|
@@ -452,7 +469,7 @@ class DbxActionSnackbarComponent extends AbstractSubscriptionDirective {
|
|
|
452
469
|
}
|
|
453
470
|
}
|
|
454
471
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxActionSnackbarComponent, deps: [{ token: i1$1.MatSnackBarRef }, { token: MAT_SNACK_BAR_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
455
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxActionSnackbarComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"dbx-action-snackbar\" [ngClass]=\"(snackbarStatusClass$ | async)!\">\n <ng-container [ngSwitch]=\"complete$ | async\">\n <ng-container *ngSwitchCase=\"true\">\n <dbx-spacer></dbx-spacer>\n <dbx-button (buttonClick)=\"dismiss()\" color=\"accent\" icon=\"done\" text=\"Success\"></dbx-button>\n </ng-container>\n <ng-container *ngSwitchCase=\"false\">\n <span>{{ message }}</span>\n <dbx-spacer></dbx-spacer>\n <ng-container *ngIf=\"hasAction\">\n <dbx-action [dbxActionValueStream]=\"value$\" [dbxActionSource]=\"sourceInstance$ | async\" [dbxActionSuccessHandler]=\"dismissAfterActionCompletes\">\n <dbx-button dbxActionButton color=\"warn\" [text]=\"button\"></dbx-button>\n </dbx-action>\n <dbx-button-spacer></dbx-button-spacer>\n </ng-container>\n <dbx-button (buttonClick)=\"dismiss()\" color=\"accent\" icon=\"close\"></dbx-button>\n </ng-container>\n </ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: DbxSpacerDirective, selector: "dbx-spacer, [dbxSpacer]" }, { kind: "directive", type: i1$2.DbxActionDirective, selector: "dbx-action,[dbxAction],dbx-action-context,[dbxActionContext]", exportAs: ["action", "dbxAction"] }, { kind: "directive", type: i1$2.DbxActionSourceDirective, selector: "[dbxActionSource]", inputs: ["dbxActionSource"] }, { kind: "directive", type: i1$2.dbxActionValueStreamDirective, selector: "[dbxActionValueStream]", inputs: ["dbxActionValueStream", "dbxActionValueStreamIsNotEmpty", "dbxActionValueStreamModified"] }, { kind: "directive", type: i1$2.DbxActionSuccessHandlerDirective, selector: "[dbxActionSuccessHandler]", inputs: ["dbxActionSuccessHandler"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "raised", "stroked", "flat", "iconOnly", "color", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
472
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxActionSnackbarComponent, selector: "ng-component", usesInheritance: true, ngImport: i0, template: "<div class=\"dbx-action-snackbar\" [ngClass]=\"(snackbarStatusClass$ | async)!\">\n <ng-container [ngSwitch]=\"complete$ | async\">\n <ng-container *ngSwitchCase=\"true\">\n <dbx-spacer></dbx-spacer>\n <dbx-button (buttonClick)=\"dismiss()\" color=\"accent\" icon=\"done\" text=\"Success\"></dbx-button>\n </ng-container>\n <ng-container *ngSwitchCase=\"false\">\n <span>{{ message }}</span>\n <dbx-spacer></dbx-spacer>\n <ng-container *ngIf=\"hasAction\">\n <dbx-action [dbxActionValueStream]=\"value$\" [dbxActionSource]=\"sourceInstance$ | async\" [dbxActionSuccessHandler]=\"dismissAfterActionCompletes\">\n <dbx-button dbxActionButton color=\"warn\" [text]=\"button\"></dbx-button>\n </dbx-action>\n <dbx-button-spacer></dbx-button-spacer>\n </ng-container>\n <dbx-button (buttonClick)=\"dismiss()\" color=\"accent\" icon=\"close\"></dbx-button>\n </ng-container>\n </ng-container>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: DbxSpacerDirective, selector: "dbx-spacer, [dbxSpacer]" }, { kind: "directive", type: i1$2.DbxActionDirective, selector: "dbx-action,[dbxAction],dbx-action-context,[dbxActionContext]", exportAs: ["action", "dbxAction"] }, { kind: "directive", type: i1$2.DbxActionSourceDirective, selector: "[dbxActionSource]", inputs: ["dbxActionSource"] }, { kind: "directive", type: i1$2.dbxActionValueStreamDirective, selector: "[dbxActionValueStream]", inputs: ["dbxActionValueStream", "dbxActionValueStreamIsNotEmpty", "dbxActionValueStreamModified"] }, { kind: "directive", type: i1$2.DbxActionSuccessHandlerDirective, selector: "[dbxActionSuccessHandler]", inputs: ["dbxActionSuccessHandler"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "basic", "raised", "stroked", "flat", "iconOnly", "color", "spinnerColor", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
456
473
|
}
|
|
457
474
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxActionSnackbarComponent, decorators: [{
|
|
458
475
|
type: Component,
|
|
@@ -825,11 +842,11 @@ class DbxBarButtonComponent extends AbstractProgressButtonDirective {
|
|
|
825
842
|
this.buttonCss$ = this.baseCssClasses$.pipe(distinctUntilItemsHaveDifferentValues((x) => x[1]), map((x) => spaceSeparatedCssClasses(x[1])), shareReplay(1));
|
|
826
843
|
}
|
|
827
844
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxBarButtonComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
828
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxBarButtonComponent, selector: "dbx-bar-button", usesInheritance: true, ngImport: i0, template: "<button class=\"dbx-bar-button\" mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span>\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n\n <mat-progress-bar class=\"bar\" *ngIf=\"options.working && !options.disabled\" [color]=\"options.barColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\"></mat-progress-bar>\n</button>\n", styles: [":host>button.dbx-bar-button.mdc-button.mat-mdc-button.working{cursor:not-allowed}:host>button.dbx-bar-button.mdc-button.mat-mdc-button.fullWidth{width:100%}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label{position:unset;display:flex;align-items:center}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label .bar{position:absolute;top:0;left:0}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon{padding-right:5px}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon.is-mat-icon{font-size:18px;position:relative;top:3px}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i3$1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
845
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxBarButtonComponent, selector: "dbx-bar-button", usesInheritance: true, ngImport: i0, template: "<button class=\"dbx-base-button dbx-bar-button\" mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span>\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n\n <mat-progress-bar class=\"bar\" *ngIf=\"options.working && !options.disabled\" [color]=\"options.barColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\"></mat-progress-bar>\n</button>\n", styles: [":host>button.dbx-bar-button.mdc-button.mat-mdc-button.working{cursor:not-allowed}:host>button.dbx-bar-button.mdc-button.mat-mdc-button.fullWidth{width:100%}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label{position:unset;display:flex;align-items:center}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label .bar{position:absolute;top:0;left:0}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon{padding-right:5px}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon.is-mat-icon{font-size:18px;position:relative;top:3px}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"], dependencies: [{ kind: "directive", type: i1.NgClass, selector: "[ngClass]", inputs: ["class", "ngClass"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgStyle, selector: "[ngStyle]", inputs: ["ngStyle"] }, { kind: "component", type: i2.MatButton, selector: " button[mat-button], button[mat-raised-button], button[mat-flat-button], button[mat-stroked-button] ", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }, { kind: "component", type: i3$1.MatProgressBar, selector: "mat-progress-bar", inputs: ["color", "value", "bufferValue", "mode"], outputs: ["animationEnd"], exportAs: ["matProgressBar"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
829
846
|
}
|
|
830
847
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxBarButtonComponent, decorators: [{
|
|
831
848
|
type: Component,
|
|
832
|
-
args: [{ selector: 'dbx-bar-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button class=\"dbx-bar-button\" mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span>\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n\n <mat-progress-bar class=\"bar\" *ngIf=\"options.working && !options.disabled\" [color]=\"options.barColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\"></mat-progress-bar>\n</button>\n", styles: [":host>button.dbx-bar-button.mdc-button.mat-mdc-button.working{cursor:not-allowed}:host>button.dbx-bar-button.mdc-button.mat-mdc-button.fullWidth{width:100%}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label{position:unset;display:flex;align-items:center}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label .bar{position:absolute;top:0;left:0}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon{padding-right:5px}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon.is-mat-icon{font-size:18px;position:relative;top:3px}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"] }]
|
|
849
|
+
args: [{ selector: 'dbx-bar-button', changeDetection: ChangeDetectionStrategy.OnPush, template: "<button class=\"dbx-base-button dbx-bar-button\" mat-button [type]=\"options.type\" [color]=\"options.buttonColor\" [ngClass]=\"buttonCss$ | async\" [ngStyle]=\"options.customStyle!\" [disabled]=\"options.working || options.disabled\">\n <ng-container *ngIf=\"options.buttonIcon\">\n <mat-icon class=\"mat-button-icon\" [class.is-mat-icon]=\"!options.buttonIcon.fontSet\" [ngClass]=\"options.buttonIcon.customClass!\" [fontSet]=\"options.buttonIcon.fontSet!\" [fontIcon]=\"options.buttonIcon.fontIcon!\" [color]=\"options.buttonIcon.color!\" [svgIcon]=\"options.buttonIcon.svgIcon!\" [inline]=\"options.buttonIcon.inline!\">\n {{ options.buttonIcon.fontSet ? '' : options.buttonIcon.fontIcon }}\n </mat-icon>\n </ng-container>\n\n <span>\n {{ options.text }}\n <ng-content></ng-content>\n </span>\n\n <mat-progress-bar class=\"bar\" *ngIf=\"options.working && !options.disabled\" [color]=\"options.barColor!\" [mode]=\"options.mode!\" [value]=\"options.value!\"></mat-progress-bar>\n</button>\n", styles: [":host>button.dbx-bar-button.mdc-button.mat-mdc-button.working{cursor:not-allowed}:host>button.dbx-bar-button.mdc-button.mat-mdc-button.fullWidth{width:100%}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label{position:unset;display:flex;align-items:center}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label .bar{position:absolute;top:0;left:0}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon{padding-right:5px}:host>button.dbx-bar-button.mdc-button.mat-mdc-button>::ng-deep .mdc-button__label mat-icon.is-mat-icon{font-size:18px;position:relative;top:3px}\n", ":host button.mat-mdc-button .button-text{display:flex;align-items:center}:host button.mat-mdc-button mat-icon.mat-button-icon.mat-icon.mat-ligature-font[fontIcon]:before,:host button.mat-mdc-button mat-icon.mat-fab-icon.mat-icon.mat-ligature-font[fontIcon]:before{content:unset}\n"] }]
|
|
833
850
|
}] });
|
|
834
851
|
|
|
835
852
|
class DbxProgressButtonsModule {
|
|
@@ -1243,18 +1260,21 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1243
1260
|
}]
|
|
1244
1261
|
}], ctorParameters: function () { return [{ type: i0.Renderer2 }, { type: DbxStyleService }, { type: i0.ChangeDetectorRef }]; } });
|
|
1245
1262
|
|
|
1246
|
-
const
|
|
1263
|
+
const DBX_THEME_COLORS_MAIN = ['primary', 'accent', 'warn'];
|
|
1264
|
+
const DBX_THEME_COLORS_EXTRA = ['notice', 'ok', 'success', 'grey'];
|
|
1265
|
+
const DBX_THEME_COLORS_EXTRA_SECONDARY = ['background', 'disabled'];
|
|
1266
|
+
const DBX_THEME_COLORS = [...DBX_THEME_COLORS_MAIN, ...DBX_THEME_COLORS_EXTRA, ...DBX_THEME_COLORS_EXTRA_SECONDARY];
|
|
1247
1267
|
function dbxColorBackground(color) {
|
|
1248
|
-
let cssClass = 'dbx-bg';
|
|
1268
|
+
let cssClass = 'dbx-bg'; // background by default
|
|
1249
1269
|
switch (color) {
|
|
1250
1270
|
case 'primary':
|
|
1251
1271
|
case 'accent':
|
|
1272
|
+
case 'warn':
|
|
1273
|
+
case 'notice':
|
|
1252
1274
|
case 'ok':
|
|
1253
1275
|
case 'success':
|
|
1254
|
-
case 'warn':
|
|
1255
1276
|
case 'grey':
|
|
1256
1277
|
case 'disabled':
|
|
1257
|
-
case 'notice':
|
|
1258
1278
|
cssClass = `dbx-${color}-bg`;
|
|
1259
1279
|
break;
|
|
1260
1280
|
}
|
|
@@ -1286,7 +1306,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1286
1306
|
type: Input
|
|
1287
1307
|
}] } });
|
|
1288
1308
|
|
|
1289
|
-
const declarations$
|
|
1309
|
+
const declarations$c = [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective];
|
|
1290
1310
|
class DbxStyleLayoutModule {
|
|
1291
1311
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxStyleLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
1292
1312
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxStyleLayoutModule, declarations: [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective], imports: [CommonModule], exports: [DbxColorDirective, DbxSpacerDirective, DbxStyleDirective, DbxSetStyleDirective, DbxStyleBodyDirective] }); }
|
|
@@ -1296,8 +1316,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
1296
1316
|
type: NgModule,
|
|
1297
1317
|
args: [{
|
|
1298
1318
|
imports: [CommonModule],
|
|
1299
|
-
declarations: declarations$
|
|
1300
|
-
exports: declarations$
|
|
1319
|
+
declarations: declarations$c,
|
|
1320
|
+
exports: declarations$c
|
|
1301
1321
|
}]
|
|
1302
1322
|
}] });
|
|
1303
1323
|
|
|
@@ -2237,7 +2257,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2237
2257
|
}]
|
|
2238
2258
|
}], ctorParameters: function () { return [{ type: DbxPopoverComponent }]; } });
|
|
2239
2259
|
|
|
2240
|
-
const declarations$
|
|
2260
|
+
const declarations$b = [DbxPopoverContentComponent, DbxPopoverControlsDirective, DbxPopoverHeaderComponent, DbxPopoverCloseButtonComponent, DbxPopoverScrollContentComponent];
|
|
2241
2261
|
/**
|
|
2242
2262
|
* Contains all popover content components, allowing other sibling dbx-web modules to use the directives without referencing the full popover module.
|
|
2243
2263
|
*/
|
|
@@ -2250,8 +2270,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2250
2270
|
type: NgModule,
|
|
2251
2271
|
args: [{
|
|
2252
2272
|
imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule],
|
|
2253
|
-
declarations: declarations$
|
|
2254
|
-
exports: declarations$
|
|
2273
|
+
declarations: declarations$b,
|
|
2274
|
+
exports: declarations$b
|
|
2255
2275
|
}]
|
|
2256
2276
|
}] });
|
|
2257
2277
|
|
|
@@ -2294,7 +2314,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2294
2314
|
type: Input
|
|
2295
2315
|
}] } });
|
|
2296
2316
|
|
|
2297
|
-
const declarations$
|
|
2317
|
+
const declarations$a = [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective];
|
|
2298
2318
|
class DbxPopoverInteractionModule {
|
|
2299
2319
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxPopoverInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
2300
2320
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxPopoverInteractionModule, declarations: [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective], imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule, DbxPopoverInteractionContentModule], exports: [DbxPopoverComponent, DbxPopoverCoordinatorComponent, DbxActionPopoverDirective, DbxPopoverInteractionContentModule] }); }
|
|
@@ -2304,8 +2324,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
2304
2324
|
type: NgModule,
|
|
2305
2325
|
args: [{
|
|
2306
2326
|
imports: [CommonModule, MatIconModule, MatButtonModule, MatDividerModule, DbxKeypressModule, DbxStyleLayoutModule, DbxInjectionComponentModule, NgOverlayContainerModule, AngularResizeEventModule, DbxPopoverInteractionContentModule],
|
|
2307
|
-
declarations: declarations$
|
|
2308
|
-
exports: [...declarations$
|
|
2327
|
+
declarations: declarations$a,
|
|
2328
|
+
exports: [...declarations$a, DbxPopoverInteractionContentModule]
|
|
2309
2329
|
}]
|
|
2310
2330
|
}] });
|
|
2311
2331
|
|
|
@@ -2336,7 +2356,7 @@ class DbxFilterWrapperComponent extends AbstractDbxActionHandlerDirective {
|
|
|
2336
2356
|
this.filterSourceDirective.resetFilter();
|
|
2337
2357
|
}
|
|
2338
2358
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxFilterWrapperComponent, deps: [{ token: i1$2.DbxActionContextStoreSourceInstance }, { token: i1$2.FilterSourceDirective }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
2339
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxFilterWrapperComponent, selector: "dbx-filter-wrapper", inputs: { showButtons: "showButtons", applyRaised: "applyRaised", applyIcon: "applyIcon", applyText: "applyText" }, providers: [provideActionStoreSource(null)], usesInheritance: true, ngImport: i0, template: "<div class=\"dbx-filter-wrapper\">\n <div class=\"dbx-filter-wrapper-content\">\n <ng-content></ng-content>\n </div>\n <div *ngIf=\"showButtons\" fxLayout=\"row\">\n <dbx-button dbxActionButton [raised]=\"applyRaised\" [text]=\"applyText\" [icon]=\"applyIcon\"></dbx-button>\n <div class=\"spacer\"></div>\n <button mat-icon-button (click)=\"resetFilter()\">\n <mat-icon>clear</mat-icon>\n </button>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "raised", "stroked", "flat", "iconOnly", "color", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: i4$1.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }] }); }
|
|
2359
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxFilterWrapperComponent, selector: "dbx-filter-wrapper", inputs: { showButtons: "showButtons", applyRaised: "applyRaised", applyIcon: "applyIcon", applyText: "applyText" }, providers: [provideActionStoreSource(null)], usesInheritance: true, ngImport: i0, template: "<div class=\"dbx-filter-wrapper\">\n <div class=\"dbx-filter-wrapper-content\">\n <ng-content></ng-content>\n </div>\n <div *ngIf=\"showButtons\" fxLayout=\"row\">\n <dbx-button dbxActionButton [raised]=\"applyRaised\" [text]=\"applyText\" [icon]=\"applyIcon\"></dbx-button>\n <div class=\"spacer\"></div>\n <button mat-icon-button (click)=\"resetFilter()\">\n <mat-icon>clear</mat-icon>\n </button>\n </div>\n</div>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "basic", "raised", "stroked", "flat", "iconOnly", "color", "spinnerColor", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: i4$1.DefaultLayoutDirective, selector: " [fxLayout], [fxLayout.xs], [fxLayout.sm], [fxLayout.md], [fxLayout.lg], [fxLayout.xl], [fxLayout.lt-sm], [fxLayout.lt-md], [fxLayout.lt-lg], [fxLayout.lt-xl], [fxLayout.gt-xs], [fxLayout.gt-sm], [fxLayout.gt-md], [fxLayout.gt-lg]", inputs: ["fxLayout", "fxLayout.xs", "fxLayout.sm", "fxLayout.md", "fxLayout.lg", "fxLayout.xl", "fxLayout.lt-sm", "fxLayout.lt-md", "fxLayout.lt-lg", "fxLayout.lt-xl", "fxLayout.gt-xs", "fxLayout.gt-sm", "fxLayout.gt-md", "fxLayout.gt-lg"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: i2.MatIconButton, selector: "button[mat-icon-button]", inputs: ["disabled", "disableRipple", "color"], exportAs: ["matButton"] }] }); }
|
|
2340
2360
|
}
|
|
2341
2361
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxFilterWrapperComponent, decorators: [{
|
|
2342
2362
|
type: Component,
|
|
@@ -3691,7 +3711,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3691
3711
|
type: Input
|
|
3692
3712
|
}] } });
|
|
3693
3713
|
|
|
3694
|
-
const declarations$
|
|
3714
|
+
const declarations$9 = [
|
|
3695
3715
|
//
|
|
3696
3716
|
DbxContentDirective,
|
|
3697
3717
|
DbxContentContainerDirective,
|
|
@@ -3729,8 +3749,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3729
3749
|
type: NgModule,
|
|
3730
3750
|
args: [{
|
|
3731
3751
|
imports: [CommonModule],
|
|
3732
|
-
declarations: declarations$
|
|
3733
|
-
exports: declarations$
|
|
3752
|
+
declarations: declarations$9,
|
|
3753
|
+
exports: declarations$9
|
|
3734
3754
|
}]
|
|
3735
3755
|
}] });
|
|
3736
3756
|
|
|
@@ -3768,7 +3788,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3768
3788
|
args: ['dbxIfSidenavDisplayMode']
|
|
3769
3789
|
}] } });
|
|
3770
3790
|
|
|
3771
|
-
const declarations$
|
|
3791
|
+
const declarations$8 = [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent];
|
|
3772
3792
|
class DbxRouterSidenavModule {
|
|
3773
3793
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxRouterSidenavModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3774
3794
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxRouterSidenavModule, declarations: [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent], imports: [CommonModule, DbxBarLayoutModule, DbxRouterAnchorModule, DbxRouterAnchorListModule, DbxButtonModule, DbxContentLayoutModule, MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule, MatDividerModule, UIRouterModule], exports: [DbxIfSidenavDisplayModeDirective, DbxSidenavComponent, DbxSidenavButtonComponent, DbxSidenavPagebarComponent, DbxSidenavPageComponent] }); }
|
|
@@ -3778,8 +3798,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3778
3798
|
type: NgModule,
|
|
3779
3799
|
args: [{
|
|
3780
3800
|
imports: [CommonModule, DbxBarLayoutModule, DbxRouterAnchorModule, DbxRouterAnchorListModule, DbxButtonModule, DbxContentLayoutModule, MatToolbarModule, MatButtonModule, MatIconModule, MatSidenavModule, MatListModule, MatDividerModule, UIRouterModule],
|
|
3781
|
-
declarations: declarations$
|
|
3782
|
-
exports: declarations$
|
|
3801
|
+
declarations: declarations$8,
|
|
3802
|
+
exports: declarations$8
|
|
3783
3803
|
}]
|
|
3784
3804
|
}] });
|
|
3785
3805
|
|
|
@@ -3990,7 +4010,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
3990
4010
|
}]
|
|
3991
4011
|
}] });
|
|
3992
4012
|
|
|
3993
|
-
const declarations$
|
|
4013
|
+
const declarations$7 = [DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent];
|
|
3994
4014
|
class DbxFilterInteractionModule {
|
|
3995
4015
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxFilterInteractionModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
3996
4016
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxFilterInteractionModule, declarations: [DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxFilterPopoverComponent, DbxFilterPopoverButtonComponent, DbxFilterWrapperComponent, DbxPresetFilterListComponent, DbxPresetFilterMenuComponent], imports: [CommonModule,
|
|
@@ -4035,8 +4055,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4035
4055
|
MatIconModule,
|
|
4036
4056
|
MatButtonModule
|
|
4037
4057
|
],
|
|
4038
|
-
declarations: declarations$
|
|
4039
|
-
exports: [...declarations$
|
|
4058
|
+
declarations: declarations$7,
|
|
4059
|
+
exports: [...declarations$7, DbxCoreFilterModule]
|
|
4040
4060
|
}]
|
|
4041
4061
|
}] });
|
|
4042
4062
|
|
|
@@ -4983,19 +5003,17 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
4983
5003
|
args: [DBX_INJECTION_COMPONENT_DATA]
|
|
4984
5004
|
}] }]; } });
|
|
4985
5005
|
|
|
5006
|
+
/**
|
|
5007
|
+
* @deprecated Compat: Remove in future version.
|
|
5008
|
+
*/
|
|
4986
5009
|
class DbxLabelComponent {
|
|
4987
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
4988
|
-
static { this.ɵ
|
|
4989
|
-
<ng-content></ng-content>
|
|
4990
|
-
`, isInline: true }); }
|
|
5010
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxLabelComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
5011
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxLabelComponent, selector: "dbx-label", host: { classAttribute: "dbx-label" }, ngImport: i0 }); }
|
|
4991
5012
|
}
|
|
4992
5013
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxLabelComponent, decorators: [{
|
|
4993
|
-
type:
|
|
5014
|
+
type: Directive,
|
|
4994
5015
|
args: [{
|
|
4995
5016
|
selector: 'dbx-label',
|
|
4996
|
-
template: `
|
|
4997
|
-
<ng-content></ng-content>
|
|
4998
|
-
`,
|
|
4999
5017
|
host: {
|
|
5000
5018
|
class: 'dbx-label'
|
|
5001
5019
|
}
|
|
@@ -5010,7 +5028,7 @@ class DbxLabelBlockComponent {
|
|
|
5010
5028
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxLabelBlockComponent, selector: "dbx-label-block", inputs: { header: "header" }, host: { classAttribute: "dbx-label-block" }, ngImport: i0, template: `
|
|
5011
5029
|
<dbx-label class="d-block dbx-label-padded">{{ header }}</dbx-label>
|
|
5012
5030
|
<ng-content></ng-content>
|
|
5013
|
-
`, isInline: true, dependencies: [{ kind: "
|
|
5031
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: DbxLabelComponent, selector: "dbx-label" }] }); }
|
|
5014
5032
|
}
|
|
5015
5033
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxLabelBlockComponent, decorators: [{
|
|
5016
5034
|
type: Component,
|
|
@@ -6063,38 +6081,34 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6063
6081
|
type: Input
|
|
6064
6082
|
}] } });
|
|
6065
6083
|
|
|
6084
|
+
/**
|
|
6085
|
+
* @deprecated Compat: Remove in future version.
|
|
6086
|
+
*/
|
|
6066
6087
|
class DbxFormDescriptionComponent {
|
|
6067
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxFormDescriptionComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6068
|
-
static { this.ɵ
|
|
6069
|
-
<ng-content></ng-content>
|
|
6070
|
-
`, isInline: true }); }
|
|
6088
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxFormDescriptionComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6089
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxFormDescriptionComponent, selector: "dbx-form-description", host: { classAttribute: "dbx-form-description" }, ngImport: i0 }); }
|
|
6071
6090
|
}
|
|
6072
6091
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxFormDescriptionComponent, decorators: [{
|
|
6073
|
-
type:
|
|
6092
|
+
type: Directive,
|
|
6074
6093
|
args: [{
|
|
6075
6094
|
selector: 'dbx-form-description',
|
|
6076
|
-
template: `
|
|
6077
|
-
<ng-content></ng-content>
|
|
6078
|
-
`,
|
|
6079
6095
|
host: {
|
|
6080
6096
|
class: 'dbx-form-description'
|
|
6081
6097
|
}
|
|
6082
6098
|
}]
|
|
6083
6099
|
}] });
|
|
6084
6100
|
|
|
6101
|
+
/**
|
|
6102
|
+
* @deprecated Compat: Remove in future version.
|
|
6103
|
+
*/
|
|
6085
6104
|
class DbxHintComponent {
|
|
6086
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxHintComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6087
|
-
static { this.ɵ
|
|
6088
|
-
<ng-content></ng-content>
|
|
6089
|
-
`, isInline: true }); }
|
|
6105
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxHintComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6106
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxHintComponent, selector: "dbx-hint", host: { classAttribute: "dbx-hint" }, ngImport: i0 }); }
|
|
6090
6107
|
}
|
|
6091
6108
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxHintComponent, decorators: [{
|
|
6092
|
-
type:
|
|
6109
|
+
type: Directive,
|
|
6093
6110
|
args: [{
|
|
6094
6111
|
selector: 'dbx-hint',
|
|
6095
|
-
template: `
|
|
6096
|
-
<ng-content></ng-content>
|
|
6097
|
-
`,
|
|
6098
6112
|
host: {
|
|
6099
6113
|
class: 'dbx-hint'
|
|
6100
6114
|
}
|
|
@@ -6166,76 +6180,68 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6166
6180
|
type: Input
|
|
6167
6181
|
}] } });
|
|
6168
6182
|
|
|
6183
|
+
/**
|
|
6184
|
+
* @deprecated Compat: Remove in future version.
|
|
6185
|
+
*/
|
|
6169
6186
|
class DbxNoteComponent {
|
|
6170
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxNoteComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6171
|
-
static { this.ɵ
|
|
6172
|
-
<ng-content></ng-content>
|
|
6173
|
-
`, isInline: true }); }
|
|
6187
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxNoteComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6188
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxNoteComponent, selector: "dbx-note", host: { classAttribute: "dbx-note" }, ngImport: i0 }); }
|
|
6174
6189
|
}
|
|
6175
6190
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxNoteComponent, decorators: [{
|
|
6176
|
-
type:
|
|
6191
|
+
type: Directive,
|
|
6177
6192
|
args: [{
|
|
6178
6193
|
selector: 'dbx-note',
|
|
6179
|
-
template: `
|
|
6180
|
-
<ng-content></ng-content>
|
|
6181
|
-
`,
|
|
6182
6194
|
host: {
|
|
6183
6195
|
class: 'dbx-note'
|
|
6184
6196
|
}
|
|
6185
6197
|
}]
|
|
6186
6198
|
}] });
|
|
6187
6199
|
|
|
6200
|
+
/**
|
|
6201
|
+
* @deprecated Compat: Remove in future version.
|
|
6202
|
+
*/
|
|
6188
6203
|
class DbxNoticeComponent {
|
|
6189
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxNoticeComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6190
|
-
static { this.ɵ
|
|
6191
|
-
<ng-content></ng-content>
|
|
6192
|
-
`, isInline: true }); }
|
|
6204
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxNoticeComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6205
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxNoticeComponent, selector: "dbx-notice", host: { classAttribute: "dbx-notice" }, ngImport: i0 }); }
|
|
6193
6206
|
}
|
|
6194
6207
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxNoticeComponent, decorators: [{
|
|
6195
|
-
type:
|
|
6208
|
+
type: Directive,
|
|
6196
6209
|
args: [{
|
|
6197
6210
|
selector: 'dbx-notice',
|
|
6198
|
-
template: `
|
|
6199
|
-
<ng-content></ng-content>
|
|
6200
|
-
`,
|
|
6201
6211
|
host: {
|
|
6202
6212
|
class: 'dbx-notice'
|
|
6203
6213
|
}
|
|
6204
6214
|
}]
|
|
6205
6215
|
}] });
|
|
6206
6216
|
|
|
6217
|
+
/**
|
|
6218
|
+
* @deprecated Compat: Remove in future version.
|
|
6219
|
+
*/
|
|
6207
6220
|
class DbxOkComponent {
|
|
6208
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxOkComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6209
|
-
static { this.ɵ
|
|
6210
|
-
<ng-content></ng-content>
|
|
6211
|
-
`, isInline: true }); }
|
|
6221
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxOkComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6222
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxOkComponent, selector: "dbx-ok", host: { classAttribute: "dbx-ok" }, ngImport: i0 }); }
|
|
6212
6223
|
}
|
|
6213
6224
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxOkComponent, decorators: [{
|
|
6214
|
-
type:
|
|
6225
|
+
type: Directive,
|
|
6215
6226
|
args: [{
|
|
6216
6227
|
selector: 'dbx-ok',
|
|
6217
|
-
template: `
|
|
6218
|
-
<ng-content></ng-content>
|
|
6219
|
-
`,
|
|
6220
6228
|
host: {
|
|
6221
6229
|
class: 'dbx-ok'
|
|
6222
6230
|
}
|
|
6223
6231
|
}]
|
|
6224
6232
|
}] });
|
|
6225
6233
|
|
|
6234
|
+
/**
|
|
6235
|
+
* @deprecated Compat: Remove in future version.
|
|
6236
|
+
*/
|
|
6226
6237
|
class DbxSuccessComponent {
|
|
6227
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSuccessComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6228
|
-
static { this.ɵ
|
|
6229
|
-
<ng-content></ng-content>
|
|
6230
|
-
`, isInline: true }); }
|
|
6238
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSuccessComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6239
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxSuccessComponent, selector: "dbx-success", host: { classAttribute: "dbx-success" }, ngImport: i0 }); }
|
|
6231
6240
|
}
|
|
6232
6241
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSuccessComponent, decorators: [{
|
|
6233
|
-
type:
|
|
6242
|
+
type: Directive,
|
|
6234
6243
|
args: [{
|
|
6235
6244
|
selector: 'dbx-success',
|
|
6236
|
-
template: `
|
|
6237
|
-
<ng-content></ng-content>
|
|
6238
|
-
`,
|
|
6239
6245
|
host: {
|
|
6240
6246
|
class: 'dbx-success'
|
|
6241
6247
|
}
|
|
@@ -6299,26 +6305,24 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6299
6305
|
type: Input
|
|
6300
6306
|
}] } });
|
|
6301
6307
|
|
|
6308
|
+
/**
|
|
6309
|
+
* @deprecated Compat: Remove in future version.
|
|
6310
|
+
*/
|
|
6302
6311
|
class DbxWarnComponent {
|
|
6303
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxWarnComponent, deps: [], target: i0.ɵɵFactoryTarget.
|
|
6304
|
-
static { this.ɵ
|
|
6305
|
-
<ng-content></ng-content>
|
|
6306
|
-
`, isInline: true }); }
|
|
6312
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxWarnComponent, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
6313
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxWarnComponent, selector: "dbx-warn", host: { classAttribute: "dbx-warn" }, ngImport: i0 }); }
|
|
6307
6314
|
}
|
|
6308
6315
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxWarnComponent, decorators: [{
|
|
6309
|
-
type:
|
|
6316
|
+
type: Directive,
|
|
6310
6317
|
args: [{
|
|
6311
6318
|
selector: 'dbx-warn',
|
|
6312
|
-
template: `
|
|
6313
|
-
<ng-content></ng-content>
|
|
6314
|
-
`,
|
|
6315
6319
|
host: {
|
|
6316
6320
|
class: 'dbx-warn'
|
|
6317
6321
|
}
|
|
6318
6322
|
}]
|
|
6319
6323
|
}] });
|
|
6320
6324
|
|
|
6321
|
-
const declarations$
|
|
6325
|
+
const declarations$6 = [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent];
|
|
6322
6326
|
class DbxTextModule {
|
|
6323
6327
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxTextModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6324
6328
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxTextModule, declarations: [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent], imports: [CommonModule, MatChipsModule, MatTooltipModule, MatIconModule], exports: [DbxUnitedStatesAddressComponent, DbxChipDirective, DbxDetailBlockComponent, DbxDetailBlockHeaderComponent, DbxNoteComponent, DbxNoticeComponent, DbxSuccessComponent, DbxWarnComponent, DbxHintComponent, DbxLabelBlockComponent, DbxLabelComponent, DbxLinkifyComponent, DbxOkComponent, DbxTextChipsComponent, DbxIconSpacerDirective, DbxFormDescriptionComponent] }); }
|
|
@@ -6328,12 +6332,12 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6328
6332
|
type: NgModule,
|
|
6329
6333
|
args: [{
|
|
6330
6334
|
imports: [CommonModule, MatChipsModule, MatTooltipModule, MatIconModule],
|
|
6331
|
-
declarations: declarations$
|
|
6332
|
-
exports: declarations$
|
|
6335
|
+
declarations: declarations$6,
|
|
6336
|
+
exports: declarations$6
|
|
6333
6337
|
}]
|
|
6334
6338
|
}] });
|
|
6335
6339
|
|
|
6336
|
-
const declarations$
|
|
6340
|
+
const declarations$5 = [
|
|
6337
6341
|
//
|
|
6338
6342
|
DbxReadableErrorComponent,
|
|
6339
6343
|
DbxLoadingErrorDirective,
|
|
@@ -6368,8 +6372,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6368
6372
|
type: NgModule,
|
|
6369
6373
|
args: [{
|
|
6370
6374
|
imports: [CommonModule, DbxTextModule, DbxInjectionComponentModule, DbxPopoverInteractionContentModule, MatButtonModule, MatIconModule],
|
|
6371
|
-
declarations: declarations$
|
|
6372
|
-
exports: declarations$
|
|
6375
|
+
declarations: declarations$5,
|
|
6376
|
+
exports: declarations$5
|
|
6373
6377
|
}]
|
|
6374
6378
|
}] });
|
|
6375
6379
|
|
|
@@ -6422,7 +6426,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6422
6426
|
type: Host
|
|
6423
6427
|
}] }, { type: i1$2.DbxActionContextStoreSourceInstance }]; } });
|
|
6424
6428
|
|
|
6425
|
-
const declarations$
|
|
6429
|
+
const declarations$4 = [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective];
|
|
6426
6430
|
class DbxLoadingModule {
|
|
6427
6431
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxLoadingModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6428
6432
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxLoadingModule, declarations: [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective], imports: [CommonModule, DbxReadableErrorModule, MatProgressSpinnerModule, MatProgressBarModule], exports: [DbxLoadingComponent, DbxBasicLoadingComponent, DbxLoadingProgressComponent, DbxActionLoadingContextDirective, MatProgressSpinnerModule, MatProgressBarModule] }); }
|
|
@@ -6432,8 +6436,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6432
6436
|
type: NgModule,
|
|
6433
6437
|
args: [{
|
|
6434
6438
|
imports: [CommonModule, DbxReadableErrorModule, MatProgressSpinnerModule, MatProgressBarModule],
|
|
6435
|
-
declarations: declarations$
|
|
6436
|
-
exports: [...declarations$
|
|
6439
|
+
declarations: declarations$4,
|
|
6440
|
+
exports: [...declarations$4, MatProgressSpinnerModule, MatProgressBarModule]
|
|
6437
6441
|
}]
|
|
6438
6442
|
}] });
|
|
6439
6443
|
|
|
@@ -6537,6 +6541,37 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6537
6541
|
type: Input
|
|
6538
6542
|
}] } });
|
|
6539
6543
|
|
|
6544
|
+
const defaultDbxValueListViewGroupValuesFunction = (items) => {
|
|
6545
|
+
const data = {};
|
|
6546
|
+
const result = {
|
|
6547
|
+
id: '_',
|
|
6548
|
+
data,
|
|
6549
|
+
items
|
|
6550
|
+
};
|
|
6551
|
+
return [result];
|
|
6552
|
+
};
|
|
6553
|
+
/**
|
|
6554
|
+
* Interface for a view that renders the items of a DbxList.
|
|
6555
|
+
*/
|
|
6556
|
+
class DbxValueListViewGroupDelegate {
|
|
6557
|
+
}
|
|
6558
|
+
function defaultDbxValueListViewGroupDelegate() {
|
|
6559
|
+
const result = {
|
|
6560
|
+
groupValues: defaultDbxValueListViewGroupValuesFunction
|
|
6561
|
+
};
|
|
6562
|
+
return result;
|
|
6563
|
+
}
|
|
6564
|
+
// eslint-disable-next-line
|
|
6565
|
+
function provideDbxValueListViewGroupDelegate(sourceType) {
|
|
6566
|
+
// use of any here is allowed as typings are not relevant for providers
|
|
6567
|
+
return [
|
|
6568
|
+
{
|
|
6569
|
+
provide: DbxValueListViewGroupDelegate,
|
|
6570
|
+
useExisting: forwardRef(() => sourceType)
|
|
6571
|
+
}
|
|
6572
|
+
];
|
|
6573
|
+
}
|
|
6574
|
+
|
|
6540
6575
|
/**
|
|
6541
6576
|
* Renders a list view using input configuration. Requires a parent DbxListView.
|
|
6542
6577
|
*/
|
|
@@ -6548,7 +6583,7 @@ class DbxValueListViewComponent extends AbstractDbxValueListViewDirective {
|
|
|
6548
6583
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6549
6584
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxValueListViewComponent, selector: "dbx-list-view", usesInheritance: true, ngImport: i0, template: `
|
|
6550
6585
|
<dbx-list-view-content [items]="items$ | async" [emitAllClicks]="emitAllClicks$ | async"></dbx-list-view-content>
|
|
6551
|
-
`, isInline: true, dependencies: [{ kind: "component", type: i0.forwardRef(function () { return
|
|
6586
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i0.forwardRef(function () { return DbxValueListViewContentComponent; }), selector: "dbx-list-view-content", inputs: ["emitAllClicks", "items"] }, { kind: "pipe", type: i0.forwardRef(function () { return i1.AsyncPipe; }), name: "async" }] }); }
|
|
6552
6587
|
}
|
|
6553
6588
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListViewComponent, decorators: [{
|
|
6554
6589
|
type: Component,
|
|
@@ -6562,13 +6597,28 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6562
6597
|
/**
|
|
6563
6598
|
* Content view for a DbxValueListView. It can be used directly in cases where the items are already configured, or want to be configured in a non-standard fashion.
|
|
6564
6599
|
*/
|
|
6565
|
-
class
|
|
6566
|
-
constructor(dbxListView) {
|
|
6600
|
+
class DbxValueListViewContentComponent {
|
|
6601
|
+
constructor(dbxListView, inputDbxListGroupDelegate) {
|
|
6567
6602
|
this.dbxListView = dbxListView;
|
|
6603
|
+
this._items = new BehaviorSubject(undefined);
|
|
6604
|
+
this.groups$ = this._items.pipe(switchMap((items) => asObservable(this._dbxListGroupDelegate.groupValues(items ?? []))), shareReplay(1));
|
|
6568
6605
|
this.disabled$ = this.dbxListView.disabled$;
|
|
6606
|
+
this.trackGroupByFunction = (_, v) => {
|
|
6607
|
+
return v.id; // track by the id
|
|
6608
|
+
};
|
|
6609
|
+
this._dbxListGroupDelegate = inputDbxListGroupDelegate ?? defaultDbxValueListViewGroupDelegate();
|
|
6569
6610
|
const trackBy = dbxListView.trackBy;
|
|
6570
6611
|
this.trackByFunction = trackBy ? (index, item) => trackBy(index, item.itemValue) : () => undefined;
|
|
6571
6612
|
}
|
|
6613
|
+
ngOnDestroy() {
|
|
6614
|
+
this._items.complete();
|
|
6615
|
+
}
|
|
6616
|
+
get items() {
|
|
6617
|
+
return this._items.value;
|
|
6618
|
+
}
|
|
6619
|
+
set items(items) {
|
|
6620
|
+
this._items.next(items);
|
|
6621
|
+
}
|
|
6572
6622
|
onClickItem(item) {
|
|
6573
6623
|
// do not emit clicks for disabled items.
|
|
6574
6624
|
if (!item.disabled) {
|
|
@@ -6584,39 +6634,125 @@ class DbxValueListItemViewComponent {
|
|
|
6584
6634
|
rippleDisabledOnItem(item) {
|
|
6585
6635
|
return item.rippleDisabled || (!this.emitAllClicks && !item.anchor);
|
|
6586
6636
|
}
|
|
6587
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
6588
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type:
|
|
6637
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListViewContentComponent, deps: [{ token: DbxListView }, { token: DbxValueListViewGroupDelegate, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6638
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxValueListViewContentComponent, selector: "dbx-list-view-content", inputs: { emitAllClicks: "emitAllClicks", items: "items" }, host: { classAttribute: "dbx-list-view" }, ngImport: i0, template: `
|
|
6639
|
+
<mat-nav-list [disabled]="disabled$ | async">
|
|
6640
|
+
<ng-container *ngFor="let group of groups$ | async; trackBy: trackGroupByFunction">
|
|
6641
|
+
<dbx-list-view-content-group [group]="group"></dbx-list-view-content-group>
|
|
6642
|
+
</ng-container>
|
|
6643
|
+
</mat-nav-list>
|
|
6644
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i0.forwardRef(function () { return i1.NgForOf; }), selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "component", type: i0.forwardRef(function () { return i4$2.MatNavList; }), selector: "mat-nav-list", exportAs: ["matNavList"] }, { kind: "component", type: i0.forwardRef(function () { return DbxValueListViewContentGroupComponent; }), selector: "dbx-list-view-content-group", inputs: ["group"] }, { kind: "pipe", type: i0.forwardRef(function () { return i1.AsyncPipe; }), name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6645
|
+
}
|
|
6646
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListViewContentComponent, decorators: [{
|
|
6647
|
+
type: Component,
|
|
6648
|
+
args: [{
|
|
6649
|
+
selector: 'dbx-list-view-content',
|
|
6650
|
+
template: `
|
|
6589
6651
|
<mat-nav-list [disabled]="disabled$ | async">
|
|
6652
|
+
<ng-container *ngFor="let group of groups$ | async; trackBy: trackGroupByFunction">
|
|
6653
|
+
<dbx-list-view-content-group [group]="group"></dbx-list-view-content-group>
|
|
6654
|
+
</ng-container>
|
|
6655
|
+
</mat-nav-list>
|
|
6656
|
+
`,
|
|
6657
|
+
host: {
|
|
6658
|
+
class: 'dbx-list-view'
|
|
6659
|
+
},
|
|
6660
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
6661
|
+
}]
|
|
6662
|
+
}], ctorParameters: function () { return [{ type: DbxListView }, { type: undefined, decorators: [{
|
|
6663
|
+
type: Optional
|
|
6664
|
+
}, {
|
|
6665
|
+
type: Inject,
|
|
6666
|
+
args: [DbxValueListViewGroupDelegate]
|
|
6667
|
+
}] }]; }, propDecorators: { emitAllClicks: [{
|
|
6668
|
+
type: Input
|
|
6669
|
+
}], items: [{
|
|
6670
|
+
type: Input
|
|
6671
|
+
}] } });
|
|
6672
|
+
/**
|
|
6673
|
+
* Content view for a DbxValueListView. It can be used directly in cases where the items are already configured, or want to be configured in a non-standard fashion.
|
|
6674
|
+
*/
|
|
6675
|
+
class DbxValueListViewContentGroupComponent {
|
|
6676
|
+
get cssClasses() {
|
|
6677
|
+
return this._cssClasses;
|
|
6678
|
+
}
|
|
6679
|
+
get items() {
|
|
6680
|
+
return this._group?.items;
|
|
6681
|
+
}
|
|
6682
|
+
get headerConfig() {
|
|
6683
|
+
return this._group?.headerConfig;
|
|
6684
|
+
}
|
|
6685
|
+
get footerConfig() {
|
|
6686
|
+
return this._group?.footerConfig;
|
|
6687
|
+
}
|
|
6688
|
+
constructor(dbxValueListViewContentComponent, cdRef) {
|
|
6689
|
+
this.dbxValueListViewContentComponent = dbxValueListViewContentComponent;
|
|
6690
|
+
this.cdRef = cdRef;
|
|
6691
|
+
this.disabled$ = this.dbxValueListViewContentComponent.disabled$;
|
|
6692
|
+
this.trackByFunction = this.dbxValueListViewContentComponent.trackByFunction;
|
|
6693
|
+
}
|
|
6694
|
+
get group() {
|
|
6695
|
+
return this._group;
|
|
6696
|
+
}
|
|
6697
|
+
set group(group) {
|
|
6698
|
+
this._group = group;
|
|
6699
|
+
this._cssClasses = spaceSeparatedCssClasses(group?.cssClasses);
|
|
6700
|
+
this.cdRef.markForCheck();
|
|
6701
|
+
}
|
|
6702
|
+
onClickItem(item) {
|
|
6703
|
+
this.dbxValueListViewContentComponent.onClickItem(item);
|
|
6704
|
+
}
|
|
6705
|
+
onClickValue(value) {
|
|
6706
|
+
this.dbxValueListViewContentComponent.onClickValue(value);
|
|
6707
|
+
}
|
|
6708
|
+
rippleDisabledOnItem(item) {
|
|
6709
|
+
return this.dbxValueListViewContentComponent.rippleDisabledOnItem(item);
|
|
6710
|
+
}
|
|
6711
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListViewContentGroupComponent, deps: [{ token: DbxValueListViewContentComponent }, { token: i0.ChangeDetectorRef }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6712
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxValueListViewContentGroupComponent, selector: "dbx-list-view-content-group", inputs: { group: "group" }, host: { properties: { "class": "cssClasses" }, classAttribute: "dbx-list-view-group" }, ngImport: i0, template: `
|
|
6713
|
+
<div class="dbx-list-view-group-content">
|
|
6714
|
+
<div class="dbx-list-view-group-header" *ngIf="headerConfig">
|
|
6715
|
+
<dbx-injection [config]="headerConfig"></dbx-injection>
|
|
6716
|
+
</div>
|
|
6590
6717
|
<dbx-anchor *ngFor="let item of items; trackBy: trackByFunction" [anchor]="item.anchor" [disabled]="item.disabled">
|
|
6591
6718
|
<a mat-list-item class="dbx-list-view-item" [disabled]="item.disabled" [disableRipple]="rippleDisabledOnItem(item)" (click)="onClickItem(item)">
|
|
6592
6719
|
<mat-icon matListItemIcon *ngIf="item.icon">{{ item.icon }}</mat-icon>
|
|
6593
6720
|
<dbx-injection [config]="item.config"></dbx-injection>
|
|
6594
6721
|
</a>
|
|
6595
6722
|
</dbx-anchor>
|
|
6596
|
-
|
|
6597
|
-
|
|
6723
|
+
<div class="dbx-list-view-group-footer" *ngIf="footerConfig">
|
|
6724
|
+
<dbx-injection [config]="footerConfig"></dbx-injection>
|
|
6725
|
+
</div>
|
|
6726
|
+
</div>
|
|
6727
|
+
`, isInline: true, dependencies: [{ 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: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "component", type: i4$2.MatListItem, selector: "mat-list-item, a[mat-list-item], button[mat-list-item]", inputs: ["activated"], exportAs: ["matListItem"] }, { kind: "directive", type: i4$2.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6598
6728
|
}
|
|
6599
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
6729
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListViewContentGroupComponent, decorators: [{
|
|
6600
6730
|
type: Component,
|
|
6601
6731
|
args: [{
|
|
6602
|
-
selector: 'dbx-list-view-content',
|
|
6732
|
+
selector: 'dbx-list-view-content-group',
|
|
6603
6733
|
template: `
|
|
6604
|
-
<
|
|
6734
|
+
<div class="dbx-list-view-group-content">
|
|
6735
|
+
<div class="dbx-list-view-group-header" *ngIf="headerConfig">
|
|
6736
|
+
<dbx-injection [config]="headerConfig"></dbx-injection>
|
|
6737
|
+
</div>
|
|
6605
6738
|
<dbx-anchor *ngFor="let item of items; trackBy: trackByFunction" [anchor]="item.anchor" [disabled]="item.disabled">
|
|
6606
6739
|
<a mat-list-item class="dbx-list-view-item" [disabled]="item.disabled" [disableRipple]="rippleDisabledOnItem(item)" (click)="onClickItem(item)">
|
|
6607
6740
|
<mat-icon matListItemIcon *ngIf="item.icon">{{ item.icon }}</mat-icon>
|
|
6608
6741
|
<dbx-injection [config]="item.config"></dbx-injection>
|
|
6609
6742
|
</a>
|
|
6610
6743
|
</dbx-anchor>
|
|
6611
|
-
|
|
6744
|
+
<div class="dbx-list-view-group-footer" *ngIf="footerConfig">
|
|
6745
|
+
<dbx-injection [config]="footerConfig"></dbx-injection>
|
|
6746
|
+
</div>
|
|
6747
|
+
</div>
|
|
6612
6748
|
`,
|
|
6613
6749
|
host: {
|
|
6614
|
-
class: 'dbx-list-view'
|
|
6615
|
-
|
|
6750
|
+
class: 'dbx-list-view-group',
|
|
6751
|
+
'[class]': 'cssClasses'
|
|
6752
|
+
},
|
|
6753
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
6616
6754
|
}]
|
|
6617
|
-
}], ctorParameters: function () { return [{ type:
|
|
6618
|
-
type: Input
|
|
6619
|
-
}], items: [{
|
|
6755
|
+
}], ctorParameters: function () { return [{ type: DbxValueListViewContentComponent }, { type: i0.ChangeDetectorRef }]; }, propDecorators: { group: [{
|
|
6620
6756
|
type: Input
|
|
6621
6757
|
}] } });
|
|
6622
6758
|
|
|
@@ -6632,7 +6768,7 @@ class DbxSelectionValueListViewComponent extends AbstractDbxValueListViewDirecti
|
|
|
6632
6768
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSelectionValueListViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6633
6769
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxSelectionValueListViewComponent, selector: "dbx-selection-list-view", usesInheritance: true, ngImport: i0, template: `
|
|
6634
6770
|
<dbx-selection-list-view-content [selectionMode]="selectionMode$ | async" [multiple]="multiple$ | async" [items]="items$ | async"></dbx-selection-list-view-content>
|
|
6635
|
-
`, isInline: true, dependencies: [{ kind: "component", type: i0.forwardRef(function () { return
|
|
6771
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i0.forwardRef(function () { return DbxSelectionValueListViewContentComponent; }), selector: "dbx-selection-list-view-content", inputs: ["multiple", "selectionMode"] }, { kind: "pipe", type: i0.forwardRef(function () { return i1.AsyncPipe; }), name: "async" }] }); }
|
|
6636
6772
|
}
|
|
6637
6773
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSelectionValueListViewComponent, decorators: [{
|
|
6638
6774
|
type: Component,
|
|
@@ -6646,9 +6782,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6646
6782
|
/**
|
|
6647
6783
|
* Content view for a DbxSelectionValueListView. It can be used directly in cases where the items are already configured, or want to be configured in a non-standard fashion.
|
|
6648
6784
|
*/
|
|
6649
|
-
class
|
|
6650
|
-
constructor(dbxListView) {
|
|
6651
|
-
super(dbxListView);
|
|
6785
|
+
class DbxSelectionValueListViewContentComponent extends DbxValueListViewContentComponent {
|
|
6786
|
+
constructor(dbxListView, inputDbxListGroupDelegate) {
|
|
6787
|
+
super(dbxListView, inputDbxListGroupDelegate);
|
|
6652
6788
|
if (!dbxListView.selectionChange) {
|
|
6653
6789
|
throw new Error('Parent dbxListView to DbxSelectionValueListViewComponent has no selectionChange emitter.');
|
|
6654
6790
|
}
|
|
@@ -6664,8 +6800,8 @@ class DbxSelectionValueListItemViewComponent extends DbxValueListItemViewCompone
|
|
|
6664
6800
|
items
|
|
6665
6801
|
});
|
|
6666
6802
|
}
|
|
6667
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
6668
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type:
|
|
6803
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSelectionValueListViewContentComponent, deps: [{ token: DbxListView }, { token: DbxValueListViewGroupDelegate, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6804
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxSelectionValueListViewContentComponent, selector: "dbx-selection-list-view-content", inputs: { multiple: "multiple", selectionMode: "selectionMode" }, host: { classAttribute: "dbx-list-view dbx-selection-list-view" }, usesInheritance: true, ngImport: i0, template: `
|
|
6669
6805
|
<ng-container [ngSwitch]="selectionMode">
|
|
6670
6806
|
<ng-container *ngSwitchCase="'view'">
|
|
6671
6807
|
<dbx-list-view-content [items]="items"></dbx-list-view-content>
|
|
@@ -6679,9 +6815,9 @@ class DbxSelectionValueListItemViewComponent extends DbxValueListItemViewCompone
|
|
|
6679
6815
|
</mat-selection-list>
|
|
6680
6816
|
</ng-container>
|
|
6681
6817
|
</ng-container>
|
|
6682
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "component", type: i4$2.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i4$2.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }, { kind: "directive", type: i4$2.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type:
|
|
6818
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "directive", type: i1.NgSwitchDefault, selector: "[ngSwitchDefault]" }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "component", type: i4$2.MatSelectionList, selector: "mat-selection-list", inputs: ["color", "compareWith", "multiple", "hideSingleSelectionIndicator", "disabled"], outputs: ["selectionChange"], exportAs: ["matSelectionList"] }, { kind: "component", type: i4$2.MatListOption, selector: "mat-list-option", inputs: ["togglePosition", "checkboxPosition", "color", "value", "selected"], outputs: ["selectedChange"], exportAs: ["matListOption"] }, { kind: "directive", type: i4$2.MatListItemIcon, selector: "[matListItemIcon]" }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }, { kind: "component", type: DbxValueListViewContentComponent, selector: "dbx-list-view-content", inputs: ["emitAllClicks", "items"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6683
6819
|
}
|
|
6684
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
6820
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxSelectionValueListViewContentComponent, decorators: [{
|
|
6685
6821
|
type: Component,
|
|
6686
6822
|
args: [{
|
|
6687
6823
|
selector: 'dbx-selection-list-view-content',
|
|
@@ -6702,9 +6838,15 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6702
6838
|
`,
|
|
6703
6839
|
host: {
|
|
6704
6840
|
class: 'dbx-list-view dbx-selection-list-view'
|
|
6705
|
-
}
|
|
6841
|
+
},
|
|
6842
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
6706
6843
|
}]
|
|
6707
|
-
}], ctorParameters: function () { return [{ type: DbxListView }
|
|
6844
|
+
}], ctorParameters: function () { return [{ type: DbxListView }, { type: undefined, decorators: [{
|
|
6845
|
+
type: Optional
|
|
6846
|
+
}, {
|
|
6847
|
+
type: Inject,
|
|
6848
|
+
args: [DbxValueListViewGroupDelegate]
|
|
6849
|
+
}] }]; }, propDecorators: { multiple: [{
|
|
6708
6850
|
type: Input
|
|
6709
6851
|
}], selectionMode: [{
|
|
6710
6852
|
type: Input
|
|
@@ -6762,7 +6904,7 @@ class DbxValueListGridViewComponent extends AbstractDbxValueListViewDirective {
|
|
|
6762
6904
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListGridViewComponent, deps: null, target: i0.ɵɵFactoryTarget.Component }); }
|
|
6763
6905
|
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxValueListGridViewComponent, selector: "dbx-list-grid-view", usesInheritance: true, ngImport: i0, template: `
|
|
6764
6906
|
<dbx-list-grid-view-content [grid]="grid$ | async" [items]="items$ | async" [emitAllClicks]="emitAllClicks$ | async"></dbx-list-grid-view-content>
|
|
6765
|
-
`, isInline: true, dependencies: [{ kind: "component", type: i0.forwardRef(function () { return
|
|
6907
|
+
`, isInline: true, dependencies: [{ kind: "component", type: i0.forwardRef(function () { return DbxValueListGridViewContentComponent; }), selector: "dbx-list-grid-view-content", inputs: ["grid"] }, { kind: "pipe", type: i0.forwardRef(function () { return i1.AsyncPipe; }), name: "async" }] }); }
|
|
6766
6908
|
}
|
|
6767
6909
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListGridViewComponent, decorators: [{
|
|
6768
6910
|
type: Component,
|
|
@@ -6811,9 +6953,9 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6811
6953
|
/**
|
|
6812
6954
|
* Content view for a DbxValueListGridView. It can be used directly in cases where the items are already configured, or want to be configured in a non-standard fashion.
|
|
6813
6955
|
*/
|
|
6814
|
-
class
|
|
6956
|
+
class DbxValueListGridViewContentComponent extends DbxValueListViewContentComponent {
|
|
6815
6957
|
constructor(dbxListView, _gridSizeOverride) {
|
|
6816
|
-
super(dbxListView);
|
|
6958
|
+
super(dbxListView, undefined);
|
|
6817
6959
|
this._gridSizeOverride = _gridSizeOverride;
|
|
6818
6960
|
this._defaultGrid = new BehaviorSubject(undefined);
|
|
6819
6961
|
this.grid$ = combineLatest([this._defaultGrid, this._gridSizeOverride?.gridSize$ ?? of(undefined)]).pipe(map(([defaultGrid, overrideGrid]) => {
|
|
@@ -6827,18 +6969,19 @@ class DbxValueListGridItemViewComponent extends DbxValueListItemViewComponent {
|
|
|
6827
6969
|
this._defaultGrid.next(grid);
|
|
6828
6970
|
}
|
|
6829
6971
|
ngOnDestroy() {
|
|
6972
|
+
super.ngOnDestroy();
|
|
6830
6973
|
this._defaultGrid.complete();
|
|
6831
6974
|
}
|
|
6832
|
-
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
6833
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type:
|
|
6975
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListGridViewContentComponent, deps: [{ token: DbxListView }, { token: DbxValueListGridSizeDirective, optional: true }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
6976
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxValueListGridViewContentComponent, selector: "dbx-list-grid-view-content", inputs: { grid: "grid" }, host: { classAttribute: "dbx-list-grid-view" }, usesInheritance: true, ngImport: i0, template: `
|
|
6834
6977
|
<div [gdGap]="gap$ | async" [gdColumns]="columns$ | async">
|
|
6835
6978
|
<dbx-anchor *ngFor="let item of items; trackBy: trackByFunction" matRipple [matRippleDisabled]="rippleDisabledOnItem(item)" class="dbx-list-grid-view-item" [anchor]="item.anchor" [disabled]="item.disabled" (click)="onClickItem(item)">
|
|
6836
6979
|
<div dbx-injection [config]="item.config"></div>
|
|
6837
6980
|
</dbx-anchor>
|
|
6838
6981
|
</div>
|
|
6839
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3$5.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "directive", type: i4$4.DefaultGridColumnsDirective, selector: " [gdColumns], [gdColumns.xs], [gdColumns.sm], [gdColumns.md], [gdColumns.lg], [gdColumns.xl], [gdColumns.lt-sm], [gdColumns.lt-md], [gdColumns.lt-lg], [gdColumns.lt-xl], [gdColumns.gt-xs], [gdColumns.gt-sm], [gdColumns.gt-md], [gdColumns.gt-lg]", inputs: ["gdColumns", "gdColumns.xs", "gdColumns.sm", "gdColumns.md", "gdColumns.lg", "gdColumns.xl", "gdColumns.lt-sm", "gdColumns.lt-md", "gdColumns.lt-lg", "gdColumns.lt-xl", "gdColumns.gt-xs", "gdColumns.gt-sm", "gdColumns.gt-md", "gdColumns.gt-lg"] }, { kind: "directive", type: i4$4.DefaultGridGapDirective, selector: " [gdGap], [gdGap.xs], [gdGap.sm], [gdGap.md], [gdGap.lg], [gdGap.xl], [gdGap.lt-sm], [gdGap.lt-md], [gdGap.lt-lg], [gdGap.lt-xl], [gdGap.gt-xs], [gdGap.gt-sm], [gdGap.gt-md], [gdGap.gt-lg]", inputs: ["gdGap", "gdGap.xs", "gdGap.sm", "gdGap.md", "gdGap.lg", "gdGap.xl", "gdGap.lt-sm", "gdGap.lt-md", "gdGap.lt-lg", "gdGap.lt-xl", "gdGap.gt-xs", "gdGap.gt-sm", "gdGap.gt-md", "gdGap.gt-lg"] }, { kind: "component", type: DbxAnchorComponent, selector: "dbx-anchor, [dbx-anchor]", inputs: ["block"] }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
6982
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgForOf, selector: "[ngFor][ngForOf]", inputs: ["ngForOf", "ngForTrackBy", "ngForTemplate"] }, { kind: "directive", type: i3$5.MatRipple, selector: "[mat-ripple], [matRipple]", inputs: ["matRippleColor", "matRippleUnbounded", "matRippleCentered", "matRippleRadius", "matRippleAnimation", "matRippleDisabled", "matRippleTrigger"], exportAs: ["matRipple"] }, { kind: "directive", type: i4$4.DefaultGridColumnsDirective, selector: " [gdColumns], [gdColumns.xs], [gdColumns.sm], [gdColumns.md], [gdColumns.lg], [gdColumns.xl], [gdColumns.lt-sm], [gdColumns.lt-md], [gdColumns.lt-lg], [gdColumns.lt-xl], [gdColumns.gt-xs], [gdColumns.gt-sm], [gdColumns.gt-md], [gdColumns.gt-lg]", inputs: ["gdColumns", "gdColumns.xs", "gdColumns.sm", "gdColumns.md", "gdColumns.lg", "gdColumns.xl", "gdColumns.lt-sm", "gdColumns.lt-md", "gdColumns.lt-lg", "gdColumns.lt-xl", "gdColumns.gt-xs", "gdColumns.gt-sm", "gdColumns.gt-md", "gdColumns.gt-lg"] }, { kind: "directive", type: i4$4.DefaultGridGapDirective, selector: " [gdGap], [gdGap.xs], [gdGap.sm], [gdGap.md], [gdGap.lg], [gdGap.xl], [gdGap.lt-sm], [gdGap.lt-md], [gdGap.lt-lg], [gdGap.lt-xl], [gdGap.gt-xs], [gdGap.gt-sm], [gdGap.gt-md], [gdGap.gt-lg]", inputs: ["gdGap", "gdGap.xs", "gdGap.sm", "gdGap.md", "gdGap.lg", "gdGap.xl", "gdGap.lt-sm", "gdGap.lt-md", "gdGap.lt-lg", "gdGap.lt-xl", "gdGap.gt-xs", "gdGap.gt-sm", "gdGap.gt-md", "gdGap.gt-lg"] }, { kind: "component", type: DbxAnchorComponent, selector: "dbx-anchor, [dbx-anchor]", inputs: ["block"] }, { kind: "component", type: i1$2.DbxInjectionComponent, selector: "dbx-injection, [dbxInjection], [dbx-injection]", inputs: ["config", "template"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
6840
6983
|
}
|
|
6841
|
-
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type:
|
|
6984
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxValueListGridViewContentComponent, decorators: [{
|
|
6842
6985
|
type: Component,
|
|
6843
6986
|
args: [{
|
|
6844
6987
|
selector: 'dbx-list-grid-view-content',
|
|
@@ -6851,7 +6994,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6851
6994
|
`,
|
|
6852
6995
|
host: {
|
|
6853
6996
|
class: 'dbx-list-grid-view'
|
|
6854
|
-
}
|
|
6997
|
+
},
|
|
6998
|
+
changeDetection: ChangeDetectionStrategy.OnPush
|
|
6855
6999
|
}]
|
|
6856
7000
|
}], ctorParameters: function () { return [{ type: DbxListView }, { type: DbxValueListGridSizeDirective, decorators: [{
|
|
6857
7001
|
type: Optional
|
|
@@ -6897,33 +7041,182 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6897
7041
|
args: ['dbxListItemIsSelectedModifier']
|
|
6898
7042
|
}] } });
|
|
6899
7043
|
|
|
7044
|
+
const DBX_LIST_TITLE_GROUP_DATA = new InjectionToken('DbxListTitleGroupData');
|
|
7045
|
+
/**
|
|
7046
|
+
* Delegate used to for grouping DbxValueListItemConfig<T, I> values.
|
|
7047
|
+
*/
|
|
7048
|
+
class DbxListTitleGroupDirective {
|
|
7049
|
+
constructor() {
|
|
7050
|
+
this._delegate = new BehaviorSubject(undefined);
|
|
7051
|
+
this.groupValues = (items) => {
|
|
7052
|
+
return this._delegate.pipe(map((delegate) => {
|
|
7053
|
+
let groups;
|
|
7054
|
+
if (delegate != null) {
|
|
7055
|
+
const groupsValuesMap = makeValuesGroupMap(items, delegate.groupValueForItem);
|
|
7056
|
+
const { sortGroupsByData, cssClasses: inputCssClasses } = delegate;
|
|
7057
|
+
const cssClassesForAllGroups = inputCssClasses ?? [];
|
|
7058
|
+
const componentClass = delegate.headerComponentClass ?? DbxListTitleGroupHeaderComponent;
|
|
7059
|
+
groups = Array.from(groupsValuesMap.entries()).map(([value, items]) => {
|
|
7060
|
+
const data = delegate.dataForGroupValue(value, items);
|
|
7061
|
+
data.value = value;
|
|
7062
|
+
const cssClasses = data.cssClasses ? [...cssClassesForAllGroups, ...data.cssClasses] : cssClassesForAllGroups;
|
|
7063
|
+
const group = {
|
|
7064
|
+
id: String(value),
|
|
7065
|
+
data,
|
|
7066
|
+
items,
|
|
7067
|
+
headerConfig: {
|
|
7068
|
+
componentClass,
|
|
7069
|
+
providers: [
|
|
7070
|
+
{
|
|
7071
|
+
provide: DBX_LIST_TITLE_GROUP_DATA,
|
|
7072
|
+
useValue: data
|
|
7073
|
+
}
|
|
7074
|
+
]
|
|
7075
|
+
},
|
|
7076
|
+
cssClasses
|
|
7077
|
+
};
|
|
7078
|
+
return group;
|
|
7079
|
+
});
|
|
7080
|
+
if (sortGroupsByData) {
|
|
7081
|
+
groups.sort(compareWithMappedValuesFunction((x) => x.data, sortGroupsByData));
|
|
7082
|
+
}
|
|
7083
|
+
}
|
|
7084
|
+
else {
|
|
7085
|
+
groups = [
|
|
7086
|
+
{
|
|
7087
|
+
id: '_',
|
|
7088
|
+
data: { value: null, title: '' },
|
|
7089
|
+
items
|
|
7090
|
+
}
|
|
7091
|
+
];
|
|
7092
|
+
}
|
|
7093
|
+
return groups;
|
|
7094
|
+
}));
|
|
7095
|
+
};
|
|
7096
|
+
}
|
|
7097
|
+
ngOnDestroy() {
|
|
7098
|
+
this._delegate.complete();
|
|
7099
|
+
}
|
|
7100
|
+
get delegate() {
|
|
7101
|
+
return this._delegate.value;
|
|
7102
|
+
}
|
|
7103
|
+
set delegate(delegate) {
|
|
7104
|
+
this._delegate.next(delegate);
|
|
7105
|
+
}
|
|
7106
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxListTitleGroupDirective, deps: [], target: i0.ɵɵFactoryTarget.Directive }); }
|
|
7107
|
+
static { this.ɵdir = i0.ɵɵngDeclareDirective({ minVersion: "14.0.0", version: "16.2.12", type: DbxListTitleGroupDirective, selector: "[dbxListTitleGroup]", inputs: { delegate: ["dbxListTitleGroup", "delegate"] }, providers: [provideDbxValueListViewGroupDelegate(DbxListTitleGroupDirective)], ngImport: i0 }); }
|
|
7108
|
+
}
|
|
7109
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxListTitleGroupDirective, decorators: [{
|
|
7110
|
+
type: Directive,
|
|
7111
|
+
args: [{
|
|
7112
|
+
selector: '[dbxListTitleGroup]',
|
|
7113
|
+
providers: [provideDbxValueListViewGroupDelegate(DbxListTitleGroupDirective)]
|
|
7114
|
+
}]
|
|
7115
|
+
}], propDecorators: { delegate: [{
|
|
7116
|
+
type: Input,
|
|
7117
|
+
args: ['dbxListTitleGroup']
|
|
7118
|
+
}] } });
|
|
7119
|
+
/**
|
|
7120
|
+
*
|
|
7121
|
+
*/
|
|
7122
|
+
class DbxListTitleGroupHeaderComponent {
|
|
7123
|
+
get icon() {
|
|
7124
|
+
return this.data.icon;
|
|
7125
|
+
}
|
|
7126
|
+
get title() {
|
|
7127
|
+
return this.data.title;
|
|
7128
|
+
}
|
|
7129
|
+
get hint() {
|
|
7130
|
+
return this.data.hint;
|
|
7131
|
+
}
|
|
7132
|
+
constructor(data) {
|
|
7133
|
+
this.data = data;
|
|
7134
|
+
}
|
|
7135
|
+
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxListTitleGroupHeaderComponent, deps: [{ token: DBX_LIST_TITLE_GROUP_DATA }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
7136
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxListTitleGroupHeaderComponent, selector: "dbx-list-title-group-header", host: { classAttribute: "dbx-list-title-group-header" }, ngImport: i0, template: `
|
|
7137
|
+
<div class="dbx-list-item-padded dbx-list-two-line-item">
|
|
7138
|
+
<mat-icon class="item-icon" *ngIf="icon">{{ icon }}</mat-icon>
|
|
7139
|
+
<div class="item-left">
|
|
7140
|
+
<div class="mat-subtitle-2">{{ title }}</div>
|
|
7141
|
+
<div *ngIf="hint" class="item-details">{{ hint }}</div>
|
|
7142
|
+
</div>
|
|
7143
|
+
</div>
|
|
7144
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "component", type: i2$1.MatIcon, selector: "mat-icon", inputs: ["color", "inline", "svgIcon", "fontSet", "fontIcon"], exportAs: ["matIcon"] }], changeDetection: i0.ChangeDetectionStrategy.OnPush }); }
|
|
7145
|
+
}
|
|
7146
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxListTitleGroupHeaderComponent, decorators: [{
|
|
7147
|
+
type: Component,
|
|
7148
|
+
args: [{
|
|
7149
|
+
selector: 'dbx-list-title-group-header',
|
|
7150
|
+
template: `
|
|
7151
|
+
<div class="dbx-list-item-padded dbx-list-two-line-item">
|
|
7152
|
+
<mat-icon class="item-icon" *ngIf="icon">{{ icon }}</mat-icon>
|
|
7153
|
+
<div class="item-left">
|
|
7154
|
+
<div class="mat-subtitle-2">{{ title }}</div>
|
|
7155
|
+
<div *ngIf="hint" class="item-details">{{ hint }}</div>
|
|
7156
|
+
</div>
|
|
7157
|
+
</div>
|
|
7158
|
+
`,
|
|
7159
|
+
changeDetection: ChangeDetectionStrategy.OnPush,
|
|
7160
|
+
host: {
|
|
7161
|
+
class: 'dbx-list-title-group-header'
|
|
7162
|
+
}
|
|
7163
|
+
}]
|
|
7164
|
+
}], ctorParameters: function () { return [{ type: undefined, decorators: [{
|
|
7165
|
+
type: Inject,
|
|
7166
|
+
args: [DBX_LIST_TITLE_GROUP_DATA]
|
|
7167
|
+
}] }]; } });
|
|
7168
|
+
|
|
7169
|
+
const privateDeclarations = [DbxListInternalContentDirective];
|
|
7170
|
+
const declarations$3 = [
|
|
7171
|
+
// directives
|
|
7172
|
+
DbxListComponent,
|
|
7173
|
+
DbxListEmptyContentComponent,
|
|
7174
|
+
DbxValueListViewComponent,
|
|
7175
|
+
DbxValueListViewContentComponent,
|
|
7176
|
+
DbxValueListViewContentGroupComponent,
|
|
7177
|
+
DbxValueListGridSizeDirective,
|
|
7178
|
+
DbxValueListGridViewComponent,
|
|
7179
|
+
DbxValueListGridViewContentComponent,
|
|
7180
|
+
DbxListTitleGroupDirective,
|
|
7181
|
+
DbxListTitleGroupHeaderComponent,
|
|
7182
|
+
DbxSelectionValueListViewComponent,
|
|
7183
|
+
DbxSelectionValueListViewContentComponent,
|
|
7184
|
+
DbxValueListItemModifierDirective,
|
|
7185
|
+
DbxListItemDisableRippleModifierDirective,
|
|
7186
|
+
DbxListItemIsSelectedModifierDirective
|
|
7187
|
+
];
|
|
6900
7188
|
class DbxListLayoutModule {
|
|
6901
7189
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxListLayoutModule, deps: [], target: i0.ɵɵFactoryTarget.NgModule }); }
|
|
6902
7190
|
static { this.ɵmod = i0.ɵɵngDeclareNgModule({ minVersion: "14.0.0", version: "16.2.12", ngImport: i0, type: DbxListLayoutModule, declarations: [
|
|
6903
|
-
//
|
|
7191
|
+
// directives
|
|
6904
7192
|
DbxListComponent,
|
|
6905
|
-
DbxListInternalContentDirective,
|
|
6906
7193
|
DbxListEmptyContentComponent,
|
|
6907
7194
|
DbxValueListViewComponent,
|
|
6908
|
-
|
|
7195
|
+
DbxValueListViewContentComponent,
|
|
7196
|
+
DbxValueListViewContentGroupComponent,
|
|
6909
7197
|
DbxValueListGridSizeDirective,
|
|
6910
7198
|
DbxValueListGridViewComponent,
|
|
6911
|
-
|
|
7199
|
+
DbxValueListGridViewContentComponent,
|
|
7200
|
+
DbxListTitleGroupDirective,
|
|
7201
|
+
DbxListTitleGroupHeaderComponent,
|
|
6912
7202
|
DbxSelectionValueListViewComponent,
|
|
6913
|
-
|
|
7203
|
+
DbxSelectionValueListViewContentComponent,
|
|
6914
7204
|
DbxValueListItemModifierDirective,
|
|
6915
7205
|
DbxListItemDisableRippleModifierDirective,
|
|
6916
|
-
DbxListItemIsSelectedModifierDirective], imports: [CommonModule, MatRippleModule, FlexLayoutModule, DbxLoadingModule, DbxRouterAnchorModule, InfiniteScrollModule, DbxInjectionComponentModule, MatListModule, MatIconModule], exports: [
|
|
6917
|
-
//
|
|
7206
|
+
DbxListItemIsSelectedModifierDirective, DbxListInternalContentDirective], imports: [CommonModule, MatRippleModule, FlexLayoutModule, DbxLoadingModule, DbxRouterAnchorModule, InfiniteScrollModule, DbxInjectionComponentModule, MatListModule, MatIconModule], exports: [
|
|
7207
|
+
// directives
|
|
6918
7208
|
DbxListComponent,
|
|
6919
7209
|
DbxListEmptyContentComponent,
|
|
6920
7210
|
DbxValueListViewComponent,
|
|
6921
|
-
|
|
7211
|
+
DbxValueListViewContentComponent,
|
|
7212
|
+
DbxValueListViewContentGroupComponent,
|
|
6922
7213
|
DbxValueListGridSizeDirective,
|
|
6923
7214
|
DbxValueListGridViewComponent,
|
|
6924
|
-
|
|
7215
|
+
DbxValueListGridViewContentComponent,
|
|
7216
|
+
DbxListTitleGroupDirective,
|
|
7217
|
+
DbxListTitleGroupHeaderComponent,
|
|
6925
7218
|
DbxSelectionValueListViewComponent,
|
|
6926
|
-
|
|
7219
|
+
DbxSelectionValueListViewContentComponent,
|
|
6927
7220
|
DbxValueListItemModifierDirective,
|
|
6928
7221
|
DbxListItemDisableRippleModifierDirective,
|
|
6929
7222
|
DbxListItemIsSelectedModifierDirective] }); }
|
|
@@ -6933,37 +7226,8 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
6933
7226
|
type: NgModule,
|
|
6934
7227
|
args: [{
|
|
6935
7228
|
imports: [CommonModule, MatRippleModule, FlexLayoutModule, DbxLoadingModule, DbxRouterAnchorModule, InfiniteScrollModule, DbxInjectionComponentModule, MatListModule, MatIconModule],
|
|
6936
|
-
declarations: [
|
|
6937
|
-
|
|
6938
|
-
DbxListComponent,
|
|
6939
|
-
DbxListInternalContentDirective,
|
|
6940
|
-
DbxListEmptyContentComponent,
|
|
6941
|
-
DbxValueListViewComponent,
|
|
6942
|
-
DbxValueListItemViewComponent,
|
|
6943
|
-
DbxValueListGridSizeDirective,
|
|
6944
|
-
DbxValueListGridViewComponent,
|
|
6945
|
-
DbxValueListGridItemViewComponent,
|
|
6946
|
-
DbxSelectionValueListViewComponent,
|
|
6947
|
-
DbxSelectionValueListItemViewComponent,
|
|
6948
|
-
DbxValueListItemModifierDirective,
|
|
6949
|
-
DbxListItemDisableRippleModifierDirective,
|
|
6950
|
-
DbxListItemIsSelectedModifierDirective
|
|
6951
|
-
],
|
|
6952
|
-
exports: [
|
|
6953
|
-
//
|
|
6954
|
-
DbxListComponent,
|
|
6955
|
-
DbxListEmptyContentComponent,
|
|
6956
|
-
DbxValueListViewComponent,
|
|
6957
|
-
DbxValueListItemViewComponent,
|
|
6958
|
-
DbxValueListGridSizeDirective,
|
|
6959
|
-
DbxValueListGridViewComponent,
|
|
6960
|
-
DbxValueListGridItemViewComponent,
|
|
6961
|
-
DbxSelectionValueListViewComponent,
|
|
6962
|
-
DbxSelectionValueListItemViewComponent,
|
|
6963
|
-
DbxValueListItemModifierDirective,
|
|
6964
|
-
DbxListItemDisableRippleModifierDirective,
|
|
6965
|
-
DbxListItemIsSelectedModifierDirective
|
|
6966
|
-
]
|
|
7229
|
+
declarations: [...declarations$3, ...privateDeclarations],
|
|
7230
|
+
exports: declarations$3
|
|
6967
7231
|
}]
|
|
6968
7232
|
}] });
|
|
6969
7233
|
|
|
@@ -7797,7 +8061,7 @@ class DbxPopupControlButtonsComponent {
|
|
|
7797
8061
|
</ng-container>
|
|
7798
8062
|
<dbx-button-spacer></dbx-button-spacer>
|
|
7799
8063
|
<dbx-button [flat]="true" icon="close" color="warn" (buttonClick)="closeClicked()"></dbx-button>
|
|
7800
|
-
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "raised", "stroked", "flat", "iconOnly", "color", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
8064
|
+
`, isInline: true, dependencies: [{ kind: "directive", type: i1.NgSwitch, selector: "[ngSwitch]", inputs: ["ngSwitch"] }, { kind: "directive", type: i1.NgSwitchCase, selector: "[ngSwitchCase]", inputs: ["ngSwitchCase"] }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "basic", "raised", "stroked", "flat", "iconOnly", "color", "spinnerColor", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
7801
8065
|
}
|
|
7802
8066
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxPopupControlButtonsComponent, decorators: [{
|
|
7803
8067
|
type: Component,
|
|
@@ -8339,7 +8603,7 @@ class DbxActionUIRouterTransitionSafetyDialogComponent extends AbstractDialogDir
|
|
|
8339
8603
|
<dbx-button-spacer></dbx-button-spacer>
|
|
8340
8604
|
</ng-container>
|
|
8341
8605
|
</dbx-prompt-confirm>
|
|
8342
|
-
`, isInline: true, dependencies: [{ kind: "component", type: DbxPromptConfirmComponent, selector: "dbx-prompt-confirm", inputs: ["config"], outputs: ["confirm", "cancel"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "raised", "stroked", "flat", "iconOnly", "color", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "component", type: DbxReadableErrorComponent, selector: "dbx-error", inputs: ["error"] }, { kind: "directive", type: DbxActionErrorDirective, selector: "[dbxActionError]" }] }); }
|
|
8606
|
+
`, isInline: true, dependencies: [{ kind: "component", type: DbxPromptConfirmComponent, selector: "dbx-prompt-confirm", inputs: ["config"], outputs: ["confirm", "cancel"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "basic", "raised", "stroked", "flat", "iconOnly", "color", "spinnerColor", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "component", type: DbxReadableErrorComponent, selector: "dbx-error", inputs: ["error"] }, { kind: "directive", type: DbxActionErrorDirective, selector: "[dbxActionError]" }] }); }
|
|
8343
8607
|
}
|
|
8344
8608
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxActionUIRouterTransitionSafetyDialogComponent, decorators: [{
|
|
8345
8609
|
type: Component,
|
|
@@ -8903,7 +9167,7 @@ class DbxDownloadTextViewComponent extends AbstractSubscriptionDirective {
|
|
|
8903
9167
|
this._contentLoadingState.complete();
|
|
8904
9168
|
}
|
|
8905
9169
|
static { this.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxDownloadTextViewComponent, deps: [{ token: i1$c.Clipboard }, { token: i1$1.MatSnackBar }, { token: i1$9.DomSanitizer }], target: i0.ɵɵFactoryTarget.Component }); }
|
|
8906
|
-
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxDownloadTextViewComponent, selector: "dbx-download-text-view", inputs: { loadingText: "loadingText", linear: "linear", showTitle: "showTitle", showPreview: "showPreview", content: "content", contentState: "contentState" }, viewQueries: [{ propertyName: "downloadButton", first: true, predicate: ["downloadButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: "<div class=\"dbx-download-text-view\">\n <dbx-loading [context]=\"context\" [linear]=\"linear\" [text]=\"loadingText\">\n <ng-container *ngTemplateOutlet=\"contentView\"></ng-container>\n </dbx-loading>\n</div>\n\n<!-- Template -->\n<ng-template #contentView>\n <div class=\"dbx-download-text-view-content\">\n <div *ngIf=\"showTitle\" class=\"dbx-download-text-view-content-title dbx-mb2 mat-subtitle-2\">{{ fileName$ | async }}</div>\n <div *ngIf=\"showPreview\" class=\"dbx-download-text-preview dbx-json dbx-content-pit dbx-content-pit-scrollable dbx-mb3\">{{ contentData$ | async }}</div>\n <div class=\"dbx-download-text-view-actions\">\n <dbx-button dbxAction dbxActionValue [raised]=\"true\" [dbxActionHandler]=\"handleCopyToClipboard\" icon=\"content_copy\" dbxActionButton text=\"Copy To Clipboard\"></dbx-button>\n <dbx-button-spacer></dbx-button-spacer>\n <a #downloadButton [href]=\"fileUrl$ | async\" [attr.download]=\"fileName$ | async\"><dbx-button icon=\"download\" text=\"Download\" [raised]=\"true\" [working]=\"!(downloadReady$ | async)\" [disabled]=\"!(downloadReady$ | async)\"></dbx-button></a>\n </div>\n </div>\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DbxLoadingComponent, selector: "dbx-loading", inputs: ["show", "text", "mode", "color", "diameter", "linear", "padding", "context", "loading", "error"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "raised", "stroked", "flat", "iconOnly", "color", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "directive", type: i1$2.DbxActionDirective, selector: "dbx-action,[dbxAction],dbx-action-context,[dbxActionContext]", exportAs: ["action", "dbxAction"] }, { kind: "directive", type: i1$2.DbxActionHandlerDirective, selector: "[dbxActionHandler]", inputs: ["dbxActionHandler"] }, { kind: "directive", type: i1$2.DbxActionValueDirective, selector: "[dbxActionValue]", inputs: ["dbxActionValue"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
9170
|
+
static { this.ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "16.2.12", type: DbxDownloadTextViewComponent, selector: "dbx-download-text-view", inputs: { loadingText: "loadingText", linear: "linear", showTitle: "showTitle", showPreview: "showPreview", content: "content", contentState: "contentState" }, viewQueries: [{ propertyName: "downloadButton", first: true, predicate: ["downloadButton"], descendants: true, read: ElementRef }], usesInheritance: true, ngImport: i0, template: "<div class=\"dbx-download-text-view\">\n <dbx-loading [context]=\"context\" [linear]=\"linear\" [text]=\"loadingText\">\n <ng-container *ngTemplateOutlet=\"contentView\"></ng-container>\n </dbx-loading>\n</div>\n\n<!-- Template -->\n<ng-template #contentView>\n <div class=\"dbx-download-text-view-content\">\n <div *ngIf=\"showTitle\" class=\"dbx-download-text-view-content-title dbx-mb2 mat-subtitle-2\">{{ fileName$ | async }}</div>\n <div *ngIf=\"showPreview\" class=\"dbx-download-text-preview dbx-json dbx-content-pit dbx-content-pit-scrollable dbx-mb3\">{{ contentData$ | async }}</div>\n <div class=\"dbx-download-text-view-actions\">\n <dbx-button dbxAction dbxActionValue [raised]=\"true\" [dbxActionHandler]=\"handleCopyToClipboard\" icon=\"content_copy\" dbxActionButton text=\"Copy To Clipboard\"></dbx-button>\n <dbx-button-spacer></dbx-button-spacer>\n <a #downloadButton [href]=\"fileUrl$ | async\" [attr.download]=\"fileName$ | async\"><dbx-button icon=\"download\" text=\"Download\" [raised]=\"true\" [working]=\"!(downloadReady$ | async)\" [disabled]=\"!(downloadReady$ | async)\"></dbx-button></a>\n </div>\n </div>\n</ng-template>\n", dependencies: [{ kind: "directive", type: i1.NgIf, selector: "[ngIf]", inputs: ["ngIf", "ngIfThen", "ngIfElse"] }, { kind: "directive", type: i1.NgTemplateOutlet, selector: "[ngTemplateOutlet]", inputs: ["ngTemplateOutletContext", "ngTemplateOutlet", "ngTemplateOutletInjector"] }, { kind: "component", type: DbxLoadingComponent, selector: "dbx-loading", inputs: ["show", "text", "mode", "color", "diameter", "linear", "padding", "context", "loading", "error"] }, { kind: "directive", type: i1$2.DbxActionButtonDirective, selector: "[dbxActionButton]" }, { kind: "component", type: DbxButtonComponent, selector: "dbx-button", inputs: ["type", "basic", "raised", "stroked", "flat", "iconOnly", "color", "spinnerColor", "customButtonColor", "customTextColor", "customSpinnerColor"] }, { kind: "directive", type: DbxButtonSpacerDirective, selector: "dbx-button-spacer,[dbxButtonSpacer]" }, { kind: "directive", type: i1$2.DbxActionDirective, selector: "dbx-action,[dbxAction],dbx-action-context,[dbxActionContext]", exportAs: ["action", "dbxAction"] }, { kind: "directive", type: i1$2.DbxActionHandlerDirective, selector: "[dbxActionHandler]", inputs: ["dbxActionHandler"] }, { kind: "directive", type: i1$2.DbxActionValueDirective, selector: "[dbxActionValue]", inputs: ["dbxActionValue"] }, { kind: "pipe", type: i1.AsyncPipe, name: "async" }] }); }
|
|
8907
9171
|
}
|
|
8908
9172
|
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImport: i0, type: DbxDownloadTextViewComponent, decorators: [{
|
|
8909
9173
|
type: Component,
|
|
@@ -9259,5 +9523,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "16.2.12", ngImpo
|
|
|
9259
9523
|
* Generated bundle index. Do not edit.
|
|
9260
9524
|
*/
|
|
9261
9525
|
|
|
9262
|
-
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_THEME_COLORS, 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, DbxBodyDirective, 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, DbxDownloadTextModule, DbxDownloadTextViewComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxFormDescriptionComponent, DbxHintComponent, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, 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, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, 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,
|
|
9526
|
+
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_LIST_TITLE_GROUP_DATA, DBX_MAT_PROGRESS_BUTTON_GLOBAL_CONFIG, DBX_ROUTER_VALUE_LIST_ITEM_MODIFIER_KEY, DBX_STYLE_DEFAULT_CONFIG_TOKEN, DBX_THEME_COLORS, DBX_THEME_COLORS_EXTRA, DBX_THEME_COLORS_EXTRA_SECONDARY, DBX_THEME_COLORS_MAIN, 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, DbxBodyDirective, 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, DbxDownloadTextModule, DbxDownloadTextViewComponent, DbxErrorDefaultErrorWidgetComponent, DbxErrorDetailsComponent, DbxErrorPopoverComponent, DbxErrorWidgetService, DbxErrorWidgetViewComponent, DbxFilterInteractionModule, DbxFilterPopoverButtonComponent, DbxFilterPopoverComponent, DbxFilterWrapperComponent, DbxFlagComponent, DbxFlagLayoutModule, DbxFlagPromptComponent, DbxFlexGroupDirective, DbxFlexLayoutModule, DbxFlexSizeDirective, DbxFormDescriptionComponent, DbxHintComponent, DbxIconButtonComponent, DbxIconButtonModule, DbxIconItemComponent, DbxIconSpacerDirective, DbxIfSidenavDisplayModeDirective, DbxInteractionModule, DbxIntroActionSectionComponent, DbxItemLayoutModule, DbxKeypressModule, DbxLabelBlockComponent, DbxLabelComponent, DbxLayoutModule, DbxLinkifyComponent, DbxListComponent, DbxListEmptyContentComponent, DbxListInternalContentDirective, DbxListItemAnchorModifierDirective, DbxListItemDisableRippleModifierDirective, DbxListItemIsSelectedModifierDirective, DbxListLayoutModule, DbxListTitleGroupDirective, DbxListTitleGroupHeaderComponent, 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, DbxPartialPresetFilterListComponent, DbxPartialPresetFilterMenuComponent, DbxPopoverCloseButtonComponent, 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, DbxSelectionValueListViewComponent, DbxSelectionValueListViewContentComponent, DbxSetStyleDirective, DbxSidenavButtonComponent, DbxSidenavComponent, DbxSidenavPageComponent, DbxSidenavPagebarComponent, DbxSpacerDirective, DbxSpinnerButtonComponent, DbxStepComponent, DbxStepLayoutModule, DbxStructureDirective, DbxStructureModule, DbxStyleBodyDirective, DbxStyleDirective, DbxStyleLayoutModule, DbxStyleService, DbxSubSectionComponent, DbxSuccessComponent, DbxTextChipsComponent, DbxTextModule, DbxTwoBlocksComponent, DbxTwoColumnBackDirective, DbxTwoColumnColumnHeadComponent, DbxTwoColumnComponent, DbxTwoColumnContextDirective, DbxTwoColumnFullLeftDirective, DbxTwoColumnLayoutModule, DbxTwoColumnRightComponent, DbxTwoColumnSrefDirective, DbxTwoColumnSrefShowRightDirective, DbxUIRouterSegueAnchorComponent, DbxUnitedStatesAddressComponent, DbxValueListGridSizeDirective, DbxValueListGridViewComponent, DbxValueListGridViewContentComponent, DbxValueListItemModifier, DbxValueListItemModifierDirective, DbxValueListView, DbxValueListViewComponent, DbxValueListViewContentComponent, DbxValueListViewContentGroupComponent, DbxValueListViewGroupDelegate, DbxWarnComponent, DbxWebAngularRouterModule, DbxWebModule, 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, dbxPresetFilterMenuButtonIconObservable, dbxPresetFilterMenuButtonTextObservable, dbxValueListItemDecisionFunction, defaultDbxValueListViewGroupDelegate, defaultDbxValueListViewGroupValuesFunction, disableRightClickInCdkBackdrop, index as fromDbxModel, listItemModifier, makeDbxActionSnackbarDisplayConfigGeneratorFunction, mapCompactModeObs, mapValuesToValuesListItemConfigObs, index$1 as onDbxModel, provideDbxListView, provideDbxListViewWrapper, provideDbxPromptConfirm, provideDbxValueListView, provideDbxValueListViewGroupDelegate, provideDbxValueListViewModifier, provideTwoColumnsContext, sanitizeDbxDialogContentConfig, screenMediaWidthTypeIsActive, trackByModelKeyRef, trackByUniqueIdentifier };
|
|
9263
9527
|
//# sourceMappingURL=dereekb-dbx-web.mjs.map
|