feat: Purchase "Create account" & "Sign in" flows and Floating label input (#672)

This commit is contained in:
Aman Harwara
2021-10-19 20:20:42 +05:30
committed by GitHub
parent 7f1dddf2d2
commit f9b15262c7
17 changed files with 1079 additions and 2 deletions

View File

@@ -64,6 +64,7 @@ import { IconDirective } from './components/Icon';
import { NoteTagsContainerDirective } from './components/NoteTagsContainer';
import { PreferencesDirective } from './preferences';
import { AppVersion, IsWebPlatform } from '@/version';
import { PurchaseFlowDirective } from './purchaseFlow';
import { QuickSettingsMenuDirective } from './components/QuickSettingsMenu';
function reloadHiddenFirefoxTab(): boolean {
@@ -165,7 +166,8 @@ const startApplication: StartApplication = async function startApplication(
.directive('notesOptionsPanel', NotesOptionsPanelDirective)
.directive('icon', IconDirective)
.directive('noteTagsContainer', NoteTagsContainerDirective)
.directive('preferences', PreferencesDirective);
.directive('preferences', PreferencesDirective)
.directive('purchaseFlow', PurchaseFlowDirective);
// Filters
angular.module('app').filter('trusted', ['$sce', trusted]);