@eintrek/erp-theme 1.0.0 → 1.0.1

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": "@eintrek/erp-theme",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "A shadcn/ui component library with Storybook",
@@ -56,7 +56,8 @@
56
56
  "rollup-plugin-postcss": "^4.0.2",
57
57
  "rollup-plugin-typescript2": "^0.36.0",
58
58
  "storybook": "^9.0.9",
59
- "tailwindcss": "^3.4.0",
59
+ "@tailwindcss/postcss": "^4.1.10",
60
+ "tailwindcss": "^4.0.0",
60
61
  "typescript": "^5.3.3"
61
62
  },
62
63
  "dependencies": {
@@ -1,6 +0,0 @@
1
- import { HTMLAttributes } from 'react';
2
- export interface BadgeProps extends HTMLAttributes<HTMLDivElement> {
3
- variant?: 'default' | 'primary' | 'secondary' | 'success' | 'warning' | 'destructive';
4
- }
5
- declare const Badge: import("react").ForwardRefExoticComponent<BadgeProps & import("react").RefAttributes<HTMLDivElement>>;
6
- export { Badge };
@@ -1,7 +0,0 @@
1
- import { ButtonHTMLAttributes } from 'react';
2
- export interface ButtonProps extends ButtonHTMLAttributes<HTMLButtonElement> {
3
- variant?: 'default' | 'destructive' | 'outline' | 'secondary' | 'ghost' | 'link';
4
- size?: 'default' | 'sm' | 'lg' | 'icon';
5
- }
6
- declare const Button: import("react").ForwardRefExoticComponent<ButtonProps & import("react").RefAttributes<HTMLButtonElement>>;
7
- export { Button };
@@ -1,11 +0,0 @@
1
- import React from 'react';
2
- export interface TabItem {
3
- label: string;
4
- }
5
- export interface TabsProps {
6
- tabs: TabItem[];
7
- activeIndex: number;
8
- onTabChange: (index: number) => void;
9
- className?: string;
10
- }
11
- export declare const Tabs: React.FC<TabsProps>;
File without changes