@colijnit/transaction 261.20.41 → 261.20.42
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 +84 -42
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +6 -1
- package/lib/component/transaction-lines-side-panel/transaction-lines-side-panel-service-order/style/_layout.scss +4 -0
- package/lib/component/transaction-service-overview/style/_layout.scss +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -15913,6 +15913,8 @@ declare class TransactionLinesSidePanelServiceOrderComponent extends Transaction
|
|
|
15913
15913
|
showDetailsClick(): void;
|
|
15914
15914
|
ngOnInit(): Promise<void>;
|
|
15915
15915
|
transactionSet(): Promise<void>;
|
|
15916
|
+
handlePurchaseNavigation(): void;
|
|
15917
|
+
handleTransactionNavigation(): void;
|
|
15916
15918
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionLinesSidePanelServiceOrderComponent, never>;
|
|
15917
15919
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionLinesSidePanelServiceOrderComponent, "co-transaction-lines-side-panel-service-order", never, {}, {}, never, never, false, never>;
|
|
15918
15920
|
}
|
|
@@ -15961,6 +15963,8 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
15961
15963
|
allowTaskCreation: boolean;
|
|
15962
15964
|
allowEmailing: boolean;
|
|
15963
15965
|
showActivityHeader: boolean;
|
|
15966
|
+
showActivityLists: boolean;
|
|
15967
|
+
wizardQuestionPairs: string[][];
|
|
15964
15968
|
private loadedTransactionId;
|
|
15965
15969
|
private _subs;
|
|
15966
15970
|
constructor(transactionHeaderService: TransactionHeaderService, transactionEventService: TransactionEventService, iconCacheService: IconCacheService, screenConfigService: TransactionScreenConfigurationService, imageService: TransactionImageService, dictionaryService: DictionaryService, transactionService: TransactionService, changeDetector: ChangeDetectorRef, _dialogService: TransactionDialogService);
|
|
@@ -15969,7 +15973,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
15969
15973
|
ngAfterViewInit(): void;
|
|
15970
15974
|
getActivities(): Promise<void>;
|
|
15971
15975
|
finishedActivitiesRefreshRequested(): void;
|
|
15972
|
-
fullActivitiesRefreshRequested(): void
|
|
15976
|
+
fullActivitiesRefreshRequested(): Promise<void>;
|
|
15973
15977
|
fetchDocuments(): void;
|
|
15974
15978
|
setPriority(priority: CoDomainValue): Promise<void>;
|
|
15975
15979
|
setCauseCode(causeCode: CauseCode): Promise<void>;
|
|
@@ -15983,6 +15987,7 @@ declare class TransactionServiceOverviewComponent extends TransactionHeaderBaseC
|
|
|
15983
15987
|
getWizardQuestionPairs(text?: string): string[][];
|
|
15984
15988
|
protected transactionInfoSet(): void;
|
|
15985
15989
|
private scrollActivitiesToBottom;
|
|
15990
|
+
private setWizardQuestionPairs;
|
|
15986
15991
|
static ɵfac: i0.ɵɵFactoryDeclaration<TransactionServiceOverviewComponent, never>;
|
|
15987
15992
|
static ɵcmp: i0.ɵɵComponentDeclaration<TransactionServiceOverviewComponent, "co-transaction-service-overview", never, { "posOrderData": { "alias": "posOrderData"; "required": false; }; "customerPortal": { "alias": "customerPortal"; "required": false; }; }, {}, never, never, false, never>;
|
|
15988
15993
|
}
|
|
@@ -173,6 +173,7 @@
|
|
|
173
173
|
.activity-list-wrapper {
|
|
174
174
|
.activity-display-content {
|
|
175
175
|
.activity-display-footer {
|
|
176
|
+
padding: 0;
|
|
176
177
|
.activity-fired-triggers {
|
|
177
178
|
.activity-fired-trigger {
|
|
178
179
|
background: #FFF;
|
|
@@ -254,6 +255,7 @@
|
|
|
254
255
|
overflow: auto;
|
|
255
256
|
max-width: 80%;
|
|
256
257
|
min-width: 50%;
|
|
258
|
+
padding: 10px 15px;
|
|
257
259
|
&.activity-status-change {
|
|
258
260
|
width: 40%;
|
|
259
261
|
min-width: 40%;
|