@colijnit/transaction 262.1.39 → 262.1.40
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 +298 -296
- package/fesm2022/colijnit-transaction.mjs.map +1 -1
- package/index.d.ts +2 -1
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_layout.scss +17 -0
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_material-definition.scss +0 -0
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_theme.scss +4 -0
- package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/material.scss +4 -0
- package/lib/component/transaction-documents-customer-portal/style/_layout.scss +16 -0
- package/lib/component/transaction-documents-customer-portal/style/_material-definition.scss +1 -0
- package/lib/component/transaction-documents-customer-portal/style/_theme.scss +6 -0
- package/lib/component/transaction-documents-customer-portal/style/material.scss +4 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -307,7 +307,7 @@ import { BaseModuleScreenConfigService, BaseModuleService, FormMasterService, Sc
|
|
|
307
307
|
import * as i5 from '@colijnit/relation';
|
|
308
308
|
import { RelationService } from '@colijnit/relation';
|
|
309
309
|
import * as i6 from '@colijnit/sharedcomponents';
|
|
310
|
-
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
310
|
+
import { SharedService, AgendaEventPerDay, StatusbarData, CalendarView, SendMethod, WeekStart, FormBuilderUserFormComponent, ComponentActivityListComponent, ActivityTimelineComponent } from '@colijnit/sharedcomponents';
|
|
311
311
|
import { ExternalCatalogAddArticleRequest } from '@colijnit/transactionapi/build/model/external-catalog-add-article-request';
|
|
312
312
|
import { TransactionDeliveryCostLineInfo } from '@colijnit/transactionapi/build/model/transaction-delivery-cost-line-info.bo';
|
|
313
313
|
import { UserRoleType } from '@colijnit/ioneconnector/build/enum/user-role-type.enum';
|
|
@@ -10955,6 +10955,7 @@ declare class DeliveryPlanningOverviewComponent implements OnInit, OnDestroy {
|
|
|
10955
10955
|
readonly planningActions: typeof DeliveryPlanningUpdateActions;
|
|
10956
10956
|
readonly tileModes: typeof DeliveryPlanningTileModes;
|
|
10957
10957
|
deliveryPlanningViewModes: typeof DeliveryPlanningViewModes;
|
|
10958
|
+
weekStart: typeof WeekStart;
|
|
10958
10959
|
availability: {
|
|
10959
10960
|
transportDay: PlanningTransportWeekDay;
|
|
10960
10961
|
available: boolean;
|
package/lib/component/dialog/transaction-header/transaction-manual-create-dialog/style/_layout.scss
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
@include export-module('cc-transaction-manual-create-dialog-layout') {
|
|
2
|
+
.co-transaction-manual-create-dialog {
|
|
3
|
+
.co-dialog {
|
|
4
|
+
.co-dialog-wrapper {
|
|
5
|
+
display: flex;
|
|
6
|
+
width: 350px;
|
|
7
|
+
}
|
|
8
|
+
}
|
|
9
|
+
.co-dialog-content {
|
|
10
|
+
margin: 1em 0;
|
|
11
|
+
display: flex;
|
|
12
|
+
flex-direction: column;
|
|
13
|
+
gap: 0.5em;
|
|
14
|
+
justify-content: center;
|
|
15
|
+
}
|
|
16
|
+
}
|
|
17
|
+
}
|
|
File without changes
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
@import "../../../style/mixin";
|
|
2
|
+
|
|
3
|
+
@include export-module('co-transaction-documents-layout') {
|
|
4
|
+
.co-transaction-documents-customer-portal {
|
|
5
|
+
display: block;
|
|
6
|
+
margin: 20px 0;
|
|
7
|
+
padding: 20px;
|
|
8
|
+
border-radius: 4px;
|
|
9
|
+
box-shadow: 0px 2px 0px 0px rgba(234, 234, 234, 0.7);
|
|
10
|
+
background-color: #FFFFFF;
|
|
11
|
+
|
|
12
|
+
h2, p {
|
|
13
|
+
margin-bottom: 10px;
|
|
14
|
+
}
|
|
15
|
+
}
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|