Skip to content

Commit

Permalink
Merge branch 'main' into PM-17186
Browse files Browse the repository at this point in the history
  • Loading branch information
jaasen-livefront committed Feb 4, 2025
2 parents cfcd80a + 2c36744 commit 9c6b27b
Show file tree
Hide file tree
Showing 26 changed files with 373 additions and 1,182 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,10 @@
>
<ng-container *ngIf="collapsibleKey">
<button
class="tw-group/vault-section-header hover:tw-bg-secondary-100 tw-pl-1 tw-w-full tw-border-x-0 tw-border-t-0 tw-border-b tw-border-solid focus-visible:tw-outline-none focus-visible:tw-rounded-md focus-visible:tw-ring-inset focus-visible:tw-ring-2 focus-visible:tw-ring-primary-600"
class="tw-group/vault-section-header hover:tw-bg-primary-100 tw-rounded-md tw-pl-1 tw-w-full tw-border-x-0 tw-border-t-0 tw-border-b tw-border-solid focus-visible:tw-outline-none focus-visible:tw-ring-inset focus-visible:tw-ring-2 focus-visible:tw-ring-primary-600"
[ngClass]="{
'tw-border-b-secondary-300': !sectionOpenState(),
'tw-border-b-secondary-300 tw-rounded-b-none [&:is(:hover,:focus-visible)]:tw-border-b-transparent [&:is(:hover,:focus-visible)]:tw-rounded-b-md':
!sectionOpenState(),
'tw-border-b-transparent': sectionOpenState(),
}"
type="button"
Expand All @@ -31,8 +32,10 @@
</bit-section>

<ng-template #sectionHeader>
<bit-section-header class="tw-p-0.5 -tw-mt-0.5 -tw-mx-0.5">
<h2 bitTypography="h6">{{ title }}</h2>
<bit-section-header class="tw-p-0.5 -tw-mx-0.5">
<h2 bitTypography="h6">
{{ title }}
</h2>
<button
*ngIf="showRefresh"
bitIconButton="bwi-refresh"
Expand All @@ -53,7 +56,7 @@ <h2 bitTypography="h6">{{ title }}</h2>
</span>
<span class="tw-pr-1" *ngIf="collapsibleKey">
<i
class="bwi"
class="bwi tw-text-main"
[ngClass]="{
'bwi-angle-down tw-inline-block': !sectionOpenState(),
'bwi-angle-up tw-hidden group-hover/vault-section-header:tw-inline-block group-focus-visible/vault-section-header:tw-inline-block':
Expand Down
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
Loading

0 comments on commit 9c6b27b

Please sign in to comment.