@memberjunction/ng-artifacts 2.126.1 → 2.128.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/lib/artifacts.module.d.ts +8 -7
- package/dist/lib/artifacts.module.d.ts.map +1 -1
- package/dist/lib/artifacts.module.js +7 -2
- package/dist/lib/artifacts.module.js.map +1 -1
- package/dist/lib/components/artifact-type-plugin-viewer.component.d.ts +2 -1
- package/dist/lib/components/artifact-type-plugin-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/artifact-type-plugin-viewer.component.js +15 -8
- package/dist/lib/components/artifact-type-plugin-viewer.component.js.map +1 -1
- package/dist/lib/components/artifact-viewer-panel.component.d.ts +34 -1
- package/dist/lib/components/artifact-viewer-panel.component.d.ts.map +1 -1
- package/dist/lib/components/artifact-viewer-panel.component.js +154 -58
- package/dist/lib/components/artifact-viewer-panel.component.js.map +1 -1
- package/dist/lib/components/base-artifact-viewer.component.d.ts +47 -3
- package/dist/lib/components/base-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/base-artifact-viewer.component.js +13 -1
- package/dist/lib/components/base-artifact-viewer.component.js.map +1 -1
- package/dist/lib/components/plugins/code-artifact-viewer.component.d.ts +4 -0
- package/dist/lib/components/plugins/code-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/plugins/code-artifact-viewer.component.js +6 -0
- package/dist/lib/components/plugins/code-artifact-viewer.component.js.map +1 -1
- package/dist/lib/components/plugins/component-artifact-viewer.component.d.ts +21 -0
- package/dist/lib/components/plugins/component-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/plugins/component-artifact-viewer.component.js +70 -30
- package/dist/lib/components/plugins/component-artifact-viewer.component.js.map +1 -1
- package/dist/lib/components/plugins/data-requirements-viewer/data-requirements-viewer.component.d.ts +34 -0
- package/dist/lib/components/plugins/data-requirements-viewer/data-requirements-viewer.component.d.ts.map +1 -0
- package/dist/lib/components/plugins/data-requirements-viewer/data-requirements-viewer.component.js +675 -0
- package/dist/lib/components/plugins/data-requirements-viewer/data-requirements-viewer.component.js.map +1 -0
- package/dist/lib/components/plugins/html-artifact-viewer.component.d.ts +4 -0
- package/dist/lib/components/plugins/html-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/plugins/html-artifact-viewer.component.js +6 -0
- package/dist/lib/components/plugins/html-artifact-viewer.component.js.map +1 -1
- package/dist/lib/components/plugins/json-artifact-viewer.component.d.ts +4 -0
- package/dist/lib/components/plugins/json-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/plugins/json-artifact-viewer.component.js +15 -5
- package/dist/lib/components/plugins/json-artifact-viewer.component.js.map +1 -1
- package/dist/lib/components/plugins/markdown-artifact-viewer.component.d.ts +4 -0
- package/dist/lib/components/plugins/markdown-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/plugins/markdown-artifact-viewer.component.js +15 -5
- package/dist/lib/components/plugins/markdown-artifact-viewer.component.js.map +1 -1
- package/dist/lib/components/plugins/svg-artifact-viewer.component.d.ts +4 -0
- package/dist/lib/components/plugins/svg-artifact-viewer.component.d.ts.map +1 -1
- package/dist/lib/components/plugins/svg-artifact-viewer.component.js +6 -0
- package/dist/lib/components/plugins/svg-artifact-viewer.component.js.map +1 -1
- package/package.json +11 -11
package/dist/lib/components/plugins/data-requirements-viewer/data-requirements-viewer.component.d.ts
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { ComponentDataRequirements, ComponentEntityDataRequirement, ComponentQueryDataRequirement, SimpleEntityFieldInfo } from '@memberjunction/interactive-component-types';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
/**
|
|
4
|
+
* Beautiful viewer component for ComponentDataRequirements.
|
|
5
|
+
* Displays entities, queries, and fields in an organized, visually appealing layout.
|
|
6
|
+
*/
|
|
7
|
+
export declare class DataRequirementsViewerComponent {
|
|
8
|
+
dataRequirements: ComponentDataRequirements | null;
|
|
9
|
+
expandedEntities: Set<string>;
|
|
10
|
+
expandedQueries: Set<string>;
|
|
11
|
+
get hasData(): boolean;
|
|
12
|
+
get mode(): string;
|
|
13
|
+
get modeLabel(): string;
|
|
14
|
+
get modeIcon(): string;
|
|
15
|
+
get entities(): ComponentEntityDataRequirement[];
|
|
16
|
+
get queries(): ComponentQueryDataRequirement[];
|
|
17
|
+
get description(): string;
|
|
18
|
+
get totalFieldCount(): number;
|
|
19
|
+
toggleEntity(entityName: string): void;
|
|
20
|
+
toggleQuery(queryKey: string): void;
|
|
21
|
+
isEntityExpanded(entityName: string): boolean;
|
|
22
|
+
isQueryExpanded(queryKey: string): boolean;
|
|
23
|
+
getQueryKey(query: ComponentQueryDataRequirement): string;
|
|
24
|
+
getPermissionIcon(permission: string): string;
|
|
25
|
+
getPermissionColor(permission: string): string;
|
|
26
|
+
getFieldTypeIcon(type: string): string;
|
|
27
|
+
getFieldTypeColor(type: string): string;
|
|
28
|
+
formatFieldType(type: string): string;
|
|
29
|
+
getFieldUsageTags(field: SimpleEntityFieldInfo, entity: ComponentEntityDataRequirement): string[];
|
|
30
|
+
getTagColor(tag: string): string;
|
|
31
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<DataRequirementsViewerComponent, never>;
|
|
32
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<DataRequirementsViewerComponent, "mj-data-requirements-viewer", never, { "dataRequirements": { "alias": "dataRequirements"; "required": false; }; }, {}, never, never, false, never>;
|
|
33
|
+
}
|
|
34
|
+
//# sourceMappingURL=data-requirements-viewer.component.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"data-requirements-viewer.component.d.ts","sourceRoot":"","sources":["../../../../../src/lib/components/plugins/data-requirements-viewer/data-requirements-viewer.component.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,yBAAyB,EAAE,8BAA8B,EAAE,6BAA6B,EAAE,qBAAqB,EAAE,MAAM,6CAA6C,CAAC;;AAE9K;;;GAGG;AACH,qBAKa,+BAA+B;IACjC,gBAAgB,EAAE,yBAAyB,GAAG,IAAI,CAAQ;IAGnE,gBAAgB,EAAE,GAAG,CAAC,MAAM,CAAC,CAAa;IAC1C,eAAe,EAAE,GAAG,CAAC,MAAM,CAAC,CAAa;IAEzC,IAAI,OAAO,IAAI,OAAO,CAErB;IAED,IAAI,IAAI,IAAI,MAAM,CAEjB;IAED,IAAI,SAAS,IAAI,MAAM,CAOtB;IAED,IAAI,QAAQ,IAAI,MAAM,CAOrB;IAED,IAAI,QAAQ,IAAI,8BAA8B,EAAE,CAE/C;IAED,IAAI,OAAO,IAAI,6BAA6B,EAAE,CAE7C;IAED,IAAI,WAAW,IAAI,MAAM,CAExB;IAED,IAAI,eAAe,IAAI,MAAM,CAS5B;IAED,YAAY,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI;IAQtC,WAAW,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI;IAQnC,gBAAgB,CAAC,UAAU,EAAE,MAAM,GAAG,OAAO;IAI7C,eAAe,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO;IAI1C,WAAW,CAAC,KAAK,EAAE,6BAA6B,GAAG,MAAM;IAIzD,iBAAiB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM;IAU7C,kBAAkB,CAAC,UAAU,EAAE,MAAM,GAAG,MAAM;IAU9C,gBAAgB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAuBtC,iBAAiB,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAoBvC,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM;IAIrC,iBAAiB,CAAC,KAAK,EAAE,qBAAqB,EAAE,MAAM,EAAE,8BAA8B,GAAG,MAAM,EAAE;IAiBjG,WAAW,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM;yCAxKrB,+BAA+B;2CAA/B,+BAA+B;CAiL3C"}
|