import type { IComponentOptions } from 'angular'; import { module } from 'angular'; const imageSourceSelectorComponent: IComponentOptions = { bindings: { command: '=', imageSources: '<', helpFieldKey: '@', idField: '@', imageSourceText: '<', }, controllerAs: 'ctrl', template: `
Image Source
Image Source
`, }; export const IMAGE_SOURCE_SELECTOR_COMPONENT = 'spinnaker.core.artifacts.expected.image.selector'; module(IMAGE_SOURCE_SELECTOR_COMPONENT, []).component('imageSourceSelector', imageSourceSelectorComponent);