@colijnit/transaction 255.1.77 → 255.1.78
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/bundles/colijnit-transaction.umd.js +23 -17
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/lib/component/core/relation/customer-groups.component.js +15 -13
- package/esm2015/lib/component/core/relation/customer-languages.component.js +18 -16
- package/esm2015/lib/component/core/relation/customer-titles.component.js +18 -16
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +44 -38
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/core/relation/customer-groups.component.d.ts +2 -0
- package/lib/component/core/relation/customer-languages.component.d.ts +6 -4
- package/lib/component/core/relation/customer-titles.component.d.ts +6 -4
- package/package.json +2 -2
|
@@ -2,6 +2,7 @@ import { EventEmitter, OnInit } from '@angular/core';
|
|
|
2
2
|
import { TransactionConnectorService } from '../../../service/transaction-connector.service';
|
|
3
3
|
import { CustomerGroup } from '@colijnit/transactionapi/build/model/customer-group.bo';
|
|
4
4
|
import { ScreenConfigAdapterComponent } from '@colijnit/corecomponents_v12';
|
|
5
|
+
import { ObjectConfigurationDefaultValueType } from '@colijnit/sharedapi/build/type/object-configuration-default-value-type';
|
|
5
6
|
export declare class CustomerGroupsComponent implements ScreenConfigAdapterComponent, OnInit {
|
|
6
7
|
private _connector;
|
|
7
8
|
readonly: boolean;
|
|
@@ -20,6 +21,7 @@ export declare class CustomerGroupsComponent implements ScreenConfigAdapterCompo
|
|
|
20
21
|
maxLength: number;
|
|
21
22
|
decimals: number;
|
|
22
23
|
redErrorBackground: boolean;
|
|
24
|
+
defaultValue: ObjectConfigurationDefaultValueType;
|
|
23
25
|
ngOnInit(): Promise<void>;
|
|
24
26
|
handleCustomerGroupChange(customerGroup: CustomerGroup): void;
|
|
25
27
|
private _setSelectedCustomerGroup;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from
|
|
2
|
-
import { ScreenConfigAdapterComponent } from
|
|
3
|
-
import { TransactionConnectorService } from
|
|
4
|
-
import { Language } from
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ScreenConfigAdapterComponent } from '@colijnit/corecomponents_v12';
|
|
3
|
+
import { TransactionConnectorService } from '../../../service/transaction-connector.service';
|
|
4
|
+
import { Language } from '@colijnit/transactionapi/build/model/language.bo';
|
|
5
|
+
import { ObjectConfigurationDefaultValueType } from '@colijnit/sharedapi/build/type/object-configuration-default-value-type';
|
|
5
6
|
export declare class CustomerLanguagesComponent implements ScreenConfigAdapterComponent, OnInit {
|
|
6
7
|
private _connector;
|
|
7
8
|
readonly: boolean;
|
|
@@ -20,6 +21,7 @@ export declare class CustomerLanguagesComponent implements ScreenConfigAdapterCo
|
|
|
20
21
|
maxLength: number;
|
|
21
22
|
decimals: number;
|
|
22
23
|
redErrorBackground: boolean;
|
|
24
|
+
defaultValue: ObjectConfigurationDefaultValueType;
|
|
23
25
|
ngOnInit(): Promise<void>;
|
|
24
26
|
handleCustomerLanguageChange(customerLanguage: Language): void;
|
|
25
27
|
private _setSelectedCustomerLanguage;
|
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { EventEmitter, OnInit } from
|
|
2
|
-
import { ScreenConfigAdapterComponent } from
|
|
3
|
-
import { TransactionConnectorService } from
|
|
4
|
-
import { Title } from
|
|
1
|
+
import { EventEmitter, OnInit } from '@angular/core';
|
|
2
|
+
import { ScreenConfigAdapterComponent } from '@colijnit/corecomponents_v12';
|
|
3
|
+
import { TransactionConnectorService } from '../../../service/transaction-connector.service';
|
|
4
|
+
import { Title } from '@colijnit/transactionapi/build/model/title.bo';
|
|
5
|
+
import { ObjectConfigurationDefaultValueType } from '@colijnit/sharedapi/build/type/object-configuration-default-value-type';
|
|
5
6
|
export declare class CustomerTitlesComponent implements ScreenConfigAdapterComponent, OnInit {
|
|
6
7
|
private _connector;
|
|
7
8
|
readonly: boolean;
|
|
@@ -20,6 +21,7 @@ export declare class CustomerTitlesComponent implements ScreenConfigAdapterCompo
|
|
|
20
21
|
maxLength: number;
|
|
21
22
|
decimals: number;
|
|
22
23
|
redErrorBackground: boolean;
|
|
24
|
+
defaultValue: ObjectConfigurationDefaultValueType;
|
|
23
25
|
ngOnInit(): Promise<void>;
|
|
24
26
|
handleCustomerTitleChange(customerTitle: Title): void;
|
|
25
27
|
private _setSelectedCustomerTitle;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "255.1.
|
|
3
|
+
"version": "255.1.78",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 12",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -12,7 +12,7 @@
|
|
|
12
12
|
"@colijnit/articleapi": ">=255.1.8",
|
|
13
13
|
"@colijnit/catalog": ">=255.1.24",
|
|
14
14
|
"@colijnit/corecomponents": ">=1.12.0",
|
|
15
|
-
"@colijnit/corecomponents_v12": ">=255.1.
|
|
15
|
+
"@colijnit/corecomponents_v12": ">=255.1.20",
|
|
16
16
|
"@colijnit/ioneconnector": ">=255.1.2",
|
|
17
17
|
"@colijnit/mainapi": ">=255.1.7",
|
|
18
18
|
"@colijnit/product": ">=255.1.1",
|