@colijnit/sharedcomponents 1.0.40 → 1.0.42

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.
Files changed (59) hide show
  1. package/README.md +24 -24
  2. package/bundles/colijnit-sharedcomponents.umd.js +350 -156
  3. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  4. package/colijnit-sharedcomponents.d.ts +58 -55
  5. package/colijnit-sharedcomponents.metadata.json +1 -1
  6. package/esm2015/colijnit-sharedcomponents.js +59 -56
  7. package/esm2015/lib/components/statusbar/statusbar-popup.component.js +29 -0
  8. package/esm2015/lib/components/statusbar/statusbar.component.js +33 -34
  9. package/esm2015/lib/components/statusbar/statusbar.module.js +14 -10
  10. package/esm2015/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.js +14 -14
  11. package/esm2015/lib/components/stock/components/order-commission-stock-history/order-commission-stock-history.component.js +14 -14
  12. package/esm2015/lib/components/stock/components/order-stock-history/order-stock-history.component.js +14 -14
  13. package/esm2015/lib/components/stock/components/order-stock-tab/order-stock-tab.component.js +7 -7
  14. package/esm2015/lib/components/stock/components/order-supply-stock-history/order-supply-stock-history.component.js +14 -14
  15. package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +9 -9
  16. package/esm2015/lib/components/stock/components/stock-history/stock-history.component.js +14 -14
  17. package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +29 -18
  18. package/esm2015/lib/components/stock/components/stock-tab/stock-tab.component.js +8 -9
  19. package/esm2015/lib/components/stock/localization/localize.pipe.js +26 -0
  20. package/esm2015/lib/components/stock/localization/localize.service.js +30 -0
  21. package/esm2015/lib/components/stock/localization/translation.js +55 -0
  22. package/esm2015/lib/components/stock/stock-history-tabs/stock-history-tabs.component.js +6 -7
  23. package/esm2015/lib/components/stock/stock-information/stock-information.component.js +9 -12
  24. package/esm2015/lib/components/stock/stock-information-grid/stock-information-grid.component.js +61 -61
  25. package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +26 -18
  26. package/esm2015/lib/components/stock/stock-transfer/stock-change-amount.component.js +5 -5
  27. package/esm2015/lib/components/stock/stock-transfer/stock-transfer.component.js +12 -12
  28. package/esm2015/lib/components/stock/stock.component.js +11 -3
  29. package/esm2015/lib/components/stock/stock.module.js +12 -6
  30. package/esm2015/lib/components/tab-bar/tab-bar.component.js +54 -13
  31. package/esm2015/lib/components/tab-bar/tab-bar.module.js +4 -1
  32. package/esm2015/lib/enum/icon.enum.js +1 -1
  33. package/esm2015/lib/model/icon-svg.js +1 -1
  34. package/fesm2015/colijnit-sharedcomponents.js +468 -268
  35. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  36. package/lib/components/screen-config-generator/style/_layout.scss +65 -0
  37. package/lib/components/screen-config-generator/style/_material-definition.scss +0 -0
  38. package/lib/components/screen-config-generator/style/_theme.scss +4 -0
  39. package/lib/components/screen-config-generator/style/material.scss +4 -0
  40. package/lib/components/statusbar/statusbar-popup.component.d.ts +7 -0
  41. package/lib/components/statusbar/statusbar.component.d.ts +10 -8
  42. package/lib/components/statusbar/style/_layout.scss +12 -28
  43. package/lib/components/statusbar/style/_theme.scss +5 -6
  44. package/lib/components/stock/components/stock-location/stock-location.component.d.ts +4 -0
  45. package/lib/components/stock/components/stock-tab/stock-tab.component.d.ts +0 -1
  46. package/lib/components/stock/localization/localize.pipe.d.ts +7 -0
  47. package/lib/components/stock/localization/localize.service.d.ts +7 -0
  48. package/lib/components/stock/localization/translation.d.ts +52 -0
  49. package/lib/components/stock/stock-history-tabs/stock-history-tabs.component.d.ts +0 -1
  50. package/lib/components/stock/stock-information/stock-information.component.d.ts +0 -1
  51. package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +8 -13
  52. package/lib/components/stock/stock.component.d.ts +5 -1
  53. package/lib/components/stock/style/_layout.scss +13 -4
  54. package/lib/components/stock/style/_material-definition.scss +3 -0
  55. package/lib/components/stock-statusbar/style/_layout.scss +2 -3
  56. package/lib/components/tab-bar/style/_layout.scss +20 -1
  57. package/lib/components/tab-bar/tab-bar.component.d.ts +16 -1
  58. package/lib/style/_variables.scss +1 -1
  59. package/package.json +14 -10
