@colijnit/sharedcomponents 1.0.66 → 1.0.68
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 +25 -7
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/date-planning/component/agenda/agenda-header.component.js +56 -47
- package/esm2015/lib/components/date-planning/date-planning.component.js +4 -1
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +11 -4
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +2 -1
- package/esm2015/lib/enum/icon.enum.js +1 -1
- package/esm2015/lib/model/icon-svg.js +1 -1
- package/esm2015/lib/utils/calendar.utils.js +8 -2
- package/fesm2015/colijnit-sharedcomponents.js +76 -50
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/date-planning/component/agenda/agenda-header.component.d.ts +2 -0
- package/lib/components/date-planning/component/agenda/style/_layout.scss +1 -3
- package/lib/components/date-planning/date-planning.component.d.ts +1 -0
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +1 -0
- package/package.json +1 -1
- package/3rdpartylicenses.txt +0 -1200
- package/favicon.ico +0 -0
- package/index.html +0 -12
- package/main.1d1ac86d8023edac29b1.js +0 -1
- package/polyfills.907fe9d1887c5de17993.js +0 -1
- package/runtime.8aac21847ed3d3829cca.js +0 -1
- package/styles.42e2561063e306e59f45.css +0 -1
|
@@ -22,6 +22,7 @@ export declare class AgendaHeaderComponent implements OnInit, OnDestroy, AfterCo
|
|
|
22
22
|
set firstAvailableDate(value: Date);
|
|
23
23
|
get firstAvailableDate(): Date;
|
|
24
24
|
set eventsPerDay(value: AgendaEventPerDay[]);
|
|
25
|
+
viewSelection: boolean;
|
|
25
26
|
viewChange: EventEmitter<CalendarView>;
|
|
26
27
|
selectedDateChange: EventEmitter<Date>;
|
|
27
28
|
rangeChange: EventEmitter<Date>;
|
|
@@ -45,4 +46,5 @@ export declare class AgendaHeaderComponent implements OnInit, OnDestroy, AfterCo
|
|
|
45
46
|
*/
|
|
46
47
|
private _resizeHost;
|
|
47
48
|
private _prepareHeaderData;
|
|
49
|
+
capitalizeString(label: string): string;
|
|
48
50
|
}
|
|
@@ -13,6 +13,7 @@ export declare class DatePlanningComponent {
|
|
|
13
13
|
buttonLabel: string;
|
|
14
14
|
eventsPerDay: AgendaEventPerDay[];
|
|
15
15
|
view: CalendarView;
|
|
16
|
+
viewSelection: boolean;
|
|
16
17
|
readonly eventChecked: EventEmitter<any>;
|
|
17
18
|
readonly selectedDateChange: EventEmitter<Date>;
|
|
18
19
|
readonly rangeChange: EventEmitter<Date>;
|
|
@@ -22,6 +22,7 @@ export declare class StockLocationPopupComponent implements OnInit, OnDestroy {
|
|
|
22
22
|
selectedLocationNo: string;
|
|
23
23
|
articleStockInfo: ArticleDetailsBo[];
|
|
24
24
|
togglePopupEvent: EventEmitter<boolean>;
|
|
25
|
+
updateGridData: EventEmitter<ArticleDetailsBo[]>;
|
|
25
26
|
stockLocations: StockLocation[];
|
|
26
27
|
stockStatus: StockStatus[];
|
|
27
28
|
constructor(iconCacheService: IconCacheService, _stockService: StockService, _changeDetector: ChangeDetectorRef);
|