@ensera/plugin-frontend 1.0.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/README.md +15 -0
- package/dist/index.d.ts +752 -0
- package/dist/index.js +2021 -0
- package/package.json +50 -0
package/README.md
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# @ensera/plugin-frontend
|
|
2
|
+
|
|
3
|
+
Frontend runtime SDK for Ensera plugins.
|
|
4
|
+
|
|
5
|
+
## Install
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @ensera/plugin-frontend
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Purpose
|
|
12
|
+
|
|
13
|
+
- mounts frontend features inside Ensera Core
|
|
14
|
+
- provides the runtime APIs used by the published templates
|
|
15
|
+
- stays separate from the scaffold template packages
|