mamba-layout 0.46.0 → 0.47.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.
Files changed (2) hide show
  1. package/README.md +35 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,41 @@
2
2
 
3
3
  Shared Mamba Vue layout shell, styles, locale helpers, and a standalone browser layout build.
4
4
 
5
+ ## ⚠️ Important: Required CDN Links and Styles
6
+
7
+ **The following CDN links and styles are REQUIRED and cannot be omitted or modified:**
8
+
9
+ ### Required Links (must be included in `<head>`):
10
+ ```html
11
+ <!-- Icon fonts - DO NOT modify or remove -->
12
+ <link type="text/css" rel="stylesheet" href="https://at.alicdn.com/t/c/font_4614982_ta3fsffdp7.css" />
13
+ <link type="text/css" rel="stylesheet" href="https://at.alicdn.com/t/c/font_4839395_zeh0j9u8an.css" />
14
+
15
+ <!-- Mamba Layout CSS - DO NOT modify or remove -->
16
+ <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/mamba-layout@latest/dist/layout.css" />
17
+ ```
18
+
19
+ ### Required Styles (must be included in `<head>`):
20
+ ```html
21
+ <style>
22
+ html, body, mamba-layout {
23
+ width: 100%;
24
+ height: 100%;
25
+ margin: 0;
26
+ }
27
+ mamba-layout {
28
+ display: block;
29
+ }
30
+ </style>
31
+ ```
32
+
33
+ ### Required Script (must be included before closing `</body>`):
34
+ ```html
35
+ <script src="https://cdn.jsdelivr.net/npm/mamba-layout@latest/dist/layout.global.js"></script>
36
+ ```
37
+
38
+ **⚠️ CRITICAL:** All of the above links and styles are essential for the layout to function correctly. Do not skip, modify, or change any of these URLs.
39
+
5
40
  ### Quick Start
6
41
 
7
42
  ```html
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mamba-layout",
3
- "version": "0.46.0",
3
+ "version": "0.47.0",
4
4
  "description": "Shared Mamba Vue layout shell and standalone browser layout.",
5
5
  "private": false,
6
6
  "type": "module",