@memberjunction/ng-entity-form-dialog 5.38.0 → 5.39.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +8 -8
package/README.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  A reusable Angular dialog component that displays a MemberJunction entity form for viewing and/or editing any record from any entity. Supports showing the complete form or a specific section.
4
4
 
5
+ > **Deprecated for new code — use the generic forms-as-overlays stack** in
6
+ > `@memberjunction/ng-base-forms`: `<mj-form-dialog>` / `<mj-form-slide-in>` /
7
+ > `<mj-form-window>` and `MJFormPresenterService`. It resolves the form
8
+ > (including interactive overrides + variants), wires the full event surface,
9
+ > supports per-instance `EntityFormConfig`, **and now covers section mode** via
10
+ > the `SectionName` input — the one capability that previously justified keeping
11
+ > this component. See [/guides/FORMS_ARCHITECTURE_GUIDE.md](../../../../guides/FORMS_ARCHITECTURE_GUIDE.md).
12
+ > This package remains only for its existing consumer (`simple-record-list`)
13
+ > until that's migrated; no new usage.
14
+
5
15
  ## Overview
6
16
 
7
17
  The `EntityFormDialogComponent` wraps MemberJunction's dynamic form system inside a Kendo UI dialog window. It dynamically loads the registered form component for the given entity (including custom form overrides) and provides configurable Save/Cancel buttons with automatic record handling.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@memberjunction/ng-entity-form-dialog",
3
- "version": "5.38.0",
3
+ "version": "5.39.0",
4
4
  "description": "MemberJunction: Dialog component that is able to display a form for display and/or editing for any record from any entity in MemberJunction.",
5
5
  "main": "./dist/public-api.js",
6
6
  "typings": "./dist/public-api.d.ts",
@@ -25,13 +25,13 @@
25
25
  "@angular/router": "21.1.3"
26
26
  },
27
27
  "dependencies": {
28
- "@memberjunction/core": "5.38.0",
29
- "@memberjunction/core-entities": "5.38.0",
30
- "@memberjunction/global": "5.38.0",
31
- "@memberjunction/ng-base-forms": "5.38.0",
32
- "@memberjunction/ng-container-directives": "5.38.0",
33
- "@memberjunction/ng-shared": "5.38.0",
34
- "@memberjunction/ng-ui-components": "5.38.0",
28
+ "@memberjunction/core": "5.39.0",
29
+ "@memberjunction/core-entities": "5.39.0",
30
+ "@memberjunction/global": "5.39.0",
31
+ "@memberjunction/ng-base-forms": "5.39.0",
32
+ "@memberjunction/ng-container-directives": "5.39.0",
33
+ "@memberjunction/ng-shared": "5.39.0",
34
+ "@memberjunction/ng-ui-components": "5.39.0",
35
35
  "tslib": "^2.8.1"
36
36
  },
37
37
  "sideEffects": false,