@das-fed/web 6.3.0-beta.0 → 6.3.0-beta.3
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/esm-map.json +27 -0
- package/index.js +2078 -9818
- package/index.js.gz +0 -0
- package/package.json +32 -16
- package/packages/create-das-web-app/index.js +799 -0
- package/packages/create-das-web-app/index.js.gz +0 -0
- package/packages/i18n/index.js +35 -0
- package/packages/layout/index.js +736 -0
- package/packages/layout/index.js.gz +0 -0
- package/packages/layout/style.css +7 -0
- package/packages/layout/style.css.gz +0 -0
- package/packages/micro-frontend/index.js +820 -0
- package/packages/micro-frontend/index.js.gz +0 -0
- package/packages/micro-frontend/style.css +1 -0
- package/packages/style/index.js +4 -0
- package/packages/style/style.css +1 -0
- package/packages/style/style.css.gz +0 -0
- package/packages/theme/index.js +76 -0
- package/packages/theme/index.js.gz +0 -0
- package/style.css +2 -2
- package/style.css.gz +0 -0
- package/types/create-das-web-app/get-global-config.d.ts +2 -0
- package/types/create-das-web-app/index.d.ts +9 -0
- package/types/create-das-web-app/plugins/index.d.ts +4 -0
- package/types/create-das-web-app/router/index.d.ts +4 -0
- package/types/create-das-web-app/store/index.d.ts +2 -0
- package/types/i18n/index.d.ts +21 -0
- package/types/index.d.ts +5 -0
- package/types/layout/index.d.ts +5 -0
- package/types/layout/store/iframe-view.d.ts +12 -0
- package/types/layout/store/index.d.ts +70 -0
- package/types/layout/store/menu.d.ts +16 -0
- package/types/layout/store/nav.d.ts +26 -0
- package/types/layout/store/overlay.d.ts +5 -0
- package/types/layout/store/tab.d.ts +17 -0
- package/types/micro-frontend/bus.d.ts +33 -0
- package/types/micro-frontend/index.d.ts +7 -0
- package/types/micro-frontend/store.d.ts +5 -0
- package/types/theme/index.d.ts +13 -0
- package/index.umd.cjs +0 -41
package/esm-map.json
ADDED
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
{
|
|
2
|
+
"DasWebLayout": "/packages/layout/index",
|
|
3
|
+
"DasWebNav": "/packages/layout/index",
|
|
4
|
+
"DasWebMenu": "/packages/layout/index",
|
|
5
|
+
"DasWebTabs": "/packages/layout/index",
|
|
6
|
+
"layout": "/packages/layout/index",
|
|
7
|
+
"initI18n": "/packages/i18n/index",
|
|
8
|
+
"setI18nRule": "/packages/i18n/index",
|
|
9
|
+
"getI18nRule": "/packages/i18n/index",
|
|
10
|
+
"i18n": "/packages/i18n/index",
|
|
11
|
+
"t": "/packages/i18n/index",
|
|
12
|
+
"setLang": "/packages/i18n/index",
|
|
13
|
+
"getLang": "/packages/i18n/index",
|
|
14
|
+
"currentLang": "/packages/i18n/index",
|
|
15
|
+
"createDasWebApp": "/packages/create-das-web-app/index",
|
|
16
|
+
"initMainApp": "/packages/micro-frontend/index",
|
|
17
|
+
"initMicroApp": "/packages/micro-frontend/index",
|
|
18
|
+
"microFrontend": "/packages/micro-frontend/index",
|
|
19
|
+
"DasMainAppLayout": "/packages/micro-frontend/index",
|
|
20
|
+
"initTheme": "/packages/theme/index",
|
|
21
|
+
"setTheme": "/packages/theme/index",
|
|
22
|
+
"getThemeRule": "/packages/theme/index",
|
|
23
|
+
"currentTheme": "/packages/theme/index",
|
|
24
|
+
"setThemeRule": "/packages/theme/index",
|
|
25
|
+
"getVar": "/packages/theme/index",
|
|
26
|
+
"getVarValue": "/packages/theme/index"
|
|
27
|
+
}
|