meyi-insight-ui-dev 1.0.20 → 1.0.21

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": "meyi-insight-ui-dev",
3
3
  "private": false,
4
- "version": "1.0.20",
4
+ "version": "1.0.21",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "module": "./dist/index.mjs",
@@ -1,15 +0,0 @@
1
- import { Connector } from './types.js';
2
- export declare function AccessBadge({ status }: {
3
- status: string;
4
- }): import("react/jsx-runtime").JSX.Element;
5
- export declare function STSBadge({ status }: {
6
- status: string;
7
- }): import("react/jsx-runtime").JSX.Element;
8
- export declare function DiscoveryBadge({ status }: {
9
- status?: string;
10
- }): import("react/jsx-runtime").JSX.Element | null;
11
- interface ConnectorCardProps {
12
- connector: Connector;
13
- }
14
- export declare function ConnectorCard({ connector }: ConnectorCardProps): import("react/jsx-runtime").JSX.Element;
15
- export {};
@@ -1,11 +0,0 @@
1
- type FilterOption = "all" | "active" | "failed" | "pending";
2
- interface Props {
3
- search: string;
4
- onSearchChange: (value: string) => void;
5
- statusFilter: FilterOption;
6
- onStatusFilterChange: (value: FilterOption) => void;
7
- onRefresh?: () => void;
8
- loading?: boolean;
9
- }
10
- export declare function ConnectorFilters({ search, onSearchChange, statusFilter, onStatusFilterChange, onRefresh, loading, }: Props): import("react/jsx-runtime").JSX.Element;
11
- export {};
@@ -1,6 +0,0 @@
1
- import { Connector } from '../types.js';
2
- interface ConnectorGroupedListProps {
3
- connectors: Connector[];
4
- }
5
- export declare function ConnectorGroupedList({ connectors }: ConnectorGroupedListProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,3 +0,0 @@
1
- import { ColumnDef } from '@tanstack/react-table';
2
- import { Connector } from '../types.js';
3
- export declare function getConnectorsColumns(): ColumnDef<Connector>[];
@@ -1,6 +0,0 @@
1
- import { Connector } from '../types.js';
2
- interface ConnectorsTableProps {
3
- data: Connector[];
4
- }
5
- export declare function ConnectorsTable({ data, }: ConnectorsTableProps): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,7 +0,0 @@
1
- import { Connector } from '../types.js';
2
- interface Props {
3
- connector: Connector;
4
- onBack: () => void;
5
- }
6
- export declare function ConnectorDetailHeader({ connector, onBack }: Props): import("react/jsx-runtime").JSX.Element;
7
- export {};
@@ -1,5 +0,0 @@
1
- interface Props {
2
- connectorId: string;
3
- }
4
- export declare function ConnectorDetailPage({ connectorId }: Props): import("react/jsx-runtime").JSX.Element;
5
- export {};
@@ -1,6 +0,0 @@
1
- import { Connector } from '../types.js';
2
- interface Props {
3
- connector: Connector;
4
- }
5
- export declare function ConnectorOverviewTab({ connector }: Props): import("react/jsx-runtime").JSX.Element;
6
- export {};
@@ -1,7 +0,0 @@
1
- import { Connector } from '../types.js';
2
- interface Props {
3
- connector: Connector;
4
- onRefreshDiscovery?: () => void;
5
- }
6
- export declare function ConnectorTopologyTab({ connector, onRefreshDiscovery }: Props): import("react/jsx-runtime").JSX.Element;
7
- export {};
@@ -1 +0,0 @@
1
- export declare function InsightConnectorsPage(): import("react/jsx-runtime").JSX.Element;
@@ -1 +0,0 @@
1
- export declare function ProviderManager(): import("react/jsx-runtime").JSX.Element;