mamba-layout 0.47.0 → 0.49.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/theme.css ADDED
@@ -0,0 +1,91 @@
1
+ @theme inline {
2
+ --color-blue-500: #4c5df7;
3
+
4
+ --font-sans: var(--ui-font-body);
5
+ --font-heading: var(--ui-font-heading);
6
+ --font-mono: var(--ui-font-mono);
7
+
8
+ --color-primary: var(--ui-color-primary);
9
+ --color-primary-foreground: var(--ui-text-on-brand);
10
+ --color-success: var(--ui-color-success);
11
+ --color-warning: var(--ui-color-warning);
12
+ --color-danger: var(--ui-color-destructive);
13
+ --color-destructive: var(--ui-color-destructive);
14
+ --color-info: var(--ui-color-info);
15
+
16
+ --color-background: var(--ui-color-background);
17
+ --color-foreground: var(--ui-color-foreground);
18
+ --color-card: var(--ui-color-card);
19
+ --color-card-foreground: var(--ui-color-card-foreground);
20
+ --color-muted: var(--ui-color-muted);
21
+ --color-muted-foreground: var(--ui-text-muted);
22
+ --color-accent: var(--ui-color-accent);
23
+ --color-accent-foreground: var(--ui-color-accent-foreground);
24
+ --color-input: var(--ui-color-input);
25
+
26
+ --color-bg-page: var(--ui-bg-page);
27
+ --color-bg-card: var(--ui-bg-card);
28
+ --color-bg-muted: var(--ui-bg-muted);
29
+ --color-bg-overlay: var(--ui-bg-overlay);
30
+ --color-bg-inverse: var(--ui-bg-inverse);
31
+
32
+ --color-text-primary: var(--ui-text-primary);
33
+ --color-text-secondary: var(--ui-text-secondary);
34
+ --color-text-muted: var(--ui-text-muted);
35
+ --color-text-placeholder: var(--ui-text-placeholder);
36
+ --color-text-disabled: var(--ui-text-disabled);
37
+
38
+ --color-border: var(--ui-border-default);
39
+ --color-border-soft: var(--ui-border-soft);
40
+ --color-border-strong: var(--ui-border-strong);
41
+ --color-ring: var(--ui-ring);
42
+
43
+ --color-topnav: var(--ui-topnav-bg);
44
+ --color-topnav-accent: var(--ui-topnav-accent);
45
+ --color-topnav-foreground: var(--ui-topnav-foreground);
46
+ --color-topnav-muted: var(--ui-topnav-muted);
47
+ --color-topnav-border: var(--ui-topnav-border);
48
+ --color-topnav-hover: var(--ui-topnav-hover);
49
+ --color-topnav-surface: var(--ui-topnav-surface);
50
+ --color-topnav-active: var(--ui-topnav-active-bg);
51
+ --color-topnav-active-foreground: var(--ui-topnav-active-fg);
52
+
53
+ --color-sidebar: var(--ui-sidebar-bg);
54
+ --color-sidebar-accent: var(--ui-sidebar-accent);
55
+ --color-sidebar-foreground: var(--ui-sidebar-foreground);
56
+ --color-sidebar-border: var(--ui-sidebar-border);
57
+ --color-sidebar-hover: var(--ui-sidebar-hover-bg);
58
+ --color-sidebar-active: var(--ui-sidebar-active-bg);
59
+ --color-sidebar-accent-foreground: var(--ui-sidebar-active-fg);
60
+
61
+ --color-badge-purple: var(--ui-badge-purple-bg);
62
+ --color-badge-purple-fg: var(--ui-badge-purple-fg);
63
+ --color-badge-blue: var(--ui-badge-blue-bg);
64
+ --color-badge-blue-fg: var(--ui-badge-blue-fg);
65
+ --color-badge-green: var(--ui-badge-green-bg);
66
+ --color-badge-green-fg: var(--ui-badge-green-fg);
67
+ --color-badge-orange: var(--ui-badge-orange-bg);
68
+ --color-badge-orange-fg: var(--ui-badge-orange-fg);
69
+ --color-badge-yellow: var(--ui-badge-yellow-bg);
70
+ --color-badge-yellow-fg: var(--ui-badge-yellow-fg);
71
+
72
+ --color-table-header: var(--ui-table-header-bg);
73
+ --color-table-row: var(--ui-table-row-bg);
74
+ --color-table-row-alt: var(--ui-table-row-alt-bg);
75
+
76
+ --radius-sm: var(--ui-radius-sm);
77
+ --radius-md: var(--ui-radius-control);
78
+ --radius-lg: var(--ui-radius-card);
79
+ --radius-xl: var(--ui-radius-modal);
80
+ --radius-full: var(--ui-radius-pill);
81
+
82
+ --spacing-control: var(--ui-space-control);
83
+ --spacing-card: var(--ui-space-card);
84
+ --spacing-section: var(--ui-space-section);
85
+
86
+ --shadow-card: var(--ui-shadow-card);
87
+ --shadow-pop: var(--ui-shadow-pop);
88
+
89
+ --default-transition-duration: 150ms;
90
+ --default-transition-timing-function: ease-out;
91
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mamba-layout",
3
- "version": "0.47.0",
3
+ "version": "0.49.0",
4
4
  "description": "Shared Mamba Vue layout shell and standalone browser layout.",
5
5
  "private": false,
6
6
  "type": "module",
@@ -21,7 +21,8 @@
21
21
  "types": "./dist/index.d.ts",
22
22
  "import": "./dist/index.js"
23
23
  },
24
- "./styles": "./dist/layout.css",
24
+ "./styles.css": "./dist/layout.css",
25
+ "./theme.css": "./dist/theme.css",
25
26
  "./layout.css": "./dist/layout.css",
26
27
  "./layout.global.js": "./dist/layout.global.js"
27
28
  },
@@ -61,6 +62,7 @@
61
62
  "typescript": "~5.8.3",
62
63
  "vite": "^6.3.5",
63
64
  "vite-plugin-dts": "^4.5.4",
65
+ "vite-plugin-static-copy": "^4.1.0",
64
66
  "vue": "^3.5.13",
65
67
  "vue-i18n": "11",
66
68
  "vue-router": "^4.5.0",