@colijnit/sharedcomponents 258.1.3 → 258.1.5

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 (31) hide show
  1. package/bundles/colijnit-sharedcomponents.umd.js +50 -11
  2. package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
  3. package/colijnit-sharedcomponents.metadata.json +1 -1
  4. package/esm2015/lib/components/activity-list/activity-list.component.js +18 -2
  5. package/esm2015/lib/components/activity-overview-component/component-activity-overview.component.js +23 -3
  6. package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +44 -6
  7. package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +5 -2
  8. package/esm2015/lib/components/stock/stock.component.js +4 -1
  9. package/esm2015/lib/res/dictionary/dictionaries.js +5 -5
  10. package/fesm2015/colijnit-sharedcomponents.js +93 -13
  11. package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
  12. package/lib/components/activity-list/activity-list.component.d.ts +3 -0
  13. package/lib/components/activity-list/style/_layout.scss +18 -5
  14. package/lib/components/activity-overview-component/component-activity-overview.component.d.ts +3 -0
  15. package/lib/components/activity-overview-component/style/_layout.scss +41 -2
  16. package/lib/components/stock/components/order-tab/order-tab.component.d.ts +3 -0
  17. package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +1 -0
  18. package/lib/components/stock/stock.component.d.ts +1 -0
  19. package/lib/components/stock/style/_layout.scss +37 -1
  20. package/lib/res/dictionary/dictionaries.d.ts +67 -0
  21. package/package.json +1 -1
  22. package/358.645812766f7a400d0d38.js +0 -1
  23. package/3rdpartylicenses.txt +0 -2222
  24. package/863.171601b3075f2e971ba6.js +0 -1
  25. package/977.bd6291f9ee6f6ddf91f1.js +0 -1
  26. package/favicon.ico +0 -0
  27. package/index.html +0 -12
  28. package/main.40213c24ad994dd29dc7.js +0 -1
  29. package/polyfills.907fe9d1887c5de17993.js +0 -1
  30. package/runtime.f3719d23058f5b07c143.js +0 -1
  31. package/styles.9e6f1ab393c5fc104896.css +0 -1
@@ -34,6 +34,7 @@ export declare class ActivityListComponent implements OnInit, ScreenConfigAdapte
34
34
  showActivityPopup: Boolean;
35
35
  currentActivityDocuments: CoDocument[];
36
36
  private _activities;
37
+ private activityColorMap;
37
38
  constructor(iconCacheService: IconCacheService, _dictionaryService: SharedComponentsDictionaryService);
38
39
  ngOnInit(): Promise<void>;
39
40
  getRelationKind(author: RelationSmallObject): RelationKind;
@@ -45,4 +46,6 @@ export declare class ActivityListComponent implements OnInit, ScreenConfigAdapte
45
46
  showWorkedTime(activity: Activity): boolean;
46
47
  getWorkedTime(activity: Activity): number;
47
48
  openActivityPopup(activity: Activity): void;
49
+ getRandomColor(): string;
50
+ getColorForActivity(activity: Activity): string;
48
51
  }
@@ -13,8 +13,6 @@
13
13
  flex-direction: column;
14
14
  row-gap: 5px;
15
15
  width: 100%;
16
- max-width: 800px;
17
-
18
16
  .activity-display-title {
19
17
  display: flex;
20
18
  flex-direction: row;
@@ -28,6 +26,9 @@
28
26
  height: 20px;
29
27
  padding-left: 10px;
30
28
  }
29
+ span {
30
+ font-size: 10px;
31
+ }
31
32
  }
32
33
 
