File tree Expand file tree Collapse file tree 3 files changed +9
-44
lines changed
components/ComponentsSelection Expand file tree Collapse file tree 3 files changed +9
-44
lines changed Original file line number Diff line number Diff line change @@ -20,14 +20,7 @@ import {
2020import styles from './ComponentsSelection.module.css' ;
2121import { Infobox } from '../Ui/Infobox/Infobox.tsx' ;
2222import { useTranslation } from 'react-i18next' ;
23-
24- export interface ComponentSelectionItem {
25- name : string ;
26- versions : string [ ] ;
27- isSelected : boolean ;
28- selectedVersion : string ;
29- documentationUrl : string ;
30- }
23+ import { ComponentSelectionItem } from '../../lib/api/types/crate/createManagedControlPlane.ts' ;
3124
3225export interface ComponentsSelectionProps {
3326 components : ComponentSelectionItem [ ] ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -4,11 +4,18 @@ import {
44 DISPLAY_NAME_ANNOTATION ,
55} from '../shared/keyNames' ;
66import { Member } from '../shared/members' ;
7- import { ComponentSelectionItem } from '../../../../components/ComponentsSelection/ComponentsSelection.tsx' ;
87
98export type Annotations = Record < string , string > ;
109export type Labels = Record < string , string > ;
1110
11+ export interface ComponentSelectionItem {
12+ name : string ;
13+ versions : string [ ] ;
14+ isSelected : boolean ;
15+ selectedVersion : string ;
16+ documentationUrl : string ;
17+ }
18+
1219interface RoleBinding {
1320 role : string ;
1421 subjects : Subject [ ] ;
You can’t perform that action at this time.
0 commit comments