@memberjunction/ng-dashboards 5.27.1 → 5.29.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Archiving/components/archive-config-resource.component.d.ts +20 -0
- package/dist/Archiving/components/archive-config-resource.component.d.ts.map +1 -0
- package/dist/Archiving/components/archive-config-resource.component.js +46 -0
- package/dist/Archiving/components/archive-config-resource.component.js.map +1 -0
- package/dist/Archiving/components/archive-runs-resource.component.d.ts +20 -0
- package/dist/Archiving/components/archive-runs-resource.component.d.ts.map +1 -0
- package/dist/Archiving/components/archive-runs-resource.component.js +46 -0
- package/dist/Archiving/components/archive-runs-resource.component.js.map +1 -0
- package/dist/Home/action-pin-config-dialog.component.d.ts +60 -0
- package/dist/Home/action-pin-config-dialog.component.d.ts.map +1 -0
- package/dist/Home/action-pin-config-dialog.component.js +396 -0
- package/dist/Home/action-pin-config-dialog.component.js.map +1 -0
- package/dist/Home/action-pin-runner-dialog.component.d.ts +39 -0
- package/dist/Home/action-pin-runner-dialog.component.d.ts.map +1 -0
- package/dist/Home/action-pin-runner-dialog.component.js +285 -0
- package/dist/Home/action-pin-runner-dialog.component.js.map +1 -0
- package/dist/Home/home-dashboard.component.d.ts +26 -0
- package/dist/Home/home-dashboard.component.d.ts.map +1 -1
- package/dist/Home/home-dashboard.component.js +671 -462
- package/dist/Home/home-dashboard.component.js.map +1 -1
- package/dist/Integration/components/connections/connections.component.d.ts +27 -1
- package/dist/Integration/components/connections/connections.component.d.ts.map +1 -1
- package/dist/Integration/components/connections/connections.component.js +819 -445
- package/dist/Integration/components/connections/connections.component.js.map +1 -1
- package/dist/Integration/services/integration-data.service.d.ts +9 -1
- package/dist/Integration/services/integration-data.service.d.ts.map +1 -1
- package/dist/Integration/services/integration-data.service.js +24 -4
- package/dist/Integration/services/integration-data.service.js.map +1 -1
- package/dist/MCP/components/mcp-connection-dialog.component.js +1 -1
- package/dist/MCP/components/mcp-connection-dialog.component.js.map +1 -1
- package/dist/MCP/mcp-dashboard.component.d.ts +170 -0
- package/dist/MCP/mcp-dashboard.component.d.ts.map +1 -1
- package/dist/MCP/mcp-dashboard.component.js +2471 -679
- package/dist/MCP/mcp-dashboard.component.js.map +1 -1
- package/dist/MCP/mcp-filter-panel.component.d.ts +16 -1
- package/dist/MCP/mcp-filter-panel.component.d.ts.map +1 -1
- package/dist/MCP/mcp-filter-panel.component.js +187 -60
- package/dist/MCP/mcp-filter-panel.component.js.map +1 -1
- package/dist/MCP/mcp-resource.component.d.ts +0 -9
- package/dist/MCP/mcp-resource.component.d.ts.map +1 -1
- package/dist/MCP/mcp-resource.component.js +1 -10
- package/dist/MCP/mcp-resource.component.js.map +1 -1
- package/dist/MCP/mcp.module.d.ts +7 -6
- package/dist/MCP/mcp.module.d.ts.map +1 -1
- package/dist/MCP/mcp.module.js +4 -8
- package/dist/MCP/mcp.module.js.map +1 -1
- package/dist/QueryBrowser/query-browser-resource.component.d.ts +13 -3
- package/dist/QueryBrowser/query-browser-resource.component.d.ts.map +1 -1
- package/dist/QueryBrowser/query-browser-resource.component.js +186 -139
- package/dist/QueryBrowser/query-browser-resource.component.js.map +1 -1
- package/dist/archiving-dashboards.module.d.ts +19 -0
- package/dist/archiving-dashboards.module.d.ts.map +1 -0
- package/dist/archiving-dashboards.module.js +52 -0
- package/dist/archiving-dashboards.module.js.map +1 -0
- package/dist/core-dashboards.module.d.ts +33 -30
- package/dist/core-dashboards.module.d.ts.map +1 -1
- package/dist/core-dashboards.module.js +10 -0
- package/dist/core-dashboards.module.js.map +1 -1
- package/dist/module.d.ts +13 -12
- package/dist/module.d.ts.map +1 -1
- package/dist/module.js +7 -0
- package/dist/module.js.map +1 -1
- package/dist/public-api.d.ts +3 -0
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +4 -0
- package/dist/public-api.js.map +1 -1
- package/package.json +51 -48
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Archive Configuration Resource Component
|
|
3
|
+
*
|
|
4
|
+
* Dashboard resource wrapper for the "Configuration" tab in the Archiving application.
|
|
5
|
+
* Delegates all rendering to the reusable mj-archive-config-admin component from
|
|
6
|
+
* @memberjunction/ng-archive-manager.
|
|
7
|
+
*/
|
|
8
|
+
import { AfterViewInit } from '@angular/core';
|
|
9
|
+
import { ResourceData } from '@memberjunction/core-entities';
|
|
10
|
+
import { BaseResourceComponent } from '@memberjunction/ng-shared';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class ArchiveConfigResourceComponent extends BaseResourceComponent implements AfterViewInit {
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
GetResourceDisplayName(_data: ResourceData): Promise<string>;
|
|
15
|
+
GetResourceIconClass(_data: ResourceData): Promise<string>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArchiveConfigResourceComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArchiveConfigResourceComponent, "app-archive-config-resource", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
export declare function LoadArchiveConfigResource(): void;
|
|
20
|
+
//# sourceMappingURL=archive-config-resource.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"archive-config-resource.component.d.ts","sourceRoot":"","sources":["../../../src/Archiving/components/archive-config-resource.component.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAa,aAAa,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;;AAElE,qBAOa,8BAA+B,SAAQ,qBAAsB,YAAW,aAAa;IAC9F,eAAe,IAAI,IAAI;IAIjB,sBAAsB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC;IAI5D,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC;yCATvD,8BAA8B;2CAA9B,8BAA8B;CAY1C;AAED,wBAAgB,yBAAyB,SAExC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* @fileoverview Archive Configuration Resource Component
|
|
9
|
+
*
|
|
10
|
+
* Dashboard resource wrapper for the "Configuration" tab in the Archiving application.
|
|
11
|
+
* Delegates all rendering to the reusable mj-archive-config-admin component from
|
|
12
|
+
* @memberjunction/ng-archive-manager.
|
|
13
|
+
*/
|
|
14
|
+
import { Component } from '@angular/core';
|
|
15
|
+
import { RegisterClass } from '@memberjunction/global';
|
|
16
|
+
import { BaseResourceComponent } from '@memberjunction/ng-shared';
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
import * as i1 from "@memberjunction/ng-archive-manager";
|
|
19
|
+
let ArchiveConfigResourceComponent = class ArchiveConfigResourceComponent extends BaseResourceComponent {
|
|
20
|
+
ngAfterViewInit() {
|
|
21
|
+
this.NotifyLoadComplete();
|
|
22
|
+
}
|
|
23
|
+
async GetResourceDisplayName(_data) {
|
|
24
|
+
return 'Archive Configuration';
|
|
25
|
+
}
|
|
26
|
+
async GetResourceIconClass(_data) {
|
|
27
|
+
return 'fa-solid fa-sliders';
|
|
28
|
+
}
|
|
29
|
+
static ɵfac = /*@__PURE__*/ (() => { let ɵArchiveConfigResourceComponent_BaseFactory; return function ArchiveConfigResourceComponent_Factory(__ngFactoryType__) { return (ɵArchiveConfigResourceComponent_BaseFactory || (ɵArchiveConfigResourceComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ArchiveConfigResourceComponent)))(__ngFactoryType__ || ArchiveConfigResourceComponent); }; })();
|
|
30
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ArchiveConfigResourceComponent, selectors: [["app-archive-config-resource"]], standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 0, template: function ArchiveConfigResourceComponent_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelement(0, "mj-archive-config-admin");
|
|
32
|
+
} }, dependencies: [i1.ArchiveConfigAdminComponent], styles: ["[_nghost-%COMP%] { display: block; height: 100%; width: 100%; overflow: auto; }"] });
|
|
33
|
+
};
|
|
34
|
+
ArchiveConfigResourceComponent = __decorate([
|
|
35
|
+
RegisterClass(BaseResourceComponent, 'ArchiveConfigResource')
|
|
36
|
+
], ArchiveConfigResourceComponent);
|
|
37
|
+
export { ArchiveConfigResourceComponent };
|
|
38
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ArchiveConfigResourceComponent, [{
|
|
39
|
+
type: Component,
|
|
40
|
+
args: [{ standalone: false, selector: 'app-archive-config-resource', template: `<mj-archive-config-admin></mj-archive-config-admin>`, styles: [":host { display: block; height: 100%; width: 100%; overflow: auto; }"] }]
|
|
41
|
+
}], null, null); })();
|
|
42
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ArchiveConfigResourceComponent, { className: "ArchiveConfigResourceComponent", filePath: "src/Archiving/components/archive-config-resource.component.ts", lineNumber: 21 }); })();
|
|
43
|
+
export function LoadArchiveConfigResource() {
|
|
44
|
+
// Prevents tree-shaking
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=archive-config-resource.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"archive-config-resource.component.js","sourceRoot":"","sources":["../../../src/Archiving/components/archive-config-resource.component.ts"],"names":[],"mappings":";;;;;;AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,SAAS,EAAiB,MAAM,eAAe,CAAC;AAEzD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;;;AAS3D,IAAM,8BAA8B,GAApC,MAAM,8BAA+B,SAAQ,qBAAqB;IACrE,eAAe;QACX,IAAI,CAAC,kBAAkB,EAAE,CAAC;IAC9B,CAAC;IAED,KAAK,CAAC,sBAAsB,CAAC,KAAmB;QAC5C,OAAO,uBAAuB,CAAC;IACnC,CAAC;IAED,KAAK,CAAC,oBAAoB,CAAC,KAAmB;QAC1C,OAAO,qBAAqB,CAAC;IACjC,CAAC;qSAXQ,8BAA8B,yBAA9B,8BAA8B;6DAA9B,8BAA8B;YAH5B,0CAAmD;;;AAGrD,8BAA8B;IAP1C,aAAa,CAAC,qBAAqB,EAAE,uBAAuB,CAAC;GAOjD,8BAA8B,CAY1C;;iFAZY,8BAA8B;cAN1C,SAAS;6BACM,KAAK,YACP,6BAA6B,YAC7B,qDAAqD;;kFAGtD,8BAA8B;AAc3C,MAAM,UAAU,yBAAyB;IACrC,wBAAwB;AAC5B,CAAC","sourcesContent":["/**\n * @fileoverview Archive Configuration Resource Component\n *\n * Dashboard resource wrapper for the \"Configuration\" tab in the Archiving application.\n * Delegates all rendering to the reusable mj-archive-config-admin component from\n * @memberjunction/ng-archive-manager.\n */\n\nimport { Component, AfterViewInit } from '@angular/core';\nimport { ResourceData } from '@memberjunction/core-entities';\nimport { RegisterClass } from '@memberjunction/global';\nimport { BaseResourceComponent } from '@memberjunction/ng-shared';\n\n@RegisterClass(BaseResourceComponent, 'ArchiveConfigResource')\n@Component({\n standalone: false,\n selector: 'app-archive-config-resource',\n template: `<mj-archive-config-admin></mj-archive-config-admin>`,\n styles: [`:host { display: block; height: 100%; width: 100%; overflow: auto; }`],\n})\nexport class ArchiveConfigResourceComponent extends BaseResourceComponent implements AfterViewInit {\n ngAfterViewInit(): void {\n this.NotifyLoadComplete();\n }\n\n async GetResourceDisplayName(_data: ResourceData): Promise<string> {\n return 'Archive Configuration';\n }\n\n async GetResourceIconClass(_data: ResourceData): Promise<string> {\n return 'fa-solid fa-sliders';\n }\n}\n\nexport function LoadArchiveConfigResource() {\n // Prevents tree-shaking\n}\n"]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @fileoverview Archive Runs Resource Component
|
|
3
|
+
*
|
|
4
|
+
* Dashboard resource wrapper for the "Run History" tab in the Archiving application.
|
|
5
|
+
* Delegates all rendering to the reusable mj-archive-run-viewer component from
|
|
6
|
+
* @memberjunction/ng-archive-manager.
|
|
7
|
+
*/
|
|
8
|
+
import { AfterViewInit } from '@angular/core';
|
|
9
|
+
import { ResourceData } from '@memberjunction/core-entities';
|
|
10
|
+
import { BaseResourceComponent } from '@memberjunction/ng-shared';
|
|
11
|
+
import * as i0 from "@angular/core";
|
|
12
|
+
export declare class ArchiveRunsResourceComponent extends BaseResourceComponent implements AfterViewInit {
|
|
13
|
+
ngAfterViewInit(): void;
|
|
14
|
+
GetResourceDisplayName(_data: ResourceData): Promise<string>;
|
|
15
|
+
GetResourceIconClass(_data: ResourceData): Promise<string>;
|
|
16
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ArchiveRunsResourceComponent, never>;
|
|
17
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ArchiveRunsResourceComponent, "app-archive-runs-resource", never, {}, {}, never, never, false, never>;
|
|
18
|
+
}
|
|
19
|
+
export declare function LoadArchiveRunsResource(): void;
|
|
20
|
+
//# sourceMappingURL=archive-runs-resource.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"archive-runs-resource.component.d.ts","sourceRoot":"","sources":["../../../src/Archiving/components/archive-runs-resource.component.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,EAAa,aAAa,EAAE,MAAM,eAAe,CAAC;AACzD,OAAO,EAAE,YAAY,EAAE,MAAM,+BAA+B,CAAC;AAE7D,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;;AAElE,qBAOa,4BAA6B,SAAQ,qBAAsB,YAAW,aAAa;IAC5F,eAAe,IAAI,IAAI;IAIjB,sBAAsB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC;IAI5D,oBAAoB,CAAC,KAAK,EAAE,YAAY,GAAG,OAAO,CAAC,MAAM,CAAC;yCATvD,4BAA4B;2CAA5B,4BAA4B;CAYxC;AAED,wBAAgB,uBAAuB,SAEtC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
|
|
2
|
+
var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
|
|
3
|
+
if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
|
|
4
|
+
else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
|
|
5
|
+
return c > 3 && r && Object.defineProperty(target, key, r), r;
|
|
6
|
+
};
|
|
7
|
+
/**
|
|
8
|
+
* @fileoverview Archive Runs Resource Component
|
|
9
|
+
*
|
|
10
|
+
* Dashboard resource wrapper for the "Run History" tab in the Archiving application.
|
|
11
|
+
* Delegates all rendering to the reusable mj-archive-run-viewer component from
|
|
12
|
+
* @memberjunction/ng-archive-manager.
|
|
13
|
+
*/
|
|
14
|
+
import { Component } from '@angular/core';
|
|
15
|
+
import { RegisterClass } from '@memberjunction/global';
|
|
16
|
+
import { BaseResourceComponent } from '@memberjunction/ng-shared';
|
|
17
|
+
import * as i0 from "@angular/core";
|
|
18
|
+
import * as i1 from "@memberjunction/ng-archive-manager";
|
|
19
|
+
let ArchiveRunsResourceComponent = class ArchiveRunsResourceComponent extends BaseResourceComponent {
|
|
20
|
+
ngAfterViewInit() {
|
|
21
|
+
this.NotifyLoadComplete();
|
|
22
|
+
}
|
|
23
|
+
async GetResourceDisplayName(_data) {
|
|
24
|
+
return 'Archive Run History';
|
|
25
|
+
}
|
|
26
|
+
async GetResourceIconClass(_data) {
|
|
27
|
+
return 'fa-solid fa-clock-rotate-left';
|
|
28
|
+
}
|
|
29
|
+
static ɵfac = /*@__PURE__*/ (() => { let ɵArchiveRunsResourceComponent_BaseFactory; return function ArchiveRunsResourceComponent_Factory(__ngFactoryType__) { return (ɵArchiveRunsResourceComponent_BaseFactory || (ɵArchiveRunsResourceComponent_BaseFactory = i0.ɵɵgetInheritedFactory(ArchiveRunsResourceComponent)))(__ngFactoryType__ || ArchiveRunsResourceComponent); }; })();
|
|
30
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: ArchiveRunsResourceComponent, selectors: [["app-archive-runs-resource"]], standalone: false, features: [i0.ɵɵInheritDefinitionFeature], decls: 1, vars: 0, template: function ArchiveRunsResourceComponent_Template(rf, ctx) { if (rf & 1) {
|
|
31
|
+
i0.ɵɵelement(0, "mj-archive-run-viewer");
|
|
32
|
+
} }, dependencies: [i1.ArchiveRunViewerComponent], styles: ["[_nghost-%COMP%] { display: block; height: 100%; width: 100%; overflow: auto; }"] });
|
|
33
|
+
};
|
|
34
|
+
ArchiveRunsResourceComponent = __decorate([
|
|
35
|
+
RegisterClass(BaseResourceComponent, 'ArchiveRunsResource')
|
|
36
|
+
], ArchiveRunsResourceComponent);
|
|
37
|
+
export { ArchiveRunsResourceComponent };
|
|
38
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(ArchiveRunsResourceComponent, [{
|
|
39
|
+
type: Component,
|
|
40
|
+
args: [{ standalone: false, selector: 'app-archive-runs-resource', template: `<mj-archive-run-viewer></mj-archive-run-viewer>`, styles: [":host { display: block; height: 100%; width: 100%; overflow: auto; }"] }]
|
|
41
|
+
}], null, null); })();
|
|
42
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(ArchiveRunsResourceComponent, { className: "ArchiveRunsResourceComponent", filePath: "src/Archiving/components/archive-runs-resource.component.ts", lineNumber: 21 }); })();
|
|
43
|
+
export function LoadArchiveRunsResource() {
|
|
44
|
+
// Prevents tree-shaking
|
|
45
|
+
}
|
|
46
|
+
//# sourceMappingURL=archive-runs-resource.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"archive-runs-resource.component.js","sourceRoot":"","sources":["../../../src/Archiving/components/archive-runs-resource.component.ts"],"names":[],"mappings":";;;;;;AAAA;;;;;;GAMG;AAEH,OAAO,EAAE,SAAS,EAAiB,MAAM,eAAe,CAAC;AAEzD,OAAO,EAAE,aAAa,EAAE,MAAM,wBAAwB,CAAC;AACvD,OAAO,EAAE,qBAAqB,EAAE,MAAM,2BAA2B,CAAC;;;AAS3D,IAAM,4BAA4B,GAAlC,MAAM,4BAA6B,SAAQ,qBAAqB;IACnE,eAAe;QACX,IAAI,CAAC,kBAAkB,EAAE,CAAC;IAC9B,CAAC;IAED,KAAK,CAAC,sBAAsB,CAAC,KAAmB;QAC5C,OAAO,qBAAqB,CAAC;IACjC,CAAC;IAED,KAAK,CAAC,oBAAoB,CAAC,KAAmB;QAC1C,OAAO,+BAA+B,CAAC;IAC3C,CAAC;6RAXQ,4BAA4B,yBAA5B,4BAA4B;6DAA5B,4BAA4B;YAH1B,wCAA+C;;;AAGjD,4BAA4B;IAPxC,aAAa,CAAC,qBAAqB,EAAE,qBAAqB,CAAC;GAO/C,4BAA4B,CAYxC;;iFAZY,4BAA4B;cANxC,SAAS;6BACM,KAAK,YACP,2BAA2B,YAC3B,iDAAiD;;kFAGlD,4BAA4B;AAczC,MAAM,UAAU,uBAAuB;IACnC,wBAAwB;AAC5B,CAAC","sourcesContent":["/**\n * @fileoverview Archive Runs Resource Component\n *\n * Dashboard resource wrapper for the \"Run History\" tab in the Archiving application.\n * Delegates all rendering to the reusable mj-archive-run-viewer component from\n * @memberjunction/ng-archive-manager.\n */\n\nimport { Component, AfterViewInit } from '@angular/core';\nimport { ResourceData } from '@memberjunction/core-entities';\nimport { RegisterClass } from '@memberjunction/global';\nimport { BaseResourceComponent } from '@memberjunction/ng-shared';\n\n@RegisterClass(BaseResourceComponent, 'ArchiveRunsResource')\n@Component({\n standalone: false,\n selector: 'app-archive-runs-resource',\n template: `<mj-archive-run-viewer></mj-archive-run-viewer>`,\n styles: [`:host { display: block; height: 100%; width: 100%; overflow: auto; }`],\n})\nexport class ArchiveRunsResourceComponent extends BaseResourceComponent implements AfterViewInit {\n ngAfterViewInit(): void {\n this.NotifyLoadComplete();\n }\n\n async GetResourceDisplayName(_data: ResourceData): Promise<string> {\n return 'Archive Run History';\n }\n\n async GetResourceIconClass(_data: ResourceData): Promise<string> {\n return 'fa-solid fa-clock-rotate-left';\n }\n}\n\nexport function LoadArchiveRunsResource() {\n // Prevents tree-shaking\n}\n"]}
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
import { EventEmitter, OnChanges, SimpleChanges, ChangeDetectorRef } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* One row in the param configuration table — either a preset-value or a runtime-prompted param.
|
|
5
|
+
*/
|
|
6
|
+
export interface ActionPinParamConfig {
|
|
7
|
+
Name: string;
|
|
8
|
+
Description: string;
|
|
9
|
+
IsRequired: boolean;
|
|
10
|
+
DefaultValue: string;
|
|
11
|
+
Mode: 'preset' | 'runtime';
|
|
12
|
+
PresetValue: string;
|
|
13
|
+
}
|
|
14
|
+
/**
|
|
15
|
+
* Payload returned when the user saves the dialog.
|
|
16
|
+
*/
|
|
17
|
+
export interface ActionPinConfigResult {
|
|
18
|
+
Action: 'save' | 'cancel';
|
|
19
|
+
Pin?: {
|
|
20
|
+
DisplayName: string;
|
|
21
|
+
ActionID: string;
|
|
22
|
+
ActionName: string;
|
|
23
|
+
AccentColor: string;
|
|
24
|
+
FaIcon: string;
|
|
25
|
+
PresetParams: Record<string, string>;
|
|
26
|
+
RuntimeParamNames: string[];
|
|
27
|
+
};
|
|
28
|
+
}
|
|
29
|
+
export declare class ActionPinConfigDialogComponent implements OnChanges {
|
|
30
|
+
private cdr;
|
|
31
|
+
Visible: boolean;
|
|
32
|
+
ActionID: string | null;
|
|
33
|
+
ActionName: string | null;
|
|
34
|
+
ActionDescription: string | null;
|
|
35
|
+
Result: EventEmitter<ActionPinConfigResult>;
|
|
36
|
+
readonly ColorPalette: {
|
|
37
|
+
name: string;
|
|
38
|
+
value: string;
|
|
39
|
+
}[];
|
|
40
|
+
readonly FaIconPalette: string[];
|
|
41
|
+
DisplayName: string;
|
|
42
|
+
AccentColor: string;
|
|
43
|
+
FaIcon: string;
|
|
44
|
+
Params: ActionPinParamConfig[];
|
|
45
|
+
IsLoadingParams: boolean;
|
|
46
|
+
ErrorMessage: string | null;
|
|
47
|
+
constructor(cdr: ChangeDetectorRef);
|
|
48
|
+
ngOnChanges(changes: SimpleChanges): void;
|
|
49
|
+
private resetState;
|
|
50
|
+
private loadParams;
|
|
51
|
+
SelectColor(hex: string): void;
|
|
52
|
+
SelectFaIcon(icon: string): void;
|
|
53
|
+
SetParamMode(param: ActionPinParamConfig, mode: 'preset' | 'runtime'): void;
|
|
54
|
+
CanSave(): boolean;
|
|
55
|
+
Save(): void;
|
|
56
|
+
Cancel(): void;
|
|
57
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<ActionPinConfigDialogComponent, never>;
|
|
58
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<ActionPinConfigDialogComponent, "mj-action-pin-config-dialog", never, { "Visible": { "alias": "Visible"; "required": false; }; "ActionID": { "alias": "ActionID"; "required": false; }; "ActionName": { "alias": "ActionName"; "required": false; }; "ActionDescription": { "alias": "ActionDescription"; "required": false; }; }, { "Result": "Result"; }, never, never, false, never>;
|
|
59
|
+
}
|
|
60
|
+
//# sourceMappingURL=action-pin-config-dialog.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"action-pin-config-dialog.component.d.ts","sourceRoot":"","sources":["../../src/Home/action-pin-config-dialog.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAA4B,YAAY,EAAE,SAAS,EAAE,aAAa,EAAE,iBAAiB,EAAqB,MAAM,eAAe,CAAC;;AAIvI;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACjC,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,EAAE,MAAM,CAAC;IACpB,UAAU,EAAE,OAAO,CAAC;IACpB,YAAY,EAAE,MAAM,CAAC;IACrB,IAAI,EAAE,QAAQ,GAAG,SAAS,CAAC;IAC3B,WAAW,EAAE,MAAM,CAAC;CACvB;AAED;;GAEG;AACH,MAAM,WAAW,qBAAqB;IAClC,MAAM,EAAE,MAAM,GAAG,QAAQ,CAAC;IAC1B,GAAG,CAAC,EAAE;QACF,WAAW,EAAE,MAAM,CAAC;QACpB,QAAQ,EAAE,MAAM,CAAC;QACjB,UAAU,EAAE,MAAM,CAAC;QACnB,WAAW,EAAE,MAAM,CAAC;QACpB,MAAM,EAAE,MAAM,CAAC;QACf,YAAY,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;QACrC,iBAAiB,EAAE,MAAM,EAAE,CAAC;KAC/B,CAAC;CACL;AA0BD,qBAOa,8BAA+B,YAAW,SAAS;IAmBhD,OAAO,CAAC,GAAG;IAlBd,OAAO,UAAS;IAChB,QAAQ,EAAE,MAAM,GAAG,IAAI,CAAQ;IAC/B,UAAU,EAAE,MAAM,GAAG,IAAI,CAAQ;IACjC,iBAAiB,EAAE,MAAM,GAAG,IAAI,CAAQ;IACvC,MAAM,sCAA6C;IAE7D,SAAgB,YAAY;;;QAAiB;IAC7C,SAAgB,aAAa,WAAmB;IAEzC,WAAW,SAAM;IACjB,WAAW,EAAE,MAAM,CAA0B;IAC7C,MAAM,SAAsB;IAE5B,MAAM,EAAE,oBAAoB,EAAE,CAAM;IAEpC,eAAe,UAAS;IACxB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAQ;gBAEtB,GAAG,EAAE,iBAAiB;IAE1C,WAAW,CAAC,OAAO,EAAE,aAAa,GAAG,IAAI;IAOzC,OAAO,CAAC,UAAU;YASJ,UAAU;IAgCxB,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI;IAK9B,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,IAAI;IAKhC,YAAY,CAAC,KAAK,EAAE,oBAAoB,EAAE,IAAI,EAAE,QAAQ,GAAG,SAAS,GAAG,IAAI;IAK3E,OAAO,IAAI,OAAO;IAQlB,IAAI,IAAI,IAAI;IAyBZ,MAAM,IAAI,IAAI;yCArHL,8BAA8B;2CAA9B,8BAA8B;CAwH1C"}
|