mamba-layout 0.42.0 → 0.44.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/package.json CHANGED
@@ -1,68 +1,68 @@
1
- {
2
- "name": "mamba-layout",
3
- "version": "0.42.0",
4
- "description": "Shared Mamba Vue layout shell and standalone browser layout.",
5
- "private": false,
6
- "type": "module",
7
- "main": "./dist/index.js",
8
- "module": "./dist/index.js",
9
- "types": "./dist/index.d.ts",
10
- "style": "./dist/layout.css",
11
- "files": [
12
- "dist"
13
- ],
14
- "sideEffects": [
15
- "*.css",
16
- "*.scss"
17
- ],
18
- "exports": {
19
- ".": {
20
- "types": "./dist/index.d.ts",
21
- "import": "./dist/index.js"
22
- },
23
- "./styles": "./dist/layout.css",
24
- "./layout.css": "./dist/layout.css",
25
- "./layout.global.js": "./dist/layout.global.js"
26
- },
27
- "publishConfig": {
28
- "access": "public"
29
- },
30
- "scripts": {
31
- "build": "vite build && vite build -c vite.standalone.config.ts",
32
- "prepack": "pnpm build",
33
- "prepublishOnly": "pnpm type-check && pnpm build",
34
- "type-check": "vue-tsc --noEmit -p tsconfig.app.json"
35
- },
36
- "keywords": [
37
- "mamba",
38
- "layout",
39
- "vue",
40
- "element-plus"
41
- ],
42
- "dependencies": {
43
- "@element-plus/icons-vue": "^2.3.1"
44
- },
45
- "peerDependencies": {
46
- "element-plus": "^2.11.5",
47
- "tailwindcss": "^4.0.8",
48
- "vue": "^3.5.13",
49
- "vue-i18n": "11",
50
- "vue-router": "^4.5.0"
51
- },
52
- "devDependencies": {
53
- "@tailwindcss/vite": "^4.1.6",
54
- "@types/node": "^22.15.18",
55
- "@vitejs/plugin-vue": "^5.2.3",
56
- "@vue/tsconfig": "^0.7.0",
57
- "element-plus": "^2.11.5",
58
- "sass": "^1.83.0",
59
- "tailwindcss": "^4.1.7",
60
- "typescript": "~5.8.3",
61
- "vite": "^6.3.5",
62
- "vite-plugin-dts": "^4.5.4",
63
- "vue": "^3.5.13",
64
- "vue-i18n": "11",
65
- "vue-router": "^4.5.0",
66
- "vue-tsc": "^2.2.8"
67
- }
68
- }
1
+ {
2
+ "name": "mamba-layout",
3
+ "version": "0.44.0",
4
+ "description": "Shared Mamba Vue layout shell and standalone browser layout.",
5
+ "private": false,
6
+ "type": "module",
7
+ "main": "./dist/index.js",
8
+ "module": "./dist/index.js",
9
+ "types": "./dist/index.d.ts",
10
+ "style": "./dist/layout.css",
11
+ "files": [
12
+ "dist"
13
+ ],
14
+ "sideEffects": [
15
+ "*.css",
16
+ "*.scss"
17
+ ],
18
+ "exports": {
19
+ ".": {
20
+ "types": "./dist/index.d.ts",
21
+ "import": "./dist/index.js"
22
+ },
23
+ "./styles": "./dist/layout.css",
24
+ "./layout.css": "./dist/layout.css",
25
+ "./layout.global.js": "./dist/layout.global.js"
26
+ },
27
+ "publishConfig": {
28
+ "access": "public"
29
+ },
30
+ "scripts": {
31
+ "build": "vite build && vite build -c vite.standalone.config.ts",
32
+ "prepack": "pnpm build",
33
+ "prepublishOnly": "pnpm type-check && pnpm build",
34
+ "type-check": "vue-tsc --noEmit -p tsconfig.app.json"
35
+ },
36
+ "keywords": [
37
+ "mamba",
38
+ "layout",
39
+ "vue",
40
+ "element-plus"
41
+ ],
42
+ "dependencies": {
43
+ "@element-plus/icons-vue": "^2.3.1"
44
+ },
45
+ "peerDependencies": {
46
+ "element-plus": "^2.11.5",
47
+ "tailwindcss": "^4.0.8",
48
+ "vue": "^3.5.13",
49
+ "vue-i18n": "11",
50
+ "vue-router": "^4.5.0"
51
+ },
52
+ "devDependencies": {
53
+ "@tailwindcss/vite": "^4.1.6",
54
+ "@types/node": "^22.15.18",
55
+ "@vitejs/plugin-vue": "^5.2.3",
56
+ "@vue/tsconfig": "^0.7.0",
57
+ "element-plus": "^2.11.5",
58
+ "sass": "^1.83.0",
59
+ "tailwindcss": "^4.1.7",
60
+ "typescript": "~5.8.3",
61
+ "vite": "^6.3.5",
62
+ "vite-plugin-dts": "^4.5.4",
63
+ "vue": "^3.5.13",
64
+ "vue-i18n": "11",
65
+ "vue-router": "^4.5.0",
66
+ "vue-tsc": "^2.2.8"
67
+ }
68
+ }
@@ -1,8 +0,0 @@
1
- /**
2
- * @param providerComponentName - The name(s) of the component(s) providing the context.
3
- *
4
- * There are situations where context can come from multiple components. In such cases, you might need to give an array of component names to provide your context, instead of just a single string.
5
- *
6
- * @param contextName The description for injection key symbol.
7
- */
8
- export declare function createContext<ContextValue>(providerComponentName: string | string[], contextName?: string): readonly [<T extends ContextValue | null | undefined = ContextValue>(fallback?: T) => T extends null ? ContextValue | null : ContextValue, (contextValue: ContextValue) => ContextValue];