@umituz/web-design-system 2.6.1 → 2.6.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@umituz/web-design-system",
3
- "version": "2.6.1",
3
+ "version": "2.6.3",
4
4
  "private": false,
5
5
  "description": "Web Design System - Atomic Design components (Atoms, Molecules, Organisms, Templates) for React applications",
6
6
  "main": "./src/index.ts",
@@ -3,7 +3,7 @@
3
3
  * @description Navigation breadcrumb with home icon
4
4
  */
5
5
 
6
- // @ts-expect-error - react-router-dom is a peer dependency
6
+ // @ts-ignore - react-router-dom is a peer dependency, may not be available during package build
7
7
  import { Link } from 'react-router-dom';
8
8
  import type { BaseProps } from '../../domain/types';
9
9
 
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  import { useState, useEffect, useRef, useMemo } from 'react';
7
- // @ts-expect-error - react-router-dom is a peer dependency
7
+ // @ts-ignore - react-router-dom is a peer dependency, may not be available during package build
8
8
  import { Link, useLocation } from 'react-router-dom';
9
9
  import React from 'react';
10
10
  import type { BaseProps } from '../../domain/types';
@@ -199,7 +199,7 @@ export const MainNavbar = ({
199
199
  {/* Mobile Button */}
200
200
  <button
201
201
  onClick={() => setIsOpen(!isOpen)}
202
- className="md:hidden text-text-secondary"
202
+ className="max-md:flex text-text-secondary hidden"
203
203
  type="button"
204
204
  aria-label="Toggle menu"
205
205
  >
@@ -9,7 +9,7 @@ import { cn } from '../../infrastructure/utils';
9
9
  import { Card, CardContent } from './Card';
10
10
  import { Progress } from '../atoms';
11
11
  import { ArrowUpRight, ArrowDownRight } from 'lucide-react';
12
- import type { BaseProps, ColorVariant, SizeVariant } from '../../domain/types';
12
+ import type { BaseProps, SizeVariant } from '../../domain/types';
13
13
 
14
14
  export interface StatCardProps extends BaseProps {
15
15
  title: string;