@tmlmobilidade/ui 20250305.1754.42 → 20250305.1809.16
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 +21 -12
- 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/lib/generate-icon.d.ts +1 -0
- package/dist/esm/index.js +11 -2
- 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/lib/generate-icon.d.ts +1 -0
- package/dist/index.d.ts +1 -1
- package/dist/styles.css +4 -0
- package/package.json +1 -1
@@ -0,0 +1 @@
|
|
1
|
+
export declare function generateIcon(name: string): React.ReactNode;
|
package/dist/index.d.ts
CHANGED
@@ -380,7 +380,7 @@ declare function DataTable<T>({ records, ...props }: DataTableProps<T>): react_j
|
|
380
380
|
interface SidebarItemProps {
|
381
381
|
disabled?: boolean;
|
382
382
|
href: string;
|
383
|
-
icon: React.ReactNode;
|
383
|
+
icon: React.ReactNode | string;
|
384
384
|
label: string;
|
385
385
|
}
|
386
386
|
interface SidebarProps {
|
package/dist/styles.css
CHANGED