@colijnit/transaction 261.20.25 → 261.20.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/fesm2022/colijnit-transaction.mjs +280 -24
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +46 -5
- package/lib/component/returns/return-wizard/style/_layout.scss +9 -0
- package/lib/component/returns/return-wizard/style/_material-definition.scss +0 -0
- package/lib/component/returns/return-wizard/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/style/material.scss +4 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss +26 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_material-definition.scss +1 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_theme.scss +4 -0
- package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/material.scss +3 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_layout.scss +44 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_material-definition.scss +0 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_theme.scss +6 -0
- package/lib/component/transaction-line/transaction-customer-portal-return-line/style/material.scss +3 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/style/_layout.scss +10 -0
- package/lib/component/transaction-search/transaction-search-tile/transaction-search-sales-line-select-tile/transaction-line-tile/style/_layout.scss +13 -8
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -290,6 +290,7 @@ import { PdfWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-wo
|
|
|
290
290
|
import { PdfWorkOrderResponse } from '@colijnit/transactionapi/build/model/pdf-work-order-response.bo';
|
|
291
291
|
import { PdfHistoricWorkOrderRequest } from '@colijnit/transactionapi/build/model/pdf-historic-work-order-request';
|
|
292
292
|
import { LspWmsDeliveryNotePrintRequest } from '@colijnit/transactionapi/build/model/lsp-wms-delivery-note-print-request';
|
|
293
|
+
import { CreateSalesReturnRequest } from '@colijnit/transactionapi/build/model/create-sales-return-request';
|
|
293
294
|
import { BusinessObjectIDType } from '@colijnit/ioneconnector/build/type/business-object-id-type';
|
|
294
295
|
import { RelationKind as RelationKind$1 } from '@colijnit/articleapi/build/enum/relation-kind.enum';
|
|
295
296
|
import { Relation } from '@colijnit/relationapi/build/model/relation.bo';
|
|
@@ -673,6 +674,7 @@ declare enum TransactionTypeCategory {
|
|
|
673
674
|
PurchaseOrderMarginInfo = "purchaseOrderMarginInfo",
|
|
674
675
|
SalesOrderMarginInfo = "salesOrderMarginInfo",
|
|
675
676
|
SalesCustomerPortal = "SalesCustomerPortal",
|
|
677
|
+
SalesReturn = "SalesReturn",
|
|
676
678
|
SalesOrderPurchase = "salesOrderPurchase",
|
|
677
679
|
SalesOrderAllocation = "salesOrderAllocation",
|
|
678
680
|
SalesOrderPicking = "salesOrderPicking",
|
|
@@ -931,6 +933,10 @@ declare class TransactionEventService {
|
|
|
931
933
|
readonly transportTransactionRemoveRequestUpdated: BehaviorSubject<RemoveTransactionFromContainerRequest>;
|
|
932
934
|
readonly removalModeContainerInfo: BehaviorSubject<ContainerInfo>;
|
|
933
935
|
readonly addContactMoment: BehaviorSubject<boolean>;
|
|
936
|
+
readonly saveFormResponse: BehaviorSubject<{
|
|
937
|
+
lineUUID: string;
|
|
938
|
+
formResponseId: number;
|
|
939
|
+
}>;
|
|
934
940
|
readonly transportTransactionSelectionChanged: Subject<TransactionSearchResult>;
|
|
935
941
|
readonly transportTransactionLineSelectionChanged: Subject<{
|
|
936
942
|
transId: number;
|
|
@@ -1079,6 +1085,7 @@ declare class TransactionConnectorAdapterService {
|
|
|
1079
1085
|
rollbackBeacon(): Promise<void>;
|
|
1080
1086
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<TransactionInfoResponse>;
|
|
1081
1087
|
createSalesOrder(request: CreateSalesOrderRequest): Promise<TransactionInfoResponse>;
|
|
1088
|
+
createSalesReturn(request: CreateSalesReturnRequest): Promise<TransactionInfoResponse>;
|
|
1082
1089
|
createCashRegisterOrder(request: CreateCashRegisterOrderRequest): Promise<TransactionInfoResponse>;
|
|
1083
1090
|
createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<TransactionInfoResponse>;
|
|
1084
1091
|
createServiceOrder(request: CreateServiceOrderRequest): Promise<TransactionInfoResponse>;
|
|
@@ -1532,6 +1539,7 @@ declare class TransactionConnectorService {
|
|
|
1532
1539
|
getMarketingCodes(): Promise<Marketing[]>;
|
|
1533
1540
|
createTransaction(kind: TransactionKind, branchNr: string): Promise<TransactionInfoResponse>;
|
|
1534
1541
|
createSalesOrder(request: CreateSalesOrderRequest): Promise<TransactionInfoResponse>;
|
|
1542
|
+
createSalesReturn(request: CreateSalesReturnRequest): Promise<TransactionInfoResponse>;
|
|
1535
1543
|
createCashRegisterOrder(request: CreateCashRegisterOrderRequest): Promise<TransactionInfoResponse>;
|
|
1536
1544
|
createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<TransactionInfoResponse>;
|
|
1537
1545
|
createServiceOrder(request: CreateServiceOrderRequest): Promise<TransactionInfoResponse>;
|
|
@@ -2473,6 +2481,7 @@ declare class TransactionService extends PendingReasonService {
|
|
|
2473
2481
|
getRelationPrivacySettings(): Promise<RelationPrivacySetting[]>;
|
|
2474
2482
|
getArticleBoundTextLinesOfArticleLine(articleLineUuid: string): Promise<TransactionLineInfo[]>;
|
|
2475
2483
|
createSalesOrder(request: CreateSalesOrderRequest): Promise<boolean>;
|
|
2484
|
+
createSalesReturn(request: CreateSalesReturnRequest): Promise<boolean>;
|
|
2476
2485
|
createCashRegisterOrder(request: CreateCashRegisterOrderRequest, saveTransaction?: boolean): Promise<boolean>;
|
|
2477
2486
|
createPurchaseOrder(request: CreatePurchaseOrderRequest): Promise<boolean>;
|
|
2478
2487
|
createServiceOrder(request: CreateServiceOrderRequest): Promise<boolean>;
|
|
@@ -6746,6 +6755,37 @@ declare class TransactionCustomerPortalLineModule {
|
|
|
6746
6755
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionCustomerPortalLineModule>;
|
|
6747
6756
|
}
|
|
6748
6757
|
|
|
6758
|
+
declare class TransactionCustomerPortalReturnLineComponent extends TransactionLineBaseComponent {
|
|
6759
|
+
orderLineSetService: OrderLineSetService;
|
|
6760
|
+
transactionHeaderService: TransactionHeaderService;
|
|
6761
|
+
transactionLineService: TransactionLineService;
|
|
6762
|
+
transactionEventService: TransactionEventService;
|
|
6763
|
+
iconCacheService: IconCacheService;
|
|
6764
|
+
screenConfigService: TransactionScreenConfigurationService;
|
|
6765
|
+
protected imageService: TransactionImageService;
|
|
6766
|
+
protected dictionaryService: DictionaryService;
|
|
6767
|
+
protected transactionService: TransactionService;
|
|
6768
|
+
protected changeDetector: ChangeDetectorRef;
|
|
6769
|
+
readonly category: typeof TransactionTypeCategory;
|
|
6770
|
+
transactionLineActionButtons: TransactionLineActionButtonsComponent;
|
|
6771
|
+
descriptionDblClick: EventEmitter<void>;
|
|
6772
|
+
showClass(): boolean;
|
|
6773
|
+
stock: StockStatus;
|
|
6774
|
+
noLabel: boolean;
|
|
6775
|
+
statusBarConfigNames: StatusBarCfgNames;
|
|
6776
|
+
discountConfigNames: LineDiscountCfgNames;
|
|
6777
|
+
constructor(orderLineSetService: OrderLineSetService, transactionHeaderService: TransactionHeaderService, transactionLineService: TransactionLineService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef);
|
|
6778
|
+
lineSelected(selected: boolean): void;
|
|
6779
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCustomerPortalReturnLineComponent, never>;
|
|
6780
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionCustomerPortalReturnLineComponent, "co-transaction-customer-portal-return-line", never, {}, { "descriptionDblClick": "descriptionDblClick"; }, never, never, false, never>;
|
|
6781
|
+
}
|
|
6782
|
+
|
|
6783
|
+
declare class TransactionCustomerPortalReturnLineModule {
|
|
6784
|
+
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCustomerPortalReturnLineModule, never>;
|
|
6785
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionCustomerPortalReturnLineModule, [typeof TransactionCustomerPortalReturnLineComponent], [typeof i2.CommonModule, typeof CoreModule, typeof i3.ButtonModule, typeof i3.InputNumberPickerModule, typeof TransactionArticleTextModule, typeof TransactionArticleTextOverviewModule, typeof PipeModule, typeof TransactionLineActionButtonsModule, typeof i3.IconModule, typeof EditableLabelModule, typeof TransactionLinePriceModule, typeof TransactionLineDescriptionModule, typeof TransactionBaseLineModule, typeof i13.DragDropModule, typeof TransactionLineCommissionButtonModule, typeof TransactionLineWarehouseButtonModule, typeof TransactionLineDeliveryButtonModule, typeof TransactionLineDeliveryDateButtonModule, typeof DialogTransactionLineVatModule, typeof DialogTransactionLineDiscountModule, typeof TransactionLineStatusbarModule, typeof TransactionLineAmountModule, typeof TransactionLineVatButtonModule, typeof TransactionLineDiscountButtonModule, typeof TransactionLineDeliveryDateModule, typeof TransactionMarginInfoLineModule, typeof TransactionPlanningLineModule, typeof i3.ObserveVisibilityModule, typeof i3.ScreenConfigurationModule, typeof TransactionLineLabelModule, typeof TransactionLineDirectSellButtonModule], [typeof TransactionCustomerPortalReturnLineComponent]>;
|
|
6786
|
+
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionCustomerPortalReturnLineModule>;
|
|
6787
|
+
}
|
|
6788
|
+
|
|
6749
6789
|
declare abstract class TransactionOrderDeliveryLineBaseComponent extends TransactionLineBaseComponent implements OnInit, OnDestroy {
|
|
6750
6790
|
private _subscriptions;
|
|
6751
6791
|
private _initialized;
|
|
@@ -7907,7 +7947,7 @@ declare class TransactionSalesOverviewButtonBarButtonComponent extends Transacti
|
|
|
7907
7947
|
showCategories: boolean;
|
|
7908
7948
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7909
7949
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7910
|
-
currentTitle(): "
|
|
7950
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
7911
7951
|
ngOnDestroy(): void;
|
|
7912
7952
|
handleClickWrapper(event: MouseEvent): void;
|
|
7913
7953
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -7933,7 +7973,7 @@ declare class TransactionPurchaseOverviewButtonBarButtonComponent extends Transa
|
|
|
7933
7973
|
constructor(iconCacheService: IconCacheService, transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, changeDetector: ChangeDetectorRef, _mappingService: TransactionMappingService, _transactionService: TransactionService, _elementRef: ElementRef);
|
|
7934
7974
|
ngOnDestroy(): void;
|
|
7935
7975
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7936
|
-
currentTitle(): "
|
|
7976
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
7937
7977
|
handleClickWrapper(event: MouseEvent): void;
|
|
7938
7978
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): Promise<void>;
|
|
7939
7979
|
private handleDocumentClick;
|
|
@@ -7985,7 +8025,7 @@ declare class TransactionSalesQuotationButtonBarButtonComponent extends Transact
|
|
|
7985
8025
|
showCategories: boolean;
|
|
7986
8026
|
constructor(iconCacheService: IconCacheService, changeDetector: ChangeDetectorRef, _transactionEventService: TransactionEventService, _mappingService: TransactionMappingService, _dictionaryService: DictionaryService, _screenConfigService: TransactionScreenConfigurationService, _transactionService: TransactionService, _elementRef: ElementRef, _renderer: Renderer2, _transactionBaseService: TransactionService);
|
|
7987
8027
|
currentIcon(): Icon.CartShoppingRegular | Icon.ChartPieSimpleRegular;
|
|
7988
|
-
currentTitle(): "
|
|
8028
|
+
currentTitle(): "OVERVIEW" | "MARGINS";
|
|
7989
8029
|
ngOnDestroy(): void;
|
|
7990
8030
|
handleClickWrapper(event: MouseEvent): void;
|
|
7991
8031
|
handleMarginClicked(event: MouseEvent, category: TransactionTypeCategory): void;
|
|
@@ -9207,6 +9247,7 @@ declare class TransactionSearchResultComponent implements OnInit, OnChanges, OnD
|
|
|
9207
9247
|
showCheckbox: boolean;
|
|
9208
9248
|
batchCategory: BatchDeliveryCategory;
|
|
9209
9249
|
extendedTransactionSearch: boolean;
|
|
9250
|
+
returnWizardLayout: boolean;
|
|
9210
9251
|
set activeContentViewMode(value: ContentViewMode);
|
|
9211
9252
|
get activeContentViewMode(): ContentViewMode;
|
|
9212
9253
|
set fullscreen(value: boolean);
|
|
@@ -9257,7 +9298,7 @@ declare class TransactionSearchResultComponent implements OnInit, OnChanges, OnD
|
|
|
9257
9298
|
private _showBatchProcessesStatus;
|
|
9258
9299
|
private _clearSelected;
|
|
9259
9300
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionSearchResultComponent, never>;
|
|
9260
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchResultComponent, "co-transaction-search-result", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "batchCategory": { "alias": "batchCategory"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "activeContentViewMode": { "alias": "activeContentViewMode"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; }, { "transactionClick": "transactionClick"; "containerChosen": "containerChosen"; }, never, never, false, never>;
|
|
9301
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionSearchResultComponent, "co-transaction-search-result", never, { "draggableTransactions": { "alias": "draggableTransactions"; "required": false; }; "showCheckbox": { "alias": "showCheckbox"; "required": false; }; "batchCategory": { "alias": "batchCategory"; "required": false; }; "extendedTransactionSearch": { "alias": "extendedTransactionSearch"; "required": false; }; "returnWizardLayout": { "alias": "returnWizardLayout"; "required": false; }; "activeContentViewMode": { "alias": "activeContentViewMode"; "required": false; }; "fullscreen": { "alias": "fullscreen"; "required": false; }; }, { "transactionClick": "transactionClick"; "containerChosen": "containerChosen"; }, never, never, false, never>;
|
|
9261
9302
|
}
|
|
9262
9303
|
|
|
9263
9304
|
declare class AvatarComponent implements OnInit {
|
|
@@ -11680,7 +11721,7 @@ declare class TransactionLineToolbarModule {
|
|
|
11680
11721
|
|
|
11681
11722
|
declare class TransactionLineModule {
|
|
11682
11723
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLineModule, never>;
|
|
11683
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineModule, [typeof TransactionLineComponent], [typeof i2.CommonModule, typeof TransactionTextLineModule, typeof TransactionOverviewLineModule, typeof TransactionPurchaseLineModule, typeof TransactionGoodsAllocationLineModule, typeof TransactionCustomerPortalLineModule, typeof TransactionOrderDeliveryLineModule, typeof TransactionInvoiceLineModule, typeof TransactionPickedLineModule, typeof TransactionToBePickedLineModule, typeof TransactionPurchaseOverviewLineModule, typeof TransactionReceiveGoodsLineModule, typeof TransactionInterbranchReceiveGoodsLineModule, typeof TransactionPurchaseOrderLineModule, typeof TransactionCashRegisterOrderLineModule, typeof TransactionSalesOrderQuotationLineModule, typeof TransactionReserveGoodsLineModule, typeof TransactionPurchaseOrderStickersLineModule, typeof TransactionPurchaseTransportLineModule, typeof TransactionPlanningLineModule, typeof TransactionLineLabelModule, typeof TransactionLineSidePanelModule, typeof i3.ClickoutsideModule, typeof TransactionLineToolbarModule], [typeof TransactionLineComponent]>;
|
|
11724
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionLineModule, [typeof TransactionLineComponent], [typeof i2.CommonModule, typeof TransactionTextLineModule, typeof TransactionOverviewLineModule, typeof TransactionPurchaseLineModule, typeof TransactionGoodsAllocationLineModule, typeof TransactionCustomerPortalLineModule, typeof TransactionCustomerPortalReturnLineModule, typeof TransactionOrderDeliveryLineModule, typeof TransactionInvoiceLineModule, typeof TransactionPickedLineModule, typeof TransactionToBePickedLineModule, typeof TransactionPurchaseOverviewLineModule, typeof TransactionReceiveGoodsLineModule, typeof TransactionInterbranchReceiveGoodsLineModule, typeof TransactionPurchaseOrderLineModule, typeof TransactionCashRegisterOrderLineModule, typeof TransactionSalesOrderQuotationLineModule, typeof TransactionReserveGoodsLineModule, typeof TransactionPurchaseOrderStickersLineModule, typeof TransactionPurchaseTransportLineModule, typeof TransactionPlanningLineModule, typeof TransactionLineLabelModule, typeof TransactionLineSidePanelModule, typeof i3.ClickoutsideModule, typeof TransactionLineToolbarModule], [typeof TransactionLineComponent]>;
|
|
11684
11725
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionLineModule>;
|
|
11685
11726
|
}
|
|
11686
11727
|
|
|
File without changes
|
package/lib/component/returns/return-wizard/wizard-return-line-display-tile/style/_layout.scss
ADDED
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
@include export-module('co-wizard-return-line-display-tile-layout') {
|
|
2
|
+
.co-wizard-return-line-display-tile {
|
|
3
|
+
.return-line-tile-contents {
|
|
4
|
+
display: flex;
|
|
5
|
+
flex-direction: row;
|
|
6
|
+
column-gap: 30px;
|
|
7
|
+
.return-line-image-display{
|
|
8
|
+
display: flex;
|
|
9
|
+
height: 100px;
|
|
10
|
+
width: 100px;
|
|
11
|
+
justify-content: center;
|
|
12
|
+
align-items: center;
|
|
13
|
+
}
|
|
14
|
+
.return-line-texts {
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
row-gap: 10px;
|
|
18
|
+
}
|
|
19
|
+
.return-line-picker-button {
|
|
20
|
+
display: flex;
|
|
21
|
+
flex-direction: row;
|
|
22
|
+
column-gap: 10px;
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
package/lib/component/transaction-line/transaction-customer-portal-return-line/style/_layout.scss
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
@import "../../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-customer-portal-return-line-layout') {
|
|
4
|
+
.co-transaction-customer-portal-return-line {
|
|
5
|
+
display: flex;
|
|
6
|
+
flex-direction: column;
|
|
7
|
+
gap: 30px;
|
|
8
|
+
box-shadow: 0 4px 4px 0 #00000040;
|
|
9
|
+
border: 1px solid #F4F4F9;
|
|
10
|
+
padding: 30px 20px 15px 20px;
|
|
11
|
+
cursor: pointer;
|
|
12
|
+
.co-transaction-base-line {
|
|
13
|
+
.order-lines-container {
|
|
14
|
+
flex-direction: column;
|
|
15
|
+
gap: 10px;
|
|
16
|
+
justify-content: flex-start;
|
|
17
|
+
.portal-partial-delivery {
|
|
18
|
+
font-size: 10px;
|
|
19
|
+
.partial-delivery {
|
|
20
|
+
display: flex;
|
|
21
|
+
gap: 5px;
|
|
22
|
+
}
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
.transaction-line-section {
|
|
27
|
+
display: flex;
|
|
28
|
+
gap: 10px;
|
|
29
|
+
margin-right: 15px;
|
|
30
|
+
.vat-button {
|
|
31
|
+
margin-right: 15px;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
.transaction-line-delivery-date {
|
|
35
|
+
display: flex;
|
|
36
|
+
align-items: center;
|
|
37
|
+
column-gap: $tp-default-column-gap;
|
|
38
|
+
.co-input-date {
|
|
39
|
+
height: auto;
|
|
40
|
+
padding: 0;
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
}
|
|
44
|
+
}
|
|
File without changes
|
|
@@ -31,6 +31,16 @@
|
|
|
31
31
|
width: calc(25% - 30px);
|
|
32
32
|
}
|
|
33
33
|
}
|
|
34
|
+
.order-lines-wizard {
|
|
35
|
+
display: flex;
|
|
36
|
+
flex-direction: column;
|
|
37
|
+
align-items: flex-start;
|
|
38
|
+
gap: 30px;
|
|
39
|
+
flex-wrap: wrap;
|
|
40
|
+
.inner-lines {
|
|
41
|
+
width: calc(25% - 30px);
|
|
42
|
+
}
|
|
43
|
+
}
|
|
34
44
|
.service-lines {
|
|
35
45
|
.service-line {
|
|
36
46
|
display: flex;
|
|
@@ -11,14 +11,19 @@
|
|
|
11
11
|
width: 80px;
|
|
12
12
|
height: auto;
|
|
13
13
|
}
|
|
14
|
-
.
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
14
|
+
.item-info {
|
|
15
|
+
display: flex;
|
|
16
|
+
flex-direction: column;
|
|
17
|
+
gap: 5px;
|
|
18
|
+
.good-description {
|
|
19
|
+
font-size: 12px;
|
|
20
|
+
font-weight: bold;
|
|
21
|
+
display: -webkit-box;
|
|
22
|
+
-webkit-line-clamp: 2;
|
|
23
|
+
-webkit-box-orient: vertical;
|
|
24
|
+
overflow: hidden;
|
|
25
|
+
text-overflow: ellipsis;
|
|
26
|
+
}
|
|
22
27
|
}
|
|
23
28
|
}
|
|
24
29
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "261.20.
|
|
3
|
+
"version": "261.20.27",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
"@colijnit/relationapi": ">=261.1.1",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
21
|
"@colijnit/sharedcomponents": ">=261.20.0",
|
|
22
|
-
"@colijnit/transactionapi": ">=261.1.
|
|
22
|
+
"@colijnit/transactionapi": ">=261.1.17"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|
|
25
25
|
"tslib": "^2.8.1"
|