meyi-insight-ui-dev 1.0.16 → 1.0.17
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/ConnectorCard.d.ts +9 -0
- package/dist/features/connectors/components/ConnectorFilters.d.ts +11 -0
- package/dist/features/connectors/components/connectors-columns.d.ts +3 -0
- package/dist/features/connectors/components/connectors-table.d.ts +6 -0
- package/dist/index.js +109 -109
- package/dist/index.mjs +10084 -9923
- package/dist/types.d.ts +2 -0
- package/package.json +1 -1
|
@@ -1,4 +1,13 @@
|
|
|
1
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;
|
|
2
11
|
interface ConnectorCardProps {
|
|
3
12
|
connector: Connector;
|
|
4
13
|
}
|
|
@@ -0,0 +1,11 @@
|
|
|
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 {};
|