Skip to content

Commit

Permalink
Merge branch 'main' into km/pm-17668/move-devicetrustservice-to-km
Browse files Browse the repository at this point in the history
  • Loading branch information
Thomas-Avery authored Feb 4, 2025
2 parents 4f2455e + aeb4e21 commit 3c59172
Show file tree
Hide file tree
Showing 25 changed files with 357 additions and 1,173 deletions.
2 changes: 2 additions & 0 deletions apps/desktop/resources/entitlements.mas.plist
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,8 @@
<true/>
<key>com.apple.security.files.user-selected.read-write</key>
<true/>
<key>com.apple.security.device.usb</key>
<true/>
<!--
<key>com.apple.developer.authentication-services.autofill-credential-provider</key>
<true/>
Expand Down
158 changes: 0 additions & 158 deletions apps/web/src/app/auth/register-form/register-form.component.html

This file was deleted.

115 changes: 0 additions & 115 deletions apps/web/src/app/auth/register-form/register-form.component.ts

This file was deleted.

14 changes: 0 additions & 14 deletions apps/web/src/app/auth/register-form/register-form.module.ts

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,13 @@
) | currency: "$"
}}
</b>
<span class="tw-text-xs tw-px-0"> /{{ "monthPerMember" | i18n }}</span>
<span class="tw-text-xs tw-px-0">
/{{
selectableProduct.productTier === productTypes.Families
? "month"
: ("monthPerMember" | i18n)
}}</span
>
<b class="tw-text-sm tw-font-semibold">
<ng-container
*ngIf="selectableProduct.PasswordManager.hasAdditionalSeatsOption"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,11 @@ <h2 bitTypography="h2">
<p class="tw-text-muted tw-italic tw-mb-3 tw-block" bitTypography="body2">
{{ paymentDesc }}
</p>
<app-payment *ngIf="createOrganization || upgradeRequiresPaymentMethod"></app-payment>
<app-payment
*ngIf="createOrganization || upgradeRequiresPaymentMethod"
[showAccountCredit]="false"
>
</app-payment>
<app-manage-tax-information
class="tw-my-4"
[showTaxIdField]="showTaxIdField"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
<app-vertical-stepper #stepper linear>
<app-vertical-step
label="{{ 'createAccount' | i18n | titlecase }}"
[editable]="false"
[subLabel]="subLabels.createAccount"
[addSubLabelSpacing]="true"
>
<app-register-form
[referenceDataValue]="referenceEventRequest"
[isInTrialFlow]="true"
(createdAccount)="accountCreated($event)"
>
</app-register-form>
</app-vertical-step>
<app-vertical-step
label="{{ 'organizationInformation' | i18n | titlecase }}"
[subLabel]="subLabels.organizationInfo"
Expand Down
Original file line number Diff line number Diff line change
@@ -1,17 +1,4 @@
<app-vertical-stepper #stepper linear>
<app-vertical-step
label="{{ 'createAccount' | i18n | titlecase }}"
[editable]="false"
[subLabel]="createAccountLabel"
[addSubLabelSpacing]="true"
>
<app-register-form
[referenceDataValue]="referenceEventRequest"
[isInTrialFlow]="true"
(createdAccount)="accountCreated($event)"
>
</app-register-form>
</app-vertical-step>
<app-vertical-step
label="{{ 'organizationInformation' | i18n | titlecase }}"
[subLabel]="subLabels.organizationInfo"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,16 @@ import {
} from "../../../billing/accounts/trial-initiation/trial-billing-step.component";
import { VerticalStepperComponent } from "../../trial-initiation/vertical-stepper/vertical-stepper.component";
import { SecretsManagerTrialFreeStepperComponent } from "../secrets-manager/secrets-manager-trial-free-stepper.component";
import { ValidOrgParams } from "../trial-initiation.component";

export enum ValidOrgParams {
families = "families",
enterprise = "enterprise",
teams = "teams",
teamsStarter = "teamsStarter",
individual = "individual",
premium = "premium",
free = "free",
}

const trialFlowOrgs = [
ValidOrgParams.teams,
Expand Down
Loading

0 comments on commit 3c59172

Please sign in to comment.