@dilipod/ui 0.3.2 → 0.3.3
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/index.d.ts +2 -2
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +0 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/index.ts +2 -5
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -121,13 +121,10 @@ export {
|
|
|
121
121
|
DropdownMenuRadioGroup,
|
|
122
122
|
} from './components/dropdown-menu'
|
|
123
123
|
|
|
124
|
-
export {
|
|
125
|
-
Sidebar,
|
|
126
|
-
SidebarNavItem,
|
|
127
|
-
} from './components/sidebar'
|
|
124
|
+
export { Sidebar } from './components/sidebar'
|
|
128
125
|
export type {
|
|
129
126
|
SidebarProps,
|
|
130
|
-
SidebarNavItem
|
|
127
|
+
SidebarNavItem,
|
|
131
128
|
SidebarNavItemProps,
|
|
132
129
|
} from './components/sidebar'
|
|
133
130
|
|