@sanvika/ui 0.1.1 → 0.1.2

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,6 +1,6 @@
1
1
  {
2
2
  "name": "@sanvika/ui",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "type": "module",
5
5
  "private": false,
6
6
  "description": "Sanvika Production — shared UI component library for 50+ projects. Pure JS, CSS Modules, props-driven.",
@@ -1,7 +1,7 @@
1
1
  // src/components/buttons/FavoriteHeartButton.jsx
2
2
  import React from "react";
3
- import HeartIcon from "../icons/HeartIcon";
4
- import Button from "./Button";
3
+ import HeartIcon from "../icons/HeartIcon.jsx";
4
+ import Button from "./Button.jsx";
5
5
  import styles from "../../styles/components/buttons/FavoriteHeartButton.module.css";
6
6
 
7
7
  /**
@@ -1,6 +1,6 @@
1
1
  // src/components/buttons/ScrollButton.jsx
2
2
  import React from "react";
3
- import Button from "./Button";
3
+ import Button from "./Button.jsx";
4
4
  import { FaArrowUp, FaArrowDown } from "../icons/index.js";
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  // src/components/buttons/ThreeDotButton.jsx
2
2
  import React from "react";
3
- import Button from "./Button";
3
+ import Button from "./Button.jsx";
4
4
  import styles from "../../styles/components/buttons/ThreeDotButton.module.css";
5
5
 
6
6
  /**
@@ -1,6 +1,6 @@
1
1
  // src/components/common/Section.jsx
2
2
  import styles from "../../styles/components/common/Section.module.css";
3
- import Container from "./Container";
3
+ import Container from "./Container.jsx";
4
4
 
5
5
  /**
6
6
  * Section — a full-width page section with optional title/subtitle.
@@ -1,6 +1,6 @@
1
1
  "use client";
2
2
  // src/components/layout/Navbar.jsx
3
- import { useTheme } from "../../context/ThemeContext";
3
+ import { useTheme } from "../../context/ThemeContext.jsx";
4
4
  import styles from "../../styles/components/layouts/Navbar.module.css";
5
5
 
6
6
  const DEFAULT_NAV_LINKS = [{ href: "/", label: "Home" }];