@@ -0,0 +1,65 @@
1
+ @include export-module('cc-screen-config-generator-layout') {
2
+ .co-screen-config-generator {
3
+ padding: 20px;
4
+ display: flex;
5
+ overflow: auto;
6
+ height: 93vh;
7
+
8
+ .category-wrapper {
9
+ display: flex;
10
+ flex-direction: column;
11
+
12
+ .header-wrapper {
13
+ display: flex;
14
+ column-gap: 30px;
15
+ align-items: center;
16
+ height: 30px;
17
+ margin-top: 15px;
18
+
19
+ h3 {
20
+ margin-top: 20px;
21
+ }
22
+ }
23
+
24
+ co-button {
25
+ width: 20px;
26
+ height: 20px;
27
+ justify-content: center;
28
+ }
29
+
30
+ .header-container {
31
+ padding: 13px;
32
+ border: 2px solid #dde5eb;
33
+ border-radius: 11px;
34
+ margin-top: 10px;
35
+ min-width: 450px;
36
+ }
37
+
38
+ .rubrics-wrapper {
39
+ display: flex;
40
+ column-gap: 20px;
41
+ width: max-content;
42
+ }
43
+
44
+ .fields-wrapper {
45
+ display: flex;
46
+ column-gap: 30px;
47
+ align-items: center;
48
+ }
49
+
50
+ .category-content-wrapper {
51
+ display: flex;
52
+
53
+ .rubric-wrapper {
54
+ display: flex;
55
+ flex-direction: column;
56
+
57
+ .inputs-wrapper {
58
+ display: flex;
59
+ column-gap: 15px;
60
+ }
61
+ }
62
+ }
63
+ }
64
+ }
65
+ }
@@ -0,0 +1,4 @@
1
+ @include export-module('cc-screen-config-generator-theme') {
2
+ .co-screen-config-generator {
3
+ }
4
+ }
@@ -0,0 +1,4 @@
1
+ @import "../../../style/mixin";
2
+ @import "./_material-definition";
3
+ @import "./_layout";
4
+ @import "./_theme";
@@ -0,0 +1,7 @@
1
+ import { ElementRef } from '@angular/core';
2
+ import { StatusbarData } from './statusbar.component';
3
+ export declare class StatusbarPopupComponent {
4
+ statusbarData: StatusbarData[];
5
+ parentForOverlay: ElementRef;
6
+ showClass: boolean;
7
+ }
@@ -1,4 +1,5 @@
1
- import { EventEmitter } from "@angular/core";
1
+ import { ElementRef, EventEmitter } from '@angular/core';
2
+ import { OverlayService } from '@colijnit/corecomponents_v12';
2
3
  export interface StatusbarData {
3
4
  label: string;
4
5
  percentage: number;
@@ -6,18 +7,19 @@ export interface StatusbarData {
6
7
  totalCount?: number;
7
8
  }
8
9
  export declare class StatusbarComponent {
10
+ private _elementRef;
11
+ private _overlayService;
9
12
  set statusbarData(value: StatusbarData[]);
10
13
  get statusbarData(): StatusbarData[];
11
14
  focusedStatusIndex: number;
12
15
  statusbarClick: EventEmitter<void>;
13
16
  showClass(): boolean;
14
- constructor();
15
- showPopup: boolean;
16
- popupClass: string;
17
+ handleClick(event: MouseEvent): void;
18
+ popupShowing: boolean;
17
19
  private _statusbarData;
18
- private _mouseY;
19
- private _windowHeight;
20
- onStatusbarClick(event: any): void;
21
- setPopupClass(): void;
20
+ private _statusbarPopupComponentRef;
21
+ constructor(_elementRef: ElementRef, _overlayService: OverlayService);
22
+ handleShowPopup(event: MouseEvent): void;
23
+ handleHidePopup(): void;
22
24
  adjustTooHighPercentages(): void;
23
25
  }
@@ -17,46 +17,30 @@
17
17
  justify-content: center;
18
18
  align-items: center;
19
19
  }
