shekel-fe-shared-lib 1.0.0 → 1.0.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.
@@ -0,0 +1,12 @@
1
+ import { default as React } from 'react';
2
+ export interface TableTopProps {
3
+ title?: string;
4
+ description?: string;
5
+ searchPlaceholder?: string;
6
+ onSearch?: (value: string) => void;
7
+ actions?: React.ReactNode;
8
+ filters?: React.ReactNode;
9
+ className?: string;
10
+ }
11
+ export declare const TableTop: React.FC<TableTopProps>;
12
+ export default TableTop;
@@ -1,2 +1,28 @@
1
1
  export { Button } from './Button';
2
- export type { CustomButtonProps } from './Button';
2
+ export type { ButtonProps } from './Button';
3
+ export { StatCard } from './StatCard';
4
+ export type { StatCardProps } from './StatCard';
5
+ export { SearchInput } from './SearchInput';
6
+ export type { SearchInputProps } from './SearchInput';
7
+ export { Card } from './Card';
8
+ export type { CardProps } from './Card';
9
+ export { Dropdown } from './Dropdown';
10
+ export type { DropdownProps, DropdownMenuItem } from './Dropdown';
11
+ export { Select } from './Select';
12
+ export type { SelectProps, SelectOption } from './Select';
13
+ export { Table } from './Table';
14
+ export type { TableProps, ColumnDef, PaginationConfig } from './Table';
15
+ export { TableTop } from './TableTop';
16
+ export type { TableTopProps } from './TableTop';
17
+ export { Modal } from './Modal';
18
+ export type { ModalProps } from './Modal';
19
+ export { Badge } from './Badge';
20
+ export type { BadgeProps } from './Badge';
21
+ export { Steps } from './Steps';
22
+ export type { StepsProps, StepItem } from './Steps';
23
+ export { Progress } from './Progress';
24
+ export type { ProgressProps } from './Progress';
25
+ export { Checkbox } from './Checkbox';
26
+ export type { CheckboxProps } from './Checkbox';
27
+ export { SelectedItemsList } from './SelectedItemsList';
28
+ export type { SelectedItemsListProps, SelectedItem } from './SelectedItemsList';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "shekel-fe-shared-lib",
3
- "version": "1.0.0",
4
- "description": "Shared component library built with Ant Design and Tailwind CSS",
3
+ "version": "1.0.2",
4
+ "description": "Shared component library built with React and Tailwind CSS",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
7
7
  "module": "./dist/index.mjs",
@@ -24,7 +24,6 @@
24
24
  "keywords": [
25
25
  "react",
26
26
  "components",
27
- "antd",
28
27
  "tailwindcss",
29
28
  "ui"
30
29
  ],
@@ -44,7 +43,6 @@
44
43
  "vite-plugin-dts": "^4.5.4"
45
44
  },
46
45
  "peerDependencies": {
47
- "antd": "^6.0.0",
48
46
  "react": "^19.2.0",
49
47
  "react-dom": "^19.2.0"
50
48
  }