@spotinst/spinnaker-deck
Version:
Spinnaker-Deck service, forked with support to Spotinst
17 lines (13 loc) • 753 B
text/typescript
import { module } from 'angular';
import { react2angular } from 'react2angular';
import { CACHE_INITIALIZER_SERVICE } from 'core/cache/cacheInitializer.service';
import { OVERRIDE_REGISTRY } from 'core/overrideRegistry/override.registry';
import { PAGE_TITLE_SERVICE } from 'core/pageTitle/pageTitle.service';
import { withErrorBoundary } from 'core/presentation/SpinErrorBoundary';
import { SearchV2 } from './SearchV2';
export const SEARCH_INFRASTRUCTURE_V2_CONTROLLER = 'spinnaker.search.infrastructureNew.controller';
module(SEARCH_INFRASTRUCTURE_V2_CONTROLLER, [
PAGE_TITLE_SERVICE,
CACHE_INITIALIZER_SERVICE,
OVERRIDE_REGISTRY,
]).component('infrastructureSearchV2', react2angular(withErrorBoundary(SearchV2, 'infrastructureSearchV2')));