@colijnit/sharedcomponents 256.1.4 → 256.1.6
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 +670 -284
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.d.ts +126 -121
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/colijnit-sharedcomponents.js +127 -122
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.component.js +182 -0
- package/esm2015/lib/components/custom-pdf/custom-pdf-dialog.module.js +26 -0
- package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.js +52 -0
- package/esm2015/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.js +23 -0
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +27 -5
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.module.js +6 -2
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +18 -5
- package/esm2015/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.js +35 -20
- package/esm2015/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.js +26 -25
- package/esm2015/lib/components/stock/components/stock-location/stock-location.component.js +7 -4
- package/esm2015/lib/components/stock/components/stock-tab/stock-tab.component.js +3 -2
- package/esm2015/lib/components/stock/service/stock-module-screen-config.service.js +27 -0
- package/esm2015/lib/components/stock/stock-information/stock-information.component.js +30 -2
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +5 -5
- package/esm2015/lib/components/stock/stock.component.js +20 -7
- package/esm2015/lib/components/stock/stock.module.js +3 -1
- package/esm2015/lib/enum/icon.enum.js +2 -1
- package/esm2015/lib/model/icon-svg.js +2 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +3 -3
- package/esm2015/lib/service/shared-connector.service.js +2 -2
- package/esm2015/lib/service/shared-event.service.js +15 -0
- package/esm2015/public-api.js +2 -1
- package/fesm2015/colijnit-sharedcomponents.js +502 -111
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/custom-pdf/custom-pdf-dialog.component.d.ts +34 -0
- package/lib/components/custom-pdf/custom-pdf-dialog.module.d.ts +2 -0
- package/lib/components/custom-pdf/style/_layout.scss +22 -0
- package/lib/components/custom-pdf/style/_material-definition.scss +0 -0
- package/lib/components/custom-pdf/style/_theme.scss +5 -0
- package/lib/components/custom-pdf/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.component.d.ts +18 -0
- package/lib/components/send-method-dialog/components/additional-file-button/additional-file-button.module.d.ts +2 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_layout.scss +29 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_material-definition.scss +8 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/_theme.scss +4 -0
- package/lib/components/send-method-dialog/components/additional-file-button/style/material.scss +4 -0
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +11 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +13 -0
- package/lib/components/stock/components/allocation-stock-history/allocation-stock-history.component.d.ts +4 -1
- package/lib/components/stock/components/stock-location/components/stock-location-popup/stock-location-popup.component.d.ts +3 -1
- package/lib/components/stock/components/stock-location/stock-location.component.d.ts +2 -1
- package/lib/components/stock/service/stock-module-screen-config.service.d.ts +9 -0
- package/lib/components/stock/stock-information/stock-information.component.d.ts +8 -1
- package/lib/components/stock/stock.component.d.ts +5 -2
- package/lib/components/stock/style/_layout.scss +27 -4
- package/lib/components/stock/style/_material-definition.scss +3 -3
- package/lib/components/tab-bar/style/_layout.scss +6 -3
- package/lib/enum/icon.enum.d.ts +1 -0
- package/lib/res/dictionary/dictionaries.d.ts +51 -0
- package/lib/service/shared-event.service.d.ts +4 -0
- package/package.json +1 -1
- package/public-api.d.ts +1 -0
|
@@ -1818,6 +1818,7 @@ export declare class Dictionaries {
|
|
|
1818
1818
|
CATALOG_EDITION: string;
|
|
1819
1819
|
CATALOG_FILE_NAME: string;
|
|
1820
1820
|
CATALOG_MANAGEMENT: string;
|
|
1821
|
+
CATALOG_TYPES: string;
|
|
1821
1822
|
CATEGORIES: string;
|
|
1822
1823
|
CATEGORY: string;
|
|
1823
1824
|
CATEGORY_NR: string;
|
|
@@ -1953,6 +1954,7 @@ export declare class Dictionaries {
|
|
|
1953
1954
|
COLOR: string;
|
|
1954
1955
|
COLORS: string;
|
|
1955
1956
|
COLORS_SELECTED: string;
|
|
1957
|
+
COLOUR: string;
|
|
1956
1958
|
COLOR_DESC: string;
|
|
1957
1959
|
COLUMN: string;
|
|
1958
1960
|
COLUMNS: string;
|
|
@@ -2491,6 +2493,7 @@ export declare class Dictionaries {
|
|
|
2491
2493
|
ALLOWED_CHANGES: string;
|
|
2492
2494
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
2493
2495
|
ALLOW_PART_DELIVERY: string;
|
|
2496
|
+
ALLOW_PONTO_CONNECTION: string;
|
|
2494
2497
|
ALLOW_ROTATION: string;
|
|
2495
2498
|
ALLOW_SIDEBAR: string;
|
|
2496
2499
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
@@ -3166,6 +3169,7 @@ export declare class Dictionaries {
|
|
|
3166
3169
|
RESERVATION_PURCHASEORDER: string;
|
|
3167
3170
|
RESERVATION_STICKER: string;
|
|
3168
3171
|
RESERVED: string;
|
|
3172
|
+
RESET: string;
|
|
3169
3173
|
RESERVE_STICKERS: string;
|
|
3170
3174
|
RESET_FILTER: string;
|
|
3171
3175
|
RESET_FILTERS: string;
|
|
@@ -3436,6 +3440,7 @@ export declare class Dictionaries {
|
|
|
3436
3440
|
MESSAGE_KIND: string;
|
|
3437
3441
|
MESSAGE_LICENCE_EXPIRES_MONTH: string;
|
|
3438
3442
|
MESSAGE_LICENSE_EXPIRED: string;
|
|
3443
|
+
MESSAGE_LOGGED_CLIENT_FAILURE: string;
|
|
3439
3444
|
MESSAGE_LOGGED_IN: string;
|
|
3440
3445
|
MESSAGE_LOGIN_FAILURE: string;
|
|
3441
3446
|
MESSAGE_LOGIN_FAILURE2: string;
|
|
@@ -3929,6 +3934,7 @@ export declare class Dictionaries {
|
|
|
3929
3934
|
LOAD_ALL_NODES: string;
|
|
3930
3935
|
LOAD_DEFAULT_REPORTS: string;
|
|
3931
3936
|
LOAD_LINES: string;
|
|
3937
|
+
LOAD_PONTO_TRANSACTIONS: string;
|
|
3932
3938
|
LOAD_TRANSACTION: string;
|
|
3933
3939
|
LOC: string;
|
|
3934
3940
|
LOCAL_CASH_DRAWER_COMM_PORT: string;
|
|
@@ -4456,6 +4462,7 @@ export declare class Dictionaries {
|
|
|
4456
4462
|
IMPORT_RELATION_SUCCESS: string;
|
|
4457
4463
|
IMPORT_SCHEMAS: string;
|
|
4458
4464
|
IMPORT_SCHEMA_NAME: string;
|
|
4465
|
+
CHANGE_STOCK_LINE: string;
|
|
4459
4466
|
CORRECT_ACCEPTED_ORDER: string;
|
|
4460
4467
|
CORRECT_ALLOCATIONS_FIRST: string;
|
|
4461
4468
|
CORRECT_ASSIGNMENT_FIRST: string;
|
|
@@ -4584,6 +4591,7 @@ export declare class Dictionaries {
|
|
|
4584
4591
|
MUTATION_USER: string;
|
|
4585
4592
|
MY_CLIENTDATA: string;
|
|
4586
4593
|
MY_EMPLOYERS: string;
|
|
4594
|
+
MY_PLANNING: string;
|
|
4587
4595
|
MY_ORDERS: string;
|
|
4588
4596
|
MY_SERVICES: string;
|
|
4589
4597
|
MY_SERVICE_REQUESTS: string;
|
|
@@ -4703,6 +4711,7 @@ export declare class Dictionaries {
|
|
|
4703
4711
|
QR_CODE_SCANNER: string;
|
|
4704
4712
|
QR_SCAN: string;
|
|
4705
4713
|
QUANTITY: string;
|
|
4714
|
+
QUANTITY_ACCEPTED: string;
|
|
4706
4715
|
QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
|
|
4707
4716
|
QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
|
|
4708
4717
|
QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
|
|
@@ -6458,6 +6467,7 @@ export declare class Dictionaries {
|
|
|
6458
6467
|
SERVICE_HISTORY: string;
|
|
6459
6468
|
SERVICE_INFO: string;
|
|
6460
6469
|
SHOW_ACTIVE_ADDRESSES_ONLY: string;
|
|
6470
|
+
ABOUT_ORDER: string;
|
|
6461
6471
|
SHOW_ACTIVE_ONLY: string;
|
|
6462
6472
|
SHOW_ACTIVE_PERSONS_ONLY: string;
|
|
6463
6473
|
SHOW_ACTIVITIES_FOR_GROUP: string;
|
|
@@ -6496,6 +6506,7 @@ export declare class Dictionaries {
|
|
|
6496
6506
|
SHOW_ON_DASHBOARD: string;
|
|
6497
6507
|
SHOW_OPTION_PRICES: string;
|
|
6498
6508
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
6509
|
+
SHOW_ORDER: string;
|
|
6499
6510
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
6500
6511
|
SHOW_POPUP: string;
|
|
6501
6512
|
SHOW_PRIVACY_PREFERENCES: string;
|
|
@@ -6503,6 +6514,7 @@ export declare class Dictionaries {
|
|
|
6503
6514
|
SHOW_RESULT: string;
|
|
6504
6515
|
SHOW_SELECTED_EXCEPTIONS_ONLY: string;
|
|
6505
6516
|
SHOW_SELECTION: string;
|
|
6517
|
+
SHOW_SERVICE: string;
|
|
6506
6518
|
SHOW_SIGNED_IN: string;
|
|
6507
6519
|
SHOW_SOME: string;
|
|
6508
6520
|
SHOW_STATUSBAR: string;
|
|
@@ -6945,6 +6957,7 @@ export declare class Dictionaries {
|
|
|
6945
6957
|
STUDIO_CODE: string;
|
|
6946
6958
|
SIGN_DOCUMENTS: string;
|
|
6947
6959
|
SIGN_IN: string;
|
|
6960
|
+
SIGN_UP: string;
|
|
6948
6961
|
STUK_EENHEID: string;
|
|
6949
6962
|
STYLEGUIDE: string;
|
|
6950
6963
|
STYLE_GROUPING: string;
|
|
@@ -7109,6 +7122,7 @@ export declare class Dictionaries {
|
|
|
7109
7122
|
CREATE_NEW_WORK: string;
|
|
7110
7123
|
CREATE_OR_PICK_EXPORT: string;
|
|
7111
7124
|
CREATE_PAYMENT_BATCH: string;
|
|
7125
|
+
CREATE_PONTO_INTEGRATION: string;
|
|
7112
7126
|
CREATE_PREVENTIVE_ABSENCE_FILE: string;
|
|
7113
7127
|
CREATE_PURCHASE_ORDER: string;
|
|
7114
7128
|
CREATE_REFERENCE_FILE: string;
|
|
@@ -7546,6 +7560,7 @@ export declare class Dictionaries {
|
|
|
7546
7560
|
SALESORDER_ASC: string;
|
|
7547
7561
|
SALESORDER_DESC: string;
|
|
7548
7562
|
SALESORDER_DETAIL: string;
|
|
7563
|
+
SALES_TRANSACTION: string;
|
|
7549
7564
|
SALES_AMOUNT: string;
|
|
7550
7565
|
SALES_AMOUNT2: string;
|
|
7551
7566
|
SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
|
|
@@ -7675,6 +7690,7 @@ export declare class Dictionaries {
|
|
|
7675
7690
|
NOV_BTW_V: string;
|
|
7676
7691
|
NOW: string;
|
|
7677
7692
|
NOW_AVAILABLE: string;
|
|
7693
|
+
NO_ACCOUNT_YET: string;
|
|
7678
7694
|
NO_ACTION: string;
|
|
7679
7695
|
NO_ACTIVE_WORKFLOWS: string;
|
|
7680
7696
|
NO_ACTIVE_WORKFLOW_FOR_TASK: string;
|
|
@@ -7720,6 +7736,9 @@ export declare class Dictionaries {
|
|
|
7720
7736
|
NO_REPORT_DATA: string;
|
|
7721
7737
|
NO_RESULTS: string;
|
|
7722
7738
|
NO_RESULTS_FOUND: string;
|
|
7739
|
+
NO_SEARCH_RESULTS_HEADER: string;
|
|
7740
|
+
NO_SEARCH_RESULTS_TEXT: string;
|
|
7741
|
+
NO_SEARCH_RESULTS_CONTENT: string;
|
|
7723
7742
|
NO_RETOUR_POSSIBLE: string;
|
|
7724
7743
|
NO_RETURNS: string;
|
|
7725
7744
|
NO_RETURN_WAREHOUSE: string;
|
|
@@ -8203,6 +8222,7 @@ export declare class Dictionaries {
|
|
|
8203
8222
|
OPEN_RELATION_MANAGEMENT: string;
|
|
8204
8223
|
OPEN_SALES_OVERVIEW: string;
|
|
8205
8224
|
OPEN_SHOPPING_CART: string;
|
|
8225
|
+
OPEN_STOCK_DETAILS: string;
|
|
8206
8226
|
ORDER_CANNOT_BE_COMPLETELY_ACCEPTED: string;
|
|
8207
8227
|
ORDER_CODE: string;
|
|
8208
8228
|
UNKNOWN_ADDRESS_CHECK_IT: string;
|
|
@@ -8221,6 +8241,7 @@ export declare class Dictionaries {
|
|
|
8221
8241
|
UNTILL: string;
|
|
8222
8242
|
UPDATE_ALL_SEARCH_INDEXES: string;
|
|
8223
8243
|
UPDATE_ALL_SEARCH_INDEXES_FAST: string;
|
|
8244
|
+
UPDATE_ARTICLES: string;
|
|
8224
8245
|
UPDATE_ARTICLE_PRICE: string;
|
|
8225
8246
|
UPDATE_CONTAINER: string;
|
|
8226
8247
|
UPDATE_DATE: string;
|
|
@@ -8326,6 +8347,7 @@ export declare class Dictionaries {
|
|
|
8326
8347
|
WAREHOUSE_REQUIRED: string;
|
|
8327
8348
|
WARNING: string;
|
|
8328
8349
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
8350
|
+
PERCEPTIBLE_STORAGE: string;
|
|
8329
8351
|
PURCHASE_CONFIRMATION_IMPORT: string;
|
|
8330
8352
|
PURCHASE_DATE: string;
|
|
8331
8353
|
PURCHASE_DESCRIPTION: string;
|
|
@@ -10876,6 +10898,7 @@ export declare class Dictionaries {
|
|
|
10876
10898
|
ABILITY_TO_WORK: string;
|
|
10877
10899
|
ABOUT_DATA: string;
|
|
10878
10900
|
ABOUT_PREFIX: string;
|
|
10901
|
+
ABOUT_ORDER: string;
|
|
10879
10902
|
ABROAD_PERFORMANCE: string;
|
|
10880
10903
|
ABSENCE: string;
|
|
10881
10904
|
ABSENCEFILE: string;
|
|
@@ -11745,6 +11768,7 @@ export declare class Dictionaries {
|
|
|
11745
11768
|
ALLOWED_CHANGES: string;
|
|
11746
11769
|
ALLOW_OPEN_ABSENCEFILE: string;
|
|
11747
11770
|
ALLOW_PART_DELIVERY: string;
|
|
11771
|
+
ALLOW_PONTO_CONNECTION: string;
|
|
11748
11772
|
ALLOW_ROTATION: string;
|
|
11749
11773
|
ALLOW_SIDEBAR: string;
|
|
11750
11774
|
ALLOW_STORAGE_DECOUPLING: string;
|
|
@@ -12400,6 +12424,7 @@ export declare class Dictionaries {
|
|
|
12400
12424
|
CATALOG_EDITION: string;
|
|
12401
12425
|
CATALOG_FILE_NAME: string;
|
|
12402
12426
|
CATALOG_MANAGEMENT: string;
|
|
12427
|
+
CATALOG_TYPES: string;
|
|
12403
12428
|
CATEGORIES: string;
|
|
12404
12429
|
CATEGORY: string;
|
|
12405
12430
|
CATEGORY_NR: string;
|
|
@@ -12634,6 +12659,7 @@ export declare class Dictionaries {
|
|
|
12634
12659
|
COLLAPSE_ALL: string;
|
|
12635
12660
|
COLLATE_ORDERFORMS: string;
|
|
12636
12661
|
COLLECT: string;
|
|
12662
|
+
COLLECTION: string;
|
|
12637
12663
|
COLLECTION_CODE: string;
|
|
12638
12664
|
COLLECTION_CODE_CATEGORIES: string;
|
|
12639
12665
|
COLLECTION_LIST: string;
|
|
@@ -12646,6 +12672,7 @@ export declare class Dictionaries {
|
|
|
12646
12672
|
COLORS: string;
|
|
12647
12673
|
COLORS_SELECTED: string;
|
|
12648
12674
|
COLOR_DESC: string;
|
|
12675
|
+
COLOUR: string;
|
|
12649
12676
|
COLUMN: string;
|
|
12650
12677
|
COLUMNS: string;
|
|
12651
12678
|
COLUMN_BALANCE: string;
|
|
@@ -12901,6 +12928,7 @@ export declare class Dictionaries {
|
|
|
12901
12928
|
COPY_SALES_ORDER: string;
|
|
12902
12929
|
COPY_SALES_QUOTATION_ORDER: string;
|
|
12903
12930
|
COPY_SERVICE_ORDER: string;
|
|
12931
|
+
COPY_LINE: string;
|
|
12904
12932
|
COPY_LINK_TO_CLIPBOARD: string;
|
|
12905
12933
|
COPY_TO_CLIPBOARD: string;
|
|
12906
12934
|
COPY_TREE: string;
|
|
@@ -14815,6 +14843,7 @@ export declare class Dictionaries {
|
|
|
14815
14843
|
LOAD_ALL_NODES: string;
|
|
14816
14844
|
LOAD_DEFAULT_REPORTS: string;
|
|
14817
14845
|
LOAD_LINES: string;
|
|
14846
|
+
LOAD_PONTO_TRANSACTIONS: string;
|
|
14818
14847
|
LOAD_TRANSACTION: string;
|
|
14819
14848
|
LOC: string;
|
|
14820
14849
|
LOCAL_CASH_DRAWER_COMM_PORT: string;
|
|
@@ -14823,6 +14852,7 @@ export declare class Dictionaries {
|
|
|
14823
14852
|
LOCATIONS: string;
|
|
14824
14853
|
LOCATION_ADVICE: string;
|
|
14825
14854
|
LOCATION_FROM: string;
|
|
14855
|
+
LOCATION_INVENTORY: string;
|
|
14826
14856
|
LOCATION_IS_NOT_VALID_WITHIN_WAREHOUSE: string;
|
|
14827
14857
|
LOCATION_NOT_EDITABLE: string;
|
|
14828
14858
|
LOCATION_NOT_SAME_AS_ROW: string;
|
|
@@ -15173,6 +15203,7 @@ export declare class Dictionaries {
|
|
|
15173
15203
|
MESSAGE_KIND: string;
|
|
15174
15204
|
MESSAGE_LICENCE_EXPIRES_MONTH: string;
|
|
15175
15205
|
MESSAGE_LICENSE_EXPIRED: string;
|
|
15206
|
+
MESSAGE_LOGGED_CLIENT_FAILURE: string;
|
|
15176
15207
|
MESSAGE_LOGGED_IN: string;
|
|
15177
15208
|
MESSAGE_LOGIN_FAILURE2: string;
|
|
15178
15209
|
MESSAGE_LOGIN_FAILURE: string;
|
|
@@ -15379,6 +15410,7 @@ export declare class Dictionaries {
|
|
|
15379
15410
|
MY_ABSENCEFILES: string;
|
|
15380
15411
|
MY_CLIENTDATA: string;
|
|
15381
15412
|
MY_EMPLOYERS: string;
|
|
15413
|
+
MY_PLANNING: string;
|
|
15382
15414
|
MY_ORDERS: string;
|
|
15383
15415
|
MY_SERVICES: string;
|
|
15384
15416
|
MY_SERVICE_REQUESTS: string;
|
|
@@ -15480,6 +15512,7 @@ export declare class Dictionaries {
|
|
|
15480
15512
|
NEW_STATUS: string;
|
|
15481
15513
|
NEW_STOCK: string;
|
|
15482
15514
|
NEW_STOCK_LINE: string;
|
|
15515
|
+
CHANGE_STOCK_LINE: string;
|
|
15483
15516
|
NEW_STOREROOM: string;
|
|
15484
15517
|
NEW_TRANSACTION: string;
|
|
15485
15518
|
NEW_USER_ACCOUNT_MESSAGE: string;
|
|
@@ -15587,6 +15620,7 @@ export declare class Dictionaries {
|
|
|
15587
15620
|
NOVEMBER: string;
|
|
15588
15621
|
NOW: string;
|
|
15589
15622
|
NOW_AVAILABLE: string;
|
|
15623
|
+
NO_ACCOUNT_YET: string;
|
|
15590
15624
|
NO_ACTION: string;
|
|
15591
15625
|
NO_ACTIVE_WORKFLOWS: string;
|
|
15592
15626
|
NO_ACTIVE_WORKFLOW_FOR_TASK: string;
|
|
@@ -15691,6 +15725,9 @@ export declare class Dictionaries {
|
|
|
15691
15725
|
NO_REPORT_DATA: string;
|
|
15692
15726
|
NO_RESULTS: string;
|
|
15693
15727
|
NO_RESULTS_FOUND: string;
|
|
15728
|
+
NO_SEARCH_RESULTS_HEADER: string;
|
|
15729
|
+
NO_SEARCH_RESULTS_TEXT: string;
|
|
15730
|
+
NO_SEARCH_RESULTS_CONTENT: string;
|
|
15694
15731
|
NO_RETOUR_POSSIBLE: string;
|
|
15695
15732
|
NO_RETURNS: string;
|
|
15696
15733
|
NO_RETURN_WAREHOUSE: string;
|
|
@@ -15883,6 +15920,7 @@ export declare class Dictionaries {
|
|
|
15883
15920
|
OPEN_SALES_OVERVIEW: string;
|
|
15884
15921
|
OPEN_SHOPPING_CART: string;
|
|
15885
15922
|
OPEN_STOCK_DETAILS: string;
|
|
15923
|
+
PERCEPTIBLE_STORAGE: string;
|
|
15886
15924
|
OPEN_TASK: string;
|
|
15887
15925
|
OPEN_TEXT: string;
|
|
15888
15926
|
OPEN_WEBVIEW_FAILED_NO_EXTSOURCE: string;
|
|
@@ -16311,6 +16349,7 @@ export declare class Dictionaries {
|
|
|
16311
16349
|
PLAN_RESTRICTED: string;
|
|
16312
16350
|
PLAN_RESTRICT_USERS: string;
|
|
16313
16351
|
PLAN_YOUR_DELIVERY: string;
|
|
16352
|
+
PLEASE_ADD_AT_LEAST_ONE_ADDRESS: string;
|
|
16314
16353
|
PLEASE_ADJUST_SUPPLIER_ON_ARTICLE_LEVEL: string;
|
|
16315
16354
|
PLEASE_CLOSE_HTML_EDITOR: string;
|
|
16316
16355
|
PLEASE_CLOSE_MODULE_AND_TRY_AGAIN: string;
|
|
@@ -16757,6 +16796,7 @@ export declare class Dictionaries {
|
|
|
16757
16796
|
QR_CODE_SCANNER: string;
|
|
16758
16797
|
QR_SCAN: string;
|
|
16759
16798
|
QUANTITY: string;
|
|
16799
|
+
QUANTITY_ACCEPTED: string;
|
|
16760
16800
|
QUANTITY_CANNOT_BE_LESS_THAN_ALLOCATED: string;
|
|
16761
16801
|
QUANTITY_CANNOT_BE_LESS_THAN_DELIVERED: string;
|
|
16762
16802
|
QUANTITY_CANNOT_BE_LESS_THAN_INVOICED: string;
|
|
@@ -16848,6 +16888,8 @@ export declare class Dictionaries {
|
|
|
16848
16888
|
RECALCULATE_ALL_PRICES: string;
|
|
16849
16889
|
RECALCULATE_DELIVERYDATE_FOR_ALL_LINES: string;
|
|
16850
16890
|
RECALCULATE_DEPOSIT_AMOUNT: string;
|
|
16891
|
+
RECALCULATE_FOR_ALL_LOCATIONS: string;
|
|
16892
|
+
RECALCULATE_FOR_SINGLE_LOCATION: string;
|
|
16851
16893
|
RECALCULATE_TO_PAY_DOWN: string;
|
|
16852
16894
|
RECEIPT: string;
|
|
16853
16895
|
RECEIPT_DETAILS: string;
|
|
@@ -17077,6 +17119,7 @@ export declare class Dictionaries {
|
|
|
17077
17119
|
RESERVATION_PURCHASEORDER: string;
|
|
17078
17120
|
RESERVATION_STICKER: string;
|
|
17079
17121
|
RESERVED: string;
|
|
17122
|
+
RESET: string;
|
|
17080
17123
|
RESET_FILTER: string;
|
|
17081
17124
|
RESET_FILTERS: string;
|
|
17082
17125
|
RESET_GOOGLE_AUTHENTICATOR: string;
|
|
@@ -17237,6 +17280,7 @@ export declare class Dictionaries {
|
|
|
17237
17280
|
SALESORDER_ASC: string;
|
|
17238
17281
|
SALESORDER_DESC: string;
|
|
17239
17282
|
SALESORDER_DETAIL: string;
|
|
17283
|
+
SALES_TRANSACTION: string;
|
|
17240
17284
|
SALES_AMOUNT2: string;
|
|
17241
17285
|
SALES_AMOUNT: string;
|
|
17242
17286
|
SALES_AMOUNT_DECIM_NOT_COMPLIANT_W_SALES_UNIT: string;
|
|
@@ -17361,6 +17405,7 @@ export declare class Dictionaries {
|
|
|
17361
17405
|
SEARCH_MEMBER_NR: string;
|
|
17362
17406
|
SEARCH_PAYMENT_BATCH: string;
|
|
17363
17407
|
CREATE_PAYMENT_BATCH: string;
|
|
17408
|
+
CREATE_PONTO_INTEGRATION: string;
|
|
17364
17409
|
SEARCHING: string;
|
|
17365
17410
|
SEARCHRESULTS_FOR: string;
|
|
17366
17411
|
SEARCH_ADD_ARTICLE: string;
|
|
@@ -17726,6 +17771,7 @@ export declare class Dictionaries {
|
|
|
17726
17771
|
SHOW_LIST: string;
|
|
17727
17772
|
SHOW_MORE: string;
|
|
17728
17773
|
SHOW_ON_DASHBOARD: string;
|
|
17774
|
+
SHOW_ORDER: string;
|
|
17729
17775
|
SHOW_OPTION_PRICES: string;
|
|
17730
17776
|
SHOW_ORDERS_WITHOUT_LINES: string;
|
|
17731
17777
|
SHOW_OUTSTANDING_ENTRIES: string;
|
|
@@ -17735,6 +17781,7 @@ export declare class Dictionaries {
|
|
|
17735
17781
|
SHOW_RESULT: string;
|
|
17736
17782
|
SHOW_SELECTED_EXCEPTIONS_ONLY: string;
|
|
17737
17783
|
SHOW_SELECTION: string;
|
|
17784
|
+
SHOW_SERVICE: string;
|
|
17738
17785
|
SHOW_SIGNED_IN: string;
|
|
17739
17786
|
SHOW_SOME: string;
|
|
17740
17787
|
SHOW_STATUSBAR: string;
|
|
@@ -17773,6 +17820,7 @@ export declare class Dictionaries {
|
|
|
17773
17820
|
SIGN_DOCUMENT: string;
|
|
17774
17821
|
SIGN_DOCUMENTS: string;
|
|
17775
17822
|
SIGN_IN: string;
|
|
17823
|
+
SIGN_UP: string;
|
|
17776
17824
|
SILVER_MEDAL: string;
|
|
17777
17825
|
SINCE: string;
|
|
17778
17826
|
SINGLE: string;
|
|
@@ -18506,9 +18554,11 @@ export declare class Dictionaries {
|
|
|
18506
18554
|
UNTILL: string;
|
|
18507
18555
|
UPDATE_ALL_SEARCH_INDEXES: string;
|
|
18508
18556
|
UPDATE_ALL_SEARCH_INDEXES_FAST: string;
|
|
18557
|
+
UPDATE_ARTICLES: string;
|
|
18509
18558
|
UPDATE_ARTICLE_PRICE: string;
|
|
18510
18559
|
UPDATE_CONTAINER: string;
|
|
18511
18560
|
UPDATE_DATE: string;
|
|
18561
|
+
UPDATE_LOCATION_INVENTORY: string;
|
|
18512
18562
|
UPDATE_SEARCH_INDEXES: string;
|
|
18513
18563
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
18514
18564
|
UPDATE_STOCK: string;
|
|
@@ -18559,6 +18609,7 @@ export declare class Dictionaries {
|
|
|
18559
18609
|
USE_TIME_FROM_TIMER: string;
|
|
18560
18610
|
USE_VALUES: string;
|
|
18561
18611
|
USE_WEBVIEW_UI: string;
|
|
18612
|
+
USE_CATALOG_PAGE: string;
|
|
18562
18613
|
UWV_REGISTRATION_NUMBER: string;
|
|
18563
18614
|
VADAIN_DELETE_QUESTION: string;
|
|
18564
18615
|
VADAIN_NOT_ALLOWED_TO_DELETE: string;
|
package/package.json
CHANGED
package/public-api.d.ts
CHANGED
|
@@ -31,6 +31,7 @@ export * from './lib/components/task-creator/task-creator.module';
|
|
|
31
31
|
export * from './lib/components/role-email-selector/role-email-selector.component';
|
|
32
32
|
export * from './lib/components/role-email-selector/role-email-selector.module';
|
|
33
33
|
export * from './lib/service/shared.service';
|
|
34
|
+
export * from './lib/service/shared-event.service';
|
|
34
35
|
export * from './lib/translation/shared-components-translation.module';
|
|
35
36
|
export * from './lib/translation/shared-components-dictionary.service';
|
|
36
37
|
export * from './lib/enum/calendar-view.enum';
|