@umituz/web-design-system 3.1.0 → 3.1.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": "3.1.0",
3
+ "version": "3.1.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",
@@ -17,7 +17,7 @@ import {
17
17
  } from './Table';
18
18
  import { Button } from '../atoms/Button';
19
19
  import { ChevronLeft, ChevronRight, ChevronsLeft, ChevronsRight } from 'lucide-react';
20
- import type { BaseProps, SizeVariant, ColorVariant } from '../../domain/types';
20
+ import type { BaseProps, ColorVariant } from '../../domain/types';
21
21
  import type { MediumSizes } from '../../infrastructure/constants';
22
22
 
23
23
  export interface Column<T> {
@@ -94,14 +94,14 @@ export const MainNavbar = ({
94
94
 
95
95
  {/* Desktop Menu */}
96
96
  <Show above="lg">
97
- <div className="flex items-center space-x-6">
97
+ <div className="flex items-center gap-6 lg:gap-8">
98
98
  {navItemsMemo.map((item) => {
99
99
  const isActive = location.pathname === item.path;
100
100
  return (
101
101
  <Link
102
102
  key={item.path}
103
103
  to={item.path}
104
- className={`font-medium transition-colors transition-theme ${
104
+ className={`font-medium transition-colors transition-theme whitespace-nowrap ${
105
105
  isActive ? 'text-primary-light' : 'text-text-secondary hover:text-primary-light'
106
106
  }`}
107
107
  >