@monarkmarkets/marketplace 2.0.19 → 2.0.20

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.
@@ -1 +1 @@
1
- export declare const LoadingSpinner: () => import("react/jsx-runtime").JSX.Element;
1
+ export declare const LoadingSpinner: () => import("react").JSX.Element;
@@ -11,5 +11,5 @@ interface TableHeaderProps {
11
11
  * It renders a header row with configurable column titles and styling.
12
12
  * @param columns - Array of column configurations with titles and optional widths
13
13
  */
14
- export declare const TableHeaders: React.MemoExoticComponent<({ columns }: TableHeaderProps) => import("react/jsx-runtime").JSX.Element>;
14
+ export declare const TableHeaders: React.MemoExoticComponent<({ columns }: TableHeaderProps) => React.JSX.Element>;
15
15
  export {};
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  import { PrimaryTableProps } from "../types/types";
2
3
  /**
3
4
  * PrimaryTable component displays a table of SPV investment opportunities.
4
5
  * It includes table headers and rows with built-in data fetching using the usePrimaryCompany hook.
5
6
  */
6
- export declare const PrimaryTable: ({ investorId, onButtonClick, buttonText, isLoading: externalLoading, initialPage, pageSize, searchTerm, onPageChange, onDataLoaded }: PrimaryTableProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const PrimaryTable: ({ investorId, onButtonClick, buttonText, isLoading: externalLoading, initialPage, pageSize, searchTerm, onPageChange, onDataLoaded }: PrimaryTableProps) => React.JSX.Element;
@@ -1,6 +1,7 @@
1
+ import React from "react";
1
2
  import { PrivateTableProps } from "../types/types";
2
3
  /**
3
4
  * PrivateTable component displays a table of pre-IPO companies with pagination and loading states.
4
5
  * It includes table headers, rows, and pagination controls using the usePrivateCompanies hook.
5
6
  */
6
- export declare const PrivateTable: ({ investorId, onButtonClick, buttonText, isLoading: externalLoading, initialPage, pageSize, searchTerm, onPageChange, onDataLoaded, listingType, isActive, }: PrivateTableProps) => import("react/jsx-runtime").JSX.Element;
7
+ export declare const PrivateTable: ({ investorId, onButtonClick, buttonText, isLoading: externalLoading, initialPage, pageSize, searchTerm, onPageChange, onDataLoaded, listingType, isActive, }: PrivateTableProps) => React.JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@monarkmarkets/marketplace",
3
- "version": "2.0.19",
3
+ "version": "2.0.20",
4
4
  "description": "Marketplace component for Monark Markets",
5
5
  "keywords": [
6
6
  "marketplace",
@@ -39,26 +39,26 @@
39
39
  },
40
40
  "dependencies": {
41
41
  "@monarkmarkets/api-client": "1.3.55",
42
- "lucide-react": "1.8.0",
42
+ "lucide-react": "1.17.0",
43
43
  "tslib": "2.8.1"
44
44
  },
45
45
  "devDependencies": {
46
- "@babel/core": "7.29.0",
47
- "@babel/preset-react": "7.28.5",
48
- "@babel/preset-typescript": "7.28.5",
49
- "@rollup/plugin-babel": "7.0.0",
50
- "@rollup/plugin-commonjs": "29.0.2",
46
+ "@babel/core": "7.29.7",
47
+ "@babel/preset-react": "7.29.7",
48
+ "@babel/preset-typescript": "7.29.7",
49
+ "@rollup/plugin-babel": "7.1.0",
50
+ "@rollup/plugin-commonjs": "29.0.3",
51
51
  "@rollup/plugin-node-resolve": "16.0.3",
52
52
  "@rollup/plugin-typescript": "12.3.0",
53
53
  "@types/lodash": "4.17.24",
54
- "@types/react": "19.2.14",
54
+ "@types/react": "19.2.16",
55
55
  "@types/react-dom": "19.2.3",
56
56
  "lodash": "4.18.1",
57
- "react": "19.2.5",
58
- "react-dom": "19.2.5",
57
+ "react": "19.2.7",
58
+ "react-dom": "19.2.7",
59
59
  "rimraf": "6.1.3",
60
- "rollup": "4.60.1",
60
+ "rollup": "4.61.0",
61
61
  "tslib": "2.8.1",
62
- "typescript": "6.0.2"
62
+ "typescript": "6.0.3"
63
63
  }
64
64
  }