20
-
21
- .status-description-popup{
22
- min-height: $statusbar-popup-min-height;
23
- min-width: $statusbar-popup-min-width;
24
- max-width: $statusbar-popup-max-width;
25
- padding: $statusbar-popup-padding;
26
- border: $statusbar-popup-border;
27
- border-radius: $statusbar-popup-border-radius;
28
- z-index: $statusbar-popup-z-index;
29
-
30
- &.dropdown {
31
- position: absolute;
32
- top: $statusbar-popup-dropdown-position-top;
33
- left: 50%;
34
- transform: translate(-50%, 0);
35
- }
36
-
37
- &.dropup {
38
- position: absolute;
39
- bottom: $statusbar-popup-dropup-position-down;
40
- left: 50%;
41
- transform: translate(-50%, 0);
42
- }
43
- }
44
-
20
+ }
21
+ .co-statusbar-popup-wrapper {
22
+ position: fixed;
23
+ font-family: $statusbar-font-family;
24
+ font-size:$statusbar-font-size;
25
+ min-height: $statusbar-popup-min-height;
26
+ min-width: $statusbar-popup-min-width;
27
+ max-width: $statusbar-popup-max-width;
28
+ padding: $statusbar-popup-padding;
29
+ border: $statusbar-popup-border;
30
+ border-radius: $statusbar-popup-border-radius;
31
+ z-index: $statusbar-popup-z-index;
45
32
  .status-descriptions {
46
33
  display: flex;
47
34
  flex-direction: column;
48
-
49
35
  .status-description {
50
36
  display: flex;
51
37
  flex-direction: row;
52
38
  align-items: center;
53
-
54
39
  span {
55
40
  padding-left: $statusbar-status-description-padding-left;
56
41
  }
57
42
  }
58
43
  }
59
-
60
44
  co-linear-gauge {
61
45
  &.focused-status {
62
46
  div {
@@ -3,12 +3,11 @@
3
3
  .statusses {
4
4
  background-color: $statusbar-background-color;
5
5
  }
6
-
7
- .status-description-popup {
8
- background-color: $statusbar-background-color;
9
- border-color: $statusbar-popup-border-color;
10
- box-shadow: $statusbar-popup-border-box-shadow;
11
- }
6
+ }
7
+ .co-statusbar-popup-wrapper {
8
+ background-color: $statusbar-background-color;
9
+ border-color: $statusbar-popup-border-color;
10
+ box-shadow: $statusbar-popup-border-box-shadow;
12
11
  }
13
12
  }
14
13
 
@@ -21,6 +21,10 @@ export declare class StockLocationComponent implements OnInit {
21
21
  readonly transferIconClicked: EventEmitter<ArticleStockBo>;
22
22
  readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
23
23
  selectedWarehouse: any;
24
+ selectedWarehouseModel: {
25
+ value: 1;
26
+ label: 'danny & dane';
27
+ };
24
28
  dataWareHouseFields: CoDropDownListFields;
25
29
  dataLocationFields: CoDropDownListFields;
26
30
  articleDetailsInformation: ArticleStockManagement;
@@ -3,6 +3,5 @@ import { ArticleStock as ArticleStockBo } from "@colijnit/articleapi/build/model
3
3
  export declare class StockTabComponent {
4
4
  articleStockInformation: ArticleStockBo[];
5
5
  locationClicked: EventEmitter<ArticleStockBo>;
6
- constructor();
7
6
  onLocationClick(data: ArticleStockBo): void;
8
7
  }
@@ -0,0 +1,7 @@
1
+ import { PipeTransform } from '@angular/core';
2
+ import { LocalizeService } from './localize.service';
3
+ export declare class LocalizePipe implements PipeTransform {
4
+ private _localizeService;
5
+ constructor(_localizeService: LocalizeService);
6
+ transform(value: string, upperCaseFirst?: boolean, replace?: string | string[]): string;
7
+ }
@@ -0,0 +1,7 @@
1
+ import { Translation } from './translation';
2
+ export declare class LocalizeService {
3
+ set translation(value: Translation);
4
+ get translation(): Translation;
5
+ private _translation;
6
+ get(key: string, upperCaseFirst?: boolean, ...replacementTexts: string[]): string;
7
+ }
@@ -0,0 +1,52 @@
1
+ export declare class Translation {
2
+ ALLOCATED?: string;
3
+ ALLOCATION?: string;
4
+ ALREADY_IN_ORDER?: string;
5
+ AMOUNT?: string;
6
+ AMOUNT_AVAILABLE?: string;
7
+ AMOUNT_IN_STOCK?: string;
8
+ AMOUNT_LATER_AVAILABLE?: string;
9
+ AVAILABLE_STOCK?: string;
10
+ BACK_TO_STOCK_LINES?: string;
11
+ BATCH?: string;
12
+ CANCEL?: string;
13
+ CHOICES?: string;
14
+ CUSTOMER?: string;
15
+ DATE?: string;
16
+ DELIVERY_DATE?: string;
17
+ DESCRIPTION?: string;
18
+ DOCUMENT_NUMBER?: string;
19
+ ECONOMICAL_STOCK?: string;
20
+ FREE_STOCK?: string;
21
+ HISTORY?: string;
22
+ IN_ORDER?: string;
23
+ LINE?: string;
24
+ LOCATION?: string;
25
+ LOOK_AT?: string;
26
+ MUTATION_DATE?: string;
27
+ MUTATION_TIME?: string;
28
+ MUTATION_TYPE?: string;
29
+ OK?: string;
30
+ ORDER?: string;
31
+ ORDER_COMMISSION?: string;
32
+ ORDER_STOCK?: string;
33
+ OVERVIEW?: string;
34
+ PURCHASE_ORDER_NR?: string;
35
+ PURCHASE_PRICE?: string;
36
+ RELATION_ID?: string;
37
+ RELATION_NR?: string;
38
+ RESERVED?: string;
39
+ SEARCH?: string;
40
+ SERIAL_NO?: string;
41
+ STICKER?: string;
42
+ STOCK?: string;
43
+ STOCK_DETAILS?: string;
44
+ STOCK_REMARK?: string;
45
+ STOCK_STATE?: string;
46
+ STOCK_STATUS?: string;
47
+ SUPPLIER_NUMBER?: string;
48
+ TRANSFER?: string;
49
+ USER?: string;
50
+ VALUTA?: string;
51
+ WAREHOUSE?: string;
52
+ }
@@ -4,5 +4,4 @@ export declare class StockHistoryTabsComponent {
4
4
  readonly icons: typeof Icon;
5
5
  selectedTab: number;
6
6
  stockInformation: ArticleStockBo[];
7
- constructor();
8
7
  }
@@ -5,5 +5,4 @@ export declare class StockInformationComponent {
5
5
  articleStockState: number;
6
6
  allAvailableStockInformation: number;
7
7
  allTechnicalStockInformation: number;
8
- constructor();
9
8
  }
@@ -1,4 +1,4 @@
1
- import { EventEmitter } from "@angular/core";
1
+ import { EventEmitter, OnInit } from '@angular/core';
2
2
  import { Icon } from "../../../enum/icon.enum";
3
3
  import { ArticleStock as ArticleStockBo } from "@colijnit/articleapi/build/model/article-stock.bo";
4
4
  import { StockService } from "../../../service/stock.service";
@@ -7,15 +7,17 @@ import { Tab } from "../../tab-bar/tab.interface";
7
7
  import { ArticleTransaction as ArticleTransactionBo } from "@colijnit/articleapi/build/model/article-transaction.bo";
8
8
  import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
9
9
  import { PrintPriceStickers } from "@colijnit/sharedapi/build/model/print-price-stickers.bo";
10
- export declare class StockTabsComponent {
10
+ import { LocalizeService } from '../localization/localize.service';
11
+ export declare class StockTabsComponent implements OnInit {
11
12
  private _stockService;
13
+ private _localizeService;
12
14
  readonly icons: typeof Icon;
13
15
  stockInformation: ArticleStockBo[];
14
16
  article: any;
15
17
  warehouses: StockManagementWarehouses[];
16
18
  readonly transferIconClicked: EventEmitter<ArticleStockBo>;
17
19
  readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
18
- clickedLocation: string;
20
+ selectedLocation: string;
19
21
  stockHistory: StockHistoryBo[];
20
22
  orderSupplyStockHistory: StockHistoryBo[];
21
23
  orderCommissionStockHistory: StockHistoryBo[];
@@ -23,17 +25,10 @@ export declare class StockTabsComponent {
23
25
  orderAllocationStockHistory: StockHistoryBo[];
24
26
  inOrderInformation: ArticleTransactionBo[];
25
27
  orderInformation: ArticleTransactionBo[];
26
- tabs: ({
27
- title: string;
28
- active: boolean;
29
- clickHandler?: undefined;
30
- } | {
31
- title: string;
32
- active: boolean;
33
- clickHandler: any;
34
- })[];
28
+ tabs: Tab[];
35
29
  historyTabs: Tab[];
36
- constructor(_stockService: StockService);
30
+ constructor(_stockService: StockService, _localizeService: LocalizeService);
31
+ ngOnInit(): void;
37
32
  handleLocationClicked(data: ArticleStockBo): void;
38
33
  getStockHistory(): Promise<void>;
39
34
  getOrderSupplyStockHistory(): Promise<void>;
@@ -8,12 +8,16 @@ import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-detai
8
8
  import { OptionsService } from "../../service/options.service";
9
9
  import { DictionaryService } from "../../service/dictionary.service";
10
10
  import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
11
+ import { LocalizeService } from './localization/localize.service';
12
+ import { Translation } from './localization/translation';
11
13
  export declare class StockComponent implements OnDestroy, OnInit {
12
14
  stockService: StockService;
13
15
  private _optionsService;
14
16
  private _dictionary;
15
17
  private _changeDetector;
18
+ private _localizeService;
16
19
  stock: StockComponent;
20
+ set translation(value: Translation);
17
21
  handleStickerClicked: EventEmitter<any>;
18
22
  set article(article: any);
19
23
  articleWarehouse: any[];
@@ -34,7 +38,7 @@ export declare class StockComponent implements OnDestroy, OnInit {
34
38
  articleStockState: number;
35
39
  warehouses: StockManagementWarehouses[];
36
40
  private _subscriptions;
37
- constructor(stockService: StockService, _optionsService: OptionsService, _dictionary: DictionaryService, _changeDetector: ChangeDetectorRef);
41
+ constructor(stockService: StockService, _optionsService: OptionsService, _dictionary: DictionaryService, _changeDetector: ChangeDetectorRef, _localizeService: LocalizeService);
38
42
  ngOnDestroy(): void;
39
43
  ngOnInit(): void;
40
44
  handleStockTransferClick(event: any): void;
@@ -11,7 +11,7 @@
11
11
  margin-top: $sc-stock-info-margin;
12
12
  padding: $sc-stock-info-padding;
13
13
  display: inline-flex;
14
- width: 90%;
14
+ width: $sc-stock-info-width;
15
15
  justify-content: space-between;
16
16
  }
17
17
 
@@ -26,7 +26,7 @@
26
26
 
27
27
  .stock-image {
28
28
  height: $sc-stock-image-height;
29
- margin-right: 20px;
29
+ margin-right: $sc-stock-image-width;
30
30
  }
31
31
 
32
32
  .stock-good-info {
@@ -35,7 +35,6 @@
35
35
 
36
36
  .stock-status {
37
37
  display: grid;
38
- gap: $sc-stock-gap;
39
38
  }
40
39
 
41
40
  .stock-info > div:not(:first-child) {
@@ -149,8 +148,9 @@
149
148
 
150
149
  .stock-transfer-columns {
151
150
  display: flex;
152
- width: 100%;
151
+ width: $sc-stock-transfer-column-width;
153
152
  justify-content: space-around;
153
+ overflow: hidden;
154
154
  }
155
155
 
156
156
  .tab-link-buttons {
@@ -188,5 +188,14 @@
188
188
  .co-dialog-wrapper {
189
189
  width: 70%;
190
190
  }
191
+
192
+ .stock-label {
193
+ font-size: 10px;
194
+ }
195
+
196
+ .stock-span {
197
+ font-size: 12px;
198
+ align-self: center;
199
+ }
191
200
  }
192
201
  }
@@ -19,3 +19,6 @@ $sc-stock-info-container-height: 100% !default;
19
19
  $sc-stock-image-height: 50px !default;
20
20
  $sc-stock-grid-height: 300px !default;
21
21
  $sc-stock-grid-overflow-y: auto !default;
22
+ $sc-stock-info-width: 90% !default;
23
+ $sc-stock-image-width: 20px !default;
24
+ $sc-stock-transfer-column-width: 600px !default;
@@ -1,14 +1,13 @@
1
1
  @include export-module('co-stock-statusbar-layout') {
2
2
  .status-bar {
3
3
  display: flex;
4
- height: 20px;
5
- width: 68px;
4
+ height: 10px;
5
+ width: 36px;
6
6
  }
7
7
 
8
8
  .status-bar-block {
9
9
  flex: 1;
10
10
  margin-right: 2px;
11
- border-radius: 5px;
12
11
  }
13
12
 
14
13
  .red {
@@ -1,9 +1,11 @@
1
1
  @include export-module('co-tab-bar') {
2
- .tab-bar {
2
+ .tab-bar-primary {
3
3
  background-color: #F5F5FC;
4
4
  border-radius: 4px;
5
5
  width: fit-content;
6
6
  margin: 0 auto;
7
+ font-size: $sc-font-size;
8
+ height: 23px;
7
9
 
8
10
  button {
9
11
  margin: 0.25rem;
@@ -14,6 +16,8 @@
14
16
  width: 125px;
15
17
  cursor: pointer;
16
18
  user-select: none;
19
+ font-size: 10px;
20
+ font-family: $sc-font-family;
17
21
 
18
22
  span {
19
23
  font-size: 12px;
@@ -28,11 +32,24 @@
28
32
  }
29
33
  }
30
34
 
35
+ .tab-bar {
36
+ align-self: center;
37
+ }
38
+
39
+ .tab-bar-wrapper {
40
+ display: grid;
41
+ grid-template-columns: 15% 70% 15%;
42
+ margin-left: 20px;
43
+ margin-right: 20px;
44
+ }
45
+
31
46
  .secondary-tab-bar {
32
47
  background-color: #F5F5FC;
33
48
  border-radius: 4px;
34
49
  width: fit-content;
35
50
  margin: 5px auto 0;
51
+ font-size: $sc-font-size;
52
+ height: 23px;
36
53
 
37
54
  button {
38
55
  margin: 0.25rem;
@@ -43,6 +60,8 @@
43
60
  width: 125px;
44
61
  cursor: pointer;
45
62
  user-select: none;
63
+ font-size: 10px;
64
+ font-family: $sc-font-family;
46
65
 
47
66
  span {
48
67
  font-size: 12px;
@@ -1,9 +1,24 @@
1
1
  import { Tab } from "./tab.interface";
2
+ import { CoDropDownListFields } from "../stock/stock-transfer/co-drop-down-list-fields.interface";
3
+ import { StockManagementWarehouses } from "@colijnit/articleapi/build/model/stock-management-warehouses.bo";
4
+ import { ArticleStockManagement } from "@colijnit/articleapi/build/model/article-stock-management";
5
+ import { StockService } from "../../service/stock.service";
6
+ import { ArticleDetailsBo } from "@colijnit/articleapi/build/model/article-details.bo";
2
7
  export declare class TabBarComponent {
8
+ private _stockService;
9
+ wareHouseLabel: string;
10
+ wareHouseSearchLabel: string;
3
11
  tabs: Tab[];
4
12
  secondaryTabs: Tab[];
5
13
  ActivateSecondaryTabs: boolean;
6
- constructor();
14
+ dataWareHouseCode: StockManagementWarehouses[];
15
+ article: any;
16
+ selectedWarehouse: any;
17
+ dataWareHouseFields: CoDropDownListFields;
18
+ articleDetailsInformation: ArticleStockManagement;
19
+ articleDetails: ArticleDetailsBo[];
20
+ constructor(_stockService: StockService);
7
21
  selectTab(tab: Tab): void;
8
22
  selectSecondaryTab(secondaryTab: Tab): void;
23
+ onSelectWarehouse(event: any): void;
9
24
  }
@@ -1,5 +1,5 @@
1
1
 
2
- $sc-font-family: 'Public sans' !default;
2
+ $sc-font-family: 'Inter' !default;
3
3
  $sc-font-family-digital: 'digital-7regular' !default;
4
4
 
5
5
  $sc-font-size: 10px !default;
package/package.json CHANGED
@@ -1,16 +1,20 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "1.0.40",
3
+ "version": "1.0.42",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
- "@angular/common": "^12.2.0",
7
- "@angular/core": "^12.2.0",
8
- "@colijnit/sharedapi": "^1.0.1",
9
- "pdf-lib": "^1.17.1",
10
- "pdfjs-dist": "^2.12.313",
11
- "rxjs": "~7.4.0",
12
- "signature_pad": "^4.0.2",
13
- "zone.js": "~0.11.4"
6
+ "@angular/common": ">=12.2.0",
7
+ "@angular/core": ">=12.2.0",
8
+ "@colijnit/articleapi": ">=1.0.17",
9
+ "@colijnit/mainapi": ">=1.0.3",
10
+ "@colijnit/corecomponents_v12": ">=12.0.109",
11
+ "@colijnit/ioneconnector": ">=2.1.10",
12
+ "@colijnit/sharedapi": ">=1.0.11",
13
+ "pdf-lib": ">=1.17.1",
14
+ "pdfjs-dist": ">=2.12.313",
15
+ "rxjs": ">=7.4.0",
16
+ "signature_pad": ">=4.0.2",
17
+ "zone.js": ">=0.11.4"
14
18
  },
15
19
  "main": "bundles/colijnit-sharedcomponents.umd.js",
16
20
  "module": "fesm2015/colijnit-sharedcomponents.js",
@@ -21,6 +25,6 @@
21
25
  "metadata": "colijnit-sharedcomponents.metadata.json",
22
26
  "sideEffects": false,
23
27
  "dependencies": {
24
- "tslib": "^2.3.0"
28
+ "tslib": ">=2.3.0"
25
29
  }
26
30
  }