angular_wrappers.ts 523 B

123456789101112
  1. import { react2AngularDirective } from 'app/core/utils/react2angular';
  2. import { PasswordStrength } from './components/PasswordStrength';
  3. import PageHeader from './components/PageHeader';
  4. import EmptyListCTA from './components/EmptyListCTA/EmptyListCTA';
  5. export function registerAngularDirectives() {
  6. react2AngularDirective('passwordStrength', PasswordStrength, ['password']);
  7. react2AngularDirective('pageHeader', PageHeader, ['model', "noTabs"]);
  8. react2AngularDirective('emptyListCta', EmptyListCTA, ['model']);
  9. }