@colijnit/sharedcomponents 1.0.32 → 1.0.33

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.
@@ -64,8 +64,10 @@ export declare class StockInformationGridComponent {
64
64
  onSelectWarehouse(event: any): void;
65
65
  getInOrderData(): Promise<void>;
66
66
  getOrderData(): Promise<void>;
67
- onSelectLocation(): void;
68
- onOkClickSendLocations(): void;
67
+ onLocationDropdownClick(): void;
68
+ onLocationSelected(location: any): void;
69
+ onOkClickSendLocations(): Promise<void>;
69
70
  onCancelClickSendLocations(): void;
70
- amountInStockChanged(data: any, row: any): void;
71
+ amountInStockChanged(data: any): void;
72
+ lockSelectedRow(row: any): void;
71
73
  }
@@ -14,7 +14,7 @@ export declare class StockTransferComponent implements AfterViewInit {
14
14
  articleToTransfer: ArticleDetailsBo;
15
15
  articleWarehouse: any[];
16
16
  allWarehouses: any[];
17
- handleCancelClicked: EventEmitter<any>;
17
+ handleClick: EventEmitter<any>;
18
18
  handleStickerClicked: EventEmitter<any>;
19
19
  allWarehousesDropdownFields: CoDropDownListFields;
20
20
  allLocationDropdownFields: CoDropDownListFields;
@@ -26,6 +26,7 @@
26
26
 
27
27
  .stock-image {
28
28
  height: $sc-stock-image-height;
29
+ margin-right: 20px;
29
30
  }
30
31
 
31
32
  .stock-good-info {
@@ -145,6 +146,7 @@
145
146
  display: flex;
146
147
  justify-content: center;
147
148
  padding: 25px;
149
+ cursor: pointer;
148
150
  }
149
151
 
150
152
  .stock-transfer-columns {
@@ -179,5 +181,10 @@
179
181
  height: 50vh;
180
182
  overflow: auto;
181
183
  }
184
+
185
+ .location-link {
186
+ cursor: pointer;
187
+ color: $sc-color-action;
188
+ }
182
189
  }
183
190
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "1.0.32",
3
+ "version": "1.0.33",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^12.2.0",