es-application-template 0.0.7 → 0.0.11
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/CHANGELOG.md +6 -0
- package/README.md +10 -0
- package/dist/components/sidebar/index.d.ts +1 -0
- package/dist/index.js +396 -109
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +397 -110
- package/dist/index.mjs.map +1 -1
- package/dist/management/setting-keys/config-tree/setting-key-convention.d.ts +56 -0
- package/dist/styles/index.css +78 -26
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 0.0.9
|
|
4
|
+
|
|
5
|
+
- Add the Settings key convention living specification with quick-reference and full-contract views.
|
|
6
|
+
- Add copy-all and JSON download actions generated from one structured convention source.
|
|
7
|
+
- Make the package sidebar styling self-contained instead of relying on the host application's `.customizer` class.
|
|
8
|
+
|
|
3
9
|
## 0.1.0
|
|
4
10
|
|
|
5
11
|
- Initial standalone package extracted from the verified ADMIN embedded module.
|
package/README.md
CHANGED
|
@@ -18,6 +18,16 @@ Package CSS is emitted at:
|
|
|
18
18
|
dist/styles/index.css
|
|
19
19
|
```
|
|
20
20
|
|
|
21
|
+
Host applications must import the extracted stylesheet once from their
|
|
22
|
+
application entry, after the host global styles:
|
|
23
|
+
|
|
24
|
+
```ts
|
|
25
|
+
import 'es-application-template/dist/styles/index.css'
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The package `style` metadata does not make CRA/Webpack load the stylesheet
|
|
29
|
+
automatically.
|
|
30
|
+
|
|
21
31
|
## Provider
|
|
22
32
|
|
|
23
33
|
```tsx
|