@colijnit/sharedcomponents 258.1.4 → 258.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 +44 -22
- package/bundles/colijnit-sharedcomponents.umd.js.map +1 -1
- package/colijnit-sharedcomponents.metadata.json +1 -1
- package/esm2015/lib/components/send-method-dialog/components/layout-selection/layout-selection.component.js +2 -3
- package/esm2015/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.js +11 -4
- package/esm2015/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.js +3 -3
- package/esm2015/lib/components/send-method-dialog/components/send-method-purchase/send-method-purchase.component.js +77 -77
- package/esm2015/lib/components/send-method-dialog/send-method-dialog.component.js +4 -5
- package/esm2015/lib/components/stock/components/order-tab/order-tab.component.js +44 -6
- package/esm2015/lib/components/stock/stock-tabs/stock-tabs.component.js +5 -2
- package/esm2015/lib/components/stock/stock.component.js +4 -1
- package/esm2015/lib/res/dictionary/dictionaries.js +5 -5
- package/fesm2015/colijnit-sharedcomponents.js +146 -97
- package/fesm2015/colijnit-sharedcomponents.js.map +1 -1
- package/lib/components/send-method-dialog/components/printer-selection/printer-selection.component.d.ts +2 -1
- package/lib/components/send-method-dialog/components/send-method-printer/send-method-printer.component.d.ts +1 -1
- package/lib/components/send-method-dialog/components/send-method-purchase/send-method-purchase.component.d.ts +1 -1
- package/lib/components/send-method-dialog/send-method-dialog.component.d.ts +1 -1
- package/lib/components/stock/components/order-tab/order-tab.component.d.ts +3 -0
- package/lib/components/stock/stock-tabs/stock-tabs.component.d.ts +1 -0
- package/lib/components/stock/stock.component.d.ts +1 -0
- package/lib/components/stock/style/_layout.scss +37 -1
- package/lib/res/dictionary/dictionaries.d.ts +77 -0
- package/package.json +1 -1
- package/358.645812766f7a400d0d38.js +0 -1
- package/3rdpartylicenses.txt +0 -2222
- package/863.171601b3075f2e971ba6.js +0 -1
- package/977.bd6291f9ee6f6ddf91f1.js +0 -1
- package/favicon.ico +0 -0
- package/index.html +0 -12
- package/main.aa2aefc9b07fe8edafae.js +0 -1
- package/polyfills.907fe9d1887c5de17993.js +0 -1
- package/runtime.4c41e3e4c4a9d84185f4.js +0 -1
- package/styles.706c0dbdf70ab780f209.css +0 -1
|
@@ -9,8 +9,9 @@ export declare class PrinterSelectionComponent implements OnInit {
|
|
|
9
9
|
iconService: IconCacheService;
|
|
10
10
|
private _service;
|
|
11
11
|
readonly icons: typeof Icon;
|
|
12
|
+
private _defaultPrinter;
|
|
12
13
|
printers: Printer[];
|
|
13
|
-
|
|
14
|
+
set defaultPrinter(printer: Printer);
|
|
14
15
|
showClass(): boolean;
|
|
15
16
|
showPrinterList: boolean;
|
|
16
17
|
printerModel: Printer;
|
|
@@ -10,7 +10,7 @@ export declare class SendMethodPrinterComponent {
|
|
|
10
10
|
iconCacheService: IconCacheService;
|
|
11
11
|
showClass(): boolean;
|
|
12
12
|
printerList: Printer[];
|
|
13
|
-
|
|
13
|
+
defaultPrinter: Printer;
|
|
14
14
|
layouts: ReportLayoutSelectionPrint[];
|
|
15
15
|
isPrinterLayoutsEnabled: boolean;
|
|
16
16
|
isAdditionalDocEnabled: boolean;
|
|
@@ -9,9 +9,9 @@ interface OverruleOptions {
|
|
|
9
9
|
}
|
|
10
10
|
export declare class SendMethodPurchaseComponent implements OnInit {
|
|
11
11
|
sendMethodService: SendMethodService;
|
|
12
|
-
defaultPrinterName: string;
|
|
13
12
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
14
13
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
14
|
+
defaultPrinter: Printer;
|
|
15
15
|
printerList: Printer[];
|
|
16
16
|
pdfDoc: any;
|
|
17
17
|
emailUnsignedPossible: boolean;
|
|
@@ -32,7 +32,7 @@ export declare class SendMethodDialogComponent implements OnInit, OnDestroy {
|
|
|
32
32
|
reportingDocumentPdfRequest: ReportingDocumentPdfBaseRequest;
|
|
33
33
|
emailLayouts: ReportLayoutSelectionEmail[];
|
|
34
34
|
printLayouts: ReportLayoutSelectionPrint[];
|
|
35
|
-
|
|
35
|
+
defaultPrinter: Printer;
|
|
36
36
|
headerTitle: string;
|
|
37
37
|
emailAddresses: string[];
|
|
38
38
|
defaultSendMethod: string;
|
|
@@ -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
|
|
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;
|
|
@@ -3889,6 +3904,7 @@ export declare class Dictionaries {
|
|
|
3889
3904
|
INVOICE_AMOUNT_CUSTOMER: string;
|
|
3890
3905
|
INVOICE_BLOCKED: string;
|
|
3891
3906
|
INVOICE_CHECK: string;
|
|
3907
|
+
INVOICE_CHECK2: string;
|
|
3892
3908
|
INVOICE_DATA: string;
|
|
3893
3909
|
INVOICE_DATE: string;
|
|
3894
3910
|
INVOICE_FREQUENCY: string;
|
|
@@ -4823,6 +4839,7 @@ export declare class Dictionaries {
|
|
|
4823
4839
|
STOCKTAGSWINDOW: string;
|
|
4824
4840
|
STOCK_ADJUSTMENTS: string;
|
|
4825
4841
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
4842
|
+
STOCK_COMPARISON: string;
|
|
4826
4843
|
STOCK_DATE: string;
|
|
4827
4844
|
STOCK_DETAILS: string;
|
|
4828
4845
|
STOCK_DIFFERENCES: string;
|
|
@@ -4840,6 +4857,7 @@ export declare class Dictionaries {
|
|
|
4840
4857
|
STOCK_NOT_EDITABLE: string;
|
|
4841
4858
|
STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
|
|
4842
4859
|
STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
|
|
4860
|
+
STOCK_OVERVIEW: string;
|
|
4843
4861
|
STOCK_PARAMETERS: string;
|
|
4844
4862
|
STOCK_REPLENISHMENT: string;
|
|
4845
4863
|
STOCK_REMARK: string;
|
|
@@ -5242,6 +5260,7 @@ export declare class Dictionaries {
|
|
|
5242
5260
|
BOOKING_SEARCH_GENERAL_INFO: string;
|
|
5243
5261
|
BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
|
|
5244
5262
|
BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
|
|
5263
|
+
BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
|
|
5245
5264
|
BOOKING_SELECTION: string;
|
|
5246
5265
|
BOOK_AMOUNT: string;
|
|
5247
5266
|
BOOK_DATA: string;
|
|
@@ -5658,6 +5677,7 @@ export declare class Dictionaries {
|
|
|
5658
5677
|
SELECT_DRAWER: string;
|
|
5659
5678
|
SELECT_EMAIL_ADDRESS: string;
|
|
5660
5679
|
SELECT_EMPLOYER: string;
|
|
5680
|
+
SELECT_LINE_FIRST: string;
|
|
5661
5681
|
SELECT_END_DATE: string;
|
|
5662
5682
|
SELECT_EXISTING_CUSTOMER: string;
|
|
5663
5683
|
SELECT_FOR_HAS_BEEN_PICKED: string;
|
|
@@ -6443,6 +6463,7 @@ export declare class Dictionaries {
|
|
|
6443
6463
|
CANNOT_DELETE_REMOTE_ARTICLE: string;
|
|
6444
6464
|
CANNOT_DISPLAY_TEXT: string;
|
|
6445
6465
|
CANNOT_KILL_OWN_SESSION: string;
|
|
6466
|
+
CONTRA_LEDGER_ACCOUNTS: string;
|
|
6446
6467
|
SEO_TITLES: string;
|
|
6447
6468
|
SEO_URLS: string;
|
|
6448
6469
|
SEPTEMBER: string;
|
|
@@ -6693,6 +6714,11 @@ export declare class Dictionaries {
|
|
|
6693
6714
|
VAT_HOME_CUR: string;
|
|
6694
6715
|
VAT_ID: string;
|
|
6695
6716
|
VAT_KEYS: string;
|
|
6717
|
+
VAT_CODE_EXTERNAL: string;
|
|
6718
|
+
VAT_KIND: string;
|
|
6719
|
+
VAT_START_DATE: string;
|
|
6720
|
+
VAT_END_DATE: string;
|
|
6721
|
+
VAT_PERCENTAGE_HISTORY: string;
|
|
6696
6722
|
EXCEPTION_TEXT_12_4: string;
|
|
6697
6723
|
EXCEPTION_TEXT_2_1: string;
|
|
6698
6724
|
EXCEPTION_TEXT_2_2: string;
|
|
@@ -6985,6 +7011,7 @@ export declare class Dictionaries {
|
|
|
6985
7011
|
STYLE_GROUPING: string;
|
|
6986
7012
|
SUBJECT: string;
|
|
6987
7013
|
SUBMIT: string;
|
|
7014
|
+
SUBMIT_A_NEW_VOUCHER_CODE: string;
|
|
6988
7015
|
SUBSCRIBE: string;
|
|
6989
7016
|
SUBTOTAL: string;
|
|
6990
7017
|
SUBTOTAL_ACCOUNT: string;
|
|
@@ -7074,6 +7101,7 @@ export declare class Dictionaries {
|
|
|
7074
7101
|
ARTICLE_IMAGE: string;
|
|
7075
7102
|
ARTICLE_INFO: string;
|
|
7076
7103
|
ARTICLE_ORDER_DETAILS: string;
|
|
7104
|
+
ARTICLE_OPTION_LIBRARY: string;
|
|
7077
7105
|
MARKED: string;
|
|
7078
7106
|
MARKETING: string;
|
|
7079
7107
|
MARKETING_CODE: string;
|
|
@@ -7654,6 +7682,7 @@ export declare class Dictionaries {
|
|
|
7654
7682
|
FIRST_REC_DATE: string;
|
|
7655
7683
|
FIRST_SICK_DAY: string;
|
|
7656
7684
|
FRIDAY_ABBREVATION: string;
|
|
7685
|
+
FORMAT: string;
|
|
7657
7686
|
FROM: string;
|
|
7658
7687
|
FROM1: string;
|
|
7659
7688
|
FROM_BOOKING_DATE: string;
|
|
@@ -8274,6 +8303,8 @@ export declare class Dictionaries {
|
|
|
8274
8303
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
8275
8304
|
UPDATE_STOCK: string;
|
|
8276
8305
|
UPLOAD: string;
|
|
8306
|
+
UPLOADING: string;
|
|
8307
|
+
UPLOADED: string;
|
|
8277
8308
|
UPLOAD_FILE: string;
|
|
8278
8309
|
UPLOAD_IMAGE: string;
|
|
8279
8310
|
UPLOAD_IMAGE_MSG: string;
|
|
@@ -8336,10 +8367,12 @@ export declare class Dictionaries {
|
|
|
8336
8367
|
VOUCHERS: string;
|
|
8337
8368
|
VOUCHER_AMOUNT: string;
|
|
8338
8369
|
VOUCHER_CODE: string;
|
|
8370
|
+
VOUCHER_CODE_ALREADY_EXISTS: string;
|
|
8339
8371
|
VOUCHER_CODE_EXISTS: string;
|
|
8340
8372
|
VOUCHER_CODE_INFO: string;
|
|
8341
8373
|
VOUCHER_DEACTIVE: string;
|
|
8342
8374
|
VOUCHER_EXPIRED: string;
|
|
8375
|
+
VOUCHER_INFORMATION: string;
|
|
8343
8376
|
VOUCHER_MAX_USED: string;
|
|
8344
8377
|
VOUCHER_NO_BALANCE: string;
|
|
8345
8378
|
VOUCHER_PAYMENTS: string;
|
|
@@ -8369,6 +8402,7 @@ export declare class Dictionaries {
|
|
|
8369
8402
|
WAREHOUSE_NOT_IN_BRANCH: string;
|
|
8370
8403
|
WAREHOUSE_NUMBER: string;
|
|
8371
8404
|
WAREHOUSE_RECEIPT: string;
|
|
8405
|
+
WAREHOUSE_TRANSFERS: string;
|
|
8372
8406
|
WAREHOUSE_REQUIRED: string;
|
|
8373
8407
|
WARNING: string;
|
|
8374
8408
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
@@ -8495,6 +8529,7 @@ export declare class Dictionaries {
|
|
|
8495
8529
|
INPUT: string;
|
|
8496
8530
|
INPUT_DISCOUNT: string;
|
|
8497
8531
|
INPUT_NEW_LINE: string;
|
|
8532
|
+
INPUT_VOUCHER_CODE: string;
|
|
8498
8533
|
INSERT_NEW_DRAWER: string;
|
|
8499
8534
|
INSERT_NEW_FORM: string;
|
|
8500
8535
|
INSERT_NEW_RELATION: string;
|
|
@@ -8575,6 +8610,7 @@ export declare class Dictionaries {
|
|
|
8575
8610
|
IONE_WORKABILITY: string;
|
|
8576
8611
|
IP_ADDRESS: string;
|
|
8577
8612
|
IS: string;
|
|
8613
|
+
IS_ACTIVE: string;
|
|
8578
8614
|
ISO_CODE: string;
|
|
8579
8615
|
ISSUED_BY: string;
|
|
8580
8616
|
ISSUED_IN_TRANSCTION: string;
|
|
@@ -9035,6 +9071,7 @@ export declare class Dictionaries {
|
|
|
9035
9071
|
LINE_TOTAL: string;
|
|
9036
9072
|
LINE_TOTAL_INCL_VAT: string;
|
|
9037
9073
|
LINE_TYPE: string;
|
|
9074
|
+
LINKED_ADMINISTRATIONS: string;
|
|
9038
9075
|
LINKED_ARTICLES: string;
|
|
9039
9076
|
LINKED_ARTICLE_DOUBLE: string;
|
|
9040
9077
|
LINKED_DEPARTMENTS: string;
|
|
@@ -10440,6 +10477,9 @@ export declare class Dictionaries {
|
|
|
10440
10477
|
SCHEMA_NAME: string;
|
|
10441
10478
|
SCREEN: string;
|
|
10442
10479
|
SEARCH: string;
|
|
10480
|
+
QUANTITY: string;
|
|
10481
|
+
SHOW_ORDER: string;
|
|
10482
|
+
NO_IMAGE: string;
|
|
10443
10483
|
CURRENCY_CODE: string;
|
|
10444
10484
|
CURRENCY_UNIT: string;
|
|
10445
10485
|
CURRENT: string;
|
|
@@ -10907,6 +10947,12 @@ export declare class Dictionaries {
|
|
|
10907
10947
|
ORDER_INFO: string;
|
|
10908
10948
|
ORDER_KIND: string;
|
|
10909
10949
|
PRODUCT_OPEN_ACTIVITIES: string;
|
|
10950
|
+
TOTAL_GROSS: string;
|
|
10951
|
+
DELIVERY_COSTS: string;
|
|
10952
|
+
PASSWORD_FORGOTTEN_TEXT: string;
|
|
10953
|
+
PASSWORD_FORGOTTEN_TEXT_EXTRA: string;
|
|
10954
|
+
EMAIL_OR_USERNAME: string;
|
|
10955
|
+
LOGIN: string;
|
|
10910
10956
|
};
|
|
10911
10957
|
text_nl: {
|
|
10912
10958
|
"0_RESULTS_FOUND": string;
|
|
@@ -12040,6 +12086,7 @@ export declare class Dictionaries {
|
|
|
12040
12086
|
ARTICLE_NUMBER: string;
|
|
12041
12087
|
ARTICLE_NUMBER_SUPPLIER: string;
|
|
12042
12088
|
ARTICLE_ORDER_DETAILS: string;
|
|
12089
|
+
ARTICLE_OPTION_LIBRARY: string;
|
|
12043
12090
|
ARTICLE_PRODUCT_LIST: string;
|
|
12044
12091
|
ARTICLE_SEARCH: string;
|
|
12045
12092
|
ARTICLE_SEARCH_GENERAL_INFO: string;
|
|
@@ -12252,6 +12299,7 @@ export declare class Dictionaries {
|
|
|
12252
12299
|
BOOKING_SEARCH_GENERAL_INFO_SUPPLIER: string;
|
|
12253
12300
|
BOOKING_SEARCH_GENERAL_INFO_CUSTOMER: string;
|
|
12254
12301
|
BOOKING_SEARCH_GENERAL_INFO: string;
|
|
12302
|
+
BOOKING_SEARCH_GENERAL_INFO_INVOICE_CHECK: string;
|
|
12255
12303
|
BOOKING_SELECTION: string;
|
|
12256
12304
|
BOOK_AMOUNT: string;
|
|
12257
12305
|
BOOK_DATA: string;
|
|
@@ -12291,6 +12339,11 @@ export declare class Dictionaries {
|
|
|
12291
12339
|
BUILD_SELF: string;
|
|
12292
12340
|
BULK: string;
|
|
12293
12341
|
BULKLOCATION: string;
|
|
12342
|
+
BULK_3D_UPLOAD: string;
|
|
12343
|
+
BULK_3D_REF: string;
|
|
12344
|
+
BULK_3D_REF_DESC: string;
|
|
12345
|
+
BULK_3D_ZIP: string;
|
|
12346
|
+
BULK_3D_ZIP_DESC: string;
|
|
12294
12347
|
BUSINESS_ADDRESS: string;
|
|
12295
12348
|
BUSINESS_ADDRESS_ADDITION: string;
|
|
12296
12349
|
BUSINESS_ADDRESS_ADDITION_NUMBER: string;
|
|
@@ -12808,6 +12861,7 @@ export declare class Dictionaries {
|
|
|
12808
12861
|
CONFIGURATION_OVERVIEW: string;
|
|
12809
12862
|
CONFIGURATION_PRESET: string;
|
|
12810
12863
|
CONFIGURATION_YOURS: string;
|
|
12864
|
+
CONFIGURATION_LIBRARY: string;
|
|
12811
12865
|
CONFIGURATOR_TEST: string;
|
|
12812
12866
|
CONFIGURE: string;
|
|
12813
12867
|
CONFIGURE_ARTICLE: string;
|
|
@@ -12938,6 +12992,7 @@ export declare class Dictionaries {
|
|
|
12938
12992
|
CONTRACT_TYPE: string;
|
|
12939
12993
|
CONTRA_ACCOUNT: string;
|
|
12940
12994
|
CONTRA_LEDGERACCOUNT_DOWNPAYMENT: string;
|
|
12995
|
+
CONTRA_LEDGER_ACCOUNTS: string;
|
|
12941
12996
|
CONTRA_VAT: string;
|
|
12942
12997
|
CONTRIBUTION_EMPLOYER: string;
|
|
12943
12998
|
CONTROLLED: string;
|
|
@@ -13273,6 +13328,7 @@ export declare class Dictionaries {
|
|
|
13273
13328
|
DEFAULT: string;
|
|
13274
13329
|
DEFAULTS: string;
|
|
13275
13330
|
DEFAULT_ANSWER: string;
|
|
13331
|
+
DEFAULT_ARTICLE: string;
|
|
13276
13332
|
DEFAULT_ARTICLE_GROUP: string;
|
|
13277
13333
|
DEFAULT_AVAILABLE: string;
|
|
13278
13334
|
DEFAULT_CHOICE: string;
|
|
@@ -14206,6 +14262,7 @@ export declare class Dictionaries {
|
|
|
14206
14262
|
FREQUENT_ABSENCE: string;
|
|
14207
14263
|
FRIDAY: string;
|
|
14208
14264
|
FRIDAY_ABBREVATION: string;
|
|
14265
|
+
FORMAT: string;
|
|
14209
14266
|
FROM1: string;
|
|
14210
14267
|
FROM: string;
|
|
14211
14268
|
FROM_BOOKING_DATE: string;
|
|
@@ -14535,6 +14592,7 @@ export declare class Dictionaries {
|
|
|
14535
14592
|
INPUT: string;
|
|
14536
14593
|
INPUT_DISCOUNT: string;
|
|
14537
14594
|
INPUT_NEW_LINE: string;
|
|
14595
|
+
INPUT_VOUCHER_CODE: string;
|
|
14538
14596
|
INSERT_NEW_DRAWER: string;
|
|
14539
14597
|
INSERT_NEW_FORM: string;
|
|
14540
14598
|
INSERT_NEW_RELATION: string;
|
|
@@ -14626,6 +14684,7 @@ export declare class Dictionaries {
|
|
|
14626
14684
|
INVOICE_AMOUNT_CUSTOMER: string;
|
|
14627
14685
|
INVOICE_BLOCKED: string;
|
|
14628
14686
|
INVOICE_CHECK: string;
|
|
14687
|
+
INVOICE_CHECK2: string;
|
|
14629
14688
|
INVOICE_DATA: string;
|
|
14630
14689
|
INVOICE_DATE: string;
|
|
14631
14690
|
INVOICE_FREQUENCY: string;
|
|
@@ -14677,6 +14736,7 @@ export declare class Dictionaries {
|
|
|
14677
14736
|
ISO_CODE: string;
|
|
14678
14737
|
ISSUED_BY: string;
|
|
14679
14738
|
ISSUED_IN_TRANSCTION: string;
|
|
14739
|
+
IS_ACTIVE: string;
|
|
14680
14740
|
IS_CONTACT_OF: string;
|
|
14681
14741
|
IS_FIXED_SCHEDULE: string;
|
|
14682
14742
|
IS_GIFTCARD: string;
|
|
@@ -14691,6 +14751,7 @@ export declare class Dictionaries {
|
|
|
14691
14751
|
IS_WEEKENDSHIFTS: string;
|
|
14692
14752
|
ITEM: string;
|
|
14693
14753
|
ITEM_ACCEPTED: string;
|
|
14754
|
+
ITEM_NOT_ACCEPTED: string;
|
|
14694
14755
|
ITEM_ACCEPTED_NOT_PROCESSED: string;
|
|
14695
14756
|
IWO: string;
|
|
14696
14757
|
JANUARY: string;
|
|
@@ -14858,6 +14919,7 @@ export declare class Dictionaries {
|
|
|
14858
14919
|
LINE_TOTAL: string;
|
|
14859
14920
|
LINE_TOTAL_INCL_VAT: string;
|
|
14860
14921
|
LINE_TYPE: string;
|
|
14922
|
+
LINKED_ADMINISTRATIONS: string;
|
|
14861
14923
|
LINKED_ARTICLES: string;
|
|
14862
14924
|
LINKED_ARTICLE_DOUBLE: string;
|
|
14863
14925
|
LINKED_DEPARTMENTS: string;
|
|
@@ -16581,6 +16643,7 @@ export declare class Dictionaries {
|
|
|
16581
16643
|
PRICE_TAG_IMAGE: string;
|
|
16582
16644
|
PRICE_TAG_INTER_BRANCH: string;
|
|
16583
16645
|
PRICE_TAG_STICKERS: string;
|
|
16646
|
+
PRINT_PRICE_TAG_STICKERS: string;
|
|
16584
16647
|
PRICE_TAG_TEXT: string;
|
|
16585
16648
|
PRICE_TESTER: string;
|
|
16586
16649
|
PRICE_TO: string;
|
|
@@ -17588,6 +17651,7 @@ export declare class Dictionaries {
|
|
|
17588
17651
|
SELECT_ACCOUNT_MANAGER: string;
|
|
17589
17652
|
SELECT_CONSULTANT: string;
|
|
17590
17653
|
SELECT_EMPLOYER: string;
|
|
17654
|
+
SELECT_LINE_FIRST: string;
|
|
17591
17655
|
SELECT_MAILING_CODE: string;
|
|
17592
17656
|
SELECT_CASE_MANAGER: string;
|
|
17593
17657
|
SELECT_MEDICAL_OFFICER: string;
|
|
@@ -18064,6 +18128,7 @@ export declare class Dictionaries {
|
|
|
18064
18128
|
STOCK_ADJUSTMENTS: string;
|
|
18065
18129
|
STOCK_AVAILABLE_CHANGE_WAREHOUSE_OR_COMMISSIONCODE: string;
|
|
18066
18130
|
STOCK_BELOW_ZERO_TEXT: string;
|
|
18131
|
+
STOCK_COMPARISON: string;
|
|
18067
18132
|
STOCK_DATE: string;
|
|
18068
18133
|
STOCK_DETAILS: string;
|
|
18069
18134
|
STOCK_DIFFERENCES: string;
|
|
@@ -18081,6 +18146,7 @@ export declare class Dictionaries {
|
|
|
18081
18146
|
STOCK_NOT_EDITABLE: string;
|
|
18082
18147
|
STOCK_NOT_EDITABLE_BECAUSE_OF_LOCKED_STOCKS: string;
|
|
18083
18148
|
STOCK_NOT_EDITABLE_BECAUSE_OF_TRANSACTIONS: string;
|
|
18149
|
+
STOCK_OVERVIEW: string;
|
|
18084
18150
|
STOCK_PARAMETERS: string;
|
|
18085
18151
|
STOCK_REPLENISHMENT: string;
|
|
18086
18152
|
STOCK_REMARK: string;
|
|
@@ -18132,6 +18198,7 @@ export declare class Dictionaries {
|
|
|
18132
18198
|
STYLE_GROUPING: string;
|
|
18133
18199
|
SUBJECT: string;
|
|
18134
18200
|
SUBMIT: string;
|
|
18201
|
+
SUBMIT_A_NEW_VOUCHER_CODE: string;
|
|
18135
18202
|
SUBSCRIBE: string;
|
|
18136
18203
|
SUBTOTAL: string;
|
|
18137
18204
|
SUBTOTAL_ACCOUNT: string;
|
|
@@ -18643,6 +18710,8 @@ export declare class Dictionaries {
|
|
|
18643
18710
|
UPDATE_SINGLE_SEARCH_INDEX: string;
|
|
18644
18711
|
UPDATE_STOCK: string;
|
|
18645
18712
|
UPLOAD: string;
|
|
18713
|
+
UPLOADING: string;
|
|
18714
|
+
UPLOADED: string;
|
|
18646
18715
|
UPLOAD_FILE: string;
|
|
18647
18716
|
UPLOAD_IMAGE: string;
|
|
18648
18717
|
UPLOAD_IMAGE_MSG: string;
|
|
@@ -18737,6 +18806,11 @@ export declare class Dictionaries {
|
|
|
18737
18806
|
VAT_PAYMENT: string;
|
|
18738
18807
|
VAT_PERCENTAGE2: string;
|
|
18739
18808
|
VAT_PERCENTAGE: string;
|
|
18809
|
+
VAT_CODE_EXTERNAL: string;
|
|
18810
|
+
VAT_PERCENTAGE_HISTORY: string;
|
|
18811
|
+
VAT_KIND: string;
|
|
18812
|
+
VAT_START_DATE: string;
|
|
18813
|
+
VAT_END_DATE: string;
|
|
18740
18814
|
VAT_PURCHASE: string;
|
|
18741
18815
|
VAT_RECEIVABLE: string;
|
|
18742
18816
|
VAT_SALES: string;
|
|
@@ -18780,9 +18854,11 @@ export declare class Dictionaries {
|
|
|
18780
18854
|
VOUCHER_AMOUNT: string;
|
|
18781
18855
|
VOUCHER_CAN_ONLY_BE_USED_ONCE: string;
|
|
18782
18856
|
VOUCHER_CODE: string;
|
|
18857
|
+
VOUCHER_CODE_ALREADY_EXISTS: string;
|
|
18783
18858
|
VOUCHER_CODE_EXISTS: string;
|
|
18784
18859
|
VOUCHER_CODE_INFO: string;
|
|
18785
18860
|
VOUCHER_EXPIRED: string;
|
|
18861
|
+
VOUCHER_INFORMATION: string;
|
|
18786
18862
|
VOUCHER_MAX_USED: string;
|
|
18787
18863
|
VOUCHER_NO_BALANCE: string;
|
|
18788
18864
|
VOUCHER_NOT_INVOICED: string;
|
|
@@ -18815,6 +18891,7 @@ export declare class Dictionaries {
|
|
|
18815
18891
|
WAREHOUSE_RECEIPT: string;
|
|
18816
18892
|
WAREHOUSE_REQUIRED: string;
|
|
18817
18893
|
WAREHOUSE_ROWS: string;
|
|
18894
|
+
WAREHOUSE_TRANSFERS: string;
|
|
18818
18895
|
WARNING: string;
|
|
18819
18896
|
WARNING_MESSAGE_DELETE_NOTIFICATION_LINKS: string;
|
|
18820
18897
|
WARNING_MESSAGE_DELETE_STANDARD_LIST: string;
|
package/package.json
CHANGED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
(self.webpackChunk_colijnit_sharedcomponents=self.webpackChunk_colijnit_sharedcomponents||[]).push([[358],{23358:function(ht){ht.exports=function(){"use strict";function w(a){return(w="function"==typeof Symbol&&"symbol"==typeof Symbol.iterator?function(n){return typeof n}:function(n){return n&&"function"==typeof Symbol&&n.constructor===Symbol&&n!==Symbol.prototype?"symbol":typeof n})(a)}function j(a,n){return(j=Object.setPrototypeOf||function(s,c){return s.__proto__=c,s})(a,n)}function Et(){if("undefined"==typeof Reflect||!Reflect.construct||Reflect.construct.sham)return!1;if("function"==typeof Proxy)return!0;try{return Boolean.prototype.valueOf.call(Reflect.construct(Boolean,[],function(){})),!0}catch(a){return!1}}function Z(a,n,o){return(Z=Et()?Reflect.construct:function(c,b,y){var D=[null];D.push.apply(D,b);var X=new(Function.bind.apply(c,D));return y&&j(X,y.prototype),X}).apply(null,arguments)}function R(a){return function(a){if(Array.isArray(a))return ce(a)}(a)||function(a){if("undefined"!=typeof Symbol&&null!=a[Symbol.iterator]||null!=a["@@iterator"])return Array.from(a)}(a)||function(a,n){if(a){if("string"==typeof a)return ce(a,n);var o=Object.prototype.toString.call(a).slice(8,-1);if("Object"===o&&a.constructor&&(o=a.constructor.name),"Map"===o||"Set"===o)return Array.from(a);if("Arguments"===o||/^(?:Ui|I)nt(?:8|16|32)(?:Clamped)?Array$/.test(o))return ce(a,n)}}(a)||function(){throw new TypeError("Invalid attempt to spread non-iterable instance.\nIn order to be iterable, non-array objects must have a [Symbol.iterator]() method.")}()}function ce(a,n){(null==n||n>a.length)&&(n=a.length);for(var o=0,s=new Array(n);o<n;o++)s[o]=a[o];return s}var bt=Object.hasOwnProperty,ze=Object.setPrototypeOf,Ot=Object.isFrozen,Rt=Object.getPrototypeOf,Lt=Object.getOwnPropertyDescriptor,E=Object.freeze,g=Object.seal,Mt=Object.create,Ge="undefined"!=typeof Reflect&&Reflect,J=Ge.apply,me=Ge.construct;J||(J=function(n,o,s){return n.apply(o,s)}),E||(E=function(n){return n}),g||(g=function(n){return n}),me||(me=function(n,o){return Z(n,R(o))});var a,Dt=S(Array.prototype.forEach),We=S(Array.prototype.pop),Y=S(Array.prototype.push),Q=S(String.prototype.toLowerCase),pe=S(String.prototype.toString),Be=S(String.prototype.match),L=S(String.prototype.replace),Nt=S(String.prototype.indexOf),wt=S(String.prototype.trim),_=S(RegExp.prototype.test),de=(a=TypeError,function(){for(var n=arguments.length,o=new Array(n),s=0;s<n;s++)o[s]=arguments[s];return me(a,o)});function S(a){return function(n){for(var o=arguments.length,s=new Array(o>1?o-1:0),c=1;c<o;c++)s[c-1]=arguments[c];return J(a,n,s)}}function l(a,n,o){var s;o=null!==(s=o)&&void 0!==s?s:Q,ze&&ze(a,null);for(var c=n.length;c--;){var b=n[c];if("string"==typeof b){var y=o(b);y!==b&&(Ot(n)||(n[c]=y),b=y)}a[b]=!0}return a}function x(a){var o,n=Mt(null);for(o in a)!0===J(bt,a,[o])&&(n[o]=a[o]);return n}function ee(a,n){for(;null!==a;){var o=Lt(a,n);if(o){if(o.get)return S(o.get);if("function"==typeof o.value)return S(o.value)}a=Rt(a)}return function(c){return console.warn("fallback value for",c),null}}var $e=E(["a","abbr","acronym","address","area","article","aside","audio","b","bdi","bdo","big","blink","blockquote","body","br","button","canvas","caption","center","cite","code","col","colgroup","content","data","datalist","dd","decorator","del","details","dfn","dialog","dir","div","dl","dt","element","em","fieldset","figcaption","figure","font","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","img","input","ins","kbd","label","legend","li","main","map","mark","marquee","menu","menuitem","meter","nav","nobr","ol","optgroup","option","output","p","picture","pre","progress","q","rp","rt","ruby","s","samp","section","select","shadow","small","source","spacer","span","strike","strong","style","sub","summary","sup","table","tbody","td","template","textarea","tfoot","th","thead","time","tr","track","tt","u","ul","var","video","wbr"]),Te=E(["svg","a","altglyph","altglyphdef","altglyphitem","animatecolor","animatemotion","animatetransform","circle","clippath","defs","desc","ellipse","filter","font","g","glyph","glyphref","hkern","image","line","lineargradient","marker","mask","metadata","mpath","path","pattern","polygon","polyline","radialgradient","rect","stop","style","switch","symbol","text","textpath","title","tref","tspan","view","vkern"]),_e=E(["feBlend","feColorMatrix","feComponentTransfer","feComposite","feConvolveMatrix","feDiffuseLighting","feDisplacementMap","feDistantLight","feFlood","feFuncA","feFuncB","feFuncG","feFuncR","feGaussianBlur","feImage","feMerge","feMergeNode","feMorphology","feOffset","fePointLight","feSpecularLighting","feSpotLight","feTile","feTurbulence"]),It=E(["animate","color-profile","cursor","discard","fedropshadow","font-face","font-face-format","font-face-name","font-face-src","font-face-uri","foreignobject","hatch","hatchpath","mesh","meshgradient","meshpatch","meshrow","missing-glyph","script","set","solidcolor","unknown","use"]),ve=E(["math","menclose","merror","mfenced","mfrac","mglyph","mi","mlabeledtr","mmultiscripts","mn","mo","mover","mpadded","mphantom","mroot","mrow","ms","mspace","msqrt","mstyle","msub","msup","msubsup","mtable","mtd","mtext","mtr","munder","munderover"]),xt=E(["maction","maligngroup","malignmark","mlongdiv","mscarries","mscarry","msgroup","mstack","msline","msrow","semantics","annotation","annotation-xml","mprescripts","none"]),je=E(["#text"]),Ye=E(["accept","action","align","alt","autocapitalize","autocomplete","autopictureinpicture","autoplay","background","bgcolor","border","capture","cellpadding","cellspacing","checked","cite","class","clear","color","cols","colspan","controls","controlslist","coords","crossorigin","datetime","decoding","default","dir","disabled","disablepictureinpicture","disableremoteplayback","download","draggable","enctype","enterkeyhint","face","for","headers","height","hidden","high","href","hreflang","id","inputmode","integrity","ismap","kind","label","lang","list","loading","loop","low","max","maxlength","media","method","min","minlength","multiple","muted","name","nonce","noshade","novalidate","nowrap","open","optimum","pattern","placeholder","playsinline","poster","preload","pubdate","radiogroup","readonly","rel","required","rev","reversed","role","rows","rowspan","spellcheck","scope","selected","shape","size","sizes","span","srclang","start","src","srcset","step","style","summary","tabindex","title","translate","type","usemap","valign","value","width","xmlns","slot"]),he=E(["accent-height","accumulate","additive","alignment-baseline","ascent","attributename","attributetype","azimuth","basefrequency","baseline-shift","begin","bias","by","class","clip","clippathunits","clip-path","clip-rule","color","color-interpolation","color-interpolation-filters","color-profile","color-rendering","cx","cy","d","dx","dy","diffuseconstant","direction","display","divisor","dur","edgemode","elevation","end","fill","fill-opacity","fill-rule","filter","filterunits","flood-color","flood-opacity","font-family","font-size","font-size-adjust","font-stretch","font-style","font-variant","font-weight","fx","fy","g1","g2","glyph-name","glyphref","gradientunits","gradienttransform","height","href","id","image-rendering","in","in2","k","k1","k2","k3","k4","kerning","keypoints","keysplines","keytimes","lang","lengthadjust","letter-spacing","kernelmatrix","kernelunitlength","lighting-color","local","marker-end","marker-mid","marker-start","markerheight","markerunits","markerwidth","maskcontentunits","maskunits","max","mask","media","method","mode","min","name","numoctaves","offset","operator","opacity","order","orient","orientation","origin","overflow","paint-order","path","pathlength","patterncontentunits","patterntransform","patternunits","points","preservealpha","preserveaspectratio","primitiveunits","r","rx","ry","radius","refx","refy","repeatcount","repeatdur","restart","result","rotate","scale","seed","shape-rendering","specularconstant","specularexponent","spreadmethod","startoffset","stddeviation","stitchtiles","stop-color","stop-opacity","stroke-dasharray","stroke-dashoffset","stroke-linecap","stroke-linejoin","stroke-miterlimit","stroke-opacity","stroke","stroke-width","style","surfacescale","systemlanguage","tabindex","targetx","targety","transform","transform-origin","text-anchor","text-decoration","text-rendering","textlength","type","u1","u2","unicode","values","viewbox","visibility","version","vert-adv-y","vert-origin-x","vert-origin-y","width","word-spacing","wrap","writing-mode","xchannelselector","ychannelselector","x","x1","x2","xmlns","y","y1","y2","z","zoomandpan"]),Xe=E(["accent","accentunder","align","bevelled","close","columnsalign","columnlines","columnspan","denomalign","depth","dir","display","displaystyle","encoding","fence","frame","height","href","id","largeop","length","linethickness","lspace","lquote","mathbackground","mathcolor","mathsize","mathvariant","maxsize","minsize","movablelimits","notation","numalign","open","rowalign","rowlines","rowspacing","rowspan","rspace","rquote","scriptlevel","scriptminsize","scriptsizemultiplier","selection","separator","separators","stretchy","subscriptshift","supscriptshift","symmetric","voffset","width","xmlns"]),te=E(["xlink:href","xml:id","xlink:title","xml:space","xmlns:xlink"]),kt=g(/\{\{[\w\W]*|[\w\W]*\}\}/gm),Pt=g(/<%[\w\W]*|[\w\W]*%>/gm),Ft=g(/\${[\w\W]*}/gm),Ut=g(/^data-[\-\w.\u00B7-\uFFFF]+$/),Ht=g(/^aria-[\-\w]+$/),zt=g(/^(?:(?:(?:f|ht)tps?|mailto|tel|callto|cid|xmpp):|[^a-z]|[a-z+.\-]+(?:[^a-z+.\-:]|$))/i),Gt=g(/^(?:\w+script|data):/i),Wt=g(/[\u0000-\u0020\u00A0\u1680\u180E\u2000-\u2029\u205F\u3000]/g),Bt=g(/^html$/i),$t=g(/^[a-z][.\w]*(-[.\w]+)+$/i),jt=function(){return"undefined"==typeof window?null:window},Yt=function(n,o){if("object"!==w(n)||"function"!=typeof n.createPolicy)return null;var s=null,c="data-tt-policy-suffix";o.currentScript&&o.currentScript.hasAttribute(c)&&(s=o.currentScript.getAttribute(c));var b="dompurify"+(s?"#"+s:"");try{return n.createPolicy(b,{createHTML:function(D){return D},createScriptURL:function(D){return D}})}catch(y){return console.warn("TrustedTypes policy "+b+" could not be created."),null}};return function Ve(){var a=arguments.length>0&&void 0!==arguments[0]?arguments[0]:jt(),n=function(e){return Ve(e)};if(n.version="2.5.8",n.removed=[],!a||!a.document||9!==a.document.nodeType)return n.isSupported=!1,n;var o=a.document,s=a.document,c=a.DocumentFragment,b=a.HTMLTemplateElement,y=a.Node,D=a.Element,k=a.NodeFilter,X=a.NamedNodeMap,Vt=void 0===X?a.NamedNodeMap||a.MozNamedAttrMap:X,qt=a.HTMLFormElement,Kt=a.DOMParser,re=a.trustedTypes,ae=D.prototype,Zt=ee(ae,"cloneNode"),Jt=ee(ae,"nextSibling"),Qt=ee(ae,"childNodes"),Ee=ee(ae,"parentNode");if("function"==typeof b){var Ae=s.createElement("template");Ae.content&&Ae.content.ownerDocument&&(s=Ae.content.ownerDocument)}var M=Yt(re,o),ye=M?M.createHTML(""):"",ge=s.implementation,er=s.createNodeIterator,tr=s.createDocumentFragment,rr=s.getElementsByTagName,ar=o.importNode,qe={};try{qe=x(s).documentMode?s.documentMode:{}}catch(i){}var N={};n.isSupported="function"==typeof Ee&&ge&&void 0!==ge.createHTMLDocument&&9!==qe;var F,T,Se=kt,be=Pt,Oe=Ft,nr=Ut,ir=Ht,or=Gt,Ke=Wt,lr=$t,Re=zt,p=null,Ze=l({},[].concat(R($e),R(Te),R(_e),R(ve),R(je))),d=null,Je=l({},[].concat(R(Ye),R(he),R(Xe),R(te))),f=Object.seal(Object.create(null,{tagNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},attributeNameCheck:{writable:!0,configurable:!1,enumerable:!0,value:null},allowCustomizedBuiltInElements:{writable:!0,configurable:!1,enumerable:!0,value:!1}})),V=null,Le=null,Qe=!0,Me=!0,et=!1,tt=!0,H=!1,De=!0,P=!1,Ne=!1,we=!1,z=!1,ie=!1,oe=!1,rt=!0,at=!1,sr="user-content-",Ce=!0,q=!1,G={},W=null,nt=l({},["annotation-xml","audio","colgroup","desc","foreignobject","head","iframe","math","mi","mn","mo","ms","mtext","noembed","noframes","noscript","plaintext","script","style","svg","template","thead","title","video","xmp"]),it=null,ot=l({},["audio","video","img","source","image","track"]),Ie=null,lt=l({},["alt","class","for","id","label","name","pattern","placeholder","role","summary","title","value","style","xmlns"]),le="http://www.w3.org/1998/Math/MathML",se="http://www.w3.org/2000/svg",C="http://www.w3.org/1999/xhtml",B=C,xe=!1,ke=null,ur=l({},[le,se,C],pe),fr=["application/xhtml+xml","text/html"],cr="text/html",$=null,mr=s.createElement("form"),st=function(e){return e instanceof RegExp||e instanceof Function},Pe=function(e){$&&$===e||((!e||"object"!==w(e))&&(e={}),e=x(e),F=F=-1===fr.indexOf(e.PARSER_MEDIA_TYPE)?cr:e.PARSER_MEDIA_TYPE,T="application/xhtml+xml"===F?pe:Q,p="ALLOWED_TAGS"in e?l({},e.ALLOWED_TAGS,T):Ze,d="ALLOWED_ATTR"in e?l({},e.ALLOWED_ATTR,T):Je,ke="ALLOWED_NAMESPACES"in e?l({},e.ALLOWED_NAMESPACES,pe):ur,Ie="ADD_URI_SAFE_ATTR"in e?l(x(lt),e.ADD_URI_SAFE_ATTR,T):lt,it="ADD_DATA_URI_TAGS"in e?l(x(ot),e.ADD_DATA_URI_TAGS,T):ot,W="FORBID_CONTENTS"in e?l({},e.FORBID_CONTENTS,T):nt,V="FORBID_TAGS"in e?l({},e.FORBID_TAGS,T):{},Le="FORBID_ATTR"in e?l({},e.FORBID_ATTR,T):{},G="USE_PROFILES"in e&&e.USE_PROFILES,Qe=!1!==e.ALLOW_ARIA_ATTR,Me=!1!==e.ALLOW_DATA_ATTR,et=e.ALLOW_UNKNOWN_PROTOCOLS||!1,tt=!1!==e.ALLOW_SELF_CLOSE_IN_ATTR,H=e.SAFE_FOR_TEMPLATES||!1,De=!1!==e.SAFE_FOR_XML,P=e.WHOLE_DOCUMENT||!1,z=e.RETURN_DOM||!1,ie=e.RETURN_DOM_FRAGMENT||!1,oe=e.RETURN_TRUSTED_TYPE||!1,we=e.FORCE_BODY||!1,rt=!1!==e.SANITIZE_DOM,at=e.SANITIZE_NAMED_PROPS||!1,Ce=!1!==e.KEEP_CONTENT,q=e.IN_PLACE||!1,Re=e.ALLOWED_URI_REGEXP||Re,B=e.NAMESPACE||C,f=e.CUSTOM_ELEMENT_HANDLING||{},e.CUSTOM_ELEMENT_HANDLING&&st(e.CUSTOM_ELEMENT_HANDLING.tagNameCheck)&&(f.tagNameCheck=e.CUSTOM_ELEMENT_HANDLING.tagNameCheck),e.CUSTOM_ELEMENT_HANDLING&&st(e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck)&&(f.attributeNameCheck=e.CUSTOM_ELEMENT_HANDLING.attributeNameCheck),e.CUSTOM_ELEMENT_HANDLING&&"boolean"==typeof e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements&&(f.allowCustomizedBuiltInElements=e.CUSTOM_ELEMENT_HANDLING.allowCustomizedBuiltInElements),H&&(Me=!1),ie&&(z=!0),G&&(p=l({},R(je)),d=[],!0===G.html&&(l(p,$e),l(d,Ye)),!0===G.svg&&(l(p,Te),l(d,he),l(d,te)),!0===G.svgFilters&&(l(p,_e),l(d,he),l(d,te)),!0===G.mathMl&&(l(p,ve),l(d,Xe),l(d,te))),e.ADD_TAGS&&(p===Ze&&(p=x(p)),l(p,e.ADD_TAGS,T)),e.ADD_ATTR&&(d===Je&&(d=x(d)),l(d,e.ADD_ATTR,T)),e.ADD_URI_SAFE_ATTR&&l(Ie,e.ADD_URI_SAFE_ATTR,T),e.FORBID_CONTENTS&&(W===nt&&(W=x(W)),l(W,e.FORBID_CONTENTS,T)),Ce&&(p["#text"]=!0),P&&l(p,["html","head","body"]),p.table&&(l(p,["tbody"]),delete V.tbody),E&&E(e),$=e)},ut=l({},["mi","mo","mn","ms","mtext"]),ft=l({},["annotation-xml"]),pr=l({},["title","style","font","a","script"]),ue=l({},Te);l(ue,_e),l(ue,It);var Fe=l({},ve);l(Fe,xt);var dr=function(e){var t=Ee(e);(!t||!t.tagName)&&(t={namespaceURI:B,tagName:"template"});var r=Q(e.tagName),u=Q(t.tagName);return!!ke[e.namespaceURI]&&(e.namespaceURI===se?t.namespaceURI===C?"svg"===r:t.namespaceURI===le?"svg"===r&&("annotation-xml"===u||ut[u]):Boolean(ue[r]):e.namespaceURI===le?t.namespaceURI===C?"math"===r:t.namespaceURI===se?"math"===r&&ft[u]:Boolean(Fe[r]):e.namespaceURI===C?!(t.namespaceURI===se&&!ft[u]||t.namespaceURI===le&&!ut[u])&&!Fe[r]&&(pr[r]||!ue[r]):!("application/xhtml+xml"!==F||!ke[e.namespaceURI]))},O=function(e){Y(n.removed,{element:e});try{e.parentNode.removeChild(e)}catch(t){try{e.outerHTML=ye}catch(r){e.remove()}}},fe=function(e,t){try{Y(n.removed,{attribute:t.getAttributeNode(e),from:t})}catch(r){Y(n.removed,{attribute:null,from:t})}if(t.removeAttribute(e),"is"===e&&!d[e])if(z||ie)try{O(t)}catch(r){}else try{t.setAttribute(e,"")}catch(r){}},ct=function(e){var t,r;if(we)e="<remove></remove>"+e;else{var u=Be(e,/^[\r\n\t ]+/);r=u&&u[0]}"application/xhtml+xml"===F&&B===C&&(e='<html xmlns="http://www.w3.org/1999/xhtml"><head></head><body>'+e+"</body></html>");var A=M?M.createHTML(e):e;if(B===C)try{t=(new Kt).parseFromString(A,F)}catch(v){}if(!t||!t.documentElement){t=ge.createDocument(B,"template",null);try{t.documentElement.innerHTML=xe?ye:A}catch(v){}}var h=t.body||t.documentElement;return e&&r&&h.insertBefore(s.createTextNode(r),h.childNodes[0]||null),B===C?rr.call(t,P?"html":"body")[0]:P?t.documentElement:h},mt=function(e){return er.call(e.ownerDocument||e,e,k.SHOW_ELEMENT|k.SHOW_COMMENT|k.SHOW_TEXT|k.SHOW_PROCESSING_INSTRUCTION|k.SHOW_CDATA_SECTION,null,!1)},Ue=function(e){return e instanceof qt&&("string"!=typeof e.nodeName||"string"!=typeof e.textContent||"function"!=typeof e.removeChild||!(e.attributes instanceof Vt)||"function"!=typeof e.removeAttribute||"function"!=typeof e.setAttribute||"string"!=typeof e.namespaceURI||"function"!=typeof e.insertBefore||"function"!=typeof e.hasChildNodes)},K=function(e){return"object"===w(y)?e instanceof y:e&&"object"===w(e)&&"number"==typeof e.nodeType&&"string"==typeof e.nodeName},I=function(e,t,r){!N[e]||Dt(N[e],function(u){u.call(n,t,r,$)})},pt=function(e){var t;if(I("beforeSanitizeElements",e,null),Ue(e)||_(/[\u0080-\uFFFF]/,e.nodeName))return O(e),!0;var r=T(e.nodeName);if(I("uponSanitizeElement",e,{tagName:r,allowedTags:p}),e.hasChildNodes()&&!K(e.firstElementChild)&&(!K(e.content)||!K(e.content.firstElementChild))&&_(/<[/\w]/g,e.innerHTML)&&_(/<[/\w]/g,e.textContent)||"select"===r&&_(/<template/i,e.innerHTML)||7===e.nodeType||De&&8===e.nodeType&&_(/<[/\w]/g,e.data))return O(e),!0;if(!p[r]||V[r]){if(!V[r]&&Tt(r)&&(f.tagNameCheck instanceof RegExp&&_(f.tagNameCheck,r)||f.tagNameCheck instanceof Function&&f.tagNameCheck(r)))return!1;if(Ce&&!W[r]){var u=Ee(e)||e.parentNode,A=Qt(e)||e.childNodes;if(A&&u)for(var v=A.length-1;v>=0;--v){var U=Zt(A[v],!0);U.__removalCount=(e.__removalCount||0)+1,u.insertBefore(U,Jt(e))}}return O(e),!0}return e instanceof D&&!dr(e)||("noscript"===r||"noembed"===r||"noframes"===r)&&_(/<\/no(script|embed|frames)/i,e.innerHTML)?(O(e),!0):(H&&3===e.nodeType&&(t=L(t=e.textContent,Se," "),t=L(t,be," "),t=L(t,Oe," "),e.textContent!==t&&(Y(n.removed,{element:e.cloneNode()}),e.textContent=t)),I("afterSanitizeElements",e,null),!1)},dt=function(e,t,r){if(rt&&("id"===t||"name"===t)&&(r in s||r in mr))return!1;if((!Me||Le[t]||!_(nr,t))&&(!Qe||!_(ir,t)))if(!d[t]||Le[t]){if(!(Tt(e)&&(f.tagNameCheck instanceof RegExp&&_(f.tagNameCheck,e)||f.tagNameCheck instanceof Function&&f.tagNameCheck(e))&&(f.attributeNameCheck instanceof RegExp&&_(f.attributeNameCheck,t)||f.attributeNameCheck instanceof Function&&f.attributeNameCheck(t))||"is"===t&&f.allowCustomizedBuiltInElements&&(f.tagNameCheck instanceof RegExp&&_(f.tagNameCheck,r)||f.tagNameCheck instanceof Function&&f.tagNameCheck(r))))return!1}else if(!Ie[t]&&!_(Re,L(r,Ke,""))&&("src"!==t&&"xlink:href"!==t&&"href"!==t||"script"===e||0!==Nt(r,"data:")||!it[e])&&(!et||_(or,L(r,Ke,"")))&&r)return!1;return!0},Tt=function(e){return"annotation-xml"!==e&&Be(e,lr)},_t=function(e){var t,r,u,A;I("beforeSanitizeAttributes",e,null);var h=e.attributes;if(h&&!Ue(e)){var v={attrName:"",attrValue:"",keepAttr:!0,allowedAttributes:d};for(A=h.length;A--;){var m=(t=h[A]).name,He=t.namespaceURI;if(r="value"===m?t.value:wt(t.value),u=T(m),v.attrName=u,v.attrValue=r,v.keepAttr=!0,v.forceKeepAttr=void 0,I("uponSanitizeAttribute",e,v),r=v.attrValue,!v.forceKeepAttr&&(fe(m,e),v.keepAttr)){if(!tt&&_(/\/>/i,r)){fe(m,e);continue}H&&(r=L(r,Se," "),r=L(r,be," "),r=L(r,Oe," "));var vt=T(e.nodeName);if(dt(vt,u,r)){if(at&&("id"===u||"name"===u)&&(fe(m,e),r=sr+r),De&&_(/((--!?|])>)|<\/(style|title)/i,r)){fe(m,e);continue}if(M&&"object"===w(re)&&"function"==typeof re.getAttributeType&&!He)switch(re.getAttributeType(vt,u)){case"TrustedHTML":r=M.createHTML(r);break;case"TrustedScriptURL":r=M.createScriptURL(r)}try{He?e.setAttributeNS(He,m,r):e.setAttribute(m,r),Ue(e)?O(e):We(n.removed)}catch(_r){}}}}I("afterSanitizeAttributes",e,null)}},Tr=function i(e){var t,r=mt(e);for(I("beforeSanitizeShadowDOM",e,null);t=r.nextNode();)I("uponSanitizeShadowNode",t,null),pt(t),_t(t),t.content instanceof c&&i(t.content);I("afterSanitizeShadowDOM",e,null)};return n.sanitize=function(i){var t,r,u,A,h,e=arguments.length>1&&void 0!==arguments[1]?arguments[1]:{};if((xe=!i)&&(i="\x3c!--\x3e"),"string"!=typeof i&&!K(i)){if("function"!=typeof i.toString)throw de("toString is not a function");if("string"!=typeof(i=i.toString()))throw de("dirty is not a string, aborting")}if(!n.isSupported){if("object"===w(a.toStaticHTML)||"function"==typeof a.toStaticHTML){if("string"==typeof i)return a.toStaticHTML(i);if(K(i))return a.toStaticHTML(i.outerHTML)}return i}if(Ne||Pe(e),n.removed=[],"string"==typeof i&&(q=!1),q){if(i.nodeName){var v=T(i.nodeName);if(!p[v]||V[v])throw de("root node is forbidden and cannot be sanitized in-place")}}else if(i instanceof y)1===(r=(t=ct("\x3c!----\x3e")).ownerDocument.importNode(i,!0)).nodeType&&"BODY"===r.nodeName||"HTML"===r.nodeName?t=r:t.appendChild(r);else{if(!z&&!H&&!P&&-1===i.indexOf("<"))return M&&oe?M.createHTML(i):i;if(!(t=ct(i)))return z?null:oe?ye:""}t&&we&&O(t.firstChild);for(var U=mt(q?i:t);u=U.nextNode();)3===u.nodeType&&u===A||(pt(u),_t(u),u.content instanceof c&&Tr(u.content),A=u);if(A=null,q)return i;if(z){if(ie)for(h=tr.call(t.ownerDocument);t.firstChild;)h.appendChild(t.firstChild);else h=t;return(d.shadowroot||d.shadowrootmod)&&(h=ar.call(o,h,!0)),h}var m=P?t.outerHTML:t.innerHTML;return P&&p["!doctype"]&&t.ownerDocument&&t.ownerDocument.doctype&&t.ownerDocument.doctype.name&&_(Bt,t.ownerDocument.doctype.name)&&(m="<!DOCTYPE "+t.ownerDocument.doctype.name+">\n"+m),H&&(m=L(m,Se," "),m=L(m,be," "),m=L(m,Oe," ")),M&&oe?M.createHTML(m):m},n.setConfig=function(i){Pe(i),Ne=!0},n.clearConfig=function(){$=null,Ne=!1},n.isValidAttribute=function(i,e,t){$||Pe({});var r=T(i),u=T(e);return dt(r,u,t)},n.addHook=function(i,e){"function"==typeof e&&(N[i]=N[i]||[],Y(N[i],e))},n.removeHook=function(i){if(N[i])return We(N[i])},n.removeHooks=function(i){N[i]&&(N[i]=[])},n.removeAllHooks=function(){N={}},n}()}()}}]);
|