@tmlmobilidade/ui 20250306.1249.35 → 20250306.1453.58
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/cjs/index.js +2 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/types/src/components/layout/Sidebar/index.d.ts +1 -1
- package/dist/cjs/types/src/components/layout/index.d.ts +1 -0
- package/dist/esm/index.js +2 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/types/src/components/layout/Sidebar/index.d.ts +1 -1
- package/dist/esm/types/src/components/layout/index.d.ts +1 -0
- package/dist/index.d.ts +2 -2
- package/package.json +1 -1
@@ -7,4 +7,4 @@ export interface SidebarItemProps {
|
|
7
7
|
export interface SidebarProps {
|
8
8
|
items: SidebarItemProps[];
|
9
9
|
}
|
10
|
-
export default function Sidebar({ items, }: SidebarProps): import("react/jsx-runtime").JSX.Element;
|
10
|
+
export default function Sidebar({ items, }: SidebarProps): import("react/jsx-runtime").JSX.Element | null;
|
@@ -1,6 +1,7 @@
|
|
1
1
|
export { default as AppWrapper } from './AppWrapper';
|
2
2
|
export { default as Grid } from './Grid';
|
3
3
|
export { default as Section } from './Section';
|
4
|
+
export { SidebarItemProps } from './Sidebar';
|
4
5
|
export { default as Sidebar } from './Sidebar';
|
5
6
|
export { SimpleSurface } from './SimpleSurface';
|
6
7
|
export { default as Spacer } from './Spacer';
|
package/dist/index.d.ts
CHANGED
@@ -388,7 +388,7 @@ interface SidebarItemProps {
|
|
388
388
|
interface SidebarProps {
|
389
389
|
items: SidebarItemProps[];
|
390
390
|
}
|
391
|
-
declare function Sidebar({ items, }: SidebarProps): react_jsx_runtime.JSX.Element;
|
391
|
+
declare function Sidebar({ items, }: SidebarProps): react_jsx_runtime.JSX.Element | null;
|
392
392
|
|
393
393
|
interface HeaderProps {
|
394
394
|
user_name?: string;
|
@@ -575,4 +575,4 @@ declare function useSearchQuery<T>(data: T[], { accessors, customSearch, debounc
|
|
575
575
|
setSearchQuery: React$1.Dispatch<React$1.SetStateAction<string | undefined>>;
|
576
576
|
};
|
577
577
|
|
578
|
-
export { ActionIcon, AppWrapper, Badge, Button, CMIcon, CMLogo, Checkbox, ComboboxComponent as Combobox, type DataItem, DataTable, type DataTableColumn, type DataTableColumnProps, type DataTableHeaderProps, type DataTableProps, type DataTableRowProps, type DataTableSearchProps, type DataTableTitleProps, DateTimePicker, DeleteActionIcon, Description, FileButton, Grid, Label, Menu, PasswordInput, Section, SegmentedControl, Sidebar, SimpleSurface, Slider, Spacer, Surface, Switch, TMLogo, TMLogoDark, TMLogoLight, Tag, Text, Component$1 as TextArea, Component as TextInput, ThemeDark, ThemeLight, ThemeProvider, ThemeSwitcher, Themer, type ToastPromiseParams, type ToastProps, Tooltip, useScreenSize, useSearchQuery, useTheme, useToast };
|
578
|
+
export { ActionIcon, AppWrapper, Badge, Button, CMIcon, CMLogo, Checkbox, ComboboxComponent as Combobox, type DataItem, DataTable, type DataTableColumn, type DataTableColumnProps, type DataTableHeaderProps, type DataTableProps, type DataTableRowProps, type DataTableSearchProps, type DataTableTitleProps, DateTimePicker, DeleteActionIcon, Description, FileButton, Grid, Label, Menu, PasswordInput, Section, SegmentedControl, Sidebar, type SidebarItemProps, SimpleSurface, Slider, Spacer, Surface, Switch, TMLogo, TMLogoDark, TMLogoLight, Tag, Text, Component$1 as TextArea, Component as TextInput, ThemeDark, ThemeLight, ThemeProvider, ThemeSwitcher, Themer, type ToastPromiseParams, type ToastProps, Tooltip, useScreenSize, useSearchQuery, useTheme, useToast };
|