@colijnit/corecomponents_v12 259.1.15 → 259.1.17

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.
@@ -32,6 +32,7 @@ export declare class FilterItemComponent implements OnInit, ScreenConfigAdapterC
32
32
  sliderDefaultMax: number;
33
33
  fullRangeIsNull: boolean;
34
34
  canFilterByCode: boolean;
35
+ firstDayOfWeek: string;
35
36
  set model(newModel: any);
36
37
  get model(): any;
37
38
  set configObject(value: ObjectConfiguration);
@@ -14,6 +14,7 @@ export declare class InputDatePickerComponent extends BaseInputDatePickerDirecti
14
14
  elementRef?: ElementRef;
15
15
  modelAsString: string;
16
16
  private _calendarComponentRef;
17
+ firstDayOfWeek: string;
17
18
  showClass(): boolean;
18
19
  constructor(formComponent: FormComponent, changeDetector: ChangeDetectorRef, overlayService: OverlayService, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
19
20
  handleDateSelected(date: Date): void;
@@ -6,6 +6,7 @@ export declare class InputDateRangePickerComponent extends BaseInputDatePickerDi
6
6
  private readonly EARLIEST_DATE;
7
7
  private readonly LATEST_DATE;
8
8
  private _doubleCalendarComponentRef;
9
+ firstDayOfWeek: string;
9
10
  firstInput: ElementRef;
10
11
  secondInput: ElementRef;
11
12
  showClass(): boolean;
@@ -35,6 +35,7 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
35
35
  rightIconData: SafeHtml | undefined;
36
36
  selectOnFocus: boolean;
37
37
  emptyPlace: boolean;
38
+ firstDayOfWeek: string;
38
39
  noStyle: boolean;
39
40
  hideArrowButtons: boolean;
40
41
  get isDate(): boolean;
@@ -55,10 +56,11 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
55
56
  get model(): any;
56
57
  get pipedModel(): any;
57
58
  isFocusedOnDate: boolean;
59
+ weekInputBuffer: string;
60
+ isWeekInputMode: boolean;
58
61
  private _isLeftIconMouseDown;
59
62
  private _isRightIconMouseDown;
60
63
  constructor(formComponent: FormComponent, injector: Injector, changeDetector: ChangeDetectorRef, overlayService: OverlayService, componentFactoryResolver: ComponentFactoryResolver, formUserChangeListener?: FormInputUserModelChangeListenerService, ngZoneWrapper?: NgZoneWrapperService, elementRef?: ElementRef);
61
- excludeNonDigitChars(event: any): boolean;
62
64
  handleLeftIconClick(event: MouseEvent): void;
63
65
  handleLeftIconMouseDown(event: MouseEvent): void;
64
66
  handleLeftIconMouseUp(event: MouseEvent): void;
@@ -69,4 +71,6 @@ export declare class InputTextComponent extends BaseInputComponent<any> implemen
69
71
  handleBlur(event: FocusEvent): void;
70
72
  handleDoFocus(event: MouseEvent): void;
71
73
  clearInput(event: MouseEvent): void;
74
+ handleKeyDownInput(event: KeyboardEvent): void;
75
+ private convertWeekToDate;
72
76
  }
@@ -77,20 +77,19 @@
77
77
  top: 106px;
78
78
  left: 100%;
79
79
  z-index: 1;
80
- padding-top: 8px;
81
- //box-shadow: -3px 0px 16px 1px rgba(0, 0, 0, 0.2);
82
- box-shadow: 0px -4px 10px rgba(0, 0, 0, 0.2), 4px 0px 10px rgba(0, 0, 0, 0.2), 0px 4px 10px rgba(0, 0, 0, 0.2);
83
- border-radius: 5px;
84
- background: #FFF;
80
+ padding: 8px 6px 0;
81
+ border-radius: 3px;
82
+ background: #f8f8fa;
83
+ box-shadow: 1px 1px 3px 1px #9d9d9d6e;
85
84
 
86
85
  .button-wrapper {
87
86
  display: flex;
88
87
  flex-direction: column;
89
88
  align-items: center;
90
89
  justify-content: center;
91
- width: 65px;
92
90
  margin-bottom: 8px;
93
91
  text-align: center;
92
+ cursor: pointer;
94
93
 
95
94
  &:hover {
96
95
  co-icon svg *,
@@ -99,6 +98,11 @@
99
98
  color: $color-action;
100
99
  }
101
100
  }
101
+
102
+ .button-title {
103
+ margin-top: 2px;
104
+ font-size: 9px;
105
+ }
102
106
  }
103
107
  }
104
108
  }
@@ -0,0 +1,10 @@
1
+ export declare enum BatchDeliveryCategory {
2
+ Overview = "OVERVIEW",
3
+ Purchase = "COST_OF_SALES",
4
+ Allocate = "ALLOCATION",
5
+ Logistics = "LOGISTICS",
6
+ DeliveryOrder = "DELIVERY_ORDER",
7
+ Invoice = "INVOICE",
8
+ ToPick = "TO_PICK",
9
+ Picked = "PICKED"
10
+ }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/corecomponents_v12",
3
- "version": "259.1.15",
3
+ "version": "259.1.17",
4
4
  "description": "Colijn IT core components for Angular 12",
5
5
  "private": false,
6
6
  "peerDependencies": {