@ceedcv-maya/shared-layout-react 0.3.0 → 0.3.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/package.json +2 -2
- package/src/index.ts +1 -0
- package/src/navIcons.tsx +7 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ceedcv-maya/shared-layout-react",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "src/index.ts",
|
|
6
6
|
"types": "src/index.ts",
|
|
@@ -37,7 +37,7 @@
|
|
|
37
37
|
"publishConfig": {
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
|
-
"description": "App layout primitives for React: AppShell, useDarkMode, Sidebar slot, header/topbar widgets
|
|
40
|
+
"description": "App layout primitives for React: AppShell, useDarkMode, Sidebar slot, header/topbar widgets — wired to shared-auth/UI by props.",
|
|
41
41
|
"keywords": [
|
|
42
42
|
"react",
|
|
43
43
|
"layout",
|
package/src/index.ts
CHANGED
package/src/navIcons.tsx
CHANGED
|
@@ -104,3 +104,10 @@ export const AppsIcon = () => (
|
|
|
104
104
|
<path d="M7 3a1 1 0 000 2h6a1 1 0 100-2H7zM4 7a1 1 0 011-1h10a1 1 0 110 2H5a1 1 0 01-1-1zM2 11a2 2 0 012-2h12a2 2 0 012 2v4a2 2 0 01-2 2H4a2 2 0 01-2-2v-4z" />
|
|
105
105
|
</svg>
|
|
106
106
|
);
|
|
107
|
+
|
|
108
|
+
/** Icono de campana — usado por maya_dashboard (notificaciones) */
|
|
109
|
+
export const BellIcon = () => (
|
|
110
|
+
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" fill="currentColor" className="w-[22px] h-[22px]">
|
|
111
|
+
<path d="M10 2a6 6 0 00-6 6v3.586l-.707.707A1 1 0 004 14h12a1 1 0 00.707-1.707L16 11.586V8a6 6 0 00-6-6zM10 18a3 3 0 01-3-3h6a3 3 0 01-3 3z" />
|
|
112
|
+
</svg>
|
|
113
|
+
);
|