@inceptionbg/iui 1.0.154 → 1.0.155
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/dist/index.css +1 -0
- package/dist/index.d.ts +1600 -0
- package/dist/index.js +2 -0
- package/dist/index.js.map +1 -0
- package/package.json +1 -1
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,1600 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
export { FontAwesomeIcon } from '@fortawesome/react-fontawesome';
|
|
3
|
+
export { default as clsx } from 'clsx';
|
|
4
|
+
export { default as moment } from 'moment';
|
|
5
|
+
export { DragDropContext, Draggable, Droppable } from 'react-beautiful-dnd';
|
|
6
|
+
import * as react_toastify from 'react-toastify';
|
|
7
|
+
export { ToastContainer } from 'react-toastify';
|
|
8
|
+
export { v4 as uuidv4 } from 'uuid';
|
|
9
|
+
import * as react from 'react';
|
|
10
|
+
import { MouseEventHandler, ButtonHTMLAttributes, FormEvent, ReactNode, FC, FunctionComponent, RefObject, ReactElement, Dispatch, SetStateAction, InputHTMLAttributes } from 'react';
|
|
11
|
+
import { IconDefinition, RotateProp } from '@fortawesome/fontawesome-svg-core';
|
|
12
|
+
|
|
13
|
+
type IButtonColor = 'primary' | 'secondary' | 'error';
|
|
14
|
+
interface Props$w {
|
|
15
|
+
label: string;
|
|
16
|
+
icon?: IconDefinition;
|
|
17
|
+
iconEnd?: IconDefinition;
|
|
18
|
+
onClick?: MouseEventHandler<HTMLButtonElement>;
|
|
19
|
+
disabled?: boolean;
|
|
20
|
+
solid?: boolean;
|
|
21
|
+
outlined?: boolean;
|
|
22
|
+
active?: boolean;
|
|
23
|
+
color?: IButtonColor;
|
|
24
|
+
size?: 'xs' | 's' | 'm' | 'l';
|
|
25
|
+
className?: string;
|
|
26
|
+
buttonProps?: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
27
|
+
}
|
|
28
|
+
declare const Button: react.ForwardRefExoticComponent<Props$w & react.RefAttributes<HTMLButtonElement>>;
|
|
29
|
+
|
|
30
|
+
interface IFormWrapper {
|
|
31
|
+
isLoading: boolean;
|
|
32
|
+
className?: string;
|
|
33
|
+
submitButton: {
|
|
34
|
+
label?: string;
|
|
35
|
+
icon?: any;
|
|
36
|
+
disabled?: boolean;
|
|
37
|
+
onSubmit: (e: FormEvent<HTMLFormElement>) => void;
|
|
38
|
+
solid?: boolean;
|
|
39
|
+
color?: IButtonColor;
|
|
40
|
+
};
|
|
41
|
+
otherButtons?: {
|
|
42
|
+
label: string;
|
|
43
|
+
icon?: any;
|
|
44
|
+
onClick: () => void;
|
|
45
|
+
outlined?: boolean;
|
|
46
|
+
color?: IButtonColor;
|
|
47
|
+
disabled?: boolean;
|
|
48
|
+
hidden?: boolean;
|
|
49
|
+
}[];
|
|
50
|
+
noAccess?: boolean;
|
|
51
|
+
children: ReactNode;
|
|
52
|
+
}
|
|
53
|
+
declare const FormWrapper: FC<IFormWrapper>;
|
|
54
|
+
|
|
55
|
+
interface IAnyObject {
|
|
56
|
+
[id: string]: any;
|
|
57
|
+
}
|
|
58
|
+
interface IStringObject {
|
|
59
|
+
[id: string]: string;
|
|
60
|
+
}
|
|
61
|
+
interface IBooleanObject {
|
|
62
|
+
[id: string]: boolean;
|
|
63
|
+
}
|
|
64
|
+
interface ISimpleObject {
|
|
65
|
+
uuid: string;
|
|
66
|
+
name: string;
|
|
67
|
+
}
|
|
68
|
+
interface ISimpleObjectWithCode extends ISimpleObject {
|
|
69
|
+
code: string;
|
|
70
|
+
}
|
|
71
|
+
interface IValueLabel {
|
|
72
|
+
value: any;
|
|
73
|
+
label: string;
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
interface IError {
|
|
77
|
+
errorMessage: string;
|
|
78
|
+
errorCode?: string;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
interface ISelectData extends IValueLabel {
|
|
82
|
+
disabled?: boolean;
|
|
83
|
+
[id: string]: any;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
interface ITab {
|
|
87
|
+
value: string;
|
|
88
|
+
label: string;
|
|
89
|
+
icon?: any;
|
|
90
|
+
component: ReactNode;
|
|
91
|
+
disabled?: boolean;
|
|
92
|
+
hidden?: boolean;
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
interface ITable {
|
|
96
|
+
columns: ITableColumn[];
|
|
97
|
+
setColumns?: (data: ITableColumn[]) => void;
|
|
98
|
+
customHeader?: ITableColumn[][];
|
|
99
|
+
data: ITableDataItem[];
|
|
100
|
+
totals?: ITableDataItem;
|
|
101
|
+
isLoading?: boolean;
|
|
102
|
+
serverSidePagination?: IServerSidePagination;
|
|
103
|
+
customPagination?: {
|
|
104
|
+
defaultLimit?: number;
|
|
105
|
+
customLimit?: number[];
|
|
106
|
+
};
|
|
107
|
+
selectedRowUuid?: string;
|
|
108
|
+
footerAction?: {
|
|
109
|
+
icon?: IconDefinition;
|
|
110
|
+
onClick: () => void;
|
|
111
|
+
};
|
|
112
|
+
headerWrap?: boolean;
|
|
113
|
+
hideFooter?: boolean;
|
|
114
|
+
showLastBorder?: boolean;
|
|
115
|
+
filterData?: ITableFilterData;
|
|
116
|
+
sortData?: ITableSortData;
|
|
117
|
+
printData?: IPrintData;
|
|
118
|
+
additionsalOptions?: ReactNode;
|
|
119
|
+
selectedOptions?: {
|
|
120
|
+
actions: ITableSelectedActions[];
|
|
121
|
+
resetSelect?: number;
|
|
122
|
+
};
|
|
123
|
+
className?: string;
|
|
124
|
+
editable?: {
|
|
125
|
+
selectedItem?: any;
|
|
126
|
+
setSelectedItem?: (item: any) => void;
|
|
127
|
+
defaultDataValue?: any;
|
|
128
|
+
EditableRow?: FunctionComponent<ITableEditRow>;
|
|
129
|
+
onSubmit: (data: any, onSubmitCallback: () => void) => void;
|
|
130
|
+
addDisabled?: boolean;
|
|
131
|
+
inputFocusRef?: RefObject<any>;
|
|
132
|
+
keepEditOnSubmit?: boolean;
|
|
133
|
+
};
|
|
134
|
+
}
|
|
135
|
+
interface ITableColumn {
|
|
136
|
+
id: string;
|
|
137
|
+
label?: string | ReactElement;
|
|
138
|
+
align?: 'center' | 'left' | 'right' | 'justify' | undefined;
|
|
139
|
+
hidden?: boolean;
|
|
140
|
+
unavailable?: boolean;
|
|
141
|
+
width?: string;
|
|
142
|
+
minWidth?: string;
|
|
143
|
+
colSpan?: number;
|
|
144
|
+
rowSpan?: number;
|
|
145
|
+
break?: boolean;
|
|
146
|
+
color?: 'secondary';
|
|
147
|
+
sortOptions?: {
|
|
148
|
+
asc: string;
|
|
149
|
+
desc: string;
|
|
150
|
+
label: string;
|
|
151
|
+
};
|
|
152
|
+
}
|
|
153
|
+
interface ITableDataItem {
|
|
154
|
+
uuid: string;
|
|
155
|
+
onRowClick?: MouseEventHandler<HTMLTableRowElement>;
|
|
156
|
+
className?: string;
|
|
157
|
+
disableSelect?: boolean;
|
|
158
|
+
cells: {
|
|
159
|
+
[id: string]: {
|
|
160
|
+
value: any;
|
|
161
|
+
align?: ITableColumn['align'];
|
|
162
|
+
className?: string;
|
|
163
|
+
onClick?: MouseEventHandler<HTMLTableCellElement>;
|
|
164
|
+
link?: boolean;
|
|
165
|
+
tooltip?: string;
|
|
166
|
+
span?: number;
|
|
167
|
+
unclickable?: boolean;
|
|
168
|
+
printValue?: string;
|
|
169
|
+
};
|
|
170
|
+
};
|
|
171
|
+
extendable?: {
|
|
172
|
+
element: ReactElement;
|
|
173
|
+
isLoading?: boolean;
|
|
174
|
+
};
|
|
175
|
+
}
|
|
176
|
+
interface ITableFilterData {
|
|
177
|
+
columns: string[];
|
|
178
|
+
filters: ITableFilter;
|
|
179
|
+
activeFilterNo?: number;
|
|
180
|
+
additionalFilters?: ReactElement;
|
|
181
|
+
search: IAnyObject;
|
|
182
|
+
searchData: IAnyObject;
|
|
183
|
+
setSearchData: (search: IAnyObject) => void;
|
|
184
|
+
onSubmit: (search: IAnyObject) => void;
|
|
185
|
+
resetData?: IAnyObject;
|
|
186
|
+
excludeFromSearch?: string[];
|
|
187
|
+
}
|
|
188
|
+
interface ITableFilterItem {
|
|
189
|
+
label: string;
|
|
190
|
+
field: ReactElement;
|
|
191
|
+
resetField: () => void;
|
|
192
|
+
}
|
|
193
|
+
interface ITableFilter {
|
|
194
|
+
[id: string]: ITableFilterItem;
|
|
195
|
+
}
|
|
196
|
+
interface ITableSortData {
|
|
197
|
+
sort: string;
|
|
198
|
+
setSort: (sort: string) => void;
|
|
199
|
+
sortOptions: ITableSort[];
|
|
200
|
+
menuSize?: 's' | 'm' | 'l';
|
|
201
|
+
}
|
|
202
|
+
interface ITableSort {
|
|
203
|
+
label: string;
|
|
204
|
+
asc: string;
|
|
205
|
+
desc: string;
|
|
206
|
+
}
|
|
207
|
+
interface ITableSelectedActions {
|
|
208
|
+
label: string;
|
|
209
|
+
onClick: (selected: Set<string>) => void;
|
|
210
|
+
hidden?: boolean;
|
|
211
|
+
disabled?: boolean;
|
|
212
|
+
clearSelected?: boolean;
|
|
213
|
+
}
|
|
214
|
+
interface IPrintData {
|
|
215
|
+
label: string;
|
|
216
|
+
organization?: {
|
|
217
|
+
name?: string;
|
|
218
|
+
taxId?: string;
|
|
219
|
+
registrationNumber?: string;
|
|
220
|
+
jbkjs?: string;
|
|
221
|
+
email?: string;
|
|
222
|
+
};
|
|
223
|
+
filters?: {
|
|
224
|
+
basic?: {
|
|
225
|
+
label: string;
|
|
226
|
+
value?: string;
|
|
227
|
+
}[];
|
|
228
|
+
date?: {
|
|
229
|
+
label: string;
|
|
230
|
+
from?: string;
|
|
231
|
+
to?: string;
|
|
232
|
+
}[];
|
|
233
|
+
};
|
|
234
|
+
optionalNode?: {
|
|
235
|
+
aboveTable?: ReactNode;
|
|
236
|
+
bellowTable?: ReactNode;
|
|
237
|
+
};
|
|
238
|
+
getPrintData: (pagination: IPagination) => Promise<{
|
|
239
|
+
data: any[];
|
|
240
|
+
totalRows?: number;
|
|
241
|
+
}>;
|
|
242
|
+
formatPrintData: (data: any) => ITableDataItem[];
|
|
243
|
+
saveXlsx?: () => void;
|
|
244
|
+
totals?: ITableDataItem;
|
|
245
|
+
}
|
|
246
|
+
interface IPagination {
|
|
247
|
+
limit: number;
|
|
248
|
+
offset: number;
|
|
249
|
+
}
|
|
250
|
+
interface IServerSidePagination {
|
|
251
|
+
limit: number;
|
|
252
|
+
offset: number;
|
|
253
|
+
setLimit: Dispatch<SetStateAction<number>>;
|
|
254
|
+
setOffset: Dispatch<SetStateAction<number>>;
|
|
255
|
+
totalRows: number;
|
|
256
|
+
}
|
|
257
|
+
interface ITableEditRow {
|
|
258
|
+
columns: ITableColumn[];
|
|
259
|
+
data: any;
|
|
260
|
+
setData: (data: any) => void;
|
|
261
|
+
item?: any;
|
|
262
|
+
clearItem: () => void;
|
|
263
|
+
defaultDataValue?: any;
|
|
264
|
+
inputFocusRef?: RefObject<any>;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
interface ITreeItem {
|
|
268
|
+
uuid: string;
|
|
269
|
+
name: string;
|
|
270
|
+
children?: ITreeItem[];
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
interface Props$v {
|
|
274
|
+
tabs: ITab[];
|
|
275
|
+
initialValue?: string;
|
|
276
|
+
compact?: boolean;
|
|
277
|
+
className?: string;
|
|
278
|
+
}
|
|
279
|
+
declare const Accordions: FC<Props$v>;
|
|
280
|
+
|
|
281
|
+
interface Props$u {
|
|
282
|
+
text?: string;
|
|
283
|
+
severity: 'success' | 'info' | 'warning' | 'error';
|
|
284
|
+
fitContent?: boolean;
|
|
285
|
+
className?: string;
|
|
286
|
+
children?: ReactNode;
|
|
287
|
+
}
|
|
288
|
+
declare const Alert: FC<Props$u>;
|
|
289
|
+
|
|
290
|
+
interface Props$t {
|
|
291
|
+
label: string;
|
|
292
|
+
color: 'success' | 'info' | 'warning' | 'error' | 'gray';
|
|
293
|
+
className?: string;
|
|
294
|
+
}
|
|
295
|
+
declare const DotBadge: FC<Props$t>;
|
|
296
|
+
|
|
297
|
+
interface Props$s {
|
|
298
|
+
number?: number;
|
|
299
|
+
className?: string;
|
|
300
|
+
small?: boolean;
|
|
301
|
+
children?: ReactNode;
|
|
302
|
+
}
|
|
303
|
+
declare const NotificationBadge: FC<Props$s>;
|
|
304
|
+
|
|
305
|
+
interface Props$r {
|
|
306
|
+
label: string;
|
|
307
|
+
color: 'success' | 'info' | 'warning' | 'error' | 'gray';
|
|
308
|
+
className?: string;
|
|
309
|
+
}
|
|
310
|
+
declare const PillBadge: react.ForwardRefExoticComponent<Props$r & react.RefAttributes<HTMLDivElement>>;
|
|
311
|
+
|
|
312
|
+
interface Props$q {
|
|
313
|
+
icon: IconDefinition;
|
|
314
|
+
onClick?: MouseEventHandler<HTMLButtonElement>;
|
|
315
|
+
disabled?: boolean;
|
|
316
|
+
className?: string;
|
|
317
|
+
color?: IButtonColor;
|
|
318
|
+
solid?: boolean;
|
|
319
|
+
active?: boolean;
|
|
320
|
+
tooltip?: string;
|
|
321
|
+
buttonProps?: ButtonHTMLAttributes<HTMLButtonElement>;
|
|
322
|
+
size?: 's';
|
|
323
|
+
}
|
|
324
|
+
declare const IconButton: react.ForwardRefExoticComponent<Props$q & react.RefAttributes<HTMLButtonElement>>;
|
|
325
|
+
|
|
326
|
+
declare const Dashboard: FC<{
|
|
327
|
+
children: ReactNode;
|
|
328
|
+
}>;
|
|
329
|
+
|
|
330
|
+
interface Props$p {
|
|
331
|
+
title: string;
|
|
332
|
+
icon?: any;
|
|
333
|
+
type?: 'warning' | 'info';
|
|
334
|
+
span?: 2 | 3 | 4;
|
|
335
|
+
isLoading?: boolean;
|
|
336
|
+
children: ReactNode;
|
|
337
|
+
}
|
|
338
|
+
declare const DashboardWidget: FC<Props$p>;
|
|
339
|
+
|
|
340
|
+
interface Props$o {
|
|
341
|
+
textId: string;
|
|
342
|
+
itemUuid: string;
|
|
343
|
+
setItemUuid: Dispatch<SetStateAction<string>>;
|
|
344
|
+
reloadItems: () => void;
|
|
345
|
+
deleteItemFunction: (itemUuid: string) => Promise<any>;
|
|
346
|
+
}
|
|
347
|
+
declare const DeleteItemDialog: FC<Props$o>;
|
|
348
|
+
|
|
349
|
+
interface Props$n {
|
|
350
|
+
title?: string;
|
|
351
|
+
titleEl?: ReactNode;
|
|
352
|
+
desc?: string;
|
|
353
|
+
descEl?: ReactNode;
|
|
354
|
+
isOpen: boolean;
|
|
355
|
+
onClose: () => void;
|
|
356
|
+
isLoading?: boolean;
|
|
357
|
+
confirmButton?: {
|
|
358
|
+
label?: string;
|
|
359
|
+
icon?: IconDefinition;
|
|
360
|
+
onClick?: () => void;
|
|
361
|
+
onFormSubmit?: () => void;
|
|
362
|
+
disabled?: boolean;
|
|
363
|
+
keepOpen?: boolean;
|
|
364
|
+
};
|
|
365
|
+
cancelButton?: {
|
|
366
|
+
label?: string;
|
|
367
|
+
icon?: IconDefinition;
|
|
368
|
+
onClick?: () => void;
|
|
369
|
+
};
|
|
370
|
+
additionalButton?: {
|
|
371
|
+
label: string;
|
|
372
|
+
icon?: IconDefinition;
|
|
373
|
+
onClick?: () => void;
|
|
374
|
+
disabled?: boolean;
|
|
375
|
+
keepOpen?: boolean;
|
|
376
|
+
color?: IButtonColor;
|
|
377
|
+
solid?: boolean;
|
|
378
|
+
};
|
|
379
|
+
noBackgroundClick?: boolean;
|
|
380
|
+
noOverflow?: boolean;
|
|
381
|
+
type?: 'info' | 'error';
|
|
382
|
+
size?: 'm' | 'l' | 'xl';
|
|
383
|
+
noPadding?: boolean;
|
|
384
|
+
className?: string;
|
|
385
|
+
children?: ReactNode;
|
|
386
|
+
}
|
|
387
|
+
declare const Dialog: FC<Props$n>;
|
|
388
|
+
|
|
389
|
+
interface Props$m {
|
|
390
|
+
isOpen: boolean;
|
|
391
|
+
className?: string;
|
|
392
|
+
children?: ReactNode;
|
|
393
|
+
}
|
|
394
|
+
declare const Collapse: FC<Props$m>;
|
|
395
|
+
|
|
396
|
+
interface Props$l {
|
|
397
|
+
label?: string;
|
|
398
|
+
value?: boolean | 'middle';
|
|
399
|
+
setValue: (checked: boolean) => void;
|
|
400
|
+
required?: boolean;
|
|
401
|
+
disabled?: boolean;
|
|
402
|
+
className?: string;
|
|
403
|
+
tooltip?: string;
|
|
404
|
+
children?: ReactNode;
|
|
405
|
+
}
|
|
406
|
+
declare const Checkbox: react.ForwardRefExoticComponent<Props$l & react.RefAttributes<HTMLLabelElement>>;
|
|
407
|
+
|
|
408
|
+
interface Props$k {
|
|
409
|
+
label?: string;
|
|
410
|
+
value?: string | number;
|
|
411
|
+
setValue: (value: string) => void;
|
|
412
|
+
required?: boolean;
|
|
413
|
+
disabled?: boolean;
|
|
414
|
+
autoFocus?: boolean;
|
|
415
|
+
placeholder?: string;
|
|
416
|
+
helperText?: string;
|
|
417
|
+
className?: string;
|
|
418
|
+
allowNegative?: boolean;
|
|
419
|
+
decimalPlaces?: number;
|
|
420
|
+
error?: boolean;
|
|
421
|
+
alignLeft?: boolean;
|
|
422
|
+
endText?: string;
|
|
423
|
+
inputProps?: InputHTMLAttributes<HTMLInputElement>;
|
|
424
|
+
}
|
|
425
|
+
declare const CurrencyInput: react.ForwardRefExoticComponent<Props$k & react.RefAttributes<HTMLInputElement>>;
|
|
426
|
+
|
|
427
|
+
interface Props$j {
|
|
428
|
+
label?: string;
|
|
429
|
+
date?: string;
|
|
430
|
+
setDate: (date: string) => void;
|
|
431
|
+
required?: boolean;
|
|
432
|
+
disabled?: boolean;
|
|
433
|
+
autoFocus?: boolean;
|
|
434
|
+
helperText?: string;
|
|
435
|
+
error?: boolean;
|
|
436
|
+
className?: string;
|
|
437
|
+
calendarPlacementX?: 'left' | 'right';
|
|
438
|
+
}
|
|
439
|
+
declare const DateInput: react.ForwardRefExoticComponent<Props$j & react.RefAttributes<HTMLInputElement>>;
|
|
440
|
+
|
|
441
|
+
interface Props$i {
|
|
442
|
+
label: string;
|
|
443
|
+
value?: string;
|
|
444
|
+
setValue: (value: string) => void;
|
|
445
|
+
required?: boolean;
|
|
446
|
+
disabled?: boolean;
|
|
447
|
+
autoFocus?: boolean;
|
|
448
|
+
rows?: number;
|
|
449
|
+
placeholder?: string;
|
|
450
|
+
helperText?: string;
|
|
451
|
+
className?: string;
|
|
452
|
+
inputProps?: InputHTMLAttributes<HTMLTextAreaElement>;
|
|
453
|
+
error?: boolean;
|
|
454
|
+
}
|
|
455
|
+
declare const LargeTextInput: react.ForwardRefExoticComponent<Props$i & react.RefAttributes<HTMLTextAreaElement>>;
|
|
456
|
+
|
|
457
|
+
interface Props$h {
|
|
458
|
+
label?: string;
|
|
459
|
+
value?: string | number;
|
|
460
|
+
setValue: (value: string) => void;
|
|
461
|
+
required?: boolean;
|
|
462
|
+
disabled?: boolean;
|
|
463
|
+
autoFocus?: boolean;
|
|
464
|
+
placeholder?: string;
|
|
465
|
+
helperText?: string;
|
|
466
|
+
className?: string;
|
|
467
|
+
allowNegative?: boolean;
|
|
468
|
+
decimalPlaces?: number;
|
|
469
|
+
error?: boolean;
|
|
470
|
+
align?: 'left' | 'right';
|
|
471
|
+
endText?: string;
|
|
472
|
+
inputProps?: InputHTMLAttributes<HTMLInputElement>;
|
|
473
|
+
}
|
|
474
|
+
declare const NumberInput: react.ForwardRefExoticComponent<Props$h & react.RefAttributes<HTMLInputElement>>;
|
|
475
|
+
|
|
476
|
+
interface ITextInput {
|
|
477
|
+
id?: string;
|
|
478
|
+
label?: string;
|
|
479
|
+
value?: string;
|
|
480
|
+
setValue?: (value: string) => void;
|
|
481
|
+
required?: boolean;
|
|
482
|
+
disabled?: boolean;
|
|
483
|
+
autoFocus?: boolean;
|
|
484
|
+
placeholder?: string;
|
|
485
|
+
helperText?: string;
|
|
486
|
+
className?: string;
|
|
487
|
+
inputProps?: InputHTMLAttributes<HTMLInputElement>;
|
|
488
|
+
error?: boolean;
|
|
489
|
+
endText?: string;
|
|
490
|
+
endButton?: {
|
|
491
|
+
icon: IconDefinition;
|
|
492
|
+
onClick: () => void;
|
|
493
|
+
disabled?: boolean;
|
|
494
|
+
};
|
|
495
|
+
}
|
|
496
|
+
declare const TextInput: react.ForwardRefExoticComponent<ITextInput & react.RefAttributes<HTMLInputElement>>;
|
|
497
|
+
|
|
498
|
+
interface IProps$1 extends ITextInput {
|
|
499
|
+
newPassword?: boolean;
|
|
500
|
+
}
|
|
501
|
+
declare const PasswordInput: FC<IProps$1>;
|
|
502
|
+
|
|
503
|
+
interface Props$g {
|
|
504
|
+
label?: string;
|
|
505
|
+
value: string | number | boolean;
|
|
506
|
+
selected: string | number | boolean | undefined | null;
|
|
507
|
+
setSelected: (selected: any) => void;
|
|
508
|
+
required?: boolean;
|
|
509
|
+
groupName?: string;
|
|
510
|
+
disabled?: boolean;
|
|
511
|
+
className?: string;
|
|
512
|
+
children?: ReactNode;
|
|
513
|
+
}
|
|
514
|
+
declare const Radio: react.ForwardRefExoticComponent<Props$g & react.RefAttributes<HTMLDivElement>>;
|
|
515
|
+
|
|
516
|
+
interface Props$f {
|
|
517
|
+
title?: string | ReactElement;
|
|
518
|
+
desc?: string | ReactElement;
|
|
519
|
+
value: string;
|
|
520
|
+
selected: string;
|
|
521
|
+
setSelected: (selected: string) => void;
|
|
522
|
+
disabled?: boolean;
|
|
523
|
+
className?: string;
|
|
524
|
+
children?: ReactNode;
|
|
525
|
+
}
|
|
526
|
+
declare const RadioLarge: FC<Props$f>;
|
|
527
|
+
|
|
528
|
+
interface IProps {
|
|
529
|
+
onSearch: (searchText: string) => void;
|
|
530
|
+
className?: string;
|
|
531
|
+
}
|
|
532
|
+
declare const SearchInput: FC<IProps>;
|
|
533
|
+
|
|
534
|
+
interface Props$e {
|
|
535
|
+
label?: string;
|
|
536
|
+
options: ISelectData[];
|
|
537
|
+
value?: ISelectData | null;
|
|
538
|
+
valuesMulti?: ISelectData[];
|
|
539
|
+
onChange: (value: any) => void;
|
|
540
|
+
required?: boolean;
|
|
541
|
+
disabled?: boolean;
|
|
542
|
+
placeholder?: string;
|
|
543
|
+
helperText?: string;
|
|
544
|
+
className?: string;
|
|
545
|
+
minWidth?: number;
|
|
546
|
+
menuWidth?: 'fit-content' | 'max-content' | number;
|
|
547
|
+
autoFocus?: boolean;
|
|
548
|
+
isClearable?: boolean;
|
|
549
|
+
isOpen?: boolean;
|
|
550
|
+
openDirection?: 'top' | 'auto' | 'bottom';
|
|
551
|
+
noOptionsMessage?: string;
|
|
552
|
+
error?: boolean;
|
|
553
|
+
}
|
|
554
|
+
declare const Select: react.ForwardRefExoticComponent<Props$e & react.RefAttributes<any>>;
|
|
555
|
+
|
|
556
|
+
interface Props$d {
|
|
557
|
+
label?: string;
|
|
558
|
+
value?: ISelectData | null;
|
|
559
|
+
valuesMulti?: ISelectData[];
|
|
560
|
+
loadOptions: any;
|
|
561
|
+
refresh?: any[];
|
|
562
|
+
onChange: (value: any) => void;
|
|
563
|
+
required?: boolean;
|
|
564
|
+
disabled?: boolean;
|
|
565
|
+
placeholder?: string;
|
|
566
|
+
helperText?: string;
|
|
567
|
+
className?: string;
|
|
568
|
+
minWidth?: number;
|
|
569
|
+
menuWidth?: 'fit-content' | 'max-content' | number;
|
|
570
|
+
autoFocus?: boolean;
|
|
571
|
+
isMulti?: boolean;
|
|
572
|
+
isClearable?: boolean;
|
|
573
|
+
isOpen?: boolean;
|
|
574
|
+
openDirection?: 'top' | 'auto' | 'bottom';
|
|
575
|
+
noOptionsMessage?: string;
|
|
576
|
+
error?: boolean;
|
|
577
|
+
}
|
|
578
|
+
declare const SelectAsyncPaginate: react.ForwardRefExoticComponent<Props$d & react.RefAttributes<any>>;
|
|
579
|
+
|
|
580
|
+
interface Props$c {
|
|
581
|
+
label?: string;
|
|
582
|
+
value?: ISelectData | null;
|
|
583
|
+
valuesMulti?: ISelectData[];
|
|
584
|
+
loadOptions: any;
|
|
585
|
+
refresh?: any[];
|
|
586
|
+
onChange: (value: any) => void;
|
|
587
|
+
onCreate: (inputValue: string) => void;
|
|
588
|
+
required?: boolean;
|
|
589
|
+
disabled?: boolean;
|
|
590
|
+
placeholder?: string;
|
|
591
|
+
helperText?: string;
|
|
592
|
+
className?: string;
|
|
593
|
+
minWidth?: number;
|
|
594
|
+
menuWidth?: 'fit-content' | 'max-content' | number;
|
|
595
|
+
autoFocus?: boolean;
|
|
596
|
+
isMulti?: boolean;
|
|
597
|
+
isClearable?: boolean;
|
|
598
|
+
isOpen?: boolean;
|
|
599
|
+
openDirection?: 'top' | 'auto' | 'bottom';
|
|
600
|
+
noOptionsMessage?: string;
|
|
601
|
+
error?: boolean;
|
|
602
|
+
defaultData?: ISelectData[];
|
|
603
|
+
formatOptionLabel?: (value: any) => any;
|
|
604
|
+
}
|
|
605
|
+
declare const SelectCreatable: react.ForwardRefExoticComponent<Props$c & react.RefAttributes<any>>;
|
|
606
|
+
|
|
607
|
+
interface Props$b {
|
|
608
|
+
isLoading: boolean;
|
|
609
|
+
classNameLoader?: string;
|
|
610
|
+
children?: ReactElement<{
|
|
611
|
+
className: string;
|
|
612
|
+
children: ReactElement | ReactNode;
|
|
613
|
+
}>;
|
|
614
|
+
}
|
|
615
|
+
declare const Loader: FC<Props$b>;
|
|
616
|
+
declare const FullScreenLoader: FC<{
|
|
617
|
+
isLoading: boolean;
|
|
618
|
+
}>;
|
|
619
|
+
declare const LazyLoader: FC;
|
|
620
|
+
|
|
621
|
+
interface Props$a {
|
|
622
|
+
isOpen: boolean;
|
|
623
|
+
onClose: () => void;
|
|
624
|
+
renderButton: (ref: RefObject<any>) => ReactNode;
|
|
625
|
+
placementX?: 'left' | 'right';
|
|
626
|
+
placementY?: 'bottom' | 'top' | 'auto';
|
|
627
|
+
size?: 's' | 'm' | 'l';
|
|
628
|
+
className?: string;
|
|
629
|
+
children?: ReactNode;
|
|
630
|
+
}
|
|
631
|
+
declare const Menu: FC<Props$a>;
|
|
632
|
+
|
|
633
|
+
interface Props$9 {
|
|
634
|
+
label?: string;
|
|
635
|
+
icon?: IconDefinition;
|
|
636
|
+
iconRotation?: RotateProp;
|
|
637
|
+
onClick?: MouseEventHandler<HTMLDivElement>;
|
|
638
|
+
to?: string;
|
|
639
|
+
disabled?: boolean;
|
|
640
|
+
withDevider?: boolean;
|
|
641
|
+
className?: string;
|
|
642
|
+
children?: ReactNode;
|
|
643
|
+
}
|
|
644
|
+
declare const MenuItem: FC<Props$9>;
|
|
645
|
+
|
|
646
|
+
interface Props$8 {
|
|
647
|
+
item: any;
|
|
648
|
+
setSelectedItem?: (item: any) => void;
|
|
649
|
+
setItemToDeleteUuid?: (uuid: string) => void;
|
|
650
|
+
actions?: {
|
|
651
|
+
label: string;
|
|
652
|
+
onClick: (uuid: string) => void;
|
|
653
|
+
hidden?: boolean;
|
|
654
|
+
disabled?: boolean;
|
|
655
|
+
}[];
|
|
656
|
+
}
|
|
657
|
+
declare const ItemActionsMenu: FC<Props$8>;
|
|
658
|
+
|
|
659
|
+
interface Props$7 {
|
|
660
|
+
setData: (item: any) => void;
|
|
661
|
+
clearItem: () => void;
|
|
662
|
+
inputFocusRef?: RefObject<any>;
|
|
663
|
+
defaultDataValue?: any;
|
|
664
|
+
}
|
|
665
|
+
declare const ItemEditOptionsButtons: FC<Props$7>;
|
|
666
|
+
|
|
667
|
+
declare const TableEditRow: FC<ITableEditRow>;
|
|
668
|
+
|
|
669
|
+
interface Props$6 {
|
|
670
|
+
item: ITableFilterItem;
|
|
671
|
+
}
|
|
672
|
+
declare const FilterItem: FC<Props$6>;
|
|
673
|
+
|
|
674
|
+
interface Props$5 extends ITableFilterData {
|
|
675
|
+
isOpen: boolean;
|
|
676
|
+
onClose: () => void;
|
|
677
|
+
}
|
|
678
|
+
declare const SetTableFilter: FC<Props$5>;
|
|
679
|
+
|
|
680
|
+
interface Props$4 {
|
|
681
|
+
limit: number;
|
|
682
|
+
offset: number;
|
|
683
|
+
setLimit: (limit: number) => void;
|
|
684
|
+
setOffset: (offset: number) => void;
|
|
685
|
+
totalRows: number;
|
|
686
|
+
footerAction?: {
|
|
687
|
+
icon?: IconDefinition;
|
|
688
|
+
onClick: MouseEventHandler<HTMLButtonElement>;
|
|
689
|
+
};
|
|
690
|
+
customLimit?: number[];
|
|
691
|
+
}
|
|
692
|
+
declare const TableFooter: FC<Props$4>;
|
|
693
|
+
|
|
694
|
+
declare const Table: FC<ITable>;
|
|
695
|
+
|
|
696
|
+
interface Props$3 {
|
|
697
|
+
tabs: ITab[];
|
|
698
|
+
initialValue?: string;
|
|
699
|
+
control?: {
|
|
700
|
+
value: string;
|
|
701
|
+
setValue: (value: string) => void;
|
|
702
|
+
};
|
|
703
|
+
onChange?: (value: string) => void;
|
|
704
|
+
noWrap?: boolean;
|
|
705
|
+
className?: string;
|
|
706
|
+
classNameContent?: string;
|
|
707
|
+
}
|
|
708
|
+
declare const Tabs: FC<Props$3>;
|
|
709
|
+
|
|
710
|
+
type Position = 'left' | 'right' | 'top' | 'bottom';
|
|
711
|
+
interface Props$2 {
|
|
712
|
+
label?: string;
|
|
713
|
+
position?: Position;
|
|
714
|
+
disabled?: boolean;
|
|
715
|
+
singleLine?: boolean;
|
|
716
|
+
className?: string;
|
|
717
|
+
children: ReactElement;
|
|
718
|
+
}
|
|
719
|
+
declare const Tooltip: FC<Props$2>;
|
|
720
|
+
|
|
721
|
+
interface Props$1 {
|
|
722
|
+
data: ITreeItem[];
|
|
723
|
+
onClick: (itemUuid: string) => void;
|
|
724
|
+
}
|
|
725
|
+
declare const Tree: FC<Props$1>;
|
|
726
|
+
|
|
727
|
+
interface Props {
|
|
728
|
+
condition: boolean;
|
|
729
|
+
wrapper: (children: ReactNode) => ReactNode;
|
|
730
|
+
children: ReactNode;
|
|
731
|
+
}
|
|
732
|
+
declare const ConditionalWrapper: FC<Props>;
|
|
733
|
+
|
|
734
|
+
interface IHeaderAction {
|
|
735
|
+
label: string;
|
|
736
|
+
icon?: IconDefinition;
|
|
737
|
+
iconRotation?: RotateProp;
|
|
738
|
+
to?: string;
|
|
739
|
+
onClick?: () => void;
|
|
740
|
+
solid?: boolean;
|
|
741
|
+
color?: IButtonColor;
|
|
742
|
+
disabled?: boolean;
|
|
743
|
+
hidden?: boolean;
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
interface IPageWrapper {
|
|
747
|
+
breadcrumbs: (string | undefined)[];
|
|
748
|
+
actions?: IHeaderAction[];
|
|
749
|
+
moreActions?: IHeaderAction[];
|
|
750
|
+
backButton?: {
|
|
751
|
+
url?: string;
|
|
752
|
+
active: boolean;
|
|
753
|
+
};
|
|
754
|
+
noAccess?: boolean;
|
|
755
|
+
isLoading?: boolean;
|
|
756
|
+
children?: ReactNode;
|
|
757
|
+
}
|
|
758
|
+
declare const PageWrapper: FC<IPageWrapper>;
|
|
759
|
+
|
|
760
|
+
declare const formatDate: (date?: string) => string;
|
|
761
|
+
declare const formatDateYMD: (date: string | Date) => string;
|
|
762
|
+
declare const formatDateAndTime: (date?: string, withSeconds?: boolean) => string;
|
|
763
|
+
declare const formatTime: (date?: string, withSeconds?: boolean) => string;
|
|
764
|
+
declare const dateAddDays: (date: string, addDays: number) => string;
|
|
765
|
+
declare const checkIfExpired: (date?: string) => boolean;
|
|
766
|
+
declare const getCurrentDateFormatted: () => string;
|
|
767
|
+
declare const getCurrentDateFormattedYMD: () => string;
|
|
768
|
+
declare const getDaysLeft: (date?: string) => number;
|
|
769
|
+
declare const formatYearMonth: (year: number, month: number) => string;
|
|
770
|
+
|
|
771
|
+
declare const sizeInBytesPretty: (bytes?: number) => string;
|
|
772
|
+
declare const dataURLtoFile: (dataUrl: string, filename: string, fileExt: string) => File;
|
|
773
|
+
declare const getExtensionFromFilename: (filename?: string) => string;
|
|
774
|
+
declare const calculateFilesSize: (filesList: any[], selectedFiles: IBooleanObject) => any;
|
|
775
|
+
declare const downloadDocumentFile: (fileName: string, url: string, type: 'pdf' | 'xml' | 'xlsx', apiUrl?: string, search?: any) => void;
|
|
776
|
+
declare const getFileFromUrl: (url: string, name: string) => Promise<File>;
|
|
777
|
+
declare const getBase64FromFile: (file: Blob, callback: (data: string) => void) => void;
|
|
778
|
+
declare const getBase64FromUrl: (url: string, callback: (data: string) => void) => void;
|
|
779
|
+
declare const splitBase64File: (base64: string, type?: 'img') => {
|
|
780
|
+
contentType: string;
|
|
781
|
+
base64Data: string;
|
|
782
|
+
};
|
|
783
|
+
declare const rotateBase64Image: (base64data: string, angle: number, callback: (data: string) => void) => void;
|
|
784
|
+
|
|
785
|
+
declare const inputPattern: {
|
|
786
|
+
taxId: string;
|
|
787
|
+
registrationNumber: string;
|
|
788
|
+
personalIdentityNumber: string;
|
|
789
|
+
idCardNumber: string;
|
|
790
|
+
phoneNumber: string;
|
|
791
|
+
port: string;
|
|
792
|
+
year: string;
|
|
793
|
+
number: string;
|
|
794
|
+
};
|
|
795
|
+
|
|
796
|
+
type LocalStorageItem = 'activeUser' | 'token' | 'refreshToken' | 'logInWay' | 'nextUrl' | 'codeVerifier' | 'language';
|
|
797
|
+
declare const lsGet: (key: LocalStorageItem) => string | null;
|
|
798
|
+
declare const lsSet: (key: LocalStorageItem, value: string) => void;
|
|
799
|
+
declare const lsRemove: (key: LocalStorageItem) => void;
|
|
800
|
+
declare const getDefaultOrgUuid: () => string;
|
|
801
|
+
declare const setDefaultOrgUuid: (organizationUuid: string) => void;
|
|
802
|
+
declare const getActiveOrgUuid: () => string;
|
|
803
|
+
declare const setActiveOrgUuid: (organizationUuid: string) => void;
|
|
804
|
+
|
|
805
|
+
declare const formatCurrency: (number?: string | number, minimumFractionDigits?: number, maximumFractionDigits?: number) => string;
|
|
806
|
+
declare const formatCurrencyNoDecimals: (number?: string | number) => string;
|
|
807
|
+
declare const formatDecimalNumber: (number?: string | number) => string | 0;
|
|
808
|
+
|
|
809
|
+
declare const deleteProps: (obj: IAnyObject, props: string[]) => {
|
|
810
|
+
[x: string]: any;
|
|
811
|
+
};
|
|
812
|
+
declare const deletePropsThatEndsWith: (obj: IAnyObject, endsWith: string) => {
|
|
813
|
+
[x: string]: any;
|
|
814
|
+
};
|
|
815
|
+
declare const deleteEmptyProps: (obj: IAnyObject) => any;
|
|
816
|
+
declare const deleteEmptyPropsIncludingArray: (obj: IAnyObject) => any;
|
|
817
|
+
declare const convertBooleanObjectToArray: (obj: {
|
|
818
|
+
[key: string]: boolean;
|
|
819
|
+
}) => string[];
|
|
820
|
+
declare const getActiveFilterNumber: (obj: IAnyObject) => number;
|
|
821
|
+
declare const getPrintColumns: (tableCols: ITableColumn[]) => string[];
|
|
822
|
+
declare const getVisibleColumnsIds: (tableCols: ITableColumn[], isPrint?: boolean) => string[];
|
|
823
|
+
declare const deepCopy: (el: any[] | object) => any;
|
|
824
|
+
declare const areStringArraysEqual: (arr1: string[], arr2: string[]) => boolean;
|
|
825
|
+
|
|
826
|
+
declare const rootDir: HTMLElement;
|
|
827
|
+
|
|
828
|
+
declare const maxChar: (str?: string, maxLength?: number) => string;
|
|
829
|
+
declare const getInputHelperText: (t: any, min?: string | number, max?: string | number) => any;
|
|
830
|
+
declare const getInputMinMaxPattern: (min?: string | number, max?: string | number) => string;
|
|
831
|
+
|
|
832
|
+
declare const toastSuccess: (message: string) => react_toastify.Id;
|
|
833
|
+
declare const toastError: (message: string) => react_toastify.Id;
|
|
834
|
+
|
|
835
|
+
declare const parseUrlSearch: (search: string) => {
|
|
836
|
+
[k: string]: string;
|
|
837
|
+
};
|
|
838
|
+
|
|
839
|
+
declare const i18nCommonLatin: {
|
|
840
|
+
ADMIN: string;
|
|
841
|
+
EARCHIVE: string;
|
|
842
|
+
ERDS: string;
|
|
843
|
+
EDMS: string;
|
|
844
|
+
EFORMS: string;
|
|
845
|
+
EINVOICE: string;
|
|
846
|
+
ESIGN: string;
|
|
847
|
+
EVALIDATION: string;
|
|
848
|
+
EPROCUREMENT: string;
|
|
849
|
+
EREGISTER: string;
|
|
850
|
+
AccordionView: string;
|
|
851
|
+
Actions: string;
|
|
852
|
+
Active: string;
|
|
853
|
+
AddInput: string;
|
|
854
|
+
Back: string;
|
|
855
|
+
Basic: string;
|
|
856
|
+
BasicData: string;
|
|
857
|
+
Cancel: string;
|
|
858
|
+
Change: string;
|
|
859
|
+
Choose: string;
|
|
860
|
+
Close: string;
|
|
861
|
+
Confirm: string;
|
|
862
|
+
Create: string;
|
|
863
|
+
Delete: string;
|
|
864
|
+
Edit: string;
|
|
865
|
+
FooterText: string;
|
|
866
|
+
FreeText: string;
|
|
867
|
+
from: string;
|
|
868
|
+
Group: string;
|
|
869
|
+
Groups: string;
|
|
870
|
+
Next: string;
|
|
871
|
+
No: string;
|
|
872
|
+
Ok: string;
|
|
873
|
+
Options: string;
|
|
874
|
+
or: string;
|
|
875
|
+
PageNotFound: string;
|
|
876
|
+
Save: string;
|
|
877
|
+
Search: string;
|
|
878
|
+
Selected: string;
|
|
879
|
+
Send: string;
|
|
880
|
+
Sending: string;
|
|
881
|
+
SendHistory: string;
|
|
882
|
+
TabView: string;
|
|
883
|
+
Title: string;
|
|
884
|
+
to: string;
|
|
885
|
+
User: string;
|
|
886
|
+
Yes: string;
|
|
887
|
+
Settings: string;
|
|
888
|
+
allResults: string;
|
|
889
|
+
Columns: string;
|
|
890
|
+
DragDropListsInfo: string;
|
|
891
|
+
Filter: string;
|
|
892
|
+
HiddenColumns: string;
|
|
893
|
+
NoResults: string;
|
|
894
|
+
of: string;
|
|
895
|
+
page: string;
|
|
896
|
+
Print: string;
|
|
897
|
+
PrintDate: string;
|
|
898
|
+
PrintExport: string;
|
|
899
|
+
ResetFilter: string;
|
|
900
|
+
rowsPerPage: string;
|
|
901
|
+
SaveXlsx: string;
|
|
902
|
+
SelectedColumns: string;
|
|
903
|
+
Sort: string;
|
|
904
|
+
CharMin: string;
|
|
905
|
+
CharRange: string;
|
|
906
|
+
CharNumber: string;
|
|
907
|
+
Pending: string;
|
|
908
|
+
Successfully: string;
|
|
909
|
+
DeletedSuccessfully: string;
|
|
910
|
+
ErrorMessage: string;
|
|
911
|
+
TryAgain: string;
|
|
912
|
+
ChangeOrganization: string;
|
|
913
|
+
Logout: string;
|
|
914
|
+
MyAccount: string;
|
|
915
|
+
SelectAccount: string;
|
|
916
|
+
SelectOrgDesc: string;
|
|
917
|
+
SessionExpired: string;
|
|
918
|
+
SessionExpiredInfo: string;
|
|
919
|
+
SetOrgAsDefault: string;
|
|
920
|
+
SignInWithDifferentAccount: string;
|
|
921
|
+
NoAccessTitle: string;
|
|
922
|
+
ReturnToHomepage: string;
|
|
923
|
+
Name: string;
|
|
924
|
+
FirstName: string;
|
|
925
|
+
LastName: string;
|
|
926
|
+
Email: string;
|
|
927
|
+
TaxId: string;
|
|
928
|
+
RegistrationNumber: string;
|
|
929
|
+
FullPhoneNumber: string;
|
|
930
|
+
LoggedUserOrganizations: string;
|
|
931
|
+
Organization: string;
|
|
932
|
+
Organizations: string;
|
|
933
|
+
OrganizationalUnit: string;
|
|
934
|
+
OrganizationalUnits: string;
|
|
935
|
+
OrganizationName: string;
|
|
936
|
+
Partner: string;
|
|
937
|
+
Partners: string;
|
|
938
|
+
PhysicalPerson: string;
|
|
939
|
+
PhysicalPersons: string;
|
|
940
|
+
LegalEntity: string;
|
|
941
|
+
LegalEntities: string;
|
|
942
|
+
ForeignPartner: string;
|
|
943
|
+
ForeignPartners: string;
|
|
944
|
+
BusinessId: string;
|
|
945
|
+
AddLegalEntity: string;
|
|
946
|
+
AddPartner: string;
|
|
947
|
+
AddressBook: string;
|
|
948
|
+
Contacts: string;
|
|
949
|
+
DeleteContactPersonConfirmation: string;
|
|
950
|
+
DeleteContactPersonTitle: string;
|
|
951
|
+
DeletePartnerNoteConfirmation: string;
|
|
952
|
+
DeletePartnerNoteTitle: string;
|
|
953
|
+
EmailAddress: string;
|
|
954
|
+
FetchFromNbs: string;
|
|
955
|
+
GetDataFromNbs: string;
|
|
956
|
+
Invoices: string;
|
|
957
|
+
Documents: string;
|
|
958
|
+
Factoring: string;
|
|
959
|
+
ePismonosa: string;
|
|
960
|
+
SEF: string;
|
|
961
|
+
Approval: string;
|
|
962
|
+
ApprovalStatus: string;
|
|
963
|
+
ShowOnInvoice: string;
|
|
964
|
+
Bank: string;
|
|
965
|
+
BankAccount: string;
|
|
966
|
+
BankAccounts: string;
|
|
967
|
+
EditBankAccount: string;
|
|
968
|
+
AddBankAccount: string;
|
|
969
|
+
MainBankAccount: string;
|
|
970
|
+
IntermediaryBank: string;
|
|
971
|
+
Iban: string;
|
|
972
|
+
Step: string;
|
|
973
|
+
ContractNumber: string;
|
|
974
|
+
Deadline: string;
|
|
975
|
+
Condition: string;
|
|
976
|
+
LastStep: string;
|
|
977
|
+
Address: string;
|
|
978
|
+
BestPaidBefore: string;
|
|
979
|
+
BusinessActivity: string;
|
|
980
|
+
CaseNumber: string;
|
|
981
|
+
Category: string;
|
|
982
|
+
ChangeDate: string;
|
|
983
|
+
ConclusionDate: string;
|
|
984
|
+
ContractDate: string;
|
|
985
|
+
Country: string;
|
|
986
|
+
CreatedAt: string;
|
|
987
|
+
CreatedBy: string;
|
|
988
|
+
CreatedTime: string;
|
|
989
|
+
Currency: string;
|
|
990
|
+
Date: string;
|
|
991
|
+
DateOfReceipt: string;
|
|
992
|
+
Description: string;
|
|
993
|
+
DocumentDate: string;
|
|
994
|
+
DocumentNumber: string;
|
|
995
|
+
DocumentNumberLike: string;
|
|
996
|
+
DocumentType: string;
|
|
997
|
+
DocumentTypes: string;
|
|
998
|
+
EvidenceDate: string;
|
|
999
|
+
EvidenceReferenceNumber: string;
|
|
1000
|
+
ExpirationDate: string;
|
|
1001
|
+
Income: string;
|
|
1002
|
+
INCOME: string;
|
|
1003
|
+
IncomeDocument: string;
|
|
1004
|
+
IncomeDocuments: string;
|
|
1005
|
+
InvoiceDate: string;
|
|
1006
|
+
InvoiceNumber: string;
|
|
1007
|
+
IsEInvoiceReceiver: string;
|
|
1008
|
+
IssueDate: string;
|
|
1009
|
+
Issuer: string;
|
|
1010
|
+
IssuerBankAccount: string;
|
|
1011
|
+
Jbkjs: string;
|
|
1012
|
+
Municipality: string;
|
|
1013
|
+
Note: string;
|
|
1014
|
+
Notes: string;
|
|
1015
|
+
Number: string;
|
|
1016
|
+
ObjectCode: string;
|
|
1017
|
+
OrderNumber: string;
|
|
1018
|
+
Outcome: string;
|
|
1019
|
+
OUTCOME: string;
|
|
1020
|
+
OutcomeDocument: string;
|
|
1021
|
+
OutcomeDocuments: string;
|
|
1022
|
+
PaymentDate: string;
|
|
1023
|
+
PersonalIdentityNumber: string;
|
|
1024
|
+
Phase: string;
|
|
1025
|
+
Phone: string;
|
|
1026
|
+
PlaceOfResidence: string;
|
|
1027
|
+
PlannedPaymentDate: string;
|
|
1028
|
+
Position: string;
|
|
1029
|
+
PostalCode: string;
|
|
1030
|
+
PrimaryContact: string;
|
|
1031
|
+
ReceiveDate: string;
|
|
1032
|
+
Receiver: string;
|
|
1033
|
+
ReceiverBankAccount: string;
|
|
1034
|
+
Sef: string;
|
|
1035
|
+
SefComment: string;
|
|
1036
|
+
SefDeadline: string;
|
|
1037
|
+
SefDeadlineDays: string;
|
|
1038
|
+
SefStatus: string;
|
|
1039
|
+
SendStatus: string;
|
|
1040
|
+
Status: string;
|
|
1041
|
+
StatusPhase: string;
|
|
1042
|
+
StepPhase: string;
|
|
1043
|
+
StepPhases: string;
|
|
1044
|
+
Street: string;
|
|
1045
|
+
Subject: string;
|
|
1046
|
+
Supplier: string;
|
|
1047
|
+
Time: string;
|
|
1048
|
+
Town: string;
|
|
1049
|
+
TrafficDate: string;
|
|
1050
|
+
UniqueNo: string;
|
|
1051
|
+
UserStepDate: string;
|
|
1052
|
+
Verified: string;
|
|
1053
|
+
VoteNumber: string;
|
|
1054
|
+
Website: string;
|
|
1055
|
+
AddIndexField: string;
|
|
1056
|
+
Attachments: string;
|
|
1057
|
+
CreationTime: string;
|
|
1058
|
+
DeleteFileDesc: string;
|
|
1059
|
+
DeleteFileTitle: string;
|
|
1060
|
+
DisplaySignatureOnDocument: string;
|
|
1061
|
+
Download: string;
|
|
1062
|
+
DownloadAll: string;
|
|
1063
|
+
DownloadDocument: string;
|
|
1064
|
+
Downloaded: string;
|
|
1065
|
+
DownloadOriginalDocument: string;
|
|
1066
|
+
DownloadSignedDocument: string;
|
|
1067
|
+
DownloadValidationReport: string;
|
|
1068
|
+
ElSignature: string;
|
|
1069
|
+
ErrorUnsupportedFile: string;
|
|
1070
|
+
FailedToLoadPDF: string;
|
|
1071
|
+
FileName: string;
|
|
1072
|
+
Files: string;
|
|
1073
|
+
FileSendNotificationInfo: string;
|
|
1074
|
+
FileType: string;
|
|
1075
|
+
FileTypes: string;
|
|
1076
|
+
LoadingPDF: string;
|
|
1077
|
+
NotificationChannel: string;
|
|
1078
|
+
OrJustDragAndDropFile: string;
|
|
1079
|
+
PersonalIdentityNumberDescription: string;
|
|
1080
|
+
PersonalIdentityNumberLong: string;
|
|
1081
|
+
ScanQR: string;
|
|
1082
|
+
ScanQRInfo: string;
|
|
1083
|
+
SendForSigning: string;
|
|
1084
|
+
Sign: string;
|
|
1085
|
+
Signature: string;
|
|
1086
|
+
SignatureLook: string;
|
|
1087
|
+
Signed: string;
|
|
1088
|
+
SignOnThisDevice: string;
|
|
1089
|
+
Size: string;
|
|
1090
|
+
Type: string;
|
|
1091
|
+
AddSignatory: string;
|
|
1092
|
+
AddSignatories: string;
|
|
1093
|
+
DeleteFileSignatoryTitle: string;
|
|
1094
|
+
DeleteFileSignatoryDesc: string;
|
|
1095
|
+
Report: string;
|
|
1096
|
+
ReportDate: string;
|
|
1097
|
+
ReportFromTo: string;
|
|
1098
|
+
AllNotifications: string;
|
|
1099
|
+
InApp: string;
|
|
1100
|
+
MarkAllAsRead: string;
|
|
1101
|
+
NoNewNotifications: string;
|
|
1102
|
+
Notifications: string;
|
|
1103
|
+
NotificationSound: string;
|
|
1104
|
+
Unread: string;
|
|
1105
|
+
NTitleADD_DOC: string;
|
|
1106
|
+
NContentADD_DOC: string;
|
|
1107
|
+
NTitleADD_INCOME_DOCUMENT: string;
|
|
1108
|
+
NContentADD_INCOME_DOCUMENT: string;
|
|
1109
|
+
NTitleDOCUMENT_VERIFICATION_DONE: string;
|
|
1110
|
+
NContentDOCUMENT_VERIFICATION_DONE: string;
|
|
1111
|
+
NTitleCHAT_MENTIONED: string;
|
|
1112
|
+
NContentCHAT_MENTIONED: string;
|
|
1113
|
+
NTitleDOCUMENT_APPROVAL_STEP_START: string;
|
|
1114
|
+
NContentDOCUMENT_APPROVAL_STEP_START: string;
|
|
1115
|
+
NTitleINVOICE_CANCELLATION: string;
|
|
1116
|
+
NContentINVOICE_CANCELLATION: string;
|
|
1117
|
+
NTitleINVOICE_STORNO: string;
|
|
1118
|
+
NContentINVOICE_STORNO: string;
|
|
1119
|
+
NTitleINCOME_INVOICE_APPROVED: string;
|
|
1120
|
+
NContentINCOME_INVOICE_APPROVED: string;
|
|
1121
|
+
NTitleOUTCOME_INVOICE_APPROVED: string;
|
|
1122
|
+
NContentOUTCOME_INVOICE_APPROVED: string;
|
|
1123
|
+
NTitleINCOME_INVOICE_REJECTED: string;
|
|
1124
|
+
NContentINCOME_INVOICE_REJECTED: string;
|
|
1125
|
+
NTitleOUTCOME_INVOICE_REJECTED: string;
|
|
1126
|
+
NContentOUTCOME_INVOICE_REJECTED: string;
|
|
1127
|
+
NTitleOUTCOME_INVOICE_ERROR: string;
|
|
1128
|
+
NContentOUTCOME_INVOICE_ERROR: string;
|
|
1129
|
+
NTitleSEF_VERIFICATION_DEADLINE_TIME_EXPIRED: string;
|
|
1130
|
+
NContentSEF_VERIFICATION_DEADLINE_TIME_EXPIRED: string;
|
|
1131
|
+
NTitleAPPROVAL_AD_HOC_VOTE: string;
|
|
1132
|
+
NContentAPPROVAL_AD_HOC_VOTE: string;
|
|
1133
|
+
InProgress: string;
|
|
1134
|
+
FinalStatus: string;
|
|
1135
|
+
LatestApprovalStatus: string;
|
|
1136
|
+
LatestApprovalStatusAPPROVED: string;
|
|
1137
|
+
LatestApprovalStatusDECLINED: string;
|
|
1138
|
+
LatestApprovalStatusIN_PROGRESS: string;
|
|
1139
|
+
LatestApprovalStatusNOT_STARTED: string;
|
|
1140
|
+
SendStatusAPPROVED: string;
|
|
1141
|
+
SendStatusCANCELLED: string;
|
|
1142
|
+
SendStatusDELETED: string;
|
|
1143
|
+
SendStatusDOWNLOADED: string;
|
|
1144
|
+
SendStatusERROR: string;
|
|
1145
|
+
SendStatusMISTAKE: string;
|
|
1146
|
+
SendStatusNOT_REGISTERED_ON_SEF: string;
|
|
1147
|
+
SendStatusQUEUED: string;
|
|
1148
|
+
SendStatusREJECTED: string;
|
|
1149
|
+
SendStatusRENOTIFIED: string;
|
|
1150
|
+
SendStatusSEEN: string;
|
|
1151
|
+
SendStatusSENDING: string;
|
|
1152
|
+
SendStatusSENT: string;
|
|
1153
|
+
SendStatusSIGNED: string;
|
|
1154
|
+
SendStatusSTORNO: string;
|
|
1155
|
+
SendStatusUNRESOLVED: string;
|
|
1156
|
+
HomePage: string;
|
|
1157
|
+
Activate: string;
|
|
1158
|
+
ActivationGuide: string;
|
|
1159
|
+
ActivationGuideDesc: string;
|
|
1160
|
+
OpenStartGuide: string;
|
|
1161
|
+
ReportsByPhasesWidget: string;
|
|
1162
|
+
DocumentsOnHold: string;
|
|
1163
|
+
ExpiringContractsIn30: string;
|
|
1164
|
+
EmailVerification: string;
|
|
1165
|
+
EmailVerificationDesc: string;
|
|
1166
|
+
IdentityVerification: string;
|
|
1167
|
+
IdentityVerificationDesc: string;
|
|
1168
|
+
CellPhoneNumberVerification: string;
|
|
1169
|
+
CellPhoneNumberVerificationDesc: string;
|
|
1170
|
+
CompanyRegistration: string;
|
|
1171
|
+
CompanyRegistrationDesc: string;
|
|
1172
|
+
ModuleActivation: string;
|
|
1173
|
+
ModuleActive: string;
|
|
1174
|
+
eInvoiceActiovationInfo: string;
|
|
1175
|
+
eDeliveryActiovationInfo: string;
|
|
1176
|
+
RegisterNewCompany: string;
|
|
1177
|
+
RegisterNewCompanyDesc: string;
|
|
1178
|
+
IdentityRequiredForRegistration: string;
|
|
1179
|
+
IdentityRequiredForRegistrationDesc: string;
|
|
1180
|
+
RegisterCompany: string;
|
|
1181
|
+
NoIdentityForRegistration: string;
|
|
1182
|
+
VerifyEmail: string;
|
|
1183
|
+
VerifyIdentity: string;
|
|
1184
|
+
VerifyIdentityWithQC: string;
|
|
1185
|
+
VerifyPhone: string;
|
|
1186
|
+
CompanyRegistered: string;
|
|
1187
|
+
AccountStatus: string;
|
|
1188
|
+
AccountStatusContent: string;
|
|
1189
|
+
AddPhoneNumber: string;
|
|
1190
|
+
AddPhoneNumberCode: string;
|
|
1191
|
+
ConfirmCellPhoneNumber: string;
|
|
1192
|
+
SMSCode: string;
|
|
1193
|
+
SendCodeAgain: string;
|
|
1194
|
+
IdentityConfirmationOptionsDesc: string;
|
|
1195
|
+
ConfirmIdentity: string;
|
|
1196
|
+
SelfieIdentification: string;
|
|
1197
|
+
SelfieIdentificationDesc: string;
|
|
1198
|
+
CertificateIdentification: string;
|
|
1199
|
+
CertificateIdentificationDesc: string;
|
|
1200
|
+
ZoomApp: string;
|
|
1201
|
+
ZoomAppDesc: string;
|
|
1202
|
+
PersonalAccount: string;
|
|
1203
|
+
PersonalAccountDesc: string;
|
|
1204
|
+
PersonalAccountWithCert: string;
|
|
1205
|
+
PeronalAccountCreatedBy: string;
|
|
1206
|
+
ElMailBox: string;
|
|
1207
|
+
OrganizationWidgetDesc: string;
|
|
1208
|
+
ApprovalList: string;
|
|
1209
|
+
Registration: string;
|
|
1210
|
+
CourseListNBSOnCurrentDay: string;
|
|
1211
|
+
IdentityConfirmed: string;
|
|
1212
|
+
IdentityConfirmedDesc: string;
|
|
1213
|
+
AccountActivated: string;
|
|
1214
|
+
AccountActivatedDesc: string;
|
|
1215
|
+
EmailVerificationCompleted: string;
|
|
1216
|
+
EmailVerificationCompletedDesc: string;
|
|
1217
|
+
};
|
|
1218
|
+
declare const i18nCommonCyrilic: {
|
|
1219
|
+
ADMIN: string;
|
|
1220
|
+
EARCHIVE: string;
|
|
1221
|
+
ERDS: string;
|
|
1222
|
+
EDMS: string;
|
|
1223
|
+
EFORMS: string;
|
|
1224
|
+
EINVOICE: string;
|
|
1225
|
+
ESIGN: string;
|
|
1226
|
+
EVALIDATION: string;
|
|
1227
|
+
EPROCUREMENT: string;
|
|
1228
|
+
EREGISTER: string;
|
|
1229
|
+
AccordionView: string;
|
|
1230
|
+
Actions: string;
|
|
1231
|
+
Active: string;
|
|
1232
|
+
AddInput: string;
|
|
1233
|
+
Back: string;
|
|
1234
|
+
Basic: string;
|
|
1235
|
+
BasicData: string;
|
|
1236
|
+
Cancel: string;
|
|
1237
|
+
Change: string;
|
|
1238
|
+
Choose: string;
|
|
1239
|
+
Close: string;
|
|
1240
|
+
Confirm: string;
|
|
1241
|
+
Create: string;
|
|
1242
|
+
Delete: string;
|
|
1243
|
+
Edit: string;
|
|
1244
|
+
FooterText: string;
|
|
1245
|
+
FreeText: string;
|
|
1246
|
+
from: string;
|
|
1247
|
+
Group: string;
|
|
1248
|
+
Groups: string;
|
|
1249
|
+
Next: string;
|
|
1250
|
+
No: string;
|
|
1251
|
+
Ok: string;
|
|
1252
|
+
Options: string;
|
|
1253
|
+
or: string;
|
|
1254
|
+
PageNotFound: string;
|
|
1255
|
+
Save: string;
|
|
1256
|
+
Search: string;
|
|
1257
|
+
Selected: string;
|
|
1258
|
+
Send: string;
|
|
1259
|
+
Sending: string;
|
|
1260
|
+
SendHistory: string;
|
|
1261
|
+
TabView: string;
|
|
1262
|
+
Title: string;
|
|
1263
|
+
to: string;
|
|
1264
|
+
User: string;
|
|
1265
|
+
Yes: string;
|
|
1266
|
+
Settings: string;
|
|
1267
|
+
allResults: string;
|
|
1268
|
+
Columns: string;
|
|
1269
|
+
DragDropListsInfo: string;
|
|
1270
|
+
Filter: string;
|
|
1271
|
+
HiddenColumns: string;
|
|
1272
|
+
NoResults: string;
|
|
1273
|
+
of: string;
|
|
1274
|
+
page: string;
|
|
1275
|
+
Print: string;
|
|
1276
|
+
PrintDate: string;
|
|
1277
|
+
PrintExport: string;
|
|
1278
|
+
ResetFilter: string;
|
|
1279
|
+
rowsPerPage: string;
|
|
1280
|
+
SaveXlsx: string;
|
|
1281
|
+
SelectedColumns: string;
|
|
1282
|
+
Sort: string;
|
|
1283
|
+
CharMin: string;
|
|
1284
|
+
CharRange: string;
|
|
1285
|
+
CharNumber: string;
|
|
1286
|
+
Pending: string;
|
|
1287
|
+
Successfully: string;
|
|
1288
|
+
DeletedSuccessfully: string;
|
|
1289
|
+
ErrorMessage: string;
|
|
1290
|
+
TryAgain: string;
|
|
1291
|
+
ChangeOrganization: string;
|
|
1292
|
+
Logout: string;
|
|
1293
|
+
MyAccount: string;
|
|
1294
|
+
SelectAccount: string;
|
|
1295
|
+
SelectOrgDesc: string;
|
|
1296
|
+
SessionExpired: string;
|
|
1297
|
+
SessionExpiredInfo: string;
|
|
1298
|
+
SetOrgAsDefault: string;
|
|
1299
|
+
SignInWithDifferentAccount: string;
|
|
1300
|
+
NoAccessTitle: string;
|
|
1301
|
+
ReturnToHomepage: string;
|
|
1302
|
+
Name: string;
|
|
1303
|
+
FirstName: string;
|
|
1304
|
+
LastName: string;
|
|
1305
|
+
Email: string;
|
|
1306
|
+
TaxId: string;
|
|
1307
|
+
RegistrationNumber: string;
|
|
1308
|
+
FullPhoneNumber: string;
|
|
1309
|
+
LoggedUserOrganizations: string;
|
|
1310
|
+
Organization: string;
|
|
1311
|
+
Organizations: string;
|
|
1312
|
+
OrganizationalUnit: string;
|
|
1313
|
+
OrganizationalUnits: string;
|
|
1314
|
+
OrganizationName: string;
|
|
1315
|
+
Partner: string;
|
|
1316
|
+
Partners: string;
|
|
1317
|
+
PhysicalPerson: string;
|
|
1318
|
+
PhysicalPersons: string;
|
|
1319
|
+
LegalEntity: string;
|
|
1320
|
+
LegalEntities: string;
|
|
1321
|
+
ForeignPartner: string;
|
|
1322
|
+
ForeignPartners: string;
|
|
1323
|
+
BusinessId: string;
|
|
1324
|
+
AddLegalEntity: string;
|
|
1325
|
+
AddPartner: string;
|
|
1326
|
+
AddressBook: string;
|
|
1327
|
+
Contacts: string;
|
|
1328
|
+
DeleteContactPersonConfirmation: string;
|
|
1329
|
+
DeleteContactPersonTitle: string;
|
|
1330
|
+
DeletePartnerNoteConfirmation: string;
|
|
1331
|
+
DeletePartnerNoteTitle: string;
|
|
1332
|
+
EmailAddress: string;
|
|
1333
|
+
FetchFromNbs: string;
|
|
1334
|
+
GetDataFromNbs: string;
|
|
1335
|
+
Invoices: string;
|
|
1336
|
+
Documents: string;
|
|
1337
|
+
Factoring: string;
|
|
1338
|
+
ePismonosa: string;
|
|
1339
|
+
SEF: string;
|
|
1340
|
+
Approval: string;
|
|
1341
|
+
ApprovalStatus: string;
|
|
1342
|
+
ShowOnInvoice: string;
|
|
1343
|
+
Bank: string;
|
|
1344
|
+
BankAccount: string;
|
|
1345
|
+
BankAccounts: string;
|
|
1346
|
+
EditBankAccount: string;
|
|
1347
|
+
AddBankAccount: string;
|
|
1348
|
+
MainBankAccount: string;
|
|
1349
|
+
IntermediaryBank: string;
|
|
1350
|
+
Iban: string;
|
|
1351
|
+
Step: string;
|
|
1352
|
+
ContractNumber: string;
|
|
1353
|
+
Deadline: string;
|
|
1354
|
+
Condition: string;
|
|
1355
|
+
LastStep: string;
|
|
1356
|
+
Address: string;
|
|
1357
|
+
BestPaidBefore: string;
|
|
1358
|
+
BusinessActivity: string;
|
|
1359
|
+
CaseNumber: string;
|
|
1360
|
+
Category: string;
|
|
1361
|
+
ChangeDate: string;
|
|
1362
|
+
ConclusionDate: string;
|
|
1363
|
+
ContractDate: string;
|
|
1364
|
+
Country: string;
|
|
1365
|
+
CreatedAt: string;
|
|
1366
|
+
CreatedBy: string;
|
|
1367
|
+
CreatedTime: string;
|
|
1368
|
+
Currency: string;
|
|
1369
|
+
Date: string;
|
|
1370
|
+
DateOfReceipt: string;
|
|
1371
|
+
Description: string;
|
|
1372
|
+
DocumentDate: string;
|
|
1373
|
+
DocumentNumber: string;
|
|
1374
|
+
DocumentNumberLike: string;
|
|
1375
|
+
DocumentType: string;
|
|
1376
|
+
DocumentTypes: string;
|
|
1377
|
+
EvidenceDate: string;
|
|
1378
|
+
EvidenceReferenceNumber: string;
|
|
1379
|
+
ExpirationDate: string;
|
|
1380
|
+
Income: string;
|
|
1381
|
+
INCOME: string;
|
|
1382
|
+
IncomeDocument: string;
|
|
1383
|
+
IncomeDocuments: string;
|
|
1384
|
+
InvoiceDate: string;
|
|
1385
|
+
InvoiceNumber: string;
|
|
1386
|
+
IsEInvoiceReceiver: string;
|
|
1387
|
+
IssueDate: string;
|
|
1388
|
+
Issuer: string;
|
|
1389
|
+
IssuerBankAccount: string;
|
|
1390
|
+
Jbkjs: string;
|
|
1391
|
+
Municipality: string;
|
|
1392
|
+
Note: string;
|
|
1393
|
+
Notes: string;
|
|
1394
|
+
Number: string;
|
|
1395
|
+
ObjectCode: string;
|
|
1396
|
+
OrderNumber: string;
|
|
1397
|
+
Outcome: string;
|
|
1398
|
+
OUTCOME: string;
|
|
1399
|
+
OutcomeDocument: string;
|
|
1400
|
+
OutcomeDocuments: string;
|
|
1401
|
+
PaymentDate: string;
|
|
1402
|
+
PersonalIdentityNumber: string;
|
|
1403
|
+
Phase: string;
|
|
1404
|
+
Phone: string;
|
|
1405
|
+
PlaceOfResidence: string;
|
|
1406
|
+
PlannedPaymentDate: string;
|
|
1407
|
+
Position: string;
|
|
1408
|
+
PostalCode: string;
|
|
1409
|
+
PrimaryContact: string;
|
|
1410
|
+
ReceiveDate: string;
|
|
1411
|
+
Receiver: string;
|
|
1412
|
+
ReceiverBankAccount: string;
|
|
1413
|
+
Sef: string;
|
|
1414
|
+
SefComment: string;
|
|
1415
|
+
SefDeadline: string;
|
|
1416
|
+
SefDeadlineDays: string;
|
|
1417
|
+
SefStatus: string;
|
|
1418
|
+
SendStatus: string;
|
|
1419
|
+
Status: string;
|
|
1420
|
+
StatusPhase: string;
|
|
1421
|
+
StepPhase: string;
|
|
1422
|
+
StepPhases: string;
|
|
1423
|
+
Street: string;
|
|
1424
|
+
Subject: string;
|
|
1425
|
+
Supplier: string;
|
|
1426
|
+
Time: string;
|
|
1427
|
+
Town: string;
|
|
1428
|
+
TrafficDate: string;
|
|
1429
|
+
UniqueNo: string;
|
|
1430
|
+
UserStepDate: string;
|
|
1431
|
+
Verified: string;
|
|
1432
|
+
VoteNumber: string;
|
|
1433
|
+
Website: string;
|
|
1434
|
+
AddIndexField: string;
|
|
1435
|
+
Attachments: string;
|
|
1436
|
+
CreationTime: string;
|
|
1437
|
+
DeleteFileDesc: string;
|
|
1438
|
+
DeleteFileTitle: string;
|
|
1439
|
+
DisplaySignatureOnDocument: string;
|
|
1440
|
+
Download: string;
|
|
1441
|
+
DownloadAll: string;
|
|
1442
|
+
DownloadDocument: string;
|
|
1443
|
+
Downloaded: string;
|
|
1444
|
+
DownloadOriginalDocument: string;
|
|
1445
|
+
DownloadSignedDocument: string;
|
|
1446
|
+
DownloadValidationReport: string;
|
|
1447
|
+
ElSignature: string;
|
|
1448
|
+
ErrorUnsupportedFile: string;
|
|
1449
|
+
FailedToLoadPDF: string;
|
|
1450
|
+
FileName: string;
|
|
1451
|
+
Files: string;
|
|
1452
|
+
FileSendNotificationInfo: string;
|
|
1453
|
+
FileType: string;
|
|
1454
|
+
FileTypes: string;
|
|
1455
|
+
LoadingPDF: string;
|
|
1456
|
+
NotificationChannel: string;
|
|
1457
|
+
OrJustDragAndDropFile: string;
|
|
1458
|
+
PersonalIdentityNumberDescription: string;
|
|
1459
|
+
PersonalIdentityNumberLong: string;
|
|
1460
|
+
ScanQR: string;
|
|
1461
|
+
ScanQRInfo: string;
|
|
1462
|
+
SendForSigning: string;
|
|
1463
|
+
Sign: string;
|
|
1464
|
+
Signature: string;
|
|
1465
|
+
SignatureLook: string;
|
|
1466
|
+
Signed: string;
|
|
1467
|
+
SignOnThisDevice: string;
|
|
1468
|
+
Size: string;
|
|
1469
|
+
Type: string;
|
|
1470
|
+
AddSignatory: string;
|
|
1471
|
+
AddSignatories: string;
|
|
1472
|
+
DeleteFileSignatoryTitle: string;
|
|
1473
|
+
DeleteFileSignatoryDesc: string;
|
|
1474
|
+
Report: string;
|
|
1475
|
+
ReportDate: string;
|
|
1476
|
+
ReportFromTo: string;
|
|
1477
|
+
AllNotifications: string;
|
|
1478
|
+
InApp: string;
|
|
1479
|
+
MarkAllAsRead: string;
|
|
1480
|
+
NoNewNotifications: string;
|
|
1481
|
+
Notifications: string;
|
|
1482
|
+
NotificationSound: string;
|
|
1483
|
+
Unread: string;
|
|
1484
|
+
NTitleADD_DOC: string;
|
|
1485
|
+
NContentADD_DOC: string;
|
|
1486
|
+
NTitleADD_INCOME_DOCUMENT: string;
|
|
1487
|
+
NContentADD_INCOME_DOCUMENT: string;
|
|
1488
|
+
NTitleDOCUMENT_VERIFICATION_DONE: string;
|
|
1489
|
+
NContentDOCUMENT_VERIFICATION_DONE: string;
|
|
1490
|
+
NTitleCHAT_MENTIONED: string;
|
|
1491
|
+
NContentCHAT_MENTIONED: string;
|
|
1492
|
+
NTitleDOCUMENT_APPROVAL_STEP_START: string;
|
|
1493
|
+
NContentDOCUMENT_APPROVAL_STEP_START: string;
|
|
1494
|
+
NTitleINVOICE_CANCELLATION: string;
|
|
1495
|
+
NContentINVOICE_CANCELLATION: string;
|
|
1496
|
+
NTitleINVOICE_STORNO: string;
|
|
1497
|
+
NContentINVOICE_STORNO: string;
|
|
1498
|
+
NTitleINCOME_INVOICE_APPROVED: string;
|
|
1499
|
+
NContentINCOME_INVOICE_APPROVED: string;
|
|
1500
|
+
NTitleOUTCOME_INVOICE_APPROVED: string;
|
|
1501
|
+
NContentOUTCOME_INVOICE_APPROVED: string;
|
|
1502
|
+
NTitleINCOME_INVOICE_REJECTED: string;
|
|
1503
|
+
NContentINCOME_INVOICE_REJECTED: string;
|
|
1504
|
+
NTitleOUTCOME_INVOICE_REJECTED: string;
|
|
1505
|
+
NContentOUTCOME_INVOICE_REJECTED: string;
|
|
1506
|
+
NTitleOUTCOME_INVOICE_ERROR: string;
|
|
1507
|
+
NContentOUTCOME_INVOICE_ERROR: string;
|
|
1508
|
+
NTitleSEF_VERIFICATION_DEADLINE_TIME_EXPIRED: string;
|
|
1509
|
+
NContentSEF_VERIFICATION_DEADLINE_TIME_EXPIRED: string;
|
|
1510
|
+
NTitleAPPROVAL_AD_HOC_VOTE: string;
|
|
1511
|
+
NContentAPPROVAL_AD_HOC_VOTE: string;
|
|
1512
|
+
InProgress: string;
|
|
1513
|
+
FinalStatus: string;
|
|
1514
|
+
LatestApprovalStatus: string;
|
|
1515
|
+
LatestApprovalStatusAPPROVED: string;
|
|
1516
|
+
LatestApprovalStatusDECLINED: string;
|
|
1517
|
+
LatestApprovalStatusIN_PROGRESS: string;
|
|
1518
|
+
LatestApprovalStatusNOT_STARTED: string;
|
|
1519
|
+
SendStatusAPPROVED: string;
|
|
1520
|
+
SendStatusCANCELLED: string;
|
|
1521
|
+
SendStatusDELETED: string;
|
|
1522
|
+
SendStatusDOWNLOADED: string;
|
|
1523
|
+
SendStatusERROR: string;
|
|
1524
|
+
SendStatusMISTAKE: string;
|
|
1525
|
+
SendStatusNOT_REGISTERED_ON_SEF: string;
|
|
1526
|
+
SendStatusQUEUED: string;
|
|
1527
|
+
SendStatusREJECTED: string;
|
|
1528
|
+
SendStatusRENOTIFIED: string;
|
|
1529
|
+
SendStatusSEEN: string;
|
|
1530
|
+
SendStatusSENDING: string;
|
|
1531
|
+
SendStatusSENT: string;
|
|
1532
|
+
SendStatusSIGNED: string;
|
|
1533
|
+
SendStatusSTORNO: string;
|
|
1534
|
+
SendStatusUNRESOLVED: string;
|
|
1535
|
+
HomePage: string;
|
|
1536
|
+
Activate: string;
|
|
1537
|
+
ActivationGuide: string;
|
|
1538
|
+
ActivationGuideDesc: string;
|
|
1539
|
+
OpenStartGuide: string;
|
|
1540
|
+
ReportsByPhasesWidget: string;
|
|
1541
|
+
DocumentsOnHold: string;
|
|
1542
|
+
ExpiringContractsIn30: string;
|
|
1543
|
+
EmailVerification: string;
|
|
1544
|
+
EmailVerificationDesc: string;
|
|
1545
|
+
IdentityVerification: string;
|
|
1546
|
+
IdentityVerificationDesc: string;
|
|
1547
|
+
CellPhoneNumberVerification: string;
|
|
1548
|
+
CellPhoneNumberVerificationDesc: string;
|
|
1549
|
+
CompanyRegistration: string;
|
|
1550
|
+
CompanyRegistrationDesc: string;
|
|
1551
|
+
ModuleActivation: string;
|
|
1552
|
+
ModuleActive: string;
|
|
1553
|
+
eInvoiceActiovationInfo: string;
|
|
1554
|
+
eDeliveryActiovationInfo: string;
|
|
1555
|
+
RegisterNewCompany: string;
|
|
1556
|
+
RegisterNewCompanyDesc: string;
|
|
1557
|
+
IdentityRequiredForRegistration: string;
|
|
1558
|
+
IdentityRequiredForRegistrationDesc: string;
|
|
1559
|
+
RegisterCompany: string;
|
|
1560
|
+
NoIdentityForRegistration: string;
|
|
1561
|
+
VerifyEmail: string;
|
|
1562
|
+
VerifyIdentity: string;
|
|
1563
|
+
VerifyIdentityWithQC: string;
|
|
1564
|
+
VerifyPhone: string;
|
|
1565
|
+
CompanyRegistered: string;
|
|
1566
|
+
AccountStatus: string;
|
|
1567
|
+
AccountStatusContent: string;
|
|
1568
|
+
AddPhoneNumber: string;
|
|
1569
|
+
AddPhoneNumberCode: string;
|
|
1570
|
+
ConfirmCellPhoneNumber: string;
|
|
1571
|
+
SMSCode: string;
|
|
1572
|
+
SendCodeAgain: string;
|
|
1573
|
+
IdentityConfirmationOptionsDesc: string;
|
|
1574
|
+
ConfirmIdentity: string;
|
|
1575
|
+
SelfieIdentification: string;
|
|
1576
|
+
SelfieIdentificationDesc: string;
|
|
1577
|
+
CertificateIdentification: string;
|
|
1578
|
+
CertificateIdentificationDesc: string;
|
|
1579
|
+
ZoomApp: string;
|
|
1580
|
+
ZoomAppDesc: string;
|
|
1581
|
+
PersonalAccount: string;
|
|
1582
|
+
PersonalAccountDesc: string;
|
|
1583
|
+
PersonalAccountWithCert: string;
|
|
1584
|
+
PeronalAccountCreatedBy: string;
|
|
1585
|
+
ElMailBox: string;
|
|
1586
|
+
OrganizationWidgetDesc: string;
|
|
1587
|
+
ApprovalList: string;
|
|
1588
|
+
Registration: string;
|
|
1589
|
+
CourseListNBSOnCurrentDay: string;
|
|
1590
|
+
IdentityConfirmed: string;
|
|
1591
|
+
IdentityConfirmedDesc: string;
|
|
1592
|
+
AccountActivated: string;
|
|
1593
|
+
AccountActivatedDesc: string;
|
|
1594
|
+
EmailVerificationCompleted: string;
|
|
1595
|
+
EmailVerificationCompletedDesc: string;
|
|
1596
|
+
};
|
|
1597
|
+
|
|
1598
|
+
declare const useHideZendesk: () => void;
|
|
1599
|
+
|
|
1600
|
+
export { Accordions, Alert, Button, Checkbox, Collapse, ConditionalWrapper, CurrencyInput, Dashboard, DashboardWidget, DateInput, DeleteItemDialog, Dialog, DotBadge, FilterItem, FormWrapper, FullScreenLoader, IAnyObject, IBooleanObject, IError, IFormWrapper, IPagination, ISelectData, IServerSidePagination, ISimpleObject, ISimpleObjectWithCode, IStringObject, ITab, ITable, ITableColumn, ITableDataItem, ITableEditRow, ITableFilter, ITableFilterData, ITableFilterItem, ITableSort, ITreeItem, IValueLabel, IconButton, ItemActionsMenu, ItemEditOptionsButtons, LargeTextInput, LazyLoader, Loader, Menu, MenuItem, NotificationBadge, NumberInput, PageWrapper, PasswordInput, PillBadge, Radio, RadioLarge, SearchInput, Select, SelectAsyncPaginate, SelectCreatable, SetTableFilter, Table, TableEditRow, TableFooter, Tabs, TextInput, Tooltip, Tree, areStringArraysEqual, calculateFilesSize, checkIfExpired, convertBooleanObjectToArray, dataURLtoFile, dateAddDays, deepCopy, deleteEmptyProps, deleteEmptyPropsIncludingArray, deleteProps, deletePropsThatEndsWith, downloadDocumentFile, formatCurrency, formatCurrencyNoDecimals, formatDate, formatDateAndTime, formatDateYMD, formatDecimalNumber, formatTime, formatYearMonth, getActiveFilterNumber, getActiveOrgUuid, getBase64FromFile, getBase64FromUrl, getCurrentDateFormatted, getCurrentDateFormattedYMD, getDaysLeft, getDefaultOrgUuid, getExtensionFromFilename, getFileFromUrl, getInputHelperText, getInputMinMaxPattern, getPrintColumns, getVisibleColumnsIds, i18nCommonCyrilic, i18nCommonLatin, inputPattern, lsGet, lsRemove, lsSet, maxChar, parseUrlSearch, rootDir, rotateBase64Image, setActiveOrgUuid, setDefaultOrgUuid, sizeInBytesPretty, splitBase64File, toastError, toastSuccess, useHideZendesk };
|