@volosoft/abp.ng.theme.lepton-x 1.0.0 → 2.0.0-rc.1
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/esm2020/layouts/index.mjs +2 -1
- package/esm2020/layouts/side-menu/layout/side-menu-application-layout.component.mjs +4 -3
- package/esm2020/layouts/side-menu/layout/side-menu-layout.module.mjs +5 -2
- package/esm2020/layouts/top-menu/index.mjs +2 -0
- package/esm2020/layouts/top-menu/layout/index.mjs +2 -0
- package/esm2020/layouts/top-menu/layout/providers/index.mjs +2 -0
- package/esm2020/layouts/top-menu/layout/providers/translate.provider.mjs +13 -0
- package/esm2020/layouts/top-menu/layout/top-menu-application-layout.component.mjs +26 -0
- package/esm2020/layouts/top-menu/layout/top-menu-layout.module.mjs +78 -0
- package/esm2020/lib/components/abp-validation-error/abp-validation-error.module.mjs +2 -2
- package/esm2020/lib/enums/components.mjs +1 -1
- package/esm2020/lib/services/abp-settings.service.mjs +2 -1
- package/fesm2015/volosoft-abp.ng.theme.lepton-x-layouts.mjs +113 -11
- package/fesm2015/volosoft-abp.ng.theme.lepton-x-layouts.mjs.map +1 -1
- package/fesm2015/volosoft-abp.ng.theme.lepton-x.mjs +2 -1
- package/fesm2015/volosoft-abp.ng.theme.lepton-x.mjs.map +1 -1
- package/fesm2020/volosoft-abp.ng.theme.lepton-x-layouts.mjs +113 -11
- package/fesm2020/volosoft-abp.ng.theme.lepton-x-layouts.mjs.map +1 -1
- package/fesm2020/volosoft-abp.ng.theme.lepton-x.mjs +2 -1
- package/fesm2020/volosoft-abp.ng.theme.lepton-x.mjs.map +1 -1
- package/layouts/index.d.ts +1 -0
- package/layouts/side-menu/layout/side-menu-application-layout.component.d.ts +1 -0
- package/layouts/side-menu/layout/side-menu-layout.module.d.ts +1 -1
- package/layouts/top-menu/index.d.ts +1 -0
- package/layouts/top-menu/layout/index.d.ts +1 -0
- package/layouts/top-menu/layout/providers/index.d.ts +1 -0
- package/layouts/top-menu/layout/providers/translate.provider.d.ts +2 -0
- package/layouts/top-menu/layout/top-menu-application-layout.component.d.ts +14 -0
- package/layouts/top-menu/layout/top-menu-layout.module.d.ts +16 -0
- package/lib/enums/components.d.ts +4 -2
- package/package.json +7 -7
package/package.json
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@volosoft/abp.ng.theme.lepton-x",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0-rc.1",
|
|
4
4
|
"homepage": "https://abp.io",
|
|
5
5
|
"peerDependencies": {
|
|
6
|
-
"@abp/ng.components": "~
|
|
7
|
-
"@abp/ng.theme.shared": "~
|
|
8
|
-
"@volo/abp.commercial.ng.ui": "~
|
|
9
|
-
"@volo/abp.ng.account.core": "~6.0.0",
|
|
6
|
+
"@abp/ng.components": "~7.0.0-rc.1",
|
|
7
|
+
"@abp/ng.theme.shared": "~7.0.0-rc.1",
|
|
8
|
+
"@volo/abp.commercial.ng.ui": "~7.0.0-rc.1",
|
|
10
9
|
"@ng-bootstrap/ng-bootstrap": "^12.0.0-beta.4"
|
|
11
10
|
},
|
|
12
11
|
"dependencies": {
|
|
13
12
|
"tslib": "^2.3.0",
|
|
14
|
-
"@volosoft/ngx-lepton-x": "
|
|
15
|
-
"@volo/abp.ng.lepton-x.core": "
|
|
13
|
+
"@volosoft/ngx-lepton-x": "2.0.0-rc.1",
|
|
14
|
+
"@volo/abp.ng.lepton-x.core": "2.0.0-rc.1",
|
|
15
|
+
"@volo/abp.ng.account.core": "~7.0.0-rc.1"
|
|
16
16
|
},
|
|
17
17
|
"publishConfig": {
|
|
18
18
|
"access": "public"
|