@memberjunction/ng-explorer-settings 3.3.0 → 3.4.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/account-info/account-info.component.d.ts +23 -0
- package/dist/lib/account-info/account-info.component.d.ts.map +1 -0
- package/dist/lib/account-info/account-info.component.js +155 -0
- package/dist/lib/account-info/account-info.component.js.map +1 -0
- package/dist/lib/appearance-settings/appearance-settings.component.d.ts +15 -0
- package/dist/lib/appearance-settings/appearance-settings.component.d.ts.map +1 -0
- package/dist/lib/appearance-settings/appearance-settings.component.js +79 -0
- package/dist/lib/appearance-settings/appearance-settings.component.js.map +1 -0
- package/dist/lib/application-settings/application-settings.component.d.ts +113 -0
- package/dist/lib/application-settings/application-settings.component.d.ts.map +1 -0
- package/dist/lib/application-settings/application-settings.component.js +520 -0
- package/dist/lib/application-settings/application-settings.component.js.map +1 -0
- package/dist/lib/general-settings/general-settings.component.d.ts +14 -0
- package/dist/lib/general-settings/general-settings.component.d.ts.map +1 -0
- package/dist/lib/general-settings/general-settings.component.js +50 -0
- package/dist/lib/general-settings/general-settings.component.js.map +1 -0
- package/dist/lib/module.d.ts +31 -28
- package/dist/lib/module.d.ts.map +1 -1
- package/dist/lib/module.js +64 -33
- package/dist/lib/module.js.map +1 -1
- package/dist/lib/settings/settings.component.d.ts +5 -14
- package/dist/lib/settings/settings.component.d.ts.map +1 -1
- package/dist/lib/settings/settings.component.js +141 -417
- package/dist/lib/settings/settings.component.js.map +1 -1
- package/dist/lib/sql-logging/sql-logging.component.d.ts +1 -1
- package/package.json +19 -20
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Component } from '@angular/core';
|
|
2
|
+
import * as i0 from "@angular/core";
|
|
3
|
+
import * as i1 from "../shared/settings-card.component";
|
|
4
|
+
import * as i2 from "../user-profile-settings/user-profile-settings.component";
|
|
5
|
+
import * as i3 from "../account-info/account-info.component";
|
|
6
|
+
/**
|
|
7
|
+
* Container component for the General settings tab.
|
|
8
|
+
* Wraps Profile Information and Account Info sections.
|
|
9
|
+
*/
|
|
10
|
+
export class GeneralSettingsComponent {
|
|
11
|
+
// Section expansion state
|
|
12
|
+
ProfileExpanded = true;
|
|
13
|
+
AccountExpanded = true;
|
|
14
|
+
ToggleProfile() {
|
|
15
|
+
this.ProfileExpanded = !this.ProfileExpanded;
|
|
16
|
+
}
|
|
17
|
+
ToggleAccount() {
|
|
18
|
+
this.AccountExpanded = !this.AccountExpanded;
|
|
19
|
+
}
|
|
20
|
+
static ɵfac = function GeneralSettingsComponent_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || GeneralSettingsComponent)(); };
|
|
21
|
+
static ɵcmp = /*@__PURE__*/ i0.ɵɵdefineComponent({ type: GeneralSettingsComponent, selectors: [["mj-general-settings"]], decls: 12, vars: 2, consts: [[1, "general-settings"], [1, "section-title"], [1, "section-description"], [1, "settings-grid"], ["title", "Profile Information", "icon", "fa-solid fa-user", 3, "toggle", "expanded"], [1, "card-content"], ["title", "Account Information", "icon", "fa-solid fa-id-card", 3, "toggle", "expanded"]], template: function GeneralSettingsComponent_Template(rf, ctx) { if (rf & 1) {
|
|
22
|
+
i0.ɵɵelementStart(0, "div", 0)(1, "h2", 1);
|
|
23
|
+
i0.ɵɵtext(2, "General Settings");
|
|
24
|
+
i0.ɵɵelementEnd();
|
|
25
|
+
i0.ɵɵelementStart(3, "p", 2);
|
|
26
|
+
i0.ɵɵtext(4, "Manage your profile and account information");
|
|
27
|
+
i0.ɵɵelementEnd();
|
|
28
|
+
i0.ɵɵelementStart(5, "div", 3)(6, "mj-settings-card", 4);
|
|
29
|
+
i0.ɵɵlistener("toggle", function GeneralSettingsComponent_Template_mj_settings_card_toggle_6_listener() { return ctx.ToggleProfile(); });
|
|
30
|
+
i0.ɵɵelementStart(7, "div", 5);
|
|
31
|
+
i0.ɵɵelement(8, "mj-user-profile-settings");
|
|
32
|
+
i0.ɵɵelementEnd()();
|
|
33
|
+
i0.ɵɵelementStart(9, "mj-settings-card", 6);
|
|
34
|
+
i0.ɵɵlistener("toggle", function GeneralSettingsComponent_Template_mj_settings_card_toggle_9_listener() { return ctx.ToggleAccount(); });
|
|
35
|
+
i0.ɵɵelementStart(10, "div", 5);
|
|
36
|
+
i0.ɵɵelement(11, "mj-account-info");
|
|
37
|
+
i0.ɵɵelementEnd()()()();
|
|
38
|
+
} if (rf & 2) {
|
|
39
|
+
i0.ɵɵadvance(6);
|
|
40
|
+
i0.ɵɵproperty("expanded", ctx.ProfileExpanded);
|
|
41
|
+
i0.ɵɵadvance(3);
|
|
42
|
+
i0.ɵɵproperty("expanded", ctx.AccountExpanded);
|
|
43
|
+
} }, dependencies: [i1.SettingsCardComponent, i2.UserProfileSettingsComponent, i3.AccountInfoComponent], styles: [".general-settings[_ngcontent-%COMP%] {\n padding: 0;\n}\n\n.section-title[_ngcontent-%COMP%] {\n font-size: 1.5rem;\n font-weight: 600;\n margin: 0 0 0.5rem 0;\n color: var(--mj-text-primary, #1a1a1a);\n}\n\n.section-description[_ngcontent-%COMP%] {\n font-size: 0.875rem;\n color: var(--mj-text-secondary, #666);\n margin: 0 0 1.5rem 0;\n}\n\n.settings-grid[_ngcontent-%COMP%] {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\n.card-content[_ngcontent-%COMP%] {\n padding: 0.5rem 0;\n}"] });
|
|
44
|
+
}
|
|
45
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(GeneralSettingsComponent, [{
|
|
46
|
+
type: Component,
|
|
47
|
+
args: [{ selector: 'mj-general-settings', template: "<div class=\"general-settings\">\n <h2 class=\"section-title\">General Settings</h2>\n <p class=\"section-description\">Manage your profile and account information</p>\n\n <div class=\"settings-grid\">\n <!-- Profile Information Section -->\n <mj-settings-card\n title=\"Profile Information\"\n icon=\"fa-solid fa-user\"\n [expanded]=\"ProfileExpanded\"\n (toggle)=\"ToggleProfile()\"\n >\n <div class=\"card-content\">\n <mj-user-profile-settings></mj-user-profile-settings>\n </div>\n </mj-settings-card>\n\n <!-- Account Information Section -->\n <mj-settings-card\n title=\"Account Information\"\n icon=\"fa-solid fa-id-card\"\n [expanded]=\"AccountExpanded\"\n (toggle)=\"ToggleAccount()\"\n >\n <div class=\"card-content\">\n <mj-account-info></mj-account-info>\n </div>\n </mj-settings-card>\n </div>\n</div>\n", styles: [".general-settings {\n padding: 0;\n}\n\n.section-title {\n font-size: 1.5rem;\n font-weight: 600;\n margin: 0 0 0.5rem 0;\n color: var(--mj-text-primary, #1a1a1a);\n}\n\n.section-description {\n font-size: 0.875rem;\n color: var(--mj-text-secondary, #666);\n margin: 0 0 1.5rem 0;\n}\n\n.settings-grid {\n display: flex;\n flex-direction: column;\n gap: 1rem;\n}\n\n.card-content {\n padding: 0.5rem 0;\n}\n"] }]
|
|
48
|
+
}], null, null); })();
|
|
49
|
+
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassDebugInfo(GeneralSettingsComponent, { className: "GeneralSettingsComponent", filePath: "src/lib/general-settings/general-settings.component.ts", lineNumber: 12 }); })();
|
|
50
|
+
//# sourceMappingURL=general-settings.component.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"general-settings.component.js","sourceRoot":"","sources":["../../../src/lib/general-settings/general-settings.component.ts","../../../src/lib/general-settings/general-settings.component.html"],"names":[],"mappings":"AAAA,OAAO,EAAE,SAAS,EAAE,MAAM,eAAe,CAAC;;;;;AAE1C;;;GAGG;AAMH,MAAM,OAAO,wBAAwB;IACnC,0BAA0B;IAC1B,eAAe,GAAG,IAAI,CAAC;IACvB,eAAe,GAAG,IAAI,CAAC;IAEvB,aAAa;QACX,IAAI,CAAC,eAAe,GAAG,CAAC,IAAI,CAAC,eAAe,CAAC;IAC/C,CAAC;IAED,aAAa;QACX,IAAI,CAAC,eAAe,GAAG,CAAC,IAAI,CAAC,eAAe,CAAC;IAC/C,CAAC;kHAXU,wBAAwB;6DAAxB,wBAAwB;YCVnC,AADF,8BAA8B,YACF;YAAA,gCAAgB;YAAA,iBAAK;YAC/C,4BAA+B;YAAA,2DAA2C;YAAA,iBAAI;YAI5E,AAFF,8BAA2B,0BAOxB;YADC,iHAAU,mBAAe,IAAC;YAE1B,8BAA0B;YACxB,2CAAqD;YAEzD,AADE,iBAAM,EACW;YAGnB,2CAKC;YADC,iHAAU,mBAAe,IAAC;YAE1B,+BAA0B;YACxB,mCAAmC;YAI3C,AADE,AADE,AADE,iBAAM,EACW,EACf,EACF;;YApBA,eAA4B;YAA5B,8CAA4B;YAY5B,eAA4B;YAA5B,8CAA4B;;;iFDVrB,wBAAwB;cALpC,SAAS;2BACE,qBAAqB;;kFAIpB,wBAAwB"}
|
package/dist/lib/module.d.ts
CHANGED
|
@@ -1,35 +1,38 @@
|
|
|
1
1
|
import * as i0 from "@angular/core";
|
|
2
2
|
import * as i1 from "./settings/settings.component";
|
|
3
|
-
import * as i2 from "./
|
|
4
|
-
import * as i3 from "./user-
|
|
5
|
-
import * as i4 from "./
|
|
6
|
-
import * as i5 from "./
|
|
7
|
-
import * as i6 from "./
|
|
8
|
-
import * as i7 from "./
|
|
9
|
-
import * as i8 from "./
|
|
10
|
-
import * as i9 from "./
|
|
11
|
-
import * as i10 from "./
|
|
12
|
-
import * as i11 from "./
|
|
13
|
-
import * as i12 from "./
|
|
14
|
-
import * as i13 from "./
|
|
15
|
-
import * as i14 from "
|
|
16
|
-
import * as i15 from "
|
|
17
|
-
import * as i16 from "
|
|
18
|
-
import * as i17 from "
|
|
19
|
-
import * as i18 from "@
|
|
20
|
-
import * as i19 from "@
|
|
21
|
-
import * as i20 from "@
|
|
22
|
-
import * as i21 from "@memberjunction/ng-
|
|
23
|
-
import * as i22 from "@memberjunction/ng-
|
|
24
|
-
import * as i23 from "@memberjunction/ng-
|
|
25
|
-
import * as i24 from "@memberjunction/ng-
|
|
26
|
-
import * as i25 from "@memberjunction/ng-
|
|
27
|
-
import * as i26 from "
|
|
28
|
-
import * as i27 from "@memberjunction/ng-
|
|
29
|
-
import * as i28 from "@
|
|
3
|
+
import * as i2 from "./user-profile-settings/user-profile-settings.component";
|
|
4
|
+
import * as i3 from "./user-app-config/user-app-config.component";
|
|
5
|
+
import * as i4 from "./notification-preferences/notification-preferences.component";
|
|
6
|
+
import * as i5 from "./general-settings/general-settings.component";
|
|
7
|
+
import * as i6 from "./account-info/account-info.component";
|
|
8
|
+
import * as i7 from "./application-settings/application-settings.component";
|
|
9
|
+
import * as i8 from "./appearance-settings/appearance-settings.component";
|
|
10
|
+
import * as i9 from "./sql-logging/sql-logging.component";
|
|
11
|
+
import * as i10 from "./user-management/user-management.component";
|
|
12
|
+
import * as i11 from "./role-management/role-management.component";
|
|
13
|
+
import * as i12 from "./application-management/application-management.component";
|
|
14
|
+
import * as i13 from "./entity-permissions/entity-permissions.component";
|
|
15
|
+
import * as i14 from "./role-management/role-dialog/role-dialog.component";
|
|
16
|
+
import * as i15 from "./user-management/user-dialog/user-dialog.component";
|
|
17
|
+
import * as i16 from "./entity-permissions/permission-dialog/permission-dialog.component";
|
|
18
|
+
import * as i17 from "./application-management/application-dialog/application-dialog.component";
|
|
19
|
+
import * as i18 from "@angular/common";
|
|
20
|
+
import * as i19 from "@angular/forms";
|
|
21
|
+
import * as i20 from "@angular/cdk/drag-drop";
|
|
22
|
+
import * as i21 from "@memberjunction/ng-compare-records";
|
|
23
|
+
import * as i22 from "@memberjunction/ng-container-directives";
|
|
24
|
+
import * as i23 from "@memberjunction/ng-entity-permissions";
|
|
25
|
+
import * as i24 from "@memberjunction/ng-tabstrip";
|
|
26
|
+
import * as i25 from "@memberjunction/ng-entity-form-dialog";
|
|
27
|
+
import * as i26 from "@memberjunction/ng-simple-record-list";
|
|
28
|
+
import * as i27 from "@memberjunction/ng-join-grid";
|
|
29
|
+
import * as i28 from "@memberjunction/ng-code-editor";
|
|
30
|
+
import * as i29 from "./shared/shared-settings.module";
|
|
31
|
+
import * as i30 from "@memberjunction/ng-shared-generic";
|
|
32
|
+
import * as i31 from "@progress/kendo-angular-dialog";
|
|
30
33
|
export declare class ExplorerSettingsModule {
|
|
31
34
|
static ɵfac: i0.ɵɵFactoryDeclaration<ExplorerSettingsModule, never>;
|
|
32
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<ExplorerSettingsModule, [typeof i1.SettingsComponent, typeof i2.
|
|
35
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<ExplorerSettingsModule, [typeof i1.SettingsComponent, typeof i2.UserProfileSettingsComponent, typeof i3.UserAppConfigComponent, typeof i4.NotificationPreferencesComponent, typeof i5.GeneralSettingsComponent, typeof i6.AccountInfoComponent, typeof i7.ApplicationSettingsComponent, typeof i8.AppearanceSettingsComponent, typeof i9.SqlLoggingComponent, typeof i10.UserManagementComponent, typeof i11.RoleManagementComponent, typeof i12.ApplicationManagementComponent, typeof i13.EntityPermissionsComponent, typeof i14.RoleDialogComponent, typeof i15.UserDialogComponent, typeof i16.PermissionDialogComponent, typeof i17.ApplicationDialogComponent], [typeof i18.CommonModule, typeof i19.FormsModule, typeof i19.ReactiveFormsModule, typeof i20.DragDropModule, typeof i21.CompareRecordsModule, typeof i22.ContainerDirectivesModule, typeof i23.EntityPermissionsModule, typeof i24.MJTabStripModule, typeof i25.EntityFormDialogModule, typeof i26.SimpleRecordListModule, typeof i27.JoinGridModule, typeof i28.CodeEditorModule, typeof i29.SharedSettingsModule, typeof i30.SharedGenericModule, typeof i31.WindowModule], [typeof i1.SettingsComponent, typeof i2.UserProfileSettingsComponent, typeof i3.UserAppConfigComponent, typeof i4.NotificationPreferencesComponent, typeof i5.GeneralSettingsComponent, typeof i6.AccountInfoComponent, typeof i7.ApplicationSettingsComponent, typeof i8.AppearanceSettingsComponent, typeof i9.SqlLoggingComponent, typeof i10.UserManagementComponent, typeof i11.RoleManagementComponent, typeof i12.ApplicationManagementComponent, typeof i13.EntityPermissionsComponent, typeof i14.RoleDialogComponent, typeof i15.UserDialogComponent, typeof i16.PermissionDialogComponent, typeof i17.ApplicationDialogComponent]>;
|
|
33
36
|
static ɵinj: i0.ɵɵInjectorDeclaration<ExplorerSettingsModule>;
|
|
34
37
|
}
|
|
35
38
|
//# sourceMappingURL=module.d.ts.map
|
package/dist/lib/module.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/lib/module.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"module.d.ts","sourceRoot":"","sources":["../../src/lib/module.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+CA,qBAmEa,sBAAsB;yCAAtB,sBAAsB;0CAAtB,sBAAsB;0CAAtB,sBAAsB;CAAI"}
|
package/dist/lib/module.js
CHANGED
|
@@ -7,7 +7,6 @@ import { CompareRecordsModule } from '@memberjunction/ng-compare-records';
|
|
|
7
7
|
import { ContainerDirectivesModule } from '@memberjunction/ng-container-directives';
|
|
8
8
|
import { EntityPermissionsModule } from '@memberjunction/ng-entity-permissions';
|
|
9
9
|
import { EntityFormDialogModule } from '@memberjunction/ng-entity-form-dialog';
|
|
10
|
-
import { UserViewGridModule } from '@memberjunction/ng-user-view-grid';
|
|
11
10
|
import { SimpleRecordListModule } from '@memberjunction/ng-simple-record-list';
|
|
12
11
|
import { MJTabStripModule } from '@memberjunction/ng-tabstrip';
|
|
13
12
|
import { JoinGridModule } from '@memberjunction/ng-join-grid';
|
|
@@ -15,21 +14,28 @@ import { CodeEditorModule } from '@memberjunction/ng-code-editor';
|
|
|
15
14
|
import { SharedGenericModule } from '@memberjunction/ng-shared-generic';
|
|
16
15
|
// Shared module
|
|
17
16
|
import { SharedSettingsModule } from './shared/shared-settings.module';
|
|
18
|
-
// Main
|
|
17
|
+
// Main settings container
|
|
19
18
|
import { SettingsComponent } from './settings/settings.component';
|
|
19
|
+
// User-facing components
|
|
20
|
+
import { UserProfileSettingsComponent } from './user-profile-settings/user-profile-settings.component';
|
|
21
|
+
import { UserAppConfigComponent } from './user-app-config/user-app-config.component';
|
|
22
|
+
import { NotificationPreferencesComponent } from './notification-preferences/notification-preferences.component';
|
|
23
|
+
// New user settings components
|
|
24
|
+
import { GeneralSettingsComponent } from './general-settings/general-settings.component';
|
|
25
|
+
import { AccountInfoComponent } from './account-info/account-info.component';
|
|
26
|
+
import { ApplicationSettingsComponent } from './application-settings/application-settings.component';
|
|
27
|
+
import { AppearanceSettingsComponent } from './appearance-settings/appearance-settings.component';
|
|
28
|
+
// Admin components (used by Admin app dashboards)
|
|
20
29
|
import { SqlLoggingComponent } from './sql-logging/sql-logging.component';
|
|
21
30
|
import { UserManagementComponent } from './user-management/user-management.component';
|
|
22
31
|
import { RoleManagementComponent } from './role-management/role-management.component';
|
|
23
32
|
import { ApplicationManagementComponent } from './application-management/application-management.component';
|
|
24
33
|
import { EntityPermissionsComponent } from './entity-permissions/entity-permissions.component';
|
|
25
|
-
|
|
26
|
-
// Dialog components
|
|
34
|
+
// Admin dialog components
|
|
27
35
|
import { RoleDialogComponent } from './role-management/role-dialog/role-dialog.component';
|
|
28
36
|
import { UserDialogComponent } from './user-management/user-dialog/user-dialog.component';
|
|
29
37
|
import { PermissionDialogComponent } from './entity-permissions/permission-dialog/permission-dialog.component';
|
|
30
38
|
import { ApplicationDialogComponent } from './application-management/application-dialog/application-dialog.component';
|
|
31
|
-
import { UserAppConfigComponent } from './user-app-config/user-app-config.component';
|
|
32
|
-
import { NotificationPreferencesComponent } from './notification-preferences/notification-preferences.component';
|
|
33
39
|
import * as i0 from "@angular/core";
|
|
34
40
|
export class ExplorerSettingsModule {
|
|
35
41
|
static ɵfac = function ExplorerSettingsModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || ExplorerSettingsModule)(); };
|
|
@@ -43,7 +49,6 @@ export class ExplorerSettingsModule {
|
|
|
43
49
|
EntityPermissionsModule,
|
|
44
50
|
MJTabStripModule,
|
|
45
51
|
EntityFormDialogModule,
|
|
46
|
-
UserViewGridModule,
|
|
47
52
|
SimpleRecordListModule,
|
|
48
53
|
JoinGridModule,
|
|
49
54
|
CodeEditorModule,
|
|
@@ -55,21 +60,28 @@ export class ExplorerSettingsModule {
|
|
|
55
60
|
type: NgModule,
|
|
56
61
|
args: [{
|
|
57
62
|
declarations: [
|
|
58
|
-
// Main
|
|
63
|
+
// Main settings container
|
|
59
64
|
SettingsComponent,
|
|
65
|
+
// User-facing components
|
|
66
|
+
UserProfileSettingsComponent,
|
|
67
|
+
UserAppConfigComponent,
|
|
68
|
+
NotificationPreferencesComponent,
|
|
69
|
+
// New user settings components
|
|
70
|
+
GeneralSettingsComponent,
|
|
71
|
+
AccountInfoComponent,
|
|
72
|
+
ApplicationSettingsComponent,
|
|
73
|
+
AppearanceSettingsComponent,
|
|
74
|
+
// Admin components (used by Admin app dashboards)
|
|
60
75
|
SqlLoggingComponent,
|
|
61
76
|
UserManagementComponent,
|
|
62
77
|
RoleManagementComponent,
|
|
63
78
|
ApplicationManagementComponent,
|
|
64
79
|
EntityPermissionsComponent,
|
|
65
|
-
|
|
66
|
-
// Dialog components
|
|
80
|
+
// Admin dialog components
|
|
67
81
|
RoleDialogComponent,
|
|
68
82
|
UserDialogComponent,
|
|
69
83
|
PermissionDialogComponent,
|
|
70
|
-
ApplicationDialogComponent
|
|
71
|
-
UserAppConfigComponent,
|
|
72
|
-
NotificationPreferencesComponent
|
|
84
|
+
ApplicationDialogComponent
|
|
73
85
|
],
|
|
74
86
|
imports: [
|
|
75
87
|
CommonModule,
|
|
@@ -81,7 +93,6 @@ export class ExplorerSettingsModule {
|
|
|
81
93
|
EntityPermissionsModule,
|
|
82
94
|
MJTabStripModule,
|
|
83
95
|
EntityFormDialogModule,
|
|
84
|
-
UserViewGridModule,
|
|
85
96
|
SimpleRecordListModule,
|
|
86
97
|
JoinGridModule,
|
|
87
98
|
CodeEditorModule,
|
|
@@ -90,40 +101,54 @@ export class ExplorerSettingsModule {
|
|
|
90
101
|
WindowModule
|
|
91
102
|
],
|
|
92
103
|
exports: [
|
|
93
|
-
// Main
|
|
104
|
+
// Main settings container
|
|
94
105
|
SettingsComponent,
|
|
106
|
+
// User-facing components
|
|
107
|
+
UserProfileSettingsComponent,
|
|
108
|
+
UserAppConfigComponent,
|
|
109
|
+
NotificationPreferencesComponent,
|
|
110
|
+
// New user settings components
|
|
111
|
+
GeneralSettingsComponent,
|
|
112
|
+
AccountInfoComponent,
|
|
113
|
+
ApplicationSettingsComponent,
|
|
114
|
+
AppearanceSettingsComponent,
|
|
115
|
+
// Admin components (used by Admin app dashboards)
|
|
95
116
|
SqlLoggingComponent,
|
|
96
117
|
UserManagementComponent,
|
|
97
118
|
RoleManagementComponent,
|
|
98
119
|
ApplicationManagementComponent,
|
|
99
120
|
EntityPermissionsComponent,
|
|
100
|
-
|
|
101
|
-
// Dialog components
|
|
121
|
+
// Admin dialog components
|
|
102
122
|
RoleDialogComponent,
|
|
103
123
|
UserDialogComponent,
|
|
104
124
|
PermissionDialogComponent,
|
|
105
|
-
ApplicationDialogComponent
|
|
106
|
-
UserAppConfigComponent,
|
|
107
|
-
NotificationPreferencesComponent
|
|
125
|
+
ApplicationDialogComponent
|
|
108
126
|
]
|
|
109
127
|
}]
|
|
110
128
|
}], null, null); })();
|
|
111
129
|
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(ExplorerSettingsModule, { declarations: [
|
|
112
|
-
// Main
|
|
130
|
+
// Main settings container
|
|
113
131
|
SettingsComponent,
|
|
132
|
+
// User-facing components
|
|
133
|
+
UserProfileSettingsComponent,
|
|
134
|
+
UserAppConfigComponent,
|
|
135
|
+
NotificationPreferencesComponent,
|
|
136
|
+
// New user settings components
|
|
137
|
+
GeneralSettingsComponent,
|
|
138
|
+
AccountInfoComponent,
|
|
139
|
+
ApplicationSettingsComponent,
|
|
140
|
+
AppearanceSettingsComponent,
|
|
141
|
+
// Admin components (used by Admin app dashboards)
|
|
114
142
|
SqlLoggingComponent,
|
|
115
143
|
UserManagementComponent,
|
|
116
144
|
RoleManagementComponent,
|
|
117
145
|
ApplicationManagementComponent,
|
|
118
146
|
EntityPermissionsComponent,
|
|
119
|
-
|
|
120
|
-
// Dialog components
|
|
147
|
+
// Admin dialog components
|
|
121
148
|
RoleDialogComponent,
|
|
122
149
|
UserDialogComponent,
|
|
123
150
|
PermissionDialogComponent,
|
|
124
|
-
ApplicationDialogComponent,
|
|
125
|
-
UserAppConfigComponent,
|
|
126
|
-
NotificationPreferencesComponent], imports: [CommonModule,
|
|
151
|
+
ApplicationDialogComponent], imports: [CommonModule,
|
|
127
152
|
FormsModule,
|
|
128
153
|
ReactiveFormsModule,
|
|
129
154
|
DragDropModule,
|
|
@@ -132,26 +157,32 @@ export class ExplorerSettingsModule {
|
|
|
132
157
|
EntityPermissionsModule,
|
|
133
158
|
MJTabStripModule,
|
|
134
159
|
EntityFormDialogModule,
|
|
135
|
-
UserViewGridModule,
|
|
136
160
|
SimpleRecordListModule,
|
|
137
161
|
JoinGridModule,
|
|
138
162
|
CodeEditorModule,
|
|
139
163
|
SharedSettingsModule,
|
|
140
164
|
SharedGenericModule,
|
|
141
165
|
WindowModule], exports: [
|
|
142
|
-
// Main
|
|
166
|
+
// Main settings container
|
|
143
167
|
SettingsComponent,
|
|
168
|
+
// User-facing components
|
|
169
|
+
UserProfileSettingsComponent,
|
|
170
|
+
UserAppConfigComponent,
|
|
171
|
+
NotificationPreferencesComponent,
|
|
172
|
+
// New user settings components
|
|
173
|
+
GeneralSettingsComponent,
|
|
174
|
+
AccountInfoComponent,
|
|
175
|
+
ApplicationSettingsComponent,
|
|
176
|
+
AppearanceSettingsComponent,
|
|
177
|
+
// Admin components (used by Admin app dashboards)
|
|
144
178
|
SqlLoggingComponent,
|
|
145
179
|
UserManagementComponent,
|
|
146
180
|
RoleManagementComponent,
|
|
147
181
|
ApplicationManagementComponent,
|
|
148
182
|
EntityPermissionsComponent,
|
|
149
|
-
|
|
150
|
-
// Dialog components
|
|
183
|
+
// Admin dialog components
|
|
151
184
|
RoleDialogComponent,
|
|
152
185
|
UserDialogComponent,
|
|
153
186
|
PermissionDialogComponent,
|
|
154
|
-
ApplicationDialogComponent
|
|
155
|
-
UserAppConfigComponent,
|
|
156
|
-
NotificationPreferencesComponent] }); })();
|
|
187
|
+
ApplicationDialogComponent] }); })();
|
|
157
188
|
//# sourceMappingURL=module.js.map
|
package/dist/lib/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/lib/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,mBAAmB,EAAE,MAAM,gBAAgB,CAAC;AAClE,OAAO,EAAE,cAAc,EAAE,MAAM,wBAAwB,CAAC;AAExD,OAAO,EAAE,YAAY,EAAE,MAAM,gCAAgC,CAAC;AAE9D,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,yBAAyB,EAAE,MAAM,yCAAyC,CAAC;AACpF,OAAO,EAAE,uBAAuB,EAAE,MAAM,uCAAuC,CAAC;AAChF,OAAO,EAAE,sBAAsB,EAAE,MAAM,uCAAuC,CAAC;AAC/E,OAAO,EAAE,
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../../src/lib/module.ts"],"names":[],"mappings":"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"}
|
|
@@ -10,6 +10,8 @@ export interface SettingsTab {
|
|
|
10
10
|
component?: unknown;
|
|
11
11
|
badgeCount?: number;
|
|
12
12
|
badgeColor?: 'primary' | 'danger' | 'warning' | 'success';
|
|
13
|
+
disabled?: boolean;
|
|
14
|
+
description?: string;
|
|
13
15
|
}
|
|
14
16
|
export interface SettingsComponentState {
|
|
15
17
|
activeTab: string;
|
|
@@ -28,7 +30,6 @@ export declare class SettingsComponent extends BaseNavigationComponent implement
|
|
|
28
30
|
private location;
|
|
29
31
|
stateChange: EventEmitter<SettingsComponentState>;
|
|
30
32
|
activeTab: string;
|
|
31
|
-
advancedActiveTab: string;
|
|
32
33
|
searchTerm$: BehaviorSubject<string>;
|
|
33
34
|
isLoading: boolean;
|
|
34
35
|
error: string | null;
|
|
@@ -52,15 +53,12 @@ export declare class SettingsComponent extends BaseNavigationComponent implement
|
|
|
52
53
|
onSearchChange(event: Event): void;
|
|
53
54
|
toggleSection(sectionId: string): void;
|
|
54
55
|
isSectionExpanded(sectionId: string): boolean;
|
|
55
|
-
setAdvancedTab(tabId: string): void;
|
|
56
56
|
/**
|
|
57
57
|
* Filters searchable content based on search term
|
|
58
|
-
* Matches against labels, keywords, and descriptions
|
|
59
58
|
*/
|
|
60
59
|
private filterContent;
|
|
61
60
|
/**
|
|
62
61
|
* Navigates to a search result
|
|
63
|
-
* Switches to the correct tab and expands the relevant section
|
|
64
62
|
*/
|
|
65
63
|
navigateToSearchResult(result: SearchableItem): void;
|
|
66
64
|
/**
|
|
@@ -68,7 +66,7 @@ export declare class SettingsComponent extends BaseNavigationComponent implement
|
|
|
68
66
|
*/
|
|
69
67
|
clearSearch(): void;
|
|
70
68
|
/**
|
|
71
|
-
* Toggles the mobile navigation rail
|
|
69
|
+
* Toggles the mobile navigation rail
|
|
72
70
|
*/
|
|
73
71
|
toggleMobileNav(): void;
|
|
74
72
|
/**
|
|
@@ -80,22 +78,15 @@ export declare class SettingsComponent extends BaseNavigationComponent implement
|
|
|
80
78
|
*/
|
|
81
79
|
closeSettings(): void;
|
|
82
80
|
/**
|
|
83
|
-
* Handles tab change on mobile
|
|
81
|
+
* Handles tab change on mobile
|
|
84
82
|
*/
|
|
85
83
|
onMobileTabChange(tabId: string): void;
|
|
86
84
|
private handleResize;
|
|
87
85
|
private emitStateChange;
|
|
88
86
|
loadUserState(state: Partial<SettingsComponentState>): void;
|
|
89
|
-
/**
|
|
90
|
-
* Gets the icon for a tab by its ID
|
|
91
|
-
*/
|
|
92
|
-
getTabIconById(tabId: string): string;
|
|
93
|
-
/**
|
|
94
|
-
* Gets the label for a tab by its ID
|
|
95
|
-
*/
|
|
96
|
-
getTabLabelById(tabId: string): string;
|
|
97
87
|
getTabIcon(tab: SettingsTab): string;
|
|
98
88
|
getTabClass(tab: SettingsTab): string;
|
|
89
|
+
isTabDisabled(tab: SettingsTab): boolean;
|
|
99
90
|
static ɵfac: i0.ɵɵFactoryDeclaration<SettingsComponent, never>;
|
|
100
91
|
static ɵcmp: i0.ɵɵComponentDeclaration<SettingsComponent, "mj-settings", never, {}, { "stateChange": "stateChange"; }, never, never, false, never>;
|
|
101
92
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"settings.component.d.ts","sourceRoot":"","sources":["../../../src/lib/settings/settings.component.ts"],"names":[],"mappings":"AAAA,OAAO,EAAa,MAAM,EAAE,SAAS,EAAE,YAAY,EAAU,MAAM,eAAe,CAAC;AACnF,OAAO,EAAE,QAAQ,EAAE,MAAM,iBAAiB,CAAC;AAE3C,OAAO,EAAW,eAAe,EAAE,MAAM,MAAM,CAAC;AAEhD,OAAO,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;;AAEpE,MAAM,WAAW,WAAW;IAC1B,EAAE,EAAE,MAAM,CAAC;IACX,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,CAAC,EAAE,OAAO,CAAC;IACpB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,UAAU,CAAC,EAAE,SAAS,GAAG,QAAQ,GAAG,SAAS,GAAG,SAAS,CAAC;
|
|
1
|
+
{"version":3,"file":"settings.component.d.ts","sourceRoot":"","sources":["../../../src/lib/settings/settings.component.ts"],"names":[],"mappings":"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"}
|