@marketrix.ai/widget 3.8.485 → 3.8.487

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": "@marketrix.ai/widget",
3
- "version": "3.8.485",
3
+ "version": "3.8.487",
4
4
  "type": "module",
5
5
  "sideEffects": false,
6
6
  "main": "./dist/widget.mjs",
@@ -22,14 +22,13 @@
22
22
  "tag": "bash scripts/release.sh",
23
23
  "start": "vite",
24
24
  "build": "vite build",
25
- "ci": "npm run type-check && npm run lint:check && npm run build && npm run format:check && npm run test:run && npm run bundle:check",
25
+ "ci": "npm run type-check && npm run lint:check && npm run build && npm run format:check && npm run test && npm run bundle:check",
26
26
  "lint": "eslint . --max-warnings 200 --fix",
27
27
  "lint:check": "eslint . --max-warnings 0",
28
28
  "check": "tsc --noEmit",
29
29
  "type-check": "tsc --noEmit",
30
- "test": "vitest",
31
- "test:run": "vitest run",
32
- "test:ui": "vitest --watch",
30
+ "test": "vitest run",
31
+ "test:watch": "vitest",
33
32
  "test:coverage": "vitest run --coverage",
34
33
  "format": "prettier --write .",
35
34
  "format:check": "prettier --check .",
@@ -1,6 +0,0 @@
1
- import React from 'react';
2
- import { type ResizeCorner } from '../../hooks/useResize';
3
- export interface ResizeHandlesProps {
4
- onResizeStart: (corner: ResizeCorner) => (e: React.MouseEvent) => void;
5
- }
6
- export declare const ResizeHandles: React.FC<ResizeHandlesProps>;
@@ -1,2 +0,0 @@
1
- export { useSyncExternalStore } from 'react';
2
- export declare function useSyncExternalStoreWithSelector(): never;