@sfperusacdev/sf-ui 0.1.16 → 0.1.18
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/sf-ui.css +1 -1
- package/dist/sf-ui.js +3263 -3259
- package/dist/sf-ui.js.map +1 -1
- package/dist/sf-ui.umd.cjs +1 -1
- package/dist/sf-ui.umd.cjs.map +1 -1
- package/dist/types/src/components/layout/AppShell.d.ts +5 -0
- package/package.json +1 -1
|
@@ -5,6 +5,11 @@ export type AppShellNavItem = {
|
|
|
5
5
|
label: string;
|
|
6
6
|
icon?: ReactNode;
|
|
7
7
|
badge?: number | string;
|
|
8
|
+
/**
|
|
9
|
+
* Dibuja una línea separadora ANTES de este item: sirve para agrupar un
|
|
10
|
+
* submenú largo sin cabeceras de sección. Se ignora en el primer item.
|
|
11
|
+
*/
|
|
12
|
+
dividerBefore?: boolean;
|
|
8
13
|
};
|
|
9
14
|
export type AppShellCategory = {
|
|
10
15
|
id: string;
|
package/package.json
CHANGED