@memberjunction/ng-explorer-core 0.9.96 → 0.9.117
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/dist/lib/dashboard-browser-component/dashboard-browser.component.d.ts +1 -1
- package/dist/lib/dashboard-browser-component/dashboard-browser.component.js +3 -2
- package/dist/lib/data-browser-component/data-browser.component.d.ts +1 -1
- package/dist/lib/data-browser-component/data-browser.component.js +1 -1
- package/dist/lib/generic/base-form-component.d.ts +1 -1
- package/dist/lib/generic/base-form-component.js +1 -1
- package/dist/lib/generic/resource-container-component.d.ts +2 -2
- package/dist/lib/generic/resource-container-component.js +2 -2
- package/dist/lib/generic-browse-list/generic-browse-list.component.d.ts +1 -1
- package/dist/lib/generic-browse-list/generic-browse-list.component.js +1 -1
- package/dist/lib/header/header.component.d.ts +1 -1
- package/dist/lib/header/header.component.js +2 -2
- package/dist/lib/home-component/home.component.d.ts +1 -1
- package/dist/lib/home-component/home.component.js +1 -1
- package/dist/lib/navigation/navigation.component.d.ts +2 -2
- package/dist/lib/navigation/navigation.component.js +3 -3
- package/dist/lib/query-browser-component/query-browser.component.js +2 -1
- package/dist/lib/report-browser-component/report-browser.component.js +2 -1
- package/dist/lib/resource-wrappers/dashboard-resource.component.d.ts +1 -1
- package/dist/lib/resource-wrappers/dashboard-resource.component.js +1 -1
- package/dist/lib/resource-wrappers/query-resource.component.d.ts +1 -1
- package/dist/lib/resource-wrappers/query-resource.component.js +1 -1
- package/dist/lib/resource-wrappers/record-resource.component.d.ts +1 -1
- package/dist/lib/resource-wrappers/record-resource.component.js +2 -2
- package/dist/lib/resource-wrappers/report-resource.component.d.ts +1 -1
- package/dist/lib/resource-wrappers/report-resource.component.js +1 -1
- package/dist/lib/resource-wrappers/search-results-resource.component.d.ts +1 -1
- package/dist/lib/resource-wrappers/search-results-resource.component.js +1 -1
- package/dist/lib/resource-wrappers/view-resource.component.d.ts +1 -1
- package/dist/lib/resource-wrappers/view-resource.component.js +1 -1
- package/dist/lib/single-application/single-application.component.d.ts +1 -1
- package/dist/lib/single-application/single-application.component.js +1 -1
- package/dist/lib/single-dashboard/Components/add-item/add-item.component.js +2 -2
- package/dist/lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component.js +2 -2
- package/dist/lib/single-dashboard/single-dashboard.component.d.ts +2 -2
- package/dist/lib/single-dashboard/single-dashboard.component.js +2 -2
- package/dist/lib/single-entity/single-entity.component.d.ts +1 -1
- package/dist/lib/single-entity/single-entity.component.js +1 -1
- package/dist/lib/single-report/single-report.component.d.ts +1 -2
- package/dist/lib/single-report/single-report.component.js +7 -6
- package/dist/lib/single-view/single-view.component.d.ts +1 -1
- package/dist/lib/single-view/single-view.component.js +2 -2
- package/dist/lib/user-notifications/user-notifications.component.d.ts +1 -1
- package/dist/lib/user-notifications/user-notifications.component.js +2 -2
- package/dist/lib/user-view-properties/view-properties-dialog.component.d.ts +1 -1
- package/dist/lib/user-view-properties/view-properties-dialog.component.js +16 -13
- package/dist/module.d.ts +59 -63
- package/dist/module.js +10 -38
- package/dist/public-api.d.ts +3 -7
- package/dist/public-api.js +3 -7
- package/package.json +10 -9
|
@@ -3,7 +3,7 @@ import { GridRowClickedEvent, UserViewGridComponent } from '@memberjunction/ng-u
|
|
|
3
3
|
import { EntityInfo } from '@memberjunction/core';
|
|
4
4
|
import { ActivatedRoute, Router } from '@angular/router';
|
|
5
5
|
import { UserViewEntity } from '@memberjunction/core-entities';
|
|
6
|
-
import { SharedService } from '
|
|
6
|
+
import { SharedService } from '@memberjunction/ng-shared';
|
|
7
7
|
import * as i0 from "@angular/core";
|
|
8
8
|
export declare class SingleViewComponent implements AfterViewInit, OnInit {
|
|
9
9
|
private router;
|
|
@@ -13,10 +13,10 @@ import { Metadata, LogError } from '@memberjunction/core';
|
|
|
13
13
|
import { distinctUntilChanged, Subject } from "rxjs";
|
|
14
14
|
import { debounceTime } from "rxjs/operators";
|
|
15
15
|
import { ViewInfo } from '@memberjunction/core-entities';
|
|
16
|
-
import { SharedService } from '
|
|
16
|
+
import { SharedService } from '@memberjunction/ng-shared';
|
|
17
17
|
import * as i0 from "@angular/core";
|
|
18
18
|
import * as i1 from "@angular/router";
|
|
19
|
-
import * as i2 from "
|
|
19
|
+
import * as i2 from "@memberjunction/ng-shared";
|
|
20
20
|
import * as i3 from "@angular/common";
|
|
21
21
|
import * as i4 from "@angular/forms";
|
|
22
22
|
import * as i5 from "@progress/kendo-angular-inputs";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { ElementRef, AfterViewInit } from '@angular/core';
|
|
2
|
-
import { SharedService } from '
|
|
2
|
+
import { SharedService } from '@memberjunction/ng-shared';
|
|
3
3
|
import { UserNotificationEntity } from '@memberjunction/core-entities';
|
|
4
4
|
import { Router } from '@angular/router';
|
|
5
5
|
import * as i0 from "@angular/core";
|
|
@@ -8,10 +8,10 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
8
8
|
});
|
|
9
9
|
};
|
|
10
10
|
import { Component, ViewChild } from '@angular/core';
|
|
11
|
-
import { SharedService } from '
|
|
11
|
+
import { SharedService } from '@memberjunction/ng-shared';
|
|
12
12
|
import { Metadata } from '@memberjunction/core';
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
|
-
import * as i1 from "
|
|
14
|
+
import * as i1 from "@memberjunction/ng-shared";
|
|
15
15
|
import * as i2 from "@angular/router";
|
|
16
16
|
import * as i3 from "@angular/common";
|
|
17
17
|
import * as i4 from "@progress/kendo-angular-buttons";
|
|
@@ -8,7 +8,7 @@ import { WindowComponent } from '@progress/kendo-angular-dialog';
|
|
|
8
8
|
import { TabComponent } from '@progress/kendo-angular-layout';
|
|
9
9
|
import { CompositeFilterDescriptor } from '@progress/kendo-data-query';
|
|
10
10
|
import { TextBoxComponent } from '@progress/kendo-angular-inputs';
|
|
11
|
-
import { SharedService } from '
|
|
11
|
+
import { SharedService } from '@memberjunction/ng-shared';
|
|
12
12
|
import { FormBuilder } from "@angular/forms";
|
|
13
13
|
import * as i0 from "@angular/core";
|
|
14
14
|
export declare class ViewPropertiesDialogComponent extends BaseFormComponent implements AfterViewInit, OnDestroy {
|
|
@@ -10,14 +10,14 @@ var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, ge
|
|
|
10
10
|
import { Component, EventEmitter, Input, Output, ViewChild } from '@angular/core';
|
|
11
11
|
import { Metadata } from "@memberjunction/core";
|
|
12
12
|
import { BaseFormComponent } from '../generic/base-form-component';
|
|
13
|
-
import { ResourceData } from '
|
|
13
|
+
import { ResourceData } from '@memberjunction/ng-shared';
|
|
14
14
|
import { WindowComponent } from '@progress/kendo-angular-dialog';
|
|
15
15
|
import { TabComponent } from '@progress/kendo-angular-layout';
|
|
16
16
|
import { MJEventType, MJGlobal } from '@memberjunction/global';
|
|
17
|
-
import { EventCodes } from '
|
|
17
|
+
import { EventCodes } from '@memberjunction/ng-shared';
|
|
18
18
|
import * as i0 from "@angular/core";
|
|
19
19
|
import * as i1 from "@angular/router";
|
|
20
|
-
import * as i2 from "
|
|
20
|
+
import * as i2 from "@memberjunction/ng-shared";
|
|
21
21
|
import * as i3 from "@angular/forms";
|
|
22
22
|
import * as i4 from "@angular/common";
|
|
23
23
|
import * as i5 from "@progress/kendo-angular-dialog";
|
|
@@ -147,8 +147,9 @@ function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Templ
|
|
|
147
147
|
i0.ɵɵelementStart(2, "kendo-dropdownlist", 44);
|
|
148
148
|
i0.ɵɵlistener("valueChange", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Template_kendo_dropdownlist_valueChange_2_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r34); const s_r32 = restoredCtx.$implicit; const ctx_r36 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r36.sortDirectionValueChange(s_r32, $event)); })("ngModelChange", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Template_kendo_dropdownlist_ngModelChange_2_listener($event) { const restoredCtx = i0.ɵɵrestoreView(_r34); const s_r32 = restoredCtx.$implicit; return i0.ɵɵresetView(s_r32.direction = $event); });
|
|
149
149
|
i0.ɵɵelementEnd();
|
|
150
|
-
i0.ɵɵelementStart(3, "button",
|
|
150
|
+
i0.ɵɵelementStart(3, "button", 19);
|
|
151
151
|
i0.ɵɵlistener("click", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Template_button_click_3_listener() { const restoredCtx = i0.ɵɵrestoreView(_r34); const s_r32 = restoredCtx.$implicit; const ctx_r38 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r38.removeSort(s_r32)); });
|
|
152
|
+
i0.ɵɵelement(4, "kendo-svgicon", 4);
|
|
152
153
|
i0.ɵɵelementEnd()();
|
|
153
154
|
} if (rf & 2) {
|
|
154
155
|
const s_r32 = ctx.$implicit;
|
|
@@ -157,6 +158,8 @@ function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Templ
|
|
|
157
158
|
i0.ɵɵproperty("data", ctx_r31.sortFields)("ngModel", s_r32.field);
|
|
158
159
|
i0.ɵɵadvance();
|
|
159
160
|
i0.ɵɵproperty("data", ctx_r31.sortDirections)("ngModel", s_r32.direction);
|
|
161
|
+
i0.ɵɵadvance(2);
|
|
162
|
+
i0.ɵɵproperty("icon", ctx_r31.sharedService.kendoSVGIcon("sortClear"));
|
|
160
163
|
} }
|
|
161
164
|
function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_Template(rf, ctx) { if (rf & 1) {
|
|
162
165
|
const _r40 = i0.ɵɵgetCurrentView();
|
|
@@ -164,20 +167,20 @@ function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_Template(rf
|
|
|
164
167
|
i0.ɵɵlistener("click", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_Template_button_click_1_listener() { i0.ɵɵrestoreView(_r40); const ctx_r39 = i0.ɵɵnextContext(2); return i0.ɵɵresetView(ctx_r39.addSort()); });
|
|
165
168
|
i0.ɵɵelement(2, "kendo-svgicon", 4);
|
|
166
169
|
i0.ɵɵelementEnd()();
|
|
167
|
-
i0.ɵɵtemplate(3, ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Template,
|
|
170
|
+
i0.ɵɵtemplate(3, ViewPropertiesDialogComponent_kendo_window_3_ng_template_13_div_3_Template, 5, 5, "div", 42);
|
|
168
171
|
} if (rf & 2) {
|
|
169
172
|
const ctx_r10 = i0.ɵɵnextContext(2);
|
|
170
173
|
i0.ɵɵadvance(2);
|
|
171
|
-
i0.ɵɵproperty("icon", ctx_r10.sharedService.kendoSVGIcon("
|
|
174
|
+
i0.ɵɵproperty("icon", ctx_r10.sharedService.kendoSVGIcon("filterAddExpression"));
|
|
172
175
|
i0.ɵɵadvance();
|
|
173
176
|
i0.ɵɵproperty("ngForOf", ctx_r10.sortState);
|
|
174
177
|
} }
|
|
175
178
|
function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_0_Template(rf, ctx) { if (rf & 1) {
|
|
176
179
|
const _r44 = i0.ɵɵgetCurrentView();
|
|
177
|
-
i0.ɵɵelementStart(0, "div")(1, "kendo-textarea",
|
|
180
|
+
i0.ɵɵelementStart(0, "div")(1, "kendo-textarea", 46);
|
|
178
181
|
i0.ɵɵlistener("ngModelChange", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_0_Template_kendo_textarea_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r44); const ctx_r43 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r43.record.SmartFilterExplanation = $event); });
|
|
179
182
|
i0.ɵɵelementEnd();
|
|
180
|
-
i0.ɵɵelementStart(2, "kendo-textarea",
|
|
183
|
+
i0.ɵɵelementStart(2, "kendo-textarea", 46);
|
|
181
184
|
i0.ɵɵlistener("ngModelChange", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_0_Template_kendo_textarea_ngModelChange_2_listener($event) { i0.ɵɵrestoreView(_r44); const ctx_r45 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r45.record.SmartFilterWhereClause = $event); });
|
|
182
185
|
i0.ɵɵelementEnd()();
|
|
183
186
|
} if (rf & 2) {
|
|
@@ -189,7 +192,7 @@ function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_0_Templ
|
|
|
189
192
|
} }
|
|
190
193
|
function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_1_Template(rf, ctx) { if (rf & 1) {
|
|
191
194
|
const _r47 = i0.ɵɵgetCurrentView();
|
|
192
|
-
i0.ɵɵelementStart(0, "div")(1, "kendo-textarea",
|
|
195
|
+
i0.ɵɵelementStart(0, "div")(1, "kendo-textarea", 46);
|
|
193
196
|
i0.ɵɵlistener("ngModelChange", function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_1_Template_kendo_textarea_ngModelChange_1_listener($event) { i0.ɵɵrestoreView(_r47); const ctx_r46 = i0.ɵɵnextContext(3); return i0.ɵɵresetView(ctx_r46.record.WhereClause = $event); });
|
|
194
197
|
i0.ɵɵelementEnd()();
|
|
195
198
|
} if (rf & 2) {
|
|
@@ -198,7 +201,7 @@ function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_1_Templ
|
|
|
198
201
|
i0.ɵɵproperty("readonly", true)("rows", 7)("ngModel", ctx_r42.record.WhereClause);
|
|
199
202
|
} }
|
|
200
203
|
function ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_Template(rf, ctx) { if (rf & 1) {
|
|
201
|
-
i0.ɵɵtemplate(0, ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_0_Template, 3, 6, "div", 37)(1, ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_1_Template, 2, 3, "div",
|
|
204
|
+
i0.ɵɵtemplate(0, ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_0_Template, 3, 6, "div", 37)(1, ViewPropertiesDialogComponent_kendo_window_3_ng_template_15_div_1_Template, 2, 3, "div", 45);
|
|
202
205
|
} if (rf & 2) {
|
|
203
206
|
const ctx_r11 = i0.ɵɵnextContext(2);
|
|
204
207
|
i0.ɵɵproperty("ngIf", ctx_r11.record.SmartFilterEnabled);
|
|
@@ -552,7 +555,7 @@ ViewPropertiesDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ typ
|
|
|
552
555
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.kendoTab = _t.first);
|
|
553
556
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.nameField = _t.first);
|
|
554
557
|
i0.ɵɵqueryRefresh(_t = i0.ɵɵloadQuery()) && (ctx.dialogContainer = _t.first);
|
|
555
|
-
} }, inputs: { ViewID: "ViewID", EntityName: "EntityName", ShowPropertiesButton: "ShowPropertiesButton" }, outputs: { dialogClosed: "dialogClosed" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 3, consts: [["kendoButton", "", 3, "primary", "click", 4, "ngIf"], ["class", "k-overlay", 4, "ngIf"], ["title", "View Properties", 3, "width", "height", "minHeight", "minWidth", "resizable", "close", "resizeEnd", "heightChange", "widthChange", 4, "ngIf"], ["kendoButton", "", 3, "primary", "click"], [3, "icon"], [1, "k-overlay"], ["title", "View Properties", 3, "width", "height", "minHeight", "minWidth", "resizable", "close", "resizeEnd", "heightChange", "widthChange"], ["type", "converging-spinner", 4, "ngIf"], [1, "k-d-flex", "k-flex-col", "k-justify-content-between", "k-h-full"], ["dialogContainer", ""], [1, "popup-content", 3, "keepTabContent", "animate", "height"], ["title", "General", 3, "selected"], ["kendoTabContent", ""], ["title", "Fields"], ["title", "Filters"], ["title", "Sorting"], ["title", "Advanced"], [1, "k-actions", "k-actions-end", "popup-actions"], ["kendoButton", "", "themeColor", "primary", 3, "click"], ["kendoButton", "", 3, "click"], ["type", "converging-spinner"], [1, "view-prop-tab-contents"], [1, "form-group"], ["text", "Name", 1, "k-form-label"], [1, "view-name", 3, "ngModel", "ngModelChange"], ["nameField", ""], [1, "form-group", "form-group-description"], ["text", "Description", 1, "k-form-label"], [1, "k-input", "k-input-solid", "view-description", 3, "ngModel", "ngModelChange"], ["itemClass", "item", "activeItemClass", "item active", 3, "kendoSortableBinding", "animation", "dragEnd"], [1, "item-content"], ["type", "checkbox", "kendoCheckBox", "", 3, "ngModel", "id", "ngModelChange", "change"], [1, "k-checkbox-label", 3, "for", "text"], [1, "smart-filter-container"], ["text", "Smart Filter", 1, "smart-filter-label"], [3, "ngModel", "ngModelChange"], ["class", "smart-filter-prompt", "mjFillContainer", "", 3, "fillHeight", 4, "ngIf"], [4, "ngIf"], ["mjFillContainer", "", 1, "smart-filter-prompt", 3, "fillHeight"], ["placeholder", "Describe how you would like the data filtered", "resizable", "vertical", 3, "rows", "ngModel", "ngModelChange"], [3, "filters", "value", "valueChange"], [1, "sort-header"], [4, "ngFor", "ngForOf"], ["textField", "Name", "valueField", "Name", 1, "sort-column", 3, "data", "ngModel", "valueChange", "ngModelChange"], ["textField", "Name", "valueField", "Value", 1, "sort-direction", 3, "data", "ngModel", "valueChange", "ngModelChange"], [
|
|
558
|
+
} }, inputs: { ViewID: "ViewID", EntityName: "EntityName", ShowPropertiesButton: "ShowPropertiesButton" }, outputs: { dialogClosed: "dialogClosed" }, features: [i0.ɵɵInheritDefinitionFeature], decls: 4, vars: 3, consts: [["kendoButton", "", "class", "view-properties-button", 3, "primary", "click", 4, "ngIf"], ["class", "k-overlay", 4, "ngIf"], ["title", "View Properties", 3, "width", "height", "minHeight", "minWidth", "resizable", "close", "resizeEnd", "heightChange", "widthChange", 4, "ngIf"], ["kendoButton", "", 1, "view-properties-button", 3, "primary", "click"], [3, "icon"], [1, "k-overlay"], ["title", "View Properties", 3, "width", "height", "minHeight", "minWidth", "resizable", "close", "resizeEnd", "heightChange", "widthChange"], ["type", "converging-spinner", 4, "ngIf"], [1, "k-d-flex", "k-flex-col", "k-justify-content-between", "k-h-full"], ["dialogContainer", ""], [1, "popup-content", 3, "keepTabContent", "animate", "height"], ["title", "General", 3, "selected"], ["kendoTabContent", ""], ["title", "Fields"], ["title", "Filters"], ["title", "Sorting"], ["title", "Advanced"], [1, "k-actions", "k-actions-end", "popup-actions"], ["kendoButton", "", "themeColor", "primary", 3, "click"], ["kendoButton", "", 3, "click"], ["type", "converging-spinner"], [1, "view-prop-tab-contents"], [1, "form-group"], ["text", "Name", 1, "k-form-label"], [1, "view-name", 3, "ngModel", "ngModelChange"], ["nameField", ""], [1, "form-group", "form-group-description"], ["text", "Description", 1, "k-form-label"], [1, "k-input", "k-input-solid", "view-description", 3, "ngModel", "ngModelChange"], ["itemClass", "item", "activeItemClass", "item active", 3, "kendoSortableBinding", "animation", "dragEnd"], [1, "item-content"], ["type", "checkbox", "kendoCheckBox", "", 3, "ngModel", "id", "ngModelChange", "change"], [1, "k-checkbox-label", 3, "for", "text"], [1, "smart-filter-container"], ["text", "Smart Filter", 1, "smart-filter-label"], [3, "ngModel", "ngModelChange"], ["class", "smart-filter-prompt", "mjFillContainer", "", 3, "fillHeight", 4, "ngIf"], [4, "ngIf"], ["mjFillContainer", "", 1, "smart-filter-prompt", 3, "fillHeight"], ["placeholder", "Describe how you would like the data filtered", "resizable", "vertical", 3, "rows", "ngModel", "ngModelChange"], [3, "filters", "value", "valueChange"], [1, "sort-header"], [4, "ngFor", "ngForOf"], ["textField", "Name", "valueField", "Name", 1, "sort-column", 3, "data", "ngModel", "valueChange", "ngModelChange"], ["textField", "Name", "valueField", "Value", 1, "sort-direction", 3, "data", "ngModel", "valueChange", "ngModelChange"], [4, "ngElse"], ["resizable", "vertical", 1, "advanced-tab-details", 3, "readonly", "rows", "ngModel", "ngModelChange"]], template: function ViewPropertiesDialogComponent_Template(rf, ctx) { if (rf & 1) {
|
|
556
559
|
i0.ɵɵelementStart(0, "div");
|
|
557
560
|
i0.ɵɵtemplate(1, ViewPropertiesDialogComponent_button_1_Template, 3, 2, "button", 0)(2, ViewPropertiesDialogComponent_div_2_Template, 1, 0, "div", 1)(3, ViewPropertiesDialogComponent_kendo_window_3_Template, 22, 13, "kendo-window", 2);
|
|
558
561
|
i0.ɵɵelementEnd();
|
|
@@ -563,10 +566,10 @@ ViewPropertiesDialogComponent.ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ typ
|
|
|
563
566
|
i0.ɵɵproperty("ngIf", ctx.isDialogOpened);
|
|
564
567
|
i0.ɵɵadvance();
|
|
565
568
|
i0.ɵɵproperty("ngIf", ctx.isDialogOpened);
|
|
566
|
-
} }, dependencies: [i4.NgForOf, i4.NgIf, i3.DefaultValueAccessor, i3.CheckboxControlValueAccessor, i3.NgControlStatus, i3.NgModel, i5.WindowComponent, i6.ButtonComponent, i7.LoaderComponent, i8.TabStripComponent, i8.TabStripTabComponent, i8.TabContentDirective, i9.TextAreaComponent, i9.TextBoxComponent, i9.SwitchComponent, i9.CheckBoxDirective, i10.LabelComponent, i11.SVGIconComponent, i12.FillContainer, i13.SortableComponent, i13.SortableBindingDirective, i14.FilterComponent, i15.DropDownListComponent], styles: [".view-prop-tab-contents[_ngcontent-%COMP%] {\r\n display: flex;\r\n flex-direction: column;\r\n height: 100%; \n\r\n}\r\n\r\n.form-group[_ngcontent-%COMP%] {\r\n display: flex;\r\n flex-direction: row;\r\n align-items: flex-start;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.form-group-description[_ngcontent-%COMP%] {\r\n flex-grow: 1;\r\n}\r\n\r\n.k-form-label[_ngcontent-%COMP%] {\r\n width: 150px; \n\r\n margin-right: 10px;\r\n}\r\n\r\n.view-description[_ngcontent-%COMP%] {\r\n flex-grow: 1;\r\n height: 100%;\r\n padding: 5px;\r\n resize: none;\r\n}\r\n\r\n\r\n\r\n.item-content[_ngcontent-%COMP%] {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n}\r\n\r\n.popup-content[_ngcontent-%COMP%] {\r\n height: calc(100% - 46px);\r\n}\r\n\r\n.popup-actions[_ngcontent-%COMP%] {\r\n padding: 16px 0 0;\r\n}\r\n\r\n.view-prop-tab-contents[_ngcontent-%COMP%] {\r\n overflow: hidden;\r\n}\r\n\r\n.sort-column[_ngcontent-%COMP%] {\r\n width: 300px;\r\n}\r\n\r\n.sort-direction[_ngcontent-%COMP%] {\r\n width: 125px;\r\n}\r\n\r\n.sort-header[_ngcontent-%COMP%] > button[_ngcontent-%COMP%] {\r\n margin-left: 5px;\r\n margin-bottom: 5px;\r\n width: 75px;\r\n}\r\n\r\n.smart-filter-label[_ngcontent-%COMP%] {\r\n margin-right: 10px;\r\n}\r\n\r\n.smart-filter-prompt[_ngcontent-%COMP%] {\r\n margin-top: 15px;\r\n}\r\n\r\n.advanced-tab-details[_ngcontent-%COMP%]\r\n{\r\n margin-bottom: 10px;\r\n}"] });
|
|
569
|
+
} }, dependencies: [i4.NgForOf, i4.NgIf, i3.DefaultValueAccessor, i3.CheckboxControlValueAccessor, i3.NgControlStatus, i3.NgModel, i5.WindowComponent, i6.ButtonComponent, i7.LoaderComponent, i8.TabStripComponent, i8.TabStripTabComponent, i8.TabContentDirective, i9.TextAreaComponent, i9.TextBoxComponent, i9.SwitchComponent, i9.CheckBoxDirective, i10.LabelComponent, i11.SVGIconComponent, i12.FillContainer, i13.SortableComponent, i13.SortableBindingDirective, i14.FilterComponent, i15.DropDownListComponent], styles: [".view-properties-button[_ngcontent-%COMP%] {\r\n margin-left: 0px;\r\n}\r\n.view-prop-tab-contents[_ngcontent-%COMP%] {\r\n display: flex;\r\n flex-direction: column;\r\n height: 100%; \n\r\n}\r\n\r\n.form-group[_ngcontent-%COMP%] {\r\n display: flex;\r\n flex-direction: row;\r\n align-items: flex-start;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.form-group-description[_ngcontent-%COMP%] {\r\n flex-grow: 1;\r\n}\r\n\r\n.k-form-label[_ngcontent-%COMP%] {\r\n width: 150px; \n\r\n margin-right: 10px;\r\n}\r\n\r\n.view-description[_ngcontent-%COMP%] {\r\n flex-grow: 1;\r\n height: 100%;\r\n padding: 5px;\r\n resize: none;\r\n}\r\n\r\n\r\n\r\n.item-content[_ngcontent-%COMP%] {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n}\r\n\r\n.popup-content[_ngcontent-%COMP%] {\r\n height: calc(100% - 46px);\r\n}\r\n\r\n.popup-actions[_ngcontent-%COMP%] {\r\n padding: 16px 0 0;\r\n}\r\n\r\n.view-prop-tab-contents[_ngcontent-%COMP%] {\r\n overflow: hidden;\r\n}\r\n\r\n.sort-column[_ngcontent-%COMP%] {\r\n width: 300px;\r\n}\r\n\r\n.sort-direction[_ngcontent-%COMP%] {\r\n width: 125px;\r\n}\r\n\r\n.sort-header[_ngcontent-%COMP%] > button[_ngcontent-%COMP%] {\r\n margin-left: 5px;\r\n margin-bottom: 5px;\r\n width: 75px;\r\n}\r\n\r\n.smart-filter-label[_ngcontent-%COMP%] {\r\n margin-right: 10px;\r\n}\r\n\r\n.smart-filter-prompt[_ngcontent-%COMP%] {\r\n margin-top: 15px;\r\n}\r\n\r\n.advanced-tab-details[_ngcontent-%COMP%]\r\n{\r\n margin-bottom: 10px;\r\n}"] });
|
|
567
570
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ViewPropertiesDialogComponent, [{
|
|
568
571
|
type: Component,
|
|
569
|
-
args: [{ selector: 'app-view-properties-dialog', template: "<div>\r\n <button *ngIf=\"ShowPropertiesButton\"\r\n kendoButton\r\n [primary]=\"true\"\r\n (click)=\"this.Open()\"\r\n >\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('gear')\"></kendo-svgicon>\r\n Properties</button>\r\n <div class=\"k-overlay\" *ngIf=\"isDialogOpened\"></div>\r\n <kendo-window\r\n [width]=\"700\"\r\n [height]=\"525\"\r\n [minHeight]=\"300\"\r\n [minWidth]=\"400\"\r\n [resizable]=\"true\"\r\n title=\"View Properties\"\r\n *ngIf=\"isDialogOpened\"\r\n (close)=\"closePropertiesDialog()\"\r\n (resizeEnd)=\"this.ResizeTab()\"\r\n (heightChange)=\"this.ResizeTab()\"\r\n (widthChange)=\"this.ResizeTab()\"\r\n >\r\n <kendo-loader *ngIf=\"showloader\" type=\"converging-spinner\" ></kendo-loader>\r\n <div class=\"k-d-flex k-flex-col k-justify-content-between k-h-full\" #dialogContainer>\r\n <div [class]=\"showloader ? 'disabled-div' : ''\">\r\n <kendo-tabstrip class=\"popup-content\" [keepTabContent]=\"true\" [animate] = \"false\" [height]=\"TabHeight\" >\r\n\r\n <kendo-tabstrip-tab title=\"General\" [selected]=\"true\">\r\n <ng-template kendoTabContent>\r\n <div class=\"view-prop-tab-contents\">\r\n <div class=\"form-group\">\r\n <kendo-label class=\"k-form-label\" text=\"Name\"></kendo-label>\r\n <kendo-textbox #nameField class=\"view-name\" [(ngModel)]=\"record.Name\"></kendo-textbox>\r\n </div>\r\n <div class=\"form-group form-group-description\">\r\n <kendo-label class=\"k-form-label\" text=\"Description\"></kendo-label>\r\n <textarea class=\"k-input k-input-solid view-description\" [(ngModel)]=\"record.Description\"></textarea>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n \r\n <kendo-tabstrip-tab title=\"Fields\">\r\n <ng-template kendoTabContent>\r\n \r\n <kendo-sortable\r\n [kendoSortableBinding]=\"this.localGridState.columnSettings\"\r\n [animation]=\"true\"\r\n itemClass=\"item\"\r\n activeItemClass=\"item active\"\r\n (dragEnd)=\"onDragEnd($event)\"\r\n >\r\n <ng-template let-col=\"item\">\r\n <div class=\"item-content\">\r\n <div>\r\n <input\r\n type=\"checkbox\"\r\n [(ngModel)]=\"!col.hidden\"\r\n id=\"column_{{col.ID}}\"\r\n kendoCheckBox\r\n (change)=\"toggleColumn(col)\"\r\n />\r\n <kendo-label\r\n [for]=\"'column_'+col.ID\"\r\n [text]=\"col.DisplayName ? col.DisplayName : col.Name\"\r\n class=\"k-checkbox-label\"\r\n ></kendo-label>\r\n </div>\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('reorder')\"></kendo-svgicon>\r\n </div>\r\n </ng-template>\r\n </kendo-sortable>\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n \r\n <kendo-tabstrip-tab title=\"Filters\">\r\n <ng-template kendoTabContent>\r\n <div class=\"smart-filter-container\">\r\n <kendo-label text=\"Smart Filter\" class=\"smart-filter-label\"></kendo-label>\r\n <kendo-switch [(ngModel)]=\"record.SmartFilterEnabled\"></kendo-switch>\r\n </div>\r\n <div *ngIf=\"record.SmartFilterEnabled\" class=\"smart-filter-prompt\" mjFillContainer [fillHeight]=\"true\">\r\n <kendo-textarea\r\n placeholder=\"Describe how you would like the data filtered\"\r\n [rows]=\"10\"\r\n [(ngModel)]=\"record.SmartFilterPrompt\"\r\n resizable=\"vertical\"\r\n ></kendo-textarea>\r\n </div>\r\n <div *ngIf=\"!record.SmartFilterEnabled\">\r\n <kendo-filter\r\n [filters]=\"ViewEntityInfo!.Fields.map(toKendoFilterField)\"\r\n [value]=\"defaultFilterState\"\r\n (valueChange)=\"onFilterChange($event)\"\r\n >\r\n </kendo-filter>\r\n </div>\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n\r\n <kendo-tabstrip-tab title=\"Sorting\">\r\n <ng-template kendoTabContent>\r\n <div class=\"sort-header\">\r\n <button kendoButton (click)=\"addSort()\">\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('
|
|
572
|
+
args: [{ selector: 'app-view-properties-dialog', template: "<div>\r\n <button *ngIf=\"ShowPropertiesButton\"\r\n kendoButton\r\n [primary]=\"true\"\r\n (click)=\"this.Open()\"\r\n class=\"view-properties-button\"\r\n >\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('gear')\"></kendo-svgicon>\r\n Properties</button>\r\n <div class=\"k-overlay\" *ngIf=\"isDialogOpened\"></div>\r\n <kendo-window\r\n [width]=\"700\"\r\n [height]=\"525\"\r\n [minHeight]=\"300\"\r\n [minWidth]=\"400\"\r\n [resizable]=\"true\"\r\n title=\"View Properties\"\r\n *ngIf=\"isDialogOpened\"\r\n (close)=\"closePropertiesDialog()\"\r\n (resizeEnd)=\"this.ResizeTab()\"\r\n (heightChange)=\"this.ResizeTab()\"\r\n (widthChange)=\"this.ResizeTab()\"\r\n >\r\n <kendo-loader *ngIf=\"showloader\" type=\"converging-spinner\" ></kendo-loader>\r\n <div class=\"k-d-flex k-flex-col k-justify-content-between k-h-full\" #dialogContainer>\r\n <div [class]=\"showloader ? 'disabled-div' : ''\">\r\n <kendo-tabstrip class=\"popup-content\" [keepTabContent]=\"true\" [animate] = \"false\" [height]=\"TabHeight\" >\r\n\r\n <kendo-tabstrip-tab title=\"General\" [selected]=\"true\">\r\n <ng-template kendoTabContent>\r\n <div class=\"view-prop-tab-contents\">\r\n <div class=\"form-group\">\r\n <kendo-label class=\"k-form-label\" text=\"Name\"></kendo-label>\r\n <kendo-textbox #nameField class=\"view-name\" [(ngModel)]=\"record.Name\"></kendo-textbox>\r\n </div>\r\n <div class=\"form-group form-group-description\">\r\n <kendo-label class=\"k-form-label\" text=\"Description\"></kendo-label>\r\n <textarea class=\"k-input k-input-solid view-description\" [(ngModel)]=\"record.Description\"></textarea>\r\n </div>\r\n </div>\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n \r\n <kendo-tabstrip-tab title=\"Fields\">\r\n <ng-template kendoTabContent>\r\n \r\n <kendo-sortable\r\n [kendoSortableBinding]=\"this.localGridState.columnSettings\"\r\n [animation]=\"true\"\r\n itemClass=\"item\"\r\n activeItemClass=\"item active\"\r\n (dragEnd)=\"onDragEnd($event)\"\r\n >\r\n <ng-template let-col=\"item\">\r\n <div class=\"item-content\">\r\n <div>\r\n <input\r\n type=\"checkbox\"\r\n [(ngModel)]=\"!col.hidden\"\r\n id=\"column_{{col.ID}}\"\r\n kendoCheckBox\r\n (change)=\"toggleColumn(col)\"\r\n />\r\n <kendo-label\r\n [for]=\"'column_'+col.ID\"\r\n [text]=\"col.DisplayName ? col.DisplayName : col.Name\"\r\n class=\"k-checkbox-label\"\r\n ></kendo-label>\r\n </div>\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('reorder')\"></kendo-svgicon>\r\n </div>\r\n </ng-template>\r\n </kendo-sortable>\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n \r\n <kendo-tabstrip-tab title=\"Filters\">\r\n <ng-template kendoTabContent>\r\n <div class=\"smart-filter-container\">\r\n <kendo-label text=\"Smart Filter\" class=\"smart-filter-label\"></kendo-label>\r\n <kendo-switch [(ngModel)]=\"record.SmartFilterEnabled\"></kendo-switch>\r\n </div>\r\n <div *ngIf=\"record.SmartFilterEnabled\" class=\"smart-filter-prompt\" mjFillContainer [fillHeight]=\"true\">\r\n <kendo-textarea\r\n placeholder=\"Describe how you would like the data filtered\"\r\n [rows]=\"10\"\r\n [(ngModel)]=\"record.SmartFilterPrompt\"\r\n resizable=\"vertical\"\r\n ></kendo-textarea>\r\n </div>\r\n <div *ngIf=\"!record.SmartFilterEnabled\">\r\n <kendo-filter\r\n [filters]=\"ViewEntityInfo!.Fields.map(toKendoFilterField)\"\r\n [value]=\"defaultFilterState\"\r\n (valueChange)=\"onFilterChange($event)\"\r\n >\r\n </kendo-filter>\r\n </div>\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n\r\n <kendo-tabstrip-tab title=\"Sorting\">\r\n <ng-template kendoTabContent>\r\n <div class=\"sort-header\">\r\n <button kendoButton (click)=\"addSort()\">\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('filterAddExpression')\"></kendo-svgicon>\r\n </button>\r\n \r\n </div>\r\n <div *ngFor=\"let s of this.sortState\"> \r\n <kendo-dropdownlist \r\n class=\"sort-column\"\r\n [data]=\"sortFields\"\r\n textField=\"Name\"\r\n valueField=\"Name\"\r\n (valueChange)=\"sortColumnValueChange(s, $event)\"\r\n [(ngModel)]=\"s.field\"\r\n >\r\n </kendo-dropdownlist>\r\n <kendo-dropdownlist\r\n class=\"sort-direction\"\r\n [data]=\"sortDirections\"\r\n textField=\"Name\"\r\n valueField=\"Value\"\r\n (valueChange)=\"sortDirectionValueChange(s, $event)\"\r\n [(ngModel)]=\"s.direction\"\r\n >\r\n </kendo-dropdownlist>\r\n <button kendoButton (click)=\"removeSort(s)\"><kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('sortClear')\"></kendo-svgicon></button>\r\n </div> \r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n\r\n <kendo-tabstrip-tab title=\"Advanced\">\r\n <ng-template kendoTabContent>\r\n <div *ngIf=\"record.SmartFilterEnabled\">\r\n <kendo-textarea\r\n [readonly]=\"true\"\r\n [rows]=\"5\"\r\n [(ngModel)]=\"record.SmartFilterExplanation\"\r\n resizable=\"vertical\"\r\n class=\"advanced-tab-details\"\r\n ></kendo-textarea>\r\n <kendo-textarea\r\n [readonly]=\"true\"\r\n [rows]=\"5\"\r\n [(ngModel)]=\"record.SmartFilterWhereClause\"\r\n resizable=\"vertical\"\r\n class=\"advanced-tab-details\"\r\n ></kendo-textarea> \r\n </div>\r\n <div *ngElse>\r\n <kendo-textarea\r\n [readonly]=\"true\"\r\n [rows]=\"7\"\r\n [(ngModel)]=\"record.WhereClause\"\r\n resizable=\"vertical\"\r\n class=\"advanced-tab-details\"\r\n ></kendo-textarea>\r\n </div>\r\n\r\n </ng-template>\r\n </kendo-tabstrip-tab>\r\n\r\n </kendo-tabstrip>\r\n \r\n <div class=\"k-actions k-actions-end popup-actions\">\r\n <button kendoButton (click)=\"saveProperties()\" themeColor=\"primary\">\r\n <kendo-svgicon [icon]=\"sharedService.kendoSVGIcon('save')\"></kendo-svgicon>\r\n Save\r\n </button>\r\n <button kendoButton (click)=\"closePropertiesDialog()\">Cancel</button>\r\n </div>\r\n </div>\r\n </div>\r\n </kendo-window>\r\n</div>\r\n", styles: [".view-properties-button {\r\n margin-left: 0px;\r\n}\r\n.view-prop-tab-contents {\r\n display: flex;\r\n flex-direction: column;\r\n height: 100%; /* Set to the height you want */\r\n}\r\n\r\n.form-group {\r\n display: flex;\r\n flex-direction: row;\r\n align-items: flex-start;\r\n margin-bottom: 10px;\r\n}\r\n\r\n.form-group-description {\r\n flex-grow: 1;\r\n}\r\n\r\n.k-form-label {\r\n width: 150px; /* Adjust as needed */\r\n margin-right: 10px;\r\n}\r\n\r\n.view-description {\r\n flex-grow: 1;\r\n height: 100%;\r\n padding: 5px;\r\n resize: none;\r\n}\r\n\r\n\r\n\r\n.item-content {\r\n display: flex;\r\n justify-content: space-between;\r\n align-items: center;\r\n}\r\n\r\n.popup-content {\r\n height: calc(100% - 46px);\r\n}\r\n\r\n.popup-actions {\r\n padding: 16px 0 0;\r\n}\r\n\r\n.view-prop-tab-contents {\r\n overflow: hidden;\r\n}\r\n\r\n.sort-column {\r\n width: 300px;\r\n}\r\n\r\n.sort-direction {\r\n width: 125px;\r\n}\r\n\r\n.sort-header > button {\r\n margin-left: 5px;\r\n margin-bottom: 5px;\r\n width: 75px;\r\n}\r\n\r\n.smart-filter-label {\r\n margin-right: 10px;\r\n}\r\n\r\n.smart-filter-prompt {\r\n margin-top: 15px;\r\n}\r\n\r\n.advanced-tab-details\r\n{\r\n margin-bottom: 10px;\r\n}"] }]
|
|
570
573
|
}], () => [{ type: i1.ActivatedRoute }, { type: i0.ElementRef }, { type: i2.SharedService }, { type: i3.FormBuilder }, { type: i1.Router }], { ViewID: [{
|
|
571
574
|
type: Input
|
|
572
575
|
}], EntityName: [{
|
package/dist/module.d.ts
CHANGED
|
@@ -1,69 +1,65 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./lib/generic/form-toolbar";
|
|
3
|
-
import * as i2 from "./lib/generic/
|
|
4
|
-
import * as i3 from "./lib/generic/
|
|
5
|
-
import * as i4 from "./lib/
|
|
6
|
-
import * as i5 from "./lib/
|
|
7
|
-
import * as i6 from "./lib/
|
|
8
|
-
import * as i7 from "./lib/
|
|
9
|
-
import * as i8 from "./lib/
|
|
10
|
-
import * as i9 from "./lib/
|
|
11
|
-
import * as i10 from "./lib/
|
|
12
|
-
import * as i11 from "./lib/
|
|
13
|
-
import * as i12 from "./lib/
|
|
14
|
-
import * as i13 from "./lib/
|
|
15
|
-
import * as i14 from "./lib/
|
|
16
|
-
import * as i15 from "./lib/
|
|
17
|
-
import * as i16 from "./lib/
|
|
18
|
-
import * as i17 from "./lib/
|
|
19
|
-
import * as i18 from "./lib/
|
|
20
|
-
import * as i19 from "./lib/
|
|
21
|
-
import * as i20 from "./lib/
|
|
22
|
-
import * as i21 from "./lib/
|
|
23
|
-
import * as i22 from "./lib/
|
|
24
|
-
import * as i23 from "./lib/single-
|
|
25
|
-
import * as i24 from "./lib/
|
|
26
|
-
import * as i25 from "./lib/
|
|
27
|
-
import * as i26 from "./lib/
|
|
28
|
-
import * as i27 from "./lib/single-
|
|
29
|
-
import * as i28 from "./lib/
|
|
30
|
-
import * as i29 from "./lib/
|
|
31
|
-
import * as i30 from "./lib/single-
|
|
32
|
-
import * as i31 from "./lib/single-
|
|
33
|
-
import * as i32 from "./lib/single-
|
|
34
|
-
import * as i33 from "./lib/
|
|
35
|
-
import * as i34 from "./lib/user-
|
|
36
|
-
import * as i35 from "./lib/
|
|
37
|
-
import * as i36 from "
|
|
38
|
-
import * as i37 from "
|
|
39
|
-
import * as i38 from "
|
|
40
|
-
import * as i39 from "
|
|
41
|
-
import * as i40 from "
|
|
42
|
-
import * as i41 from "@angular
|
|
43
|
-
import * as i42 from "@angular
|
|
44
|
-
import * as i43 from "@
|
|
45
|
-
import * as i44 from "@progress/kendo-angular-
|
|
46
|
-
import * as i45 from "@progress/kendo-angular-
|
|
47
|
-
import * as i46 from "@progress/kendo-angular-
|
|
48
|
-
import * as i47 from "@progress/kendo-angular-
|
|
49
|
-
import * as i48 from "@
|
|
50
|
-
import * as i49 from "@progress/kendo-angular-
|
|
51
|
-
import * as i50 from "@
|
|
52
|
-
import * as i51 from "@
|
|
53
|
-
import * as i52 from "@progress/kendo-angular-
|
|
54
|
-
import * as i53 from "@
|
|
55
|
-
import * as i54 from "@
|
|
56
|
-
import * as i55 from "@
|
|
57
|
-
import * as i56 from "@
|
|
58
|
-
import * as i57 from "@progress/kendo-angular-
|
|
59
|
-
import * as i58 from "@memberjunction/ng-
|
|
60
|
-
import * as i59 from "@memberjunction/ng-
|
|
61
|
-
import * as i60 from "@progress/kendo-angular-sortable";
|
|
62
|
-
import * as i61 from "@progress/kendo-angular-filter";
|
|
63
|
-
import * as i62 from "@progress/kendo-angular-dropdowns";
|
|
64
|
-
import * as i63 from "@memberjunction/ng-shared";
|
|
3
|
+
import * as i2 from "./lib/generic/section-loader-component";
|
|
4
|
+
import * as i3 from "./lib/generic/resource-container-component";
|
|
5
|
+
import * as i4 from "./lib/auth-button/auth-button.component";
|
|
6
|
+
import * as i5 from "./lib/dashboard-browser-component/dashboard-browser.component";
|
|
7
|
+
import * as i6 from "./lib/data-browser-component/data-browser.component";
|
|
8
|
+
import * as i7 from "./lib/generic-browse-list/generic-browse-list.component";
|
|
9
|
+
import * as i8 from "./lib/home-component/home.component";
|
|
10
|
+
import * as i9 from "./lib/navigation/navigation.component";
|
|
11
|
+
import * as i10 from "./lib/report-browser-component/report-browser.component";
|
|
12
|
+
import * as i11 from "./lib/query-browser-component/query-browser.component";
|
|
13
|
+
import * as i12 from "./lib/resource-wrappers/dashboard-resource.component";
|
|
14
|
+
import * as i13 from "./lib/resource-wrappers/record-resource.component";
|
|
15
|
+
import * as i14 from "./lib/resource-wrappers/report-resource.component";
|
|
16
|
+
import * as i15 from "./lib/resource-wrappers/search-results-resource.component";
|
|
17
|
+
import * as i16 from "./lib/resource-wrappers/view-resource.component";
|
|
18
|
+
import * as i17 from "./lib/settings/settings.component";
|
|
19
|
+
import * as i18 from "./lib/single-application/single-application.component";
|
|
20
|
+
import * as i19 from "./lib/favorites/favorites.component";
|
|
21
|
+
import * as i20 from "./lib/header/header.component";
|
|
22
|
+
import * as i21 from "./lib/join-grid/join-grid.component";
|
|
23
|
+
import * as i22 from "./lib/single-entity/single-entity.component";
|
|
24
|
+
import * as i23 from "./lib/single-record/single-record.component";
|
|
25
|
+
import * as i24 from "./lib/single-report/single-report.component";
|
|
26
|
+
import * as i25 from "./lib/single-search-result/single-search-result.component";
|
|
27
|
+
import * as i26 from "./lib/single-view/single-view.component";
|
|
28
|
+
import * as i27 from "./lib/single-query/single-query.component";
|
|
29
|
+
import * as i28 from "./lib/user-profile/user-profile.component";
|
|
30
|
+
import * as i29 from "./lib/user-view-properties/view-properties-dialog.component";
|
|
31
|
+
import * as i30 from "./lib/single-dashboard/single-dashboard.component";
|
|
32
|
+
import * as i31 from "./lib/single-dashboard/Components/add-item/add-item.component";
|
|
33
|
+
import * as i32 from "./lib/single-dashboard/Components/delete-item/delete-item.component";
|
|
34
|
+
import * as i33 from "./lib/single-dashboard/Components/edit-dashboard/edit-dashboard.component";
|
|
35
|
+
import * as i34 from "./lib/user-notifications/user-notifications.component";
|
|
36
|
+
import * as i35 from "./lib/resource-wrappers/query-resource.component";
|
|
37
|
+
import * as i36 from "@angular/common";
|
|
38
|
+
import * as i37 from "@angular/forms";
|
|
39
|
+
import * as i38 from "@angular/router";
|
|
40
|
+
import * as i39 from "@progress/kendo-angular-grid";
|
|
41
|
+
import * as i40 from "@progress/kendo-angular-dialog";
|
|
42
|
+
import * as i41 from "@progress/kendo-angular-excel-export";
|
|
43
|
+
import * as i42 from "@progress/kendo-angular-buttons";
|
|
44
|
+
import * as i43 from "@memberjunction/ng-compare-records";
|
|
45
|
+
import * as i44 from "@progress/kendo-angular-indicators";
|
|
46
|
+
import * as i45 from "@progress/kendo-angular-charts";
|
|
47
|
+
import * as i46 from "@progress/kendo-angular-layout";
|
|
48
|
+
import * as i47 from "@progress/kendo-angular-inputs";
|
|
49
|
+
import * as i48 from "@progress/kendo-angular-label";
|
|
50
|
+
import * as i49 from "@progress/kendo-angular-icons";
|
|
51
|
+
import * as i50 from "@memberjunction/ng-record-changes";
|
|
52
|
+
import * as i51 from "@memberjunction/ng-container-directives";
|
|
53
|
+
import * as i52 from "@progress/kendo-angular-listview";
|
|
54
|
+
import * as i53 from "@memberjunction/ng-user-view-grid";
|
|
55
|
+
import * as i54 from "@memberjunction/ng-query-grid";
|
|
56
|
+
import * as i55 from "@progress/kendo-angular-sortable";
|
|
57
|
+
import * as i56 from "@progress/kendo-angular-filter";
|
|
58
|
+
import * as i57 from "@progress/kendo-angular-dropdowns";
|
|
59
|
+
import * as i58 from "@memberjunction/ng-shared";
|
|
60
|
+
import * as i59 from "@memberjunction/ng-ask-skip";
|
|
65
61
|
export declare class ExplorerCoreModule {
|
|
66
62
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExplorerCoreModule, never>;
|
|
67
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ExplorerCoreModule, [typeof i1.FormToolbarComponent, typeof i2.
|
|
63
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ExplorerCoreModule, [typeof i1.FormToolbarComponent, typeof i2.SectionLoaderComponent, typeof i3.ResourceContainerComponent, typeof i4.AuthButtonComponent, typeof i5.DashboardBrowserComponent, typeof i6.DataBrowserComponent, typeof i7.GenericBrowseListComponent, typeof i8.HomeComponent, typeof i9.NavigationComponent, typeof i10.ReportBrowserComponent, typeof i11.QueryBrowserComponent, typeof i12.DashboardResource, typeof i13.EntityRecordResource, typeof i14.ReportResource, typeof i15.SearchResultsResource, typeof i16.UserViewResource, typeof i17.SettingsComponent, typeof i18.SingleApplicationComponent, typeof i19.FavoritesComponent, typeof i20.HeaderComponent, typeof i21.JoinGridComponent, typeof i22.SingleEntityComponent, typeof i23.SingleRecordComponent, typeof i24.SingleReportComponent, typeof i25.SingleSearchResultComponent, typeof i26.SingleViewComponent, typeof i27.SingleQueryComponent, typeof i28.UserProfileComponent, typeof i29.ViewPropertiesDialogComponent, typeof i30.SingleDashboardComponent, typeof i31.AddItemComponent, typeof i32.DeleteItemComponent, typeof i33.EditDashboardComponent, typeof i34.UserNotificationsComponent, typeof i35.QueryResource], [typeof i36.CommonModule, typeof i37.FormsModule, typeof i37.ReactiveFormsModule, typeof i38.RouterModule, typeof i39.GridModule, typeof i40.DialogsModule, typeof i41.ExcelExportModule, typeof i42.ButtonsModule, typeof i43.CompareRecordsModule, typeof i44.IndicatorsModule, typeof i36.CommonModule, typeof i37.FormsModule, typeof i39.GridModule, typeof i45.ChartsModule, typeof i42.ButtonsModule, typeof i46.TabStripModule, typeof i39.ExcelModule, typeof i39.PDFModule, typeof i44.IndicatorsModule, typeof i40.DialogsModule, typeof i47.InputsModule, typeof i48.LabelModule, typeof i49.IconModule, typeof i49.IconsModule, typeof i43.CompareRecordsModule, typeof i50.RecordChangesModule, typeof i51.ContainerDirectivesModule, typeof i52.ListViewModule, typeof i53.UserViewGridModule, typeof i54.QueryGridModule, typeof i55.SortableModule, typeof i46.LayoutModule, typeof i56.FilterModule, typeof i57.DropDownsModule, typeof i58.MemberJunctionSharedModule, typeof i59.AskSkipModule], [typeof i1.FormToolbarComponent, typeof i2.SectionLoaderComponent, typeof i3.ResourceContainerComponent, typeof i4.AuthButtonComponent, typeof i5.DashboardBrowserComponent, typeof i6.DataBrowserComponent, typeof i7.GenericBrowseListComponent, typeof i8.HomeComponent, typeof i9.NavigationComponent, typeof i10.ReportBrowserComponent, typeof i12.DashboardResource, typeof i13.EntityRecordResource, typeof i14.ReportResource, typeof i15.SearchResultsResource, typeof i16.UserViewResource, typeof i17.SettingsComponent, typeof i18.SingleApplicationComponent, typeof i19.FavoritesComponent, typeof i20.HeaderComponent, typeof i21.JoinGridComponent, typeof i22.SingleEntityComponent, typeof i23.SingleRecordComponent, typeof i24.SingleReportComponent, typeof i25.SingleSearchResultComponent, typeof i26.SingleViewComponent, typeof i28.UserProfileComponent, typeof i29.ViewPropertiesDialogComponent, typeof i30.SingleDashboardComponent, typeof i31.AddItemComponent, typeof i32.DeleteItemComponent, typeof i33.EditDashboardComponent, typeof i34.UserNotificationsComponent]>;
|
|
68
64
|
static ɵinj: i0.ɵɵInjectorDeclaration<ExplorerCoreModule>;
|
|
69
65
|
}
|
package/dist/module.js
CHANGED
|
@@ -26,13 +26,8 @@ import { UserViewGridModule } from '@memberjunction/ng-user-view-grid';
|
|
|
26
26
|
import { QueryGridModule } from '@memberjunction/ng-query-grid';
|
|
27
27
|
// Local Components
|
|
28
28
|
import { FormToolbarComponent } from './lib/generic/form-toolbar';
|
|
29
|
-
import { DynamicGridComponent } from './lib/generic/dynamic-grid';
|
|
30
29
|
import { SectionLoaderComponent } from './lib/generic/section-loader-component';
|
|
31
|
-
import { DynamicChartComponent } from './lib/generic/dynamic-chart';
|
|
32
|
-
import { DynamicReportComponent } from './lib/generic/dynamic-report';
|
|
33
30
|
import { ResourceContainerComponent } from './lib/generic/resource-container-component';
|
|
34
|
-
import { AskSkipComponent } from './lib/ask-skip/ask-skip.component';
|
|
35
|
-
import { SkipDynamicReportComponent } from './lib/ask-skip/skip-dynamic-report-wrapper';
|
|
36
31
|
import { AuthButtonComponent } from './lib/auth-button/auth-button.component';
|
|
37
32
|
import { DashboardBrowserComponent } from './lib/dashboard-browser-component/dashboard-browser.component';
|
|
38
33
|
import { DataBrowserComponent } from './lib/data-browser-component/data-browser.component';
|
|
@@ -66,12 +61,12 @@ import { DeleteItemComponent } from './lib/single-dashboard/Components/delete-it
|
|
|
66
61
|
import { SingleQueryComponent } from './lib/single-query/single-query.component';
|
|
67
62
|
import { QueryResource } from './lib/resource-wrappers/query-resource.component';
|
|
68
63
|
import { QueryBrowserComponent } from './lib/query-browser-component/query-browser.component';
|
|
64
|
+
import { AskSkipModule } from '@memberjunction/ng-ask-skip';
|
|
69
65
|
import * as i0 from "@angular/core";
|
|
70
66
|
import * as i1 from "@angular/common";
|
|
71
67
|
import * as i2 from "@progress/kendo-angular-buttons";
|
|
72
|
-
import * as i3 from "@progress/kendo-angular-
|
|
73
|
-
import * as i4 from "@progress/kendo-angular-
|
|
74
|
-
import * as i5 from "@memberjunction/ng-container-directives";
|
|
68
|
+
import * as i3 from "@progress/kendo-angular-icons";
|
|
69
|
+
import * as i4 from "@progress/kendo-angular-layout";
|
|
75
70
|
export class ExplorerCoreModule {
|
|
76
71
|
}
|
|
77
72
|
ExplorerCoreModule.ɵfac = function ExplorerCoreModule_Factory(t) { return new (t || ExplorerCoreModule)(); };
|
|
@@ -110,19 +105,15 @@ ExplorerCoreModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [Commo
|
|
|
110
105
|
LayoutModule,
|
|
111
106
|
FilterModule,
|
|
112
107
|
DropDownsModule,
|
|
113
|
-
MemberJunctionSharedModule
|
|
108
|
+
MemberJunctionSharedModule,
|
|
109
|
+
AskSkipModule] });
|
|
114
110
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ExplorerCoreModule, [{
|
|
115
111
|
type: NgModule,
|
|
116
112
|
args: [{
|
|
117
113
|
declarations: [
|
|
118
114
|
FormToolbarComponent,
|
|
119
|
-
DynamicGridComponent,
|
|
120
|
-
DynamicChartComponent,
|
|
121
|
-
DynamicReportComponent,
|
|
122
115
|
SectionLoaderComponent,
|
|
123
116
|
ResourceContainerComponent,
|
|
124
|
-
SkipDynamicReportComponent,
|
|
125
|
-
AskSkipComponent,
|
|
126
117
|
AuthButtonComponent,
|
|
127
118
|
DashboardBrowserComponent,
|
|
128
119
|
DataBrowserComponent,
|
|
@@ -191,17 +182,13 @@ ExplorerCoreModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [Commo
|
|
|
191
182
|
LayoutModule,
|
|
192
183
|
FilterModule,
|
|
193
184
|
DropDownsModule,
|
|
194
|
-
MemberJunctionSharedModule
|
|
185
|
+
MemberJunctionSharedModule,
|
|
186
|
+
AskSkipModule
|
|
195
187
|
],
|
|
196
188
|
exports: [
|
|
197
189
|
FormToolbarComponent,
|
|
198
|
-
DynamicGridComponent,
|
|
199
|
-
DynamicChartComponent,
|
|
200
|
-
DynamicReportComponent,
|
|
201
190
|
SectionLoaderComponent,
|
|
202
191
|
ResourceContainerComponent,
|
|
203
|
-
SkipDynamicReportComponent,
|
|
204
|
-
AskSkipComponent,
|
|
205
192
|
AuthButtonComponent,
|
|
206
193
|
DashboardBrowserComponent,
|
|
207
194
|
DataBrowserComponent,
|
|
@@ -235,13 +222,8 @@ ExplorerCoreModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [Commo
|
|
|
235
222
|
}]
|
|
236
223
|
}], null, null); })();
|
|
237
224
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(ExplorerCoreModule, { declarations: [FormToolbarComponent,
|
|
238
|
-
DynamicGridComponent,
|
|
239
|
-
DynamicChartComponent,
|
|
240
|
-
DynamicReportComponent,
|
|
241
225
|
SectionLoaderComponent,
|
|
242
226
|
ResourceContainerComponent,
|
|
243
|
-
SkipDynamicReportComponent,
|
|
244
|
-
AskSkipComponent,
|
|
245
227
|
AuthButtonComponent,
|
|
246
228
|
DashboardBrowserComponent,
|
|
247
229
|
DataBrowserComponent,
|
|
@@ -307,14 +289,10 @@ ExplorerCoreModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [Commo
|
|
|
307
289
|
LayoutModule,
|
|
308
290
|
FilterModule,
|
|
309
291
|
DropDownsModule,
|
|
310
|
-
MemberJunctionSharedModule
|
|
311
|
-
|
|
312
|
-
DynamicChartComponent,
|
|
313
|
-
DynamicReportComponent,
|
|
292
|
+
MemberJunctionSharedModule,
|
|
293
|
+
AskSkipModule], exports: [FormToolbarComponent,
|
|
314
294
|
SectionLoaderComponent,
|
|
315
295
|
ResourceContainerComponent,
|
|
316
|
-
SkipDynamicReportComponent,
|
|
317
|
-
AskSkipComponent,
|
|
318
296
|
AuthButtonComponent,
|
|
319
297
|
DashboardBrowserComponent,
|
|
320
298
|
DataBrowserComponent,
|
|
@@ -344,13 +322,7 @@ ExplorerCoreModule.ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [Commo
|
|
|
344
322
|
DeleteItemComponent,
|
|
345
323
|
EditDashboardComponent,
|
|
346
324
|
UserNotificationsComponent] }); })();
|
|
347
|
-
i0.ɵɵsetComponentScope(
|
|
348
|
-
DynamicChartComponent], []);
|
|
349
|
-
i0.ɵɵsetComponentScope(SkipDynamicReportComponent, [DynamicReportComponent], []);
|
|
350
|
-
i0.ɵɵsetComponentScope(DashboardBrowserComponent, [GenericBrowseListComponent], []);
|
|
351
|
-
i0.ɵɵsetComponentScope(ReportBrowserComponent, [GenericBrowseListComponent], []);
|
|
352
|
-
i0.ɵɵsetComponentScope(QueryBrowserComponent, [GenericBrowseListComponent], []);
|
|
353
|
-
i0.ɵɵsetComponentScope(SingleDashboardComponent, [i1.NgClass, i1.NgForOf, i1.NgIf, i2.ButtonComponent, i4.SVGIconComponent, i3.TileLayoutComponent, i3.TileLayoutItemComponent, i3.TileLayoutItemHeaderComponent, i3.TileLayoutItemBodyComponent, ResourceContainerComponent,
|
|
325
|
+
i0.ɵɵsetComponentScope(SingleDashboardComponent, [i1.NgClass, i1.NgForOf, i1.NgIf, i2.ButtonComponent, i3.SVGIconComponent, i4.TileLayoutComponent, i4.TileLayoutItemComponent, i4.TileLayoutItemHeaderComponent, i4.TileLayoutItemBodyComponent, ResourceContainerComponent,
|
|
354
326
|
AddItemComponent,
|
|
355
327
|
DeleteItemComponent,
|
|
356
328
|
EditDashboardComponent], []);
|
package/dist/public-api.d.ts
CHANGED
|
@@ -1,16 +1,9 @@
|
|
|
1
1
|
export * from './lib/generic/base-form-component';
|
|
2
2
|
export * from './lib/generic/base-form-section-component';
|
|
3
3
|
export * from './lib/generic/base-record-component';
|
|
4
|
-
export * from './lib/generic/base-resource-component';
|
|
5
|
-
export * from './lib/generic/dynamic-chart';
|
|
6
|
-
export * from './lib/generic/dynamic-grid';
|
|
7
|
-
export * from './lib/generic/dynamic-report';
|
|
8
4
|
export * from './lib/generic/form-toolbar';
|
|
9
5
|
export * from './lib/generic/resource-container-component';
|
|
10
6
|
export * from './lib/generic/section-loader-component';
|
|
11
|
-
export * from './shared/shared.service';
|
|
12
|
-
export * from './lib/ask-skip/ask-skip.component';
|
|
13
|
-
export * from './lib/ask-skip/skip-dynamic-report-wrapper';
|
|
14
7
|
export * from './lib/auth-button/auth-button.component';
|
|
15
8
|
export * from './lib/dashboard-browser-component/dashboard-browser.component';
|
|
16
9
|
export * from './lib/data-browser-component/data-browser.component';
|
|
@@ -43,4 +36,7 @@ export * from './lib/user-view-properties/view-properties-dialog.component';
|
|
|
43
36
|
export * from './lib/user-notifications/user-notifications.component';
|
|
44
37
|
export * from './lib/guards/auth-guard.service';
|
|
45
38
|
export * from './lib/guards/entities.guard';
|
|
39
|
+
export * from './lib/query-browser-component/query-browser.component';
|
|
40
|
+
export * from './lib/single-query/single-query.component';
|
|
41
|
+
export * from './lib/resource-wrappers/query-resource.component';
|
|
46
42
|
export * from './module';
|
package/dist/public-api.js
CHANGED
|
@@ -4,16 +4,9 @@
|
|
|
4
4
|
export * from './lib/generic/base-form-component';
|
|
5
5
|
export * from './lib/generic/base-form-section-component';
|
|
6
6
|
export * from './lib/generic/base-record-component';
|
|
7
|
-
export * from './lib/generic/base-resource-component';
|
|
8
|
-
export * from './lib/generic/dynamic-chart';
|
|
9
|
-
export * from './lib/generic/dynamic-grid';
|
|
10
|
-
export * from './lib/generic/dynamic-report';
|
|
11
7
|
export * from './lib/generic/form-toolbar';
|
|
12
8
|
export * from './lib/generic/resource-container-component';
|
|
13
9
|
export * from './lib/generic/section-loader-component';
|
|
14
|
-
export * from './shared/shared.service';
|
|
15
|
-
export * from './lib/ask-skip/ask-skip.component';
|
|
16
|
-
export * from './lib/ask-skip/skip-dynamic-report-wrapper';
|
|
17
10
|
export * from './lib/auth-button/auth-button.component';
|
|
18
11
|
export * from './lib/dashboard-browser-component/dashboard-browser.component';
|
|
19
12
|
export * from './lib/data-browser-component/data-browser.component';
|
|
@@ -46,4 +39,7 @@ export * from './lib/user-view-properties/view-properties-dialog.component';
|
|
|
46
39
|
export * from './lib/user-notifications/user-notifications.component';
|
|
47
40
|
export * from './lib/guards/auth-guard.service';
|
|
48
41
|
export * from './lib/guards/entities.guard';
|
|
42
|
+
export * from './lib/query-browser-component/query-browser.component';
|
|
43
|
+
export * from './lib/single-query/single-query.component';
|
|
44
|
+
export * from './lib/resource-wrappers/query-resource.component';
|
|
49
45
|
export * from './module';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-explorer-core",
|
|
3
|
-
"version": "0.9.
|
|
3
|
+
"version": "0.9.117",
|
|
4
4
|
"description": "MemberJunction Explorer: Core Angular Components",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -33,14 +33,15 @@
|
|
|
33
33
|
"@progress/kendo-svg-icons": "^2.1.0"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@memberjunction/global": "^0.9.
|
|
37
|
-
"@memberjunction/core": "^0.9.
|
|
38
|
-
"@memberjunction/ng-compare-records": "^0.9.
|
|
39
|
-
"@memberjunction/ng-record-changes": "^0.9.
|
|
40
|
-
"@memberjunction/ng-container-directives": "^0.9.
|
|
41
|
-
"@memberjunction/ng-user-view-grid": "^0.9.
|
|
42
|
-
"@memberjunction/ng-query-grid": "^0.9.
|
|
43
|
-
"@memberjunction/ng-shared": "^0.9.
|
|
36
|
+
"@memberjunction/global": "^0.9.132",
|
|
37
|
+
"@memberjunction/core": "^0.9.141",
|
|
38
|
+
"@memberjunction/ng-compare-records": "^0.9.142",
|
|
39
|
+
"@memberjunction/ng-record-changes": "^0.9.72",
|
|
40
|
+
"@memberjunction/ng-container-directives": "^0.9.109",
|
|
41
|
+
"@memberjunction/ng-user-view-grid": "^0.9.132",
|
|
42
|
+
"@memberjunction/ng-query-grid": "^0.9.18",
|
|
43
|
+
"@memberjunction/ng-shared": "^0.9.8",
|
|
44
|
+
"@memberjunction/ng-ask-skip": "^0.9.7",
|
|
44
45
|
"tslib": "^2.3.0"
|
|
45
46
|
},
|
|
46
47
|
"sideEffects": false
|