@colijnit/sharedcomponents 255.1.23 → 255.1.24
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-sharedcomponents.umd.js +207 -24
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/preferred-planning/preferred-planning.component.js +210 -0
- package/esm2015/lib/components/preferred-planning/preferred-planning.module.js +25 -0
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +9 -13
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +4 -5
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +4 -3
- package/esm2015/lib/components/tab-bar/tab-bar.component.js +10 -5
- package/esm2015/lib/service/stock.service.js +2 -3
- package/esm2015/public-api.js +3 -1
- package/fesm2015/colijnit-sharedcomponents.js +248 -24
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/index.html +2 -2
- package/lib/components/preferred-planning/preferred-planning.component.d.ts +34 -0
- package/lib/components/preferred-planning/preferred-planning.module.d.ts +2 -0
- package/lib/components/preferred-planning/style/_layout.scss +74 -0
- package/lib/components/preferred-planning/style/_material-definition.scss +0 -0
- package/lib/components/preferred-planning/style/_theme.scss +5 -0
- package/lib/components/preferred-planning/style/material.scss +5 -0
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +4 -6
- package/lib/components/tab-bar/tab-bar.component.d.ts +4 -1
- package/lib/service/stock.service.d.ts +0 -2
- package/main.fbdbe938084ad6fbf240.js +1 -0
- package/package.json +1 -1
- package/public-api.d.ts +2 -0
- package/{styles.486be41aa0593b705e42.css → styles.49bd98bd336b5413992f.css} +1 -1
- package/main.744dc3d73d03c6e7b1d4.js +0 -1
|
@@ -1358,7 +1358,6 @@ SharedConnectorService.ctorParameters = () => [
|
|
|
1358
1358
|
class StockService {
|
|
1359
1359
|
constructor(_sharedService) {
|
|
1360
1360
|
this._sharedService = _sharedService;
|
|
1361
|
-
this.warehouseSelected = new EventEmitter();
|
|
1362
1361
|
}
|
|
1363
1362
|
// public async getPrintStockStickers(data: PrintStockStickers): Promise<void> {
|
|
1364
1363
|
// await this._sharedService.getPrintStockStickers(data);
|
|
@@ -3832,13 +3831,13 @@ class StockTabsComponent {
|
|
|
3832
3831
|
handleLocationClicked(data) {
|
|
3833
3832
|
this.tabs[0].active = false;
|
|
3834
3833
|
this.tabs[2].active = true;
|
|
3835
|
-
|
|
3834
|
+
let warehouse = this.wareHouseForCode(parseInt(data));
|
|
3835
|
+
this.selectedWarehouse = warehouse;
|
|
3836
3836
|
this.handleWarehouseSelected(this.selectedWarehouse);
|
|
3837
3837
|
this.getStockData(this.selectedWarehouse);
|
|
3838
3838
|
}
|
|
3839
3839
|
handleWarehouseSelected(event) {
|
|
3840
3840
|
this.selectedWarehouse = event;
|
|
3841
|
-
this._stockService.warehouseSelected.emit(event);
|
|
3842
3841
|
}
|
|
3843
3842
|
getStockData(warehouse) {
|
|
3844
3843
|
this.handleWarehouseSelected(warehouse);
|
|
@@ -3881,6 +3880,7 @@ StockTabsComponent.decorators = [
|
|
|
3881
3880
|
[articleFlat]="articleFlat"
|
|
3882
3881
|
[dataWareHouseCode]="warehouses"
|
|
3883
3882
|
[showStockTransfer]="showStockTransfer"
|
|
3883
|
+
[selectedWarehouse]="selectedWarehouse"
|
|
3884
3884
|
(transferIconClicked)="transferIconClicked.emit($event)"
|
|
3885
3885
|
(sendMethodDialogClicked)="sendMethodDialogClicked.emit($event)"
|
|
3886
3886
|
(showStockTransferChange)="onShowStockTransferChange($event)"
|
|
@@ -4056,9 +4056,6 @@ class StockLocationComponent extends BaseStockComponent {
|
|
|
4056
4056
|
this._stockService.getStockState().then(result => {
|
|
4057
4057
|
this.stockStatus = result;
|
|
4058
4058
|
});
|
|
4059
|
-
this._subs.push(this._stockService.warehouseSelected.subscribe((warehouse) => {
|
|
4060
|
-
this.selectedWarehouse = warehouse;
|
|
4061
|
-
}));
|
|
4062
4059
|
}
|
|
4063
4060
|
ngOnDestroy() {
|
|
4064
4061
|
this._subs.forEach(s => s.unsubscribe());
|
|
@@ -4193,6 +4190,7 @@ StockLocationComponent.decorators = [
|
|
|
4193
4190
|
[selectedArticleDetailsData]="selectedArticleDetailsData"
|
|
4194
4191
|
[showConfirmationDialog]="showConfirmationDialog"
|
|
4195
4192
|
[newStockLine]="newStockLine"
|
|
4193
|
+
[stockStatus]="stockStatus"
|
|
4196
4194
|
(togglePopupEvent)="showConfirmationDialog = $event"
|
|
4197
4195
|
(updateGridData)="data = $event"
|
|
4198
4196
|
|
|
@@ -4301,7 +4299,8 @@ StockLocationComponent.propDecorators = {
|
|
|
4301
4299
|
transferIconClicked: [{ type: Output }],
|
|
4302
4300
|
sendMethodDialogClicked: [{ type: Output }],
|
|
4303
4301
|
showStockTransferChange: [{ type: Output }],
|
|
4304
|
-
handleStickerClicked: [{ type: Output }]
|
|
4302
|
+
handleStickerClicked: [{ type: Output }],
|
|
4303
|
+
selectedWarehouse: [{ type: Input }]
|
|
4305
4304
|
};
|
|
4306
4305
|
|
|
4307
4306
|
class StockHistoryComponent extends BaseStockComponent {
|
|
@@ -4364,7 +4363,8 @@ StockHistoryComponent.propDecorators = {
|
|
|
4364
4363
|
};
|
|
4365
4364
|
|
|
4366
4365
|
class TabBarComponent {
|
|
4367
|
-
constructor() {
|
|
4366
|
+
constructor(_stockService) {
|
|
4367
|
+
this._stockService = _stockService;
|
|
4368
4368
|
this.tabs = [];
|
|
4369
4369
|
this.secondaryTabs = [];
|
|
4370
4370
|
this.ActivateSecondaryTabs = false;
|
|
@@ -4423,15 +4423,15 @@ TabBarComponent.decorators = [
|
|
|
4423
4423
|
[label]="tab.title"
|
|
4424
4424
|
[screenConfigurationObject]="tab.cfg"
|
|
4425
4425
|
[class.active]="tab.active"
|
|
4426
|
-
(click)="selectTab(tab)"
|
|
4426
|
+
(click)="selectTab(tab)"
|
|
4427
4427
|
></co-button>
|
|
4428
4428
|
</div>
|
|
4429
4429
|
</div>
|
|
4430
4430
|
<div class="secondary-tab-bar" *ngIf="ActivateSecondaryTabs">
|
|
4431
4431
|
<co-button *ngFor="let tab of secondaryTabs"
|
|
4432
4432
|
[label]="tab.title"
|
|
4433
|
-
[screenConfigurationObject]="tab.cfg"
|
|
4434
|
-
[class.active]="tab.active"
|
|
4433
|
+
[screenConfigurationObject]="tab.cfg"
|
|
4434
|
+
[class.active]="tab.active"
|
|
4435
4435
|
(click)="selectSecondaryTab(tab)"
|
|
4436
4436
|
></co-button>
|
|
4437
4437
|
</div>
|
|
@@ -4441,6 +4441,9 @@ TabBarComponent.decorators = [
|
|
|
4441
4441
|
encapsulation: ViewEncapsulation.None
|
|
4442
4442
|
},] }
|
|
4443
4443
|
];
|
|
4444
|
+
TabBarComponent.ctorParameters = () => [
|
|
4445
|
+
{ type: StockService }
|
|
4446
|
+
];
|
|
4444
4447
|
TabBarComponent.propDecorators = {
|
|
4445
4448
|
wareHouseLabel: [{ type: Input }],
|
|
4446
4449
|
wareHouseSearchLabel: [{ type: Input }],
|
|
@@ -5072,19 +5075,15 @@ class StockLocationPopupComponent {
|
|
|
5072
5075
|
this.newStockLine = false;
|
|
5073
5076
|
this.selectedArticleDetailsData = new ArticleDetailsBo();
|
|
5074
5077
|
this.articleDetailsInformation = new ArticleStockManagement();
|
|
5078
|
+
this.selectedWarehouse = new StockManagementWarehouses();
|
|
5075
5079
|
this.articleStockInfo = [];
|
|
5076
5080
|
this.togglePopupEvent = new EventEmitter();
|
|
5077
5081
|
this.updateGridData = new EventEmitter();
|
|
5078
5082
|
this.stockLocations = [];
|
|
5079
5083
|
this.stockStatus = [];
|
|
5080
5084
|
}
|
|
5081
|
-
ngOnInit() {
|
|
5082
|
-
this._stockService.getStockState().then(result => {
|
|
5083
|
-
this.stockStatus = result;
|
|
5084
|
-
});
|
|
5085
|
-
}
|
|
5086
5085
|
statusForId(id) {
|
|
5087
|
-
return this.stockStatus.find(status => status.stockStateId === id);
|
|
5086
|
+
return this.stockStatus.find(status => status.stockStateId === id) ? this.stockStatus.find(status => status.stockStateId === id) : 0;
|
|
5088
5087
|
}
|
|
5089
5088
|
handleStockStatusChange(status) {
|
|
5090
5089
|
this.selectedArticleDetailsData.stockStateId = status.stockStateId;
|
|
@@ -5104,8 +5103,6 @@ class StockLocationPopupComponent {
|
|
|
5104
5103
|
this.togglePopupEvent.emit(!this.showConfirmationDialog);
|
|
5105
5104
|
this._changeDetector.detectChanges();
|
|
5106
5105
|
}
|
|
5107
|
-
ngOnDestroy() {
|
|
5108
|
-
}
|
|
5109
5106
|
togglePopup() {
|
|
5110
5107
|
this.togglePopupEvent.emit(!this.showConfirmationDialog);
|
|
5111
5108
|
}
|
|
@@ -5115,8 +5112,8 @@ class StockLocationPopupComponent {
|
|
|
5115
5112
|
});
|
|
5116
5113
|
}
|
|
5117
5114
|
locationForNumber(number) {
|
|
5118
|
-
var _a;
|
|
5119
|
-
return (_a = this.stockLocations) === null || _a === void 0 ? void 0 : _a.find(location => location.locationNo === number);
|
|
5115
|
+
var _a, _b;
|
|
5116
|
+
return ((_a = this.stockLocations) === null || _a === void 0 ? void 0 : _a.find(location => location.locationNo === number)) ? (_b = this.stockLocations) === null || _b === void 0 ? void 0 : _b.find(location => location.locationNo === number) : "";
|
|
5120
5117
|
}
|
|
5121
5118
|
locationChanged(event) {
|
|
5122
5119
|
var _a;
|
|
@@ -5178,7 +5175,7 @@ StockLocationPopupComponent.decorators = [
|
|
|
5178
5175
|
<span class="stock-header" *ngIf="!newStockLine" [textContent]="'CHANGE_STOCK_LINE' | sharedLocalize"></span>
|
|
5179
5176
|
</div>
|
|
5180
5177
|
<div class="stock-dialog-row">
|
|
5181
|
-
<co-input-text [model]="selectedWarehouse
|
|
5178
|
+
<co-input-text [model]="selectedWarehouse?.warehouseDescription"
|
|
5182
5179
|
[placeholder]="'WAREHOUSE' | sharedLocalize"
|
|
5183
5180
|
[readonly]="true"
|
|
5184
5181
|
></co-input-text>
|
|
@@ -5270,7 +5267,8 @@ StockLocationPopupComponent.propDecorators = {
|
|
|
5270
5267
|
articleStockInfo: [{ type: Input }],
|
|
5271
5268
|
togglePopupEvent: [{ type: Output }],
|
|
5272
5269
|
updateGridData: [{ type: Output }],
|
|
5273
|
-
stockLocations: [{ type: Input }]
|
|
5270
|
+
stockLocations: [{ type: Input }],
|
|
5271
|
+
stockStatus: [{ type: Input }]
|
|
5274
5272
|
};
|
|
5275
5273
|
|
|
5276
5274
|
class SharedLocalizePipe {
|
|
@@ -15853,6 +15851,232 @@ TaskCreatorModule.decorators = [
|
|
|
15853
15851
|
},] }
|
|
15854
15852
|
];
|
|
15855
15853
|
|
|
15854
|
+
class PreferredPlanningComponent {
|
|
15855
|
+
constructor(locale, iconCacheService, _changeDetector) {
|
|
15856
|
+
this.locale = locale;
|
|
15857
|
+
this.iconCacheService = iconCacheService;
|
|
15858
|
+
this._changeDetector = _changeDetector;
|
|
15859
|
+
this.icons = Icon;
|
|
15860
|
+
this.buttonLabel = "";
|
|
15861
|
+
this.headerText = "";
|
|
15862
|
+
this.headerDescription = "";
|
|
15863
|
+
this.disclaimerHeader = "";
|
|
15864
|
+
this.disclaimerDescription = "";
|
|
15865
|
+
this.loadMoreButtonText = "";
|
|
15866
|
+
this.eventsPerDay = [];
|
|
15867
|
+
this.buttonClick = new EventEmitter();
|
|
15868
|
+
this.selected = new EventEmitter();
|
|
15869
|
+
this.showClass = true;
|
|
15870
|
+
this.days = [];
|
|
15871
|
+
this.events = [];
|
|
15872
|
+
this.limit = 4;
|
|
15873
|
+
this.moreLoadable = true;
|
|
15874
|
+
this.checkDisabled = false;
|
|
15875
|
+
}
|
|
15876
|
+
ngOnInit() {
|
|
15877
|
+
// const eventone = new AgendaEvent();
|
|
15878
|
+
// eventone.checked = false;
|
|
15879
|
+
// eventone.showCheckbox = true;
|
|
15880
|
+
// eventone.draggable = false;
|
|
15881
|
+
// eventone.id = 2;
|
|
15882
|
+
// eventone.dayPartNo = 2;
|
|
15883
|
+
// eventone.date = new Date('2024-10-21T00:00:00');
|
|
15884
|
+
// eventone.from = new Date('2024-10-21T09:00:00');
|
|
15885
|
+
// eventone.to = new Date('2024-10-21T12:00:00');
|
|
15886
|
+
// eventone.fromString = "09:00 AM";
|
|
15887
|
+
// eventone.toString = "12:00 PM";
|
|
15888
|
+
// eventone.fromToRepresentation = "09:00 AM - 12:00 PM";
|
|
15889
|
+
// eventone.description = "Morgen van 9.00- 12.00 uur";
|
|
15890
|
+
//
|
|
15891
|
+
// const eventwo = new AgendaEvent();
|
|
15892
|
+
// eventwo.checked = false;
|
|
15893
|
+
// eventwo.showCheckbox = true;
|
|
15894
|
+
// eventwo.draggable = false;
|
|
15895
|
+
// eventwo.id = 3;
|
|
15896
|
+
// eventwo.dayPartNo = 3;
|
|
15897
|
+
// eventwo.date = new Date('2024-10-21T00:00:00');
|
|
15898
|
+
// eventwo.from = new Date('2024-10-21T12:00:00');
|
|
15899
|
+
// eventwo.to = new Date('2024-10-21T15:00:00');
|
|
15900
|
+
// eventwo.fromString = "12:00 PM";
|
|
15901
|
+
// eventwo.toString = "03:00 PM";
|
|
15902
|
+
// eventwo.fromToRepresentation = "12:00 PM - 03:00 PM";
|
|
15903
|
+
// eventwo.description = "Hele dag";
|
|
15904
|
+
//
|
|
15905
|
+
//
|
|
15906
|
+
// const eventthree = new AgendaEvent();
|
|
15907
|
+
// eventthree.checked = false;
|
|
15908
|
+
// eventthree.showCheckbox = true;
|
|
15909
|
+
// eventthree.draggable = false;
|
|
15910
|
+
// eventthree.id = 7;
|
|
15911
|
+
// eventthree.dayPartNo = 1;
|
|
15912
|
+
// eventthree.date = new Date('2024-10-21T00:00:00');
|
|
15913
|
+
// eventthree.from = new Date('2024-10-21T09:00:00');
|
|
15914
|
+
// eventthree.to = new Date('2024-10-21T12:00:00');
|
|
15915
|
+
// eventthree.fromString = "09:00 AM";
|
|
15916
|
+
// eventthree.toString = "12:00 PM";
|
|
15917
|
+
// eventthree.fromToRepresentation = "09:00 AM - 12:00 PM";
|
|
15918
|
+
// eventthree.description = "Morgen van 9.00- 12.00 uur";
|
|
15919
|
+
//
|
|
15920
|
+
// const evenfour = new AgendaEvent();
|
|
15921
|
+
// evenfour.checked = false;
|
|
15922
|
+
// evenfour.showCheckbox = true;
|
|
15923
|
+
// evenfour.draggable = false;
|
|
15924
|
+
// evenfour.id = 8;
|
|
15925
|
+
// evenfour.dayPartNo = 2;
|
|
15926
|
+
// evenfour.date = new Date('2024-10-21T00:00:00');
|
|
15927
|
+
// evenfour.from = new Date('2024-10-21T12:00:00');
|
|
15928
|
+
// evenfour.to = new Date('2024-10-21T15:00:00');
|
|
15929
|
+
// evenfour.fromString = "12:00 PM";
|
|
15930
|
+
// evenfour.toString = "03:00 PM";
|
|
15931
|
+
// evenfour.fromToRepresentation = "12:00 PM - 03:00 PM";
|
|
15932
|
+
// evenfour.description = "Hele dag";
|
|
15933
|
+
//
|
|
15934
|
+
// const testData = new AgendaEventPerDay();
|
|
15935
|
+
// testData.date = new Date('2024-10-21T00:00:00');
|
|
15936
|
+
// testData.events.push(eventone);
|
|
15937
|
+
// testData.events.push(eventwo);
|
|
15938
|
+
//
|
|
15939
|
+
// const testDataTwo = new AgendaEventPerDay();
|
|
15940
|
+
// testDataTwo.date = new Date('2024-11-21T00:00:00');
|
|
15941
|
+
// testDataTwo.events.push(eventthree);
|
|
15942
|
+
// testDataTwo.events.push(evenfour);
|
|
15943
|
+
//
|
|
15944
|
+
// this.events.push(testData);
|
|
15945
|
+
// this.events.push(testDataTwo);
|
|
15946
|
+
if (this.eventsPerDay) {
|
|
15947
|
+
this.events = this.eventsPerDay;
|
|
15948
|
+
if (this.eventsPerDay.length <= this.limit) {
|
|
15949
|
+
this.moreLoadable = false;
|
|
15950
|
+
}
|
|
15951
|
+
this._changeDetector.detectChanges();
|
|
15952
|
+
}
|
|
15953
|
+
}
|
|
15954
|
+
handleOptionSelect(event, selectedOption, date, index) {
|
|
15955
|
+
const olderItems = document.getElementsByClassName('eventOption');
|
|
15956
|
+
for (let i = 0; i < olderItems.length; i++) {
|
|
15957
|
+
olderItems[i].classList.remove('day-selected');
|
|
15958
|
+
}
|
|
15959
|
+
if (event) {
|
|
15960
|
+
this.selectedOption = selectedOption;
|
|
15961
|
+
const agendaEventPerDay = new AgendaEventPerDay();
|
|
15962
|
+
agendaEventPerDay.date = date;
|
|
15963
|
+
agendaEventPerDay.events.push(selectedOption);
|
|
15964
|
+
this.selected.emit(agendaEventPerDay);
|
|
15965
|
+
const target = document.getElementById('event-' + index);
|
|
15966
|
+
target.classList.add('day-selected');
|
|
15967
|
+
this.checkDisabled = true;
|
|
15968
|
+
}
|
|
15969
|
+
}
|
|
15970
|
+
loadMore() {
|
|
15971
|
+
this.limit = this.limit += 4;
|
|
15972
|
+
if (this.eventsPerDay.length <= this.limit) {
|
|
15973
|
+
this.moreLoadable = false;
|
|
15974
|
+
}
|
|
15975
|
+
this._changeDetector.detectChanges();
|
|
15976
|
+
}
|
|
15977
|
+
}
|
|
15978
|
+
PreferredPlanningComponent.decorators = [
|
|
15979
|
+
{ type: Component, args: [{
|
|
15980
|
+
selector: "co-preferred-planning",
|
|
15981
|
+
template: `
|
|
15982
|
+
<div class="co-preferred-planning">
|
|
15983
|
+
<div class="content-wrapper">
|
|
15984
|
+
<p [textContent]="headerDescription"></p>
|
|
15985
|
+
<div class="planning-container">
|
|
15986
|
+
<div class="planning-options" *ngIf="events">
|
|
15987
|
+
<ng-container *ngFor="let event of events | slice:0:limit; let i=index">
|
|
15988
|
+
<div class="eventOption" id="event-{{i}}">
|
|
15989
|
+
<p [textContent]="event.date | date:'EEEE dd MMMM':'nl'"></p>
|
|
15990
|
+
<ng-container *ngFor="let option of event.events">
|
|
15991
|
+
<div class="planning-option">
|
|
15992
|
+
<co-input-checkbox
|
|
15993
|
+
[disabled]="checkDisabled"
|
|
15994
|
+
[model]="option.checked"
|
|
15995
|
+
[label]="option.description"
|
|
15996
|
+
(modelChange)="handleOptionSelect($event, option, event.date, i)"
|
|
15997
|
+
></co-input-checkbox>
|
|
15998
|
+
</div>
|
|
15999
|
+
</ng-container>
|
|
16000
|
+
</div>
|
|
16001
|
+
</ng-container>
|
|
16002
|
+
</div>
|
|
16003
|
+
<div class="planning-disclaimer">
|
|
16004
|
+
<h2 [textContent]="disclaimerHeader"></h2>
|
|
16005
|
+
<div class="planning-disclaimer-contents">
|
|
16006
|
+
<co-icon class="disclaimer-icon" [iconData]="iconCacheService.getIcon(icons.CheckRound)"></co-icon>
|
|
16007
|
+
<p [textContent]="disclaimerDescription"></p>
|
|
16008
|
+
</div>
|
|
16009
|
+
</div>
|
|
16010
|
+
</div>
|
|
16011
|
+
<div (click)="loadMore()" class="load-more-container"
|
|
16012
|
+
[ngClass]="!moreLoadable ? 'load-more-container-disabled':''">
|
|
16013
|
+
<p>
|
|
16014
|
+
<co-icon [iconData]="iconCacheService.getIcon(icons.ArrowFatRight)"></co-icon>
|
|
16015
|
+
<span [textContent]="loadMoreButtonText"></span>
|
|
16016
|
+
</p>
|
|
16017
|
+
</div>
|
|
16018
|
+
</div>
|
|
16019
|
+
</div>
|
|
16020
|
+
|
|
16021
|
+
<co-button class="submit-button"
|
|
16022
|
+
[label]="buttonLabel"
|
|
16023
|
+
(click)="buttonClick.emit($event)">
|
|
16024
|
+
</co-button>
|
|
16025
|
+
`,
|
|
16026
|
+
animations: [
|
|
16027
|
+
trigger("showHideWindow", [
|
|
16028
|
+
state("void", style({ transform: "scaleY(0)" })),
|
|
16029
|
+
state("*", style({ transform: "scaleY(1)" })),
|
|
16030
|
+
transition(":enter, :leave", [
|
|
16031
|
+
animate("200ms ease-in-out")
|
|
16032
|
+
])
|
|
16033
|
+
])
|
|
16034
|
+
],
|
|
16035
|
+
encapsulation: ViewEncapsulation.None
|
|
16036
|
+
},] }
|
|
16037
|
+
];
|
|
16038
|
+
PreferredPlanningComponent.ctorParameters = () => [
|
|
16039
|
+
{ type: String, decorators: [{ type: Inject, args: [LOCALE_ID,] }] },
|
|
16040
|
+
{ type: IconCacheService },
|
|
16041
|
+
{ type: ChangeDetectorRef }
|
|
16042
|
+
];
|
|
16043
|
+
PreferredPlanningComponent.propDecorators = {
|
|
16044
|
+
dayStart: [{ type: ViewChild, args: ["dayStart", { static: true },] }],
|
|
16045
|
+
firstAvailableDate: [{ type: Input }],
|
|
16046
|
+
buttonLabel: [{ type: Input }],
|
|
16047
|
+
headerText: [{ type: Input }],
|
|
16048
|
+
headerDescription: [{ type: Input }],
|
|
16049
|
+
disclaimerHeader: [{ type: Input }],
|
|
16050
|
+
disclaimerDescription: [{ type: Input }],
|
|
16051
|
+
loadMoreButtonText: [{ type: Input }],
|
|
16052
|
+
eventsPerDay: [{ type: Input }],
|
|
16053
|
+
selectedDate: [{ type: Input }],
|
|
16054
|
+
buttonClick: [{ type: Output }],
|
|
16055
|
+
selected: [{ type: Output }],
|
|
16056
|
+
showClass: [{ type: HostBinding, args: ["class.co-preferred-planning",] }]
|
|
16057
|
+
};
|
|
16058
|
+
|
|
16059
|
+
class PreferredPlanningModule {
|
|
16060
|
+
}
|
|
16061
|
+
PreferredPlanningModule.decorators = [
|
|
16062
|
+
{ type: NgModule, args: [{
|
|
16063
|
+
imports: [
|
|
16064
|
+
CommonModule,
|
|
16065
|
+
InputDatePickerModule,
|
|
16066
|
+
IconModule,
|
|
16067
|
+
ButtonModule,
|
|
16068
|
+
InputCheckboxModule,
|
|
16069
|
+
InputRadioButtonModule,
|
|
16070
|
+
],
|
|
16071
|
+
declarations: [
|
|
16072
|
+
PreferredPlanningComponent,
|
|
16073
|
+
],
|
|
16074
|
+
exports: [
|
|
16075
|
+
PreferredPlanningComponent
|
|
16076
|
+
]
|
|
16077
|
+
},] }
|
|
16078
|
+
];
|
|
16079
|
+
|
|
15856
16080
|
/*
|
|
15857
16081
|
* Public API Surface of sharedcomponents
|
|
15858
16082
|
*/
|
|
@@ -15861,5 +16085,5 @@ TaskCreatorModule.decorators = [
|
|
|
15861
16085
|
* Generated bundle index. Do not edit.
|
|
15862
16086
|
*/
|
|
15863
16087
|
|
|
15864
|
-
export { ActivityListComponent, ActivityListModule, AgendaEvent, AgendaEventPerDay, CalendarView, CoLinearGaugeComponent, CoLinearGaugeModule, ComponentActivityListComponent, ComponentActivityListModule, DatePlanningComponent, DatePlanningModule, DocsignComponent, DocsignModule, FilesUploadComponent, FilesUploadModule, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, RoleEmailSelectorComponent, RoleEmailSelectorModule, SendMethodDialogComponent, SendMethodDialogModule, SharedComponentsDictionaryService, SharedComponentsTranslationModule, SharedService, SimpleTagsComponent, SimpleTagsFormComponent, SimpleTagsFormModule, SimpleTagsModule, StatusbarComponent, StatusbarModule, StockComponent, StockModule, TaskCreatorComponent, TaskCreatorModule, WorkflowInfoTilesComponent, WorkflowInfoTilesModule, sendMethodsWithIcon, SignatureComponent as ɵa, SignaturesComponent as ɵb, StockInformationComponent as ɵba, StockInformationGridComponent as ɵbb, StockTransferComponent as ɵbc, StockChangeAmountComponent as ɵbd, StockTabComponent as ɵbe, OrderTabComponent as ɵbf, BaseStockComponent as ɵbg, StockTabsComponent as ɵbh, StockHistoryTabsComponent as ɵbi, OrderStockTabComponent as ɵbj, StockLocationComponent as ɵbk, StockHistoryComponent as ɵbl, OrderSupplyStockHistoryComponent as ɵbm, OrderCommissionStockHistoryComponent as ɵbn, OrderStockHistoryComponent as ɵbo, AllocationStockHistoryComponent as ɵbp, StockPrognoseComponent as ɵbq, StockLocationPopupComponent as ɵbr, SendMethod as ɵbs, Icon as ɵbt, CalendarAllYearsComponent as ɵbu, CalendarAllMonthsComponent as ɵbv, CalendarHeaderComponent as ɵbw, CalendarComponent as ɵbx, CalendarViewComponent as ɵby, AgendaHeaderComponent as ɵbz, StockService as ɵc, AgendaViewComponent as ɵca, AgendaMonthViewComponent as ɵcb, AgendaBaseViewComponent as ɵcc, AgendaDayViewComponent as ɵcd, AgendaWeekViewComponent as ɵce, AgendaWeekSelectViewComponent as ɵcf, AgendaHourViewComponent as ɵcg, AgendaHourCellComponent as ɵch, AgendaHourViewLabelsComponent as ɵci, AgendaHalfHourCellComponent as ɵcj, AgendaEventsComponent as ɵck, AgendaEventComponent as ɵcl, ViewSelectComponent as ɵcm, AgendaSelectEventComponent as ɵcn, MASTER_PIPES as ɵco, ArrayNumberPipe as ɵcp, UCfirstPipe as ɵcq, FileTypeImagePipe as ɵcr, BaseFileUploadComponent as ɵcs, InputBoolean as ɵct, ImageDisplayModule as ɵcu, ImageDisplayComponent as ɵcv, FileUploadModule as ɵcw, TileRenderModule as ɵcx, TileRenderComponent as ɵcy, FileUploadComponent as ɵcz, SharedConnectorService as ɵd, FileUploadPopupModule as ɵda, MultiplePropertyTogglerModule as ɵdb, MultiplePropertyTogglerComponent as ɵdc, FileUploadPopupComponent as ɵdd, AppFileDropzoneModule as ɵde, AppFileDropzoneComponent as ɵdf, DragDropContainerComponent as ɵdg, DragDropService as ɵdh, BaseActivityListComponent as ɵdi, PersonalActivityOverviewComponent as ɵdj, BaseActivityOverviewComponent as ɵdk, TaskModifierComponent as ɵdl, ModifyTaskFormComponent as ɵdm, PersonalActivityOverviewModule as ɵdn, ComponentActivityOverviewModule as ɵdo, TaskModifyerModule as ɵdp, ModifyTaskFormModule as ɵdq, TaskDetailsModule as ɵdr, TaskDetailsComponent as ɵds, BaseActivitySummaryComponent as ɵdt, ExecutiveSummaryBlockModule as ɵdu, ActivitySummaryBlockModule as ɵdv, ActivitySummaryBlockComponent as ɵdw, ExecutiveSummaryBlockComponent as ɵdx, StatusSummaryBlockModule as ɵdy, StatusSummaryBlockComponent as ɵdz, OptionsService as ɵe, CreationSummaryBlockModule as ɵea, CreationSummaryBlockComponent as ɵeb, NotificationSummaryBlockModule as ɵec, EmailSelectorModule as ɵed, EmailSelectorComponent as ɵee, NotificationSummaryBlockComponent as ɵef, ComponentActivityOverviewComponent as ɵeg, ActivityListHeaderModule as ɵeh, WorkflowNotificationToggleModule as ɵei, DirectivesModule as ɵej, AbsoluteOverlayTemplateDirective as ɵek, AppAbsoluteOverlayOutletService as ɵel, AlignWithDirective as ɵem, ClickOutsideDirective as ɵen, WorkflowNotificationToggleComponent as ɵeo, WorkflowNotificationTogglePopupComponent as ɵep, PeriodFilterModule as ɵeq, PeriodFilterComponent as ɵer, PeriodFilterPopupComponent as ɵes, ActivityListHeaderComponent as ɵet, WorkflowInfoTileModule as ɵeu, WorkflowInfoTileComponent as ɵev, IconCacheService as ɵf, LanguageCode as ɵg, SendMethodService as ɵh, SendMethodEmailModule as ɵi, LayoutSelectionModule as ɵj, LayoutSelectionComponent as ɵk, SignatureButtonModule as ɵl, SignatureButtonComponent as ɵm, SendMethodEmailComponent as ɵn, SendMethodPrinterModule as ɵo, PrinterSelectionModule as ɵp, PrinterSelectionComponent as ɵq, SendMethodPrinterComponent as ɵr, SendMethodPdfModule as ɵs, SendMethodPdfComponent as ɵt, TabBarModule as ɵu, TabBarComponent as ɵv, StatusbarPopupComponent as ɵw, StockStatusbarModule as ɵx, StockStatusbarComponent as ɵy, SharedLocalizePipe as ɵz };
|
|
16088
|
+
export { ActivityListComponent, ActivityListModule, AgendaEvent, AgendaEventPerDay, CalendarView, CoLinearGaugeComponent, CoLinearGaugeModule, ComponentActivityListComponent, ComponentActivityListModule, DatePlanningComponent, DatePlanningModule, DocsignComponent, DocsignModule, FilesUploadComponent, FilesUploadModule, KeyPadComponent, KeyPadModule, LayoutSwitcherComponent, LayoutSwitcherModule, PreferredPlanningComponent, PreferredPlanningModule, RoleEmailSelectorComponent, RoleEmailSelectorModule, SendMethodDialogComponent, SendMethodDialogModule, SharedComponentsDictionaryService, SharedComponentsTranslationModule, SharedService, SimpleTagsComponent, SimpleTagsFormComponent, SimpleTagsFormModule, SimpleTagsModule, StatusbarComponent, StatusbarModule, StockComponent, StockModule, TaskCreatorComponent, TaskCreatorModule, WorkflowInfoTilesComponent, WorkflowInfoTilesModule, sendMethodsWithIcon, SignatureComponent as ɵa, SignaturesComponent as ɵb, StockInformationComponent as ɵba, StockInformationGridComponent as ɵbb, StockTransferComponent as ɵbc, StockChangeAmountComponent as ɵbd, StockTabComponent as ɵbe, OrderTabComponent as ɵbf, BaseStockComponent as ɵbg, StockTabsComponent as ɵbh, StockHistoryTabsComponent as ɵbi, OrderStockTabComponent as ɵbj, StockLocationComponent as ɵbk, StockHistoryComponent as ɵbl, OrderSupplyStockHistoryComponent as ɵbm, OrderCommissionStockHistoryComponent as ɵbn, OrderStockHistoryComponent as ɵbo, AllocationStockHistoryComponent as ɵbp, StockPrognoseComponent as ɵbq, StockLocationPopupComponent as ɵbr, SendMethod as ɵbs, Icon as ɵbt, CalendarAllYearsComponent as ɵbu, CalendarAllMonthsComponent as ɵbv, CalendarHeaderComponent as ɵbw, CalendarComponent as ɵbx, CalendarViewComponent as ɵby, AgendaHeaderComponent as ɵbz, StockService as ɵc, AgendaViewComponent as ɵca, AgendaMonthViewComponent as ɵcb, AgendaBaseViewComponent as ɵcc, AgendaDayViewComponent as ɵcd, AgendaWeekViewComponent as ɵce, AgendaWeekSelectViewComponent as ɵcf, AgendaHourViewComponent as ɵcg, AgendaHourCellComponent as ɵch, AgendaHourViewLabelsComponent as ɵci, AgendaHalfHourCellComponent as ɵcj, AgendaEventsComponent as ɵck, AgendaEventComponent as ɵcl, ViewSelectComponent as ɵcm, AgendaSelectEventComponent as ɵcn, MASTER_PIPES as ɵco, ArrayNumberPipe as ɵcp, UCfirstPipe as ɵcq, FileTypeImagePipe as ɵcr, BaseFileUploadComponent as ɵcs, InputBoolean as ɵct, ImageDisplayModule as ɵcu, ImageDisplayComponent as ɵcv, FileUploadModule as ɵcw, TileRenderModule as ɵcx, TileRenderComponent as ɵcy, FileUploadComponent as ɵcz, SharedConnectorService as ɵd, FileUploadPopupModule as ɵda, MultiplePropertyTogglerModule as ɵdb, MultiplePropertyTogglerComponent as ɵdc, FileUploadPopupComponent as ɵdd, AppFileDropzoneModule as ɵde, AppFileDropzoneComponent as ɵdf, DragDropContainerComponent as ɵdg, DragDropService as ɵdh, BaseActivityListComponent as ɵdi, PersonalActivityOverviewComponent as ɵdj, BaseActivityOverviewComponent as ɵdk, TaskModifierComponent as ɵdl, ModifyTaskFormComponent as ɵdm, PersonalActivityOverviewModule as ɵdn, ComponentActivityOverviewModule as ɵdo, TaskModifyerModule as ɵdp, ModifyTaskFormModule as ɵdq, TaskDetailsModule as ɵdr, TaskDetailsComponent as ɵds, BaseActivitySummaryComponent as ɵdt, ExecutiveSummaryBlockModule as ɵdu, ActivitySummaryBlockModule as ɵdv, ActivitySummaryBlockComponent as ɵdw, ExecutiveSummaryBlockComponent as ɵdx, StatusSummaryBlockModule as ɵdy, StatusSummaryBlockComponent as ɵdz, OptionsService as ɵe, CreationSummaryBlockModule as ɵea, CreationSummaryBlockComponent as ɵeb, NotificationSummaryBlockModule as ɵec, EmailSelectorModule as ɵed, EmailSelectorComponent as ɵee, NotificationSummaryBlockComponent as ɵef, ComponentActivityOverviewComponent as ɵeg, ActivityListHeaderModule as ɵeh, WorkflowNotificationToggleModule as ɵei, DirectivesModule as ɵej, AbsoluteOverlayTemplateDirective as ɵek, AppAbsoluteOverlayOutletService as ɵel, AlignWithDirective as ɵem, ClickOutsideDirective as ɵen, WorkflowNotificationToggleComponent as ɵeo, WorkflowNotificationTogglePopupComponent as ɵep, PeriodFilterModule as ɵeq, PeriodFilterComponent as ɵer, PeriodFilterPopupComponent as ɵes, ActivityListHeaderComponent as ɵet, WorkflowInfoTileModule as ɵeu, WorkflowInfoTileComponent as ɵev, IconCacheService as ɵf, LanguageCode as ɵg, SendMethodService as ɵh, SendMethodEmailModule as ɵi, LayoutSelectionModule as ɵj, LayoutSelectionComponent as ɵk, SignatureButtonModule as ɵl, SignatureButtonComponent as ɵm, SendMethodEmailComponent as ɵn, SendMethodPrinterModule as ɵo, PrinterSelectionModule as ɵp, PrinterSelectionComponent as ɵq, SendMethodPrinterComponent as ɵr, SendMethodPdfModule as ɵs, SendMethodPdfComponent as ɵt, TabBarModule as ɵu, TabBarComponent as ɵv, StatusbarPopupComponent as ɵw, StockStatusbarModule as ɵx, StockStatusbarComponent as ɵy, SharedLocalizePipe as ɵz };
|
|
15865
16089
|
//# sourceMappingURL=colijnit-sharedcomponents.js.map
|