@datarailsshared/datarailsshared 1.6.359 → 1.6.363
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/datarailsshared-datarailsshared-1.6.363.tgz +0 -0
- package/esm2022/lib/dr-code-editor/dr-code-editor.component.mjs +2 -2
- package/esm2022/lib/dr-dialog/dialog.module.mjs +2 -1
- package/esm2022/lib/dr-dialog/services/dialog.service.mjs +8 -1
- package/esm2022/lib/dr-inputs/button/button.component.mjs +7 -4
- package/esm2022/lib/dr-modal/components/dr-confirm-modal/dr-confirm-modal.component.mjs +210 -0
- package/esm2022/lib/dr-modal/components/dr-modal/dr-modal.component.mjs +73 -0
- package/esm2022/lib/dr-modal/components/dr-modal-container/dr-modal-container.component.mjs +72 -0
- package/esm2022/lib/dr-modal/directives/dr-modal-close.directive.mjs +39 -0
- package/esm2022/lib/dr-modal/dr-modal-config.mjs +3 -0
- package/esm2022/lib/dr-modal/dr-modal-config.provider.mjs +14 -0
- package/esm2022/lib/dr-modal/dr-modal-form.types.mjs +2 -0
- package/esm2022/lib/dr-modal/dr-modal-form.utils.mjs +18 -0
- package/esm2022/lib/dr-modal/dr-modal-ref.mjs +42 -0
- package/esm2022/lib/dr-modal/dr-modal.mjs +9 -0
- package/esm2022/lib/dr-modal/dr-modal.module.mjs +34 -0
- package/esm2022/lib/dr-modal/dr-modal.service.mjs +89 -0
- package/esm2022/lib/dr-modal/dr-modal.slots.mjs +91 -0
- package/esm2022/lib/dr-modal/dr-modal.types.mjs +2 -0
- package/esm2022/lib/dr-modal/public-api.mjs +15 -0
- package/esm2022/lib/utils/async-utils.mjs +32 -0
- package/esm2022/local-api.mjs +3 -1
- package/fesm2022/datarailsshared-datarailsshared.mjs +843 -164
- package/fesm2022/datarailsshared-datarailsshared.mjs.map +1 -1
- package/lib/dr-dialog/dialog.module.d.ts +1 -0
- package/lib/dr-dialog/services/dialog.service.d.ts +7 -0
- package/lib/dr-inputs/button/button.component.d.ts +2 -1
- package/lib/dr-modal/components/dr-confirm-modal/dr-confirm-modal.component.d.ts +19 -0
- package/lib/dr-modal/components/dr-modal/dr-modal.component.d.ts +14 -0
- package/lib/dr-modal/components/dr-modal-container/dr-modal-container.component.d.ts +23 -0
- package/lib/dr-modal/directives/dr-modal-close.directive.d.ts +17 -0
- package/lib/dr-modal/dr-modal-config.d.ts +17 -0
- package/lib/dr-modal/dr-modal-config.provider.d.ts +3 -0
- package/lib/dr-modal/dr-modal-form.types.d.ts +42 -0
- package/lib/dr-modal/dr-modal-form.utils.d.ts +9 -0
- package/lib/dr-modal/dr-modal-ref.d.ts +19 -0
- package/lib/dr-modal/dr-modal.d.ts +5 -0
- package/lib/dr-modal/dr-modal.module.d.ts +9 -0
- package/lib/dr-modal/dr-modal.service.d.ts +20 -0
- package/lib/dr-modal/dr-modal.slots.d.ts +25 -0
- package/lib/dr-modal/dr-modal.types.d.ts +63 -0
- package/lib/dr-modal/public-api.d.ts +14 -0
- package/lib/utils/async-utils.d.ts +18 -0
- package/local-api.d.ts +2 -0
- package/package.json +1 -1
- package/datarailsshared-datarailsshared-1.6.359.tgz +0 -0
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import * as i0 from '@angular/core';
|
|
2
|
-
import { Component, Input, HostBinding, inject, ElementRef, booleanAttribute, Directive, ChangeDetectionStrategy, Injector, EnvironmentInjector, ViewContainerRef, ViewChild, TemplateRef, HostListener, NgModule, EventEmitter, Output, forwardRef, ContentChild, PLATFORM_ID, Inject, ContentChildren, ChangeDetectorRef, ViewEncapsulation, Injectable, DestroyRef, signal, Pipe, ComponentFactoryResolver, Optional, SkipSelf, Host, ViewChildren, InjectionToken, Renderer2, numberAttribute } from '@angular/core';
|
|
2
|
+
import { Component, Input, HostBinding, inject, ElementRef, booleanAttribute, Directive, ChangeDetectionStrategy, Injector, EnvironmentInjector, ViewContainerRef, ViewChild, TemplateRef, HostListener, NgModule, EventEmitter, Output, forwardRef, ContentChild, PLATFORM_ID, Inject, ContentChildren, ChangeDetectorRef, ViewEncapsulation, Injectable, DestroyRef, signal, Pipe, ComponentFactoryResolver, Optional, SkipSelf, Host, ViewChildren, ANIMATION_MODULE_TYPE, computed, InjectionToken, Renderer2, numberAttribute } from '@angular/core';
|
|
3
3
|
import * as _ from 'lodash';
|
|
4
4
|
import { reduce, uniqueId as uniqueId$1, isNil, isObject, isEqual, cloneDeep, indexOf, find, map as map$2, isNumber, merge as merge$1, forEach, some, orderBy, filter as filter$1, includes, pull, concat, isString, isBoolean, keys, get, has, isArray } from 'lodash';
|
|
5
5
|
import * as i1 from '@angular/common';
|
|
@@ -8,11 +8,11 @@ import * as i2 from '@angular/forms';
|
|
|
8
8
|
import { NG_VALUE_ACCESSOR, FormsModule, FormBuilder, ReactiveFormsModule, FormGroup, FormControl } from '@angular/forms';
|
|
9
9
|
import * as i1$1 from '@angular/cdk/overlay';
|
|
10
10
|
import { OverlayConfig, CdkOverlayOrigin, CdkConnectedOverlay } from '@angular/cdk/overlay';
|
|
11
|
-
import * as
|
|
12
|
-
import { ComponentPortal,
|
|
11
|
+
import * as i1$6 from '@angular/cdk/portal';
|
|
12
|
+
import { ComponentPortal, PortalModule, CdkPortalOutlet, TemplatePortal } from '@angular/cdk/portal';
|
|
13
13
|
import { transition, style, animate, trigger, state } from '@angular/animations';
|
|
14
|
-
import { BehaviorSubject, noop as noop$3, Subject, from, merge, fromEvent, Observable, distinctUntilChanged as distinctUntilChanged$1, startWith as startWith$1, delay, combineLatest, map as map$1, takeUntil as takeUntil$1, filter as filter$2, switchMap as switchMap$1, observeOn, asyncScheduler, withLatestFrom, first as first$1, interval, throwError, tap as tap$1, finalize as finalize$1, EMPTY, defer,
|
|
15
|
-
import { skip, debounceTime, filter, distinctUntilChanged, startWith, switchMap, takeUntil, map, tap, shareReplay, first, catchError, finalize, take } from 'rxjs/operators';
|
|
14
|
+
import { BehaviorSubject, noop as noop$3, Subject, from, merge, fromEvent, Observable, distinctUntilChanged as distinctUntilChanged$1, startWith as startWith$1, delay, combineLatest, map as map$1, takeUntil as takeUntil$1, filter as filter$2, switchMap as switchMap$1, observeOn, asyncScheduler, withLatestFrom, first as first$1, interval, throwError, firstValueFrom, take, tap as tap$1, finalize as finalize$1, EMPTY, defer, throttleTime } from 'rxjs';
|
|
15
|
+
import { skip, debounceTime, filter, distinctUntilChanged, startWith, switchMap, takeUntil, map, tap, shareReplay, first, catchError, finalize, take as take$1 } from 'rxjs/operators';
|
|
16
16
|
import { provideNgxMask, NgxMaskDirective } from 'ngx-mask';
|
|
17
17
|
import * as i3 from '@ng-select/ng-select';
|
|
18
18
|
import { NgSelectComponent, NgSelectModule } from '@ng-select/ng-select';
|
|
@@ -36,13 +36,14 @@ import 'codemirror/mode/javascript/javascript';
|
|
|
36
36
|
import 'codemirror/addon/edit/matchbrackets';
|
|
37
37
|
import 'codemirror/addon/hint/show-hint';
|
|
38
38
|
import '@codemirror/autocomplete';
|
|
39
|
-
import * as i1$6 from '@angular/cdk/a11y';
|
|
40
|
-
import { CdkDialogContainer, DialogModule, Dialog, DialogConfig } from '@angular/cdk/dialog';
|
|
41
39
|
import { ESCAPE, hasModifierKey } from '@angular/cdk/keycodes';
|
|
40
|
+
import * as i1$7 from '@angular/cdk/dialog';
|
|
41
|
+
import { CdkDialogContainer, DialogModule, Dialog, DialogConfig } from '@angular/cdk/dialog';
|
|
42
|
+
import * as i1$8 from '@angular/cdk/a11y';
|
|
42
43
|
import { coerceCssPixelValue } from '@angular/cdk/coercion';
|
|
43
|
-
import * as i1$
|
|
44
|
+
import * as i1$a from 'ag-grid-angular';
|
|
44
45
|
import { AgGridModule } from 'ag-grid-angular';
|
|
45
|
-
import * as i1$
|
|
46
|
+
import * as i1$9 from '@angular/router';
|
|
46
47
|
import { Router, NavigationEnd } from '@angular/router';
|
|
47
48
|
|
|
48
49
|
// instead of getting this from the server each time
|
|
@@ -89,7 +90,7 @@ function DrButtonComponent_i_4_Template(rf, ctx) { if (rf & 1) {
|
|
|
89
90
|
i0.ɵɵclassMap(ctx_r2.iconAfter);
|
|
90
91
|
i0.ɵɵstyleProp("font-size", ctx_r2.iconAfterSize)("color", ctx_r2.iconAfterColor || "inherit");
|
|
91
92
|
} }
|
|
92
|
-
const _c0$
|
|
93
|
+
const _c0$15 = ["*"];
|
|
93
94
|
class DrButtonComponent {
|
|
94
95
|
constructor() {
|
|
95
96
|
this.theme = 'primary';
|
|
@@ -98,12 +99,13 @@ class DrButtonComponent {
|
|
|
98
99
|
this.disabled = false;
|
|
99
100
|
this.isLoading = false;
|
|
100
101
|
this.isActive = false;
|
|
102
|
+
this.type = 'submit'; // default HTML button type
|
|
101
103
|
}
|
|
102
104
|
/** @nocollapse */ static { this.ɵfac = function DrButtonComponent_Factory(t) { return new (t || DrButtonComponent)(); }; }
|
|
103
105
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrButtonComponent, selectors: [["dr-button"]], hostVars: 12, hostBindings: function DrButtonComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
104
106
|
i0.ɵɵclassMap(ctx.theme);
|
|
105
107
|
i0.ɵɵclassProp("with-icon", ctx.icon)("with-icon-after", ctx.iconAfter)("disabled", ctx.disabled)("loading", ctx.isLoading)("active", ctx.isActive);
|
|
106
|
-
} }, inputs: { theme: "theme", icon: "icon", iconColor: "iconColor", iconSize: "iconSize", iconAfter: "iconAfter", iconAfterColor: "iconAfterColor", iconAfterSize: "iconAfterSize", disabled: "disabled", isLoading: "isLoading", isActive: "isActive" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
108
|
+
} }, inputs: { theme: "theme", icon: "icon", iconColor: "iconColor", iconSize: "iconSize", iconAfter: "iconAfter", iconAfterColor: "iconAfterColor", iconAfterSize: "iconAfterSize", disabled: "disabled", isLoading: "isLoading", isActive: "isActive", type: "type" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$15, decls: 5, vars: 5, consts: [[3, "disabled", "type"], ["class", "dr-button__icon", 3, "class", "font-size", "color", 4, "ngIf"], ["class", "dr-button__spinner", 4, "ngIf"], ["class", "dr-button__icon dr-button__icon--after", 3, "class", "font-size", "color", 4, "ngIf"], [1, "dr-button__icon"], [1, "dr-button__spinner"], [1, "dr-icon-load"], [1, "dr-button__icon", "dr-button__icon--after"]], template: function DrButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
107
109
|
i0.ɵɵprojectionDef();
|
|
108
110
|
i0.ɵɵelementStart(0, "button", 0);
|
|
109
111
|
i0.ɵɵtemplate(1, DrButtonComponent_i_1_Template, 1, 6, "i", 1);
|
|
@@ -112,7 +114,7 @@ class DrButtonComponent {
|
|
|
112
114
|
i0.ɵɵtemplate(4, DrButtonComponent_i_4_Template, 1, 6, "i", 3);
|
|
113
115
|
i0.ɵɵelementEnd();
|
|
114
116
|
} if (rf & 2) {
|
|
115
|
-
i0.ɵɵproperty("disabled", ctx.disabled);
|
|
117
|
+
i0.ɵɵproperty("disabled", ctx.disabled)("type", ctx.type);
|
|
116
118
|
i0.ɵɵadvance(1);
|
|
117
119
|
i0.ɵɵproperty("ngIf", ctx.icon);
|
|
118
120
|
i0.ɵɵadvance(2);
|
|
@@ -123,7 +125,7 @@ class DrButtonComponent {
|
|
|
123
125
|
}
|
|
124
126
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrButtonComponent, [{
|
|
125
127
|
type: Component,
|
|
126
|
-
args: [{ selector: 'dr-button', standalone: true, imports: [CommonModule], template: "<button [disabled]=\"disabled\">\n <i *ngIf=\"icon\" class=\"dr-button__icon\" [class]=\"icon\" [style.font-size]=\"iconSize\" [style.color]=\"iconColor || 'inherit'\">\n </i>\n <ng-content></ng-content>\n <div *ngIf=\"isLoading\" class=\"dr-button__spinner\">\n <i [style.font-size]=\"iconSize\" class=\"dr-icon-load\"></i>\n </div>\n <i\n *ngIf=\"iconAfter\"\n class=\"dr-button__icon dr-button__icon--after\"\n [class]=\"iconAfter\"\n [style.font-size]=\"iconAfterSize\"\n [style.color]=\"iconAfterColor || 'inherit'\">\n </i>\n</button>\n", styles: [":host{display:inline-block}:host.disabled,:host.loading{pointer-events:none}:host button{font-size:14px;line-height:24px;font-weight:400;position:relative;display:flex;align-items:center;flex-wrap:nowrap;cursor:pointer;border-radius:16px;padding:4px 16px;height:32px;border:1px solid}:host button .dr-button__spinner{display:flex;align-items:center;justify-content:center;position:absolute;inset:0;background:inherit;border-radius:inherit}:host button .dr-button__spinner i{animation-name:rotate;animation-iteration-count:infinite;animation-duration:1s}:host.with-icon button{padding-left:8px}:host.with-icon button i:first-child{margin-right:4px}:host.with-icon-after button{padding-right:8px}:host.with-icon-after button i:last-child{margin-left:4px}:host.split-primary-first button,:host.split-secondary-first button{border-bottom-right-radius:0;border-top-right-radius:0;padding-right:8px}:host.help button{padding:4px 16px 4px 8px;color:#333;height:28px;border:none;min-width:84px}:host.help button i{min-width:4px}:host.split-primary-last button,:host.split-secondary-last button{border-bottom-left-radius:0;border-top-left-radius:0;padding-right:8px;padding-left:4px;border-left:none}:host.split-primary-last button i,:host.split-secondary-last button i{margin:0!important}:host.primary button,:host.split-primary-first button,:host.split-primary-last button{color:#fff;background:#4646ce;border-color:#4646ce}:host.primary button:hover,:host.split-primary-first button:hover,:host.split-primary-last button:hover{background:linear-gradient(96.89deg,#25258c,#4646ce);border-color:linear-gradient(96.89deg,#25258c 0%,#4646ce 100%)}:host.primary.active button,:host.primary button:active,:host.split-primary-first.active button,:host.split-primary-first button:active,:host.split-primary-last.active button,:host.split-primary-last button:active{background:#25258c;border-color:#25258c}:host.primary.disabled button,:host.split-primary-first.disabled button,:host.split-primary-last.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.split-primary-first button{border-right-color:#dfe0e3}:host.split-primary-first.disabled button{border-right-color:#aeabac}:host.secondary button,:host.split-secondary-first button,:host.split-secondary-last button{color:#4646ce;background:#fff;border-color:#4646ce}:host.secondary button:hover,:host.split-secondary-first button:hover,:host.split-secondary-last button:hover{background:#f5f5f5;box-shadow:0 4px 14px #0000001a}:host.secondary.active button,:host.secondary button:active,:host.split-secondary-first.active button,:host.split-secondary-first button:active,:host.split-secondary-last.active button,:host.split-secondary-last button:active{background:#eaeaff;box-shadow:none}:host.secondary.disabled button,:host.split-secondary-first.disabled button,:host.split-secondary-last.disabled button{color:#aeabac;border-color:#aeabac}:host.secondary-white button{color:#fff;background:transparent;border-color:#fff}:host.secondary-white button:hover{background:#ffffff1a;box-shadow:0 4px 14px #0000001a}:host.secondary-white.active button,:host.secondary-white button:active{background:transparent;box-shadow:none}:host.secondary-white.disabled button{color:#aeabac;border-color:#aeabac}:host.split-secondary-first button{border-right-color:#4646ce}:host.split-secondary-first.disabled button{border-right-color:#aeabac}:host.icon button,:host.icon-primary button,:host.icon-secondary button{width:28px;height:28px;padding:0;justify-content:center}:host.icon button i,:host.icon-primary button i,:host.icon-secondary button i{margin:0!important}:host.icon button{background:transparent;border-color:transparent;color:#6d6e6f}:host.icon button:hover{color:#333;background:#dfe0e3;border-color:#dfe0e3}:host.icon.active button,:host.icon button:active{color:#4646ce;background:#eaeaff;border-color:#eaeaff}:host.icon.disabled button{color:#aeabac;background:transparent;border-color:transparent}:host.icon-primary button{color:#fff;background:#4646ce;border-color:#4646ce}:host.icon-primary button:hover{color:#fff;background:linear-gradient(96.89deg,#25258c,#4646ce);border-color:linear-gradient(96.89deg,#25258c 0%,#4646ce 100%)}:host.icon-primary.active button,:host.icon-primary button:active{color:#fff;background:#25258c;border-color:#25258c}:host.icon-primary.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.icon-secondary button{color:#4646ce;background:#fff;border-color:#4646ce}:host.icon-secondary button:hover{color:#4646ce;background:#f5f5f5;border-color:#4646ce}:host.icon-secondary.active button,:host.icon-secondary button:active{color:#4646ce;background:#eaeaff;border-color:#4646ce}:host.icon-secondary.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.ghost button{border-radius:4px;padding:4px;background:transparent;border-color:transparent;color:#6d6e6f}:host.ghost button .dr-button__spinner{color:#4646ce;background:#fff}:host.ghost button:hover{color:#333;background:#f5f5f5;border-color:#f5f5f5}:host.ghost.active button,:host.ghost button:active{color:#4646ce;background:#eaeaff;border-color:#eaeaff}:host.ghost.disabled button{color:#aeabac;background:transparent;border-color:transparent}:host.highlight button{border:none;background:none;color:#4646ce;padding:0 4px;text-decoration:none}:host.highlight button:hover,:host.highlight.active button,:host.highlight button:active{text-decoration:underline}:host.highlight.disabled button{color:#aeabac}:host.dropdown button,:host.selection button{font-size:12px;line-height:16px;font-weight:400;border:1px solid #dfe0e3;border-radius:6px;padding:6px 8px;color:#6d6e6f;background-color:#fff}:host.dropdown button:hover,:host.selection button:hover{background-color:#f5f5f5;border-color:#4e566c}:host.dropdown.active button,:host.selection.active button{color:#4646ce}:host.dropdown.active button i:last-child,:host.selection.active button i:last-child{color:#333}:host.dropdown button:active,:host.selection button:active{border-color:#4646ce}:host.dropdown.disabled button,:host.selection.disabled button{background-color:#f0f1f4;color:#aeabac}:host.dropdown.disabled button i:last-child,:host.selection.disabled button i:last-child{color:#aeabac}:host.danger button{color:#fff;background:#bf1d30;border-color:#bf1d30}:host.danger button:hover{background:#981440;border-color:#981440}:host.danger.active button,:host.danger button:active{background:#680325;border-color:#680325}:host.danger.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.ai-primary button{color:#fff;border:none;background:linear-gradient(266deg,#6969ff 25.2%,#4eb7df 90.24%)}:host.ai-primary button:hover{background:linear-gradient(0deg,#4d4dcd66 0% 100%),linear-gradient(266deg,#6969ff 25.2%,#4eb7df 90.24%)}:host.ai-primary.active button,:host.ai-primary button:active{background:linear-gradient(0deg,#4d4dcd66 0% 100%),linear-gradient(266deg,#6969ff 25.2%,#4eb7df 90.24%)}:host.ai-primary.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.ai-secondary button{color:#4646ce;border:none!important;z-index:1;background:linear-gradient(269.57deg,#6969ff -4.23%,#4eb7df 103.6%)!important}:host.ai-secondary button:before{content:\"\";position:absolute;inset:1px;border-radius:15px;background-color:#fff;z-index:-1}:host.ai-secondary button:hover{box-shadow:0 4px 14px #0000001a}:host.ai-secondary.active button,:host.ai-secondary button:active{box-shadow:none}:host.ai-secondary.active button:before,:host.ai-secondary button:active:before{background:linear-gradient(270deg,#6969ff33 -4.23%,#4eb7df33 103.6%),#fff}:host.ai-secondary.disabled button{color:#aeabac;background:#f0f1f4!important;border:1px solid #aeabac!important}:host.ai-secondary.disabled button:before{display:none}:host.marketing button{color:#fff;background:#f93576;border-color:#f93576}:host.marketing button:hover,:host.marketing.active button,:host.marketing button:active{background:#c9245b;border-color:#c9245b}:host.marketing.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"] }]
|
|
128
|
+
args: [{ selector: 'dr-button', standalone: true, imports: [CommonModule], template: "<button [disabled]=\"disabled\" [type]=\"type\">\n <i *ngIf=\"icon\" class=\"dr-button__icon\" [class]=\"icon\" [style.font-size]=\"iconSize\" [style.color]=\"iconColor || 'inherit'\">\n </i>\n <ng-content></ng-content>\n <div *ngIf=\"isLoading\" class=\"dr-button__spinner\">\n <i [style.font-size]=\"iconSize\" class=\"dr-icon-load\"></i>\n </div>\n <i\n *ngIf=\"iconAfter\"\n class=\"dr-button__icon dr-button__icon--after\"\n [class]=\"iconAfter\"\n [style.font-size]=\"iconAfterSize\"\n [style.color]=\"iconAfterColor || 'inherit'\">\n </i>\n</button>\n", styles: [":host{display:inline-block}:host.disabled,:host.loading{pointer-events:none}:host button{font-size:14px;line-height:24px;font-weight:400;position:relative;display:flex;align-items:center;flex-wrap:nowrap;cursor:pointer;border-radius:16px;padding:4px 16px;height:32px;border:1px solid}:host button .dr-button__spinner{display:flex;align-items:center;justify-content:center;position:absolute;inset:0;background:inherit;border-radius:inherit}:host button .dr-button__spinner i{animation-name:rotate;animation-iteration-count:infinite;animation-duration:1s}:host.with-icon button{padding-left:8px}:host.with-icon button i:first-child{margin-right:4px}:host.with-icon-after button{padding-right:8px}:host.with-icon-after button i:last-child{margin-left:4px}:host.split-primary-first button,:host.split-secondary-first button{border-bottom-right-radius:0;border-top-right-radius:0;padding-right:8px}:host.help button{padding:4px 16px 4px 8px;color:#333;height:28px;border:none;min-width:84px}:host.help button i{min-width:4px}:host.split-primary-last button,:host.split-secondary-last button{border-bottom-left-radius:0;border-top-left-radius:0;padding-right:8px;padding-left:4px;border-left:none}:host.split-primary-last button i,:host.split-secondary-last button i{margin:0!important}:host.primary button,:host.split-primary-first button,:host.split-primary-last button{color:#fff;background:#4646ce;border-color:#4646ce}:host.primary button:hover,:host.split-primary-first button:hover,:host.split-primary-last button:hover{background:linear-gradient(96.89deg,#25258c,#4646ce);border-color:linear-gradient(96.89deg,#25258c 0%,#4646ce 100%)}:host.primary.active button,:host.primary button:active,:host.split-primary-first.active button,:host.split-primary-first button:active,:host.split-primary-last.active button,:host.split-primary-last button:active{background:#25258c;border-color:#25258c}:host.primary.disabled button,:host.split-primary-first.disabled button,:host.split-primary-last.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.split-primary-first button{border-right-color:#dfe0e3}:host.split-primary-first.disabled button{border-right-color:#aeabac}:host.secondary button,:host.split-secondary-first button,:host.split-secondary-last button{color:#4646ce;background:#fff;border-color:#4646ce}:host.secondary button:hover,:host.split-secondary-first button:hover,:host.split-secondary-last button:hover{background:#f5f5f5;box-shadow:0 4px 14px #0000001a}:host.secondary.active button,:host.secondary button:active,:host.split-secondary-first.active button,:host.split-secondary-first button:active,:host.split-secondary-last.active button,:host.split-secondary-last button:active{background:#eaeaff;box-shadow:none}:host.secondary.disabled button,:host.split-secondary-first.disabled button,:host.split-secondary-last.disabled button{color:#aeabac;border-color:#aeabac}:host.secondary-white button{color:#fff;background:transparent;border-color:#fff}:host.secondary-white button:hover{background:#ffffff1a;box-shadow:0 4px 14px #0000001a}:host.secondary-white.active button,:host.secondary-white button:active{background:transparent;box-shadow:none}:host.secondary-white.disabled button{color:#aeabac;border-color:#aeabac}:host.split-secondary-first button{border-right-color:#4646ce}:host.split-secondary-first.disabled button{border-right-color:#aeabac}:host.icon button,:host.icon-primary button,:host.icon-secondary button{width:28px;height:28px;padding:0;justify-content:center}:host.icon button i,:host.icon-primary button i,:host.icon-secondary button i{margin:0!important}:host.icon button{background:transparent;border-color:transparent;color:#6d6e6f}:host.icon button:hover{color:#333;background:#dfe0e3;border-color:#dfe0e3}:host.icon.active button,:host.icon button:active{color:#4646ce;background:#eaeaff;border-color:#eaeaff}:host.icon.disabled button{color:#aeabac;background:transparent;border-color:transparent}:host.icon-primary button{color:#fff;background:#4646ce;border-color:#4646ce}:host.icon-primary button:hover{color:#fff;background:linear-gradient(96.89deg,#25258c,#4646ce);border-color:linear-gradient(96.89deg,#25258c 0%,#4646ce 100%)}:host.icon-primary.active button,:host.icon-primary button:active{color:#fff;background:#25258c;border-color:#25258c}:host.icon-primary.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.icon-secondary button{color:#4646ce;background:#fff;border-color:#4646ce}:host.icon-secondary button:hover{color:#4646ce;background:#f5f5f5;border-color:#4646ce}:host.icon-secondary.active button,:host.icon-secondary button:active{color:#4646ce;background:#eaeaff;border-color:#4646ce}:host.icon-secondary.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.ghost button{border-radius:4px;padding:4px;background:transparent;border-color:transparent;color:#6d6e6f}:host.ghost button .dr-button__spinner{color:#4646ce;background:#fff}:host.ghost button:hover{color:#333;background:#f5f5f5;border-color:#f5f5f5}:host.ghost.active button,:host.ghost button:active{color:#4646ce;background:#eaeaff;border-color:#eaeaff}:host.ghost.disabled button{color:#aeabac;background:transparent;border-color:transparent}:host.highlight button{border:none;background:none;color:#4646ce;padding:0 4px;text-decoration:none}:host.highlight button:hover,:host.highlight.active button,:host.highlight button:active{text-decoration:underline}:host.highlight.disabled button{color:#aeabac}:host.dropdown button,:host.selection button{font-size:12px;line-height:16px;font-weight:400;border:1px solid #dfe0e3;border-radius:6px;padding:6px 8px;color:#6d6e6f;background-color:#fff}:host.dropdown button:hover,:host.selection button:hover{background-color:#f5f5f5;border-color:#4e566c}:host.dropdown.active button,:host.selection.active button{color:#4646ce}:host.dropdown.active button i:last-child,:host.selection.active button i:last-child{color:#333}:host.dropdown button:active,:host.selection button:active{border-color:#4646ce}:host.dropdown.disabled button,:host.selection.disabled button{background-color:#f0f1f4;color:#aeabac}:host.dropdown.disabled button i:last-child,:host.selection.disabled button i:last-child{color:#aeabac}:host.danger button{color:#fff;background:#bf1d30;border-color:#bf1d30}:host.danger button:hover{background:#981440;border-color:#981440}:host.danger.active button,:host.danger button:active{background:#680325;border-color:#680325}:host.danger.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.ai-primary button{color:#fff;border:none;background:linear-gradient(266deg,#6969ff 25.2%,#4eb7df 90.24%)}:host.ai-primary button:hover{background:linear-gradient(0deg,#4d4dcd66 0% 100%),linear-gradient(266deg,#6969ff 25.2%,#4eb7df 90.24%)}:host.ai-primary.active button,:host.ai-primary button:active{background:linear-gradient(0deg,#4d4dcd66 0% 100%),linear-gradient(266deg,#6969ff 25.2%,#4eb7df 90.24%)}:host.ai-primary.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}:host.ai-secondary button{color:#4646ce;border:none!important;z-index:1;background:linear-gradient(269.57deg,#6969ff -4.23%,#4eb7df 103.6%)!important}:host.ai-secondary button:before{content:\"\";position:absolute;inset:1px;border-radius:15px;background-color:#fff;z-index:-1}:host.ai-secondary button:hover{box-shadow:0 4px 14px #0000001a}:host.ai-secondary.active button,:host.ai-secondary button:active{box-shadow:none}:host.ai-secondary.active button:before,:host.ai-secondary button:active:before{background:linear-gradient(270deg,#6969ff33 -4.23%,#4eb7df33 103.6%),#fff}:host.ai-secondary.disabled button{color:#aeabac;background:#f0f1f4!important;border:1px solid #aeabac!important}:host.ai-secondary.disabled button:before{display:none}:host.marketing button{color:#fff;background:#f93576;border-color:#f93576}:host.marketing button:hover,:host.marketing.active button,:host.marketing button:active{background:#c9245b;border-color:#c9245b}:host.marketing.disabled button{color:#aeabac;background:#f0f1f4;border-color:#f0f1f4}@keyframes rotate{0%{transform:rotate(0)}to{transform:rotate(360deg)}}\n"] }]
|
|
127
129
|
}], null, { theme: [{
|
|
128
130
|
type: Input
|
|
129
131
|
}, {
|
|
@@ -162,6 +164,8 @@ class DrButtonComponent {
|
|
|
162
164
|
}, {
|
|
163
165
|
type: HostBinding,
|
|
164
166
|
args: ['class.active']
|
|
167
|
+
}], type: [{
|
|
168
|
+
type: Input
|
|
165
169
|
}] }); })();
|
|
166
170
|
|
|
167
171
|
class DrButtonLinkDirective {
|
|
@@ -376,7 +380,7 @@ var TooltipTheme;
|
|
|
376
380
|
TooltipTheme["DARK"] = "dark";
|
|
377
381
|
})(TooltipTheme || (TooltipTheme = {}));
|
|
378
382
|
|
|
379
|
-
const _c0$
|
|
383
|
+
const _c0$14 = ["*"];
|
|
380
384
|
class TooltipDefaultComponent {
|
|
381
385
|
constructor() {
|
|
382
386
|
this.theme = TooltipTheme.LIGHT;
|
|
@@ -384,7 +388,7 @@ class TooltipDefaultComponent {
|
|
|
384
388
|
/** @nocollapse */ static { this.ɵfac = function TooltipDefaultComponent_Factory(t) { return new (t || TooltipDefaultComponent)(); }; }
|
|
385
389
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TooltipDefaultComponent, selectors: [["dr-tooltip-default"]], hostVars: 2, hostBindings: function TooltipDefaultComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
386
390
|
i0.ɵɵclassMap(ctx.theme);
|
|
387
|
-
} }, inputs: { content: "content", theme: "theme" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
391
|
+
} }, inputs: { content: "content", theme: "theme" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$14, decls: 2, vars: 1, consts: [[1, "content", 3, "innerHTML"]], template: function TooltipDefaultComponent_Template(rf, ctx) { if (rf & 1) {
|
|
388
392
|
i0.ɵɵprojectionDef();
|
|
389
393
|
i0.ɵɵelement(0, "span", 0);
|
|
390
394
|
i0.ɵɵprojection(1);
|
|
@@ -404,7 +408,7 @@ class TooltipDefaultComponent {
|
|
|
404
408
|
args: ['class']
|
|
405
409
|
}] }); })();
|
|
406
410
|
|
|
407
|
-
const _c0$
|
|
411
|
+
const _c0$13 = ["container"];
|
|
408
412
|
class TooltipCustomComponent {
|
|
409
413
|
constructor() {
|
|
410
414
|
this.injector = inject(Injector);
|
|
@@ -435,7 +439,7 @@ class TooltipCustomComponent {
|
|
|
435
439
|
}
|
|
436
440
|
/** @nocollapse */ static { this.ɵfac = function TooltipCustomComponent_Factory(t) { return new (t || TooltipCustomComponent)(); }; }
|
|
437
441
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: TooltipCustomComponent, selectors: [["dr-tooltip-custom"]], viewQuery: function TooltipCustomComponent_Query(rf, ctx) { if (rf & 1) {
|
|
438
|
-
i0.ɵɵviewQuery(_c0$
|
|
442
|
+
i0.ɵɵviewQuery(_c0$13, 7, ViewContainerRef);
|
|
439
443
|
} if (rf & 2) {
|
|
440
444
|
let _t;
|
|
441
445
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.container = _t.first);
|
|
@@ -496,7 +500,7 @@ function TooltipComponent_ng_template_5_Template(rf, ctx) { if (rf & 1) {
|
|
|
496
500
|
const ctx_r5 = i0.ɵɵnextContext();
|
|
497
501
|
i0.ɵɵproperty("content", ctx_r5.content)("theme", ctx_r5.theme);
|
|
498
502
|
} }
|
|
499
|
-
const _c0$
|
|
503
|
+
const _c0$12 = function (a0) { return { "dr-tooltip": a0 }; };
|
|
500
504
|
class TooltipComponent {
|
|
501
505
|
constructor() {
|
|
502
506
|
this.isContentTemplate = false;
|
|
@@ -529,7 +533,7 @@ class TooltipComponent {
|
|
|
529
533
|
} if (rf & 2) {
|
|
530
534
|
const _r2 = i0.ɵɵreference(4);
|
|
531
535
|
i0.ɵɵclassMap(ctx.position + " " + ctx.class + " " + ctx.theme);
|
|
532
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c0$
|
|
536
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(6, _c0$12, !(ctx.options == null ? null : ctx.options.withoutContainerStyles)));
|
|
533
537
|
i0.ɵɵadvance(1);
|
|
534
538
|
i0.ɵɵproperty("ngIf", !(ctx.options == null ? null : ctx.options.withoutArrow));
|
|
535
539
|
i0.ɵɵadvance(1);
|
|
@@ -872,8 +876,8 @@ class DrTooltipModule {
|
|
|
872
876
|
TooltipComponent,
|
|
873
877
|
DrTooltipDirective] }); })();
|
|
874
878
|
|
|
875
|
-
const _c0$
|
|
876
|
-
const _c1$
|
|
879
|
+
const _c0$11 = ["checkboxContent"];
|
|
880
|
+
const _c1$r = ["*"];
|
|
877
881
|
class CheckboxComponent {
|
|
878
882
|
get indeterminate() {
|
|
879
883
|
return this._indeterminate;
|
|
@@ -923,7 +927,7 @@ class CheckboxComponent {
|
|
|
923
927
|
}
|
|
924
928
|
/** @nocollapse */ static { this.ɵfac = function CheckboxComponent_Factory(t) { return new (t || CheckboxComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
925
929
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: CheckboxComponent, selectors: [["dr-checkbox"]], viewQuery: function CheckboxComponent_Query(rf, ctx) { if (rf & 1) {
|
|
926
|
-
i0.ɵɵviewQuery(_c0$
|
|
930
|
+
i0.ɵɵviewQuery(_c0$11, 5);
|
|
927
931
|
} if (rf & 2) {
|
|
928
932
|
let _t;
|
|
929
933
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.checkboxContent = _t.first);
|
|
@@ -931,7 +935,7 @@ class CheckboxComponent {
|
|
|
931
935
|
i0.ɵɵattribute("id", ctx.hostId);
|
|
932
936
|
i0.ɵɵclassMap(ctx.theme);
|
|
933
937
|
i0.ɵɵclassProp("disabled", ctx.disabled)("text-nowrap", ctx.textNowrap);
|
|
934
|
-
} }, inputs: { id: "id", checkedStatus: "checkedStatus", disabled: "disabled", icon: "icon", theme: "theme", indeterminate: "indeterminate", textNowrap: "textNowrap" }, outputs: { checkedChange: "checkedChange" }, standalone: true, features: [i0.ɵɵProvidersFeature([{ provide: NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$
|
|
938
|
+
} }, inputs: { id: "id", checkedStatus: "checkedStatus", disabled: "disabled", icon: "icon", theme: "theme", indeterminate: "indeterminate", textNowrap: "textNowrap" }, outputs: { checkedChange: "checkedChange" }, standalone: true, features: [i0.ɵɵProvidersFeature([{ provide: NG_VALUE_ACCESSOR, useExisting: CheckboxComponent, multi: true }]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$r, decls: 5, vars: 9, consts: [["type", "checkbox", 3, "checked", "disabled", "change", "click"], [3, "drTooltip"], ["checkboxContent", ""]], template: function CheckboxComponent_Template(rf, ctx) { if (rf & 1) {
|
|
935
939
|
i0.ɵɵprojectionDef();
|
|
936
940
|
i0.ɵɵelementStart(0, "label")(1, "input", 0);
|
|
937
941
|
i0.ɵɵlistener("change", function CheckboxComponent_Template_input_change_1_listener($event) { return ctx.setValue($event); })("click", function CheckboxComponent_Template_input_click_1_listener($event) { return $event.stopPropagation(); });
|
|
@@ -1018,8 +1022,8 @@ class DrModelDebounceChangeDirective {
|
|
|
1018
1022
|
type: Output
|
|
1019
1023
|
}] }); })();
|
|
1020
1024
|
|
|
1021
|
-
const _c0
|
|
1022
|
-
const _c1$
|
|
1025
|
+
const _c0$10 = ["prefix"];
|
|
1026
|
+
const _c1$q = ["suffix"];
|
|
1023
1027
|
const _c2$d = ["inputRef"];
|
|
1024
1028
|
function DrInputComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
1025
1029
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
@@ -1244,8 +1248,8 @@ class DrInputComponent {
|
|
|
1244
1248
|
}
|
|
1245
1249
|
/** @nocollapse */ static { this.ɵfac = function DrInputComponent_Factory(t) { return new (t || DrInputComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
1246
1250
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrInputComponent, selectors: [["dr-input"]], contentQueries: function DrInputComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
1247
|
-
i0.ɵɵcontentQuery(dirIndex, _c0
|
|
1248
|
-
i0.ɵɵcontentQuery(dirIndex, _c1$
|
|
1251
|
+
i0.ɵɵcontentQuery(dirIndex, _c0$10, 5);
|
|
1252
|
+
i0.ɵɵcontentQuery(dirIndex, _c1$q, 5);
|
|
1249
1253
|
} if (rf & 2) {
|
|
1250
1254
|
let _t;
|
|
1251
1255
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.prefixIcon = _t.first);
|
|
@@ -1491,8 +1495,8 @@ class DrSpinnerModule {
|
|
|
1491
1495
|
}], null, null); })();
|
|
1492
1496
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(DrSpinnerModule, { declarations: [DrSpinnerComponent, DrSpinnerDirective], imports: [CommonModule], exports: [DrSpinnerComponent, DrSpinnerDirective] }); })();
|
|
1493
1497
|
|
|
1494
|
-
const _c0
|
|
1495
|
-
const _c1$
|
|
1498
|
+
const _c0$$ = ["labelTemplate"];
|
|
1499
|
+
const _c1$p = ["multiLabelTemplate"];
|
|
1496
1500
|
const _c2$c = ["optionTemplate"];
|
|
1497
1501
|
const _c3$7 = ["optionHeaderTemplate"];
|
|
1498
1502
|
const _c4$4 = ["optionFooterTemplate"];
|
|
@@ -1753,8 +1757,8 @@ class DrSelectComponent {
|
|
|
1753
1757
|
}
|
|
1754
1758
|
/** @nocollapse */ static { this.ɵfac = function DrSelectComponent_Factory(t) { return new (t || DrSelectComponent)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i0.Renderer2)); }; }
|
|
1755
1759
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrSelectComponent, selectors: [["dr-select"]], contentQueries: function DrSelectComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
1756
|
-
i0.ɵɵcontentQuery(dirIndex, _c0
|
|
1757
|
-
i0.ɵɵcontentQuery(dirIndex, _c1$
|
|
1760
|
+
i0.ɵɵcontentQuery(dirIndex, _c0$$, 5);
|
|
1761
|
+
i0.ɵɵcontentQuery(dirIndex, _c1$p, 5);
|
|
1758
1762
|
i0.ɵɵcontentQuery(dirIndex, _c2$c, 5);
|
|
1759
1763
|
i0.ɵɵcontentQuery(dirIndex, _c3$7, 5);
|
|
1760
1764
|
i0.ɵɵcontentQuery(dirIndex, _c4$4, 5);
|
|
@@ -1949,7 +1953,7 @@ class DrSelectComponent {
|
|
|
1949
1953
|
args: ['class.textView']
|
|
1950
1954
|
}] }); })();
|
|
1951
1955
|
|
|
1952
|
-
const _c0$
|
|
1956
|
+
const _c0$_ = ["dynamicInputRef"];
|
|
1953
1957
|
function DrSelectAddItemComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
1954
1958
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
1955
1959
|
i0.ɵɵelementStart(0, "div", 3);
|
|
@@ -2057,7 +2061,7 @@ class DrSelectAddItemComponent {
|
|
|
2057
2061
|
}
|
|
2058
2062
|
/** @nocollapse */ static { this.ɵfac = function DrSelectAddItemComponent_Factory(t) { return new (t || DrSelectAddItemComponent)(i0.ɵɵdirectiveInject(DrSelectComponent)); }; }
|
|
2059
2063
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrSelectAddItemComponent, selectors: [["dr-select-add-item"]], viewQuery: function DrSelectAddItemComponent_Query(rf, ctx) { if (rf & 1) {
|
|
2060
|
-
i0.ɵɵviewQuery(_c0$
|
|
2064
|
+
i0.ɵɵviewQuery(_c0$_, 5);
|
|
2061
2065
|
} if (rf & 2) {
|
|
2062
2066
|
let _t;
|
|
2063
2067
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.inputRef = _t.first);
|
|
@@ -2167,7 +2171,7 @@ function DrToggleComponent_span_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
2167
2171
|
i0.ɵɵadvance(1);
|
|
2168
2172
|
i0.ɵɵtextInterpolate(ctx_r1.toggleTitle);
|
|
2169
2173
|
} }
|
|
2170
|
-
const _c0$
|
|
2174
|
+
const _c0$Z = ["*"];
|
|
2171
2175
|
class DrToggleComponent {
|
|
2172
2176
|
set disabled(value) {
|
|
2173
2177
|
this.setDisabledState(value);
|
|
@@ -2217,7 +2221,7 @@ class DrToggleComponent {
|
|
|
2217
2221
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrToggleComponent, selectors: [["dr-toggle"]], hostVars: 3, hostBindings: function DrToggleComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
2218
2222
|
i0.ɵɵattribute("id", ctx.hostId);
|
|
2219
2223
|
i0.ɵɵclassMap(ctx.elementClass);
|
|
2220
|
-
} }, inputs: { id: "id", toggleTitle: "toggleTitle", toggleTitleRight: "toggleTitleRight", successType: "successType", checkedStatus: "checkedStatus", disabled: "disabled" }, outputs: { checkedChange: "checkedChange" }, standalone: true, features: [i0.ɵɵProvidersFeature([{ provide: NG_VALUE_ACCESSOR, useExisting: DrToggleComponent, multi: true }]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
2224
|
+
} }, inputs: { id: "id", toggleTitle: "toggleTitle", toggleTitleRight: "toggleTitleRight", successType: "successType", checkedStatus: "checkedStatus", disabled: "disabled" }, outputs: { checkedChange: "checkedChange" }, standalone: true, features: [i0.ɵɵProvidersFeature([{ provide: NG_VALUE_ACCESSOR, useExisting: DrToggleComponent, multi: true }]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$Z, decls: 7, vars: 10, consts: [["class", "toggle-title mr-3", 3, "click", 4, "ngIf"], [1, "toggle-container"], ["type", "checkbox", 3, "checked", "disabled", "click"], [1, "toggle-body"], ["class", "toggle-title ml-3", 3, "click", 4, "ngIf"], [1, "toggle-title", "mr-3", 3, "click"], [1, "toggle-title", "ml-3", 3, "click"]], template: function DrToggleComponent_Template(rf, ctx) { if (rf & 1) {
|
|
2221
2225
|
i0.ɵɵprojectionDef();
|
|
2222
2226
|
i0.ɵɵtemplate(0, DrToggleComponent_span_0_Template, 2, 1, "span", 0);
|
|
2223
2227
|
i0.ɵɵelementStart(1, "label", 1)(2, "input", 2);
|
|
@@ -2411,7 +2415,7 @@ class DrToggleButtonComponent {
|
|
|
2411
2415
|
type: Input
|
|
2412
2416
|
}] }); })();
|
|
2413
2417
|
|
|
2414
|
-
const _c0$
|
|
2418
|
+
const _c0$Y = ["*"];
|
|
2415
2419
|
class RadioButtonComponent {
|
|
2416
2420
|
get disabled() {
|
|
2417
2421
|
return this._disabled;
|
|
@@ -2465,7 +2469,7 @@ class RadioButtonComponent {
|
|
|
2465
2469
|
useExisting: RadioButtonComponent,
|
|
2466
2470
|
multi: true,
|
|
2467
2471
|
},
|
|
2468
|
-
]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
2472
|
+
]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$Y, decls: 4, vars: 5, consts: [["type", "radio", 3, "name", "value", "ngModel", "disabled", "change", "ngModelChange", "click"]], template: function RadioButtonComponent_Template(rf, ctx) { if (rf & 1) {
|
|
2469
2473
|
i0.ɵɵprojectionDef();
|
|
2470
2474
|
i0.ɵɵelementStart(0, "label")(1, "input", 0);
|
|
2471
2475
|
i0.ɵɵlistener("change", function RadioButtonComponent_Template_input_change_1_listener() { return ctx.valueChanged(ctx.value); })("ngModelChange", function RadioButtonComponent_Template_input_ngModelChange_1_listener($event) { return ctx.modelValue = $event; })("click", function RadioButtonComponent_Template_input_click_1_listener($event) { return ctx.toggleChange($event); });
|
|
@@ -2504,8 +2508,8 @@ class RadioButtonComponent {
|
|
|
2504
2508
|
type: Input
|
|
2505
2509
|
}] }); })();
|
|
2506
2510
|
|
|
2507
|
-
const _c0$
|
|
2508
|
-
const _c1$
|
|
2511
|
+
const _c0$X = [[["dr-radio-button"]]];
|
|
2512
|
+
const _c1$o = ["dr-radio-button"];
|
|
2509
2513
|
class RadioGroupComponent {
|
|
2510
2514
|
get value() {
|
|
2511
2515
|
return this._value;
|
|
@@ -2644,8 +2648,8 @@ class RadioGroupComponent {
|
|
|
2644
2648
|
useExisting: forwardRef((() => RadioGroupComponent)),
|
|
2645
2649
|
multi: true,
|
|
2646
2650
|
},
|
|
2647
|
-
]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$
|
|
2648
|
-
i0.ɵɵprojectionDef(_c0$
|
|
2651
|
+
]), i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$o, decls: 1, vars: 0, template: function RadioGroupComponent_Template(rf, ctx) { if (rf & 1) {
|
|
2652
|
+
i0.ɵɵprojectionDef(_c0$X);
|
|
2649
2653
|
i0.ɵɵprojection(0);
|
|
2650
2654
|
} }, encapsulation: 2, changeDetection: 0 }); }
|
|
2651
2655
|
}
|
|
@@ -3341,8 +3345,8 @@ class DrShowTimeframePipe {
|
|
|
3341
3345
|
}]
|
|
3342
3346
|
}], null, null); })();
|
|
3343
3347
|
|
|
3344
|
-
const _c0$
|
|
3345
|
-
const _c1$
|
|
3348
|
+
const _c0$W = ["class", "component"];
|
|
3349
|
+
const _c1$n = function (a0) { return { "dr-datepicker-preset-date__tags__tag--selected": a0 }; };
|
|
3346
3350
|
function DrDatePickerCustomHeaderComponent_div_0_div_1_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
3347
3351
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
3348
3352
|
i0.ɵɵelementStart(0, "div", 14);
|
|
@@ -3352,7 +3356,7 @@ function DrDatePickerCustomHeaderComponent_div_0_div_1_div_2_Template(rf, ctx) {
|
|
|
3352
3356
|
} if (rf & 2) {
|
|
3353
3357
|
const tag_r5 = ctx.$implicit;
|
|
3354
3358
|
const ctx_r4 = i0.ɵɵnextContext(3);
|
|
3355
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c1$
|
|
3359
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c1$n, tag_r5.key === ctx_r4.selectedPresetTag))("drTooltip", ctx_r4.selectedPresetTag === tag_r5.key ? "Unselect preset" : "")("drTooltipPosition", "top");
|
|
3356
3360
|
i0.ɵɵadvance(1);
|
|
3357
3361
|
i0.ɵɵtextInterpolate1(" ", tag_r5.label, " ");
|
|
3358
3362
|
} }
|
|
@@ -3637,7 +3641,7 @@ class DrDatePickerCustomHeaderComponent {
|
|
|
3637
3641
|
return selector;
|
|
3638
3642
|
}
|
|
3639
3643
|
/** @nocollapse */ static { this.ɵfac = function DrDatePickerCustomHeaderComponent_Factory(t) { return new (t || DrDatePickerCustomHeaderComponent)(i0.ɵɵdirectiveInject(i5.MatCalendar), i0.ɵɵdirectiveInject(i1$2.DateAdapter), i0.ɵɵdirectiveInject(MAT_DATE_FORMATS), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ApplicationRef), i0.ɵɵdirectiveInject(DrDatePickerService)); }; }
|
|
3640
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrDatePickerCustomHeaderComponent, selectors: [["dr-date-picker_custom-header", 8, "component"]], standalone: true, features: [i0.ɵɵStandaloneFeature], attrs: _c0$
|
|
3644
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrDatePickerCustomHeaderComponent, selectors: [["dr-date-picker_custom-header", 8, "component"]], standalone: true, features: [i0.ɵɵStandaloneFeature], attrs: _c0$W, decls: 12, vars: 4, consts: [["class", "dr-datepicker__timeframe-select__wrapper", 4, "ngIf"], [1, "dr-date-paging"], [1, "dr-date-paging", "flip-page-button", 3, "click"], [1, "dr-icon-arrow-left", "presentation_buttons-navigate_input"], [1, "example-header-label"], [3, "click"], [1, "dr-icon-arrow-right", "presentation_buttons-navigate_input"], ["class", "dr-quarterly-datepicker", 4, "ngIf"], [1, "dr-datepicker__timeframe-select__wrapper"], ["class", "dr-datepicker-preset-date", 4, "ngIf"], ["class", "dr-datepicker__timeframe-select", "bindLabel", "title", "bindValue", "value", 3, "ngModel", "items", "ngModelChange", 4, "ngIf"], [1, "dr-datepicker-preset-date"], [1, "dr-datepicker-preset-date__tags", 3, "ngClass"], ["id", "preset_tag", "class", "dr-datepicker-preset-date__tags__tag", 3, "ngClass", "drTooltip", "drTooltipPosition", "click", 4, "ngFor", "ngForOf"], ["id", "preset_tag", 1, "dr-datepicker-preset-date__tags__tag", 3, "ngClass", "drTooltip", "drTooltipPosition", "click"], ["bindLabel", "title", "bindValue", "value", 1, "dr-datepicker__timeframe-select", 3, "ngModel", "items", "ngModelChange"], [1, "dr-quarterly-datepicker"], ["quarterlyDatePicker", ""], ["class", "quarter-selector quarter-selector--select-current-quarter", 3, "class", "quarter-selector--disabled", "click", 4, "ngFor", "ngForOf"], [1, "quarter-selector", "quarter-selector--select-current-quarter", 3, "click"]], template: function DrDatePickerCustomHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
3641
3645
|
i0.ɵɵtemplate(0, DrDatePickerCustomHeaderComponent_div_0_Template, 3, 2, "div", 0);
|
|
3642
3646
|
i0.ɵɵelementStart(1, "div", 1)(2, "div", 2);
|
|
3643
3647
|
i0.ɵɵlistener("click", function DrDatePickerCustomHeaderComponent_Template_div_click_2_listener() { return ctx.pagingClicked(false); });
|
|
@@ -3751,7 +3755,7 @@ class DrDatePickerFormatDirective {
|
|
|
3751
3755
|
args: ['drDatePickerFormat']
|
|
3752
3756
|
}] }); })();
|
|
3753
3757
|
|
|
3754
|
-
const _c0$
|
|
3758
|
+
const _c0$V = ["datePicker"];
|
|
3755
3759
|
function DrDatePickerComponent_i_0_Template(rf, ctx) { if (rf & 1) {
|
|
3756
3760
|
const _r4 = i0.ɵɵgetCurrentView();
|
|
3757
3761
|
i0.ɵɵelementStart(0, "i", 2);
|
|
@@ -4129,7 +4133,7 @@ class DrDatePickerComponent {
|
|
|
4129
4133
|
}
|
|
4130
4134
|
/** @nocollapse */ static { this.ɵfac = function DrDatePickerComponent_Factory(t) { return new (t || DrDatePickerComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$2.DateAdapter), i0.ɵɵdirectiveInject(DrDatePickerService)); }; }
|
|
4131
4135
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrDatePickerComponent, selectors: [["dr-date-picker"]], viewQuery: function DrDatePickerComponent_Query(rf, ctx) { if (rf & 1) {
|
|
4132
|
-
i0.ɵɵviewQuery(_c0$
|
|
4136
|
+
i0.ɵɵviewQuery(_c0$V, 5);
|
|
4133
4137
|
} if (rf & 2) {
|
|
4134
4138
|
let _t;
|
|
4135
4139
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.datePicker = _t.first);
|
|
@@ -4555,7 +4559,7 @@ function DrDatePickerWithTimeframeComponent_dr_button_11_Template(rf, ctx) { if
|
|
|
4555
4559
|
const ctx_r4 = i0.ɵɵnextContext();
|
|
4556
4560
|
i0.ɵɵproperty("disabled", ctx_r4.isNextDateDisabled);
|
|
4557
4561
|
} }
|
|
4558
|
-
const _c0$
|
|
4562
|
+
const _c0$U = function (a0) { return { formattedValue: a0 }; };
|
|
4559
4563
|
class DrDatePickerWithTimeframeComponent extends DrDatePickerComponent {
|
|
4560
4564
|
set dateFormatConfig(value) {
|
|
4561
4565
|
if (value) {
|
|
@@ -4754,7 +4758,7 @@ class DrDatePickerWithTimeframeComponent extends DrDatePickerComponent {
|
|
|
4754
4758
|
i0.ɵɵadvance(1);
|
|
4755
4759
|
i0.ɵɵproperty("drTooltip", ctx.datepickerTooltip)("drTooltipPosition", ctx.datepickerTooltipPosition)("drTooltipMousleaveTimeout", ctx.datepickerTooltipTimeout);
|
|
4756
4760
|
i0.ɵɵadvance(3);
|
|
4757
|
-
i0.ɵɵproperty("ngTemplateOutlet", _r1)("ngTemplateOutletContext", i0.ɵɵpureFunction1(18, _c0$
|
|
4761
|
+
i0.ɵɵproperty("ngTemplateOutlet", _r1)("ngTemplateOutletContext", i0.ɵɵpureFunction1(18, _c0$U, i0.ɵɵpipeBind1(5, 14, ctx.displayedFormattedValue$)));
|
|
4758
4762
|
i0.ɵɵadvance(4);
|
|
4759
4763
|
i0.ɵɵproperty("ngModel", i0.ɵɵpipeBind1(10, 16, ctx.displayValue$))("matDatepicker", _r5)("readonly", ctx.readonly)("min", ctx._min)("max", ctx._max);
|
|
4760
4764
|
i0.ɵɵadvance(3);
|
|
@@ -4804,8 +4808,8 @@ class DrDatePickerWithTimeframeComponent extends DrDatePickerComponent {
|
|
|
4804
4808
|
type: Output
|
|
4805
4809
|
}] }); })();
|
|
4806
4810
|
|
|
4807
|
-
const _c0$
|
|
4808
|
-
const _c1$
|
|
4811
|
+
const _c0$T = ["class", "component"];
|
|
4812
|
+
const _c1$m = function (a0) { return { "dr-datepicker-preset-date__tags__tag--selected": a0 }; };
|
|
4809
4813
|
function DrFiscalMonthCalendarHeaderComponent_div_0_div_1_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
4810
4814
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
4811
4815
|
i0.ɵɵelementStart(0, "div", 14);
|
|
@@ -4815,7 +4819,7 @@ function DrFiscalMonthCalendarHeaderComponent_div_0_div_1_div_2_Template(rf, ctx
|
|
|
4815
4819
|
} if (rf & 2) {
|
|
4816
4820
|
const tag_r5 = ctx.$implicit;
|
|
4817
4821
|
const ctx_r4 = i0.ɵɵnextContext(3);
|
|
4818
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c1$
|
|
4822
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction1(4, _c1$m, tag_r5.key === ctx_r4.selectedPresetTag))("drTooltip", ctx_r4.selectedPresetTag === tag_r5.key ? "Unselect preset" : "")("drTooltipPosition", "top");
|
|
4819
4823
|
i0.ɵɵadvance(1);
|
|
4820
4824
|
i0.ɵɵtextInterpolate1(" ", tag_r5.label, " ");
|
|
4821
4825
|
} }
|
|
@@ -4907,7 +4911,7 @@ class DrFiscalMonthCalendarHeaderComponent extends DrDatePickerCustomHeaderCompo
|
|
|
4907
4911
|
});
|
|
4908
4912
|
}
|
|
4909
4913
|
/** @nocollapse */ static { this.ɵfac = /** @pureOrBreakMyCode */ function () { let ɵDrFiscalMonthCalendarHeaderComponent_BaseFactory; return function DrFiscalMonthCalendarHeaderComponent_Factory(t) { return (ɵDrFiscalMonthCalendarHeaderComponent_BaseFactory || (ɵDrFiscalMonthCalendarHeaderComponent_BaseFactory = i0.ɵɵgetInheritedFactory(DrFiscalMonthCalendarHeaderComponent)))(t || DrFiscalMonthCalendarHeaderComponent); }; }(); }
|
|
4910
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrFiscalMonthCalendarHeaderComponent, selectors: [["dr-fiscal-month-calendar-header", 8, "component"]], standalone: true, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature], attrs: _c0$
|
|
4914
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrFiscalMonthCalendarHeaderComponent, selectors: [["dr-fiscal-month-calendar-header", 8, "component"]], standalone: true, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature], attrs: _c0$T, decls: 12, vars: 4, consts: [["class", "dr-datepicker__timeframe-select__wrapper", 4, "ngIf"], [1, "dr-date-paging"], [1, "dr-date-paging", "flip-page-button", 3, "click"], [1, "dr-icon-arrow-left", "presentation_buttons-navigate_input"], [1, "example-header-label"], [3, "click"], [1, "dr-icon-arrow-right", "presentation_buttons-navigate_input"], ["class", "dr-quarterly-datepicker", 4, "ngIf"], [1, "dr-datepicker__timeframe-select__wrapper"], ["class", "dr-datepicker-preset-date", 4, "ngIf"], ["class", "dr-datepicker__timeframe-select", "bindLabel", "title", "bindValue", "value", 3, "ngModel", "items", "ngModelChange", 4, "ngIf"], [1, "dr-datepicker-preset-date"], [1, "dr-datepicker-preset-date__tags", 3, "ngClass"], ["id", "preset_tag", "class", "dr-datepicker-preset-date__tags__tag", 3, "ngClass", "drTooltip", "drTooltipPosition", "click", 4, "ngFor", "ngForOf"], ["id", "preset_tag", 1, "dr-datepicker-preset-date__tags__tag", 3, "ngClass", "drTooltip", "drTooltipPosition", "click"], ["bindLabel", "title", "bindValue", "value", 1, "dr-datepicker__timeframe-select", 3, "ngModel", "items", "ngModelChange"], [1, "dr-quarterly-datepicker"], ["quarterlyDatePicker", ""], ["class", "quarter-selector quarter-selector--select-current-quarter", 3, "class", "quarter-selector--disabled", "click", 4, "ngFor", "ngForOf"], [1, "quarter-selector", "quarter-selector--select-current-quarter", 3, "click"]], template: function DrFiscalMonthCalendarHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
4911
4915
|
i0.ɵɵtemplate(0, DrFiscalMonthCalendarHeaderComponent_div_0_Template, 3, 2, "div", 0);
|
|
4912
4916
|
i0.ɵɵelementStart(1, "div", 1)(2, "div", 2);
|
|
4913
4917
|
i0.ɵɵlistener("click", function DrFiscalMonthCalendarHeaderComponent_Template_div_click_2_listener() { return ctx.pagingClicked(false); });
|
|
@@ -7359,8 +7363,8 @@ class DrTagsAndScenarioConstructorComponent {
|
|
|
7359
7363
|
type: Output
|
|
7360
7364
|
}] }); })();
|
|
7361
7365
|
|
|
7362
|
-
const _c0$
|
|
7363
|
-
const _c1$
|
|
7366
|
+
const _c0$S = ["stepTextLabel"];
|
|
7367
|
+
const _c1$l = ["stepper"];
|
|
7364
7368
|
function StepperComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
7365
7369
|
const _r11 = i0.ɵɵgetCurrentView();
|
|
7366
7370
|
i0.ɵɵelementStart(0, "div", 7);
|
|
@@ -7585,12 +7589,12 @@ class StepperComponent {
|
|
|
7585
7589
|
}
|
|
7586
7590
|
/** @nocollapse */ static { this.ɵfac = function StepperComponent_Factory(t) { return new (t || StepperComponent)(); }; }
|
|
7587
7591
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: StepperComponent, selectors: [["dr-stepper"]], contentQueries: function StepperComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
7588
|
-
i0.ɵɵcontentQuery(dirIndex, _c0$
|
|
7592
|
+
i0.ɵɵcontentQuery(dirIndex, _c0$S, 5);
|
|
7589
7593
|
} if (rf & 2) {
|
|
7590
7594
|
let _t;
|
|
7591
7595
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.stepTextLabelTemplate = _t.first);
|
|
7592
7596
|
} }, viewQuery: function StepperComponent_Query(rf, ctx) { if (rf & 1) {
|
|
7593
|
-
i0.ɵɵviewQuery(_c1$
|
|
7597
|
+
i0.ɵɵviewQuery(_c1$l, 5, ElementRef);
|
|
7594
7598
|
} if (rf & 2) {
|
|
7595
7599
|
let _t;
|
|
7596
7600
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.stepper = _t.first);
|
|
@@ -7760,7 +7764,7 @@ function DrChatFormComponent_dr_button_9_Template(rf, ctx) { if (rf & 1) {
|
|
|
7760
7764
|
i0.ɵɵtext(1, "Stop generating");
|
|
7761
7765
|
i0.ɵɵelementEnd();
|
|
7762
7766
|
} }
|
|
7763
|
-
const _c0$
|
|
7767
|
+
const _c0$R = function (a0, a1) { return { "message-row__input--focused": a0, "message-row__input--filled": a1 }; };
|
|
7764
7768
|
class DrChatFormComponent {
|
|
7765
7769
|
constructor(cdr, domSanitizer) {
|
|
7766
7770
|
this.cdr = cdr;
|
|
@@ -7916,7 +7920,7 @@ class DrChatFormComponent {
|
|
|
7916
7920
|
const _r1 = i0.ɵɵreference(4);
|
|
7917
7921
|
i0.ɵɵproperty("ngIf", ctx.droppedFiles == null ? null : ctx.droppedFiles.length);
|
|
7918
7922
|
i0.ɵɵadvance(2);
|
|
7919
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(11, _c0$
|
|
7923
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(11, _c0$R, ctx.inputFocus, !!(ctx.message == null ? null : ctx.message.length)));
|
|
7920
7924
|
i0.ɵɵadvance(1);
|
|
7921
7925
|
i0.ɵɵstyleMap(ctx.getTextAreaHeight(_r1));
|
|
7922
7926
|
i0.ɵɵpropertyInterpolate("placeholder", ctx.fileOver ? ctx.dropFilePlaceholder : ctx.messagePlaceholder);
|
|
@@ -8031,7 +8035,7 @@ function DrAvatarComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
8031
8035
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
8032
8036
|
i0.ɵɵstyleProp("width", ctx_r0.drAvatarSize || null)("height", ctx_r0.drAvatarSize || null);
|
|
8033
8037
|
} }
|
|
8034
|
-
const _c0$
|
|
8038
|
+
const _c0$Q = function (a0, a1) { return { "users-section__default": a0, "users-section__user--clickable": a1 }; };
|
|
8035
8039
|
function DrAvatarComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
8036
8040
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
8037
8041
|
i0.ɵɵelementStart(0, "div", 5);
|
|
@@ -8045,7 +8049,7 @@ function DrAvatarComponent_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
8045
8049
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
8046
8050
|
i0.ɵɵclassMap(user_r5.status);
|
|
8047
8051
|
i0.ɵɵstyleProp("width", ctx_r1.drAvatarSize || null)("height", ctx_r1.drAvatarSize || null)("background-color", ctx_r1.getAvatarColor(user_r5));
|
|
8048
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(18, _c0$
|
|
8052
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(18, _c0$Q, ctx_r1.showUnassigned && !user_r5.email, ctx_r1.drAvatarIsClickable))("drTooltip", i0.ɵɵpipeBind1(1, 13, user_r5))("drTooltipClass", ctx_r1.drAvatarTooltipClass)("drTooltipPosition", ctx_r1.drAvatarTooltipPosition);
|
|
8049
8053
|
i0.ɵɵadvance(2);
|
|
8050
8054
|
i0.ɵɵtextInterpolate1(" ", i0.ɵɵpipeBind2(3, 15, user_r5, "initials"), "\n");
|
|
8051
8055
|
} }
|
|
@@ -8321,7 +8325,7 @@ class DrChatMessageFileComponent {
|
|
|
8321
8325
|
type: Input
|
|
8322
8326
|
}] }); })();
|
|
8323
8327
|
|
|
8324
|
-
const _c0$
|
|
8328
|
+
const _c0$P = ["drChatMessageActions"];
|
|
8325
8329
|
function DrChatMessageComponent_ng_container_0_Template(rf, ctx) { if (rf & 1) {
|
|
8326
8330
|
i0.ɵɵelementContainerStart(0);
|
|
8327
8331
|
i0.ɵɵelement(1, "div", 8);
|
|
@@ -8423,7 +8427,7 @@ class DrChatMessageComponent {
|
|
|
8423
8427
|
}
|
|
8424
8428
|
/** @nocollapse */ static { this.ɵfac = function DrChatMessageComponent_Factory(t) { return new (t || DrChatMessageComponent)(i0.ɵɵdirectiveInject(DrChatCustomMessageService)); }; }
|
|
8425
8429
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChatMessageComponent, selectors: [["dr-chat-message"]], contentQueries: function DrChatMessageComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
8426
|
-
i0.ɵɵcontentQuery(dirIndex, _c0$
|
|
8430
|
+
i0.ɵɵcontentQuery(dirIndex, _c0$P, 5);
|
|
8427
8431
|
} if (rf & 2) {
|
|
8428
8432
|
let _t;
|
|
8429
8433
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.drChatMessageActions = _t.first);
|
|
@@ -8494,7 +8498,7 @@ class DrChatMessageComponent {
|
|
|
8494
8498
|
args: ['drChatMessageActions']
|
|
8495
8499
|
}] }); })();
|
|
8496
8500
|
|
|
8497
|
-
const _c0$
|
|
8501
|
+
const _c0$O = ["suggestionsContainer"];
|
|
8498
8502
|
function DrChatSuggestionsComponent_ng_container_2_div_1_ng_container_3_Template(rf, ctx) { if (rf & 1) {
|
|
8499
8503
|
i0.ɵɵelementContainer(0);
|
|
8500
8504
|
} }
|
|
@@ -8533,14 +8537,14 @@ function DrChatSuggestionsComponent_ng_template_3_div_1_Template(rf, ctx) { if (
|
|
|
8533
8537
|
i0.ɵɵadvance(1);
|
|
8534
8538
|
i0.ɵɵtextInterpolate1(" ", item_r9, " ");
|
|
8535
8539
|
} }
|
|
8536
|
-
const _c1$
|
|
8540
|
+
const _c1$k = function (a0, a1, a2) { return { "chat-suggestions__items--three-cols": a0, "chat-suggestions__items--two-cols": a1, "chat-suggestions__items--one-col": a2 }; };
|
|
8537
8541
|
function DrChatSuggestionsComponent_ng_template_3_Template(rf, ctx) { if (rf & 1) {
|
|
8538
8542
|
i0.ɵɵelementStart(0, "div", 8);
|
|
8539
8543
|
i0.ɵɵtemplate(1, DrChatSuggestionsComponent_ng_template_3_div_1_Template, 2, 1, "div", 9);
|
|
8540
8544
|
i0.ɵɵelementEnd();
|
|
8541
8545
|
} if (rf & 2) {
|
|
8542
8546
|
const ctx_r3 = i0.ɵɵnextContext();
|
|
8543
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction3(2, _c1$
|
|
8547
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction3(2, _c1$k, ctx_r3.colsCount === 3, ctx_r3.colsCount === 2, ctx_r3.colsCount === 1));
|
|
8544
8548
|
i0.ɵɵadvance(1);
|
|
8545
8549
|
i0.ɵɵproperty("ngForOf", ctx_r3.visibleValues);
|
|
8546
8550
|
} }
|
|
@@ -8639,7 +8643,7 @@ class DrChatSuggestionsComponent {
|
|
|
8639
8643
|
}
|
|
8640
8644
|
/** @nocollapse */ static { this.ɵfac = function DrChatSuggestionsComponent_Factory(t) { return new (t || DrChatSuggestionsComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
8641
8645
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChatSuggestionsComponent, selectors: [["dr-chat-suggestions"]], viewQuery: function DrChatSuggestionsComponent_Query(rf, ctx) { if (rf & 1) {
|
|
8642
|
-
i0.ɵɵviewQuery(_c0$
|
|
8646
|
+
i0.ɵɵviewQuery(_c0$O, 5);
|
|
8643
8647
|
} if (rf & 2) {
|
|
8644
8648
|
let _t;
|
|
8645
8649
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.suggestionContainer = _t.first);
|
|
@@ -8673,8 +8677,8 @@ class DrChatSuggestionsComponent {
|
|
|
8673
8677
|
args: ['suggestionsContainer', { static: false }]
|
|
8674
8678
|
}] }); })();
|
|
8675
8679
|
|
|
8676
|
-
const _c0$
|
|
8677
|
-
const _c1$
|
|
8680
|
+
const _c0$N = ["drChatHeader"];
|
|
8681
|
+
const _c1$j = ["drChatLoader"];
|
|
8678
8682
|
const _c2$7 = ["drChatContent"];
|
|
8679
8683
|
const _c3$5 = ["messagesContainer"];
|
|
8680
8684
|
function DrChatComponent_ng_container_2_Template(rf, ctx) { if (rf & 1) {
|
|
@@ -8810,8 +8814,8 @@ class DrChatComponent {
|
|
|
8810
8814
|
/** @nocollapse */ static { this.ɵfac = function DrChatComponent_Factory(t) { return new (t || DrChatComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
8811
8815
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChatComponent, selectors: [["dr-chat"]], contentQueries: function DrChatComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
8812
8816
|
i0.ɵɵcontentQuery(dirIndex, DrChatFormComponent, 5);
|
|
8813
|
-
i0.ɵɵcontentQuery(dirIndex, _c0$
|
|
8814
|
-
i0.ɵɵcontentQuery(dirIndex, _c1$
|
|
8817
|
+
i0.ɵɵcontentQuery(dirIndex, _c0$N, 5);
|
|
8818
|
+
i0.ɵɵcontentQuery(dirIndex, _c1$j, 5);
|
|
8815
8819
|
i0.ɵɵcontentQuery(dirIndex, _c2$7, 5);
|
|
8816
8820
|
i0.ɵɵcontentQuery(dirIndex, DrChatMessageComponent, 4);
|
|
8817
8821
|
} if (rf & 2) {
|
|
@@ -8899,8 +8903,8 @@ class DrChatComponent {
|
|
|
8899
8903
|
args: [DrChatSuggestionsComponent]
|
|
8900
8904
|
}] }); })();
|
|
8901
8905
|
|
|
8902
|
-
const _c0$
|
|
8903
|
-
const _c1$
|
|
8906
|
+
const _c0$M = ["textAreaElement"];
|
|
8907
|
+
const _c1$i = ["fileInput"];
|
|
8904
8908
|
function DrChatFormDropdownComponent_dr_chat_dropped_files_3_Template(rf, ctx) { if (rf & 1) {
|
|
8905
8909
|
const _r7 = i0.ɵɵgetCurrentView();
|
|
8906
8910
|
i0.ɵɵelementStart(0, "dr-chat-dropped-files", 12);
|
|
@@ -9132,8 +9136,8 @@ class DrChatFormDropdownComponent {
|
|
|
9132
9136
|
}
|
|
9133
9137
|
/** @nocollapse */ static { this.ɵfac = function DrChatFormDropdownComponent_Factory(t) { return new (t || DrChatFormDropdownComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i1$3.DomSanitizer)); }; }
|
|
9134
9138
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChatFormDropdownComponent, selectors: [["dr-chat-form-dropdown"]], viewQuery: function DrChatFormDropdownComponent_Query(rf, ctx) { if (rf & 1) {
|
|
9135
|
-
i0.ɵɵviewQuery(_c0$
|
|
9136
|
-
i0.ɵɵviewQuery(_c1$
|
|
9139
|
+
i0.ɵɵviewQuery(_c0$M, 5);
|
|
9140
|
+
i0.ɵɵviewQuery(_c1$i, 5);
|
|
9137
9141
|
} if (rf & 2) {
|
|
9138
9142
|
let _t;
|
|
9139
9143
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.textAreaElementRef = _t.first);
|
|
@@ -9281,14 +9285,14 @@ class DrChatCustomMessageDirective {
|
|
|
9281
9285
|
type: Input
|
|
9282
9286
|
}] }); })();
|
|
9283
9287
|
|
|
9284
|
-
const _c0$
|
|
9288
|
+
const _c0$L = ["*"];
|
|
9285
9289
|
class DrChatAlertComponent {
|
|
9286
9290
|
constructor() {
|
|
9287
9291
|
this.iconClass = 'dr-icon-info';
|
|
9288
9292
|
this.close = new EventEmitter();
|
|
9289
9293
|
}
|
|
9290
9294
|
/** @nocollapse */ static { this.ɵfac = function DrChatAlertComponent_Factory(t) { return new (t || DrChatAlertComponent)(); }; }
|
|
9291
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChatAlertComponent, selectors: [["dr-chat-alert"]], inputs: { iconClass: "iconClass" }, outputs: { close: "close" }, ngContentSelectors: _c0$
|
|
9295
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChatAlertComponent, selectors: [["dr-chat-alert"]], inputs: { iconClass: "iconClass" }, outputs: { close: "close" }, ngContentSelectors: _c0$L, decls: 3, vars: 2, consts: [["theme", "icon", "icon", "dr-icon-exit", "drTooltip", "Close", 1, "chat-alert-close-btn", 3, "click"]], template: function DrChatAlertComponent_Template(rf, ctx) { if (rf & 1) {
|
|
9292
9296
|
i0.ɵɵprojectionDef();
|
|
9293
9297
|
i0.ɵɵelement(0, "i");
|
|
9294
9298
|
i0.ɵɵprojection(1);
|
|
@@ -9334,7 +9338,7 @@ function DrBadgeStatusComponent_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
9334
9338
|
i0.ɵɵadvance(1);
|
|
9335
9339
|
i0.ɵɵtextInterpolate(ctx_r1.label);
|
|
9336
9340
|
} }
|
|
9337
|
-
const _c0$
|
|
9341
|
+
const _c0$K = function (a0, a1) { return [a0, a1]; };
|
|
9338
9342
|
class DrBadgeStatusComponent {
|
|
9339
9343
|
constructor() {
|
|
9340
9344
|
this.theme = BadgeStatus.REGULAR;
|
|
@@ -9347,7 +9351,7 @@ class DrBadgeStatusComponent {
|
|
|
9347
9351
|
i0.ɵɵtemplate(2, DrBadgeStatusComponent_span_2_Template, 2, 1, "span", 2);
|
|
9348
9352
|
i0.ɵɵelementEnd();
|
|
9349
9353
|
} if (rf & 2) {
|
|
9350
|
-
i0.ɵɵproperty("drTooltip", ctx.tooltip)("drTooltipClass", ctx.tooltipClass)("ngClass", i0.ɵɵpureFunction2(5, _c0$
|
|
9354
|
+
i0.ɵɵproperty("drTooltip", ctx.tooltip)("drTooltipClass", ctx.tooltipClass)("ngClass", i0.ɵɵpureFunction2(5, _c0$K, "badge-status--" + ctx.theme, !ctx.showBackground ? "badge-status--no-background" : ""));
|
|
9351
9355
|
i0.ɵɵadvance(1);
|
|
9352
9356
|
i0.ɵɵproperty("ngIf", ctx.icon);
|
|
9353
9357
|
i0.ɵɵadvance(1);
|
|
@@ -9425,7 +9429,7 @@ function DrAlertComponent_i_6_Template(rf, ctx) { if (rf & 1) {
|
|
|
9425
9429
|
i0.ɵɵlistener("click", function DrAlertComponent_i_6_Template_i_click_0_listener() { i0.ɵɵrestoreView(_r7); const ctx_r6 = i0.ɵɵnextContext(); return i0.ɵɵresetView(ctx_r6.hidden = true); });
|
|
9426
9430
|
i0.ɵɵelementEnd();
|
|
9427
9431
|
} }
|
|
9428
|
-
const _c0$
|
|
9432
|
+
const _c0$J = ["*"];
|
|
9429
9433
|
const ALERT_THEME_ICONS = {
|
|
9430
9434
|
[DrAlertTheme.SUCCESS]: 'dr-icon-uploaded-success',
|
|
9431
9435
|
[DrAlertTheme.BOLD_ERROR]: 'dr-icon-error',
|
|
@@ -9449,7 +9453,7 @@ class DrAlertComponent {
|
|
|
9449
9453
|
/** @nocollapse */ static { this.ɵfac = function DrAlertComponent_Factory(t) { return new (t || DrAlertComponent)(); }; }
|
|
9450
9454
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrAlertComponent, selectors: [["dr-alert"]], hostVars: 2, hostBindings: function DrAlertComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
9451
9455
|
i0.ɵɵclassMap(ctx.elementClass);
|
|
9452
|
-
} }, inputs: { theme: "theme", customIconClass: "customIconClass", title: "title", text: "text", showClose: "showClose" }, ngContentSelectors: _c0$
|
|
9456
|
+
} }, inputs: { theme: "theme", customIconClass: "customIconClass", title: "title", text: "text", showClose: "showClose" }, ngContentSelectors: _c0$J, decls: 7, vars: 4, consts: [[1, "dr-alert__content-wrapper"], [4, "ngIf"], [1, "dr-alert__custom-content"], ["contentRef", ""], ["class", "dr-alert__close-icon dr-icon-exit", 3, "click", 4, "ngIf"], ["class", "dr-alert__title", 4, "ngIf"], ["class", "dr-alert__text", 4, "ngIf"], [1, "dr-alert__title"], [1, "dr-alert__text"], [1, "dr-alert__close-icon", "dr-icon-exit", 3, "click"]], template: function DrAlertComponent_Template(rf, ctx) { if (rf & 1) {
|
|
9453
9457
|
i0.ɵɵprojectionDef();
|
|
9454
9458
|
i0.ɵɵelement(0, "i");
|
|
9455
9459
|
i0.ɵɵelementStart(1, "div", 0);
|
|
@@ -9501,7 +9505,7 @@ class CodeEditorHintWrapperComponent {
|
|
|
9501
9505
|
}]
|
|
9502
9506
|
}], null, null); })();
|
|
9503
9507
|
|
|
9504
|
-
const _c0$
|
|
9508
|
+
const _c0$I = ["ref"];
|
|
9505
9509
|
class DrCodemirrorComponent {
|
|
9506
9510
|
set options(value) {
|
|
9507
9511
|
this._options = value;
|
|
@@ -9631,7 +9635,7 @@ class DrCodemirrorComponent {
|
|
|
9631
9635
|
}
|
|
9632
9636
|
/** @nocollapse */ static { this.ɵfac = function DrCodemirrorComponent_Factory(t) { return new (t || DrCodemirrorComponent)(i0.ɵɵdirectiveInject(i0.KeyValueDiffers), i0.ɵɵdirectiveInject(i0.NgZone)); }; }
|
|
9633
9637
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrCodemirrorComponent, selectors: [["dr-codemirror"]], viewQuery: function DrCodemirrorComponent_Query(rf, ctx) { if (rf & 1) {
|
|
9634
|
-
i0.ɵɵviewQuery(_c0$
|
|
9638
|
+
i0.ɵɵviewQuery(_c0$I, 5);
|
|
9635
9639
|
} if (rf & 2) {
|
|
9636
9640
|
let _t;
|
|
9637
9641
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.ref = _t.first);
|
|
@@ -9783,7 +9787,7 @@ class DrErrorComponent {
|
|
|
9783
9787
|
args: ['class.no-icon']
|
|
9784
9788
|
}] }); })();
|
|
9785
9789
|
|
|
9786
|
-
const _c0$
|
|
9790
|
+
const _c0$H = ["codeEditor"];
|
|
9787
9791
|
function DrCodeEditorComponent_span_2_Template(rf, ctx) { if (rf & 1) {
|
|
9788
9792
|
i0.ɵɵelementStart(0, "span", 4);
|
|
9789
9793
|
i0.ɵɵtext(1);
|
|
@@ -10062,7 +10066,7 @@ class DrCodeEditorComponent {
|
|
|
10062
10066
|
}
|
|
10063
10067
|
/** @nocollapse */ static { this.ɵfac = function DrCodeEditorComponent_Factory(t) { return new (t || DrCodeEditorComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ComponentFactoryResolver), i0.ɵɵdirectiveInject(i0.Injector)); }; }
|
|
10064
10068
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrCodeEditorComponent, selectors: [["dr-code-editor"]], viewQuery: function DrCodeEditorComponent_Query(rf, ctx) { if (rf & 1) {
|
|
10065
|
-
i0.ɵɵviewQuery(_c0$
|
|
10069
|
+
i0.ɵɵviewQuery(_c0$H, 5);
|
|
10066
10070
|
} if (rf & 2) {
|
|
10067
10071
|
let _t;
|
|
10068
10072
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.codeEditor = _t.first);
|
|
@@ -10079,11 +10083,11 @@ class DrCodeEditorComponent {
|
|
|
10079
10083
|
i0.ɵɵproperty("ngIf", !ctx.isFocused && !ctx.innerValue);
|
|
10080
10084
|
i0.ɵɵadvance(1);
|
|
10081
10085
|
i0.ɵɵproperty("control", ctx.control)("displayAsLabel", true);
|
|
10082
|
-
} }, dependencies: [i1.NgIf, i2.NgControlStatus, i2.NgModel, DrErrorComponent, DrCodemirrorComponent], styles: ["dr-codemirror[_ngcontent-%COMP%] .CodeMirror{height:10rem;border:1px solid #9ea1aa;border-radius:6px}dr-codemirror[_ngcontent-%COMP%] .CodeMirror-focused{border-color:#4646ce!important}dr-codemirror[_ngcontent-%COMP%] .CodeMirror-line{font-size:12px;line-height:16px;font-weight:400}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .CodeMirror-scroll{padding:0}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .marker{color:#fff;background:#20a452}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .marker:first-child, dr-codemirror[_ngcontent-%COMP%] .CodeMirror .cm-variable:not(.marker)+.marker{padding-left:2px;margin-left:2px}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .marker+.cm-variable:not(.marker){margin-left:2px}dr-codemirror[_ngcontent-%COMP%] .CodeMirror-matchingbracket{color:#0f0!important}[_nghost-%COMP%] {position:relative}[_nghost-%COMP%] .mirror-error .CodeMirror{border:1px solid #bf1d30}[_nghost-%COMP%] .mark-hints .hint-variable{color:#4646ce}dr-error[_ngcontent-%COMP%]{position:absolute;bottom:5px;left:7px;background:#fff;margin:0}dr-error[_ngcontent-%COMP%]:not(:last-child){display:none}.codemirror-placeholder[_ngcontent-%COMP%]{color:#6d6e6f;position:absolute;top:10px;left:10px;font-size:12px;pointer-events:none;white-space:pre} .CodeMirror-hints{background:#fff;border:1px solid #e5e6ea;box-shadow:0 4px 8px 1px #00000040;border-radius:6px;z-index:100;padding:8px 0} .CodeMirror-hints .CodeMirror-hint{font-size:12px;line-height:16px;font-weight:400;padding:0 12px;display:flex;align-items:center;height:32px;background:#fff;color:#333} .CodeMirror-hints .CodeMirror-hint, .CodeMirror-hints .CodeMirror-hint-active{background:#fff;color:#333} .CodeMirror-hints:not(:hover) .CodeMirror-hint-active, .CodeMirror-hints .CodeMirror-hint:hover{background:#eaeaff;cursor:pointer}"], changeDetection: 0 }); }
|
|
10086
|
+
} }, dependencies: [i1.NgIf, i2.NgControlStatus, i2.NgModel, DrErrorComponent, DrCodemirrorComponent], styles: ["dr-codemirror[_ngcontent-%COMP%] .CodeMirror{height:10rem;border:1px solid #9ea1aa;border-radius:6px}dr-codemirror[_ngcontent-%COMP%] .CodeMirror-focused{border-color:#4646ce!important}dr-codemirror[_ngcontent-%COMP%] .CodeMirror-line{font-size:12px;line-height:16px;font-weight:400}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .CodeMirror-scroll{padding:0}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .marker{color:#fff;background:#20a452}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .marker:first-child, dr-codemirror[_ngcontent-%COMP%] .CodeMirror .cm-variable:not(.marker)+.marker{padding-left:2px;margin-left:2px}dr-codemirror[_ngcontent-%COMP%] .CodeMirror .marker+.cm-variable:not(.marker){margin-left:2px}dr-codemirror[_ngcontent-%COMP%] .CodeMirror-matchingbracket{color:#0f0!important}[_nghost-%COMP%] {position:relative}[_nghost-%COMP%] .mirror-error .CodeMirror{border:1px solid #bf1d30}[_nghost-%COMP%] .mark-hints .hint-variable{color:#4646ce}dr-error[_ngcontent-%COMP%]{position:absolute;bottom:5px;left:7px;background:#fff;margin:0;width:calc(100% - 9px)}dr-error[_ngcontent-%COMP%]:not(:last-child){display:none}.codemirror-placeholder[_ngcontent-%COMP%]{color:#6d6e6f;position:absolute;top:10px;left:10px;font-size:12px;pointer-events:none;white-space:pre} .CodeMirror-hints{background:#fff;border:1px solid #e5e6ea;box-shadow:0 4px 8px 1px #00000040;border-radius:6px;z-index:100;padding:8px 0} .CodeMirror-hints .CodeMirror-hint{font-size:12px;line-height:16px;font-weight:400;padding:0 12px;display:flex;align-items:center;height:32px;background:#fff;color:#333} .CodeMirror-hints .CodeMirror-hint, .CodeMirror-hints .CodeMirror-hint-active{background:#fff;color:#333} .CodeMirror-hints:not(:hover) .CodeMirror-hint-active, .CodeMirror-hints .CodeMirror-hint:hover{background:#eaeaff;cursor:pointer}"], changeDetection: 0 }); }
|
|
10083
10087
|
}
|
|
10084
10088
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrCodeEditorComponent, [{
|
|
10085
10089
|
type: Component,
|
|
10086
|
-
args: [{ selector: 'dr-code-editor', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef((() => DrCodeEditorComponent)), multi: true }], template: "<dr-codemirror\n #codeEditor\n [(ngModel)]=\"value\"\n [options]=\"codeMirrorOptions\"\n [class.mark-hints]=\"highlightHints\"\n [class.mirror-error]=\"control.status === 'INVALID' && !control.pristine\"\n (focusChange)=\"focusChanged($event)\"\n (codeMirrorLoaded)=\"afterCodeMirrorLoaded()\"></dr-codemirror>\n<span *ngIf=\"!isFocused && !innerValue\" class=\"codemirror-placeholder\">{{ placeholder }}</span>\n<dr-error [control]=\"control\" [displayAsLabel]=\"true\"></dr-error>\n", styles: ["dr-codemirror ::ng-deep .CodeMirror{height:10rem;border:1px solid #9ea1aa;border-radius:6px}dr-codemirror ::ng-deep .CodeMirror-focused{border-color:#4646ce!important}dr-codemirror ::ng-deep .CodeMirror-line{font-size:12px;line-height:16px;font-weight:400}dr-codemirror ::ng-deep .CodeMirror .CodeMirror-scroll{padding:0}dr-codemirror ::ng-deep .CodeMirror .marker{color:#fff;background:#20a452}dr-codemirror ::ng-deep .CodeMirror .marker:first-child,dr-codemirror ::ng-deep .CodeMirror .cm-variable:not(.marker)+.marker{padding-left:2px;margin-left:2px}dr-codemirror ::ng-deep .CodeMirror .marker+.cm-variable:not(.marker){margin-left:2px}dr-codemirror ::ng-deep .CodeMirror-matchingbracket{color:#0f0!important}:host::ng-deep{position:relative}:host::ng-deep .mirror-error .CodeMirror{border:1px solid #bf1d30}:host::ng-deep .mark-hints .hint-variable{color:#4646ce}dr-error{position:absolute;bottom:5px;left:7px;background:#fff;margin:0}dr-error:not(:last-child){display:none}.codemirror-placeholder{color:#6d6e6f;position:absolute;top:10px;left:10px;font-size:12px;pointer-events:none;white-space:pre}::ng-deep .CodeMirror-hints{background:#fff;border:1px solid #e5e6ea;box-shadow:0 4px 8px 1px #00000040;border-radius:6px;z-index:100;padding:8px 0}::ng-deep .CodeMirror-hints .CodeMirror-hint{font-size:12px;line-height:16px;font-weight:400;padding:0 12px;display:flex;align-items:center;height:32px;background:#fff;color:#333}::ng-deep .CodeMirror-hints .CodeMirror-hint,::ng-deep .CodeMirror-hints .CodeMirror-hint-active{background:#fff;color:#333}::ng-deep .CodeMirror-hints:not(:hover) .CodeMirror-hint-active,::ng-deep .CodeMirror-hints .CodeMirror-hint:hover{background:#eaeaff;cursor:pointer}\n"] }]
|
|
10090
|
+
args: [{ selector: 'dr-code-editor', changeDetection: ChangeDetectionStrategy.OnPush, providers: [{ provide: NG_VALUE_ACCESSOR, useExisting: forwardRef((() => DrCodeEditorComponent)), multi: true }], template: "<dr-codemirror\n #codeEditor\n [(ngModel)]=\"value\"\n [options]=\"codeMirrorOptions\"\n [class.mark-hints]=\"highlightHints\"\n [class.mirror-error]=\"control.status === 'INVALID' && !control.pristine\"\n (focusChange)=\"focusChanged($event)\"\n (codeMirrorLoaded)=\"afterCodeMirrorLoaded()\"></dr-codemirror>\n<span *ngIf=\"!isFocused && !innerValue\" class=\"codemirror-placeholder\">{{ placeholder }}</span>\n<dr-error [control]=\"control\" [displayAsLabel]=\"true\"></dr-error>\n", styles: ["dr-codemirror ::ng-deep .CodeMirror{height:10rem;border:1px solid #9ea1aa;border-radius:6px}dr-codemirror ::ng-deep .CodeMirror-focused{border-color:#4646ce!important}dr-codemirror ::ng-deep .CodeMirror-line{font-size:12px;line-height:16px;font-weight:400}dr-codemirror ::ng-deep .CodeMirror .CodeMirror-scroll{padding:0}dr-codemirror ::ng-deep .CodeMirror .marker{color:#fff;background:#20a452}dr-codemirror ::ng-deep .CodeMirror .marker:first-child,dr-codemirror ::ng-deep .CodeMirror .cm-variable:not(.marker)+.marker{padding-left:2px;margin-left:2px}dr-codemirror ::ng-deep .CodeMirror .marker+.cm-variable:not(.marker){margin-left:2px}dr-codemirror ::ng-deep .CodeMirror-matchingbracket{color:#0f0!important}:host::ng-deep{position:relative}:host::ng-deep .mirror-error .CodeMirror{border:1px solid #bf1d30}:host::ng-deep .mark-hints .hint-variable{color:#4646ce}dr-error{position:absolute;bottom:5px;left:7px;background:#fff;margin:0;width:calc(100% - 9px)}dr-error:not(:last-child){display:none}.codemirror-placeholder{color:#6d6e6f;position:absolute;top:10px;left:10px;font-size:12px;pointer-events:none;white-space:pre}::ng-deep .CodeMirror-hints{background:#fff;border:1px solid #e5e6ea;box-shadow:0 4px 8px 1px #00000040;border-radius:6px;z-index:100;padding:8px 0}::ng-deep .CodeMirror-hints .CodeMirror-hint{font-size:12px;line-height:16px;font-weight:400;padding:0 12px;display:flex;align-items:center;height:32px;background:#fff;color:#333}::ng-deep .CodeMirror-hints .CodeMirror-hint,::ng-deep .CodeMirror-hints .CodeMirror-hint-active{background:#fff;color:#333}::ng-deep .CodeMirror-hints:not(:hover) .CodeMirror-hint-active,::ng-deep .CodeMirror-hints .CodeMirror-hint:hover{background:#eaeaff;cursor:pointer}\n"] }]
|
|
10087
10091
|
}], function () { return [{ type: i0.ChangeDetectorRef }, { type: i0.ComponentFactoryResolver }, { type: i0.Injector }]; }, { markers: [{
|
|
10088
10092
|
type: Input
|
|
10089
10093
|
}], highlightHints: [{
|
|
@@ -10146,7 +10150,7 @@ const getAlignmentDimension = (position) => {
|
|
|
10146
10150
|
return DrPopoverAlignmentDimension.Width;
|
|
10147
10151
|
};
|
|
10148
10152
|
|
|
10149
|
-
const _c0$
|
|
10153
|
+
const _c0$G = ["popoverContainer"];
|
|
10150
10154
|
function DrPopoverComponent_ng_container_2_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
10151
10155
|
i0.ɵɵelementContainer(0);
|
|
10152
10156
|
} }
|
|
@@ -10236,7 +10240,7 @@ class DrPopoverComponent {
|
|
|
10236
10240
|
}
|
|
10237
10241
|
/** @nocollapse */ static { this.ɵfac = function DrPopoverComponent_Factory(t) { return new (t || DrPopoverComponent)(i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ViewContainerRef), i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(DrPopoverRef)); }; }
|
|
10238
10242
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrPopoverComponent, selectors: [["dr-popover"]], viewQuery: function DrPopoverComponent_Query(rf, ctx) { if (rf & 1) {
|
|
10239
|
-
i0.ɵɵviewQuery(_c0$
|
|
10243
|
+
i0.ɵɵviewQuery(_c0$G, 7, ElementRef);
|
|
10240
10244
|
} if (rf & 2) {
|
|
10241
10245
|
let _t;
|
|
10242
10246
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.popoverContainer = _t.first);
|
|
@@ -10560,7 +10564,7 @@ var __decorate$1 = (this && this.__decorate) || function (decorators, target, ke
|
|
|
10560
10564
|
var __metadata$1 = (this && this.__metadata) || function (k, v) {
|
|
10561
10565
|
if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
|
|
10562
10566
|
};
|
|
10563
|
-
const _c0$
|
|
10567
|
+
const _c0$F = ["menuContainer"];
|
|
10564
10568
|
function DrDropdownComponent_dr_dropdown_item_4_ng_container_1_i_1_Template(rf, ctx) { if (rf & 1) {
|
|
10565
10569
|
i0.ɵɵelement(0, "i", 11);
|
|
10566
10570
|
} if (rf & 2) {
|
|
@@ -10610,12 +10614,12 @@ function DrDropdownComponent_dr_dropdown_item_4_ng_container_2_Template(rf, ctx)
|
|
|
10610
10614
|
i0.ɵɵadvance(1);
|
|
10611
10615
|
i0.ɵɵproperty("ngIf", ctx_r5.hasChildren(act_r2));
|
|
10612
10616
|
} }
|
|
10613
|
-
const _c1$
|
|
10617
|
+
const _c1$h = function (a0) { return { $implicit: a0 }; };
|
|
10614
10618
|
function DrDropdownComponent_dr_dropdown_item_4_ng_container_3_Template(rf, ctx) { if (rf & 1) {
|
|
10615
10619
|
i0.ɵɵelementContainer(0, 17);
|
|
10616
10620
|
} if (rf & 2) {
|
|
10617
10621
|
const act_r2 = i0.ɵɵnextContext().$implicit;
|
|
10618
|
-
i0.ɵɵproperty("ngTemplateOutlet", act_r2.templateRef)("ngTemplateOutletContext", i0.ɵɵpureFunction1(2, _c1$
|
|
10622
|
+
i0.ɵɵproperty("ngTemplateOutlet", act_r2.templateRef)("ngTemplateOutletContext", i0.ɵɵpureFunction1(2, _c1$h, act_r2));
|
|
10619
10623
|
} }
|
|
10620
10624
|
function DrDropdownComponent_dr_dropdown_item_4_Template(rf, ctx) { if (rf & 1) {
|
|
10621
10625
|
const _r20 = i0.ɵɵgetCurrentView();
|
|
@@ -10791,7 +10795,7 @@ class DrDropdownComponent {
|
|
|
10791
10795
|
}
|
|
10792
10796
|
/** @nocollapse */ static { this.ɵfac = function DrDropdownComponent_Factory(t) { return new (t || DrDropdownComponent)(); }; }
|
|
10793
10797
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrDropdownComponent, selectors: [["dr-dropdown"]], viewQuery: function DrDropdownComponent_Query(rf, ctx) { if (rf & 1) {
|
|
10794
|
-
i0.ɵɵviewQuery(_c0$
|
|
10798
|
+
i0.ɵɵviewQuery(_c0$F, 7);
|
|
10795
10799
|
} if (rf & 2) {
|
|
10796
10800
|
let _t;
|
|
10797
10801
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.menuContainer = _t.first);
|
|
@@ -11030,8 +11034,8 @@ class DrDropdownChildDirective {
|
|
|
11030
11034
|
}]
|
|
11031
11035
|
}], null, null); })();
|
|
11032
11036
|
|
|
11033
|
-
const _c0$
|
|
11034
|
-
const _c1$
|
|
11037
|
+
const _c0$E = [[["", "dropdownItemContent", ""]], [["", "dropdownItemActions", ""]]];
|
|
11038
|
+
const _c1$g = ["[dropdownItemContent]", "[dropdownItemActions]"];
|
|
11035
11039
|
class DrDropdownItemComponent {
|
|
11036
11040
|
constructor() {
|
|
11037
11041
|
this.role = 'option';
|
|
@@ -11039,8 +11043,8 @@ class DrDropdownItemComponent {
|
|
|
11039
11043
|
/** @nocollapse */ static { this.ɵfac = function DrDropdownItemComponent_Factory(t) { return new (t || DrDropdownItemComponent)(); }; }
|
|
11040
11044
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrDropdownItemComponent, selectors: [["dr-dropdown-item"]], hostVars: 1, hostBindings: function DrDropdownItemComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
11041
11045
|
i0.ɵɵattribute("role", ctx.role);
|
|
11042
|
-
} }, inputs: { selected: "selected", disabled: "disabled", divider: "divider" }, ngContentSelectors: _c1$
|
|
11043
|
-
i0.ɵɵprojectionDef(_c0$
|
|
11046
|
+
} }, inputs: { selected: "selected", disabled: "disabled", divider: "divider" }, ngContentSelectors: _c1$g, decls: 5, vars: 6, consts: [[1, "dr-dropdown-item"], [1, "dr-dropdown-text"], [1, "dr-dropdown-actions"]], template: function DrDropdownItemComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11047
|
+
i0.ɵɵprojectionDef(_c0$E);
|
|
11044
11048
|
i0.ɵɵelementStart(0, "div", 0)(1, "span", 1);
|
|
11045
11049
|
i0.ɵɵprojection(2);
|
|
11046
11050
|
i0.ɵɵelementEnd();
|
|
@@ -11082,7 +11086,7 @@ class DrDropdownItemShowPipe {
|
|
|
11082
11086
|
function DrTabComponent_ng_template_0_Template(rf, ctx) { if (rf & 1) {
|
|
11083
11087
|
i0.ɵɵprojection(0);
|
|
11084
11088
|
} }
|
|
11085
|
-
const _c0$
|
|
11089
|
+
const _c0$D = ["*"];
|
|
11086
11090
|
class DrTabComponent {
|
|
11087
11091
|
constructor() { }
|
|
11088
11092
|
ngOnInit() { }
|
|
@@ -11092,7 +11096,7 @@ class DrTabComponent {
|
|
|
11092
11096
|
} if (rf & 2) {
|
|
11093
11097
|
let _t;
|
|
11094
11098
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.contentTemplate = _t.first);
|
|
11095
|
-
} }, inputs: { id: "id", label: "label", icon: "icon", disabled: "disabled", tooltip: "tooltip", customLabelTemplate: "customLabelTemplate" }, ngContentSelectors: _c0$
|
|
11099
|
+
} }, inputs: { id: "id", label: "label", icon: "icon", disabled: "disabled", tooltip: "tooltip", customLabelTemplate: "customLabelTemplate" }, ngContentSelectors: _c0$D, decls: 1, vars: 0, template: function DrTabComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11096
11100
|
i0.ɵɵprojectionDef();
|
|
11097
11101
|
i0.ɵɵtemplate(0, DrTabComponent_ng_template_0_Template, 1, 0, "ng-template");
|
|
11098
11102
|
} }, encapsulation: 2 }); }
|
|
@@ -11367,8 +11371,8 @@ class DrTabsComponent {
|
|
|
11367
11371
|
args: [DrTabComponent]
|
|
11368
11372
|
}] }); })();
|
|
11369
11373
|
|
|
11370
|
-
const _c0$
|
|
11371
|
-
const _c1$
|
|
11374
|
+
const _c0$C = [[["dr-accordion-item"]]];
|
|
11375
|
+
const _c1$f = ["dr-accordion-item"];
|
|
11372
11376
|
class DrAccordionComponent {
|
|
11373
11377
|
constructor() {
|
|
11374
11378
|
this.openCloseItems = new Subject();
|
|
@@ -11401,8 +11405,8 @@ class DrAccordionComponent {
|
|
|
11401
11405
|
/** @nocollapse */ static { this.ɵfac = function DrAccordionComponent_Factory(t) { return new (t || DrAccordionComponent)(); }; }
|
|
11402
11406
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrAccordionComponent, selectors: [["dr-accordion"]], hostVars: 2, hostBindings: function DrAccordionComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
11403
11407
|
i0.ɵɵclassMap(ctx.theme);
|
|
11404
|
-
} }, inputs: { multi: "multi", theme: "theme" }, ngContentSelectors: _c1$
|
|
11405
|
-
i0.ɵɵprojectionDef(_c0$
|
|
11408
|
+
} }, inputs: { multi: "multi", theme: "theme" }, ngContentSelectors: _c1$f, decls: 1, vars: 0, template: function DrAccordionComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11409
|
+
i0.ɵɵprojectionDef(_c0$C);
|
|
11406
11410
|
i0.ɵɵprojection(0);
|
|
11407
11411
|
} }, styles: ["[_nghost-%COMP%]{display:block;box-shadow:#2c33491a 0 5px 10px}.borderless[_nghost-%COMP%]{box-shadow:none}"], changeDetection: 0 }); }
|
|
11408
11412
|
}
|
|
@@ -11419,8 +11423,8 @@ class DrAccordionComponent {
|
|
|
11419
11423
|
args: ['class']
|
|
11420
11424
|
}] }); })();
|
|
11421
11425
|
|
|
11422
|
-
const _c0$
|
|
11423
|
-
const _c1$
|
|
11426
|
+
const _c0$B = [[["dr-accordion-item-header"]], [["dr-accordion-item-body"]]];
|
|
11427
|
+
const _c1$e = ["dr-accordion-item-header", "dr-accordion-item-body"];
|
|
11424
11428
|
class DrAccordionItemComponent {
|
|
11425
11429
|
/**
|
|
11426
11430
|
* Item is collapse (`true` by default)
|
|
@@ -11520,8 +11524,8 @@ class DrAccordionItemComponent {
|
|
|
11520
11524
|
/** @nocollapse */ static { this.ɵfac = function DrAccordionItemComponent_Factory(t) { return new (t || DrAccordionItemComponent)(i0.ɵɵdirectiveInject(DrAccordionComponent, 1), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
11521
11525
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrAccordionItemComponent, selectors: [["dr-accordion-item"]], hostVars: 6, hostBindings: function DrAccordionItemComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
11522
11526
|
i0.ɵɵclassProp("collapsed", ctx.collapsed)("expanded", ctx.expanded)("disabled", ctx.disabled);
|
|
11523
|
-
} }, inputs: { collapsed: "collapsed", expanded: "expanded", disabled: "disabled" }, outputs: { collapsedChange: "collapsedChange" }, features: [i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c1$
|
|
11524
|
-
i0.ɵɵprojectionDef(_c0$
|
|
11527
|
+
} }, inputs: { collapsed: "collapsed", expanded: "expanded", disabled: "disabled" }, outputs: { collapsedChange: "collapsedChange" }, features: [i0.ɵɵNgOnChangesFeature], ngContentSelectors: _c1$e, decls: 2, vars: 0, template: function DrAccordionItemComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11528
|
+
i0.ɵɵprojectionDef(_c0$B);
|
|
11525
11529
|
i0.ɵɵprojection(0);
|
|
11526
11530
|
i0.ɵɵprojection(1, 1);
|
|
11527
11531
|
} }, styles: ["[_nghost-%COMP%]{background-color:#fff;color:#222b45;font-family:Poppins,sans-serif;font-size:16px;font-weight:400;line-height:1.25rem;display:flex;flex-direction:column}"], changeDetection: 0 }); }
|
|
@@ -11563,8 +11567,8 @@ function DrAccordionItemHeaderComponent_i_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
11563
11567
|
i0.ɵɵclassMap("dr-accordion-item-header-icon " + ctx_r0.icon);
|
|
11564
11568
|
i0.ɵɵclassProp("dr-accordion-item-header-icon--additional-padding", ctx_r0.chevronPosition === "left");
|
|
11565
11569
|
} }
|
|
11566
|
-
const _c0$
|
|
11567
|
-
const _c1$
|
|
11570
|
+
const _c0$A = function (a0) { return { rotationDegree: a0 }; };
|
|
11571
|
+
const _c1$d = function (a0, a1) { return { value: a0, params: a1 }; };
|
|
11568
11572
|
function DrAccordionItemHeaderComponent_i_1_Template(rf, ctx) { if (rf & 1) {
|
|
11569
11573
|
const _r3 = i0.ɵɵgetCurrentView();
|
|
11570
11574
|
i0.ɵɵelementStart(0, "i", 2);
|
|
@@ -11573,7 +11577,7 @@ function DrAccordionItemHeaderComponent_i_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
11573
11577
|
} if (rf & 2) {
|
|
11574
11578
|
const ctx_r1 = i0.ɵɵnextContext();
|
|
11575
11579
|
i0.ɵɵclassMap(ctx_r1.chevronIconClass);
|
|
11576
|
-
i0.ɵɵproperty("@expansionIndicator", i0.ɵɵpureFunction2(5, _c1$
|
|
11580
|
+
i0.ɵɵproperty("@expansionIndicator", i0.ɵɵpureFunction2(5, _c1$d, ctx_r1.state, i0.ɵɵpureFunction1(3, _c0$A, ctx_r1.chevronRotationDegree)));
|
|
11577
11581
|
} }
|
|
11578
11582
|
const _c2$4 = [[["dr-accordion-item-title"]], [["dr-accordion-item-description"]], "*"];
|
|
11579
11583
|
const _c3$2 = ["dr-accordion-item-title", "dr-accordion-item-description", "*"];
|
|
@@ -11702,8 +11706,8 @@ class DrAccordionItemHeaderComponent {
|
|
|
11702
11706
|
args: ['keydown.enter']
|
|
11703
11707
|
}] }); })();
|
|
11704
11708
|
|
|
11705
|
-
const _c0$
|
|
11706
|
-
const _c1$
|
|
11709
|
+
const _c0$z = function (a0) { return { value: a0 }; };
|
|
11710
|
+
const _c1$c = ["*"];
|
|
11707
11711
|
const accordionItemBodyTrigger = trigger('accordionItemBody', [
|
|
11708
11712
|
state('collapsed', style({
|
|
11709
11713
|
overflow: 'hidden',
|
|
@@ -11734,13 +11738,13 @@ class DrAccordionItemBodyComponent {
|
|
|
11734
11738
|
this.destroy$.complete();
|
|
11735
11739
|
}
|
|
11736
11740
|
/** @nocollapse */ static { this.ɵfac = function DrAccordionItemBodyComponent_Factory(t) { return new (t || DrAccordionItemBodyComponent)(i0.ɵɵdirectiveInject(DrAccordionItemComponent, 1), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef)); }; }
|
|
11737
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrAccordionItemBodyComponent, selectors: [["dr-accordion-item-body"]], ngContentSelectors: _c1$
|
|
11741
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrAccordionItemBodyComponent, selectors: [["dr-accordion-item-body"]], ngContentSelectors: _c1$c, decls: 3, vars: 3, consts: [[1, "item-body"]], template: function DrAccordionItemBodyComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11738
11742
|
i0.ɵɵprojectionDef();
|
|
11739
11743
|
i0.ɵɵelementStart(0, "div")(1, "div", 0);
|
|
11740
11744
|
i0.ɵɵprojection(2);
|
|
11741
11745
|
i0.ɵɵelementEnd()();
|
|
11742
11746
|
} if (rf & 2) {
|
|
11743
|
-
i0.ɵɵproperty("@accordionItemBody", i0.ɵɵpureFunction1(1, _c0$
|
|
11747
|
+
i0.ɵɵproperty("@accordionItemBody", i0.ɵɵpureFunction1(1, _c0$z, ctx.state));
|
|
11744
11748
|
} }, styles: [".item-body[_ngcontent-%COMP%]{flex:1;-ms-flex:1 1 auto;overflow:auto;position:relative}"], data: { animation: [accordionItemBodyTrigger] }, changeDetection: 0 }); }
|
|
11745
11749
|
}
|
|
11746
11750
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrAccordionItemBodyComponent, [{
|
|
@@ -11756,13 +11760,13 @@ class DrAccordionItemBodyComponent {
|
|
|
11756
11760
|
type: Host
|
|
11757
11761
|
}] }, { type: i0.ChangeDetectorRef }]; }, null); })();
|
|
11758
11762
|
|
|
11759
|
-
const _c0$
|
|
11760
|
-
const _c1$
|
|
11763
|
+
const _c0$y = [[["dr-layout-header"]], [["dr-layout-body"]]];
|
|
11764
|
+
const _c1$b = ["dr-layout-header", "dr-layout-body"];
|
|
11761
11765
|
class DrLayoutComponent {
|
|
11762
11766
|
constructor() { }
|
|
11763
11767
|
/** @nocollapse */ static { this.ɵfac = function DrLayoutComponent_Factory(t) { return new (t || DrLayoutComponent)(); }; }
|
|
11764
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrLayoutComponent, selectors: [["dr-layout"]], ngContentSelectors: _c1$
|
|
11765
|
-
i0.ɵɵprojectionDef(_c0$
|
|
11768
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrLayoutComponent, selectors: [["dr-layout"]], ngContentSelectors: _c1$b, decls: 6, vars: 0, consts: [[1, "dr-layout"], [1, "dr-layout__container"], [1, "content"], [1, "columns"]], template: function DrLayoutComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11769
|
+
i0.ɵɵprojectionDef(_c0$y);
|
|
11766
11770
|
i0.ɵɵelementStart(0, "div", 0);
|
|
11767
11771
|
i0.ɵɵprojection(1);
|
|
11768
11772
|
i0.ɵɵelementStart(2, "div", 1)(3, "div", 2)(4, "div", 3);
|
|
@@ -11775,11 +11779,11 @@ class DrLayoutComponent {
|
|
|
11775
11779
|
args: [{ selector: 'dr-layout', template: "<div class=\"dr-layout\">\n <ng-content select=\"dr-layout-header\"></ng-content>\n <div class=\"dr-layout__container\">\n <div class=\"content\">\n <div class=\"columns\">\n <ng-content select=\"dr-layout-body\"></ng-content>\n </div>\n </div>\n </div>\n</div>\n", styles: [":host{font-size:16px;font-weight:400;font-family:Poppins,sans-serif;line-height:1.25rem;-webkit-font-smoothing:antialiased}:host .dr-layout{display:flex;flex-direction:column;min-height:100vh;font-size:16px;font-weight:400;line-height:1.4rem}:host .dr-layout ::ng-deep dr-layout-header{display:block;position:fixed;top:0;left:0;right:0;z-index:1040}:host .dr-layout ::ng-deep dr-layout-header nav{align-items:center;justify-content:flex-start;display:flex}:host .dr-layout__container{display:flex;flex:1;-ms-flex:1 1 auto;flex-direction:row}:host .dr-layout__container .content{display:flex;flex:1;-ms-flex:1 1 auto;flex-direction:column;min-width:0}:host .dr-layout__container .content .columns{display:flex;flex:1;-ms-flex:1 1 auto;flex-direction:row;width:100%}:host .dr-layout__container .content .columns ::ng-deep dr-layout-body{flex:1 0;min-width:0}\n"] }]
|
|
11776
11780
|
}], function () { return []; }, null); })();
|
|
11777
11781
|
|
|
11778
|
-
const _c0$
|
|
11782
|
+
const _c0$x = ["*"];
|
|
11779
11783
|
class DrLayoutHeaderComponent {
|
|
11780
11784
|
constructor() { }
|
|
11781
11785
|
/** @nocollapse */ static { this.ɵfac = function DrLayoutHeaderComponent_Factory(t) { return new (t || DrLayoutHeaderComponent)(); }; }
|
|
11782
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrLayoutHeaderComponent, selectors: [["dr-layout-header"]], ngContentSelectors: _c0$
|
|
11786
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrLayoutHeaderComponent, selectors: [["dr-layout-header"]], ngContentSelectors: _c0$x, decls: 2, vars: 0, template: function DrLayoutHeaderComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11783
11787
|
i0.ɵɵprojectionDef();
|
|
11784
11788
|
i0.ɵɵelementStart(0, "nav");
|
|
11785
11789
|
i0.ɵɵprojection(1);
|
|
@@ -11798,11 +11802,11 @@ class DrLayoutHeaderComponent {
|
|
|
11798
11802
|
}]
|
|
11799
11803
|
}], function () { return []; }, null); })();
|
|
11800
11804
|
|
|
11801
|
-
const _c0$
|
|
11805
|
+
const _c0$w = ["*"];
|
|
11802
11806
|
class DrLayoutBodyComponent {
|
|
11803
11807
|
constructor() { }
|
|
11804
11808
|
/** @nocollapse */ static { this.ɵfac = function DrLayoutBodyComponent_Factory(t) { return new (t || DrLayoutBodyComponent)(); }; }
|
|
11805
|
-
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrLayoutBodyComponent, selectors: [["dr-layout-body"]], ngContentSelectors: _c0$
|
|
11809
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrLayoutBodyComponent, selectors: [["dr-layout-body"]], ngContentSelectors: _c0$w, decls: 1, vars: 0, template: function DrLayoutBodyComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11806
11810
|
i0.ɵɵprojectionDef();
|
|
11807
11811
|
i0.ɵɵprojection(0);
|
|
11808
11812
|
} }, encapsulation: 2 }); }
|
|
@@ -11888,8 +11892,8 @@ function DrEmptyStateComponent_p_5_Template(rf, ctx) { if (rf & 1) {
|
|
|
11888
11892
|
i0.ɵɵadvance(1);
|
|
11889
11893
|
i0.ɵɵtextInterpolate(ctx_r2.description);
|
|
11890
11894
|
} }
|
|
11891
|
-
const _c0$
|
|
11892
|
-
const _c1$
|
|
11895
|
+
const _c0$v = [[["dr-empty-state-media"], ["", "dr-empty-state-media", ""], ["", "drEmptyStateMedia", ""]], [["dr-empty-state-title"], ["", "dr-empty-state-title", ""], ["", "drEmptyStateTitle", ""]], [["dr-empty-state-description"], ["", "dr-empty-state-description", ""], ["", "drEmptyStateDescription", ""]]];
|
|
11896
|
+
const _c1$a = ["dr-empty-state-media, [dr-empty-state-media], [drEmptyStateMedia]", "dr-empty-state-title, [dr-empty-state-title], [drEmptyStateTitle]", "dr-empty-state-description, [dr-empty-state-description], [drEmptyStateDescription]"];
|
|
11893
11897
|
class DrEmptyStateComponent {
|
|
11894
11898
|
constructor() {
|
|
11895
11899
|
this.title = '';
|
|
@@ -11927,8 +11931,8 @@ class DrEmptyStateComponent {
|
|
|
11927
11931
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.projectedMedia = _t.first);
|
|
11928
11932
|
} }, hostAttrs: [1, "dr-empty-state"], hostVars: 4, hostBindings: function DrEmptyStateComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
11929
11933
|
i0.ɵɵattribute("role", ctx.role)("aria-live", ctx.ariaLive)("aria-atomic", ctx.ariaAtomic)("aria-label", ctx.ariaLabelAttr);
|
|
11930
|
-
} }, inputs: { title: "title", description: "description", illustrationUrl: "illustrationUrl", illustrationAlt: "illustrationAlt", ariaLabel: "ariaLabel" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$
|
|
11931
|
-
i0.ɵɵprojectionDef(_c0$
|
|
11934
|
+
} }, inputs: { title: "title", description: "description", illustrationUrl: "illustrationUrl", illustrationAlt: "illustrationAlt", ariaLabel: "ariaLabel" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$a, decls: 6, vars: 3, consts: [["class", "dr-empty-state__illustration", 3, "src", 4, "ngIf"], ["class", "dr-empty-state__title", 4, "ngIf"], ["class", "dr-empty-state__description", 4, "ngIf"], [1, "dr-empty-state__illustration", 3, "src"], [1, "dr-empty-state__title"], [1, "dr-empty-state__description"]], template: function DrEmptyStateComponent_Template(rf, ctx) { if (rf & 1) {
|
|
11935
|
+
i0.ɵɵprojectionDef(_c0$v);
|
|
11932
11936
|
i0.ɵɵprojection(0);
|
|
11933
11937
|
i0.ɵɵtemplate(1, DrEmptyStateComponent_img_1_Template, 1, 3, "img", 0);
|
|
11934
11938
|
i0.ɵɵprojection(2, 1);
|
|
@@ -12017,7 +12021,7 @@ function DrDetailsListComponent_li_5_Template(rf, ctx) { if (rf & 1) {
|
|
|
12017
12021
|
i0.ɵɵadvance(1);
|
|
12018
12022
|
i0.ɵɵtextInterpolate(item_r1);
|
|
12019
12023
|
} }
|
|
12020
|
-
const _c0$
|
|
12024
|
+
const _c0$u = function (a0) { return { value: a0 }; };
|
|
12021
12025
|
class DrDetailsListComponent {
|
|
12022
12026
|
set items(val) {
|
|
12023
12027
|
if (!val) {
|
|
@@ -12064,7 +12068,7 @@ class DrDetailsListComponent {
|
|
|
12064
12068
|
i0.ɵɵadvance(1);
|
|
12065
12069
|
i0.ɵɵtextInterpolate1(" ", ctx.title, " ");
|
|
12066
12070
|
i0.ɵɵadvance(1);
|
|
12067
|
-
i0.ɵɵproperty("@expansionIndicatorList", i0.ɵɵpureFunction1(7, _c0$
|
|
12071
|
+
i0.ɵɵproperty("@expansionIndicatorList", i0.ɵɵpureFunction1(7, _c0$u, ctx.state));
|
|
12068
12072
|
i0.ɵɵadvance(1);
|
|
12069
12073
|
i0.ɵɵproperty("ngForOf", ctx.list);
|
|
12070
12074
|
} }, dependencies: [i1.NgForOf], styles: ["[_nghost-%COMP%]{font-family:Poppins,sans-serif;font-size:14px;line-height:22px;color:#6d6e6f;font-weight:400}[_nghost-%COMP%] .details[_ngcontent-%COMP%]{display:flex;flex-direction:column}[_nghost-%COMP%] .details__header[_ngcontent-%COMP%]{display:flex;align-items:center;cursor:pointer}[_nghost-%COMP%] .details__header[_ngcontent-%COMP%] i[_ngcontent-%COMP%]{margin-right:4px}[_nghost-%COMP%] .details__list[_ngcontent-%COMP%]{display:flex;flex-direction:column;padding-left:28px;margin:8px 0}[_nghost-%COMP%] .details__list[_ngcontent-%COMP%] li[_ngcontent-%COMP%]{list-style-type:disc}"], data: { animation: [
|
|
@@ -12108,8 +12112,8 @@ class DrDetailsListComponent {
|
|
|
12108
12112
|
type: Input
|
|
12109
12113
|
}] }); })();
|
|
12110
12114
|
|
|
12111
|
-
const _c0$
|
|
12112
|
-
const _c1$
|
|
12115
|
+
const _c0$t = ["content"];
|
|
12116
|
+
const _c1$9 = function (a0, a1) { return { "dr-icon-maximize": a0, "dr-icon-minimize": a1 }; };
|
|
12113
12117
|
function DialogWrapperComponent_i_1_Template(rf, ctx) { if (rf & 1) {
|
|
12114
12118
|
const _r8 = i0.ɵɵgetCurrentView();
|
|
12115
12119
|
i0.ɵɵelementStart(0, "i", 11);
|
|
@@ -12117,7 +12121,7 @@ function DialogWrapperComponent_i_1_Template(rf, ctx) { if (rf & 1) {
|
|
|
12117
12121
|
i0.ɵɵelementEnd();
|
|
12118
12122
|
} if (rf & 2) {
|
|
12119
12123
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
12120
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(1, _c1$
|
|
12124
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(1, _c1$9, !ctx_r0.isMaximized, ctx_r0.isMaximized));
|
|
12121
12125
|
} }
|
|
12122
12126
|
function DialogWrapperComponent_i_2_Template(rf, ctx) { if (rf & 1) {
|
|
12123
12127
|
const _r10 = i0.ɵɵgetCurrentView();
|
|
@@ -12303,7 +12307,7 @@ class DialogWrapperComponent {
|
|
|
12303
12307
|
}
|
|
12304
12308
|
/** @nocollapse */ static { this.ɵfac = function DialogWrapperComponent_Factory(t) { return new (t || DialogWrapperComponent)(i0.ɵɵdirectiveInject(i1$4.MatLegacyDialogRef), i0.ɵɵdirectiveInject(i0.ChangeDetectorRef), i0.ɵɵdirectiveInject(i0.ComponentFactoryResolver), i0.ɵɵdirectiveInject(MAT_LEGACY_DIALOG_DATA)); }; }
|
|
12305
12309
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DialogWrapperComponent, selectors: [["dr-dialog-wrapper"]], viewQuery: function DialogWrapperComponent_Query(rf, ctx) { if (rf & 1) {
|
|
12306
|
-
i0.ɵɵviewQuery(_c0$
|
|
12310
|
+
i0.ɵɵviewQuery(_c0$t, 5, ViewContainerRef);
|
|
12307
12311
|
} if (rf & 2) {
|
|
12308
12312
|
let _t;
|
|
12309
12313
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.content = _t.first);
|
|
@@ -12507,8 +12511,8 @@ function DialogModalWrapperComponent_form_7_div_2_label_9_Template(rf, ctx) { if
|
|
|
12507
12511
|
i0.ɵɵadvance(1);
|
|
12508
12512
|
i0.ɵɵtextInterpolate1(" ", ctx_r19.dialogData.serverErrorMessage, " ");
|
|
12509
12513
|
} }
|
|
12510
|
-
const _c0$
|
|
12511
|
-
const _c1$
|
|
12514
|
+
const _c0$s = function (a0) { return { display: a0 }; };
|
|
12515
|
+
const _c1$8 = function (a0, a1) { return { "col-md-10": a0, "col-md-12": a1 }; };
|
|
12512
12516
|
function DialogModalWrapperComponent_form_7_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
12513
12517
|
i0.ɵɵelementStart(0, "div", 16);
|
|
12514
12518
|
i0.ɵɵtemplate(1, DialogModalWrapperComponent_form_7_div_2_label_1_Template, 2, 2, "label", 17);
|
|
@@ -12525,11 +12529,11 @@ function DialogModalWrapperComponent_form_7_div_2_Template(rf, ctx) { if (rf & 1
|
|
|
12525
12529
|
const field_r11 = ctx.$implicit;
|
|
12526
12530
|
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
12527
12531
|
i0.ɵɵclassMap(field_r11.formGroupClass);
|
|
12528
|
-
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(12, _c0$
|
|
12532
|
+
i0.ɵɵproperty("ngStyle", i0.ɵɵpureFunction1(12, _c0$s, field_r11.isLabelFullWidth ? "block" : "flex"));
|
|
12529
12533
|
i0.ɵɵadvance(1);
|
|
12530
12534
|
i0.ɵɵproperty("ngIf", field_r11.label && field_r11.type !== ctx_r10.dialogFieldType.CHECKBOX);
|
|
12531
12535
|
i0.ɵɵadvance(1);
|
|
12532
|
-
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(14, _c1$
|
|
12536
|
+
i0.ɵɵproperty("ngClass", i0.ɵɵpureFunction2(14, _c1$8, field_r11.label && !field_r11.isLabelFullWidth, !field_r11.label || field_r11.isLabelFullWidth));
|
|
12533
12537
|
i0.ɵɵadvance(1);
|
|
12534
12538
|
i0.ɵɵproperty("ngIf", field_r11.type === ctx_r10.dialogFieldType.SELECT);
|
|
12535
12539
|
i0.ɵɵadvance(1);
|
|
@@ -12723,12 +12727,15 @@ class DialogModalWrapperComponent {
|
|
|
12723
12727
|
|
|
12724
12728
|
const DEFAULT_PANE_CLASS_NAME = 'wrapper-dialog';
|
|
12725
12729
|
const DEFAULT_CONFIRM_THEME = { themeSize: 'small-modal' };
|
|
12730
|
+
/** @deprecated use DrModalService instead */
|
|
12726
12731
|
class DialogService {
|
|
12727
12732
|
constructor(dialog) {
|
|
12728
12733
|
this.dialog = dialog;
|
|
12729
12734
|
}
|
|
12730
12735
|
/**
|
|
12731
12736
|
* Function to open modal with custom form
|
|
12737
|
+
*
|
|
12738
|
+
* @deprecated use DrModalService.open instead
|
|
12732
12739
|
*/
|
|
12733
12740
|
openDialogWrapper(componentTypeChild, dialogData, componentTypeWrapper) {
|
|
12734
12741
|
if (!componentTypeWrapper)
|
|
@@ -12745,6 +12752,8 @@ class DialogService {
|
|
|
12745
12752
|
}
|
|
12746
12753
|
/**
|
|
12747
12754
|
* Function to open confirmation modal
|
|
12755
|
+
*
|
|
12756
|
+
* @deprecated use DrModalService.confirm instead
|
|
12748
12757
|
*/
|
|
12749
12758
|
openConfirmDialog(confirmDialogData) {
|
|
12750
12759
|
const dialogData = {
|
|
@@ -12760,6 +12769,8 @@ class DialogService {
|
|
|
12760
12769
|
}
|
|
12761
12770
|
/**
|
|
12762
12771
|
* Function to open confirmation modal with inputs
|
|
12772
|
+
*
|
|
12773
|
+
* @deprecated use DrModalService.confirm instead
|
|
12763
12774
|
*/
|
|
12764
12775
|
openConfirmDialogModal(confirmDialogData) {
|
|
12765
12776
|
const dialogData = {
|
|
@@ -13233,7 +13244,7 @@ function TreeviewItemComponent_div_0_div_2_Template(rf, ctx) { if (rf & 1) {
|
|
|
13233
13244
|
i0.ɵɵadvance(1);
|
|
13234
13245
|
i0.ɵɵproperty("ngForOf", ctx_r2.item.children);
|
|
13235
13246
|
} }
|
|
13236
|
-
const _c0$
|
|
13247
|
+
const _c0$r = function (a0, a1, a2) { return { item: a0, onCollapseExpand: a1, onCheckedChange: a2 }; };
|
|
13237
13248
|
function TreeviewItemComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
13238
13249
|
i0.ɵɵelementStart(0, "div", 1);
|
|
13239
13250
|
i0.ɵɵtemplate(1, TreeviewItemComponent_div_0_ng_template_1_Template, 0, 0, "ng-template", 2);
|
|
@@ -13242,7 +13253,7 @@ function TreeviewItemComponent_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
|
13242
13253
|
} if (rf & 2) {
|
|
13243
13254
|
const ctx_r0 = i0.ɵɵnextContext();
|
|
13244
13255
|
i0.ɵɵadvance(1);
|
|
13245
|
-
i0.ɵɵproperty("ngTemplateOutlet", ctx_r0.template)("ngTemplateOutletContext", i0.ɵɵpureFunction3(3, _c0$
|
|
13256
|
+
i0.ɵɵproperty("ngTemplateOutlet", ctx_r0.template)("ngTemplateOutletContext", i0.ɵɵpureFunction3(3, _c0$r, ctx_r0.item, ctx_r0.onCollapseExpand, ctx_r0.onCheckedChange));
|
|
13246
13257
|
i0.ɵɵadvance(1);
|
|
13247
13258
|
i0.ɵɵproperty("ngIf", !ctx_r0.item.collapsed);
|
|
13248
13259
|
} }
|
|
@@ -13840,6 +13851,37 @@ class DataAnalyticsService {
|
|
|
13840
13851
|
}]
|
|
13841
13852
|
}], function () { return []; }, null); })();
|
|
13842
13853
|
|
|
13854
|
+
/**
|
|
13855
|
+
* A utility function to handle asynchronous operations with a try-catch mechanism.
|
|
13856
|
+
* It wraps a promise and returns a tuple containing either the resolved value or the caught error.
|
|
13857
|
+
*
|
|
13858
|
+
* @example
|
|
13859
|
+
* ```typescript
|
|
13860
|
+
* const [data, error] = await withResult(someAsyncFunction());
|
|
13861
|
+
* if (error != null) {
|
|
13862
|
+
* console.log('Success:', data);
|
|
13863
|
+
* } else {
|
|
13864
|
+
* console.error('Error:', error);
|
|
13865
|
+
* }
|
|
13866
|
+
* ```
|
|
13867
|
+
*/
|
|
13868
|
+
const withResult = async (value) => {
|
|
13869
|
+
if (!(value instanceof Promise) && !(value instanceof Observable)) {
|
|
13870
|
+
throw new TypeError('The provided argument is not a Promise or Observable.');
|
|
13871
|
+
}
|
|
13872
|
+
if (value instanceof Observable) {
|
|
13873
|
+
value = firstValueFrom(value);
|
|
13874
|
+
}
|
|
13875
|
+
try {
|
|
13876
|
+
const data = await value;
|
|
13877
|
+
return [data, null];
|
|
13878
|
+
}
|
|
13879
|
+
catch (error) {
|
|
13880
|
+
return [null, error];
|
|
13881
|
+
}
|
|
13882
|
+
};
|
|
13883
|
+
const fromPromise = (promise) => from(promise).pipe(take(1));
|
|
13884
|
+
|
|
13843
13885
|
/**
|
|
13844
13886
|
* This file is auto-generated from colors.scss
|
|
13845
13887
|
* Do not edit this file manually. Edit colors.scss instead.
|
|
@@ -14631,7 +14673,7 @@ class DrImageCropperCanvasService {
|
|
|
14631
14673
|
type: Injectable
|
|
14632
14674
|
}], null, null); })();
|
|
14633
14675
|
|
|
14634
|
-
const _c0$
|
|
14676
|
+
const _c0$q = ["imageCanvas"];
|
|
14635
14677
|
class DrImageCropperComponent {
|
|
14636
14678
|
constructor(canvasService) {
|
|
14637
14679
|
this.canvasService = canvasService;
|
|
@@ -14689,7 +14731,7 @@ class DrImageCropperComponent {
|
|
|
14689
14731
|
}
|
|
14690
14732
|
/** @nocollapse */ static { this.ɵfac = function DrImageCropperComponent_Factory(t) { return new (t || DrImageCropperComponent)(i0.ɵɵdirectiveInject(DrImageCropperCanvasService)); }; }
|
|
14691
14733
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrImageCropperComponent, selectors: [["dr-image-cropper"]], viewQuery: function DrImageCropperComponent_Query(rf, ctx) { if (rf & 1) {
|
|
14692
|
-
i0.ɵɵviewQuery(_c0$
|
|
14734
|
+
i0.ɵɵviewQuery(_c0$q, 7);
|
|
14693
14735
|
} if (rf & 2) {
|
|
14694
14736
|
let _t;
|
|
14695
14737
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.canvasElement = _t.first);
|
|
@@ -14890,6 +14932,7 @@ class DrDetailsListModule {
|
|
|
14890
14932
|
}], null, null); })();
|
|
14891
14933
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(DrDetailsListModule, { declarations: [DrDetailsListComponent], imports: [CommonModule], exports: [DrDetailsListComponent] }); })();
|
|
14892
14934
|
|
|
14935
|
+
/** @deprecated use DrModalModule instead */
|
|
14893
14936
|
class DrDialogModule {
|
|
14894
14937
|
/** @nocollapse */ static { this.ɵfac = function DrDialogModule_Factory(t) { return new (t || DrDialogModule)(); }; }
|
|
14895
14938
|
/** @nocollapse */ static { this.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: DrDialogModule }); }
|
|
@@ -15105,7 +15148,7 @@ function DrChipComponent_button_4_Template(rf, ctx) { if (rf & 1) {
|
|
|
15105
15148
|
const ctx_r2 = i0.ɵɵnextContext();
|
|
15106
15149
|
i0.ɵɵattribute("aria-label", ctx_r2.removeAriaLabel);
|
|
15107
15150
|
} }
|
|
15108
|
-
const _c0$
|
|
15151
|
+
const _c0$p = ["*"];
|
|
15109
15152
|
class DrChipComponent {
|
|
15110
15153
|
constructor() {
|
|
15111
15154
|
this.removeAriaLabel = 'Remove';
|
|
@@ -15119,7 +15162,7 @@ class DrChipComponent {
|
|
|
15119
15162
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrChipComponent, selectors: [["dr-chip"]], hostVars: 3, hostBindings: function DrChipComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
15120
15163
|
i0.ɵɵattribute("aria-label", ctx.label);
|
|
15121
15164
|
i0.ɵɵclassProp("--compact", ctx.compact);
|
|
15122
|
-
} }, inputs: { label: "label", icon: "icon", removable: ["removable", "removable", booleanAttribute], removeAriaLabel: "removeAriaLabel", compact: ["compact", "compact", booleanAttribute] }, outputs: { remove: "remove" }, standalone: true, features: [i0.ɵɵInputTransformsFeature, i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
15165
|
+
} }, inputs: { label: "label", icon: "icon", removable: ["removable", "removable", booleanAttribute], removeAriaLabel: "removeAriaLabel", compact: ["compact", "compact", booleanAttribute] }, outputs: { remove: "remove" }, standalone: true, features: [i0.ɵɵInputTransformsFeature, i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$p, decls: 5, vars: 4, consts: [["class", "chip__icon", "aria-hidden", "true", 3, "class", 4, "ngIf"], [1, "chip__label"], [4, "ngIf"], ["type", "button", "class", "chip__remove", 3, "click", 4, "ngIf"], ["aria-hidden", "true", 1, "chip__icon"], ["type", "button", 1, "chip__remove", 3, "click"], ["aria-hidden", "true", 1, "dr-icon-exit"]], template: function DrChipComponent_Template(rf, ctx) { if (rf & 1) {
|
|
15123
15166
|
i0.ɵɵprojectionDef();
|
|
15124
15167
|
i0.ɵɵtemplate(0, DrChipComponent_i_0_Template, 1, 2, "i", 0);
|
|
15125
15168
|
i0.ɵɵelementStart(1, "span", 1);
|
|
@@ -15161,8 +15204,8 @@ class DrChipComponent {
|
|
|
15161
15204
|
args: ['class.--compact']
|
|
15162
15205
|
}] }); })();
|
|
15163
15206
|
|
|
15164
|
-
const _c0$
|
|
15165
|
-
const _c1$
|
|
15207
|
+
const _c0$o = ["carouselContainer"];
|
|
15208
|
+
const _c1$7 = ["carouselItem"];
|
|
15166
15209
|
function DrGalleryComponent_dr_button_0_Template(rf, ctx) { if (rf & 1) {
|
|
15167
15210
|
const _r5 = i0.ɵɵgetCurrentView();
|
|
15168
15211
|
i0.ɵɵelementStart(0, "dr-button", 5);
|
|
@@ -15387,8 +15430,8 @@ class DrGalleryComponent {
|
|
|
15387
15430
|
let _t;
|
|
15388
15431
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.template = _t.first);
|
|
15389
15432
|
} }, viewQuery: function DrGalleryComponent_Query(rf, ctx) { if (rf & 1) {
|
|
15390
|
-
i0.ɵɵviewQuery(_c0$
|
|
15391
|
-
i0.ɵɵviewQuery(_c1$
|
|
15433
|
+
i0.ɵɵviewQuery(_c0$o, 5);
|
|
15434
|
+
i0.ɵɵviewQuery(_c1$7, 5);
|
|
15392
15435
|
} if (rf & 2) {
|
|
15393
15436
|
let _t;
|
|
15394
15437
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.containerRef = _t.first);
|
|
@@ -15460,7 +15503,7 @@ function DrProgressBarComponent_ng_template_5_Template(rf, ctx) { if (rf & 1) {
|
|
|
15460
15503
|
const progressPercent_r4 = ctx.progressPercent;
|
|
15461
15504
|
i0.ɵɵtextInterpolate1("", progressPercent_r4, "%");
|
|
15462
15505
|
} }
|
|
15463
|
-
const _c0$
|
|
15506
|
+
const _c0$n = ["*"];
|
|
15464
15507
|
class DrProgressBarComponent {
|
|
15465
15508
|
constructor() {
|
|
15466
15509
|
this.roundProgress = false;
|
|
@@ -15540,7 +15583,7 @@ class DrProgressBarComponent {
|
|
|
15540
15583
|
} }, hostVars: 7, hostBindings: function DrProgressBarComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
15541
15584
|
i0.ɵɵattribute("role", ctx.role)("aria-valuemin", ctx.ariaValueMin)("aria-valuemax", ctx.ariaValueMax)("aria-valuenow", ctx.ariaValueNow)("aria-label", ctx.ariaLabel);
|
|
15542
15585
|
i0.ɵɵclassMap(ctx.theme);
|
|
15543
|
-
} }, inputs: { progress: "progress", total: "total", roundProgress: "roundProgress", showValue: "showValue", theme: "theme", customAriaLabel: ["aria-label", "customAriaLabel"] }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
15586
|
+
} }, inputs: { progress: "progress", total: "total", roundProgress: "roundProgress", showValue: "showValue", theme: "theme", customAriaLabel: ["aria-label", "customAriaLabel"] }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$n, decls: 7, vars: 3, consts: [["aria-hidden", "true", 1, "progress-bar__background"], [1, "progress-bar__background__fill"], ["aria-hidden", "true", 1, "progress-bar__value"], [4, "ngIf"], ["defaultValueTemplate", ""], [4, "ngTemplateOutlet", "ngTemplateOutletContext"]], template: function DrProgressBarComponent_Template(rf, ctx) { if (rf & 1) {
|
|
15544
15587
|
i0.ɵɵprojectionDef();
|
|
15545
15588
|
i0.ɵɵelementStart(0, "div", 0);
|
|
15546
15589
|
i0.ɵɵelement(1, "div", 1);
|
|
@@ -15596,7 +15639,7 @@ class DrProgressBarComponent {
|
|
|
15596
15639
|
args: ['attr.aria-label']
|
|
15597
15640
|
}] }); })();
|
|
15598
15641
|
|
|
15599
|
-
const _c0$
|
|
15642
|
+
const _c0$m = ["*"];
|
|
15600
15643
|
class DrBadgeComponent {
|
|
15601
15644
|
constructor() {
|
|
15602
15645
|
this.color = 'stone';
|
|
@@ -15608,7 +15651,7 @@ class DrBadgeComponent {
|
|
|
15608
15651
|
/** @nocollapse */ static { this.ɵfac = function DrBadgeComponent_Factory(t) { return new (t || DrBadgeComponent)(); }; }
|
|
15609
15652
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrBadgeComponent, selectors: [["dr-badge"]], hostVars: 2, hostBindings: function DrBadgeComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
15610
15653
|
i0.ɵɵclassMap(ctx.elementClasses);
|
|
15611
|
-
} }, inputs: { color: "color", size: "size" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$
|
|
15654
|
+
} }, inputs: { color: "color", size: "size" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c0$m, decls: 1, vars: 0, template: function DrBadgeComponent_Template(rf, ctx) { if (rf & 1) {
|
|
15612
15655
|
i0.ɵɵprojectionDef();
|
|
15613
15656
|
i0.ɵɵprojection(0);
|
|
15614
15657
|
} }, styles: ["[_nghost-%COMP%]{display:inline-flex;align-items:center;color:#333;border-radius:4px;box-sizing:border-box;font-size:12px;line-height:16px;font-weight:500}.small[_nghost-%COMP%]{gap:2px;padding:2px 4px}.medium[_nghost-%COMP%]{gap:4px;padding:4px 8px}.light-purple[_nghost-%COMP%]{background-color:#dfd9ff}.purple[_nghost-%COMP%]{color:#fff;background-color:#7b61ff}.water[_nghost-%COMP%]{background-color:#d9f2ff}.baby-blue[_nghost-%COMP%]{background-color:#d9e6ff}.baby-pink[_nghost-%COMP%]{background-color:#ffdbf1}.light-turquoise[_nghost-%COMP%]{background-color:#d6fcf9}.bright-green[_nghost-%COMP%]{background-color:#d9ffea}.stone[_nghost-%COMP%]{background-color:#f6f4f4}.peach[_nghost-%COMP%]{background-color:#ffe5b4}.soft-coral[_nghost-%COMP%]{background-color:#ffd2c2}.pale-yellow[_nghost-%COMP%]{background-color:#fffacd}.pastel-olive[_nghost-%COMP%]{background-color:#dce2b9}.powder-blue-grey[_nghost-%COMP%]{background-color:#d3dbe3}.muted-plum[_nghost-%COMP%]{background-color:#e7c7db}"], changeDetection: 0 }); }
|
|
@@ -15704,6 +15747,642 @@ class DrSystemMessageComponent {
|
|
|
15704
15747
|
args: ['class']
|
|
15705
15748
|
}] }); })();
|
|
15706
15749
|
|
|
15750
|
+
class DrModalConfig {
|
|
15751
|
+
}
|
|
15752
|
+
|
|
15753
|
+
class DrModalRef {
|
|
15754
|
+
constructor(innerRef, config) {
|
|
15755
|
+
this.innerRef = innerRef;
|
|
15756
|
+
this.config = config;
|
|
15757
|
+
this.id = this.innerRef.id;
|
|
15758
|
+
this.ref = this.innerRef.componentInstance;
|
|
15759
|
+
this.data = this.config.data;
|
|
15760
|
+
this.afterClosed$ = this.innerRef.closed;
|
|
15761
|
+
this.container = this.innerRef.containerInstance;
|
|
15762
|
+
this.disableClose = this.config.disableClose;
|
|
15763
|
+
this.isClosing = false;
|
|
15764
|
+
const escapeKeydownEvents$ = this.innerRef.keydownEvents.pipe(filter((event) => event.keyCode === ESCAPE && !this.disableClose && !hasModifierKey(event)));
|
|
15765
|
+
merge(this.innerRef.backdropClick, escapeKeydownEvents$).subscribe((event) => {
|
|
15766
|
+
if (!this.disableClose) {
|
|
15767
|
+
event.preventDefault();
|
|
15768
|
+
this.close(null);
|
|
15769
|
+
}
|
|
15770
|
+
});
|
|
15771
|
+
this.innerRef.overlayRef.detachments().subscribe(() => {
|
|
15772
|
+
this.isClosing = true;
|
|
15773
|
+
this.cdkClose(this.result);
|
|
15774
|
+
});
|
|
15775
|
+
}
|
|
15776
|
+
close(result) {
|
|
15777
|
+
if (this.isClosing) {
|
|
15778
|
+
return;
|
|
15779
|
+
}
|
|
15780
|
+
this.result = result;
|
|
15781
|
+
// init closing
|
|
15782
|
+
this.isClosing = true;
|
|
15783
|
+
this.innerRef.overlayRef.detachBackdrop(); // disable other backdrop clicks
|
|
15784
|
+
this.container.animateClose();
|
|
15785
|
+
setTimeout(() => this.cdkClose(result), this.container.animationTime());
|
|
15786
|
+
}
|
|
15787
|
+
cdkClose(result) {
|
|
15788
|
+
this.innerRef.close(result);
|
|
15789
|
+
}
|
|
15790
|
+
}
|
|
15791
|
+
|
|
15792
|
+
class DrModalHeaderDirective {
|
|
15793
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalHeaderDirective_Factory(t) { return new (t || DrModalHeaderDirective)(); }; }
|
|
15794
|
+
/** @nocollapse */ static { this.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DrModalHeaderDirective, selectors: [["dr-modal-header"], ["", "dr-modal-header", ""], ["", "drModalHeader", ""]], hostAttrs: [1, "dr-modal-header"], standalone: true }); }
|
|
15795
|
+
}
|
|
15796
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalHeaderDirective, [{
|
|
15797
|
+
type: Directive,
|
|
15798
|
+
args: [{
|
|
15799
|
+
standalone: true,
|
|
15800
|
+
selector: 'dr-modal-header, [dr-modal-header], [drModalHeader]',
|
|
15801
|
+
host: { class: 'dr-modal-header' },
|
|
15802
|
+
}]
|
|
15803
|
+
}], null, null); })();
|
|
15804
|
+
class DrModalTitleDirective {
|
|
15805
|
+
constructor() {
|
|
15806
|
+
this.id = inject(DrModalConfig).id;
|
|
15807
|
+
const modalRef = inject(DrModalRef);
|
|
15808
|
+
setTimeout(() => modalRef.container.hasTitle.set(true));
|
|
15809
|
+
}
|
|
15810
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalTitleDirective_Factory(t) { return new (t || DrModalTitleDirective)(); }; }
|
|
15811
|
+
/** @nocollapse */ static { this.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DrModalTitleDirective, selectors: [["dr-modal-title"], ["", "dr-modal-title", ""], ["", "drModalTitle", ""]], hostAttrs: ["role", "heading", "aria-level", "1", "data-test", "dialogTitle", 1, "dr-modal-title"], hostVars: 1, hostBindings: function DrModalTitleDirective_HostBindings(rf, ctx) { if (rf & 2) {
|
|
15812
|
+
i0.ɵɵhostProperty("id", "modal-" + ctx.id + "-title");
|
|
15813
|
+
} }, standalone: true }); }
|
|
15814
|
+
}
|
|
15815
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalTitleDirective, [{
|
|
15816
|
+
type: Directive,
|
|
15817
|
+
args: [{
|
|
15818
|
+
standalone: true,
|
|
15819
|
+
selector: 'dr-modal-title, [dr-modal-title], [drModalTitle]',
|
|
15820
|
+
host: {
|
|
15821
|
+
'[id]': "'modal-' + id + '-title'",
|
|
15822
|
+
class: 'dr-modal-title',
|
|
15823
|
+
role: 'heading',
|
|
15824
|
+
'aria-level': '1',
|
|
15825
|
+
'data-test': 'dialogTitle',
|
|
15826
|
+
},
|
|
15827
|
+
}]
|
|
15828
|
+
}], function () { return []; }, null); })();
|
|
15829
|
+
class DrModalSubtitleDirective {
|
|
15830
|
+
constructor() {
|
|
15831
|
+
this.id = inject(DrModalConfig).id;
|
|
15832
|
+
const modalRef = inject(DrModalRef);
|
|
15833
|
+
setTimeout(() => modalRef.container.hasSubtitle.set(true));
|
|
15834
|
+
}
|
|
15835
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalSubtitleDirective_Factory(t) { return new (t || DrModalSubtitleDirective)(); }; }
|
|
15836
|
+
/** @nocollapse */ static { this.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DrModalSubtitleDirective, selectors: [["dr-modal-subtitle"], ["", "dr-modal-subtitle", ""], ["", "drModalSubtitle", ""]], hostAttrs: ["role", "heading", "aria-level", "2", "data-test", "dialogSubtitle", 1, "dr-modal-subtitle"], hostVars: 1, hostBindings: function DrModalSubtitleDirective_HostBindings(rf, ctx) { if (rf & 2) {
|
|
15837
|
+
i0.ɵɵhostProperty("id", "modal-" + ctx.id + "-subtitle");
|
|
15838
|
+
} }, standalone: true }); }
|
|
15839
|
+
}
|
|
15840
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalSubtitleDirective, [{
|
|
15841
|
+
type: Directive,
|
|
15842
|
+
args: [{
|
|
15843
|
+
standalone: true,
|
|
15844
|
+
selector: 'dr-modal-subtitle, [dr-modal-subtitle], [drModalSubtitle]',
|
|
15845
|
+
host: {
|
|
15846
|
+
'[id]': "'modal-' + id + '-subtitle'",
|
|
15847
|
+
class: 'dr-modal-subtitle',
|
|
15848
|
+
role: 'heading',
|
|
15849
|
+
'aria-level': '2',
|
|
15850
|
+
'data-test': 'dialogSubtitle',
|
|
15851
|
+
},
|
|
15852
|
+
}]
|
|
15853
|
+
}], function () { return []; }, null); })();
|
|
15854
|
+
class DrModalBodyDirective {
|
|
15855
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalBodyDirective_Factory(t) { return new (t || DrModalBodyDirective)(); }; }
|
|
15856
|
+
/** @nocollapse */ static { this.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DrModalBodyDirective, selectors: [["dr-modal-body"], ["", "dr-modal-body", ""], ["", "drModalBody", ""]], hostAttrs: ["data-test", "modalBody", 1, "dr-modal-body"], standalone: true }); }
|
|
15857
|
+
}
|
|
15858
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalBodyDirective, [{
|
|
15859
|
+
type: Directive,
|
|
15860
|
+
args: [{
|
|
15861
|
+
standalone: true,
|
|
15862
|
+
selector: 'dr-modal-body, [dr-modal-body], [drModalBody]',
|
|
15863
|
+
host: { class: 'dr-modal-body', 'data-test': 'modalBody' },
|
|
15864
|
+
}]
|
|
15865
|
+
}], null, null); })();
|
|
15866
|
+
class DrModalFooterDirective {
|
|
15867
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalFooterDirective_Factory(t) { return new (t || DrModalFooterDirective)(); }; }
|
|
15868
|
+
/** @nocollapse */ static { this.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DrModalFooterDirective, selectors: [["dr-modal-footer"], ["", "dr-modal-footer", ""], ["", "drModalFooter", ""]], hostAttrs: [1, "dr-modal-footer"], standalone: true }); }
|
|
15869
|
+
}
|
|
15870
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalFooterDirective, [{
|
|
15871
|
+
type: Directive,
|
|
15872
|
+
args: [{
|
|
15873
|
+
standalone: true,
|
|
15874
|
+
selector: 'dr-modal-footer, [dr-modal-footer], [drModalFooter]',
|
|
15875
|
+
host: { class: 'dr-modal-footer' },
|
|
15876
|
+
}]
|
|
15877
|
+
}], null, null); })();
|
|
15878
|
+
|
|
15879
|
+
class DrModalCloseDirective {
|
|
15880
|
+
constructor() {
|
|
15881
|
+
this.modalRef = inject(DrModalRef);
|
|
15882
|
+
/**
|
|
15883
|
+
* By default, Angular would assign '' in <button drModalClose>, which is not ideal as we use null for backdrop click and ESC press
|
|
15884
|
+
* To understand if drModalClose used without value (<button drModalClose>) we get its attribute.
|
|
15885
|
+
* '' attribute means we used drModalClose without any value, null means we used [drModalClose]="''" with binding
|
|
15886
|
+
*
|
|
15887
|
+
* NOTE: @Attribute will not work as Angular always sets @Attribute null value if it matches any @Input
|
|
15888
|
+
*/
|
|
15889
|
+
this.resultAttr = inject(ElementRef).nativeElement.getAttribute('drModalClose');
|
|
15890
|
+
const hostButton = inject(DrButtonComponent, { optional: true, self: true });
|
|
15891
|
+
// Set closeModal as buttons if they have no result (<dr-button drModalClose>)
|
|
15892
|
+
hostButton && this.resultAttr === '' && (hostButton.type = 'button');
|
|
15893
|
+
}
|
|
15894
|
+
onHostClick() {
|
|
15895
|
+
this.modalRef.close(this.resultAttr === '' ? null : this.result);
|
|
15896
|
+
}
|
|
15897
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalCloseDirective_Factory(t) { return new (t || DrModalCloseDirective)(); }; }
|
|
15898
|
+
/** @nocollapse */ static { this.ɵdir = /** @pureOrBreakMyCode */ i0.ɵɵdefineDirective({ type: DrModalCloseDirective, selectors: [["", "drModalClose", ""]], hostBindings: function DrModalCloseDirective_HostBindings(rf, ctx) { if (rf & 1) {
|
|
15899
|
+
i0.ɵɵlistener("click", function DrModalCloseDirective_click_HostBindingHandler() { return ctx.onHostClick(); });
|
|
15900
|
+
} }, inputs: { result: ["drModalClose", "result"] }, standalone: true }); }
|
|
15901
|
+
}
|
|
15902
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalCloseDirective, [{
|
|
15903
|
+
type: Directive,
|
|
15904
|
+
args: [{
|
|
15905
|
+
standalone: true,
|
|
15906
|
+
selector: '[drModalClose]',
|
|
15907
|
+
host: { '(click)': 'onHostClick()' },
|
|
15908
|
+
}]
|
|
15909
|
+
}], function () { return []; }, { result: [{
|
|
15910
|
+
type: Input,
|
|
15911
|
+
args: ['drModalClose']
|
|
15912
|
+
}] }); })();
|
|
15913
|
+
|
|
15914
|
+
function DrModalComponent_ng_container_1_ng_container_4_Template(rf, ctx) { if (rf & 1) {
|
|
15915
|
+
i0.ɵɵelementContainerStart(0);
|
|
15916
|
+
i0.ɵɵelementStart(1, "button", 1);
|
|
15917
|
+
i0.ɵɵelement(2, "i", 2);
|
|
15918
|
+
i0.ɵɵelementEnd();
|
|
15919
|
+
i0.ɵɵelementContainerEnd();
|
|
15920
|
+
} }
|
|
15921
|
+
function DrModalComponent_ng_container_1_Template(rf, ctx) { if (rf & 1) {
|
|
15922
|
+
i0.ɵɵelementContainerStart(0);
|
|
15923
|
+
i0.ɵɵelementStart(1, "dr-modal-header");
|
|
15924
|
+
i0.ɵɵprojection(2, 3);
|
|
15925
|
+
i0.ɵɵprojection(3, 4);
|
|
15926
|
+
i0.ɵɵtemplate(4, DrModalComponent_ng_container_1_ng_container_4_Template, 3, 0, "ng-container", 0);
|
|
15927
|
+
i0.ɵɵelementEnd();
|
|
15928
|
+
i0.ɵɵelementContainerEnd();
|
|
15929
|
+
} if (rf & 2) {
|
|
15930
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
15931
|
+
i0.ɵɵadvance(4);
|
|
15932
|
+
i0.ɵɵproperty("ngIf", ctx_r0.withCloseBtn);
|
|
15933
|
+
} }
|
|
15934
|
+
const _c0$l = [[["dr-modal-header"], ["", "dr-modal-header", ""], ["", "drModalHeader", ""]], [["dr-modal-body"], ["", "dr-modal-body", ""], ["", "drModalBody", ""]], [["dr-modal-footer"], ["", "dr-modal-footer", ""], ["", "drModalFooter", ""]], [["dr-modal-title"], ["", "dr-modal-title", ""], ["", "drModalTitle", ""]], [["dr-modal-subtitle"], ["", "dr-modal-subtitle", ""], ["", "drModalSubtitle", ""]]];
|
|
15935
|
+
const _c1$6 = ["dr-modal-header, [dr-modal-header], [drModalHeader]", "dr-modal-body, [dr-modal-body], [drModalBody]", "dr-modal-footer, [dr-modal-footer], [drModalFooter]", "dr-modal-title, [dr-modal-title], [drModalTitle]", "dr-modal-subtitle, [dr-modal-subtitle], [drModalSubtitle]"];
|
|
15936
|
+
class DrModalComponent {
|
|
15937
|
+
constructor() {
|
|
15938
|
+
this.size = 'md'; // null for custom size
|
|
15939
|
+
this.maxHeight = 'size';
|
|
15940
|
+
this.withHeader = true;
|
|
15941
|
+
this.withCloseBtn = true;
|
|
15942
|
+
}
|
|
15943
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalComponent_Factory(t) { return new (t || DrModalComponent)(); }; }
|
|
15944
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrModalComponent, selectors: [["dr-modal"], ["form", "dr-modal", ""]], contentQueries: function DrModalComponent_ContentQueries(rf, ctx, dirIndex) { if (rf & 1) {
|
|
15945
|
+
i0.ɵɵcontentQuery(dirIndex, DrModalHeaderDirective, 5);
|
|
15946
|
+
} if (rf & 2) {
|
|
15947
|
+
let _t;
|
|
15948
|
+
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.customHeader = _t.first);
|
|
15949
|
+
} }, hostAttrs: [1, "dr-modal"], hostVars: 4, hostBindings: function DrModalComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
15950
|
+
i0.ɵɵclassMap(ctx.size);
|
|
15951
|
+
i0.ɵɵclassProp("max-height", ctx.maxHeight === "max");
|
|
15952
|
+
} }, inputs: { size: "size", maxHeight: "maxHeight", withHeader: ["withHeader", "withHeader", booleanAttribute], withCloseBtn: ["withCloseBtn", "withCloseBtn", booleanAttribute] }, standalone: true, features: [i0.ɵɵInputTransformsFeature, i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$6, decls: 4, vars: 1, consts: [[4, "ngIf"], ["aria-label", "Close modal", "drModalClose", "", "type", "button", "data-test", "xBtn", 1, "dr-modal-close-icon"], ["aria-hidden", "true", 1, "dr-icon-exit"]], template: function DrModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
15953
|
+
i0.ɵɵprojectionDef(_c0$l);
|
|
15954
|
+
i0.ɵɵprojection(0);
|
|
15955
|
+
i0.ɵɵtemplate(1, DrModalComponent_ng_container_1_Template, 5, 1, "ng-container", 0);
|
|
15956
|
+
i0.ɵɵprojection(2, 1);
|
|
15957
|
+
i0.ɵɵprojection(3, 2);
|
|
15958
|
+
} if (rf & 2) {
|
|
15959
|
+
i0.ɵɵadvance(1);
|
|
15960
|
+
i0.ɵɵproperty("ngIf", ctx.withHeader && !ctx.customHeader);
|
|
15961
|
+
} }, dependencies: [CommonModule, i1.NgIf, DrModalHeaderDirective, DrModalCloseDirective], styles: ["[_nghost-%COMP%]{display:grid;grid-template-rows:auto 1fr auto;min-height:188px;font-family:Poppins,sans-serif;background:#fff;box-shadow:0 2px 36px #00000026;border-radius:12px}[_nghost-%COMP%] .dr-modal-header{position:relative;display:flex;flex-direction:column;min-height:56px;padding:16px 56px 16px 32px;border-bottom:1px solid #dfe0e3}[_nghost-%COMP%] .dr-modal-close-icon{position:absolute;top:16px;right:32px;display:flex;padding:0;background:none;border:none;cursor:pointer;color:#6d6e6f;transition:opacity .1s ease-in-out}[_nghost-%COMP%] .dr-modal-close-icon:hover{opacity:.7}[_nghost-%COMP%] .dr-modal-title{font-size:16px;line-height:24px;font-weight:600;display:flex;align-items:center;gap:8px;margin-top:0;margin-bottom:0;color:#333;font-weight:700}[_nghost-%COMP%] .dr-modal-title [class^=dr-icon]{font-size:32px;line-height:24px;color:#6d6e6f}[_nghost-%COMP%] .dr-modal-subtitle{font-size:14px;line-height:24px;font-weight:400;color:#333;margin:4px 0 0}[_nghost-%COMP%] .dr-modal-body{font-weight:400;font-size:14px;padding:16px 32px 5px;white-space:pre-line;overflow:auto}[_nghost-%COMP%] .dr-modal-footer{display:flex;justify-content:flex-end;gap:12px;padding:10px 32px 11px;border-top:1px solid #dfe0e3}.xs[_nghost-%COMP%]{width:min(400px,95vw);max-height:min(467px,85vh)}.sm[_nghost-%COMP%]{width:min(460px,95vw);max-height:min(345px,85vh)}.md[_nghost-%COMP%]{width:min(632px,95vw);max-height:min(467px,85vh)}.lg[_nghost-%COMP%]{width:min(750px,95vw);max-height:min(800px,85vh)}.xl[_nghost-%COMP%]{width:min(1100px,95vw);max-height:min(800px,85vh)}.max-height[_nghost-%COMP%]{max-height:85vh}"], changeDetection: 0 }); }
|
|
15962
|
+
}
|
|
15963
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalComponent, [{
|
|
15964
|
+
type: Component,
|
|
15965
|
+
args: [{ standalone: true, selector: 'dr-modal, form[dr-modal]', host: { class: 'dr-modal', '[class]': 'size', '[class.max-height]': 'maxHeight === "max"' }, changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, DrModalHeaderDirective, DrModalCloseDirective], template: "<ng-content select=\"dr-modal-header, [dr-modal-header], [drModalHeader]\"></ng-content>\n\n<ng-container *ngIf=\"withHeader && !customHeader\">\n <dr-modal-header>\n <ng-content select=\"dr-modal-title, [dr-modal-title], [drModalTitle]\"></ng-content>\n <ng-content select=\"dr-modal-subtitle, [dr-modal-subtitle], [drModalSubtitle]\"></ng-content>\n\n <ng-container *ngIf=\"withCloseBtn\">\n <button class=\"dr-modal-close-icon\" aria-label=\"Close modal\" drModalClose type=\"button\" data-test=\"xBtn\">\n <i class=\"dr-icon-exit\" aria-hidden=\"true\"></i>\n </button>\n </ng-container>\n </dr-modal-header>\n</ng-container>\n\n<ng-content select=\"dr-modal-body, [dr-modal-body], [drModalBody]\"></ng-content>\n\n<ng-content select=\"dr-modal-footer, [dr-modal-footer], [drModalFooter]\"></ng-content>\n", styles: [":host{display:grid;grid-template-rows:auto 1fr auto;min-height:188px;font-family:Poppins,sans-serif;background:#fff;box-shadow:0 2px 36px #00000026;border-radius:12px}:host ::ng-deep .dr-modal-header{position:relative;display:flex;flex-direction:column;min-height:56px;padding:16px 56px 16px 32px;border-bottom:1px solid #dfe0e3}:host ::ng-deep .dr-modal-close-icon{position:absolute;top:16px;right:32px;display:flex;padding:0;background:none;border:none;cursor:pointer;color:#6d6e6f;transition:opacity .1s ease-in-out}:host ::ng-deep .dr-modal-close-icon:hover{opacity:.7}:host ::ng-deep .dr-modal-title{font-size:16px;line-height:24px;font-weight:600;display:flex;align-items:center;gap:8px;margin-top:0;margin-bottom:0;color:#333;font-weight:700}:host ::ng-deep .dr-modal-title [class^=dr-icon]{font-size:32px;line-height:24px;color:#6d6e6f}:host ::ng-deep .dr-modal-subtitle{font-size:14px;line-height:24px;font-weight:400;color:#333;margin:4px 0 0}:host ::ng-deep .dr-modal-body{font-weight:400;font-size:14px;padding:16px 32px 5px;white-space:pre-line;overflow:auto}:host ::ng-deep .dr-modal-footer{display:flex;justify-content:flex-end;gap:12px;padding:10px 32px 11px;border-top:1px solid #dfe0e3}:host.xs{width:min(400px,95vw);max-height:min(467px,85vh)}:host.sm{width:min(460px,95vw);max-height:min(345px,85vh)}:host.md{width:min(632px,95vw);max-height:min(467px,85vh)}:host.lg{width:min(750px,95vw);max-height:min(800px,85vh)}:host.xl{width:min(1100px,95vw);max-height:min(800px,85vh)}:host.max-height{max-height:85vh}\n"] }]
|
|
15966
|
+
}], null, { size: [{
|
|
15967
|
+
type: Input
|
|
15968
|
+
}], maxHeight: [{
|
|
15969
|
+
type: Input
|
|
15970
|
+
}], withHeader: [{
|
|
15971
|
+
type: Input,
|
|
15972
|
+
args: [{ transform: booleanAttribute }]
|
|
15973
|
+
}], withCloseBtn: [{
|
|
15974
|
+
type: Input,
|
|
15975
|
+
args: [{ transform: booleanAttribute }]
|
|
15976
|
+
}], customHeader: [{
|
|
15977
|
+
type: ContentChild,
|
|
15978
|
+
args: [DrModalHeaderDirective]
|
|
15979
|
+
}] }); })();
|
|
15980
|
+
|
|
15981
|
+
function DrModalContainerComponent_ng_template_0_Template(rf, ctx) { }
|
|
15982
|
+
class DrModalContainerComponent extends CdkDialogContainer {
|
|
15983
|
+
constructor() {
|
|
15984
|
+
super(...arguments);
|
|
15985
|
+
this.config = inject(DrModalConfig);
|
|
15986
|
+
this.id = this.config.id;
|
|
15987
|
+
this.animationNoop = inject(ANIMATION_MODULE_TYPE, { optional: true }) === 'NoopAnimations';
|
|
15988
|
+
this.animationClasses = this.getAnimationClasses(this.config.animation);
|
|
15989
|
+
this.animationDuration = this.getAnimationDuration(this.config.animation);
|
|
15990
|
+
this.animationState = signal(null);
|
|
15991
|
+
this.animationClass = computed(() => (this.animationState() ? this.animationClasses[this.animationState()] : ''));
|
|
15992
|
+
this.animationTime = computed(() => this.animationNoop ? 0 : this.animationDuration[this.animationState() ?? 'enter']);
|
|
15993
|
+
this.hasTitle = signal(false); // updated from title directive
|
|
15994
|
+
this.hasSubtitle = signal(false); // updated from subtitle directive
|
|
15995
|
+
this.elementRef = inject(ElementRef);
|
|
15996
|
+
}
|
|
15997
|
+
_contentAttached() {
|
|
15998
|
+
// Set the anchor class immediately after creation so "enter" animation would be properly applied
|
|
15999
|
+
this.elementRef.nativeElement.classList.add(this.animationClasses.anchor);
|
|
16000
|
+
// Delegate to the original dialog-container initialization (i.e. saving the
|
|
16001
|
+
// previous element, setting up the focus trap and moving focus to the container).
|
|
16002
|
+
super._contentAttached();
|
|
16003
|
+
this.animationState.set('enter'); // triggers open animation
|
|
16004
|
+
// Wait for the opening animation to finish before trapping focus
|
|
16005
|
+
setTimeout(() => this._trapFocus(), this.animationDuration.enter);
|
|
16006
|
+
}
|
|
16007
|
+
animateClose() {
|
|
16008
|
+
this.animationState.set('leave');
|
|
16009
|
+
// Claim focus from any clickable elements to avoid double submits on fast click/enter press
|
|
16010
|
+
this.elementRef.nativeElement.focus();
|
|
16011
|
+
}
|
|
16012
|
+
getAnimationDuration(animation) {
|
|
16013
|
+
const { enter = 150, leave = 150 } = animation?.duration ?? {};
|
|
16014
|
+
return { enter, leave };
|
|
16015
|
+
}
|
|
16016
|
+
getAnimationClasses(animation) {
|
|
16017
|
+
const { enter = 'mat-enter', leave = 'mat-leave', anchor = 'mat-anchor' } = animation?.class ?? {};
|
|
16018
|
+
return { enter, leave, anchor };
|
|
16019
|
+
}
|
|
16020
|
+
/** @nocollapse */ static { this.ɵfac = /** @pureOrBreakMyCode */ function () { let ɵDrModalContainerComponent_BaseFactory; return function DrModalContainerComponent_Factory(t) { return (ɵDrModalContainerComponent_BaseFactory || (ɵDrModalContainerComponent_BaseFactory = i0.ɵɵgetInheritedFactory(DrModalContainerComponent)))(t || DrModalContainerComponent); }; }(); }
|
|
16021
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrModalContainerComponent, selectors: [["dr-modal-container"]], hostAttrs: [1, "dr-modal-container"], hostVars: 12, hostBindings: function DrModalContainerComponent_HostBindings(rf, ctx) { if (rf & 2) {
|
|
16022
|
+
i0.ɵɵhostProperty("id", "modal-" + ctx.id);
|
|
16023
|
+
i0.ɵɵattribute("tabindex", -1)("role", "dialog")("aria-modal", true)("aria-labelledby", ctx.hasTitle() ? "modal-" + ctx.id + "-title" : null)("aria-describedby", ctx.hasSubtitle() ? "modal-" + ctx.id + "-subtitle" : null);
|
|
16024
|
+
i0.ɵɵclassMap(ctx.animationClass());
|
|
16025
|
+
i0.ɵɵstyleProp("--dr-modal-animation-time", ctx.animationTime() + "ms");
|
|
16026
|
+
i0.ɵɵclassProp("animation-noop", ctx.animationNoop);
|
|
16027
|
+
} }, standalone: true, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature], decls: 1, vars: 0, consts: [["cdkPortalOutlet", ""]], template: function DrModalContainerComponent_Template(rf, ctx) { if (rf & 1) {
|
|
16028
|
+
i0.ɵɵtemplate(0, DrModalContainerComponent_ng_template_0_Template, 0, 0, "ng-template", 0);
|
|
16029
|
+
} }, dependencies: [PortalModule, i1$6.CdkPortalOutlet], styles: ["[_nghost-%COMP%]{position:relative;display:grid;margin:auto;transition:all var(--dr-modal-animation-time, 0ms) ease-in-out}.animation-noop[_nghost-%COMP%]{transition:none!important}.animation-noop[_nghost-%COMP%] .dr-modal{transition:none!important}.mat-anchor[_nghost-%COMP%]{opacity:0}.mat-anchor[_nghost-%COMP%] .dr-modal{transform:scale(.8);transition:transform var(--dr-modal-animation-time, 0ms) cubic-bezier(0,0,.2,1)}.mat-anchor.mat-enter[_nghost-%COMP%]{opacity:1}.mat-anchor.mat-enter[_nghost-%COMP%] .dr-modal{transform:none}.mat-anchor.mat-leave[_nghost-%COMP%]{opacity:0}.mat-anchor.mat-leave[_nghost-%COMP%] .dr-modal{transform:none}"], changeDetection: 0 }); }
|
|
16030
|
+
}
|
|
16031
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalContainerComponent, [{
|
|
16032
|
+
type: Component,
|
|
16033
|
+
args: [{ standalone: true, selector: 'dr-modal-container', template: `<ng-template cdkPortalOutlet></ng-template>`, host: {
|
|
16034
|
+
class: 'dr-modal-container',
|
|
16035
|
+
'[class]': 'animationClass()',
|
|
16036
|
+
'[class.animation-noop]': 'animationNoop',
|
|
16037
|
+
'[style.--dr-modal-animation-time]': 'animationTime() + "ms"',
|
|
16038
|
+
'[id]': '"modal-" + id',
|
|
16039
|
+
'[attr.tabindex]': '-1',
|
|
16040
|
+
'[attr.role]': '"dialog"',
|
|
16041
|
+
'[attr.aria-modal]': 'true',
|
|
16042
|
+
'[attr.aria-labelledby]': 'hasTitle() ? "modal-" + id + "-title" : null',
|
|
16043
|
+
'[attr.aria-describedby]': 'hasSubtitle() ? "modal-" + id + "-subtitle" : null',
|
|
16044
|
+
}, changeDetection: ChangeDetectionStrategy.OnPush, imports: [PortalModule], styles: [":host{position:relative;display:grid;margin:auto;transition:all var(--dr-modal-animation-time, 0ms) ease-in-out}:host.animation-noop{transition:none!important}:host.animation-noop ::ng-deep .dr-modal{transition:none!important}:host.mat-anchor{opacity:0}:host.mat-anchor ::ng-deep .dr-modal{transform:scale(.8);transition:transform var(--dr-modal-animation-time, 0ms) cubic-bezier(0,0,.2,1)}:host.mat-anchor.mat-enter{opacity:1}:host.mat-anchor.mat-enter ::ng-deep .dr-modal{transform:none}:host.mat-anchor.mat-leave{opacity:0}:host.mat-anchor.mat-leave ::ng-deep .dr-modal{transform:none}\n"] }]
|
|
16045
|
+
}], null, null); })();
|
|
16046
|
+
|
|
16047
|
+
const slots = [
|
|
16048
|
+
DrModalHeaderDirective,
|
|
16049
|
+
DrModalTitleDirective,
|
|
16050
|
+
DrModalSubtitleDirective,
|
|
16051
|
+
DrModalBodyDirective,
|
|
16052
|
+
DrModalFooterDirective,
|
|
16053
|
+
];
|
|
16054
|
+
class DrModalModule {
|
|
16055
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalModule_Factory(t) { return new (t || DrModalModule)(); }; }
|
|
16056
|
+
/** @nocollapse */ static { this.ɵmod = /** @pureOrBreakMyCode */ i0.ɵɵdefineNgModule({ type: DrModalModule }); }
|
|
16057
|
+
/** @nocollapse */ static { this.ɵinj = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjector({ imports: [DrModalComponent] }); }
|
|
16058
|
+
}
|
|
16059
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalModule, [{
|
|
16060
|
+
type: NgModule,
|
|
16061
|
+
args: [{
|
|
16062
|
+
imports: [DrModalComponent, slots, DrModalCloseDirective],
|
|
16063
|
+
exports: [DrModalComponent, slots, DrModalCloseDirective],
|
|
16064
|
+
}]
|
|
16065
|
+
}], null, null); })();
|
|
16066
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(DrModalModule, { imports: [DrModalComponent, DrModalHeaderDirective,
|
|
16067
|
+
DrModalTitleDirective,
|
|
16068
|
+
DrModalSubtitleDirective,
|
|
16069
|
+
DrModalBodyDirective,
|
|
16070
|
+
DrModalFooterDirective, DrModalCloseDirective], exports: [DrModalComponent, DrModalHeaderDirective,
|
|
16071
|
+
DrModalTitleDirective,
|
|
16072
|
+
DrModalSubtitleDirective,
|
|
16073
|
+
DrModalBodyDirective,
|
|
16074
|
+
DrModalFooterDirective, DrModalCloseDirective] }); })();
|
|
16075
|
+
|
|
16076
|
+
class DrModal {
|
|
16077
|
+
constructor() {
|
|
16078
|
+
this.modalRef = inject(DrModalRef);
|
|
16079
|
+
this.data = this.modalRef.data;
|
|
16080
|
+
}
|
|
16081
|
+
}
|
|
16082
|
+
|
|
16083
|
+
function DrConfirmModalComponent_dr_modal_title_1_Template(rf, ctx) { if (rf & 1) {
|
|
16084
|
+
i0.ɵɵelementStart(0, "dr-modal-title");
|
|
16085
|
+
i0.ɵɵtext(1);
|
|
16086
|
+
i0.ɵɵelementEnd();
|
|
16087
|
+
} if (rf & 2) {
|
|
16088
|
+
const ctx_r0 = i0.ɵɵnextContext();
|
|
16089
|
+
i0.ɵɵadvance(1);
|
|
16090
|
+
i0.ɵɵtextInterpolate(ctx_r0.data.title);
|
|
16091
|
+
} }
|
|
16092
|
+
function DrConfirmModalComponent_div_4_div_1_label_1_Template(rf, ctx) { if (rf & 1) {
|
|
16093
|
+
i0.ɵɵelementStart(0, "label", 17);
|
|
16094
|
+
i0.ɵɵtext(1);
|
|
16095
|
+
i0.ɵɵelementEnd();
|
|
16096
|
+
} if (rf & 2) {
|
|
16097
|
+
const field_r5 = i0.ɵɵnextContext().$implicit;
|
|
16098
|
+
i0.ɵɵclassMap(field_r5.isLabelFullWidth ? "col-md-12 mb-2" : "col-md-2");
|
|
16099
|
+
i0.ɵɵadvance(1);
|
|
16100
|
+
i0.ɵɵtextInterpolate(field_r5.label);
|
|
16101
|
+
} }
|
|
16102
|
+
function DrConfirmModalComponent_div_4_div_1_dr_select_3_Template(rf, ctx) { if (rf & 1) {
|
|
16103
|
+
i0.ɵɵelement(0, "dr-select", 18);
|
|
16104
|
+
i0.ɵɵpipe(1, "async");
|
|
16105
|
+
} if (rf & 2) {
|
|
16106
|
+
const field_r5 = i0.ɵɵnextContext().$implicit;
|
|
16107
|
+
const ctx_r7 = i0.ɵɵnextContext(2);
|
|
16108
|
+
i0.ɵɵproperty("searchable", field_r5.searchable)("clearable", field_r5.clearable)("formControlName", field_r5.name)("addTag", field_r5.addTag)("bindLabel", "label")("bindValue", "value")("items", i0.ɵɵpipeBind1(1, 10, field_r5.items$))("loading", ctx_r7.selectLoadings[field_r5.name] == null ? null : ctx_r7.selectLoadings[field_r5.name]())("required", !field_r5.isOptional)("placeholder", field_r5.placeholder);
|
|
16109
|
+
} }
|
|
16110
|
+
function DrConfirmModalComponent_div_4_div_1_dr_input_4_Template(rf, ctx) { if (rf & 1) {
|
|
16111
|
+
i0.ɵɵelement(0, "dr-input", 19);
|
|
16112
|
+
} if (rf & 2) {
|
|
16113
|
+
const field_r5 = i0.ɵɵnextContext().$implicit;
|
|
16114
|
+
i0.ɵɵproperty("formControlName", field_r5.name)("placeholder", field_r5.placeholder);
|
|
16115
|
+
} }
|
|
16116
|
+
function DrConfirmModalComponent_div_4_div_1_dr_date_picker_5_Template(rf, ctx) { if (rf & 1) {
|
|
16117
|
+
i0.ɵɵelement(0, "dr-date-picker", 20);
|
|
16118
|
+
} if (rf & 2) {
|
|
16119
|
+
const field_r5 = i0.ɵɵnextContext().$implicit;
|
|
16120
|
+
i0.ɵɵproperty("formControlName", field_r5.name)("format", field_r5.datePickerFormat)("placeholder", field_r5.placeholder);
|
|
16121
|
+
} }
|
|
16122
|
+
function DrConfirmModalComponent_div_4_div_1_dr_checkbox_6_Template(rf, ctx) { if (rf & 1) {
|
|
16123
|
+
i0.ɵɵelementStart(0, "dr-checkbox", 21);
|
|
16124
|
+
i0.ɵɵtext(1);
|
|
16125
|
+
i0.ɵɵelementEnd();
|
|
16126
|
+
} if (rf & 2) {
|
|
16127
|
+
const field_r5 = i0.ɵɵnextContext().$implicit;
|
|
16128
|
+
i0.ɵɵproperty("formControlName", field_r5.name);
|
|
16129
|
+
i0.ɵɵadvance(1);
|
|
16130
|
+
i0.ɵɵtextInterpolate1(" ", field_r5.label, " ");
|
|
16131
|
+
} }
|
|
16132
|
+
function DrConfirmModalComponent_div_4_div_1_span_8_Template(rf, ctx) { if (rf & 1) {
|
|
16133
|
+
i0.ɵɵelementStart(0, "span", 22);
|
|
16134
|
+
i0.ɵɵtext(1);
|
|
16135
|
+
i0.ɵɵelementEnd();
|
|
16136
|
+
} if (rf & 2) {
|
|
16137
|
+
const ctx_r11 = i0.ɵɵnextContext(3);
|
|
16138
|
+
i0.ɵɵadvance(1);
|
|
16139
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r11.data.errorMessage, " ");
|
|
16140
|
+
} }
|
|
16141
|
+
function DrConfirmModalComponent_div_4_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
16142
|
+
i0.ɵɵelementStart(0, "div", 8);
|
|
16143
|
+
i0.ɵɵtemplate(1, DrConfirmModalComponent_div_4_div_1_label_1_Template, 2, 3, "label", 9);
|
|
16144
|
+
i0.ɵɵelementStart(2, "div", 10);
|
|
16145
|
+
i0.ɵɵtemplate(3, DrConfirmModalComponent_div_4_div_1_dr_select_3_Template, 2, 12, "dr-select", 11);
|
|
16146
|
+
i0.ɵɵtemplate(4, DrConfirmModalComponent_div_4_div_1_dr_input_4_Template, 1, 2, "dr-input", 12);
|
|
16147
|
+
i0.ɵɵtemplate(5, DrConfirmModalComponent_div_4_div_1_dr_date_picker_5_Template, 1, 3, "dr-date-picker", 13);
|
|
16148
|
+
i0.ɵɵtemplate(6, DrConfirmModalComponent_div_4_div_1_dr_checkbox_6_Template, 2, 2, "dr-checkbox", 14);
|
|
16149
|
+
i0.ɵɵelement(7, "dr-error", 15);
|
|
16150
|
+
i0.ɵɵtemplate(8, DrConfirmModalComponent_div_4_div_1_span_8_Template, 2, 1, "span", 16);
|
|
16151
|
+
i0.ɵɵelementEnd()();
|
|
16152
|
+
} if (rf & 2) {
|
|
16153
|
+
const field_r5 = ctx.$implicit;
|
|
16154
|
+
const ctx_r4 = i0.ɵɵnextContext(2);
|
|
16155
|
+
i0.ɵɵclassMap(field_r5.fieldClass);
|
|
16156
|
+
i0.ɵɵstyleProp("display", field_r5.isLabelFullWidth ? "block" : "flex");
|
|
16157
|
+
i0.ɵɵadvance(1);
|
|
16158
|
+
i0.ɵɵproperty("ngIf", field_r5.label && field_r5.type !== "checkbox");
|
|
16159
|
+
i0.ɵɵadvance(1);
|
|
16160
|
+
i0.ɵɵclassProp("col-md-10", field_r5.label && !field_r5.isLabelFullWidth)("col-md-12", !field_r5.label || field_r5.isLabelFullWidth);
|
|
16161
|
+
i0.ɵɵadvance(1);
|
|
16162
|
+
i0.ɵɵproperty("ngIf", field_r5.type === "select");
|
|
16163
|
+
i0.ɵɵadvance(1);
|
|
16164
|
+
i0.ɵɵproperty("ngIf", field_r5.type === "input");
|
|
16165
|
+
i0.ɵɵadvance(1);
|
|
16166
|
+
i0.ɵɵproperty("ngIf", field_r5.type === "date_picker");
|
|
16167
|
+
i0.ɵɵadvance(1);
|
|
16168
|
+
i0.ɵɵproperty("ngIf", field_r5.type === "checkbox");
|
|
16169
|
+
i0.ɵɵadvance(1);
|
|
16170
|
+
i0.ɵɵproperty("controlName", field_r5.name)("noIcon", true)("displayAsLabel", true);
|
|
16171
|
+
i0.ɵɵadvance(1);
|
|
16172
|
+
i0.ɵɵproperty("ngIf", ctx_r4.data.errorMessage && !ctx_r4.form.pristine && ctx_r4.form.invalid);
|
|
16173
|
+
} }
|
|
16174
|
+
function DrConfirmModalComponent_div_4_Template(rf, ctx) { if (rf & 1) {
|
|
16175
|
+
i0.ɵɵelementStart(0, "div", 6);
|
|
16176
|
+
i0.ɵɵtemplate(1, DrConfirmModalComponent_div_4_div_1_Template, 9, 17, "div", 7);
|
|
16177
|
+
i0.ɵɵelementEnd();
|
|
16178
|
+
} if (rf & 2) {
|
|
16179
|
+
const ctx_r1 = i0.ɵɵnextContext();
|
|
16180
|
+
let tmp_0_0;
|
|
16181
|
+
i0.ɵɵclassMap((tmp_0_0 = ctx_r1.data.formWrapperClass) !== null && tmp_0_0 !== undefined ? tmp_0_0 : "dr-smart-form_wrapper");
|
|
16182
|
+
i0.ɵɵadvance(1);
|
|
16183
|
+
i0.ɵɵproperty("ngForOf", ctx_r1.data.fields);
|
|
16184
|
+
} }
|
|
16185
|
+
function DrConfirmModalComponent_dr_button_6_Template(rf, ctx) { if (rf & 1) {
|
|
16186
|
+
i0.ɵɵelementStart(0, "dr-button", 23);
|
|
16187
|
+
i0.ɵɵtext(1);
|
|
16188
|
+
i0.ɵɵelementEnd();
|
|
16189
|
+
} if (rf & 2) {
|
|
16190
|
+
const ctx_r2 = i0.ɵɵnextContext();
|
|
16191
|
+
i0.ɵɵproperty("theme", ctx_r2.cancelBtn.theme);
|
|
16192
|
+
i0.ɵɵadvance(1);
|
|
16193
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r2.cancelBtn.label, " ");
|
|
16194
|
+
} }
|
|
16195
|
+
function DrConfirmModalComponent_dr_button_7_Template(rf, ctx) { if (rf & 1) {
|
|
16196
|
+
i0.ɵɵelementStart(0, "dr-button", 24);
|
|
16197
|
+
i0.ɵɵtext(1);
|
|
16198
|
+
i0.ɵɵelementEnd();
|
|
16199
|
+
} if (rf & 2) {
|
|
16200
|
+
const ctx_r3 = i0.ɵɵnextContext();
|
|
16201
|
+
i0.ɵɵproperty("theme", ctx_r3.acceptBtn.theme)("disabled", ctx_r3.form.invalid)("isLoading", ctx_r3.isLoading());
|
|
16202
|
+
i0.ɵɵadvance(1);
|
|
16203
|
+
i0.ɵɵtextInterpolate1(" ", ctx_r3.acceptBtn.label, " ");
|
|
16204
|
+
} }
|
|
16205
|
+
class DrConfirmModalComponent extends DrModal {
|
|
16206
|
+
constructor() {
|
|
16207
|
+
super(...arguments);
|
|
16208
|
+
this.cancelBtn = this.data.cancelBtn;
|
|
16209
|
+
this.acceptBtn = this.data.acceptBtn;
|
|
16210
|
+
this.fields = this.data.fields ?? [];
|
|
16211
|
+
this.form = new FormGroup(this.fields.reduce((acc, field) => this.setItemControl(acc, field), {}));
|
|
16212
|
+
this.selectLoadings = this.fields
|
|
16213
|
+
.filter((field) => field.type === 'select')
|
|
16214
|
+
.reduce((acc, field) => this.setItemSelectLoading(acc, field), {});
|
|
16215
|
+
this.isLoading = signal(false);
|
|
16216
|
+
}
|
|
16217
|
+
async onSubmit() {
|
|
16218
|
+
if (this.isLoading())
|
|
16219
|
+
return;
|
|
16220
|
+
const value = this.form.value;
|
|
16221
|
+
this.data.confirmFn && this.isLoading.set(true);
|
|
16222
|
+
const [, error] = this.data.confirmFn ? await withResult(this.data.confirmFn(value)) : [true, null];
|
|
16223
|
+
this.data.confirmFn && this.isLoading.set(false);
|
|
16224
|
+
!error && this.modalRef.close(true);
|
|
16225
|
+
}
|
|
16226
|
+
setItemControl(map, field) {
|
|
16227
|
+
map[field.name] = new FormControl(field.value, {
|
|
16228
|
+
validators: field.validators ?? [],
|
|
16229
|
+
asyncValidators: field.asyncValidators ?? [],
|
|
16230
|
+
});
|
|
16231
|
+
return map;
|
|
16232
|
+
}
|
|
16233
|
+
setItemSelectLoading(map, field) {
|
|
16234
|
+
const isLoading = signal(true);
|
|
16235
|
+
map[field.name] = isLoading;
|
|
16236
|
+
field.items$ = field.items$.pipe(finalize(() => isLoading.set(false)));
|
|
16237
|
+
return map;
|
|
16238
|
+
}
|
|
16239
|
+
/** @nocollapse */ static { this.ɵfac = /** @pureOrBreakMyCode */ function () { let ɵDrConfirmModalComponent_BaseFactory; return function DrConfirmModalComponent_Factory(t) { return (ɵDrConfirmModalComponent_BaseFactory || (ɵDrConfirmModalComponent_BaseFactory = i0.ɵɵgetInheritedFactory(DrConfirmModalComponent)))(t || DrConfirmModalComponent); }; }(); }
|
|
16240
|
+
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrConfirmModalComponent, selectors: [["dr-confirm-modal"]], standalone: true, features: [i0.ɵɵInheritDefinitionFeature, i0.ɵɵStandaloneFeature], decls: 8, vars: 9, consts: [["dr-modal", "", 3, "formGroup", "withCloseBtn", "size", "maxHeight", "ngSubmit"], [4, "ngIf"], [3, "innerHTML"], ["class", "dr-smart-form", 3, "class", 4, "ngIf"], ["drModalClose", "", "type", "button", "data-test", "modalCloseBtn", 3, "theme", 4, "ngIf"], ["type", "submit", "data-test", "modalAddBtn", 3, "theme", "disabled", "isLoading", 4, "ngIf"], [1, "dr-smart-form"], ["class", "dr-smart-form_group", 3, "class", "display", 4, "ngFor", "ngForOf"], [1, "dr-smart-form_group"], ["class", "label p-0 d-flex align-items-center", 3, "class", 4, "ngIf"], [1, "input-group", "p-0"], [3, "searchable", "clearable", "formControlName", "addTag", "bindLabel", "bindValue", "items", "loading", "required", "placeholder", 4, "ngIf"], ["data-test", "modalInput", "class", "form-control", 3, "formControlName", "placeholder", 4, "ngIf"], [3, "formControlName", "format", "placeholder", 4, "ngIf"], [3, "formControlName", 4, "ngIf"], [3, "controlName", "noIcon", "displayAsLabel"], ["class", "form-error-alert", 4, "ngIf"], [1, "label", "p-0", "d-flex", "align-items-center"], [3, "searchable", "clearable", "formControlName", "addTag", "bindLabel", "bindValue", "items", "loading", "required", "placeholder"], ["data-test", "modalInput", 1, "form-control", 3, "formControlName", "placeholder"], [3, "formControlName", "format", "placeholder"], [3, "formControlName"], [1, "form-error-alert"], ["drModalClose", "", "type", "button", "data-test", "modalCloseBtn", 3, "theme"], ["type", "submit", "data-test", "modalAddBtn", 3, "theme", "disabled", "isLoading"]], template: function DrConfirmModalComponent_Template(rf, ctx) { if (rf & 1) {
|
|
16241
|
+
i0.ɵɵelementStart(0, "form", 0);
|
|
16242
|
+
i0.ɵɵlistener("ngSubmit", function DrConfirmModalComponent_Template_form_ngSubmit_0_listener() { return ctx.onSubmit(); });
|
|
16243
|
+
i0.ɵɵtemplate(1, DrConfirmModalComponent_dr_modal_title_1_Template, 2, 1, "dr-modal-title", 1);
|
|
16244
|
+
i0.ɵɵelementStart(2, "dr-modal-body");
|
|
16245
|
+
i0.ɵɵelement(3, "div", 2);
|
|
16246
|
+
i0.ɵɵtemplate(4, DrConfirmModalComponent_div_4_Template, 2, 3, "div", 3);
|
|
16247
|
+
i0.ɵɵelementEnd();
|
|
16248
|
+
i0.ɵɵelementStart(5, "dr-modal-footer");
|
|
16249
|
+
i0.ɵɵtemplate(6, DrConfirmModalComponent_dr_button_6_Template, 2, 2, "dr-button", 4);
|
|
16250
|
+
i0.ɵɵtemplate(7, DrConfirmModalComponent_dr_button_7_Template, 2, 4, "dr-button", 5);
|
|
16251
|
+
i0.ɵɵelementEnd()();
|
|
16252
|
+
} if (rf & 2) {
|
|
16253
|
+
i0.ɵɵproperty("formGroup", ctx.form)("withCloseBtn", ctx.data.withCloseBtn)("size", ctx.data.size)("maxHeight", ctx.data.maxHeight);
|
|
16254
|
+
i0.ɵɵadvance(1);
|
|
16255
|
+
i0.ɵɵproperty("ngIf", ctx.data.title);
|
|
16256
|
+
i0.ɵɵadvance(2);
|
|
16257
|
+
i0.ɵɵproperty("innerHTML", ctx.data.content, i0.ɵɵsanitizeHtml);
|
|
16258
|
+
i0.ɵɵadvance(1);
|
|
16259
|
+
i0.ɵɵproperty("ngIf", ctx.fields.length);
|
|
16260
|
+
i0.ɵɵadvance(2);
|
|
16261
|
+
i0.ɵɵproperty("ngIf", ctx.cancelBtn);
|
|
16262
|
+
i0.ɵɵadvance(1);
|
|
16263
|
+
i0.ɵɵproperty("ngIf", ctx.acceptBtn);
|
|
16264
|
+
} }, dependencies: [CommonModule, i1.NgForOf, i1.NgIf, i1.AsyncPipe, DrModalModule, DrModalComponent, DrModalTitleDirective, DrModalBodyDirective, DrModalFooterDirective, DrModalCloseDirective, FormsModule, i2.ɵNgNoValidate, i2.NgControlStatus, i2.NgControlStatusGroup, i2.RequiredValidator, ReactiveFormsModule, i2.FormGroupDirective, i2.FormControlName, DrInputsModule, DrButtonComponent, CheckboxComponent, DrInputComponent, DrSelectComponent, DrDatePickerComponent, DrErrorModule, DrErrorComponent], styles: [".dr-smart-form[_ngcontent-%COMP%]{font-size:14px;font-weight:400;line-height:22px}.dr-smart-form[_ngcontent-%COMP%] dr-checkbox[_ngcontent-%COMP%]{font-weight:400}.form-error-alert[_ngcontent-%COMP%]{position:absolute;margin-top:5px;font-size:12px;color:#bf1d30}"], changeDetection: 0 }); }
|
|
16265
|
+
}
|
|
16266
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrConfirmModalComponent, [{
|
|
16267
|
+
type: Component,
|
|
16268
|
+
args: [{ standalone: true, selector: 'dr-confirm-modal', changeDetection: ChangeDetectionStrategy.OnPush, imports: [CommonModule, DrModalModule, FormsModule, ReactiveFormsModule, DrInputsModule, DrErrorModule, DrButtonComponent], template: "<form\n dr-modal\n [formGroup]=\"form\"\n [withCloseBtn]=\"data.withCloseBtn\"\n [size]=\"data.size\"\n [maxHeight]=\"data.maxHeight\"\n (ngSubmit)=\"onSubmit()\">\n <dr-modal-title *ngIf=\"data.title\">{{ data.title }}</dr-modal-title>\n\n <dr-modal-body>\n <div [innerHTML]=\"data.content\"></div>\n\n <div *ngIf=\"fields.length\" class=\"dr-smart-form\" [class]=\"data.formWrapperClass ?? 'dr-smart-form_wrapper'\">\n <div\n *ngFor=\"let field of data.fields\"\n class=\"dr-smart-form_group\"\n [class]=\"field.fieldClass\"\n [style.display]=\"field.isLabelFullWidth ? 'block' : 'flex'\">\n <label\n *ngIf=\"field.label && field.type !== 'checkbox'\"\n class=\"label p-0 d-flex align-items-center\"\n [class]=\"field.isLabelFullWidth ? 'col-md-12 mb-2' : 'col-md-2'\"\n >{{ field.label }}</label\n >\n <div\n class=\"input-group p-0\"\n [class.col-md-10]=\"field.label && !field.isLabelFullWidth\"\n [class.col-md-12]=\"!field.label || field.isLabelFullWidth\">\n <dr-select\n *ngIf=\"field.type === 'select'\"\n [searchable]=\"field.searchable\"\n [clearable]=\"field.clearable\"\n [formControlName]=\"field.name\"\n [addTag]=\"field.addTag\"\n [bindLabel]=\"'label'\"\n [bindValue]=\"'value'\"\n [items]=\"field.items$ | async\"\n [loading]=\"selectLoadings[field.name]?.()\"\n [required]=\"!field.isOptional\"\n [placeholder]=\"field.placeholder\">\n </dr-select>\n\n <dr-input\n *ngIf=\"field.type === 'input'\"\n data-test=\"modalInput\"\n class=\"form-control\"\n [formControlName]=\"field.name\"\n [placeholder]=\"field.placeholder\"></dr-input>\n\n <dr-date-picker\n *ngIf=\"field.type === 'date_picker'\"\n [formControlName]=\"field.name\"\n [format]=\"field.datePickerFormat\"\n [placeholder]=\"field.placeholder\"></dr-date-picker>\n\n <dr-checkbox *ngIf=\"field.type === 'checkbox'\" [formControlName]=\"field.name\">\n {{ field.label }}\n </dr-checkbox>\n\n <dr-error [controlName]=\"field.name\" [noIcon]=\"true\" [displayAsLabel]=\"true\"></dr-error>\n\n <span *ngIf=\"data.errorMessage && !form.pristine && form.invalid\" class=\"form-error-alert\">\n {{ data.errorMessage }}\n </span>\n </div>\n </div>\n </div>\n </dr-modal-body>\n\n <dr-modal-footer>\n <dr-button *ngIf=\"cancelBtn\" drModalClose type=\"button\" [theme]=\"cancelBtn.theme\" data-test=\"modalCloseBtn\">\n {{ cancelBtn.label }}\n </dr-button>\n\n <dr-button\n *ngIf=\"acceptBtn\"\n type=\"submit\"\n [theme]=\"acceptBtn.theme\"\n [disabled]=\"form.invalid\"\n [isLoading]=\"isLoading()\"\n data-test=\"modalAddBtn\">\n {{ acceptBtn.label }}\n </dr-button>\n </dr-modal-footer>\n</form>\n", styles: [".dr-smart-form{font-size:14px;font-weight:400;line-height:22px}.dr-smart-form dr-checkbox{font-weight:400}.form-error-alert{position:absolute;margin-top:5px;font-size:12px;color:#bf1d30}\n"] }]
|
|
16269
|
+
}], null, null); })();
|
|
16270
|
+
|
|
16271
|
+
var drConfirmModal_component = /*#__PURE__*/Object.freeze({
|
|
16272
|
+
__proto__: null,
|
|
16273
|
+
DrConfirmModalComponent: DrConfirmModalComponent
|
|
16274
|
+
});
|
|
16275
|
+
|
|
16276
|
+
const DR_MODAL_DEFAULT_CONFIG = new InjectionToken('DR_MODAL_DEFAULT_CONFIG', {
|
|
16277
|
+
providedIn: 'root',
|
|
16278
|
+
factory: () => ({
|
|
16279
|
+
autoFocus: 'input, button[type="submit"], dr-modal-container',
|
|
16280
|
+
hasBackdrop: true,
|
|
16281
|
+
closeOnNavigation: false,
|
|
16282
|
+
width: 'auto',
|
|
16283
|
+
height: 'auto',
|
|
16284
|
+
minHeight: 'auto',
|
|
16285
|
+
backdropClass: 'cdk-overlay-dark-backdrop',
|
|
16286
|
+
}),
|
|
16287
|
+
});
|
|
16288
|
+
|
|
16289
|
+
class DrModalService {
|
|
16290
|
+
constructor(dialog) {
|
|
16291
|
+
this.dialog = dialog;
|
|
16292
|
+
this._modals = [];
|
|
16293
|
+
this.defaultConfig = inject(DR_MODAL_DEFAULT_CONFIG);
|
|
16294
|
+
// start lazy loading of confirmation modal on creation
|
|
16295
|
+
this.confirmComponentPromise = Promise.resolve().then(function () { return drConfirmModal_component; }).then((m) => m.DrConfirmModalComponent);
|
|
16296
|
+
}
|
|
16297
|
+
get modals() {
|
|
16298
|
+
return this._modals;
|
|
16299
|
+
}
|
|
16300
|
+
open(component, config) {
|
|
16301
|
+
// Prevent from opening modal with same id
|
|
16302
|
+
const existingModal = config?.id ? this.modals.find((modal) => modal.config.id === config.id) : null;
|
|
16303
|
+
if (existingModal) {
|
|
16304
|
+
return existingModal;
|
|
16305
|
+
}
|
|
16306
|
+
let modalRef;
|
|
16307
|
+
let drModalConfig;
|
|
16308
|
+
const id = config.id ?? uniqueId$1();
|
|
16309
|
+
const newConfig = {
|
|
16310
|
+
...this.defaultConfig,
|
|
16311
|
+
...config,
|
|
16312
|
+
id,
|
|
16313
|
+
// Disable closing since we need to sync it up to the animation ourselves.
|
|
16314
|
+
disableClose: true,
|
|
16315
|
+
// Disable closing on destroy, because this service cleans up its open modals as well.
|
|
16316
|
+
// We want to do the cleanup here, rather than the CDK service, because the CDK destroys
|
|
16317
|
+
// the dialogs immediately whereas we want it to wait for the animations to finish.
|
|
16318
|
+
closeOnDestroy: false,
|
|
16319
|
+
// Disable closing on detachments so that we can sync up the animation
|
|
16320
|
+
closeOnOverlayDetachments: false,
|
|
16321
|
+
providers: (dialogRef, _config) => {
|
|
16322
|
+
modalRef = new DrModalRef(dialogRef, drModalConfig);
|
|
16323
|
+
return [
|
|
16324
|
+
{ provide: DrModalRef, useValue: modalRef },
|
|
16325
|
+
{ provide: DrModalConfig, useValue: drModalConfig },
|
|
16326
|
+
];
|
|
16327
|
+
},
|
|
16328
|
+
container: {
|
|
16329
|
+
type: DrModalContainerComponent,
|
|
16330
|
+
providers: (_config) => {
|
|
16331
|
+
drModalConfig = { ...config, id };
|
|
16332
|
+
return [{ provide: DrModalConfig, useValue: drModalConfig }];
|
|
16333
|
+
},
|
|
16334
|
+
},
|
|
16335
|
+
};
|
|
16336
|
+
this.dialog.open(component, newConfig);
|
|
16337
|
+
this._modals[modalRef.id] = modalRef;
|
|
16338
|
+
modalRef.afterClosed$.subscribe(() => delete this._modals[modalRef.id]);
|
|
16339
|
+
return modalRef;
|
|
16340
|
+
}
|
|
16341
|
+
async confirm(data = {}) {
|
|
16342
|
+
const modalRef = this.open(await this.confirmComponentPromise, { data: this.getConfirmData(data) });
|
|
16343
|
+
return (await firstValueFrom(modalRef.afterClosed$)) || false;
|
|
16344
|
+
}
|
|
16345
|
+
closeAll() {
|
|
16346
|
+
[...this.modals].reverse().forEach((modal) => modal.close());
|
|
16347
|
+
}
|
|
16348
|
+
getConfirmData(data) {
|
|
16349
|
+
return {
|
|
16350
|
+
size: 'xs',
|
|
16351
|
+
maxHeight: 'size',
|
|
16352
|
+
withCloseBtn: true,
|
|
16353
|
+
cancelBtn: { theme: 'secondary', label: 'Cancel' },
|
|
16354
|
+
acceptBtn: { theme: 'primary', label: 'Confirm' },
|
|
16355
|
+
...data,
|
|
16356
|
+
};
|
|
16357
|
+
}
|
|
16358
|
+
/** @nocollapse */ static { this.ɵfac = function DrModalService_Factory(t) { return new (t || DrModalService)(i0.ɵɵinject(i1$7.Dialog)); }; }
|
|
16359
|
+
/** @nocollapse */ static { this.ɵprov = /** @pureOrBreakMyCode */ i0.ɵɵdefineInjectable({ token: DrModalService, factory: DrModalService.ɵfac, providedIn: 'root' }); }
|
|
16360
|
+
}
|
|
16361
|
+
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrModalService, [{
|
|
16362
|
+
type: Injectable,
|
|
16363
|
+
args: [{
|
|
16364
|
+
providedIn: 'root',
|
|
16365
|
+
}]
|
|
16366
|
+
}], function () { return [{ type: i1$7.Dialog }]; }, null); })();
|
|
16367
|
+
|
|
16368
|
+
const modalFormInput = (config) => ({
|
|
16369
|
+
...config,
|
|
16370
|
+
type: 'input',
|
|
16371
|
+
});
|
|
16372
|
+
const modalFormCheckbox = (config) => ({
|
|
16373
|
+
...config,
|
|
16374
|
+
type: 'checkbox',
|
|
16375
|
+
});
|
|
16376
|
+
const modalFormDatepicker = (config) => ({
|
|
16377
|
+
...config,
|
|
16378
|
+
type: 'date_picker',
|
|
16379
|
+
});
|
|
16380
|
+
const modalFormSelect = (config, items$) => ({
|
|
16381
|
+
...config,
|
|
16382
|
+
items$,
|
|
16383
|
+
type: 'select',
|
|
16384
|
+
});
|
|
16385
|
+
|
|
15707
16386
|
/**
|
|
15708
16387
|
* Configuration used when opening a drawer.
|
|
15709
16388
|
*/
|
|
@@ -15970,7 +16649,7 @@ class DrawerContainer extends CdkDialogContainer {
|
|
|
15970
16649
|
this._animationStateChanged.emit(event);
|
|
15971
16650
|
}
|
|
15972
16651
|
_captureInitialFocus() { }
|
|
15973
|
-
/** @nocollapse */ static { this.ɵfac = function DrawerContainer_Factory(t) { return new (t || DrawerContainer)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$
|
|
16652
|
+
/** @nocollapse */ static { this.ɵfac = function DrawerContainer_Factory(t) { return new (t || DrawerContainer)(i0.ɵɵdirectiveInject(i0.ElementRef), i0.ɵɵdirectiveInject(i1$8.FocusTrapFactory), i0.ɵɵdirectiveInject(DOCUMENT, 8), i0.ɵɵdirectiveInject(DrawerConfig), i0.ɵɵdirectiveInject(i1$8.InteractivityChecker), i0.ɵɵdirectiveInject(i0.NgZone), i0.ɵɵdirectiveInject(i1$1.OverlayRef), i0.ɵɵdirectiveInject(i1$8.FocusMonitor)); }; }
|
|
15974
16653
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrawerContainer, selectors: [["dr-drawer-container"]], viewQuery: function DrawerContainer_Query(rf, ctx) { if (rf & 1) {
|
|
15975
16654
|
i0.ɵɵviewQuery(CdkPortalOutlet, 7);
|
|
15976
16655
|
i0.ɵɵviewQuery(_c0$k, 5);
|
|
@@ -15995,7 +16674,7 @@ class DrawerContainer extends CdkDialogContainer {
|
|
|
15995
16674
|
i0.ɵɵproperty("ngIf", ctx._config.position === "bottom" && !ctx._config.unstyled);
|
|
15996
16675
|
i0.ɵɵadvance(1);
|
|
15997
16676
|
i0.ɵɵclassProp("unstyled-wrapper", ctx._config.unstyled);
|
|
15998
|
-
} }, dependencies: [PortalModule,
|
|
16677
|
+
} }, dependencies: [PortalModule, i1$6.CdkPortalOutlet, DialogModule, MatCommonModule, CommonModule, i1.NgIf], styles: [".dr-drawer-container{display:flex;flex-direction:column;width:100%;height:100%;overflow:auto;outline:0;box-sizing:border-box;background-color:#fff;box-shadow:0 4px 14px #d8d9de80}.dr-drawer-container__wrapper{flex:1;overflow:auto}.dr-drawer-container__wrapper.unstyled-wrapper{flex:unset;overflow:unset}.cdk-high-contrast-active .dr-drawer-container{outline:1px solid}.handle{position:relative;height:24px;user-select:none;-webkit-user-select:none;flex-shrink:0}.handle--resize{cursor:ns-resize}.handle--dismiss{cursor:pointer}.handle:after{content:\"\";position:absolute;top:16px;left:50%;transform:translate(-50%,-50%);background-color:#dfe0e3;height:4px;width:64px;border-radius:16px;transition:background-color .2s ease}.handle:hover:after{background-color:#b6b8bf}.handle:active:after{background-color:#9b9ea8}.dr-drawer-right{transform:translate(100%);border-top-left-radius:16px;border-bottom-left-radius:16px}.dr-drawer-left{transform:translate(-100%);border-top-right-radius:16px;border-bottom-right-radius:16px}.dr-drawer-bottom{transform:translateY(100%);border-top-left-radius:16px;border-top-right-radius:16px}.dr-drawer-top{transform:translateY(-100%);border-bottom-left-radius:16px;border-bottom-right-radius:16px}\n"], encapsulation: 2, data: { animation: [drDrawerAnimations.drawerState] } }); }
|
|
15999
16678
|
}
|
|
16000
16679
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrawerContainer, [{
|
|
16001
16680
|
type: Component,
|
|
@@ -16011,12 +16690,12 @@ class DrawerContainer extends CdkDialogContainer {
|
|
|
16011
16690
|
'(@state.start)': '_onAnimationStart($event)',
|
|
16012
16691
|
'(@state.done)': '_onAnimationDone($event)',
|
|
16013
16692
|
}, standalone: true, imports: [PortalModule, DialogModule, MatCommonModule, CommonModule], template: "<div\n *ngIf=\"_config.position === 'bottom' && !_config.unstyled\"\n #handleRef\n class=\"handle\"\n [class.handle--resize]=\"_config.dragMode === 'resize'\"\n [class.handle--dismiss]=\"_config.dragMode === 'dismiss'\"></div>\n<div class=\"dr-drawer-container__wrapper\" [class.unstyled-wrapper]=\"_config.unstyled\">\n <ng-template cdkPortalOutlet></ng-template>\n</div>\n", styles: [".dr-drawer-container{display:flex;flex-direction:column;width:100%;height:100%;overflow:auto;outline:0;box-sizing:border-box;background-color:#fff;box-shadow:0 4px 14px #d8d9de80}.dr-drawer-container__wrapper{flex:1;overflow:auto}.dr-drawer-container__wrapper.unstyled-wrapper{flex:unset;overflow:unset}.cdk-high-contrast-active .dr-drawer-container{outline:1px solid}.handle{position:relative;height:24px;user-select:none;-webkit-user-select:none;flex-shrink:0}.handle--resize{cursor:ns-resize}.handle--dismiss{cursor:pointer}.handle:after{content:\"\";position:absolute;top:16px;left:50%;transform:translate(-50%,-50%);background-color:#dfe0e3;height:4px;width:64px;border-radius:16px;transition:background-color .2s ease}.handle:hover:after{background-color:#b6b8bf}.handle:active:after{background-color:#9b9ea8}.dr-drawer-right{transform:translate(100%);border-top-left-radius:16px;border-bottom-left-radius:16px}.dr-drawer-left{transform:translate(-100%);border-top-right-radius:16px;border-bottom-right-radius:16px}.dr-drawer-bottom{transform:translateY(100%);border-top-left-radius:16px;border-top-right-radius:16px}.dr-drawer-top{transform:translateY(-100%);border-bottom-left-radius:16px;border-bottom-right-radius:16px}\n"] }]
|
|
16014
|
-
}], function () { return [{ type: i0.ElementRef }, { type: i1$
|
|
16693
|
+
}], function () { return [{ type: i0.ElementRef }, { type: i1$8.FocusTrapFactory }, { type: Document, decorators: [{
|
|
16015
16694
|
type: Optional
|
|
16016
16695
|
}, {
|
|
16017
16696
|
type: Inject,
|
|
16018
16697
|
args: [DOCUMENT]
|
|
16019
|
-
}] }, { type: DrawerConfig }, { type: i1$
|
|
16698
|
+
}] }, { type: DrawerConfig }, { type: i1$8.InteractivityChecker }, { type: i0.NgZone }, { type: i1$1.OverlayRef }, { type: i1$8.FocusMonitor }]; }, { _portalOutlet: [{
|
|
16020
16699
|
type: ViewChild,
|
|
16021
16700
|
args: [CdkPortalOutlet, { static: true }]
|
|
16022
16701
|
}], _handleRef: [{
|
|
@@ -16056,14 +16735,14 @@ class DrawerRef {
|
|
|
16056
16735
|
this.id = _ref.id;
|
|
16057
16736
|
// Emit when opening animation completes
|
|
16058
16737
|
containerInstance._animationStateChanged
|
|
16059
|
-
.pipe(filter((event) => event.phaseName === 'done' && event.toState === 'visible'), take(1))
|
|
16738
|
+
.pipe(filter((event) => event.phaseName === 'done' && event.toState === 'visible'), take$1(1))
|
|
16060
16739
|
.subscribe(() => {
|
|
16061
16740
|
this._afterOpened.next();
|
|
16062
16741
|
this._afterOpened.complete();
|
|
16063
16742
|
});
|
|
16064
16743
|
// Dispose overlay when closing animation is complete
|
|
16065
16744
|
containerInstance._animationStateChanged
|
|
16066
|
-
.pipe(filter((event) => event.phaseName === 'done' && event.toState === 'hidden'), take(1))
|
|
16745
|
+
.pipe(filter((event) => event.phaseName === 'done' && event.toState === 'hidden'), take$1(1))
|
|
16067
16746
|
.subscribe(() => {
|
|
16068
16747
|
clearTimeout(this._closeFallbackTimeout);
|
|
16069
16748
|
this._ref.close(this._result);
|
|
@@ -16091,7 +16770,7 @@ class DrawerRef {
|
|
|
16091
16770
|
if (this.containerInstance && !this._afterDismissed.closed) {
|
|
16092
16771
|
// Transition the backdrop in parallel to the drawer.
|
|
16093
16772
|
this.containerInstance._animationStateChanged
|
|
16094
|
-
.pipe(filter((event) => event.phaseName === 'start'), take(1))
|
|
16773
|
+
.pipe(filter((event) => event.phaseName === 'start'), take$1(1))
|
|
16095
16774
|
.subscribe((event) => {
|
|
16096
16775
|
// The logic that disposes of the overlay depends on the exit animation completing, however
|
|
16097
16776
|
// it isn't guaranteed if the parent view is destroyed while it's running. Add a fallback
|
|
@@ -16451,7 +17130,7 @@ class StepperWizardComponent {
|
|
|
16451
17130
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.outlet = _t.first);
|
|
16452
17131
|
} }, inputs: { currentStep: "currentStep" }, outputs: { currentStepChange: "currentStepChange" }, standalone: true, features: [i0.ɵɵStandaloneFeature], decls: 1, vars: 0, consts: [["cdkPortalOutlet", ""]], template: function StepperWizardComponent_Template(rf, ctx) { if (rf & 1) {
|
|
16453
17132
|
i0.ɵɵelementContainer(0, 0);
|
|
16454
|
-
} }, dependencies: [PortalModule,
|
|
17133
|
+
} }, dependencies: [PortalModule, i1$6.CdkPortalOutlet], encapsulation: 2, changeDetection: 0 }); }
|
|
16455
17134
|
}
|
|
16456
17135
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(StepperWizardComponent, [{
|
|
16457
17136
|
type: Component,
|
|
@@ -17605,7 +18284,7 @@ class CellLinkComponent {
|
|
|
17605
18284
|
}
|
|
17606
18285
|
}
|
|
17607
18286
|
}
|
|
17608
|
-
/** @nocollapse */ static { this.ɵfac = function CellLinkComponent_Factory(t) { return new (t || CellLinkComponent)(i0.ɵɵdirectiveInject(i1$
|
|
18287
|
+
/** @nocollapse */ static { this.ɵfac = function CellLinkComponent_Factory(t) { return new (t || CellLinkComponent)(i0.ɵɵdirectiveInject(i1$9.Router)); }; }
|
|
17609
18288
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: CellLinkComponent, selectors: [["dr-cell-link"]], hostVars: 2, hostBindings: function CellLinkComponent_HostBindings(rf, ctx) { if (rf & 1) {
|
|
17610
18289
|
i0.ɵɵlistener("click", function CellLinkComponent_click_HostBindingHandler() { return ctx.goTo(); });
|
|
17611
18290
|
} if (rf & 2) {
|
|
@@ -17624,7 +18303,7 @@ class CellLinkComponent {
|
|
|
17624
18303
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(CellLinkComponent, [{
|
|
17625
18304
|
type: Component,
|
|
17626
18305
|
args: [{ selector: 'dr-cell-link', standalone: true, imports: [CommonModule, DrTooltipModule], changeDetection: ChangeDetectionStrategy.OnPush, template: "<a [class.disabled]=\"isCellDisabled\" [drTooltip]=\"tooltip\">\n {{ templates[query.field] }}\n</a>\n", styles: [":host{width:100%;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;cursor:pointer}:host a{color:#4646ce;text-decoration:none}:host:hover:not(.disabled) a{text-decoration:underline!important}:host.disabled a{color:#aeabac!important}\n"] }]
|
|
17627
|
-
}], function () { return [{ type: i1$
|
|
18306
|
+
}], function () { return [{ type: i1$9.Router }]; }, { isCellDisabled: [{
|
|
17628
18307
|
type: HostBinding,
|
|
17629
18308
|
args: ['class.disabled']
|
|
17630
18309
|
}], goTo: [{
|
|
@@ -18819,7 +19498,7 @@ class DrGridComponent {
|
|
|
18819
19498
|
i0.ɵɵproperty("domLayout", ctx.domLayout)("gridOptions", ctx.gridOptions)("columnDefs", ctx.columnDefs)("rowData", ctx.rowData)("pinnedTopRowData", ctx.pinnedTopRowData)("pinnedBottomRowData", ctx.pinnedBottomRowData)("components", ctx._cellComponents)("rowBuffer", 0)("undoRedoCellEditing", true)("suppressNoRowsOverlay", !(ctx.gridOptions == null ? null : ctx.gridOptions.noRowsOverlayComponent))("suppressLoadingOverlay", true);
|
|
18820
19499
|
i0.ɵɵadvance(2);
|
|
18821
19500
|
i0.ɵɵproperty("ngIf", ctx.theme === "dr-grid-borderless");
|
|
18822
|
-
} }, dependencies: [AgGridModule, i1$8.AgGridAngular, CommonModule, i1.NgIf, i1.AsyncPipe], styles: ["[_nghost-%COMP%]{display:flex;flex-direction:column;position:relative;overflow:hidden}.grid-full-height[_nghost-%COMP%]{height:100%}.grid-with-row-selection[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-row-hover{cursor:pointer}[_nghost-%COMP%]:not(.grid-empty-with-template) ag-grid-angular[_ngcontent-%COMP%] .ag-center-cols-viewport{min-height:40px}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-cell-widget-spacing: 16px;flex:1 1 0;width:100%;height:100%;font-family:Poppins,sans-serif}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-wrapper{height:100%}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-wrapper .ag-icon-grip{height:24px}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-wrapper .ag-icon-grip:before{font-family:DataRails!important;content:var(--dr-icon-drag, \"\\ea5f\");font-size:24px}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value{display:flex;align-items:center;font-family:Poppins,sans-serif;font-size:14px;font-weight:400;color:#333}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value>span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .dr-cell-content-on-hover{visibility:hidden}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-row-hover .dr-cell-content-on-hover{visibility:visible}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-row, [_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell-text{font-size:14px;line-height:24px;font-weight:600;text-align:left;color:#333}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-checkbox-input-wrapper.ag-checked:after, [_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-checkbox-input-wrapper.ag-indeterminate:after{color:#4646ce}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .dr-header-cell-no-border{border:none!important}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value:not(.action-fb), [_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell{padding-right:4px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] , .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] , .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-header-background-color: #f2f2fb;--ag-background-color: #ffffff;--ag-odd-row-background-color: #ffffff;--ag-row-hover-color: #f5f5f5;--ag-selected-row-background-color: #eaeaff;--ag-row-border-color: #dfe0e3;--ag-border-color: #dfe0e3;--ag-header-column-resize-handle-height: 40%;--ag-header-column-resize-handle-color: #dfe0e3;--ag-cell-horizontal-padding: 16px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper{border-radius:12px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header{border-bottom:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header{border:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header .ag-header-row-column, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header .ag-header-row-column, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header .ag-header-row-column{border-left:1px solid #9ea1aa}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top{border-top:1px solid var(--ag-border-color)}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action{border-bottom:none;cursor:pointer}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action .ag-cell-value, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action .ag-cell-value, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action .ag-cell-value{font-size:14px;line-height:24px;font-weight:400;color:#6d6e6f}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover .ag-cell{color:#333}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active:before, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active:before, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active:before, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active:before, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active:before, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active:before{background-color:#eaeaff!important}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active .ag-cell{color:#4646ce}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total{background:#f6f7f8;border-bottom:0}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total .ag-cell-value, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total .ag-cell-value, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total .ag-cell-value{font-size:14px;line-height:24px;font-weight:400;color:#333}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-horizontal-scroll, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-horizontal-scroll, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-horizontal-scroll{border-top:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-vertical-scroll, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-vertical-scroll, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-vertical-scroll{border-left:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner), .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty){border-right:1px solid #9ea1aa}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty) .ag-cell{border:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer.ag-scroller-corner, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer.ag-scroller-corner, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer.ag-scroller-corner{min-width:8px!important}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner), .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty){border-left:1px solid #9ea1aa}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty) .ag-cell{border:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header{overflow:visible}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header:before, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header:before, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header:before{content:\"\";position:absolute;bottom:0;left:0;border-left:1px solid #9ea1aa;height:1px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-row-last, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-row-last, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-row-last{border-bottom:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-secondary, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-secondary, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-secondary{background-color:#fbfbfe}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child{background-color:#fbfbfe}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded:not(.dr-row-child-last-in-tree), .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child:not(.dr-row-child-last-in-tree), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded:not(.dr-row-child-last-in-tree), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child:not(.dr-row-child-last-in-tree), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded:not(.dr-row-child-last-in-tree), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child:not(.dr-row-child-last-in-tree){border-bottom:transparent}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-cell-horizontal-border: 1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header{border-bottom:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell{padding:0 4px 0 16px;border-right:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell .title{max-width:unset!important;font-size:14px;line-height:24px;font-weight:400}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body .ag-cell-focus{border:1px solid #4646ce}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container .ag-row{background:#fbfbfe}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-center-cols-container .ag-cell:hover:not(.ag-cell-focus){cursor:pointer;border:1px solid #9ea1aa}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-border-color: transparent;--ag-row-border-color: #dfe0e3;--ag-header-background-color: #ffffff}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper{border:none;border-top-left-radius:0;border-top-right-radius:0}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header{border-bottom:1px solid var(--ag-row-border-color)}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell-text{font-size:14px;line-height:24px;font-weight:500;color:#6d6e6f}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom{border-top:1px solid #dfe0e3}.dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-header-background-color: transparent;--ag-background-color: transparent;--ag-odd-row-background-color: transparent;--ag-row-hover-color: #f5f5f5;--ag-selected-row-background-color: transparent;--ag-row-border-color: transparent;--ag-border-color: transparent}.dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell, .dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell-text{font-size:14px;line-height:24px;font-weight:500;color:#6d6e6f}.dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value{font-size:14px;color:#333}.table-blur[_ngcontent-%COMP%]{background:linear-gradient(180deg,#fff0,#fff);position:absolute;height:80px;pointer-events:none;bottom:0;left:0;right:10px;width:100%;transition:.2s opacity}.table-blur.--hidden[_ngcontent-%COMP%]{opacity:0;transition:.2s opacity}"] }); }
|
|
19501
|
+
} }, dependencies: [AgGridModule, i1$a.AgGridAngular, CommonModule, i1.NgIf, i1.AsyncPipe], styles: ["[_nghost-%COMP%]{display:flex;flex-direction:column;position:relative;overflow:hidden}.grid-full-height[_nghost-%COMP%]{height:100%}.grid-with-row-selection[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-row-hover{cursor:pointer}[_nghost-%COMP%]:not(.grid-empty-with-template) ag-grid-angular[_ngcontent-%COMP%] .ag-center-cols-viewport{min-height:40px}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-cell-widget-spacing: 16px;flex:1 1 0;width:100%;height:100%;font-family:Poppins,sans-serif}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-wrapper{height:100%}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-wrapper .ag-icon-grip{height:24px}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-wrapper .ag-icon-grip:before{font-family:DataRails!important;content:var(--dr-icon-drag, \"\\ea5f\");font-size:24px}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value{display:flex;align-items:center;font-family:Poppins,sans-serif;font-size:14px;font-weight:400;color:#333}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value>span{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .dr-cell-content-on-hover{visibility:hidden}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-row-hover .dr-cell-content-on-hover{visibility:visible}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-row, [_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell-text{font-size:14px;line-height:24px;font-weight:600;text-align:left;color:#333}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-checkbox-input-wrapper.ag-checked:after, [_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-checkbox-input-wrapper.ag-indeterminate:after{color:#4646ce}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .dr-header-cell-no-border{border:none!important}[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value:not(.action-fb), [_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell{padding-right:4px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] , .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] , .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-header-background-color: #f2f2fb;--ag-background-color: #ffffff;--ag-odd-row-background-color: #ffffff;--ag-row-hover-color: #f5f5f5;--ag-selected-row-background-color: #eaeaff;--ag-row-border-color: #dfe0e3;--ag-border-color: #dfe0e3;--ag-header-column-resize-handle-height: 40%;--ag-header-column-resize-handle-color: #dfe0e3;--ag-cell-horizontal-padding: 16px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper{border-radius:12px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header{border-bottom:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header{border:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header .ag-header-row-column, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header .ag-header-row-column, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-pinned-right-header .ag-header-row-column{border-left:1px solid #9ea1aa}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top{border-top:1px solid var(--ag-border-color)}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action{border-bottom:none;cursor:pointer}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action .ag-cell-value, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action .ag-cell-value, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action .ag-cell-value{font-size:14px;line-height:24px;font-weight:400;color:#6d6e6f}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover .ag-cell{color:#333}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active:before, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active:before, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active:before, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active:before, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active:before, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active:before{background-color:#eaeaff!important}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action:active .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-top .dr-row-top-action.ag-row-hover:active .ag-cell{color:#4646ce}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total{background:#f6f7f8;border-bottom:0}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total .ag-cell-value, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total .ag-cell-value, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom .dr-row-total .ag-cell-value{font-size:14px;line-height:24px;font-weight:400;color:#333}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-horizontal-scroll, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-horizontal-scroll, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-horizontal-scroll{border-top:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-vertical-scroll, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-vertical-scroll, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body-vertical-scroll{border-left:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner), .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty){border-right:1px solid #9ea1aa}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-header .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container:not(:empty) .ag-cell{border:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer.ag-scroller-corner, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer.ag-scroller-corner, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-left-spacer.ag-scroller-corner{min-width:8px!important}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner), .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty){border-left:1px solid #9ea1aa}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-horizontal-right-spacer:not(.ag-scroller-corner) .ag-cell, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-cols-container:not(:empty) .ag-cell{border:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header{overflow:visible}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header:before, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header:before, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-right-header:before{content:\"\";position:absolute;bottom:0;left:0;border-left:1px solid #9ea1aa;height:1px}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-row-last, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-row-last, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-row-last{border-bottom:none}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-secondary, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-secondary, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-secondary{background-color:#fbfbfe}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded, .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded, .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child{background-color:#fbfbfe}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded:not(.dr-row-child-last-in-tree), .dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child:not(.dr-row-child-last-in-tree), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded:not(.dr-row-child-last-in-tree), .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child:not(.dr-row-child-last-in-tree), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-parent-expanded:not(.dr-row-child-last-in-tree), .dr-grid-default[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .dr-row-child:not(.dr-row-child-last-in-tree){border-bottom:transparent}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-cell-horizontal-border: 1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header{border-bottom:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell{padding:0 4px 0 16px;border-right:1px solid #dfe0e3}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell .title{max-width:unset!important;font-size:14px;line-height:24px;font-weight:400}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-body .ag-cell-focus{border:1px solid #4646ce}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-pinned-left-cols-container .ag-row{background:#fbfbfe}.dr-grid-editable[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-center-cols-container .ag-cell:hover:not(.ag-cell-focus){cursor:pointer;border:1px solid #9ea1aa}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-border-color: transparent;--ag-row-border-color: #dfe0e3;--ag-header-background-color: #ffffff}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper{border:none;border-top-left-radius:0;border-top-right-radius:0}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header{border-bottom:1px solid var(--ag-row-border-color)}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell, .dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-header .ag-header-cell-text{font-size:14px;line-height:24px;font-weight:500;color:#6d6e6f}.dr-grid-inside-card[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-root-wrapper .ag-floating-bottom{border-top:1px solid #dfe0e3}.dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] {--ag-header-background-color: transparent;--ag-background-color: transparent;--ag-odd-row-background-color: transparent;--ag-row-hover-color: #f5f5f5;--ag-selected-row-background-color: transparent;--ag-row-border-color: transparent;--ag-border-color: transparent}.dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell, .dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-header-cell-text{font-size:14px;line-height:24px;font-weight:500;color:#6d6e6f}.dr-grid-borderless[_nghost-%COMP%] ag-grid-angular[_ngcontent-%COMP%] .ag-cell-value{font-size:14px;color:#333}.table-blur[_ngcontent-%COMP%]{background:linear-gradient(180deg,#fff0,#fff);position:absolute;height:80px;pointer-events:none;bottom:0;left:0;right:10px;width:100%;transition:.2s opacity}.table-blur.--hidden[_ngcontent-%COMP%]{opacity:0;transition:.2s opacity}"] }); }
|
|
18823
19502
|
}
|
|
18824
19503
|
(function () { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(DrGridComponent, [{
|
|
18825
19504
|
type: Component,
|
|
@@ -19304,7 +19983,7 @@ class DrGridToolbarComponent {
|
|
|
19304
19983
|
this.destroy$.next();
|
|
19305
19984
|
this.destroy$.complete();
|
|
19306
19985
|
}
|
|
19307
|
-
/** @nocollapse */ static { this.ɵfac = function DrGridToolbarComponent_Factory(t) { return new (t || DrGridToolbarComponent)(i0.ɵɵdirectiveInject(i1$
|
|
19986
|
+
/** @nocollapse */ static { this.ɵfac = function DrGridToolbarComponent_Factory(t) { return new (t || DrGridToolbarComponent)(i0.ɵɵdirectiveInject(i1$9.Router), i0.ɵɵdirectiveInject(i1$9.ActivatedRoute)); }; }
|
|
19308
19987
|
/** @nocollapse */ static { this.ɵcmp = /** @pureOrBreakMyCode */ i0.ɵɵdefineComponent({ type: DrGridToolbarComponent, selectors: [["dr-grid-toolbar"]], inputs: { gridApi: "gridApi", gridColumnApi: "gridColumnApi", title: "title", showSearch: "showSearch", searchMini: "searchMini", reactiveSearch: "reactiveSearch", showColumnSettings: "showColumnSettings", menuActions: "menuActions", menuActionsTooltip: "menuActionsTooltip", showRefresh: "showRefresh", csvParams: "csvParams" }, outputs: { search: "search", menuActionsClick: "menuActionsClick", refresh: "refresh" }, standalone: true, features: [i0.ɵɵStandaloneFeature], ngContentSelectors: _c1$3, decls: 9, vars: 6, consts: [["data-test", "table_title", 1, "dr-grid-toolbar__title"], [1, "dr-grid-toolbar__actions"], ["class", "dr-grid-toolbar__actions__search", "data-analytics", "admin_admin-table-header_input-0", "type", "search", 3, "ngModel", "searchMini", "clearable", "ngModelChange", "search", "blur", "searchHandler", "clearHandler", "keyup.enter", 4, "ngIf"], ["class", "dr-grid-toolbar__actions__columns-settings", "data-analytics", "admin_admin-table-header_button-1", "theme", "icon-primary", "drTooltip", "Columns Menu", "drTooltipPosition", "top", "icon", "dr-icon-bars", 3, "drPopover", "drPopoverPosition", "drPopoverContext", 4, "ngIf"], ["class", "dr-grid-toolbar__actions__more-actions", "drTooltipPosition", "top", "data-analytics", "admin_admin-table-header_button-3", "theme", "icon-primary", "drDropdownPosition", "bottom-right", "icon", "dr-icon-more", 3, "drTooltip", "drDropdown", "click", 4, "ngIf"], ["class", "dr-grid-toolbar__actions__refresh", "data-analytics", "admin_admin-table-header_button-5", "theme", "icon-secondary", "icon", "dr-icon-refresh", "drTooltip", "Refresh", "drTooltipPosition", "top", 3, "click", 4, "ngIf"], ["class", "dr-grid-toolbar__actions__export", "drTooltip", "Export table to csv file", "drTooltipPosition", "top-right", "data-analytics", "admin_admin-table-header_button-6", "theme", "icon-secondary", "icon", "dr-icon-export-excel", 3, "click", 4, "ngIf"], ["data-analytics", "admin_admin-table-header_input-0", "type", "search", 1, "dr-grid-toolbar__actions__search", 3, "ngModel", "searchMini", "clearable", "ngModelChange", "search", "blur", "searchHandler", "clearHandler", "keyup.enter"], ["data-analytics", "admin_admin-table-header_button-1", "theme", "icon-primary", "drTooltip", "Columns Menu", "drTooltipPosition", "top", "icon", "dr-icon-bars", 1, "dr-grid-toolbar__actions__columns-settings", 3, "drPopover", "drPopoverPosition", "drPopoverContext"], ["drTooltipPosition", "top", "data-analytics", "admin_admin-table-header_button-3", "theme", "icon-primary", "drDropdownPosition", "bottom-right", "icon", "dr-icon-more", 1, "dr-grid-toolbar__actions__more-actions", 3, "drTooltip", "drDropdown", "click"], ["data-analytics", "admin_admin-table-header_button-5", "theme", "icon-secondary", "icon", "dr-icon-refresh", "drTooltip", "Refresh", "drTooltipPosition", "top", 1, "dr-grid-toolbar__actions__refresh", 3, "click"], ["drTooltip", "Export table to csv file", "drTooltipPosition", "top-right", "data-analytics", "admin_admin-table-header_button-6", "theme", "icon-secondary", "icon", "dr-icon-export-excel", 1, "dr-grid-toolbar__actions__export", 3, "click"]], template: function DrGridToolbarComponent_Template(rf, ctx) { if (rf & 1) {
|
|
19309
19988
|
i0.ɵɵprojectionDef();
|
|
19310
19989
|
i0.ɵɵelementStart(0, "div", 0);
|
|
@@ -19350,7 +20029,7 @@ __decorate([
|
|
|
19350
20029
|
DrPopoverModule,
|
|
19351
20030
|
DrGridColumnsFilterPopoverComponent,
|
|
19352
20031
|
], changeDetection: ChangeDetectionStrategy.OnPush, template: "<div class=\"dr-grid-toolbar__title\" data-test=\"table_title\">{{ title }}</div>\n<div class=\"dr-grid-toolbar__actions\">\n <dr-input\n class=\"dr-grid-toolbar__actions__search\"\n data-analytics=\"admin_admin-table-header_input-0\"\n *ngIf=\"showSearch\"\n [(ngModel)]=\"searchInput\"\n (ngModelChange)=\"searchDone = false; reactiveSearch && onSearch(this.searchInput)\"\n type=\"search\"\n (search)=\"$event.stopPropagation(); $event.preventDefault()\"\n (blur)=\"searchDone ? null : onSearch(this.searchInput)\"\n (searchHandler)=\"onSearch(this.searchInput)\"\n (clearHandler)=\"onSearch(null)\"\n (keyup.enter)=\"searchDone ? null : onSearch(this.searchInput)\"\n [searchMini]=\"searchMini\"\n [clearable]=\"true\">\n </dr-input>\n <dr-button\n *ngIf=\"showColumnSettings\"\n class=\"dr-grid-toolbar__actions__columns-settings\"\n data-analytics=\"admin_admin-table-header_button-1\"\n theme=\"icon-primary\"\n drTooltip=\"Columns Menu\"\n drTooltipPosition=\"top\"\n [drPopover]=\"ColumnsFilterPopover\"\n [drPopoverPosition]=\"'bottom-right'\"\n [drPopoverContext]=\"{ gridApi, gridColumnApi }\"\n icon=\"dr-icon-bars\">\n </dr-button>\n <dr-button\n *ngIf=\"menuActions\"\n class=\"dr-grid-toolbar__actions__more-actions\"\n [drTooltip]=\"menuActionsTooltip\"\n drTooltipPosition=\"top\"\n data-analytics=\"admin_admin-table-header_button-3\"\n theme=\"icon-primary\"\n (click)=\"onContextMenuClick($event)\"\n [drDropdown]=\"menuActions\"\n drDropdownPosition=\"bottom-right\"\n icon=\"dr-icon-more\">\n </dr-button>\n <ng-content></ng-content>\n <dr-button\n *ngIf=\"showRefresh\"\n class=\"dr-grid-toolbar__actions__refresh\"\n data-analytics=\"admin_admin-table-header_button-5\"\n theme=\"icon-secondary\"\n icon=\"dr-icon-refresh\"\n drTooltip=\"Refresh\"\n drTooltipPosition=\"top\"\n (click)=\"refresh.emit()\">\n </dr-button>\n <dr-button\n *ngIf=\"csvParams\"\n class=\"dr-grid-toolbar__actions__export\"\n drTooltip=\"Export table to csv file\"\n drTooltipPosition=\"top-right\"\n data-analytics=\"admin_admin-table-header_button-6\"\n theme=\"icon-secondary\"\n icon=\"dr-icon-export-excel\"\n (click)=\"onExport()\">\n </dr-button>\n</div>\n", styles: [":host{display:flex;align-items:center}:host .dr-grid-toolbar__title{flex-grow:1;font-size:16px;line-height:24px;font-weight:500}:host .dr-grid-toolbar__actions{display:flex;align-items:center;gap:8px;flex-shrink:0}:host .dr-grid-toolbar__actions__columns-settings{order:20}:host .dr-grid-toolbar__actions__more-actions{order:30}:host .dr-grid-toolbar__actions__refresh{order:40}:host .dr-grid-toolbar__actions__export{order:50}:host ::ng-deep .table-view-form__add-new-integration-btn.icon-primary button{width:unset!important;padding:4px 16px 4px 8px!important}\n"] }]
|
|
19353
|
-
}], function () { return [{ type: i1$
|
|
20032
|
+
}], function () { return [{ type: i1$9.Router }, { type: i1$9.ActivatedRoute }]; }, { gridApi: [{
|
|
19354
20033
|
type: Input,
|
|
19355
20034
|
args: [{ required: true }]
|
|
19356
20035
|
}], gridColumnApi: [{
|
|
@@ -20711,5 +21390,5 @@ class EmojiPickerComponent {
|
|
|
20711
21390
|
* Generated bundle index. Do not edit.
|
|
20712
21391
|
*/
|
|
20713
21392
|
|
|
20714
|
-
export { ASSETS_URL, AbstractSingleGridComponent, AllCheckedPipe, AutofocusDirective, BadgeStatus, CHAT_MESSAGE_TYPE, CROP_IMAGE_MODES, CalendarView, CellActionComponent, CellBadgeStatusComponent, CellButtonComponent, CellCheckboxComponent, CellChildrenListComponent, CellCustomTemplateComponent, CellIconActionsComponent, CellIconTextEditComponent, CellLinkComponent, CellSelectComponent, CellSetAsDefaultComponent, CellSplitRowsComponent, CellToggleComponent, ChatMessage, ChatRole, CheckboxComponent, ClickOutsideDirective, ClickOutsideModule, CodeEditorHintWrapperComponent, Colors, CustomDateAdapter, CustomDateFormat, DIALOG_BUTTON_LABEL, DIALOG_FIELD_TYPE, DIALOG_SIZE, DR_COLOR_ADDITIONAL_BLUE, DR_COLOR_ADDITIONAL_BRIGHT_GREEN, DR_COLOR_ADDITIONAL_BRIGHT_PINK, DR_COLOR_ADDITIONAL_BRIGHT_PURPLE, DR_COLOR_ADDITIONAL_COOL_LAGOON, DR_COLOR_ADDITIONAL_DARK_BLUE, DR_COLOR_ADDITIONAL_DARK_GREEN, DR_COLOR_ADDITIONAL_DEEP_MOCHA, DR_COLOR_ADDITIONAL_FRESH_LIME, DR_COLOR_ADDITIONAL_GRAPE, DR_COLOR_ADDITIONAL_HONEY, DR_COLOR_ADDITIONAL_LAVENDER, DR_COLOR_ADDITIONAL_LIGHT_BLUE, DR_COLOR_ADDITIONAL_LIGHT_PINK, DR_COLOR_ADDITIONAL_MEDIUM_GREEN, DR_COLOR_ADDITIONAL_MOUSE, DR_COLOR_ADDITIONAL_NAVY_BLUE, DR_COLOR_ADDITIONAL_ORANGE, DR_COLOR_ADDITIONAL_ROYAL_PURPLE, DR_COLOR_ADDITIONAL_SKY_BREEZE, DR_COLOR_ADDITIONAL_SOFT_CORAL, DR_COLOR_ADDITIONAL_SPACE, DR_COLOR_AI_BACKGROUND_MAIN_GRADIENT, DR_COLOR_AI_BACKGROUND_MAIN_HOVER_GRADIENT, DR_COLOR_AI_BACKGROUND_SECONDARY_HOVER_GRADIENT, DR_COLOR_AI_BORDER_SECONDARY_GRADIENT, DR_COLOR_AI_GRADIENT, DR_COLOR_AI_LIGHT_GRADIENT, DR_COLOR_AI_PURPLE_GRADIENT, DR_COLOR_BACKGROUND_DISABLED, DR_COLOR_BACKGROUND_HEADER, DR_COLOR_BACKGROUND_HOVER, DR_COLOR_BACKGROUND_MAIN, DR_COLOR_BACKGROUND_MAIN_HEADER, DR_COLOR_BACKGROUND_SECONDARY, DR_COLOR_BACKGROUND_SELECTED, DR_COLOR_BACKGROUND_STATUS_ERROR, DR_COLOR_BACKGROUND_STATUS_INFO, DR_COLOR_BACKGROUND_STATUS_PROGRESS, DR_COLOR_BACKGROUND_STATUS_REGULAR, DR_COLOR_BACKGROUND_STATUS_SUCCESS, DR_COLOR_BACKGROUND_STATUS_WARNING, DR_COLOR_BACKGROUND_WHITE, DR_COLOR_BADGE_BABY_BLUE, DR_COLOR_BADGE_BABY_PINK, DR_COLOR_BADGE_BRIGHT_GREEN, DR_COLOR_BADGE_LIGHT_PURPLE, DR_COLOR_BADGE_LIGHT_TURQUOISE, DR_COLOR_BADGE_MUTED_PLUM, DR_COLOR_BADGE_PALE_YELLOW, DR_COLOR_BADGE_PASTEL_OLIVE, DR_COLOR_BADGE_PEACH, DR_COLOR_BADGE_POWDER_BLUE_GREY, DR_COLOR_BADGE_PURPLE, DR_COLOR_BADGE_SOFT_CORAL, DR_COLOR_BADGE_STONE, DR_COLOR_BADGE_WATER, DR_COLOR_BORDER_ACTIVE, DR_COLOR_BORDER_DISABLED, DR_COLOR_BORDER_DIVIDER, DR_COLOR_BORDER_ERROR, DR_COLOR_BORDER_HOVER, DR_COLOR_BORDER_INPUT, DR_COLOR_GRAY, DR_COLOR_GRAY_DARK, DR_COLOR_GRAY_DARKER, DR_COLOR_GRAY_LIGHT, DR_COLOR_GRAY_MEDIUM_DARK, DR_COLOR_GRAY_MEDIUM_LIGHT, DR_COLOR_PINK, DR_COLOR_PINK_DARK, DR_COLOR_PINK_DARKER, DR_COLOR_PINK_LIGHT, DR_COLOR_PINK_LIGHTER, DR_COLOR_PINK_SUPER_LIGHT, DR_COLOR_PINK_ULTRA_LIGHTER, DR_COLOR_PRIMARY, DR_COLOR_PRIMARY_DARK, DR_COLOR_PRIMARY_DARKER, DR_COLOR_PRIMARY_GRADIENT, DR_COLOR_PRIMARY_LIGHT, DR_COLOR_PRIMARY_LIGHTER, DR_COLOR_PRIMARY_SUPER_LIGHT, DR_COLOR_PRIMARY_ULTRA_LIGHT, DR_COLOR_STATUS_ERROR, DR_COLOR_STATUS_INFO, DR_COLOR_STATUS_PROGRESS, DR_COLOR_STATUS_REGULAR, DR_COLOR_STATUS_SUCCESS, DR_COLOR_STATUS_WARNING, DR_COLOR_TEXT_ACTIVE, DR_COLOR_TEXT_DISABLED, DR_COLOR_TEXT_ERROR, DR_COLOR_TEXT_INFO, DR_COLOR_TEXT_MAIN, DR_COLOR_TEXT_SECONDARY, DR_COLOR_TEXT_SUCCESS, DR_COLOR_TEXT_WARNING, DR_COLOR_TEXT_WHITE, DR_COLOR_WATERMARKS_BLUE, DR_COLOR_WATERMARKS_DARK_GRAY, DR_COLOR_WATERMARKS_DARK_GREEN, DR_COLOR_WATERMARKS_DARK_PURPLE, DR_COLOR_WATERMARKS_GRAY, DR_COLOR_WATERMARKS_GREEN, DR_COLOR_WATERMARKS_MEDIUM_GREEN, DR_COLOR_WATERMARKS_MEDIUM_PURPLE, DR_COLOR_WATERMARKS_ORANGE, DR_COLOR_WATERMARKS_PINK, DR_COLOR_WATERMARKS_PURPLE, DR_COLOR_WATERMARKS_YELLOW, DR_COLOR_YELLOW, DR_COLOR_YELLOW_DARK, DR_COLOR_YELLOW_DARKER, DR_COLOR_YELLOW_LIGHT, DR_COLOR_YELLOW_LIGHTER, DR_COLOR_YELLOW_SUPER_LIGHT, DR_COLOR_YELLOW_ULTRA_LIGHT, DR_DRAWER_DATA, DR_DRAWER_DEFAULT_OPTIONS, DR_SHINE_ANIMATION_CLASS, DataAnalyticsService, DateFromats, DatePickerPeriodPosition, DateTags, DateTimePickerComponent, Debounce, DefaultToastrComponent, DefaultTreeviewEventParser, DefaultTreeviewI18n, DialogModalWrapperComponent, DialogService, DialogWrapperComponent, DownlineTreeviewEventParser, DrAccordionComponent, DrAccordionItemBodyComponent, DrAccordionItemComponent, DrAccordionItemHeaderComponent, DrAccordionModule, DrAlertComponent, DrAlertModule, DrAlertTheme, DrAvatarComponent, DrAvatarModule, DrAvatarPipe, DrAvatarService, DrBadgeComponent, DrBadgeStatusComponent, DrBadgeStatusModule, DrButtonComponent, DrButtonLinkDirective, DrCardComponent, DrCardContentComponent, DrCardHeaderActionsComponent, DrCardHeaderComponent, DrCardModule, DrCardSubtitleComponent, DrCardTitleComponent, DrChatAlertComponent, DrChatComponent, DrChatCustomMessageDirective, DrChatDroppedFilesComponent, DrChatFormComponent, DrChatFormDropdownComponent, DrChatMessageComponent, DrChatMessageFileComponent, DrChatMessageTextComponent, DrChatModule, DrChatSuggestionsComponent, DrChipComponent, DrCodeEditorComponent, DrCodeEditorModule, DrCodemirrorComponent, DrDatePickerComponent, DrDatePickerCustomHeaderComponent, DrDatePickerFormatDirective, DrDatePickerRangeComponent, DrDatePickerWithTimeframeComponent, DrDetailsListComponent, DrDetailsListModule, DrDialogModule, DrDividerComponent, DrDotFlashingComponent, DrDropdownChildDirective, DrDropdownComponent, DrDropdownDirective, DrDropdownItemComponent, DrDropdownItemShowPipe, DrDropdownModule, DrDropdownService, DrEmptyStateComponent, DrEmptyStateDescriptionDirective, DrEmptyStateMediaDirective, DrEmptyStateModule, DrEmptyStateTitleDirective, DrErrorComponent, DrErrorModule, DrFileUploadComponent, DrFileUploadImageTemplateComponent, DrFileUploadItemComponent, DrFiscalMonthCalendarHeaderComponent, DrFiscalMonthCalendarPickerComponent, DrGalleryComponent, DrGridColumnsFilterPopoverComponent, DrGridComponent, DrGridNoRowsComponent, DrGridPaginationComponent, DrGridToolbarComponent, DrImageCropperComponent, DrInputComponent, DrInputsModule, DrLayoutBodyComponent, DrLayoutComponent, DrLayoutHeaderComponent, DrLayoutModule, DrListOverflowComponent, DrModelDebounceChangeDirective, DrPopoverAlignmentDimension, DrPopoverComponent, DrPopoverDirective, DrPopoverModule, DrPopoverRef, DrPopoverService, DrProgressBarComponent, DrSelectAddItemComponent, DrSelectComponent, DrSharedUtils, DrShineAnimationDirective, DrShowTimeframePipe, DrSliderComponent, DrSpinnerComponent, DrSpinnerDirective, DrSpinnerModule, DrStepperModule, DrSystemMessageComponent, DrTabComponent, DrTabsComponent, DrTabsModule, DrTagComponent, DrTagDateComponent, DrTagDayComponent, DrTagForecastComponent, DrTagListComponent, DrTagMonthComponent, DrTagQuarterComponent, DrTagWeekComponent, DrTagYearComponent, DrTagsAndScenarioComponent, DrTagsAndScenarioConstructorComponent, DrTagsConstructorComponent, DrToastrModule, DrToastrService, DrToggleButtonComponent, DrToggleComponent, DrTooltipDirective, DrTooltipModule, Drawer, DrawerConfig, DrawerContainer, DrawerModule, DrawerRef, DropdownInstanceService, ElementOverflowDirective, EmojiPickerComponent, FeedbackSentiment, FileUploadValidationService, FilterDropdownComponent, FilterPipe, FiscalMonthAdapter, ForecastTagService, GMT_OFFSETS, GRID_THEME_OPTIONS, GridDrEventType, GridSortDirections, ICodeEditorHintIcon, IMAGE_TYPES, ImgPipe, IndeterminatePipe, LOCAL_TIME_ZONE_OFFSET, LetContext, LetDirective, OrderDownlineTreeviewEventParser, RadioButtonComponent, RadioGroupComponent, Scenario, ScenarioService, SearchPipe, SeparateTableColumnDirective, SeparateTableComponent, StepWizardDirective, StepperComponent, StepperWizardComponent, TagTypes, TagsConfigSubType, TagsConstructorService, TblHeaderComponent, TblToggleButtonHeaderComponent, TextOverflowComponent, Throttle, TimePickerComponent, TimeframeOption, ToastrStatus, ToastrStatusIcon, ToggleButtonMode, TooltipComponent, TooltipCustomComponent, TooltipDefaultComponent, TooltipInfoComponent, TooltipInfoIconTheme, TooltipInfoWidth, TooltipTheme, TrackByPropertyDirective, TreeviewComponent, TreeviewConfig, TreeviewEventParser, TreeviewHelper, TreeviewI18n, TreeviewItem, TreeviewModule, TreeviewPipe, TruncateTextDirective, getColumnSortingBySortType, getGMTLabel, getSortTypeByColumnSorting, gridSortArrayByLength, gridSortArrayWithSystem, gridSortDate, gridSortNumber, gridSortWithFormatter, gridSortWithSystem, gridSortWithSystemAndFormatter, gridSumAggregation };
|
|
21393
|
+
export { ASSETS_URL, AbstractSingleGridComponent, AllCheckedPipe, AutofocusDirective, BadgeStatus, CHAT_MESSAGE_TYPE, CROP_IMAGE_MODES, CalendarView, CellActionComponent, CellBadgeStatusComponent, CellButtonComponent, CellCheckboxComponent, CellChildrenListComponent, CellCustomTemplateComponent, CellIconActionsComponent, CellIconTextEditComponent, CellLinkComponent, CellSelectComponent, CellSetAsDefaultComponent, CellSplitRowsComponent, CellToggleComponent, ChatMessage, ChatRole, CheckboxComponent, ClickOutsideDirective, ClickOutsideModule, CodeEditorHintWrapperComponent, Colors, CustomDateAdapter, CustomDateFormat, DIALOG_BUTTON_LABEL, DIALOG_FIELD_TYPE, DIALOG_SIZE, DR_COLOR_ADDITIONAL_BLUE, DR_COLOR_ADDITIONAL_BRIGHT_GREEN, DR_COLOR_ADDITIONAL_BRIGHT_PINK, DR_COLOR_ADDITIONAL_BRIGHT_PURPLE, DR_COLOR_ADDITIONAL_COOL_LAGOON, DR_COLOR_ADDITIONAL_DARK_BLUE, DR_COLOR_ADDITIONAL_DARK_GREEN, DR_COLOR_ADDITIONAL_DEEP_MOCHA, DR_COLOR_ADDITIONAL_FRESH_LIME, DR_COLOR_ADDITIONAL_GRAPE, DR_COLOR_ADDITIONAL_HONEY, DR_COLOR_ADDITIONAL_LAVENDER, DR_COLOR_ADDITIONAL_LIGHT_BLUE, DR_COLOR_ADDITIONAL_LIGHT_PINK, DR_COLOR_ADDITIONAL_MEDIUM_GREEN, DR_COLOR_ADDITIONAL_MOUSE, DR_COLOR_ADDITIONAL_NAVY_BLUE, DR_COLOR_ADDITIONAL_ORANGE, DR_COLOR_ADDITIONAL_ROYAL_PURPLE, DR_COLOR_ADDITIONAL_SKY_BREEZE, DR_COLOR_ADDITIONAL_SOFT_CORAL, DR_COLOR_ADDITIONAL_SPACE, DR_COLOR_AI_BACKGROUND_MAIN_GRADIENT, DR_COLOR_AI_BACKGROUND_MAIN_HOVER_GRADIENT, DR_COLOR_AI_BACKGROUND_SECONDARY_HOVER_GRADIENT, DR_COLOR_AI_BORDER_SECONDARY_GRADIENT, DR_COLOR_AI_GRADIENT, DR_COLOR_AI_LIGHT_GRADIENT, DR_COLOR_AI_PURPLE_GRADIENT, DR_COLOR_BACKGROUND_DISABLED, DR_COLOR_BACKGROUND_HEADER, DR_COLOR_BACKGROUND_HOVER, DR_COLOR_BACKGROUND_MAIN, DR_COLOR_BACKGROUND_MAIN_HEADER, DR_COLOR_BACKGROUND_SECONDARY, DR_COLOR_BACKGROUND_SELECTED, DR_COLOR_BACKGROUND_STATUS_ERROR, DR_COLOR_BACKGROUND_STATUS_INFO, DR_COLOR_BACKGROUND_STATUS_PROGRESS, DR_COLOR_BACKGROUND_STATUS_REGULAR, DR_COLOR_BACKGROUND_STATUS_SUCCESS, DR_COLOR_BACKGROUND_STATUS_WARNING, DR_COLOR_BACKGROUND_WHITE, DR_COLOR_BADGE_BABY_BLUE, DR_COLOR_BADGE_BABY_PINK, DR_COLOR_BADGE_BRIGHT_GREEN, DR_COLOR_BADGE_LIGHT_PURPLE, DR_COLOR_BADGE_LIGHT_TURQUOISE, DR_COLOR_BADGE_MUTED_PLUM, DR_COLOR_BADGE_PALE_YELLOW, DR_COLOR_BADGE_PASTEL_OLIVE, DR_COLOR_BADGE_PEACH, DR_COLOR_BADGE_POWDER_BLUE_GREY, DR_COLOR_BADGE_PURPLE, DR_COLOR_BADGE_SOFT_CORAL, DR_COLOR_BADGE_STONE, DR_COLOR_BADGE_WATER, DR_COLOR_BORDER_ACTIVE, DR_COLOR_BORDER_DISABLED, DR_COLOR_BORDER_DIVIDER, DR_COLOR_BORDER_ERROR, DR_COLOR_BORDER_HOVER, DR_COLOR_BORDER_INPUT, DR_COLOR_GRAY, DR_COLOR_GRAY_DARK, DR_COLOR_GRAY_DARKER, DR_COLOR_GRAY_LIGHT, DR_COLOR_GRAY_MEDIUM_DARK, DR_COLOR_GRAY_MEDIUM_LIGHT, DR_COLOR_PINK, DR_COLOR_PINK_DARK, DR_COLOR_PINK_DARKER, DR_COLOR_PINK_LIGHT, DR_COLOR_PINK_LIGHTER, DR_COLOR_PINK_SUPER_LIGHT, DR_COLOR_PINK_ULTRA_LIGHTER, DR_COLOR_PRIMARY, DR_COLOR_PRIMARY_DARK, DR_COLOR_PRIMARY_DARKER, DR_COLOR_PRIMARY_GRADIENT, DR_COLOR_PRIMARY_LIGHT, DR_COLOR_PRIMARY_LIGHTER, DR_COLOR_PRIMARY_SUPER_LIGHT, DR_COLOR_PRIMARY_ULTRA_LIGHT, DR_COLOR_STATUS_ERROR, DR_COLOR_STATUS_INFO, DR_COLOR_STATUS_PROGRESS, DR_COLOR_STATUS_REGULAR, DR_COLOR_STATUS_SUCCESS, DR_COLOR_STATUS_WARNING, DR_COLOR_TEXT_ACTIVE, DR_COLOR_TEXT_DISABLED, DR_COLOR_TEXT_ERROR, DR_COLOR_TEXT_INFO, DR_COLOR_TEXT_MAIN, DR_COLOR_TEXT_SECONDARY, DR_COLOR_TEXT_SUCCESS, DR_COLOR_TEXT_WARNING, DR_COLOR_TEXT_WHITE, DR_COLOR_WATERMARKS_BLUE, DR_COLOR_WATERMARKS_DARK_GRAY, DR_COLOR_WATERMARKS_DARK_GREEN, DR_COLOR_WATERMARKS_DARK_PURPLE, DR_COLOR_WATERMARKS_GRAY, DR_COLOR_WATERMARKS_GREEN, DR_COLOR_WATERMARKS_MEDIUM_GREEN, DR_COLOR_WATERMARKS_MEDIUM_PURPLE, DR_COLOR_WATERMARKS_ORANGE, DR_COLOR_WATERMARKS_PINK, DR_COLOR_WATERMARKS_PURPLE, DR_COLOR_WATERMARKS_YELLOW, DR_COLOR_YELLOW, DR_COLOR_YELLOW_DARK, DR_COLOR_YELLOW_DARKER, DR_COLOR_YELLOW_LIGHT, DR_COLOR_YELLOW_LIGHTER, DR_COLOR_YELLOW_SUPER_LIGHT, DR_COLOR_YELLOW_ULTRA_LIGHT, DR_DRAWER_DATA, DR_DRAWER_DEFAULT_OPTIONS, DR_MODAL_DEFAULT_CONFIG, DR_SHINE_ANIMATION_CLASS, DataAnalyticsService, DateFromats, DatePickerPeriodPosition, DateTags, DateTimePickerComponent, Debounce, DefaultToastrComponent, DefaultTreeviewEventParser, DefaultTreeviewI18n, DialogModalWrapperComponent, DialogService, DialogWrapperComponent, DownlineTreeviewEventParser, DrAccordionComponent, DrAccordionItemBodyComponent, DrAccordionItemComponent, DrAccordionItemHeaderComponent, DrAccordionModule, DrAlertComponent, DrAlertModule, DrAlertTheme, DrAvatarComponent, DrAvatarModule, DrAvatarPipe, DrAvatarService, DrBadgeComponent, DrBadgeStatusComponent, DrBadgeStatusModule, DrButtonComponent, DrButtonLinkDirective, DrCardComponent, DrCardContentComponent, DrCardHeaderActionsComponent, DrCardHeaderComponent, DrCardModule, DrCardSubtitleComponent, DrCardTitleComponent, DrChatAlertComponent, DrChatComponent, DrChatCustomMessageDirective, DrChatDroppedFilesComponent, DrChatFormComponent, DrChatFormDropdownComponent, DrChatMessageComponent, DrChatMessageFileComponent, DrChatMessageTextComponent, DrChatModule, DrChatSuggestionsComponent, DrChipComponent, DrCodeEditorComponent, DrCodeEditorModule, DrCodemirrorComponent, DrConfirmModalComponent, DrDatePickerComponent, DrDatePickerCustomHeaderComponent, DrDatePickerFormatDirective, DrDatePickerRangeComponent, DrDatePickerWithTimeframeComponent, DrDetailsListComponent, DrDetailsListModule, DrDialogModule, DrDividerComponent, DrDotFlashingComponent, DrDropdownChildDirective, DrDropdownComponent, DrDropdownDirective, DrDropdownItemComponent, DrDropdownItemShowPipe, DrDropdownModule, DrDropdownService, DrEmptyStateComponent, DrEmptyStateDescriptionDirective, DrEmptyStateMediaDirective, DrEmptyStateModule, DrEmptyStateTitleDirective, DrErrorComponent, DrErrorModule, DrFileUploadComponent, DrFileUploadImageTemplateComponent, DrFileUploadItemComponent, DrFiscalMonthCalendarHeaderComponent, DrFiscalMonthCalendarPickerComponent, DrGalleryComponent, DrGridColumnsFilterPopoverComponent, DrGridComponent, DrGridNoRowsComponent, DrGridPaginationComponent, DrGridToolbarComponent, DrImageCropperComponent, DrInputComponent, DrInputsModule, DrLayoutBodyComponent, DrLayoutComponent, DrLayoutHeaderComponent, DrLayoutModule, DrListOverflowComponent, DrModal, DrModalBodyDirective, DrModalCloseDirective, DrModalComponent, DrModalConfig, DrModalContainerComponent, DrModalFooterDirective, DrModalHeaderDirective, DrModalModule, DrModalRef, DrModalService, DrModalSubtitleDirective, DrModalTitleDirective, DrModelDebounceChangeDirective, DrPopoverAlignmentDimension, DrPopoverComponent, DrPopoverDirective, DrPopoverModule, DrPopoverRef, DrPopoverService, DrProgressBarComponent, DrSelectAddItemComponent, DrSelectComponent, DrSharedUtils, DrShineAnimationDirective, DrShowTimeframePipe, DrSliderComponent, DrSpinnerComponent, DrSpinnerDirective, DrSpinnerModule, DrStepperModule, DrSystemMessageComponent, DrTabComponent, DrTabsComponent, DrTabsModule, DrTagComponent, DrTagDateComponent, DrTagDayComponent, DrTagForecastComponent, DrTagListComponent, DrTagMonthComponent, DrTagQuarterComponent, DrTagWeekComponent, DrTagYearComponent, DrTagsAndScenarioComponent, DrTagsAndScenarioConstructorComponent, DrTagsConstructorComponent, DrToastrModule, DrToastrService, DrToggleButtonComponent, DrToggleComponent, DrTooltipDirective, DrTooltipModule, Drawer, DrawerConfig, DrawerContainer, DrawerModule, DrawerRef, DropdownInstanceService, ElementOverflowDirective, EmojiPickerComponent, FeedbackSentiment, FileUploadValidationService, FilterDropdownComponent, FilterPipe, FiscalMonthAdapter, ForecastTagService, GMT_OFFSETS, GRID_THEME_OPTIONS, GridDrEventType, GridSortDirections, ICodeEditorHintIcon, IMAGE_TYPES, ImgPipe, IndeterminatePipe, LOCAL_TIME_ZONE_OFFSET, LetContext, LetDirective, OrderDownlineTreeviewEventParser, RadioButtonComponent, RadioGroupComponent, Scenario, ScenarioService, SearchPipe, SeparateTableColumnDirective, SeparateTableComponent, StepWizardDirective, StepperComponent, StepperWizardComponent, TagTypes, TagsConfigSubType, TagsConstructorService, TblHeaderComponent, TblToggleButtonHeaderComponent, TextOverflowComponent, Throttle, TimePickerComponent, TimeframeOption, ToastrStatus, ToastrStatusIcon, ToggleButtonMode, TooltipComponent, TooltipCustomComponent, TooltipDefaultComponent, TooltipInfoComponent, TooltipInfoIconTheme, TooltipInfoWidth, TooltipTheme, TrackByPropertyDirective, TreeviewComponent, TreeviewConfig, TreeviewEventParser, TreeviewHelper, TreeviewI18n, TreeviewItem, TreeviewModule, TreeviewPipe, TruncateTextDirective, fromPromise, getColumnSortingBySortType, getGMTLabel, getSortTypeByColumnSorting, gridSortArrayByLength, gridSortArrayWithSystem, gridSortDate, gridSortNumber, gridSortWithFormatter, gridSortWithSystem, gridSortWithSystemAndFormatter, gridSumAggregation, modalFormCheckbox, modalFormDatepicker, modalFormInput, modalFormSelect, withResult };
|
|
20715
21394
|
//# sourceMappingURL=datarailsshared-datarailsshared.mjs.map
|