@colijnit/transaction 255.1.53 → 255.1.55
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 +401 -345
- package/bundles/colijnit-transaction.umd.js.map +1 -1
- package/colijnit-transaction.d.ts +337 -336
- package/colijnit-transaction.metadata.json +1 -1
- package/esm2015/colijnit-transaction.js +338 -337
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.js +9 -3
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.module.js +6 -2
- package/esm2015/lib/component/dialog/catalog/dialog-catalog/service/catalog-screen-configuration.service.js +44 -0
- package/esm2015/lib/transaction-version.js +3 -3
- package/fesm2015/colijnit-transaction.js +50 -5
- package/fesm2015/colijnit-transaction.js.map +1 -1
- package/lib/component/dialog/catalog/dialog-catalog/dialog-catalog.component.d.ts +3 -1
- package/lib/component/dialog/catalog/dialog-catalog/service/catalog-screen-configuration.service.d.ts +12 -0
- package/package.json +3 -3
|
@@ -13,12 +13,14 @@ import { TransactionInfoResponse } from '@colijnit/transactionapi/build/model/tr
|
|
|
13
13
|
import { ArticleListObjectExtended } from '@colijnit/articleapi/build/model/article-list-object-extended.bo';
|
|
14
14
|
import { DialogService } from '../../../../service/dialog.service';
|
|
15
15
|
import { ArticleListObject } from '@colijnit/transactionapi/build/model/article-list-object';
|
|
16
|
+
import { CatalogScreenConfigurationService } from "./service/catalog-screen-configuration.service";
|
|
16
17
|
export declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
17
18
|
private _transactionService;
|
|
18
19
|
private _catalogService;
|
|
19
20
|
private _catalogEventService;
|
|
20
21
|
private _articleService;
|
|
21
22
|
private _dialogService;
|
|
23
|
+
private _screenConfigService;
|
|
22
24
|
iconCacheService: IconCacheService;
|
|
23
25
|
readonly icons: typeof Icon;
|
|
24
26
|
handleAddArticleInternally: boolean;
|
|
@@ -64,7 +66,7 @@ export declare class DialogCatalogComponent implements OnInit, OnDestroy {
|
|
|
64
66
|
};
|
|
65
67
|
catalogInfo: ExternalCatalogStartupInfo;
|
|
66
68
|
private _subs;
|
|
67
|
-
constructor(_transactionService: TransactionService, _catalogService: CatalogService, _catalogEventService: CatalogEventService, _articleService: ArticleService, _dialogService: DialogService, iconCacheService: IconCacheService);
|
|
69
|
+
constructor(_transactionService: TransactionService, _catalogService: CatalogService, _catalogEventService: CatalogEventService, _articleService: ArticleService, _dialogService: DialogService, _screenConfigService: CatalogScreenConfigurationService, iconCacheService: IconCacheService);
|
|
68
70
|
ngOnInit(): Promise<void>;
|
|
69
71
|
ngOnDestroy(): void;
|
|
70
72
|
handleStockButtonClick(article: ArticleExtended): void;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { ObjectConfiguration } from '@colijnit/ioneconnector/build/model/object-configuration';
|
|
2
|
+
import { BaseModuleScreenConfigService } from '@colijnit/corecomponents_v12';
|
|
3
|
+
import { TransactionConnectorAdapterService } from "../../../../../service/transaction-connector-adapter.service";
|
|
4
|
+
export declare class CatalogScreenConfigurationService extends BaseModuleScreenConfigService {
|
|
5
|
+
private _transactionAdapterService;
|
|
6
|
+
readonly screenModuleName: string;
|
|
7
|
+
private _screenConfigurationObjectCache;
|
|
8
|
+
constructor(_transactionAdapterService: TransactionConnectorAdapterService);
|
|
9
|
+
protected loadConfigForModule(params: string[], insertRights?: boolean): Promise<ObjectConfiguration[]>;
|
|
10
|
+
private _setScreenConfigurationObjectCache;
|
|
11
|
+
private _screenConfigurationLoaded;
|
|
12
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@colijnit/transaction",
|
|
3
|
-
"version": "255.1.
|
|
3
|
+
"version": "255.1.55",
|
|
4
4
|
"description": "Colijn IT transaction module for Angular 12",
|
|
5
5
|
"repository": "npm/npm",
|
|
6
6
|
"author": "Colijn IT",
|
|
@@ -10,9 +10,9 @@
|
|
|
10
10
|
"@angular/common": ">=12.2.0",
|
|
11
11
|
"@angular/core": ">=12.2.0",
|
|
12
12
|
"@colijnit/articleapi": ">=255.1.7",
|
|
13
|
-
"@colijnit/catalog": ">=255.1.
|
|
13
|
+
"@colijnit/catalog": ">=255.1.11",
|
|
14
14
|
"@colijnit/corecomponents": ">=1.12.0",
|
|
15
|
-
"@colijnit/corecomponents_v12": ">=255.1.
|
|
15
|
+
"@colijnit/corecomponents_v12": ">=255.1.17",
|
|
16
16
|
"@colijnit/ioneconnector": ">=255.1.2",
|
|
17
17
|
"@colijnit/mainapi": ">=255.1.7",
|
|
18
18
|
"@colijnit/product": ">=255.1.1",
|