2017-12-20 00:26:51 +08:00
|
|
|
import { react2AngularDirective } from "app/core/utils/react2angular";
|
|
|
|
|
import { PasswordStrength } from "./components/PasswordStrength";
|
|
|
|
|
import PageHeader from "./components/PageHeader/PageHeader";
|
|
|
|
|
import EmptyListCTA from "./components/EmptyListCTA/EmptyListCTA";
|
|
|
|
|
import LoginBackground from "./components/Login/LoginBackground";
|
2017-12-21 00:24:04 +08:00
|
|
|
import { SearchResult } from "./components/search/SearchResult";
|
2017-10-22 13:03:26 +08:00
|
|
|
|
|
|
|
|
export function registerAngularDirectives() {
|
2017-12-20 00:26:51 +08:00
|
|
|
react2AngularDirective("passwordStrength", PasswordStrength, ["password"]);
|
|
|
|
|
react2AngularDirective("pageHeader", PageHeader, ["model", "noTabs"]);
|
|
|
|
|
react2AngularDirective("emptyListCta", EmptyListCTA, ["model"]);
|
|
|
|
|
react2AngularDirective("loginBackground", LoginBackground, []);
|
2017-12-21 00:24:04 +08:00
|
|
|
react2AngularDirective("searchResult", SearchResult, []);
|
2017-10-22 13:03:26 +08:00
|
|
|
}
|