angular_wrappers.ts 444 B

12345678910111213
  1. import { react2AngularDirective } from 'app/core/utils/react2angular';
  2. import { QueryEditor } from './components/QueryEditor';
  3. export function registerAngularDirectives() {
  4. react2AngularDirective('queryEditor', QueryEditor, [
  5. 'target',
  6. 'onQueryChange',
  7. 'onExecuteQuery',
  8. ['uiSegmentSrv', { watchDepth: 'reference' }],
  9. ['datasource', { watchDepth: 'reference' }],
  10. ['templateSrv', { watchDepth: 'reference' }],
  11. ]);
  12. }