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/dist/features/connectors/connector.service.d.ts +2 -27
- package/dist/features/connectors/types.d.ts +6 -15
- package/dist/features/settings/index.d.ts +1 -1
- package/dist/index.js +124 -124
- package/dist/index.mjs +18585 -19947
- package/dist/router.d.ts +1 -1
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/dist/features/connectors/ConnectorCard.d.ts +0 -15
- package/dist/features/connectors/components/ConnectorFilters.d.ts +0 -11
- package/dist/features/connectors/components/ConnectorGroupedList.d.ts +0 -6
- package/dist/features/connectors/components/connectors-columns.d.ts +0 -3
- package/dist/features/connectors/components/connectors-table.d.ts +0 -6
- package/dist/features/connectors/detail/ConnectorDetailHeader.d.ts +0 -7
- package/dist/features/connectors/detail/ConnectorDetailPage.d.ts +0 -5
- package/dist/features/connectors/detail/ConnectorOverviewTab.d.ts +0 -6
- package/dist/features/connectors/detail/ConnectorTopologyTab.d.ts +0 -7
- package/dist/features/connectors/index.d.ts +0 -1
- package/dist/features/settings/components/ProviderManager.d.ts +0 -1
package/package.json
CHANGED
|
@@ -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 +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;
|