Skip to content

Commit

Permalink
download file Ui updation
Browse files Browse the repository at this point in the history
  • Loading branch information
DhaaraniCIT committed Nov 6, 2024
1 parent 87eb9e5 commit 25f3f57
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<app-svg-icon [svgSource]="'check-circle-fill'" [width]="'24px'" [height]="'20px'" [isTextColorAllowed]="true" [styleClasses]="'tw-text-success-toast'"></app-svg-icon>
</div>
</div>
<div *ngIf="!isLoading && !isStepCompleted" class="tw-flex tw-items-center tw-justify-between tw-pt-24-px">
<div *ngIf="!isLoading && !showDownloadLink" class="tw-flex tw-items-center tw-justify-between tw-pt-24-px">
<div class="tw-w-350-px">
<h4 class="tw-text-16-px tw-font-500 tw-text-text-tertiary">Enter company file path</h4>
<span class="tw-text-12-px tw-font-400 tw-text-text-muted tw-text-wrap">Enter the file path of your company to generate the integration file. Watch the video for guidance on locating company file path.</span>
Expand Down Expand Up @@ -53,7 +53,7 @@ <h4 class="tw-text-16-px tw-font-500 tw-text-text-tertiary">Enter company file p
<app-loader styleClass="spinner-30 tw-top-2-px"></app-loader>
<span class="tw-text-14-px tw-font-400 tw-text-text-primary">Loading</span>
</div>
<div *ngIf="!isLoading && isStepCompleted" class="tw-flex tw-flex-col tw-justify-center tw-items-center tw-h-[400px] tw-text-center">
<div *ngIf="!isLoading && showDownloadLink" class="tw-flex tw-flex-col tw-justify-center tw-items-center tw-h-[400px] tw-text-center">
<div class="tw-text-center">
<app-svg-icon svgSource="check-circle-outline" [width]="'24px'" [height]="'24px'" [isTextColorAllowed]="true" [styleClasses]="'tw-text-success-toast tw-pr-6-px'"></app-svg-icon>
</div>
Expand All @@ -64,7 +64,7 @@ <h4 class="tw-text-16-px tw-font-500 tw-text-text-tertiary">Enter company file p
</div>
</div>
</div>
<div>
<app-configuration-step-footer [ctaText]="ConfigurationCtaText.NEXT" [isButtonDisabled]="!isStepCompleted" (save)="continueToNextStep()"></app-configuration-step-footer>
<div *ngIf="!isStepCompleted">
<app-configuration-step-footer [ctaText]="ConfigurationCtaText.NEXT" [isButtonDisabled]="!showDownloadLink" (save)="continueToNextStep()"></app-configuration-step-footer>
</div>
</div>

0 comments on commit 25f3f57

Please sign in to comment.