@sykoramaros/marosh-components 0.1.5 → 0.1.7

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@sykoramaros/marosh-components",
3
3
  "private": false,
4
- "version": "0.1.5",
4
+ "version": "0.1.7",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
package/src/App.tsx CHANGED
@@ -1,10 +1,10 @@
1
1
  // import "./App.css"
2
2
 
3
3
  import { Button } from "@/components/ui/button"
4
- import { CustomButton } from "@/components/CustomButton"
5
- import { MainNav } from "@/components/MainNav"
4
+ import { CustomButton } from "@/components/basicComponents/CustomButton"
5
+ import { MainNav } from "@/components/basicComponents/MainNav"
6
6
  import { Menu } from "lucide-react"
7
- import { Footer } from "@/components/Footer"
7
+ import { Footer } from "@/components/basicComponents/Footer"
8
8
  export const App = () => {
9
9
  return (
10
10
  <>
@@ -11,8 +11,8 @@ import {
11
11
  SidebarProvider,
12
12
  } from "@/components/ui/sidebar"
13
13
  import { Link, Outlet } from "@tanstack/react-router"
14
- import { MainNav, type NavItem } from "@/components/MainNav"
15
- import { Footer, type FooterProps } from "@/components/Footer"
14
+ import { MainNav, type NavItem } from "@/components/basicComponents/MainNav"
15
+ import { Footer, type FooterProps } from "@/components/basicComponents/Footer"
16
16
 
17
17
  export interface MainSidebarLayoutProps {
18
18
  useSidebar?: boolean
package/src/index.ts CHANGED
@@ -3,19 +3,19 @@ export { Link } from "@tanstack/react-router"
3
3
  export {
4
4
  CustomButton,
5
5
  type CustomButtonProps,
6
- } from "@/components/CustomButton.tsx"
6
+ } from "@/components/basicComponents/CustomButton"
7
7
  export {
8
8
  MainNav,
9
9
  type NavItem,
10
10
  type MainNavProps,
11
- } from "@/components/MainNav.tsx"
11
+ } from "@/components/basicComponents/MainNav"
12
12
  export {
13
13
  Footer,
14
14
  type FooterProps,
15
15
  type FooterLinks,
16
16
  type FooterSocial,
17
- } from "@/components/Footer.tsx"
17
+ } from "@/components/basicComponents/Footer"
18
18
  export {
19
19
  MainSidebarLayout,
20
20
  type MainSidebarLayoutProps,
21
- } from "@/components/MainSidebarLayout.tsx"
21
+ } from "@/components/basicComponents/MainSidebarLayout"