mamba-layout 0.16.0 → 0.17.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/dist/index.d.ts CHANGED
@@ -1,9 +1,5 @@
1
1
  export { default as BaseLayout } from './layout/BaseLayout.vue';
2
- export * from './layout/hooks/useApp';
3
- export * from './layout/hooks/useLayoutState';
4
- export { useLayoutState } from './layout/hooks/useLayoutState';
5
- export { useTheme } from './layout/hooks/useTheme';
6
- export * from './layout/hooks';
2
+ export { useApp, useTheme, useSetting, useLayoutState } from './layout/hooks';
7
3
  export * from './components';
8
4
  export * from './layout/components';
9
5
  export { default as i18n } from './locales';
package/dist/index.js.js CHANGED
@@ -2532,7 +2532,6 @@ export {
2532
2532
  ma as UserInfo,
2533
2533
  ue as i18n,
2534
2534
  se as messages,
2535
- Jt as provideSetting,
2536
2535
  at as useApp,
2537
2536
  H as useLayoutState,
2538
2537
  O as useSetting,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mamba-layout",
3
- "version": "0.16.0",
3
+ "version": "0.17.0",
4
4
  "description": "Shared Mamba Vue layout shell and standalone browser layout.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -20,51 +20,9 @@
20
20
  "types": "./dist/index.d.ts",
21
21
  "import": "./dist/index.js"
22
22
  },
23
- "./hooks": {
24
- "types": "./dist/layout/hooks/index.d.ts",
25
- "import": "./dist/layout/hooks/index.js"
26
- },
27
- "./hooks/*": {
28
- "types": "./dist/layout/hooks/*.d.ts",
29
- "import": "./dist/layout/hooks/*.js"
30
- },
31
- "./locales": {
32
- "types": "./dist/locales/index.d.ts",
33
- "import": "./dist/locales/index.js"
34
- },
35
- "./locales/*": {
36
- "types": "./dist/locales/*.d.ts",
37
- "import": "./dist/locales/*.js"
38
- },
39
- "./components": {
40
- "types": "./dist/components/index.d.ts",
41
- "import": "./dist/components/index.js"
42
- },
43
- "./components/UserAvatar": {
44
- "types": "./dist/components/UserAvatar/index.d.ts",
45
- "import": "./dist/components/UserAvatar/index.js"
46
- },
47
- "./components/mobile/*": {
48
- "types": "./dist/layout/components/mobile/*.vue.d.ts",
49
- "import": "./dist/layout/components/mobile/*.vue.js"
50
- },
51
- "./components/*": {
52
- "types": "./dist/layout/components/*.vue.d.ts",
53
- "import": "./dist/layout/components/*.vue.js"
54
- },
55
- "./utils/*": {
56
- "types": "./dist/utils/*.d.ts",
57
- "import": "./dist/utils/*.js"
58
- },
59
- "./standalone": {
60
- "types": "./dist/standalone.d.ts",
61
- "import": "./dist/layout.es.js"
62
- },
63
23
  "./styles": "./dist/layout.css",
64
- "./tailwind.css": "./dist/layout.css",
65
24
  "./layout.css": "./dist/layout.css",
66
- "./layout.global.js": "./dist/layout.global.js",
67
- "./package.json": "./package.json"
25
+ "./layout.global.js": "./dist/layout.global.js"
68
26
  },
69
27
  "publishConfig": {
70
28
  "access": "public"