jclib-ui 1.0.7 → 1.0.8
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/ScrollContainer/ScrollContainer.d.ts +1 -6
- package/dist/index.d.ts +1 -0
- package/dist/jclib-ui.css +1 -1
- package/dist/jclib-ui.es.js +346 -7
- package/dist/jclib-ui.es.js.map +1 -1
- package/dist/jclib-ui.umd.js +12 -12
- package/dist/jclib-ui.umd.js.map +1 -1
- package/package.json +1 -1
|
@@ -1,9 +1,4 @@
|
|
|
1
1
|
export function ScrollContainer({ children, hasMaxWidth }: {
|
|
2
2
|
children: any;
|
|
3
|
-
hasMaxWidth
|
|
3
|
+
hasMaxWidth?: boolean | undefined;
|
|
4
4
|
}): import("react/jsx-runtime").JSX.Element;
|
|
5
|
-
export namespace ScrollContainer {
|
|
6
|
-
namespace defaultProps {
|
|
7
|
-
const hasMaxWidth: boolean;
|
|
8
|
-
}
|
|
9
|
-
}
|
package/dist/index.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export { useLocalStorage, useSessionStorage } from './hooks/useStorage';
|
|
|
62
62
|
export { default as useApi } from './hooks/useApi';
|
|
63
63
|
export { cache } from './hooks/cache';
|
|
64
64
|
export { default as Navbar } from './navbar/Navbar';
|
|
65
|
+
export { default as NavbarMU } from './navbar-mu/NavbarMU';
|
|
65
66
|
export { createMenuOptions } from './navbar/OpcoesMenu';
|
|
66
67
|
/**
|
|
67
68
|
* ------- Verificar --------
|