1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-17 16:53:34 +00:00

[PM-11904] - send options form (#11142)

* send options form

* remove commented code

* fix margin. update i18 key

* remove unecessary input

* remove unnecessary typing. DRY up messages
This commit is contained in:
Jordan Aasen
2024-09-19 11:53:25 -07:00
committed by GitHub
parent eec84d893d
commit c4d66a1383
10 changed files with 180 additions and 72 deletions

View File

@@ -1,17 +1,19 @@
import { SendView } from "@bitwarden/common/tools/send/models/view/send.view";
import { SendFormConfig } from "./abstractions/send-form-config.service";
import { SendOptionsComponent } from "./components/options/send-options.component";
import { SendDetailsComponent } from "./components/send-details/send-details.component";
import { SendFileDetailsForm } from "./components/send-details/send-file-details.component";
import { SendTextDetailsForm } from "./components/send-details/send-text-details.component";
import { SendFileDetailsComponent } from "./components/send-details/send-file-details.component";
import { SendTextDetailsComponent } from "./components/send-details/send-text-details.component";
/**
* The complete form for a send. Includes all the sub-forms from their respective section components.
* TODO: Add additional form sections as they are implemented.
*/
export type SendForm = {
sendDetailsForm?: SendDetailsComponent["sendDetailsForm"];
sendTextDetailsForm?: SendTextDetailsForm;
sendFileDetailsForm?: SendFileDetailsForm;
sendTextDetailsForm?: SendTextDetailsComponent["sendTextDetailsForm"];
sendFileDetailsForm?: SendFileDetailsComponent["sendFileDetailsForm"];
sendOptionsForm?: SendOptionsComponent["sendOptionsForm"];
};
/**