RED-6005 - type changes

This commit is contained in:
Timo Bejan 2023-01-18 13:36:19 +08:00
commit 02faef80ac
14 changed files with 362 additions and 356 deletions

View File

@ -97,7 +97,7 @@
<div class="sk-line sk-h-8 sk-w-70"></div>
</div>
<div class="sk-line sk-h-8 sk-w-70 mb-10"></div>
<div class="d-flex mb-24">
<div class="flex mb-24">
<div *ngFor="let circle of [].constructor(9)" class="sk-circle w-32 mr-2"></div>
</div>
<redaction-skeleton-stats class="mb-32"></redaction-skeleton-stats>

View File

@ -3,7 +3,7 @@
</div>
<div class="flex-1">
<div *ngFor="let line of [].constructor(4)" class="mb-16 d-flex align-center">
<div *ngFor="let line of [].constructor(4)" class="mb-16 flex-align-items-center">
<div class="flex-1 sk-line sk-h-6 sk-w-12 mr-10"></div>
<div class="flex-1 sk-line sk-h-8 sk-w-100"></div>
</div>

View File

@ -76,7 +76,7 @@
</div>
<p class="download-includes">{{ 'download-includes' | translate }}</p>
<div class="d-flex">
<div class="flex">
<redaction-select
[label]="
'download-type.label'

View File

@ -23,7 +23,7 @@
<div class="row">
<div translate="license-info-screen.copyright-claim-title"></div>
<div>
{{ 'license-info-screen.copyright-claim-text' | translate: { currentYear: currentYear } }}
{{ 'license-info-screen.copyright-claim-text' | translate : { currentYear: currentYear } }}
</div>
</div>
@ -35,7 +35,7 @@
<div class="section-title all-caps-label" translate="license-info-screen.licensing-details"></div>
<div class="row">
<div class="flex align-center" translate="license-info-screen.license-title"></div>
<div class="flex-align-items-center" translate="license-info-screen.license-title"></div>
<div>
<redaction-license-select></redaction-license-select>
</div>
@ -50,8 +50,8 @@
<div class="row">
<div translate="license-info-screen.licensing-period"></div>
<div>
{{ (selectedLicense.validFrom | date: 'dd-MM-yyyy') || '-' }} /
{{ (selectedLicense.validUntil | date: 'dd-MM-yyyy') || '-' }}
{{ (selectedLicense.validFrom | date : 'dd-MM-yyyy') || '-' }} /
{{ (selectedLicense.validUntil | date : 'dd-MM-yyyy') || '-' }}
</div>
</div>
</ng-container>
@ -77,7 +77,7 @@
<div>
{{
'license-info-screen.total-analyzed'
| translate: { date: licenseService.totalInfo.startDate | date: 'longDate' }
| translate : { date: licenseService.totalInfo.startDate | date : 'longDate' }
}}
</div>
<div>{{ licenseService.totalInfo.numberOfAnalyzedPages }}</div>
@ -87,7 +87,7 @@
<div translate="license-info-screen.current-analyzed"></div>
<div>
{{ licenseService.currentInfo.numberOfAnalyzedPages }}
({{ analysisPercentageOfLicense$ | async | number: '1.0-2' }}%)
({{ analysisPercentageOfLicense$ | async | number : '1.0-2' }}%)
</div>
</div>

View File

@ -17,9 +17,9 @@
</div>
<ng-template #licenseInfo let-license="license">
<div class="flex space-between align-center">
<div class="space-between flex-align-items-center">
<span>{{ license.name }}</span>
<div class="mr-10 flex align-center">
<div class="mr-10 flex-align-items-center">
<div [class.green]="license.id === licenseService.activeLicenseId" class="dot mr-4"></div>
<span class="small-label">{{ getStatus(license.id) | translate | uppercase }}</span>
</div>

View File

@ -13,7 +13,7 @@
<div class="mt-24">
<div class="all-caps-label" translate="dossier-details.owner"></div>
<div class="mt-12 d-flex">
<div class="mt-12 flex">
<ng-container *ngIf="!editingOwner; else editOwner">
<iqser-initials-avatar [user]="ctx.dossier?.ownerId" [withName]="true" color="gray" size="large"></iqser-initials-avatar>

View File

@ -1,4 +1,4 @@
<div class="justify-center banner read-only d-flex">
<div class="justify-center banner read-only flex">
<div *ngIf="file.isFullProcessing" class="ocr-indicator">
<ng-container *ngIf="file.isOcrProcessing; else defaultProcessing">
<redaction-ocr-progress-bar

View File

@ -76,7 +76,7 @@
</div>
<p class="download-includes">{{ 'download-includes' | translate }}</p>
<div class="d-flex">
<div class="flex">
<redaction-select
[height]="165"
[label]="'report-type.label' | translate : { length: reportTemplateIdsLength }"

View File

@ -99,6 +99,6 @@
}
}
.align-center {
align-items: center;
.app-name {
margin-left: 10px;
}

View File

@ -82,7 +82,9 @@
$iqser-highlight-color: #fffcc4,
$iqser-skeleton-color: vars.$grey-4,
$iqser-font-family: 'Inter, sans-serif',
$iqser-app-name-font-family: 'OpenSans Extrabold, sans-serif'
$iqser-app-name-font-family: 'OpenSans Extrabold, sans-serif',
$iqser-app-name-font-size: 13px,
$iqser-app-name-color: vars.$accent
);
$light-accent-5: lighten(vars.$accent, 5%);
@ -135,5 +137,7 @@ $dark-accent-10: darken(vars.$accent, 10%);
$iqser-highlight-color: #905854,
$iqser-skeleton-color: vars.$grey-10,
$iqser-font-family: 'Inter, sans-serif',
$iqser-app-name-font-family: 'OpenSans Extrabold, sans-serif'
$iqser-app-name-font-family: 'OpenSans Extrabold, sans-serif',
$iqser-app-name-font-size: 13px,
$iqser-app-name-color: vars.$white
);

@ -1 +1 @@
Subproject commit e6fcc2b9f0f7c199c83cf57ff4e84ce7307b8026
Subproject commit 813402543669a40e5530836b32e913aaf19e110b

View File

@ -1,6 +1,6 @@
{
"name": "redaction",
"version": "3.881.0",
"version": "3.883.0",
"private": true,
"license": "MIT",
"scripts": {

Binary file not shown.

File diff suppressed because it is too large Load Diff