33
34
  .activity-display-content {
@@ -35,20 +36,32 @@
35
36
  flex-direction: column;
36
37
  border-radius: 5px;
37
38
  background-color: $sc-color-light;
38
- padding: 15px;
39
+ padding: 10px 5px;
39
40
  color: #000;
40
- box-shadow: 0px 2px 4px 0px #0000001A;
41
41
  .co-icon {
42
42
  svg {
43
- fill: #FFFFFF;
43
+ fill: $sc-color-font;
44
44
  }
45
45
  }
46
46
  .activity-display-body {
47
47
  display: flex;
48
48
  align-items: center;
49
+ gap: 15px;
49
50
  span {
50
51
  font-size: 12px;
51
52
  }
53
+ .activity-icon {
54
+ border-radius: 100%;
55
+ display: flex;
56
+ align-items: center;
57
+ justify-content: center;
58
+ width: 30px;
59
+ height: 30px;
60
+ .co-icon {
61
+ width: 18px;
62
+ height: 18px;
63
+ }
64
+ }
52
65
  }
53
66
 
54
67
  .activity-display-footer {
@@ -16,6 +16,9 @@ export declare class ComponentActivityOverviewComponent extends BaseActivityOver
16
16
  statusIcon: Icon;
17
17
  taskIcon: Icon;
18
18
  showClass(): boolean;
19
+ private activityColorMap;
19
20
  constructor(iconCacheService: IconCacheService, dialogService: CoreDialogService, dictionaryService: SharedComponentsDictionaryService, sharedService: SharedService);
20
21
  getActivityIcon(activity: Activity): Icon;
22
+ getRandomColor(): string;
23
+ getColorForActivity(activity: Activity): string;
21
24
  }
@@ -11,9 +11,28 @@
11
11
  .overview-wrapper {
12
12
  display: flex;
13
13
  flex-direction: row;
14
- align-items: baseline;
14
+ align-items: flex-start;
15
15
  gap: 30px;
16
16
  justify-content: space-between;
17
+ .overview-current {
18
+ display: flex;
19
+ align-items: center;
20
+ gap: 15px;
21
+ .overview-wrapper-icons {
22
+ .activity-icon {
23
+ border-radius: 100%;
24
+ display: flex;
25
+ align-items: center;
26
+ justify-content: center;
27
+ width: 30px;
28
+ height: 30px;
29
+ .co-icon {
30
+ width: 18px;
31
+ height: 18px;
32
+ }
33
+ }
34
+ }
35
+ }
17
36
  }
18
37
  .overview-wrapper-icons {
19
38
  display: flex;
@@ -33,7 +52,6 @@
33
52
  color: #FFF;
34
53
  }
35
54
  .activity-label {
36
- min-height: 20px;
37
55
  display: flex;
38
56
  align-items: center;
39
57
  }
@@ -149,6 +167,22 @@
149
167
  color: #171721;
150
168
  }
151
169
  .overview-task-wrapper {
170
+ display: flex;
171
+ align-items: center;
172
+ gap: 15px;
173
+ width: 100%;
174
+ .activity-icon {
175
+ border-radius: 100%;
176
+ display: flex;
177
+ align-items: center;
178
+ justify-content: center;
179
+ width: 30px;
180
+ height: 30px;
181
+ .co-icon {
182
+ width: 18px;
183
+ height: 18px;
184
+ }
185
+ }
152
186
  .button-trigger {
153
187
  background: #5FDCB399;
154
188
  border: 1px solid #5FDCB3;
@@ -170,6 +204,11 @@
170
204
  .task-box {
171
205
  display: flex;
172
206
  flex-direction: column;
207
+ .task-current-state {
208
+ display: flex;
209
+ align-items: center;
210
+ gap: 15px;
211
+ }
173
212
  }
174
213
  }
175
214
  }
