@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/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/App.tsx +3 -3
- package/src/components/{MainSidebarLayout.tsx → basicComponents/MainSidebarLayout.tsx} +2 -2
- package/src/index.ts +4 -4
- /package/src/components/{CustomButton.tsx → basicComponents/CustomButton.tsx} +0 -0
- /package/src/components/{Footer.tsx → basicComponents/Footer.tsx} +0 -0
- /package/src/components/{MainNav.tsx → basicComponents/MainNav.tsx} +0 -0
package/package.json
CHANGED
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
|
|
6
|
+
} from "@/components/basicComponents/CustomButton"
|
|
7
7
|
export {
|
|
8
8
|
MainNav,
|
|
9
9
|
type NavItem,
|
|
10
10
|
type MainNavProps,
|
|
11
|
-
} from "@/components/MainNav
|
|
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
|
|
17
|
+
} from "@/components/basicComponents/Footer"
|
|
18
18
|
export {
|
|
19
19
|
MainSidebarLayout,
|
|
20
20
|
type MainSidebarLayoutProps,
|
|
21
|
-
} from "@/components/MainSidebarLayout
|
|
21
|
+
} from "@/components/basicComponents/MainSidebarLayout"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|