-
+
diff --git a/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.scss b/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.scss
index 8b6cf1f0f..47cede783 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.scss
+++ b/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.scss
@@ -3,7 +3,7 @@
}
.filter {
- @apply font-sans flex items-center font-bold bg-wild-blue-yonder border-0 text-regular py-px-8 px-px-15 rounded-filter justify-center;
+ @apply font-sans flex items-center font-bold bg-wild-blue-yonder border-0 text-p2 py-px-8 px-px-15 rounded-filter justify-center;
min-width: 106px;
.label {
diff --git a/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.ts b/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.ts
index 10316e422..50f0b8d3a 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.ts
+++ b/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.component.ts
@@ -8,6 +8,7 @@ import { combineLatest, Subject } from 'rxjs';
import { map, takeUntil, withLatestFrom } from 'rxjs/operators';
import { CustomerOrderSearchStore } from './customer-order-search.store';
import { CustomerOrderSearchMainAutocompleteProvider } from './providers/customer-order-search-main-autocomplete.provider';
+import { EnvironmentService } from '@core/environment';
@Component({
selector: 'page-customer-order-search',
@@ -15,7 +16,6 @@ import { CustomerOrderSearchMainAutocompleteProvider } from './providers/custome
styleUrls: ['customer-order-search.component.scss'],
changeDetection: ChangeDetectionStrategy.OnPush,
providers: [
- CustomerOrderSearchStore,
{
provide: UiFilterAutocompleteProvider,
useClass: CustomerOrderSearchMainAutocompleteProvider,
@@ -32,28 +32,30 @@ import { CustomerOrderSearchMainAutocompleteProvider } from './providers/custome
export class CustomerOrderSearchComponent implements OnInit, OnDestroy {
private _onDestroy$ = new Subject();
+ get isTablet() {
+ return this._environment.matchTablet();
+ }
+
hasFilter$ = combineLatest([this._goodsOutSearchStore.filter$, this._goodsOutSearchStore.defaultSettings$]).pipe(
map(([filter, defaultFilter]) => !isEqual(filter?.getQueryParams(), UiFilter.create(defaultFilter).getQueryParams()))
);
- processId$ = this._activatedRoute.data.pipe(map((data) => +data.processId));
+ processId$ = this._activatedRoute.parent.data.pipe(map((data) => +data.processId));
+
+ get filterRoute() {
+ const processId = this._activatedRoute?.parent?.snapshot?.data?.processId;
+ return ['/kunde', processId, 'order', 'filter'];
+ }
constructor(
private _goodsOutSearchStore: CustomerOrderSearchStore,
private _breadcrumb: BreadcrumbService,
- private _activatedRoute: ActivatedRoute
+ private _activatedRoute: ActivatedRoute,
+ private _environment: EnvironmentService
) {}
ngOnInit() {
this.processId$.pipe(takeUntil(this._onDestroy$), withLatestFrom(this._activatedRoute.queryParams)).subscribe(([processId]) => {
- // if (params && Object.keys(params).length === 0) {
- // console.log('params is empty');
- // this._goodsOutSearchStore.setQueryParams(params);
- // this._goodsOutSearchStore.loadSettings();
- // } else {
- // // this._goodsOutSearchStore.resetFilter(params);
- // }
-
this._breadcrumb.addOrUpdateBreadcrumbIfNotExists({
key: processId,
name: 'Kundenbestellung',
diff --git a/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.module.ts b/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.module.ts
index 442dcf00a..0d7a67751 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.module.ts
+++ b/apps/page/customer-order/src/lib/customer-order-search/customer-order-search.module.ts
@@ -8,6 +8,7 @@ import { RouterModule } from '@angular/router';
import { UiFilterNextModule } from '@ui/filter';
import { SharedFilterOverlayModule } from '@shared/components/filter-overlay';
import { UiSpinnerModule } from '@ui/spinner';
+import { CustomerOrderSearchStore } from './customer-order-search.store';
@NgModule({
imports: [
@@ -20,6 +21,7 @@ import { UiSpinnerModule } from '@ui/spinner';
OrderBranchIdInputComponent,
],
exports: [CustomerOrderSearchComponent],
+ providers: [CustomerOrderSearchStore],
declarations: [CustomerOrderSearchComponent, CustomerOrderSearchFilterComponent],
})
export class CustomerOrderSearchModule {}
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.scss b/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.scss
index df66b06ab..ca173a1bb 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.scss
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.scss
@@ -3,19 +3,19 @@
}
.goods-out-list-navigation {
- @apply text-center text-2xl text-active-branch block bg-white rounded-t-card font-bold no-underline py-5;
+ @apply text-center text-h3 text-active-branch block bg-white rounded-t font-bold no-underline py-5;
}
.search-main {
- @apply bg-white text-center rounded-t-card py-5 shadow-card;
+ @apply bg-white text-center rounded-t p-5 shadow-card;
height: calc(100vh - 380px);
.search-main-title {
- @apply text-2xl font-bold;
+ @apply text-h3 font-bold;
}
.search-main-paragraph {
- @apply text-2xl mb-12 mt-6;
+ @apply text-h3 mb-12 mt-6;
}
ui-filter-input-group-main {
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.ts b/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.ts
index 2dbdbced9..77d616dc8 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.ts
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-main/customer-order-search-main.component.ts
@@ -7,6 +7,7 @@ import { debounce, isEqual } from 'lodash';
import { BehaviorSubject, combineLatest, Subscription } from 'rxjs';
import { debounceTime, first, map, withLatestFrom } from 'rxjs/operators';
import { CustomerOrderSearchStore } from '../customer-order-search.store';
+import { EnvironmentService } from '@core/environment';
@Component({
selector: 'page-customer-order-search-main',
@@ -28,10 +29,14 @@ export class CustomerOrderSearchMainComponent implements OnInit, OnDestroy {
private _subscriptions = new Subscription();
get processId() {
- return +this._activatedRoute.snapshot.data.processId;
+ return +this._activatedRoute.parent.parent.snapshot.data.processId;
}
- processId$ = this._activatedRoute.data.pipe(map((data) => +data.processId));
+ processId$ = this._activatedRoute.parent.parent.data.pipe(map((data) => +data.processId));
+
+ get isTablet() {
+ return this._environment.matchTablet();
+ }
@ViewChild(UiFilterInputGroupMainComponent, { static: false })
filterInputGroup: UiFilterInputGroupMainComponent;
@@ -41,7 +46,8 @@ export class CustomerOrderSearchMainComponent implements OnInit, OnDestroy {
private _cdr: ChangeDetectorRef,
private _router: Router,
private _activatedRoute: ActivatedRoute,
- private _breadcrumb: BreadcrumbService
+ private _breadcrumb: BreadcrumbService,
+ private _environment: EnvironmentService
) {}
ngOnInit() {
@@ -106,14 +112,29 @@ export class CustomerOrderSearchMainComponent implements OnInit, OnDestroy {
if (result.results.error) {
} else {
if (result.results.hits > 0) {
+ // if (this.isTablet) {
if (result.results.hits === 1) {
const orderItem = result.results.result[0];
- this._router.navigate([this.getDetailsPath(orderItem, this.processId)]);
+ this._router.navigate([this.getDetailsPath(orderItem, this.processId)], {
+ queryParams: this._goodsOutSearchStore.filter.getQueryParams(),
+ });
} else {
this._router.navigate(['/kunde', this.processId, 'order', 'results'], {
queryParams: this._goodsOutSearchStore.filter.getQueryParams(),
});
}
+ // } else {
+ // const orderItem = result.results.result[0];
+ // if (result.results.hits === 1) {
+ // this._router.navigate(this.getDetailsPathDesktop(orderItem, this.processId), {
+ // queryParams: this._goodsOutSearchStore.filter.getQueryParams(),
+ // });
+ // } else {
+ // this._router.navigate(this.getDetailsPathDesktop(orderItem, this.processId), {
+ // queryParams: this._goodsOutSearchStore.filter.getQueryParams(),
+ // });
+ // }
+ // }
} else {
this.message = 'keine Suchergebnisse';
}
@@ -149,6 +170,34 @@ export class CustomerOrderSearchMainComponent implements OnInit, OnDestroy {
: `/kunde/${processId}/order/details/order/${encodeURIComponent(item?.orderNumber)}/${item?.processingStatus}`;
}
+ // getDetailsPathDesktop(item: OrderItemListItemDTO, processId: number) {
+ // return item?.compartmentCode
+ // ? [
+ // '/kunde',
+ // processId,
+ // 'order',
+ // {
+ // outlets: {
+ // main: null,
+ // left: 'results',
+ // right: ['details', 'compartment', encodeURIComponent(item?.compartmentCode), item?.processingStatus],
+ // },
+ // },
+ // ]
+ // : [
+ // '/kunde',
+ // processId,
+ // 'order',
+ // {
+ // outlets: {
+ // main: null,
+ // left: 'results',
+ // right: ['details', 'order', encodeURIComponent(item?.orderNumber), item?.processingStatus],
+ // },
+ // },
+ // ];
+ // }
+
queryChangeDebounce = debounce(async () => {
this.queryChanged$.next(true);
await this.updateQueryParams(this.processId);
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.html b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.html
new file mode 100644
index 000000000..5cdf4f843
--- /dev/null
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.html
@@ -0,0 +1,45 @@
+
+ {{ item?.product?.name }}
+
+
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.scss b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.scss
new file mode 100644
index 000000000..85bd97b1a
--- /dev/null
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.scss
@@ -0,0 +1,3 @@
+:host {
+ @apply flex flex-col w-full h-[212px] desktop:h-[181px] bg-white;
+}
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.ts b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.ts
new file mode 100644
index 000000000..f7829baae
--- /dev/null
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-item.component.ts
@@ -0,0 +1,124 @@
+import { ChangeDetectionStrategy, Component, EventEmitter, Input, OnInit, Output } from '@angular/core';
+import { Router } from '@angular/router';
+import { ApplicationService } from '@core/application';
+import { EnvironmentService } from '@core/environment';
+import { ComponentStore } from '@ngrx/component-store';
+import { OrderItemListItemDTO } from '@swagger/oms';
+import { isEqual } from 'lodash';
+import { map } from 'rxjs/operators';
+import { CustomerOrderSearchStore } from '../customer-order-search.store';
+
+export interface CustomerOrderItemComponentState {
+ item?: OrderItemListItemDTO;
+ selected: boolean;
+ selectable: boolean;
+}
+
+@Component({
+ selector: 'page-customer-order-item',
+ templateUrl: 'customer-order-item.component.html',
+ styleUrls: ['customer-order-item.component.scss'],
+ changeDetection: ChangeDetectionStrategy.OnPush,
+})
+export class CustomerOrderItemComponent extends ComponentStore
implements OnInit {
+ @Input()
+ get item() {
+ return this.get((s) => s.item);
+ }
+ set item(item: OrderItemListItemDTO) {
+ if (!isEqual(this.item, item)) {
+ this.patchState({ item });
+ }
+ }
+
+ readonly item$ = this.select((s) => s.item);
+
+ // selected$ = this._articleSearchService.selectedItemIds$.pipe(map((selectedItemIds) => selectedItemIds.includes(this.item?.id)));
+
+ @Input()
+ selected: boolean;
+
+ @Input()
+ get selectable() {
+ return this.get((s) => s.selectable);
+ }
+ set selectable(selectable: boolean) {
+ if (this.selectable !== selectable) {
+ this.patchState({ selectable });
+ }
+ }
+
+ @Output()
+ selectedChange = new EventEmitter();
+
+ get isTablet() {
+ return this._environment.matchTablet();
+ }
+
+ get queryParams() {
+ const compartmentCode = this.item?.compartmentCode;
+ const archive = !!this._customerOrderStore.filter?.getQueryParams()?.main_archive || false;
+
+ if (compartmentCode) {
+ return {
+ buyerNumber: this.item?.buyerNumber,
+ archive,
+ };
+ } else {
+ return {
+ archive,
+ };
+ }
+ }
+
+ get detailsLink() {
+ const orderNumber = this.item?.orderNumber;
+ const processingStatus = this.item?.processingStatus;
+ const compartmentCode = this.item?.compartmentCode;
+ // if (this.isTablet) {
+ if (compartmentCode) {
+ return [
+ `/kunde/${this._applicationService.activatedProcessId}/order/details/compartment/${encodeURIComponent(
+ compartmentCode
+ )}/${processingStatus}`,
+ ];
+ } else {
+ return [
+ `/kunde/${this._applicationService.activatedProcessId}/order/details/order/${encodeURIComponent(orderNumber)}/${processingStatus}`,
+ ];
+ }
+ // } else {
+ // if (compartmentCode) {
+ // return [
+ // '/kunde',
+ // this._applicationService.activatedProcessId,
+ // 'order',
+ // {
+ // outlets: {
+ // main: null,
+ // left: 'results',
+ // right: ['details', 'compartment', encodeURIComponent(compartmentCode), processingStatus],
+ // },
+ // },
+ // ];
+ // } else {
+ // return [
+ // '/kunde',
+ // this._applicationService.activatedProcessId,
+ // 'order',
+ // { outlets: { main: null, left: 'results', right: ['details', 'order', encodeURIComponent(orderNumber), processingStatus] } },
+ // ];
+ // }
+ // }
+ }
+
+ constructor(
+ private _environment: EnvironmentService,
+ private _customerOrderStore: CustomerOrderSearchStore,
+ private _applicationService: ApplicationService
+ ) {
+ super({ selected: false, selectable: false });
+ }
+
+ ngOnInit() {}
+}
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.html b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.html
index ce9d5863d..6d0edf16a 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.html
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.html
@@ -1,7 +1,28 @@
-{{ hits$ | async }} Titel
+
+
+
+
+
+
+
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.scss b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.scss
index 1e45ce1f5..d851c4141 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.scss
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.scss
@@ -1,13 +1,13 @@
+// :host {
+// @apply box-border block h-[100vh] max-h-[calc(100vh-364px)] desktop:max-h-[calc(100vh-300px)];
+// }
+
:host {
@apply block relative;
}
-.hits {
- @apply text-active-customer text-right mb-3 font-semibold text-base;
-}
-
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-customer py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-customer py-10 rounded;
}
.divider {
@@ -18,6 +18,10 @@ shared-goods-in-out-order-group-item {
@apply cursor-pointer;
}
+// page-customer-order-item {
+// @apply cursor-pointer;
+// }
+
.actions {
@apply fixed bottom-28 inline-grid grid-flow-col gap-7;
left: 50%;
@@ -40,6 +44,10 @@ shared-goods-in-out-order-group-item {
}
}
+// ::ng-deep page-customer-order-search-results ui-scroll-container .scroll-container {
+// max-height: calc(100vh - 25.5rem) !important;
+// }
+
::ng-deep .desktop page-goods-out-search-results ui-scroll-container {
.scrollbar-gap::-webkit-scrollbar-track {
margin-bottom: 7.25rem;
diff --git a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.ts b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.ts
index 843ffb545..dd429edae 100644
--- a/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.ts
+++ b/apps/page/customer-order/src/lib/customer-order-search/search-results/customer-order-search-results.component.ts
@@ -1,7 +1,7 @@
import { Component, ChangeDetectionStrategy, OnInit, OnDestroy, ViewChild, TrackByFunction } from '@angular/core';
-import { debounceTime, first, map, shareReplay, takeUntil, withLatestFrom } from 'rxjs/operators';
+import { debounceTime, filter, first, map, shareReplay, takeUntil, withLatestFrom } from 'rxjs/operators';
import { KeyValueDTOOfStringAndString, OrderItemListItemDTO } from '@swagger/oms';
-import { ActivatedRoute, Router } from '@angular/router';
+import { ActivatedRoute, ChildrenOutletContexts, Params, Router } from '@angular/router';
import { CustomerOrderSearchStore } from '../customer-order-search.store';
import { BehaviorSubject, combineLatest, Observable, Subject, Subscription } from 'rxjs';
import { BreadcrumbService } from '@core/breadcrumb';
@@ -11,6 +11,8 @@ import { OrderItemsContext } from '@domain/oms';
import { UiErrorModalComponent, UiModalService } from '@ui/modal';
import { UiScrollContainerComponent } from '@ui/scroll-container';
import { UiFilter } from '@ui/filter';
+import { EnvironmentService } from '@core/environment';
+import { isEqual } from 'lodash';
export interface CustomerOrderSearchResultsState {
selectedOrderItemSubsetIds: number[];
@@ -80,13 +82,51 @@ export class CustomerOrderSearchResultsComponent extends ComponentStore !!filter),
+ first()
+ );
+
+ hasFilter$ = this.filter$.pipe(
+ withLatestFrom(this.initialFilter$),
+ map(([filter, initialFilter]) => !isEqual(filter?.getQueryParams(), initialFilter?.getQueryParams()))
+ );
+
+ get isTablet() {
+ return this._environment.matchTablet();
+ }
+
+ get rightOutletParams(): Params {
+ return this._activatedRoute?.parent?.children?.find((childRoute) => childRoute?.outlet === 'right')?.snapshot?.params;
+ }
+
+ get filterRoute() {
+ const processId = this._activatedRoute?.parent?.snapshot?.data?.processId;
+ // if (!this.isTablet) {
+ // const orderNumber = this.rightOutletParams?.orderNumber;
+ // const compartmentCode = this.rightOutletParams?.compartmentCode;
+ // const processingStatus = this.rightOutletParams?.processingStatus;
+ // return [
+ // '/kunde',
+ // processId,
+ // 'order',
+ // { outlets: { main: null, left: 'results', right: ['filter', orderNumber ?? compartmentCode, processingStatus] } },
+ // ];
+ // } else {
+ return ['/kunde', processId, 'order', 'filter'];
+ // }
+ }
+
constructor(
private _goodsOutSearchStore: CustomerOrderSearchStore,
private _router: Router,
private _activatedRoute: ActivatedRoute,
private _breadcrumb: BreadcrumbService,
private _commandService: CommandService,
- private _modal: UiModalService
+ private _modal: UiModalService,
+ private _environment: EnvironmentService
) {
super({
selectedOrderItemSubsetIds: [],
@@ -263,6 +303,7 @@ export class CustomerOrderSearchResultsComponent extends ComponentStore
+
+
diff --git a/apps/page/customer-order/src/lib/customer-order.component.ts b/apps/page/customer-order/src/lib/customer-order.component.ts
index 87c419725..025136783 100644
--- a/apps/page/customer-order/src/lib/customer-order.component.ts
+++ b/apps/page/customer-order/src/lib/customer-order.component.ts
@@ -3,6 +3,7 @@ import { ActivatedRoute } from '@angular/router';
import { ApplicationService } from '@core/application';
import { AuthService } from '@core/auth';
import { BreadcrumbService } from '@core/breadcrumb';
+import { EnvironmentService } from '@core/environment';
import { BranchDTO } from '@swagger/checkout';
import { UiErrorModalComponent, UiModalService } from '@ui/modal';
import { Observable } from 'rxjs';
@@ -19,6 +20,10 @@ export class CustomerOrderComponent implements OnInit {
selectedBranch$: Observable;
+ get isTablet() {
+ return this._environmentService.matchTablet();
+ }
+
onCustomerOrderDetailsPage$: Observable;
constructor(
@@ -26,6 +31,7 @@ export class CustomerOrderComponent implements OnInit {
private _activatedRoute: ActivatedRoute,
private _uiModal: UiModalService,
private _breadcrumb: BreadcrumbService,
+ private _environmentService: EnvironmentService,
public auth: AuthService
) {}
diff --git a/apps/page/customer/src/lib/create-customer/create-customer.scss b/apps/page/customer/src/lib/create-customer/create-customer.scss
index c5cf5ecea..50bd2a042 100644
--- a/apps/page/customer/src/lib/create-customer/create-customer.scss
+++ b/apps/page/customer/src/lib/create-customer/create-customer.scss
@@ -1,9 +1,9 @@
:host {
- @apply block bg-white rounded-card px-20 py-10;
+ @apply block bg-white rounded px-20 py-10;
}
h1.title {
- @apply text-2xl font-bold text-center mb-6;
+ @apply text-h3 font-bold text-center mb-6;
}
p.description {
@@ -19,7 +19,7 @@ form {
}
button.cta-submit {
- @apply fixed left-1/2 bottom-28 text-center bg-brand text-cta-l text-white font-bold px-7 py-3 rounded-full transform -translate-x-1/2 transition-all duration-200 ease-in-out;
+ @apply fixed left-1/2 bottom-28 text-center bg-brand text-p1 text-white font-bold px-7 py-3 rounded-full transform -translate-x-1/2 transition-all duration-200 ease-in-out;
&:disabled {
@apply bg-active-branch cursor-not-allowed;
diff --git a/apps/page/customer/src/lib/customer-details/address/address.component.scss b/apps/page/customer/src/lib/customer-details/address/address.component.scss
index 7a181f318..3077971e0 100644
--- a/apps/page/customer/src/lib/customer-details/address/address.component.scss
+++ b/apps/page/customer/src/lib/customer-details/address/address.component.scss
@@ -3,7 +3,7 @@
}
.card {
- @apply bg-white rounded-card p-card;
+ @apply bg-white rounded p-card;
}
form {
@@ -32,15 +32,15 @@ h1 {
}
.default-address {
- @apply flex-col justify-around text-cta-l mt-8;
+ @apply flex-col justify-around text-p1 mt-8;
input {
- @apply text-cta-l;
+ @apply text-p1;
}
}
.create-customer-submit {
- @apply border-none outline-none bg-brand text-white font-bold text-cta-l px-px-25 py-px-15 rounded-full mt-8 my-4;
+ @apply border-none outline-none bg-brand text-white font-bold text-p1 px-px-25 py-px-15 rounded-full mt-8 my-4;
&:disabled {
@apply bg-inactive-branch;
diff --git a/apps/page/customer/src/lib/customer-details/customer-card/customer-card.component.scss b/apps/page/customer/src/lib/customer-details/customer-card/customer-card.component.scss
index d723a4717..31832f078 100644
--- a/apps/page/customer/src/lib/customer-details/customer-card/customer-card.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-card/customer-card.component.scss
@@ -4,7 +4,7 @@
}
.title {
- @apply text-page-heading font-bold;
+ @apply text-h2 font-bold;
}
.card-customer-orders,
@@ -35,7 +35,7 @@ a {
}
.info {
- @apply text-2xl mb-px-35;
+ @apply text-h3 mb-px-35;
padding-top: 70px;
}
@@ -53,7 +53,7 @@ a {
}
.cancel-message {
- @apply text-card-sub bg-transparent text-brand border-none font-bold pr-0 no-underline;
+ @apply text-xl bg-transparent text-brand border-none font-bold pr-0 no-underline;
}
.customer-card,
diff --git a/apps/page/customer/src/lib/customer-details/customer-data-edit/customer-data-edit.component.scss b/apps/page/customer/src/lib/customer-details/customer-data-edit/customer-data-edit.component.scss
index b948301fd..efbb2c4d9 100644
--- a/apps/page/customer/src/lib/customer-details/customer-data-edit/customer-data-edit.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-data-edit/customer-data-edit.component.scss
@@ -1,12 +1,12 @@
:host {
- @apply flex flex-col box-border shadow-card rounded-card;
+ @apply flex flex-col box-border shadow-card rounded;
}
.header {
@apply bg-white;
h1 {
- @apply text-center text-card-heading my-16 font-bold;
+ @apply text-center text-h3 my-16 font-bold;
}
}
@@ -29,7 +29,7 @@ form {
@apply text-center my-8;
button {
- @apply rounded-full outline-none p-4 text-cta-l border-brand border-solid border-2 px-px-25 py-px-15 mx-4 font-bold;
+ @apply rounded-full outline-none p-4 text-p1 border-brand border-solid border-2 px-px-25 py-px-15 mx-4 font-bold;
&.btn-cancel {
@apply text-brand bg-white;
diff --git a/apps/page/customer/src/lib/customer-details/customer-data/customer-data.component.scss b/apps/page/customer/src/lib/customer-details/customer-data/customer-data.component.scss
index 3c96ca818..ba1b9d6b0 100644
--- a/apps/page/customer/src/lib/customer-details/customer-data/customer-data.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-data/customer-data.component.scss
@@ -3,7 +3,7 @@
}
.field {
- @apply grid justify-items-start grid-flow-col flex-row gap-8 text-regular p-4 bg-white;
+ @apply grid justify-items-start grid-flow-col flex-row gap-8 text-p2 p-4 bg-white;
grid-template-columns: max-content;
.name {
}
diff --git a/apps/page/customer/src/lib/customer-details/customer-details.component.scss b/apps/page/customer/src/lib/customer-details/customer-details.component.scss
index c35be1b80..2ddcbb9b1 100644
--- a/apps/page/customer/src/lib/customer-details/customer-details.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-details.component.scss
@@ -4,17 +4,17 @@
}
.title {
- @apply text-page-heading font-bold;
+ @apply text-h2 font-bold;
}
.info {
- @apply text-2xl mt-1 mb-px-40;
+ @apply text-h3 mt-1 mb-px-40;
}
.card-customer-orders,
.card-customer-card,
.card-customer-details {
- @apply bg-white rounded-t-card p-4 text-center;
+ @apply bg-white rounded-t p-4 text-center;
box-shadow: 0 -2px 24px 0 #dce2e9;
}
@@ -45,7 +45,7 @@ ui-radio-button {
}
.tags {
- @apply grid grid-flow-col flex-row gap-4 justify-center items-center text-ucla-blue font-bold text-regular mb-px-40;
+ @apply grid grid-flow-col flex-row gap-4 justify-center items-center text-ucla-blue font-bold text-p2 mb-px-40;
}
.tag {
@@ -53,7 +53,7 @@ ui-radio-button {
}
.details {
- @apply grid flex-col text-regular gap-4;
+ @apply grid flex-col text-p2 gap-4;
.detail {
@apply grid grid-flow-col justify-items-start flex-row gap-8;
@@ -71,7 +71,7 @@ ui-radio-button {
}
.edit-details {
- @apply justify-self-end text-card-sub bg-transparent text-brand border-none font-bold rounded-full pr-0 no-underline;
+ @apply justify-self-end text-xl bg-transparent text-brand border-none font-bold rounded-full pr-0 no-underline;
}
}
}
@@ -84,20 +84,20 @@ ui-inline-input {
@apply bg-white flex flex-row justify-between p-4 items-center pt-px-40 pb-px-20;
h3 {
- @apply m-0 text-card-sub font-bold;
+ @apply m-0 text-xl font-bold;
}
}
.button-add-address,
.button-edit-address {
- @apply p-0 text-card-sub bg-transparent text-brand border-none font-bold no-underline;
+ @apply p-0 text-xl bg-transparent text-brand border-none font-bold no-underline;
}
.card-customer-footer {
- @apply p-4 py-px-25 sticky bottom-0 text-center rounded-b-card mt-px-2;
+ @apply p-4 py-px-25 sticky bottom-0 text-center rounded-b mt-px-2;
button.cta-to-cart {
- @apply px-px-20 py-px-15 text-card-sub bg-brand text-white border-none font-bold rounded-full;
+ @apply px-px-20 py-px-15 text-xl bg-brand text-white border-none font-bold rounded-full;
&:disabled {
@apply bg-inactive-branch;
@@ -110,9 +110,9 @@ ui-inline-input {
}
.button-customer-history {
- @apply text-card-sub bg-transparent text-brand border-none font-bold rounded-full absolute right-0 top-0 py-px-5;
+ @apply text-xl bg-transparent text-brand border-none font-bold rounded-full absolute right-0 top-0 py-px-5;
}
input[type='radio'] {
- @apply text-cta-l;
+ @apply text-p1;
}
diff --git a/apps/page/customer/src/lib/customer-details/customer-order-details/customer-order-details.component.scss b/apps/page/customer/src/lib/customer-details/customer-order-details/customer-order-details.component.scss
index dc434f017..7e4a066f6 100644
--- a/apps/page/customer/src/lib/customer-details/customer-order-details/customer-order-details.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-order-details/customer-order-details.component.scss
@@ -43,7 +43,7 @@
}
.title {
- @apply text-page-heading font-bold justify-between mb-2;
+ @apply text-h2 font-bold justify-between mb-2;
}
.label {
@@ -62,7 +62,7 @@
@apply mx-10;
h2 {
- @apply text-card-sub;
+ @apply text-xl;
}
}
diff --git a/apps/page/customer/src/lib/customer-details/customer-order-details/order-item-card/customer-order-item-card.component.scss b/apps/page/customer/src/lib/customer-details/customer-order-details/order-item-card/customer-order-item-card.component.scss
index 707cf9d66..5fdd45a48 100644
--- a/apps/page/customer/src/lib/customer-details/customer-order-details/order-item-card/customer-order-item-card.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-order-details/order-item-card/customer-order-item-card.component.scss
@@ -42,7 +42,7 @@
}
.arrow-button {
- @apply border-none bg-transparent outline-none text-regular text-ucla-blue font-bold;
+ @apply border-none bg-transparent outline-none text-p2 text-ucla-blue font-bold;
ui-icon {
@apply inline mx-1 align-middle;
@@ -65,7 +65,7 @@
}
.cta-history {
- @apply text-base font-bold text-brand outline-none border-none bg-transparent mr-1;
+ @apply text-p2 font-bold text-brand outline-none border-none bg-transparent mr-1;
}
.item-format {
diff --git a/apps/page/customer/src/lib/customer-details/customer-orders/customer-orders.component.scss b/apps/page/customer/src/lib/customer-details/customer-orders/customer-orders.component.scss
index 81ed524a7..742e13c20 100644
--- a/apps/page/customer/src/lib/customer-details/customer-orders/customer-orders.component.scss
+++ b/apps/page/customer/src/lib/customer-details/customer-orders/customer-orders.component.scss
@@ -3,7 +3,7 @@
}
.title {
- @apply text-page-heading font-bold;
+ @apply text-h2 font-bold;
}
.card-customer-card,
@@ -22,7 +22,7 @@
}
.header {
- @apply bg-white rounded-card p-card;
+ @apply bg-white rounded p-card;
box-shadow: 0px 19px 25px -10px white;
height: 180px;
}
@@ -32,15 +32,15 @@ a {
}
h1 {
- @apply text-center text-page-heading;
+ @apply text-center text-h2;
}
.desc {
- @apply text-center text-card-heading;
+ @apply text-center text-h3;
}
.desc-empty {
- @apply text-center text-regular;
+ @apply text-center text-p2;
}
.orders {
@@ -77,7 +77,7 @@ h1 {
}
.details {
- @apply text-brand text-cta-l font-bold no-underline;
+ @apply text-brand text-p1 font-bold no-underline;
width: 8%;
text-align: end;
}
@@ -103,7 +103,7 @@ h1 {
}
.spin-text {
- @apply fixed text-regular;
+ @apply fixed text-p2;
top: 66%;
left: 42%;
}
diff --git a/apps/page/customer/src/lib/customer-details/shared/card-template/card-template.component.scss b/apps/page/customer/src/lib/customer-details/shared/card-template/card-template.component.scss
index 452c5c863..e69a14428 100644
--- a/apps/page/customer/src/lib/customer-details/shared/card-template/card-template.component.scss
+++ b/apps/page/customer/src/lib/customer-details/shared/card-template/card-template.component.scss
@@ -18,7 +18,7 @@ ui-icon {
}
.headline {
- @apply text-wild-blue-yonder mt-px-15 text-sm font-bold;
+ @apply text-wild-blue-yonder mt-px-15 text-p3 font-bold;
}
.card-number,
@@ -32,7 +32,7 @@ ui-icon {
}
.button {
- @apply border-none outline-none bg-brand text-white font-bold text-cta-l px-px-25 py-px-15 rounded-full mt-px-15;
+ @apply border-none outline-none bg-brand text-white font-bold text-p1 px-px-25 py-px-15 rounded-full mt-px-15;
}
.barcode-field {
diff --git a/apps/page/customer/src/lib/customer-search/customer-search.component.scss b/apps/page/customer/src/lib/customer-search/customer-search.component.scss
index fea19223d..e1442d2d5 100644
--- a/apps/page/customer/src/lib/customer-search/customer-search.component.scss
+++ b/apps/page/customer/src/lib/customer-search/customer-search.component.scss
@@ -3,7 +3,7 @@
}
.filter {
- @apply absolute font-sans flex items-center font-bold bg-wild-blue-yonder border-0 text-regular -top-12 right-0 py-px-8 px-px-15 rounded-filter justify-center z-sticky;
+ @apply absolute font-sans flex items-center font-bold bg-wild-blue-yonder border-0 text-p2 -top-12 right-0 py-px-8 px-px-15 rounded-filter justify-center z-sticky;
min-width: 106px;
diff --git a/apps/page/customer/src/lib/customer-search/search-filter/search-filter.component.scss b/apps/page/customer/src/lib/customer-search/search-filter/search-filter.component.scss
index a80fa5c90..691541eb3 100644
--- a/apps/page/customer/src/lib/customer-search/search-filter/search-filter.component.scss
+++ b/apps/page/customer/src/lib/customer-search/search-filter/search-filter.component.scss
@@ -17,7 +17,7 @@
button.apply-filter,
.cta-reset-filter {
- @apply border-none bg-brand text-white rounded-full py-4 px-cta-x-l text-cta-l font-bold;
+ @apply border-none bg-brand text-white rounded-full py-4 px-cta-x-l text-p1 font-bold;
min-width: 201px;
}
diff --git a/apps/page/customer/src/lib/customer-search/search-main/search-main.component.scss b/apps/page/customer/src/lib/customer-search/search-main/search-main.component.scss
index fd7365ffb..b22452a4b 100644
--- a/apps/page/customer/src/lib/customer-search/search-main/search-main.component.scss
+++ b/apps/page/customer/src/lib/customer-search/search-main/search-main.component.scss
@@ -3,11 +3,11 @@
}
.title {
- @apply text-page-heading font-bold;
+ @apply text-h2 font-bold;
}
.info {
- @apply text-2xl mt-5 mb-px-50;
+ @apply text-h3 mt-5 mb-px-50;
}
.card-create-customer,
diff --git a/apps/page/customer/src/lib/customer-search/search-results/customer-result-card/customer-result-card.component.scss b/apps/page/customer/src/lib/customer-search/search-results/customer-result-card/customer-result-card.component.scss
index 4e03a4f57..4926638a4 100644
--- a/apps/page/customer/src/lib/customer-search/search-results/customer-result-card/customer-result-card.component.scss
+++ b/apps/page/customer/src/lib/customer-search/search-results/customer-result-card/customer-result-card.component.scss
@@ -1,12 +1,12 @@
:host {
- @apply box-border flex flex-col p-card bg-white text-black rounded-card shadow-card text-regular;
+ @apply box-border flex flex-col p-card bg-white text-black rounded shadow-card text-p2;
}
.header {
@apply flex justify-between items-center;
.heading {
- @apply text-card-heading font-bold p-0 m-0;
+ @apply text-h3 font-bold p-0 m-0;
}
.date {
diff --git a/apps/page/customer/src/lib/customer-search/search-results/search-results.component.scss b/apps/page/customer/src/lib/customer-search/search-results/search-results.component.scss
index a64abd761..3cb6d4e66 100644
--- a/apps/page/customer/src/lib/customer-search/search-results/search-results.component.scss
+++ b/apps/page/customer/src/lib/customer-search/search-results/search-results.component.scss
@@ -3,7 +3,7 @@
}
.hits {
- @apply text-right bg-transparent text-regular font-semibold text-inactive-customer my-3;
+ @apply text-right bg-transparent text-p2 font-semibold text-inactive-customer my-3;
}
a {
@@ -11,7 +11,7 @@ a {
}
.scroll-container-footer {
- @apply text-sm mx-auto mt-8 w-1/3 text-center text-ucla-blue font-semibold;
+ @apply text-p3 mx-auto mt-8 w-1/3 text-center text-ucla-blue font-semibold;
min-height: 200px;
a {
diff --git a/apps/page/customer/src/lib/modals/address-selection-modal/address-selection-modal.component.scss b/apps/page/customer/src/lib/modals/address-selection-modal/address-selection-modal.component.scss
index 5014f971b..0083d836a 100644
--- a/apps/page/customer/src/lib/modals/address-selection-modal/address-selection-modal.component.scss
+++ b/apps/page/customer/src/lib/modals/address-selection-modal/address-selection-modal.component.scss
@@ -4,15 +4,15 @@
h2,
p {
- @apply text-center text-regular;
+ @apply text-center text-p2;
}
h2 {
- @apply font-bold text-card-sub;
+ @apply font-bold text-xl;
}
ul {
- @apply list-none text-regular -mx-4 p-0 mt-px-35;
+ @apply list-none text-p2 -mx-4 p-0 mt-px-35;
li {
@apply flex flex-row items-center justify-between border-glitter border-t-4 border-b-0 border-solid border-r-0 border-l-0 py-px-15 px-px-25;
@@ -22,7 +22,7 @@ ul {
}
button {
- @apply border-none outline-none bg-transparent text-brand text-cta-l text-right font-bold;
+ @apply border-none outline-none bg-transparent text-brand text-p1 text-right font-bold;
}
}
}
@@ -32,5 +32,5 @@ ul {
}
.select-btn {
- @apply border-none outline-none bg-brand text-white font-bold text-cta-l px-px-25 py-px-15 rounded-full my-8;
+ @apply border-none outline-none bg-brand text-white font-bold text-p1 px-px-25 py-px-15 rounded-full my-8;
}
diff --git a/apps/page/customer/src/lib/modals/cant-add-customer-to-cart-modal/cant-add-customer-to-cart.component.scss b/apps/page/customer/src/lib/modals/cant-add-customer-to-cart-modal/cant-add-customer-to-cart.component.scss
index ff804ea31..51f49abb7 100644
--- a/apps/page/customer/src/lib/modals/cant-add-customer-to-cart-modal/cant-add-customer-to-cart.component.scss
+++ b/apps/page/customer/src/lib/modals/cant-add-customer-to-cart-modal/cant-add-customer-to-cart.component.scss
@@ -8,11 +8,11 @@ h2 {
h2,
p {
- @apply text-center text-card-sub font-bold;
+ @apply text-center text-xl font-bold;
}
h2 {
- @apply font-bold text-card-sub;
+ @apply font-bold text-xl;
}
p {
@@ -24,9 +24,9 @@ p {
}
.search-btn {
- @apply border-4 border-solid border-brand outline-none bg-white text-brand font-bold text-cta-l px-px-25 py-px-15 rounded-full no-underline;
+ @apply border-4 border-solid border-brand outline-none bg-white text-brand font-bold text-p1 px-px-25 py-px-15 rounded-full no-underline;
}
.create-btn {
- @apply border-none outline-none bg-brand text-white font-bold text-cta-l px-px-25 py-px-15 rounded-full no-underline;
+ @apply border-none outline-none bg-brand text-white font-bold text-p1 px-px-25 py-px-15 rounded-full no-underline;
}
diff --git a/apps/page/customer/src/lib/modals/cant-select-guest/cant-select-guest-modal.component.scss b/apps/page/customer/src/lib/modals/cant-select-guest/cant-select-guest-modal.component.scss
index a0c53a4c3..a83542c7e 100644
--- a/apps/page/customer/src/lib/modals/cant-select-guest/cant-select-guest-modal.component.scss
+++ b/apps/page/customer/src/lib/modals/cant-select-guest/cant-select-guest-modal.component.scss
@@ -16,11 +16,11 @@ h2 {
h2,
p {
- @apply text-center text-card-sub font-bold;
+ @apply text-center text-xl font-bold;
}
h2 {
- @apply font-bold text-card-sub;
+ @apply font-bold text-xl;
}
p {
@@ -32,9 +32,9 @@ p {
}
.search-btn {
- @apply border-4 border-solid border-brand outline-none bg-white text-brand font-bold text-cta-l px-px-25 py-px-15 rounded-full no-underline;
+ @apply border-4 border-solid border-brand outline-none bg-white text-brand font-bold text-p1 px-px-25 py-px-15 rounded-full no-underline;
}
.create-btn {
- @apply border-none outline-none bg-brand text-white font-bold text-cta-l px-px-25 py-px-15 rounded-full no-underline;
+ @apply border-none outline-none bg-brand text-white font-bold text-p1 px-px-25 py-px-15 rounded-full no-underline;
}
diff --git a/apps/page/customer/src/lib/modals/webshop-customer-already-exists/webshop-customer-already-exists-modal.component.html b/apps/page/customer/src/lib/modals/webshop-customer-already-exists/webshop-customer-already-exists-modal.component.html
index b98ec463f..580163b10 100644
--- a/apps/page/customer/src/lib/modals/webshop-customer-already-exists/webshop-customer-already-exists-modal.component.html
+++ b/apps/page/customer/src/lib/modals/webshop-customer-already-exists/webshop-customer-already-exists-modal.component.html
@@ -1,7 +1,7 @@
{{ customer?.communicationDetails?.email }}
-
+
{{ customer?.organisation?.name }}
{{ customer?.lastName }} {{ customer?.firstName }}
diff --git a/apps/page/customer/src/lib/shared/customer-type-selector/customer-type-selector.component.scss b/apps/page/customer/src/lib/shared/customer-type-selector/customer-type-selector.component.scss
index 7d9b1ba8c..782cc7918 100644
--- a/apps/page/customer/src/lib/shared/customer-type-selector/customer-type-selector.component.scss
+++ b/apps/page/customer/src/lib/shared/customer-type-selector/customer-type-selector.component.scss
@@ -1,5 +1,5 @@
:host {
- @apply flex flex-row flex-wrap text-card-sub justify-center;
+ @apply flex flex-row flex-wrap text-xl justify-center;
}
ui-checkbox {
diff --git a/apps/page/dashboard/src/lib/info-card/info-card.component.html b/apps/page/dashboard/src/lib/info-card/info-card.component.html
index c5c364fc6..b015c4a21 100644
--- a/apps/page/dashboard/src/lib/info-card/info-card.component.html
+++ b/apps/page/dashboard/src/lib/info-card/info-card.component.html
@@ -1,11 +1,11 @@
{{ feed?.label }}
-
{{ feed?.headline }}
+
{{ feed?.headline }}
-
{{ item?.heading }}
+
{{ item?.heading }}
diff --git a/apps/page/dashboard/src/lib/kpi-card/kpi-card.component.scss b/apps/page/dashboard/src/lib/kpi-card/kpi-card.component.scss
index 056171df2..bd8a56622 100644
--- a/apps/page/dashboard/src/lib/kpi-card/kpi-card.component.scss
+++ b/apps/page/dashboard/src/lib/kpi-card/kpi-card.component.scss
@@ -20,7 +20,7 @@
}
.target-numbers {
- @apply text-sm;
+ @apply text-p3;
color: var(--page-dashboard-card-title-color);
}
diff --git a/apps/page/dashboard/src/lib/products-card/product-card.component.html b/apps/page/dashboard/src/lib/products-card/product-card.component.html
index 8a8637fd2..d216582e5 100644
--- a/apps/page/dashboard/src/lib/products-card/product-card.component.html
+++ b/apps/page/dashboard/src/lib/products-card/product-card.component.html
@@ -1,6 +1,6 @@
{{ feed?.label }}
-
{{ feed?.headline }}
+
{{ feed?.headline }}
diff --git a/apps/page/goods-in/src/lib/goods-in-cleanup-list/goods-in-cleanup-list.component.scss b/apps/page/goods-in/src/lib/goods-in-cleanup-list/goods-in-cleanup-list.component.scss
index 9386bf45e..0985781c9 100644
--- a/apps/page/goods-in/src/lib/goods-in-cleanup-list/goods-in-cleanup-list.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-cleanup-list/goods-in-cleanup-list.component.scss
@@ -10,21 +10,21 @@
margin-bottom: -16px;
.cleanup-title {
- @apply text-2xl font-bold m-0;
+ @apply text-h3 font-bold m-0;
}
.cleanup-paragraph {
- @apply text-2xl m-0 mt-1;
+ @apply text-h3 m-0 mt-1;
}
}
.hits {
- @apply text-active-branch mb-3 font-semibold text-base;
+ @apply text-active-branch mb-3 font-semibold text-p2;
}
}
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded;
}
.divider {
diff --git a/apps/page/goods-in/src/lib/goods-in-list/goods-in-list-item/goods-in-list-item.component.scss b/apps/page/goods-in/src/lib/goods-in-list/goods-in-list-item/goods-in-list-item.component.scss
index 62635acb7..e417943fb 100644
--- a/apps/page/goods-in/src/lib/goods-in-list/goods-in-list-item/goods-in-list-item.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-list/goods-in-list-item/goods-in-list-item.component.scss
@@ -7,7 +7,7 @@
min-height: 60px;
.instruction {
- @apply text-base text-warning text-right;
+ @apply text-p2 text-warning text-right;
}
.info {
@@ -22,7 +22,7 @@
}
.buyer-number {
- @apply text-base;
+ @apply text-p2;
}
}
@@ -157,11 +157,11 @@
@apply absolute flex flex-col w-28 right-5;
label {
- @apply font-semibold text-small mb-1;
+ @apply font-semibold text-p3 mb-1;
}
.ssc-input {
- @apply border-r-0 border-l-0 border-t-0 border-disabled-branch outline-none font-semibold text-cta-l;
+ @apply border-r-0 border-l-0 border-t-0 border-disabled-branch outline-none font-semibold text-p1;
border-bottom-width: 2px;
}
diff --git a/apps/page/goods-in/src/lib/goods-in-list/goods-in-list.component.scss b/apps/page/goods-in/src/lib/goods-in-list/goods-in-list.component.scss
index 059846f5a..376bc9ee9 100644
--- a/apps/page/goods-in/src/lib/goods-in-list/goods-in-list.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-list/goods-in-list.component.scss
@@ -7,11 +7,11 @@
margin-bottom: -16px;
.goods-in-list-title {
- @apply text-2xl font-bold m-0;
+ @apply text-h3 font-bold m-0;
}
.goods-in-list-paragraph {
- @apply text-2xl m-0 mb-6 mt-1;
+ @apply text-h3 m-0 mb-6 mt-1;
}
}
@@ -46,7 +46,7 @@ ui-order-by-filter {
}
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded;
}
hr {
diff --git a/apps/page/goods-in/src/lib/goods-in-remission-preview/goods-in-remission-preview.component.scss b/apps/page/goods-in/src/lib/goods-in-remission-preview/goods-in-remission-preview.component.scss
index b96f1f335..fb4988725 100644
--- a/apps/page/goods-in/src/lib/goods-in-remission-preview/goods-in-remission-preview.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-remission-preview/goods-in-remission-preview.component.scss
@@ -10,21 +10,21 @@
margin-bottom: -16px;
.preview-title {
- @apply text-2xl font-bold m-0;
+ @apply text-h3 font-bold m-0;
}
.preview-paragraph {
- @apply text-2xl m-0 mt-1;
+ @apply text-h3 m-0 mt-1;
}
}
.hits {
- @apply text-active-branch mb-3 font-semibold text-base;
+ @apply text-active-branch mb-3 font-semibold text-p2;
}
}
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded;
}
.divider {
diff --git a/apps/page/goods-in/src/lib/goods-in-reservation/goods-in-reservation.component.scss b/apps/page/goods-in/src/lib/goods-in-reservation/goods-in-reservation.component.scss
index 88b8e82e3..3774343db 100644
--- a/apps/page/goods-in/src/lib/goods-in-reservation/goods-in-reservation.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-reservation/goods-in-reservation.component.scss
@@ -10,21 +10,21 @@
margin-bottom: -16px;
.reservations-title {
- @apply text-2xl font-bold m-0;
+ @apply text-h3 font-bold m-0;
}
.reservations-paragraph {
- @apply text-2xl m-0 mt-1;
+ @apply text-h3 m-0 mt-1;
}
}
.hits {
- @apply text-active-branch mb-3 font-semibold text-base;
+ @apply text-active-branch mb-3 font-semibold text-p2;
}
}
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded;
}
.divider {
diff --git a/apps/page/goods-in/src/lib/goods-in-search/goods-in-search.component.scss b/apps/page/goods-in/src/lib/goods-in-search/goods-in-search.component.scss
index cb8c3496e..7e4e651ca 100644
--- a/apps/page/goods-in/src/lib/goods-in-search/goods-in-search.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-search/goods-in-search.component.scss
@@ -3,7 +3,7 @@
}
.filter {
- @apply absolute font-sans flex items-center font-bold bg-gray-400 border-0 text-regular -top-12 right-0 py-px-8 px-px-15 rounded-filter justify-center z-sticky;
+ @apply absolute font-sans flex items-center font-bold bg-gray-400 border-0 text-p2 -top-12 right-0 py-px-8 px-px-15 rounded-filter justify-center z-sticky;
min-width: 106px;
.label {
diff --git a/apps/page/goods-in/src/lib/goods-in-search/search-main/goods-in-search-main.component.scss b/apps/page/goods-in/src/lib/goods-in-search/search-main/goods-in-search-main.component.scss
index a1b92a410..f13533670 100644
--- a/apps/page/goods-in/src/lib/goods-in-search/search-main/goods-in-search-main.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-search/search-main/goods-in-search-main.component.scss
@@ -6,7 +6,7 @@
.goods-in-list-reservation,
.goods-in-list-cleanup,
.goods-in-list-remission-preview {
- @apply text-center text-xl text-inactive-branch block bg-white rounded-t-card font-bold no-underline py-4;
+ @apply text-center text-xl text-inactive-branch block bg-white rounded-t font-bold no-underline py-4;
}
.goods-in-list-reservation,
@@ -16,15 +16,15 @@
}
.search-main {
- @apply bg-white text-center rounded-t-card py-5 shadow-card;
+ @apply bg-white text-center rounded-t py-5 shadow-card;
height: calc(100vh - 510px);
.search-main-title {
- @apply text-2xl font-bold;
+ @apply text-h3 font-bold;
}
.search-main-paragraph {
- @apply text-2xl mb-12 mt-6;
+ @apply text-h3 mb-12 mt-6;
}
ui-filter-input-group-main {
diff --git a/apps/page/goods-in/src/lib/goods-in-search/search-results/goods-in-search-results.component.scss b/apps/page/goods-in/src/lib/goods-in-search/search-results/goods-in-search-results.component.scss
index a3f04ae20..15f2d25a2 100644
--- a/apps/page/goods-in/src/lib/goods-in-search/search-results/goods-in-search-results.component.scss
+++ b/apps/page/goods-in/src/lib/goods-in-search/search-results/goods-in-search-results.component.scss
@@ -7,20 +7,20 @@
margin-bottom: -16px;
.goods-in-search-results-title {
- @apply text-2xl font-bold m-0;
+ @apply text-h3 font-bold m-0;
}
.goods-in-search-results-paragraph {
- @apply text-2xl m-0 mt-1;
+ @apply text-h3 m-0 mt-1;
}
}
.hits {
- @apply text-active-branch text-right mb-3 font-semibold text-base;
+ @apply text-active-branch text-right mb-3 font-semibold text-p2;
}
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-branch py-10 rounded;
}
.divider {
diff --git a/apps/page/goods-out/src/lib/goods-out-search/goods-out-search.component.scss b/apps/page/goods-out/src/lib/goods-out-search/goods-out-search.component.scss
index 6a1428634..6bf059121 100644
--- a/apps/page/goods-out/src/lib/goods-out-search/goods-out-search.component.scss
+++ b/apps/page/goods-out/src/lib/goods-out-search/goods-out-search.component.scss
@@ -3,7 +3,7 @@
}
.filter {
- @apply absolute font-sans flex items-center font-bold bg-wild-blue-yonder border-0 text-regular -top-12 right-0 py-px-8 px-px-15 rounded-filter justify-center z-sticky;
+ @apply absolute font-sans flex items-center font-bold bg-wild-blue-yonder border-0 text-p2 -top-12 right-0 py-px-8 px-px-15 rounded-filter justify-center z-sticky;
min-width: 106px;
.label {
diff --git a/apps/page/goods-out/src/lib/goods-out-search/search-main/goods-out-search-main.component.scss b/apps/page/goods-out/src/lib/goods-out-search/search-main/goods-out-search-main.component.scss
index df66b06ab..35ad3c406 100644
--- a/apps/page/goods-out/src/lib/goods-out-search/search-main/goods-out-search-main.component.scss
+++ b/apps/page/goods-out/src/lib/goods-out-search/search-main/goods-out-search-main.component.scss
@@ -3,19 +3,19 @@
}
.goods-out-list-navigation {
- @apply text-center text-2xl text-active-branch block bg-white rounded-t-card font-bold no-underline py-5;
+ @apply text-center text-h3 text-active-branch block bg-white rounded-t font-bold no-underline py-5;
}
.search-main {
- @apply bg-white text-center rounded-t-card py-5 shadow-card;
+ @apply bg-white text-center rounded-t py-5 shadow-card;
height: calc(100vh - 380px);
.search-main-title {
- @apply text-2xl font-bold;
+ @apply text-h3 font-bold;
}
.search-main-paragraph {
- @apply text-2xl mb-12 mt-6;
+ @apply text-h3 mb-12 mt-6;
}
ui-filter-input-group-main {
diff --git a/apps/page/goods-out/src/lib/goods-out-search/search-results/goods-out-search-results.component.scss b/apps/page/goods-out/src/lib/goods-out-search/search-results/goods-out-search-results.component.scss
index 1e45ce1f5..7cfd2c29e 100644
--- a/apps/page/goods-out/src/lib/goods-out-search/search-results/goods-out-search-results.component.scss
+++ b/apps/page/goods-out/src/lib/goods-out-search/search-results/goods-out-search-results.component.scss
@@ -3,11 +3,11 @@
}
.hits {
- @apply text-active-customer text-right mb-3 font-semibold text-base;
+ @apply text-active-customer text-right mb-3 font-semibold text-p2;
}
.empty-message {
- @apply bg-white text-center font-semibold text-inactive-customer py-10 rounded-card;
+ @apply bg-white text-center font-semibold text-inactive-customer py-10 rounded;
}
.divider {
diff --git a/apps/page/package-inspection/src/lib/components/package-details-list/package-details-list-item.component.scss b/apps/page/package-inspection/src/lib/components/package-details-list/package-details-list-item.component.scss
index 196c3496f..ad5cf29c0 100644
--- a/apps/page/package-inspection/src/lib/components/package-details-list/package-details-list-item.component.scss
+++ b/apps/page/package-inspection/src/lib/components/package-details-list/package-details-list-item.component.scss
@@ -65,7 +65,7 @@
}
.package-details-list-item__shelf-info {
- @apply text-sm leading-7 text-ucla-blue;
+ @apply text-p3 leading-7 text-ucla-blue;
}
.package-details-list-item__inventory-quantity {
diff --git a/apps/page/package-inspection/src/lib/package-details/package-details.component.html b/apps/page/package-inspection/src/lib/package-details/package-details.component.html
index b25eacf4e..c16d10c94 100644
--- a/apps/page/package-inspection/src/lib/package-details/package-details.component.html
+++ b/apps/page/package-inspection/src/lib/package-details/package-details.component.html
@@ -1,5 +1,5 @@
-
Packstück-Prüfung
+ Packstück-Prüfung
diff --git a/apps/page/package-inspection/src/lib/package-result/package-result.component.html b/apps/page/package-inspection/src/lib/package-result/package-result.component.html
index 8fcc1edc8..6feef5999 100644
--- a/apps/page/package-inspection/src/lib/package-result/package-result.component.html
+++ b/apps/page/package-inspection/src/lib/package-result/package-result.component.html
@@ -1,5 +1,5 @@
-
Packstück-Prüfung
+
Packstück-Prüfung