@memberjunction/ng-base-forms 4.0.0 → 4.2.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/base-form-component.d.ts +103 -215
- package/dist/lib/base-form-component.d.ts.map +1 -1
- package/dist/lib/base-form-component.js +384 -541
- package/dist/lib/base-form-component.js.map +1 -1
- package/dist/lib/container/record-form-container.component.d.ts +165 -0
- package/dist/lib/container/record-form-container.component.d.ts.map +1 -0
- package/dist/lib/container/record-form-container.component.js +534 -0
- package/dist/lib/container/record-form-container.component.js.map +1 -0
- package/dist/lib/explorer-entity-data-grid.component.d.ts +7 -5
- package/dist/lib/explorer-entity-data-grid.component.d.ts.map +1 -1
- package/dist/lib/explorer-entity-data-grid.component.js +15 -9
- package/dist/lib/explorer-entity-data-grid.component.js.map +1 -1
- package/dist/lib/field/form-field.component.d.ts +268 -0
- package/dist/lib/field/form-field.component.d.ts.map +1 -0
- package/dist/lib/field/form-field.component.js +1194 -0
- package/dist/lib/field/form-field.component.js.map +1 -0
- package/dist/lib/form-state.interface.d.ts +2 -0
- package/dist/lib/form-state.interface.d.ts.map +1 -1
- package/dist/lib/form-state.interface.js.map +1 -1
- package/dist/lib/form-state.service.d.ts +14 -0
- package/dist/lib/form-state.service.d.ts.map +1 -1
- package/dist/lib/form-state.service.js +19 -0
- package/dist/lib/form-state.service.js.map +1 -1
- package/dist/lib/panel/collapsible-panel.component.d.ts +139 -0
- package/dist/lib/panel/collapsible-panel.component.d.ts.map +1 -0
- package/dist/lib/panel/collapsible-panel.component.js +468 -0
- package/dist/lib/panel/collapsible-panel.component.js.map +1 -0
- package/dist/lib/toolbar/form-toolbar.component.d.ts +170 -0
- package/dist/lib/toolbar/form-toolbar.component.d.ts.map +1 -0
- package/dist/lib/toolbar/form-toolbar.component.js +830 -0
- package/dist/lib/toolbar/form-toolbar.component.js.map +1 -0
- package/dist/lib/types/form-events.d.ts +90 -0
- package/dist/lib/types/form-events.d.ts.map +1 -0
- package/dist/lib/types/form-events.js +45 -0
- package/dist/lib/types/form-events.js.map +1 -0
- package/dist/lib/types/form-types.d.ts +150 -0
- package/dist/lib/types/form-types.d.ts.map +1 -0
- package/dist/lib/types/form-types.js +12 -0
- package/dist/lib/types/form-types.js.map +1 -0
- package/dist/lib/types/navigation-events.d.ts +88 -0
- package/dist/lib/types/navigation-events.d.ts.map +1 -0
- package/dist/lib/types/navigation-events.js +2 -0
- package/dist/lib/types/navigation-events.js.map +1 -0
- package/dist/lib/types/toolbar-config.d.ts +66 -0
- package/dist/lib/types/toolbar-config.d.ts.map +1 -0
- package/dist/lib/types/toolbar-config.js +38 -0
- package/dist/lib/types/toolbar-config.js.map +1 -0
- package/dist/module.d.ts +28 -20
- package/dist/module.d.ts.map +1 -1
- package/dist/module.js +47 -74
- package/dist/module.js.map +1 -1
- package/dist/public-api.d.ts +20 -8
- package/dist/public-api.d.ts.map +1 -1
- package/dist/public-api.js +24 -9
- package/dist/public-api.js.map +1 -1
- package/package.json +20 -23
- package/README.md +0 -449
- package/dist/lib/base-field-component.d.ts +0 -152
- package/dist/lib/base-field-component.d.ts.map +0 -1
- package/dist/lib/base-field-component.js +0 -669
- package/dist/lib/base-field-component.js.map +0 -1
- package/dist/lib/base-form-context.d.ts +0 -23
- package/dist/lib/base-form-context.d.ts.map +0 -1
- package/dist/lib/base-form-context.js +0 -10
- package/dist/lib/base-form-context.js.map +0 -1
- package/dist/lib/collapsible-panel.component.d.ts +0 -68
- package/dist/lib/collapsible-panel.component.d.ts.map +0 -1
- package/dist/lib/collapsible-panel.component.js +0 -330
- package/dist/lib/collapsible-panel.component.js.map +0 -1
- package/dist/lib/form-section-controls.component.d.ts +0 -35
- package/dist/lib/form-section-controls.component.d.ts.map +0 -1
- package/dist/lib/form-section-controls.component.js +0 -273
- package/dist/lib/form-section-controls.component.js.map +0 -1
- package/dist/lib/link-field.component.d.ts +0 -62
- package/dist/lib/link-field.component.d.ts.map +0 -1
- package/dist/lib/link-field.component.js +0 -392
- package/dist/lib/link-field.component.js.map +0 -1
package/dist/module.js
CHANGED
|
@@ -1,112 +1,85 @@
|
|
|
1
1
|
import { NgModule } from '@angular/core';
|
|
2
2
|
import { CommonModule } from '@angular/common';
|
|
3
3
|
import { FormsModule } from '@angular/forms';
|
|
4
|
-
|
|
5
|
-
import {
|
|
6
|
-
import {
|
|
7
|
-
import {
|
|
8
|
-
import { DateInputsModule } from '@progress/kendo-angular-dateinputs';
|
|
9
|
-
import { DialogsModule } from '@progress/kendo-angular-dialog';
|
|
10
|
-
import { IndicatorsModule } from '@progress/kendo-angular-indicators';
|
|
11
|
-
import { RecordChangesModule } from '@memberjunction/ng-record-changes';
|
|
12
|
-
import { MJTabStripModule } from '@memberjunction/ng-tabstrip';
|
|
13
|
-
import { LinkDirectivesModule } from '@memberjunction/ng-link-directives';
|
|
14
|
-
import { EntityViewerModule } from '@memberjunction/ng-entity-viewer';
|
|
4
|
+
import { MjFormToolbarComponent } from './lib/toolbar/form-toolbar.component';
|
|
5
|
+
import { MjFormFieldComponent } from './lib/field/form-field.component';
|
|
6
|
+
import { MjCollapsiblePanelComponent } from './lib/panel/collapsible-panel.component';
|
|
7
|
+
import { MjRecordFormContainerComponent } from './lib/container/record-form-container.component';
|
|
15
8
|
import { SectionLoaderComponent } from './lib/section-loader-component';
|
|
16
|
-
import { MJFormField } from './lib/base-field-component';
|
|
17
|
-
import { ContainerDirectivesModule } from '@memberjunction/ng-container-directives';
|
|
18
|
-
import { MemberJunctionSharedModule } from '@memberjunction/ng-shared';
|
|
19
|
-
import { CodeEditorModule } from '@memberjunction/ng-code-editor';
|
|
20
|
-
// Markdown
|
|
21
|
-
import { MarkdownModule } from '@memberjunction/ng-markdown';
|
|
22
|
-
import { MJLinkField } from './lib/link-field.component';
|
|
23
|
-
import { FormSectionControlsComponent } from './lib/form-section-controls.component';
|
|
24
|
-
import { CollapsiblePanelComponent } from './lib/collapsible-panel.component';
|
|
25
9
|
import { ExplorerEntityDataGridComponent } from './lib/explorer-entity-data-grid.component';
|
|
10
|
+
import { RecordChangesModule } from '@memberjunction/ng-record-changes';
|
|
11
|
+
import { ListManagementModule } from '@memberjunction/ng-list-management';
|
|
12
|
+
import { EntityViewerModule } from '@memberjunction/ng-entity-viewer';
|
|
26
13
|
import * as i0 from "@angular/core";
|
|
14
|
+
/**
|
|
15
|
+
* BaseFormsModule - Form components and base classes for rendering and editing MemberJunction entity records.
|
|
16
|
+
*
|
|
17
|
+
* Provides:
|
|
18
|
+
* - **MjRecordFormContainerComponent** (`<mj-record-form-container>`): Top-level container
|
|
19
|
+
* with sticky toolbar, section state management, and content slots.
|
|
20
|
+
* - **MjFormToolbarComponent** (`<mj-form-toolbar>`): Configurable toolbar with read/edit mode
|
|
21
|
+
* actions, IS-A hierarchy breadcrumb, section controls, and inline delete dialog.
|
|
22
|
+
* - **MjCollapsiblePanelComponent** (`<mj-collapsible-panel>`): Collapsible section with
|
|
23
|
+
* drag-to-reorder, search filtering, and inherited/related variants.
|
|
24
|
+
* - **MjFormFieldComponent** (`<mj-form-field>`): Entity field renderer with clean read-only
|
|
25
|
+
* display and modern edit-mode inputs (native HTML with custom select and autocomplete).
|
|
26
|
+
* - **SectionLoaderComponent** (`<mj-form-section>`): Dynamic section loader via ClassFactory.
|
|
27
|
+
* - **ExplorerEntityDataGridComponent** (`<mj-explorer-entity-data-grid>`): Data grid wrapper
|
|
28
|
+
* for related entity sections with Navigate event support.
|
|
29
|
+
*
|
|
30
|
+
* All navigation actions are emitted as events via {@link FormNavigationEvent}.
|
|
31
|
+
* The host application subscribes and maps to its own routing system.
|
|
32
|
+
*/
|
|
27
33
|
export class BaseFormsModule {
|
|
28
34
|
static ɵfac = function BaseFormsModule_Factory(__ngFactoryType__) { return new (__ngFactoryType__ || BaseFormsModule)(); };
|
|
29
35
|
static ɵmod = /*@__PURE__*/ i0.ɵɵdefineNgModule({ type: BaseFormsModule });
|
|
30
36
|
static ɵinj = /*@__PURE__*/ i0.ɵɵdefineInjector({ imports: [CommonModule,
|
|
31
37
|
FormsModule,
|
|
32
|
-
MJTabStripModule,
|
|
33
38
|
RecordChangesModule,
|
|
34
|
-
|
|
35
|
-
InputsModule,
|
|
36
|
-
DateInputsModule,
|
|
37
|
-
DropDownsModule,
|
|
38
|
-
LinkDirectivesModule,
|
|
39
|
-
DialogsModule,
|
|
40
|
-
IndicatorsModule,
|
|
41
|
-
ContainerDirectivesModule,
|
|
42
|
-
MemberJunctionSharedModule,
|
|
43
|
-
CodeEditorModule,
|
|
44
|
-
MarkdownModule,
|
|
39
|
+
ListManagementModule,
|
|
45
40
|
EntityViewerModule] });
|
|
46
41
|
}
|
|
47
42
|
(() => { (typeof ngDevMode === "undefined" || ngDevMode) && i0.ɵsetClassMetadata(BaseFormsModule, [{
|
|
48
43
|
type: NgModule,
|
|
49
44
|
args: [{
|
|
50
45
|
declarations: [
|
|
46
|
+
MjFormToolbarComponent,
|
|
47
|
+
MjFormFieldComponent,
|
|
48
|
+
MjCollapsiblePanelComponent,
|
|
49
|
+
MjRecordFormContainerComponent,
|
|
51
50
|
SectionLoaderComponent,
|
|
52
|
-
MJFormField,
|
|
53
|
-
MJLinkField,
|
|
54
|
-
FormSectionControlsComponent,
|
|
55
|
-
CollapsiblePanelComponent,
|
|
56
51
|
ExplorerEntityDataGridComponent
|
|
57
52
|
],
|
|
58
53
|
imports: [
|
|
59
54
|
CommonModule,
|
|
60
55
|
FormsModule,
|
|
61
|
-
MJTabStripModule,
|
|
62
56
|
RecordChangesModule,
|
|
63
|
-
|
|
64
|
-
InputsModule,
|
|
65
|
-
DateInputsModule,
|
|
66
|
-
DropDownsModule,
|
|
67
|
-
LinkDirectivesModule,
|
|
68
|
-
DialogsModule,
|
|
69
|
-
IndicatorsModule,
|
|
70
|
-
ContainerDirectivesModule,
|
|
71
|
-
MemberJunctionSharedModule,
|
|
72
|
-
CodeEditorModule,
|
|
73
|
-
MarkdownModule,
|
|
57
|
+
ListManagementModule,
|
|
74
58
|
EntityViewerModule
|
|
75
59
|
],
|
|
76
60
|
exports: [
|
|
61
|
+
MjFormToolbarComponent,
|
|
62
|
+
MjFormFieldComponent,
|
|
63
|
+
MjCollapsiblePanelComponent,
|
|
64
|
+
MjRecordFormContainerComponent,
|
|
77
65
|
SectionLoaderComponent,
|
|
78
|
-
MJFormField,
|
|
79
|
-
MJLinkField,
|
|
80
|
-
FormSectionControlsComponent,
|
|
81
|
-
CollapsiblePanelComponent,
|
|
82
66
|
ExplorerEntityDataGridComponent
|
|
83
67
|
]
|
|
84
68
|
}]
|
|
85
69
|
}], null, null); })();
|
|
86
|
-
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(BaseFormsModule, { declarations: [
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
70
|
+
(function () { (typeof ngJitMode === "undefined" || ngJitMode) && i0.ɵɵsetNgModuleScope(BaseFormsModule, { declarations: [MjFormToolbarComponent,
|
|
71
|
+
MjFormFieldComponent,
|
|
72
|
+
MjCollapsiblePanelComponent,
|
|
73
|
+
MjRecordFormContainerComponent,
|
|
74
|
+
SectionLoaderComponent,
|
|
91
75
|
ExplorerEntityDataGridComponent], imports: [CommonModule,
|
|
92
76
|
FormsModule,
|
|
93
|
-
MJTabStripModule,
|
|
94
77
|
RecordChangesModule,
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
IndicatorsModule,
|
|
102
|
-
ContainerDirectivesModule,
|
|
103
|
-
MemberJunctionSharedModule,
|
|
104
|
-
CodeEditorModule,
|
|
105
|
-
MarkdownModule,
|
|
106
|
-
EntityViewerModule], exports: [SectionLoaderComponent,
|
|
107
|
-
MJFormField,
|
|
108
|
-
MJLinkField,
|
|
109
|
-
FormSectionControlsComponent,
|
|
110
|
-
CollapsiblePanelComponent,
|
|
78
|
+
ListManagementModule,
|
|
79
|
+
EntityViewerModule], exports: [MjFormToolbarComponent,
|
|
80
|
+
MjFormFieldComponent,
|
|
81
|
+
MjCollapsiblePanelComponent,
|
|
82
|
+
MjRecordFormContainerComponent,
|
|
83
|
+
SectionLoaderComponent,
|
|
111
84
|
ExplorerEntityDataGridComponent] }); })();
|
|
112
85
|
//# sourceMappingURL=module.js.map
|
package/dist/module.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"module.js","sourceRoot":"","sources":["../src/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;AAE7C,
|
|
1
|
+
{"version":3,"file":"module.js","sourceRoot":"","sources":["../src/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;AAE7C,OAAO,EAAE,sBAAsB,EAAE,MAAM,sCAAsC,CAAC;AAC9E,OAAO,EAAE,oBAAoB,EAAE,MAAM,kCAAkC,CAAC;AACxE,OAAO,EAAE,2BAA2B,EAAE,MAAM,yCAAyC,CAAC;AACtF,OAAO,EAAE,8BAA8B,EAAE,MAAM,iDAAiD,CAAC;AACjG,OAAO,EAAE,sBAAsB,EAAE,MAAM,gCAAgC,CAAC;AACxE,OAAO,EAAE,+BAA+B,EAAE,MAAM,2CAA2C,CAAC;AAC5F,OAAO,EAAE,mBAAmB,EAAE,MAAM,mCAAmC,CAAC;AACxE,OAAO,EAAE,oBAAoB,EAAE,MAAM,oCAAoC,CAAC;AAC1E,OAAO,EAAE,kBAAkB,EAAE,MAAM,kCAAkC,CAAC;;AAEtE;;;;;;;;;;;;;;;;;;GAkBG;AA0BH,MAAM,OAAO,eAAe;yGAAf,eAAe;4DAAf,eAAe;gEAfxB,YAAY;YACZ,WAAW;YACX,mBAAmB;YACnB,oBAAoB;YACpB,kBAAkB;;iFAWT,eAAe;cAzB3B,QAAQ;eAAC;gBACR,YAAY,EAAE;oBACZ,sBAAsB;oBACtB,oBAAoB;oBACpB,2BAA2B;oBAC3B,8BAA8B;oBAC9B,sBAAsB;oBACtB,+BAA+B;iBAChC;gBACD,OAAO,EAAE;oBACP,YAAY;oBACZ,WAAW;oBACX,mBAAmB;oBACnB,oBAAoB;oBACpB,kBAAkB;iBACnB;gBACD,OAAO,EAAE;oBACP,sBAAsB;oBACtB,oBAAoB;oBACpB,2BAA2B;oBAC3B,8BAA8B;oBAC9B,sBAAsB;oBACtB,+BAA+B;iBAChC;aACF;;wFACY,eAAe,mBAvBxB,sBAAsB;QACtB,oBAAoB;QACpB,2BAA2B;QAC3B,8BAA8B;QAC9B,sBAAsB;QACtB,+BAA+B,aAG/B,YAAY;QACZ,WAAW;QACX,mBAAmB;QACnB,oBAAoB;QACpB,kBAAkB,aAGlB,sBAAsB;QACtB,oBAAoB;QACpB,2BAA2B;QAC3B,8BAA8B;QAC9B,sBAAsB;QACtB,+BAA+B"}
|
package/dist/public-api.d.ts
CHANGED
|
@@ -1,16 +1,28 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* @memberjunction/ng-base-forms
|
|
3
|
+
*
|
|
4
|
+
* Modern form components for rendering and editing MemberJunction entity records.
|
|
5
|
+
* Provides configurable toolbar, inline-editing fields, collapsible panels with
|
|
6
|
+
* IS-A inheritance support, and event-driven navigation.
|
|
7
|
+
*
|
|
8
|
+
* Zero Explorer dependencies - usable in any Angular application.
|
|
9
|
+
* Uses only native HTML elements with custom styling (no PrimeNG dependency).
|
|
10
|
+
*/
|
|
1
11
|
export * from './module';
|
|
12
|
+
export * from './lib/types/form-types';
|
|
13
|
+
export * from './lib/types/navigation-events';
|
|
14
|
+
export * from './lib/types/toolbar-config';
|
|
15
|
+
export * from './lib/types/form-events';
|
|
2
16
|
export * from './lib/base-record-component';
|
|
3
|
-
export * from './lib/base-form-section-component';
|
|
4
17
|
export * from './lib/base-form-component';
|
|
18
|
+
export * from './lib/base-form-section-component';
|
|
5
19
|
export * from './lib/base-form-section-info';
|
|
6
|
-
export * from './lib/base-form-context';
|
|
7
|
-
export * from './lib/base-field-component';
|
|
8
|
-
export * from './lib/link-field.component';
|
|
9
|
-
export * from './lib/section-loader-component';
|
|
10
|
-
export * from './lib/form-section-controls.component';
|
|
11
|
-
export * from './lib/collapsible-panel.component';
|
|
12
|
-
export { PanelDragStartEvent, PanelDropEvent } from './lib/collapsible-panel.component';
|
|
13
20
|
export * from './lib/form-state.interface';
|
|
14
21
|
export * from './lib/form-state.service';
|
|
22
|
+
export * from './lib/toolbar/form-toolbar.component';
|
|
23
|
+
export * from './lib/field/form-field.component';
|
|
24
|
+
export * from './lib/panel/collapsible-panel.component';
|
|
25
|
+
export * from './lib/container/record-form-container.component';
|
|
26
|
+
export * from './lib/section-loader-component';
|
|
15
27
|
export * from './lib/explorer-entity-data-grid.component';
|
|
16
28
|
//# sourceMappingURL=public-api.d.ts.map
|
package/dist/public-api.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"public-api.d.ts","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAGH,cAAc,UAAU,CAAC;AAGzB,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AAGxC,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAG7C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AAGzC,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,yCAAyC,CAAC;AACxD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2CAA2C,CAAC"}
|
package/dist/public-api.js
CHANGED
|
@@ -1,18 +1,33 @@
|
|
|
1
|
-
|
|
2
|
-
*
|
|
1
|
+
/**
|
|
2
|
+
* @memberjunction/ng-base-forms
|
|
3
|
+
*
|
|
4
|
+
* Modern form components for rendering and editing MemberJunction entity records.
|
|
5
|
+
* Provides configurable toolbar, inline-editing fields, collapsible panels with
|
|
6
|
+
* IS-A inheritance support, and event-driven navigation.
|
|
7
|
+
*
|
|
8
|
+
* Zero Explorer dependencies - usable in any Angular application.
|
|
9
|
+
* Uses only native HTML elements with custom styling (no PrimeNG dependency).
|
|
3
10
|
*/
|
|
11
|
+
// Module
|
|
4
12
|
export * from './module';
|
|
13
|
+
// Types and interfaces
|
|
14
|
+
export * from './lib/types/form-types';
|
|
15
|
+
export * from './lib/types/navigation-events';
|
|
16
|
+
export * from './lib/types/toolbar-config';
|
|
17
|
+
export * from './lib/types/form-events';
|
|
18
|
+
// Base classes
|
|
5
19
|
export * from './lib/base-record-component';
|
|
6
|
-
export * from './lib/base-form-section-component';
|
|
7
20
|
export * from './lib/base-form-component';
|
|
21
|
+
export * from './lib/base-form-section-component';
|
|
8
22
|
export * from './lib/base-form-section-info';
|
|
9
|
-
|
|
10
|
-
export * from './lib/base-field-component';
|
|
11
|
-
export * from './lib/link-field.component';
|
|
12
|
-
export * from './lib/section-loader-component';
|
|
13
|
-
export * from './lib/form-section-controls.component';
|
|
14
|
-
export * from './lib/collapsible-panel.component';
|
|
23
|
+
// State management
|
|
15
24
|
export * from './lib/form-state.interface';
|
|
16
25
|
export * from './lib/form-state.service';
|
|
26
|
+
// Components
|
|
27
|
+
export * from './lib/toolbar/form-toolbar.component';
|
|
28
|
+
export * from './lib/field/form-field.component';
|
|
29
|
+
export * from './lib/panel/collapsible-panel.component';
|
|
30
|
+
export * from './lib/container/record-form-container.component';
|
|
31
|
+
export * from './lib/section-loader-component';
|
|
17
32
|
export * from './lib/explorer-entity-data-grid.component';
|
|
18
33
|
//# sourceMappingURL=public-api.js.map
|
package/dist/public-api.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA
|
|
1
|
+
{"version":3,"file":"public-api.js","sourceRoot":"","sources":["../src/public-api.ts"],"names":[],"mappings":"AAAA;;;;;;;;;GASG;AAEH,SAAS;AACT,cAAc,UAAU,CAAC;AAEzB,uBAAuB;AACvB,cAAc,wBAAwB,CAAC;AACvC,cAAc,+BAA+B,CAAC;AAC9C,cAAc,4BAA4B,CAAC;AAC3C,cAAc,yBAAyB,CAAC;AAExC,eAAe;AACf,cAAc,6BAA6B,CAAC;AAC5C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mCAAmC,CAAC;AAClD,cAAc,8BAA8B,CAAC;AAE7C,mBAAmB;AACnB,cAAc,4BAA4B,CAAC;AAC3C,cAAc,0BAA0B,CAAC;AAEzC,aAAa;AACb,cAAc,sCAAsC,CAAC;AACrD,cAAc,kCAAkC,CAAC;AACjD,cAAc,yCAAyC,CAAC;AACxD,cAAc,iDAAiD,CAAC;AAChE,cAAc,gCAAgC,CAAC;AAC/C,cAAc,2CAA2C,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@memberjunction/ng-base-forms",
|
|
3
|
-
"version": "4.
|
|
4
|
-
"description": "MemberJunction: Angular
|
|
3
|
+
"version": "4.2.0",
|
|
4
|
+
"description": "MemberJunction: Generic Angular form components for rendering and editing entity records. Provides configurable toolbar, modern form fields (PrimeNG unstyled), collapsible panels with IS-A inheritance support, and event-driven navigation. Zero Explorer dependencies - usable in any Angular application.",
|
|
5
5
|
"main": "./dist/public-api.js",
|
|
6
6
|
"typings": "./dist/public-api.d.ts",
|
|
7
7
|
"files": [
|
|
@@ -11,7 +11,15 @@
|
|
|
11
11
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
12
12
|
"build": "ngc"
|
|
13
13
|
},
|
|
14
|
-
"keywords": [
|
|
14
|
+
"keywords": [
|
|
15
|
+
"memberjunction",
|
|
16
|
+
"angular",
|
|
17
|
+
"forms",
|
|
18
|
+
"entity",
|
|
19
|
+
"primeng",
|
|
20
|
+
"edit",
|
|
21
|
+
"record"
|
|
22
|
+
],
|
|
15
23
|
"author": "",
|
|
16
24
|
"license": "ISC",
|
|
17
25
|
"devDependencies": {
|
|
@@ -22,28 +30,17 @@
|
|
|
22
30
|
"@angular/common": "21.1.3",
|
|
23
31
|
"@angular/core": "21.1.3",
|
|
24
32
|
"@angular/forms": "21.1.3",
|
|
25
|
-
"@angular/
|
|
33
|
+
"@angular/animations": "21.1.3",
|
|
34
|
+
"primeng": "21.1.1"
|
|
26
35
|
},
|
|
27
36
|
"dependencies": {
|
|
28
|
-
"@
|
|
29
|
-
"@memberjunction/core": "4.
|
|
30
|
-
"@memberjunction/
|
|
31
|
-
"@memberjunction/
|
|
32
|
-
"@memberjunction/ng-
|
|
33
|
-
"@memberjunction/ng-
|
|
34
|
-
"@memberjunction/ng-
|
|
35
|
-
"@memberjunction/ng-entity-viewer": "4.0.0",
|
|
36
|
-
"@memberjunction/ng-link-directives": "4.0.0",
|
|
37
|
-
"@memberjunction/ng-record-changes": "4.0.0",
|
|
38
|
-
"@memberjunction/ng-shared": "4.0.0",
|
|
39
|
-
"@memberjunction/ng-tabstrip": "4.0.0",
|
|
40
|
-
"@progress/kendo-angular-buttons": "22.0.1",
|
|
41
|
-
"@progress/kendo-angular-dateinputs": "22.0.1",
|
|
42
|
-
"@progress/kendo-angular-dialog": "22.0.1",
|
|
43
|
-
"@progress/kendo-angular-dropdowns": "22.0.1",
|
|
44
|
-
"@progress/kendo-angular-indicators": "22.0.1",
|
|
45
|
-
"@progress/kendo-angular-inputs": "22.0.1",
|
|
46
|
-
"@memberjunction/ng-markdown": "4.0.0",
|
|
37
|
+
"@memberjunction/core": "4.2.0",
|
|
38
|
+
"@memberjunction/core-entities": "4.2.0",
|
|
39
|
+
"@memberjunction/global": "4.2.0",
|
|
40
|
+
"@memberjunction/ng-base-types": "4.2.0",
|
|
41
|
+
"@memberjunction/ng-list-management": "4.2.0",
|
|
42
|
+
"@memberjunction/ng-record-changes": "4.2.0",
|
|
43
|
+
"@memberjunction/ng-entity-viewer": "4.2.0",
|
|
47
44
|
"rxjs": "^7.8.2",
|
|
48
45
|
"tslib": "^2.8.1"
|
|
49
46
|
},
|