@imj_media/tareas 1.5.55 → 1.5.56

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@imj_media/tareas",
3
3
  "private": false,
4
- "version": "1.5.55",
4
+ "version": "1.5.56",
5
5
  "scripts": {
6
6
  "build": "tsc && vite build && npm run build:css",
7
7
  "build:css": "tailwindcss -m -i ./src/tailwind.css -o ./dist/tareas.css",
@@ -30,12 +30,13 @@
30
30
  "files": [
31
31
  "dist"
32
32
  ],
33
+ "peerDependencies": {
34
+ "@imj_media/ui": "^1.7.0"
35
+ },
33
36
  "dependencies": {
34
37
  "@fortawesome/free-solid-svg-icons": "^6.7.2",
35
38
  "@fortawesome/pro-duotone-svg-icons": "^7.1.0",
36
39
  "@fortawesome/react-fontawesome": "^3.1.1",
37
- "@imj_media/imj-ui": "1.2.0",
38
- "@imj_media/tasks-modules": "^3.0.16",
39
40
  "@tanstack/react-query": "^5.62.3",
40
41
  "@xyflow/react": "^12.6.0",
41
42
  "axios": "^1.7.9",
@@ -52,6 +53,7 @@
52
53
  "vite-plugin-dts": "^4.4.0"
53
54
  },
54
55
  "devDependencies": {
56
+ "@imj_media/ui": "^1.7.0",
55
57
  "@chromatic-com/storybook": "^3.2.2",
56
58
  "@eslint/js": "^9.15.0",
57
59
  "@storybook/addon-essentials": "^8.4.6",
@@ -1,11 +0,0 @@
1
- import { Icons } from '@imj_media/tasks-modules';
2
- type TOptionsIcons = Parameters<typeof Icons>[0]['icon'];
3
- interface ButtonTooltipProps {
4
- icon: TOptionsIcons;
5
- label: string;
6
- variant?: 'primary' | 'success' | 'danger' | 'warning';
7
- onClick?: () => void;
8
- disabled?: boolean;
9
- }
10
- export declare const ButtonTooltip: ({ icon, label, variant, onClick, disabled }: ButtonTooltipProps) => import("react/jsx-runtime").JSX.Element;
11
- export {};
@@ -1,4 +0,0 @@
1
- declare const PauseTaskButton: ({ id }: {
2
- id: number;
3
- }) => import("react/jsx-runtime").JSX.Element;
4
- export default PauseTaskButton;
@@ -1,8 +0,0 @@
1
- type DropdownProps = {
2
- trigger: React.ReactNode;
3
- children: React.ReactNode;
4
- open: boolean;
5
- setOpen: (open: boolean) => void;
6
- };
7
- export default function Dropdown({ trigger, children, open, setOpen }: DropdownProps): import("react/jsx-runtime").JSX.Element;
8
- export {};
@@ -1,20 +0,0 @@
1
- import { default as React } from 'react';
2
- type CloseIconsType = 'default' | 'circle';
3
- type Sizes = 'sm' | 'md' | 'lg' | 'xl' | 'full';
4
- interface Props {
5
- open: boolean;
6
- handleChange: (open: boolean) => void;
7
- children: React.ReactNode;
8
- size?: Sizes;
9
- title?: string;
10
- isButtonClose?: boolean;
11
- closeIcon?: CloseIconsType;
12
- dialogClassName?: string;
13
- contentClassName?: string;
14
- headerClassName?: string;
15
- noMinHeight?: boolean;
16
- titleClassName?: string;
17
- descriptionClassName?: string;
18
- }
19
- export declare function Modal({ handleChange, open, size, title, children, noMinHeight, dialogClassName, contentClassName, headerClassName, titleClassName, isButtonClose, descriptionClassName, closeIcon }: Props): import("react/jsx-runtime").JSX.Element;
20
- export {};