@colijnit/transaction 262.1.18 → 262.1.20
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 +126 -99
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +6 -4
- package/lib/component/checkout/checkout-overview-relation-edit/style/material.scss +0 -1
- package/lib/component/dialog/catalog/dialog-catalog/style/_layout.scss +1 -1
- package/lib/component/dialog/catalog/dialog-catalog/style/_material-definition.scss +1 -0
- package/lib/component/dialog/transaction-search/components/transaction-search-header/style/_material-definition.scss +1 -0
- package/lib/component/dialog/transaction-search/style/_material-definition.scss +1 -0
- package/lib/component/relation/relation-addresses/style/_layout.scss +0 -4
- package/lib/component/transaction-header/transaction-header-delivery/style/_layout.scss +0 -4
- package/lib/component/transaction-header/transaction-header-popup/style/_layout.scss +0 -5
- package/lib/component/transaction-header/transaction-header-relation/style/_layout.scss +0 -4
- package/lib/component/transaction-header/transaction-header-relation/style/material.scss +0 -1
- package/lib/component/transaction-navigation-button-list/style/_layout.scss +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -15569,6 +15569,9 @@ declare class TransactionCopyOrderComponent extends TransactionHeaderBaseCompone
|
|
|
15569
15569
|
protected imageService: TransactionImageService;
|
|
15570
15570
|
protected changeDetector: ChangeDetectorRef;
|
|
15571
15571
|
readonly cfgNames: typeof TransactionCfgName;
|
|
15572
|
+
form: FormComponent;
|
|
15573
|
+
closeDialog: EventEmitter<void>;
|
|
15574
|
+
showClass(): boolean;
|
|
15572
15575
|
salesPersons: SalesPerson[];
|
|
15573
15576
|
branches: BranchLov[];
|
|
15574
15577
|
customers: RelationListObject[];
|
|
@@ -15577,14 +15580,13 @@ declare class TransactionCopyOrderComponent extends TransactionHeaderBaseCompone
|
|
|
15577
15580
|
selectedCustomer: RelationSmallObject$1 | RelationListObject;
|
|
15578
15581
|
copyTransactionRequest: CopyTransactionRequest;
|
|
15579
15582
|
disableCopyOrderButtons: boolean;
|
|
15580
|
-
closeDialog: EventEmitter<void>;
|
|
15581
|
-
showClass(): boolean;
|
|
15582
15583
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, service: TransactionService, iconCacheService: IconCacheService, relationService: TransactionRelationService, transactionCreationService: TransactionCreationService, transactionScreenConfigurationService: TransactionScreenConfigurationService, dictionaryService: DictionaryService, imageService: TransactionImageService, changeDetector: ChangeDetectorRef);
|
|
15583
|
-
protected transactionSet(): void;
|
|
15584
15584
|
getCustomers: (text: string) => Promise<RelationListObject[]>;
|
|
15585
15585
|
getHeaderTitle(): string;
|
|
15586
15586
|
handleOkClick(): Promise<void>;
|
|
15587
|
+
handleFormSubmit(): Promise<void>;
|
|
15587
15588
|
handleCancelClick(): void;
|
|
15589
|
+
protected transactionSet(): void;
|
|
15588
15590
|
private _getSalesPersons;
|
|
15589
15591
|
private _getBranches;
|
|
15590
15592
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCopyOrderComponent, never>;
|
|
@@ -15593,7 +15595,7 @@ declare class TransactionCopyOrderComponent extends TransactionHeaderBaseCompone
|
|
|
15593
15595
|
|
|
15594
15596
|
declare class TransactionCopyOrderModule {
|
|
15595
15597
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionCopyOrderModule, never>;
|
|
15596
|
-
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionCopyOrderModule, [typeof TransactionCopyOrderComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.ButtonModule, typeof PipeModule, typeof i3.ListOfValuesModule, typeof i3.InputDatePickerModule, typeof i3.IconModule, typeof DefaultConfirmCancelButtonsModule], [typeof TransactionCopyOrderComponent]>;
|
|
15598
|
+
static ɵmod: i0.ɵɵNgModuleDeclaration<TransactionCopyOrderModule, [typeof TransactionCopyOrderComponent], [typeof i2.CommonModule, typeof i3.CoDialogModule, typeof i3.ButtonModule, typeof PipeModule, typeof i3.ListOfValuesModule, typeof i3.InputDatePickerModule, typeof i3.IconModule, typeof DefaultConfirmCancelButtonsModule, typeof i3.FormModule, typeof i3.ScreenConfigurationModule], [typeof TransactionCopyOrderComponent]>;
|
|
15597
15599
|
static ɵinj: i0.ɵɵInjectorDeclaration<TransactionCopyOrderModule>;
|
|
15598
15600
|
}
|
|
15599
15601
|
|
|
@@ -54,10 +54,6 @@
|
|
|
54
54
|
.co-transaction-filter-categories .transaction-filter-categories-wrapper {
|
|
55
55
|
justify-content: flex-start;
|
|
56
56
|
}
|
|
57
|
-
.co-relation-addresses .co-carousel-3d {
|
|
58
|
-
max-width: 100%;
|
|
59
|
-
height: 175px;
|
|
60
|
-
}
|
|
61
57
|
.header-relation-navigation-wrapper {
|
|
62
58
|
display: flex;
|
|
63
59
|
overflow: hidden;
|
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
@import "./material-definition";
|
|
2
2
|
@import "./layout";
|
|
3
3
|
@import "./theme";
|
|
4
|
-
$cc-co-carousel-3d-navigate-button-width: 40px;
|
|
5
4
|
@import "../../../core/base/components/transaction-header-block/style/material";
|
|
6
5
|
@import "../../../relation/relation-type/style/material";
|
|
7
6
|
@import "../../../relation/relation-addresses/style/material";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "262.1.
|
|
3
|
+
"version": "262.1.20",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 20",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -13,12 +13,12 @@
|
|
|
13
13
|
"@colijnit/catalog": ">=262.1.0",
|
|
14
14
|
"@colijnit/corecomponents_v12": ">=262.1.5",
|
|
15
15
|
"@colijnit/ioneconnector": ">=262.1.0",
|
|
16
|
-
"@colijnit/mainapi": ">=262.1.
|
|
16
|
+
"@colijnit/mainapi": ">=262.1.8",
|
|
17
17
|
"@colijnit/product": ">=262.1.0",
|
|
18
18
|
"@colijnit/relation": ">=262.1.0",
|
|
19
19
|
"@colijnit/relationapi": ">=262.1.0",
|
|
20
20
|
"@colijnit/sharedapi": ">=1.0.20",
|
|
21
|
-
"@colijnit/sharedcomponents": ">=262.1.
|
|
21
|
+
"@colijnit/sharedcomponents": ">=262.1.11",
|
|
22
22
|
"@colijnit/transactionapi": ">=262.1.6"
|
|
23
23
|
},
|
|
24
24
|
"dependencies": {
|