@memberjunction/ng-explorer-core 5.49.0 → 5.51.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/generated/lazy-feature-config.d.ts +11 -2
- package/dist/generated/lazy-feature-config.d.ts.map +1 -1
- package/dist/generated/lazy-feature-config.js +79 -23
- package/dist/generated/lazy-feature-config.js.map +1 -1
- package/dist/lib/omnibar/omnibar-palette.component.js +98 -96
- package/dist/lib/omnibar/omnibar-palette.component.js.map +1 -1
- package/dist/lib/resource-wrappers/view-resource.component.d.ts +19 -16
- package/dist/lib/resource-wrappers/view-resource.component.d.ts.map +1 -1
- package/dist/lib/resource-wrappers/view-resource.component.js +127 -121
- package/dist/lib/resource-wrappers/view-resource.component.js.map +1 -1
- package/dist/lib/services/lazy-module-registry.d.ts +48 -8
- package/dist/lib/services/lazy-module-registry.d.ts.map +1 -1
- package/dist/lib/services/lazy-module-registry.js +103 -23
- package/dist/lib/services/lazy-module-registry.js.map +1 -1
- package/dist/lib/shell/components/header/app-nav.component.d.ts +84 -9
- package/dist/lib/shell/components/header/app-nav.component.d.ts.map +1 -1
- package/dist/lib/shell/components/header/app-nav.component.js +380 -41
- package/dist/lib/shell/components/header/app-nav.component.js.map +1 -1
- package/dist/lib/shell/components/header/app-switcher.component.d.ts +159 -29
- package/dist/lib/shell/components/header/app-switcher.component.d.ts.map +1 -1
- package/dist/lib/shell/components/header/app-switcher.component.js +822 -116
- package/dist/lib/shell/components/header/app-switcher.component.js.map +1 -1
- package/dist/lib/shell/services/sharing-center-dialog-host.component.d.ts +10 -1
- package/dist/lib/shell/services/sharing-center-dialog-host.component.d.ts.map +1 -1
- package/dist/lib/shell/services/sharing-center-dialog-host.component.js +30 -4
- package/dist/lib/shell/services/sharing-center-dialog-host.component.js.map +1 -1
- package/dist/lib/shell/shell.component.d.ts +3 -0
- package/dist/lib/shell/shell.component.d.ts.map +1 -1
- package/dist/lib/shell/shell.component.js +22 -12
- package/dist/lib/shell/shell.component.js.map +1 -1
- package/dist/lib/shell/shell.module.d.ts +1 -1
- package/dist/lib/shell/shell.module.d.ts.map +1 -1
- package/dist/lib/shell/shell.module.js +3 -1
- package/dist/lib/shell/shell.module.js.map +1 -1
- package/package.json +51 -51
|
@@ -14,7 +14,7 @@ import * as i12 from "@memberjunction/ng-shared-generic";
|
|
|
14
14
|
import * as i13 from "@memberjunction/ng-search";
|
|
15
15
|
export declare class ShellModule {
|
|
16
16
|
static ɵfac: i0.ɵɵFactoryDeclaration<ShellModule, never>;
|
|
17
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ShellModule, [typeof i1.ShellComponent, typeof i2.AppSwitcherComponent, typeof i3.AppNavComponent, typeof i4.TabContainerComponent, typeof i5.AppAccessDialogComponent, typeof i6.CommandPaletteComponent, typeof i7.OmnibarPaletteComponent], [typeof i8.CommonModule, typeof i9.FormsModule, typeof i10.MJDropdownComponent, typeof i10.MJClickableDirective, typeof i10.MJEmptyStateComponent, typeof i11.ExplorerSettingsModule, typeof i12.SharedGenericModule, typeof i13.SearchModule], [typeof i1.ShellComponent]>;
|
|
17
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ShellModule, [typeof i1.ShellComponent, typeof i2.AppSwitcherComponent, typeof i3.AppNavComponent, typeof i4.TabContainerComponent, typeof i5.AppAccessDialogComponent, typeof i6.CommandPaletteComponent, typeof i7.OmnibarPaletteComponent], [typeof i8.CommonModule, typeof i9.FormsModule, typeof i10.MJDropdownComponent, typeof i10.MJClickableDirective, typeof i10.MJButtonDirective, typeof i10.MJEmptyStateComponent, typeof i11.ExplorerSettingsModule, typeof i12.SharedGenericModule, typeof i13.SearchModule], [typeof i1.ShellComponent]>;
|
|
18
18
|
static ɵinj: i0.ɵɵInjectorDeclaration<ShellModule>;
|
|
19
19
|
}
|
|
20
20
|
//# sourceMappingURL=shell.module.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shell.module.d.ts","sourceRoot":"","sources":["../../../src/lib/shell/shell.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAgBA,
|
|
1
|
+
{"version":3,"file":"shell.module.d.ts","sourceRoot":"","sources":["../../../src/lib/shell/shell.module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;AAgBA,qBA4Ba,WAAW;yCAAX,WAAW;0CAAX,WAAW;0CAAX,WAAW;CAAI"}
|
|
@@ -11,7 +11,7 @@ import { OmnibarPaletteComponent } from '../omnibar/omnibar-palette.component';
|
|
|
11
11
|
import { CommandPaletteService } from '../command-palette/command-palette.service';
|
|
12
12
|
import { ExplorerSettingsModule } from '@memberjunction/ng-explorer-settings';
|
|
13
13
|
import { SharedGenericModule } from '@memberjunction/ng-shared-generic';
|
|
14
|
-
import { MJDropdownComponent, MJClickableDirective, MJEmptyStateComponent } from '@memberjunction/ng-ui-components';
|
|
14
|
+
import { MJDropdownComponent, MJClickableDirective, MJButtonDirective, MJEmptyStateComponent } from '@memberjunction/ng-ui-components';
|
|
15
15
|
import { SearchModule } from '@memberjunction/ng-search';
|
|
16
16
|
import * as i0 from "@angular/core";
|
|
17
17
|
export class ShellModule {
|
|
@@ -44,6 +44,7 @@ export class ShellModule {
|
|
|
44
44
|
FormsModule,
|
|
45
45
|
MJDropdownComponent,
|
|
46
46
|
MJClickableDirective,
|
|
47
|
+
MJButtonDirective,
|
|
47
48
|
MJEmptyStateComponent,
|
|
48
49
|
ExplorerSettingsModule,
|
|
49
50
|
SharedGenericModule,
|
|
@@ -67,6 +68,7 @@ export class ShellModule {
|
|
|
67
68
|
FormsModule,
|
|
68
69
|
MJDropdownComponent,
|
|
69
70
|
MJClickableDirective,
|
|
71
|
+
MJButtonDirective,
|
|
70
72
|
MJEmptyStateComponent,
|
|
71
73
|
ExplorerSettingsModule,
|
|
72
74
|
SharedGenericModule,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"shell.module.js","sourceRoot":"","sources":["../../../src/lib/shell/shell.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,4CAA4C,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,wBAAwB,EAAE,MAAM,kDAAkD,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,8CAA8C,CAAC;AACvF,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AACnF,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAC9E,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;
|
|
1
|
+
{"version":3,"file":"shell.module.js","sourceRoot":"","sources":["../../../src/lib/shell/shell.module.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,QAAQ,EAAE,MAAM,eAAe,CAAC;AACzC,OAAO,EAAE,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAC/C,OAAO,EAAE,WAAW,EAAE,MAAM,gBAAgB,CAAC;AAC7C,OAAO,EAAE,cAAc,EAAE,MAAM,mBAAmB,CAAC;AACnD,OAAO,EAAE,oBAAoB,EAAE,MAAM,4CAA4C,CAAC;AAClF,OAAO,EAAE,eAAe,EAAE,MAAM,uCAAuC,CAAC;AACxE,OAAO,EAAE,qBAAqB,EAAE,MAAM,2CAA2C,CAAC;AAClF,OAAO,EAAE,wBAAwB,EAAE,MAAM,kDAAkD,CAAC;AAC5F,OAAO,EAAE,uBAAuB,EAAE,MAAM,8CAA8C,CAAC;AACvF,OAAO,EAAE,uBAAuB,EAAE,MAAM,sCAAsC,CAAC;AAC/E,OAAO,EAAE,qBAAqB,EAAE,MAAM,4CAA4C,CAAC;AACnF,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAC9E,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,EAAE,mBAAmB,EAAE,oBAAoB,EAAE,iBAAiB,EAAE,qBAAqB,EAAE,MAAM,kCAAkC,CAAC;AACvI,OAAO,EAAE,YAAY,EAAE,MAAM,2BAA2B,CAAC;;AA8BzD,MAAM,OAAO,WAAW;qGAAX,WAAW;4DAAX,WAAW;iEAPX;YACT,qBAAqB;SACtB,YAZC,YAAY;YACZ,WAAW;YACX,mBAAmB;YAGnB,qBAAqB;YACrB,sBAAsB;YACtB,mBAAmB;YACnB,YAAY;;iFASH,WAAW;cA5BvB,QAAQ;eAAC;gBACR,YAAY,EAAE;oBACZ,cAAc;oBACd,oBAAoB;oBACpB,eAAe;oBACf,qBAAqB;oBACrB,wBAAwB;oBACxB,uBAAuB;oBACvB,uBAAuB;iBACxB;gBACD,OAAO,EAAE;oBACP,YAAY;oBACZ,WAAW;oBACX,mBAAmB;oBACnB,oBAAoB;oBACpB,iBAAiB;oBACjB,qBAAqB;oBACrB,sBAAsB;oBACtB,mBAAmB;oBACnB,YAAY;iBACb;gBACD,SAAS,EAAE;oBACT,qBAAqB;iBACtB;gBACD,OAAO,EAAE;oBACP,cAAc;iBACf;aACF;;wFACY,WAAW,mBA1BpB,cAAc;QACd,oBAAoB;QACpB,eAAe;QACf,qBAAqB;QACrB,wBAAwB;QACxB,uBAAuB;QACvB,uBAAuB,aAGvB,YAAY;QACZ,WAAW;QACX,mBAAmB;QACnB,oBAAoB;QACpB,iBAAiB;QACjB,qBAAqB;QACrB,sBAAsB;QACtB,mBAAmB;QACnB,YAAY,aAMZ,cAAc","sourcesContent":["import { NgModule } from '@angular/core';\nimport { CommonModule } from '@angular/common';\nimport { FormsModule } from '@angular/forms';\nimport { ShellComponent } from './shell.component';\nimport { AppSwitcherComponent } from './components/header/app-switcher.component';\nimport { AppNavComponent } from './components/header/app-nav.component';\nimport { TabContainerComponent } from './components/tabs/tab-container.component';\nimport { AppAccessDialogComponent } from './components/dialogs/app-access-dialog.component';\nimport { CommandPaletteComponent } from '../command-palette/command-palette.component';\nimport { OmnibarPaletteComponent } from '../omnibar/omnibar-palette.component';\nimport { CommandPaletteService } from '../command-palette/command-palette.service';\nimport { ExplorerSettingsModule } from '@memberjunction/ng-explorer-settings';\nimport { SharedGenericModule } from '@memberjunction/ng-shared-generic';\nimport { MJDropdownComponent, MJClickableDirective, MJButtonDirective, MJEmptyStateComponent } from '@memberjunction/ng-ui-components';\nimport { SearchModule } from '@memberjunction/ng-search';\n\n@NgModule({\n declarations: [\n ShellComponent,\n AppSwitcherComponent,\n AppNavComponent,\n TabContainerComponent,\n AppAccessDialogComponent,\n CommandPaletteComponent,\n OmnibarPaletteComponent\n ],\n imports: [\n CommonModule,\n FormsModule,\n MJDropdownComponent,\n MJClickableDirective,\n MJButtonDirective,\n MJEmptyStateComponent,\n ExplorerSettingsModule,\n SharedGenericModule,\n SearchModule\n ],\n providers: [\n CommandPaletteService\n ],\n exports: [\n ShellComponent\n ]\n})\nexport class ShellModule { }\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-explorer-core",
|
|
3
|
-
"version": "5.
|
|
3
|
+
"version": "5.51.0",
|
|
4
4
|
"description": "MemberJunction Explorer: Core Angular Components",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
"@angular/compiler": "21.1.3",
|
|
21
21
|
"@angular/compiler-cli": "21.1.3",
|
|
22
22
|
"sass": "^1.97.3",
|
|
23
|
-
"@memberjunction/ng-test-utils": "5.
|
|
23
|
+
"@memberjunction/ng-test-utils": "5.51.0"
|
|
24
24
|
},
|
|
25
25
|
"peerDependencies": {
|
|
26
26
|
"@angular/common": "21.1.3",
|
|
@@ -33,55 +33,55 @@
|
|
|
33
33
|
"@angular/cdk": "21.1.3",
|
|
34
34
|
"@angular/platform-browser": "21.1.3",
|
|
35
35
|
"@auth0/auth0-angular": "^2.6.0",
|
|
36
|
-
"@memberjunction/ai-core-plus": "5.
|
|
37
|
-
"@memberjunction/ai-engine-base": "5.
|
|
38
|
-
"@memberjunction/communication-types": "5.
|
|
39
|
-
"@memberjunction/core": "5.
|
|
40
|
-
"@memberjunction/core-entities": "5.
|
|
41
|
-
"@memberjunction/entity-communications-client": "5.
|
|
42
|
-
"@memberjunction/export-engine": "5.
|
|
43
|
-
"@memberjunction/global": "5.
|
|
44
|
-
"@memberjunction/graphql-dataprovider": "5.
|
|
45
|
-
"@memberjunction/interactive-component-types": "5.
|
|
46
|
-
"@memberjunction/lists-base": "5.
|
|
47
|
-
"@memberjunction/theme-engine": "5.
|
|
48
|
-
"@memberjunction/ng-ai-test-harness": "5.
|
|
49
|
-
"@memberjunction/ng-artifacts": "5.
|
|
50
|
-
"@memberjunction/ng-auth-services": "5.
|
|
51
|
-
"@memberjunction/ng-base-application": "5.
|
|
52
|
-
"@memberjunction/ng-base-forms": "5.
|
|
53
|
-
"@memberjunction/ng-base-types": "5.
|
|
54
|
-
"@memberjunction/ng-composer": "5.
|
|
55
|
-
"@memberjunction/ng-container-directives": "5.
|
|
56
|
-
"@memberjunction/ng-conversations": "5.
|
|
57
|
-
"@memberjunction/ng-dashboard-viewer": "5.
|
|
58
|
-
"@memberjunction/ng-dashboards": "5.
|
|
59
|
-
"@memberjunction/ng-entity-form-dialog": "5.
|
|
60
|
-
"@memberjunction/ng-entity-permissions": "5.
|
|
61
|
-
"@memberjunction/ng-entity-viewer": "5.
|
|
62
|
-
"@memberjunction/ng-explorer-settings": "5.
|
|
63
|
-
"@memberjunction/ng-export-service": "5.
|
|
64
|
-
"@memberjunction/ng-feedback": "5.
|
|
65
|
-
"@memberjunction/ng-file-storage": "5.
|
|
66
|
-
"@memberjunction/ng-generic-dialog": "5.
|
|
67
|
-
"@memberjunction/ng-list-detail-grid": "5.
|
|
68
|
-
"@memberjunction/ng-list-management": "5.
|
|
69
|
-
"@memberjunction/ng-markdown": "5.
|
|
70
|
-
"@memberjunction/ng-mj-livekit-room": "5.
|
|
71
|
-
"@memberjunction/ng-notifications": "5.
|
|
72
|
-
"@memberjunction/ng-pagination": "5.
|
|
73
|
-
"@memberjunction/ng-query-viewer": "5.
|
|
74
|
-
"@memberjunction/ng-record-changes": "5.
|
|
75
|
-
"@memberjunction/ng-record-selector": "5.
|
|
76
|
-
"@memberjunction/ng-record-tags": "5.
|
|
77
|
-
"@memberjunction/ng-resource-permissions": "5.
|
|
78
|
-
"@memberjunction/ng-search": "5.
|
|
79
|
-
"@memberjunction/ng-shared": "5.
|
|
80
|
-
"@memberjunction/ng-shared-generic": "5.
|
|
81
|
-
"@memberjunction/ng-ui-components": "5.
|
|
82
|
-
"@memberjunction/ng-user-avatar": "5.
|
|
83
|
-
"@memberjunction/ng-word-cloud": "5.
|
|
84
|
-
"@memberjunction/templates-base-types": "5.
|
|
36
|
+
"@memberjunction/ai-core-plus": "5.51.0",
|
|
37
|
+
"@memberjunction/ai-engine-base": "5.51.0",
|
|
38
|
+
"@memberjunction/communication-types": "5.51.0",
|
|
39
|
+
"@memberjunction/core": "5.51.0",
|
|
40
|
+
"@memberjunction/core-entities": "5.51.0",
|
|
41
|
+
"@memberjunction/entity-communications-client": "5.51.0",
|
|
42
|
+
"@memberjunction/export-engine": "5.51.0",
|
|
43
|
+
"@memberjunction/global": "5.51.0",
|
|
44
|
+
"@memberjunction/graphql-dataprovider": "5.51.0",
|
|
45
|
+
"@memberjunction/interactive-component-types": "5.51.0",
|
|
46
|
+
"@memberjunction/lists-base": "5.51.0",
|
|
47
|
+
"@memberjunction/theme-engine": "5.51.0",
|
|
48
|
+
"@memberjunction/ng-ai-test-harness": "5.51.0",
|
|
49
|
+
"@memberjunction/ng-artifacts": "5.51.0",
|
|
50
|
+
"@memberjunction/ng-auth-services": "5.51.0",
|
|
51
|
+
"@memberjunction/ng-base-application": "5.51.0",
|
|
52
|
+
"@memberjunction/ng-base-forms": "5.51.0",
|
|
53
|
+
"@memberjunction/ng-base-types": "5.51.0",
|
|
54
|
+
"@memberjunction/ng-composer": "5.51.0",
|
|
55
|
+
"@memberjunction/ng-container-directives": "5.51.0",
|
|
56
|
+
"@memberjunction/ng-conversations": "5.51.0",
|
|
57
|
+
"@memberjunction/ng-dashboard-viewer": "5.51.0",
|
|
58
|
+
"@memberjunction/ng-dashboards": "5.51.0",
|
|
59
|
+
"@memberjunction/ng-entity-form-dialog": "5.51.0",
|
|
60
|
+
"@memberjunction/ng-entity-permissions": "5.51.0",
|
|
61
|
+
"@memberjunction/ng-entity-viewer": "5.51.0",
|
|
62
|
+
"@memberjunction/ng-explorer-settings": "5.51.0",
|
|
63
|
+
"@memberjunction/ng-export-service": "5.51.0",
|
|
64
|
+
"@memberjunction/ng-feedback": "5.51.0",
|
|
65
|
+
"@memberjunction/ng-file-storage": "5.51.0",
|
|
66
|
+
"@memberjunction/ng-generic-dialog": "5.51.0",
|
|
67
|
+
"@memberjunction/ng-list-detail-grid": "5.51.0",
|
|
68
|
+
"@memberjunction/ng-list-management": "5.51.0",
|
|
69
|
+
"@memberjunction/ng-markdown": "5.51.0",
|
|
70
|
+
"@memberjunction/ng-mj-livekit-room": "5.51.0",
|
|
71
|
+
"@memberjunction/ng-notifications": "5.51.0",
|
|
72
|
+
"@memberjunction/ng-pagination": "5.51.0",
|
|
73
|
+
"@memberjunction/ng-query-viewer": "5.51.0",
|
|
74
|
+
"@memberjunction/ng-record-changes": "5.51.0",
|
|
75
|
+
"@memberjunction/ng-record-selector": "5.51.0",
|
|
76
|
+
"@memberjunction/ng-record-tags": "5.51.0",
|
|
77
|
+
"@memberjunction/ng-resource-permissions": "5.51.0",
|
|
78
|
+
"@memberjunction/ng-search": "5.51.0",
|
|
79
|
+
"@memberjunction/ng-shared": "5.51.0",
|
|
80
|
+
"@memberjunction/ng-shared-generic": "5.51.0",
|
|
81
|
+
"@memberjunction/ng-ui-components": "5.51.0",
|
|
82
|
+
"@memberjunction/ng-user-avatar": "5.51.0",
|
|
83
|
+
"@memberjunction/ng-word-cloud": "5.51.0",
|
|
84
|
+
"@memberjunction/templates-base-types": "5.51.0",
|
|
85
85
|
"golden-layout": "^2.6.0",
|
|
86
86
|
"rxjs": "^7.8.2",
|
|
87
87
|
"tslib": "^2.8.1"
|