@@ -22,6 +22,7 @@ export declare class OrderTabComponent extends BaseStockComponent {
22
22
  readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
23
23
  handleStickerClicked: EventEmitter<any>;
24
24
  showStockTransferChange: EventEmitter<boolean>;
25
+ handleTransactionClick: EventEmitter<any>;
25
26
  data: ArticleTransactionBo[];
26
27
  selectedRow: ArticleDetailsBo | null;
27
28
  articleDetails: ArticleDetailsBo;
@@ -32,4 +33,6 @@ export declare class OrderTabComponent extends BaseStockComponent {
32
33
  onRowSelected(row: ArticleDetailsBo): void;
33
34
  onShowStockTransferChange(show: boolean): void;
34
35
  protected getData(): Promise<void>;
36
+ handleTransactionNavigationClick(event: Event, transNr: string): void;
37
+ handleTransactionNavigation(transNr: string): void;
35
38
  }
@@ -20,6 +20,7 @@ export declare class StockTabsComponent implements OnInit {
20
20
  warehouses: StockManagementWarehouses[];
21
21
  readonly transferIconClicked: EventEmitter<ArticleStockBo>;
22
22
  readonly sendMethodDialogClicked: EventEmitter<PrintPriceStickers>;
23
+ handleTransactionClick: EventEmitter<any>;
23
24
  selectedWarehouse: StockManagementWarehouses;
24
25
  tabs: Tab[];
25
26
  historyTabs: Tab[];
@@ -29,6 +29,7 @@ export declare class StockComponent implements OnDestroy, OnInit {
29
29
  readonly okButtonClicked: EventEmitter<any>;
30
30
  readonly cancelButtonClicked: EventEmitter<any>;
31
31
  handleClick: EventEmitter<any>;
32
+ handleTransactionClick: EventEmitter<any>;
32
33
  updateGridData: EventEmitter<ArticleDetailsBo[]>;
33
34
  showClass(): boolean;
34
35
  loaded: boolean;
@@ -536,6 +536,11 @@
536
536
  position: relative;
537
537
  .simple-grid-column-header {
538
538
  border-width: 0;
539
+ .simple-grid-column-header-wrapper {
540
+ .simple-grid-column-header-label {
541
+ font-size: 10px;
542
+ }
543
+ }
539
544
  &:hover {
540
545
  .simple-grid-column-header-wrapper {
541
546
  position: unset;
@@ -582,9 +587,40 @@
582
587
  border-radius: 0;
583
588
  padding: 5px 10px;
584
589
  border-color: #DCE4EA;
590
+ gap: 5px;
591
+ .double-data {
592
+ display: flex;
593
+ flex-direction: row;
594
+ align-items: center;
595
+ gap: 5px;
596
+ &.link {
597
+ gap: 10px;
598
+ cursor: pointer;
599
+ span {
600
+ color: #1A73E8;
601
+ }
602
+ .co-icon {
603
+ svg [fill] {
604
+ fill: #1A73E8;
605
+ }
606
+ }
607
+ }
608
+ .co-icon {
609
+ width: 16px;
610
+ height: 16px;
611
+ }
612
+ span {
613
+ display: -webkit-box;
614
+ -webkit-line-clamp: 1;
615
+ -webkit-box-orient: vertical;
616
+ overflow: hidden;
617
+ text-overflow: ellipsis;
618
+ min-width: 8px;
619
+ }
620
+ }
585
621
  }
586
622
  .simple-grid-column-header-label {
587
- border-width: 0 0 1px 0;
623
+ border-width: 0;
588
624
  }
589
625
  .co-simple-grid-cell {
590
626
  .menu-icon {
@@ -1,5 +1,6 @@
1
1
  export declare class Dictionaries {
2
2
  text_de: {
3
+ ADDRESS_ADD: string;
3
4
  CHAPTER: string;
4
5
  CHARACTERISTIC: string;
5
6
  CHARACTERISTICS: string;
@@ -918,6 +919,7 @@ export declare class Dictionaries {
918
919
  SCHEDULE: string;
919
920
  SCHEMA: string;
920
921
  SCHEMA_NAME: string;
922
+ SHOW_ORDER: string;
921
923
  SCORING_OPPORTUNITY_PERC: string;
922
924
  SCREEN: string;
923
925
  SEARCH: string;
@@ -958,6 +960,8 @@ export declare class Dictionaries {
958
960
  MESSAGE_SAVE_CHANGES: string;
959
961
  MESSAGE_SAVE_CHANGES_TITLE: string;
960
962
  MESSAGE_STARTUP_VALIDATIONS_WARNING: string;
963
+ NO_IMAGE: string;
964
+ EXPECTED_DELIVERY_WEEK: string;
961
965
  SEARCH_ARTICLES: string;
962
966
  SEARCH_CATALOGUE: string;
963
967
  SEARCH_CONTACTS: string;
@@ -1404,6 +1408,7 @@ export declare class Dictionaries {
1404
1408
  TOTAL_PRICE_CONFIG: string;
1405
1409
  TOTAL_PRICE_CONFIG2: string;
1406
1410
  TOTAL_QUANTITY: string;
1411
+ QUANTITY: string;
1407
1412
  TO_ACCEPT: string;
1408
1413
  TO_BE_PLANNED: string;
1409
1414
  TO_BE_USED: string;
@@ -1577,6 +1582,9 @@ export declare class Dictionaries {
1577
1582
  ORDER_INFO: string;
1578
1583
  ORDER_KIND: string;
1579
1584
  PRODUCT_OPEN_ACTIVITIES: string;
1585
+ PASSWORD_FORGOTTEN_TEXT: string;
1586
+ PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
1587
+ TOTAL_GROSS: string;
1580
1588
  };
1581
1589
  text_en: {
1582
1590
  "0_RESULTS_FOUND": string;
@@ -1710,6 +1718,11 @@ export declare class Dictionaries {
1710
1718
  BUILD_SELF: string;
1711
1719
  BULK: string;
1712
1720
  BULKLOCATION: string;
1721
+ BULK_3D_UPLOAD: string;
1722
+ BULK_3D_REF: string;
1723
+ BULK_3D_REF_DESC: string;
1724
+ BULK_3D_ZIP: string;
1725
+ BULK_3D_ZIP_DESC: string;
1713
1726
  BUSINESS_ADDRESS: string;
1714
1727
  BUSINESS_ADDRESS_ADDITION: string;
1715
1728
  BUSINESS_ADDRESS_ADDITION_NUMBER: string;
@@ -1988,6 +2001,7 @@ export declare class Dictionaries {
1988
2001
  CONFIGURATION_NOT_FINISHED_YET: string;
1989
2002
  CONFIGURATION_OVERVIEW: string;
1990
2003
  CONFIGURATION_YOURS: string;
2004
+ CONFIGURATION_LIBRARY: string;
1991
2005
  CONFIGURATOR_TEST: string;
1992
2006
  CONFIGURE: string;
1993
2007
  CONFIGURE_ARTICLE: string;
@@ -3500,6 +3514,7 @@ export declare class Dictionaries {
3500
3514
  PRICE_TAG_IMAGE: string;
3501
3515
  PRICE_TAG_INTER_BRANCH: string;
3502
3516
  PRICE_TAG_STICKERS: string;
3517
+ PRINT_PRICE_TAG_STICKERS: string;
3503
3518
  PRICE_TAG_TEXT: string;
3504
3519
  PRICE_TESTER: string;
3505
3520
  PRICE_TO: string;
@@ -4823,6 +4838,7 @@ export declare class Dictionaries {
4823
4838
  STOCKTAGSWINDOW: string;
4824
4839
  STOCK_ADJUSTMENTS: string;
4825
4840
  STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
4841
+ STOCK_COMPARISON: string;
4826
4842
  STOCK_DATE: string;
4827
4843
  STOCK_DETAILS: string;
4828
4844
  STOCK_DIFFERENCES: string;
@@ -4840,6 +4856,7 @@ export declare class Dictionaries {
4840
4856
  STOCK_NOT_EDITABLE: string;
4841
4857
  STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
4842
4858
  STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
4859
+ STOCK_OVERVIEW: string;
4843
4860
  STOCK_PARAMETERS: string;
4844
4861
  STOCK_REPLENISHMENT: string;
4845
4862
  STOCK_REMARK: string;
@@ -4888,6 +4905,7 @@ export declare class Dictionaries {
4888
4905
  BATCH_INVOICE: string;
4889
4906
  BATCH_ORDER_CONFIRMATION: string;
4890
4907
  BATCH_PURCHASE_ORDER_FORM: string;
4908
+ BATCH_DELIVERY_NOTES: string;
4891
4909
  BCC: string;
4892
4910
  BEFORE_DATE: string;
4893
4911
  BEGIN_BOOK: string;
@@ -5241,6 +5259,7 @@ export declare class Dictionaries {
5241
5259
  BOOKING_SEARCH_GENERAL_INFO: string;
5242
5260
  BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
5243
5261
  BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
5262
+ BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
5244
5263
  BOOKING_SELECTION: string;
5245
5264
  BOOK_AMOUNT: string;
5246
5265
  BOOK_DATA: string;
@@ -5657,6 +5676,7 @@ export declare class Dictionaries {
5657
5676
  SELECT_DRAWER: string;
5658
5677
  SELECT_EMAIL_ADDRESS: string;
5659
5678
  SELECT_EMPLOYER: string;
5679
+ SELECT_LINE_FIRST: string;
5660
5680
  SELECT_END_DATE: string;
5661
5681
  SELECT_EXISTING_CUSTOMER: string;
5662
5682
  SELECT_FOR_HAS_BEEN_PICKED: string;
@@ -6184,6 +6204,7 @@ export declare class Dictionaries {
6184
6204
  SEARCH_BUYORDERS: string;
6185
6205
  SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
6186
6206
  SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
6207
+ SEARCH_BY_OPTION_VALUE: string;
6187
6208
  SEARCH_CATALOGUE: string;
6188
6209
  SEARCH_CITY: string;
6189
6210
  SEARCH_CODE: string;
@@ -6983,6 +7004,7 @@ export declare class Dictionaries {
6983
7004
  STYLE_GROUPING: string;
6984
7005
  SUBJECT: string;
6985
7006
  SUBMIT: string;
7007
+ SUBMIT_A_NEW_VOUCHER_CODE: string;
6986
7008
  SUBSCRIBE: string;
6987
7009
  SUBTOTAL: string;
6988
7010
  SUBTOTAL_ACCOUNT: string;
@@ -7072,6 +7094,7 @@ export declare class Dictionaries {
7072
7094
  ARTICLE_IMAGE: string;
7073
7095
  ARTICLE_INFO: string;
7074
7096
  ARTICLE_ORDER_DETAILS: string;
7097
+ ARTICLE_OPTION_LIBRARY: string;
7075
7098
  MARKED: string;
7076
7099
  MARKETING: string;
7077
7100
  MARKETING_CODE: string;
@@ -7652,6 +7675,7 @@ export declare class Dictionaries {
7652
7675
  FIRST_REC_DATE: string;
7653
7676
  FIRST_SICK_DAY: string;
7654
7677
  FRIDAY_ABBREVATION: string;
7678
+ FORMAT: string;
7655
7679
  FROM: string;
7656
7680
  FROM1: string;
7657
7681
  FROM_BOOKING_DATE: string;
@@ -7688,11 +7712,13 @@ export declare class Dictionaries {
7688
7712
  NOT_BEFORE: string;
7689
7713
  NOT_BLOCKED: string;
7690
7714
  NOT_COMPLETE: string;
7715
+ NOT_CHECKED: string;
7691
7716
  NOT_COMPLETELY_ALLOCATED: string;
7692
7717
  NOT_COMPLETELY_ASSIGNED: string;
7693
7718
  NOT_COMPLETELY_SIGNED_IN: string;
7694
7719
  NOT_COMPLETE_ORDERS: string;
7695
7720
  NOT_DEFINITE: string;
7721
+ NOT_DELIVERED: string;
7696
7722
  NOT_ENOUGH_CONTAINER_VOLUME: string;
7697
7723
  NOT_EXPIRED: string;
7698
7724
  NOT_FOUND: string;
@@ -8270,6 +8296,8 @@ export declare class Dictionaries {
8270
8296
  UPDATE_SINGLE_SEARCH_INDEX: string;
8271
8297
  UPDATE_STOCK: string;
8272
8298
  UPLOAD: string;
8299
+ UPLOADING: string;
8300
+ UPLOADED: string;
8273
8301
  UPLOAD_FILE: string;
8274
8302
  UPLOAD_IMAGE: string;
8275
8303
  UPLOAD_IMAGE_MSG: string;
@@ -8332,10 +8360,12 @@ export declare class Dictionaries {
8332
8360
  VOUCHERS: string;
8333
8361
  VOUCHER_AMOUNT: string;
8334
8362
  VOUCHER_CODE: string;
8363
+ VOUCHER_CODE_ALREADY_EXISTS: string;
8335
8364
  VOUCHER_CODE_EXISTS: string;
8336
8365
  VOUCHER_CODE_INFO: string;
8337
8366
  VOUCHER_DEACTIVE: string;
8338
8367
  VOUCHER_EXPIRED: string;
8368
+ VOUCHER_INFORMATION: string;
8339
8369
  VOUCHER_MAX_USED: string;
8340
8370
  VOUCHER_NO_BALANCE: string;
8341
8371
  VOUCHER_PAYMENTS: string;
@@ -8365,6 +8395,7 @@ export declare class Dictionaries {
8365
8395
  WAREHOUSE_NOT_IN_BRANCH: string;
8366
8396
  WAREHOUSE_NUMBER: string;
8367
8397
  WAREHOUSE_RECEIPT: string;
8398
+ WAREHOUSE_TRANSFERS: string;
8368
8399
  WAREHOUSE_REQUIRED: string;
8369
8400
  WARNING: string;
8370
8401
  WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
@@ -8491,6 +8522,7 @@ export declare class Dictionaries {
8491
8522
  INPUT: string;
8492
8523
  INPUT_DISCOUNT: string;
8493
8524
  INPUT_NEW_LINE: string;
8525
+ INPUT_VOUCHER_CODE: string;
8494
8526
  INSERT_NEW_DRAWER: string;
8495
8527
  INSERT_NEW_FORM: string;
8496
8528
  INSERT_NEW_RELATION: string;
@@ -10436,6 +10468,9 @@ export declare class Dictionaries {
10436
10468
  SCHEMA_NAME: string;
10437
10469
  SCREEN: string;
10438
10470
  SEARCH: string;
10471
+ QUANTITY: string;
10472
+ SHOW_ORDER: string;
10473
+ NO_IMAGE: string;
10439
10474
  CURRENCY_CODE: string;
10440
10475
  CURRENCY_UNIT: string;
10441
10476
  CURRENT: string;
@@ -10903,6 +10938,12 @@ export declare class Dictionaries {
10903
10938
  ORDER_INFO: string;
10904
10939
  ORDER_KIND: string;
10905
10940
  PRODUCT_OPEN_ACTIVITIES: string;
10941
+ TOTAL_GROSS: string;
10942
+ DELIVERY_COSTS: string;
10943
+ PASSWORD_FORGOTTEN_TEXT: string;
10944
+ PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
10945
+ EMAIL_OR_USERNAME: string;
10946
+ LOGIN: string;
10906
10947
  };
10907
10948
  text_nl: {
10908
10949
  "0_RESULTS_FOUND": string;
@@ -12036,6 +12077,7 @@ export declare class Dictionaries {
12036
12077
  ARTICLE_NUMBER: string;
12037
12078
  ARTICLE_NUMBER_SUPPLIER: string;
12038
12079
  ARTICLE_ORDER_DETAILS: string;
12080
+ ARTICLE_OPTION_LIBRARY: string;
12039
12081
  ARTICLE_PRODUCT_LIST: string;
12040
12082
  ARTICLE_SEARCH: string;
12041
12083
  ARTICLE_SEARCH_GENERAL_INFO: string;
@@ -12209,6 +12251,7 @@ export declare class Dictionaries {
12209
12251
  BATCH_INVOICE: string;
12210
12252
  BATCH_ORDER_CONFIRMATION: string;
12211
12253
  BATCH_PURCHASE_ORDER_FORM: string;
12254
+ BATCH_DELIVERY_NOTES: string;
12212
12255
  BCC: string;
12213
12256
  BEFORE_DATE: string;
12214
12257
  BEGIN_BOOK: string;
@@ -12247,6 +12290,7 @@ export declare class Dictionaries {
12247
12290
  BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
12248
12291
  BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
12249
12292
  BOOKING_SEARCH_GENERAL_INFO: string;
12293
+ BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
12250
12294
  BOOKING_SELECTION: string;
12251
12295
  BOOK_AMOUNT: string;
12252
12296
  BOOK_DATA: string;
@@ -12286,6 +12330,11 @@ export declare class Dictionaries {
12286
12330
  BUILD_SELF: string;
12287
12331
  BULK: string;
12288
12332
  BULKLOCATION: string;
12333
+ BULK_3D_UPLOAD: string;
12334
+ BULK_3D_REF: string;
12335
+ BULK_3D_REF_DESC: string;
12336
+ BULK_3D_ZIP: string;
12337
+ BULK_3D_ZIP_DESC: string;
12289
12338
  BUSINESS_ADDRESS: string;
12290
12339
  BUSINESS_ADDRESS_ADDITION: string;
12291
12340
  BUSINESS_ADDRESS_ADDITION_NUMBER: string;
@@ -12803,6 +12852,7 @@ export declare class Dictionaries {
12803
12852
  CONFIGURATION_OVERVIEW: string;
12804
12853
  CONFIGURATION_PRESET: string;
12805
12854
  CONFIGURATION_YOURS: string;
12855
+ CONFIGURATION_LIBRARY: string;
12806
12856
  CONFIGURATOR_TEST: string;
12807
12857
  CONFIGURE: string;
12808
12858
  CONFIGURE_ARTICLE: string;
@@ -13268,6 +13318,7 @@ export declare class Dictionaries {
13268
13318
  DEFAULT: string;
13269
13319
  DEFAULTS: string;
13270
13320
  DEFAULT_ANSWER: string;
13321
+ DEFAULT_ARTICLE: string;
13271
13322
  DEFAULT_ARTICLE_GROUP: string;
13272
13323
  DEFAULT_AVAILABLE: string;
13273
13324
  DEFAULT_CHOICE: string;
@@ -14201,6 +14252,7 @@ export declare class Dictionaries {
14201
14252
  FREQUENT_ABSENCE: string;
14202
14253
  FRIDAY: string;
14203
14254
  FRIDAY_ABBREVATION: string;
14255
+ FORMAT: string;
14204
14256
  FROM1: string;
14205
14257
  FROM: string;
14206
14258
  FROM_BOOKING_DATE: string;
@@ -14530,6 +14582,7 @@ export declare class Dictionaries {
14530
14582
  INPUT: string;
14531
14583
  INPUT_DISCOUNT: string;
14532
14584
  INPUT_NEW_LINE: string;
14585
+ INPUT_VOUCHER_CODE: string;
14533
14586
  INSERT_NEW_DRAWER: string;
14534
14587
  INSERT_NEW_FORM: string;
14535
14588
  INSERT_NEW_RELATION: string;
@@ -14712,6 +14765,7 @@ export declare class Dictionaries {
14712
14765
  KASPICK_PRINTER: string;
14713
14766
  KEEP_LOCATION: string;
14714
14767
  KEYBOARD_LAYOUT: string;
14768
+ KEYCLOAK_SYNC_ISSUE: string;
14715
14769
  KILL_SESSION: string;
14716
14770
  KIND: string;
14717
14771
  KIND_OF_ART_DESCRIPTION: string;
@@ -15653,7 +15707,9 @@ export declare class Dictionaries {
15653
15707
  NOT_COMPLETE: string;
15654
15708
  NOT_COMPLETELY_ALLOCATED: string;
15655
15709
  NOT_COMPLETE_ORDERS: string;
15710
+ NOT_CHECKED: string;
15656
15711
  NOT_DEFINITE: string;
15712
+ NOT_DELIVERED: string;
15657
15713
  NOT_ENOUGH_CONTAINER_VOLUME: string;
15658
15714
  NOT_EXPIRED: string;
15659
15715
  NOT_FOUND: string;
@@ -16573,6 +16629,7 @@ export declare class Dictionaries {
16573
16629
  PRICE_TAG_IMAGE: string;
16574
16630
  PRICE_TAG_INTER_BRANCH: string;
16575
16631
  PRICE_TAG_STICKERS: string;
16632
+ PRINT_PRICE_TAG_STICKERS: string;
16576
16633
  PRICE_TAG_TEXT: string;
16577
16634
  PRICE_TESTER: string;
16578
16635
  PRICE_TO: string;
@@ -17489,6 +17546,7 @@ export declare class Dictionaries {
17489
17546
  SEARCH_BUYORDERS: string;
17490
17547
  SEARCH_BY_ARTICLENUMBER_NAME_OR_DESCRIPTION: string;
17491
17548
  SEARCH_BY_ARTICLENUMBER_OR_DESCRIPTION: string;
17549
+ SEARCH_BY_OPTION_VALUE: string;
17492
17550
  SEARCH_FILTER: string;
17493
17551
  SEARCH_CATALOGUE: string;
17494
17552
  SEARCH_CODE: string;
@@ -17579,6 +17637,7 @@ export declare class Dictionaries {
17579
17637
  SELECT_ACCOUNT_MANAGER: string;
17580
17638
  SELECT_CONSULTANT: string;
17581
17639
  SELECT_EMPLOYER: string;
17640
+ SELECT_LINE_FIRST: string;
17582
17641
  SELECT_MAILING_CODE: string;
17583
17642
  SELECT_CASE_MANAGER: string;
17584
17643
  SELECT_MEDICAL_OFFICER: string;
@@ -18055,6 +18114,7 @@ export declare class Dictionaries {
18055
18114
  STOCK_ADJUSTMENTS: string;
18056
18115
  STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
18057
18116
  STOCK_BELOW_ZERO_TEXT: string;
18117
+ STOCK_COMPARISON: string;
18058
18118
  STOCK_DATE: string;
18059
18119
  STOCK_DETAILS: string;
18060
18120
  STOCK_DIFFERENCES: string;
@@ -18072,6 +18132,7 @@ export declare class Dictionaries {
18072
18132
  STOCK_NOT_EDITABLE: string;
18073
18133
  STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
18074
18134
  STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
18135
+ STOCK_OVERVIEW: string;
18075
18136
  STOCK_PARAMETERS: string;
18076
18137
  STOCK_REPLENISHMENT: string;
18077
18138
  STOCK_REMARK: string;
@@ -18123,6 +18184,7 @@ export declare class Dictionaries {
18123
18184
  STYLE_GROUPING: string;
18124
18185
  SUBJECT: string;
18125
18186
  SUBMIT: string;
18187
+ SUBMIT_A_NEW_VOUCHER_CODE: string;
18126
18188
  SUBSCRIBE: string;
18127
18189
  SUBTOTAL: string;
18128
18190
  SUBTOTAL_ACCOUNT: string;
@@ -18634,6 +18696,8 @@ export declare class Dictionaries {
18634
18696
  UPDATE_SINGLE_SEARCH_INDEX: string;
18635
18697
  UPDATE_STOCK: string;
18636
18698
  UPLOAD: string;
18699
+ UPLOADING: string;
18700
+ UPLOADED: string;
18637
18701
  UPLOAD_FILE: string;
18638
18702
  UPLOAD_IMAGE: string;
18639
18703
  UPLOAD_IMAGE_MSG: string;
@@ -18771,9 +18835,11 @@ export declare class Dictionaries {
18771
18835
  VOUCHER_AMOUNT: string;
18772
18836
  VOUCHER_CAN_ONLY_BE_USED_ONCE: string;
18773
18837
  VOUCHER_CODE: string;
18838
+ VOUCHER_CODE_ALREADY_EXISTS: string;
18774
18839
  VOUCHER_CODE_EXISTS: string;
18775
18840
  VOUCHER_CODE_INFO: string;
18776
18841
  VOUCHER_EXPIRED: string;
18842
+ VOUCHER_INFORMATION: string;
18777
18843
  VOUCHER_MAX_USED: string;
18778
18844
  VOUCHER_NO_BALANCE: string;
18779
18845
  VOUCHER_NOT_INVOICED: string;
@@ -18806,6 +18872,7 @@ export declare class Dictionaries {
18806
18872
  WAREHOUSE_RECEIPT: string;
18807
18873
  WAREHOUSE_REQUIRED: string;
18808
18874
  WAREHOUSE_ROWS: string;
18875
+ WAREHOUSE_TRANSFERS: string;
18809
18876
  WARNING: string;
18810
18877
  WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
18811
18878
  WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/sharedcomponents",
3
- "version": "258.1.3",
3
+ "version": "258.1.5",
4
4
  "private": false,
5
5
  "dependencies": {
6
6
  "chart.js": "4.3.0",