@inceptionbg/iui 2.0.43 → 2.0.45
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.d.ts +9 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/dist/iui.css +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -444,6 +444,7 @@ interface IPrintData<T = unknown> extends IBasePrintData {
|
|
|
444
444
|
items?: T[];
|
|
445
445
|
paginationControl?: IPaginationControl;
|
|
446
446
|
totals?: ITableDataItem;
|
|
447
|
+
allowNewTabOpen?: boolean;
|
|
447
448
|
optionalNode?: {
|
|
448
449
|
aboveTable?: ReactNode;
|
|
449
450
|
bellowTable?: ReactNode;
|
|
@@ -623,6 +624,7 @@ interface Props$o {
|
|
|
623
624
|
declare const PillBadge: FC<Props$o>;
|
|
624
625
|
|
|
625
626
|
interface IIconButtonProps {
|
|
627
|
+
id?: string;
|
|
626
628
|
icon: IconDefinition;
|
|
627
629
|
onClick?: MouseEventHandler<HTMLButtonElement>;
|
|
628
630
|
variant?: IButtonVariant;
|
|
@@ -662,7 +664,7 @@ declare const Dashboard: FC<{
|
|
|
662
664
|
|
|
663
665
|
interface Props$n {
|
|
664
666
|
title: string;
|
|
665
|
-
icon?:
|
|
667
|
+
icon?: IconDefinition;
|
|
666
668
|
type?: 'warning' | 'info';
|
|
667
669
|
span?: 2 | 3 | 4;
|
|
668
670
|
isLoading?: boolean;
|
|
@@ -1023,6 +1025,9 @@ interface Props$c {
|
|
|
1023
1025
|
header?: {
|
|
1024
1026
|
title: string;
|
|
1025
1027
|
onSearch?: (search: string) => void;
|
|
1028
|
+
iconActions?: (IIconButtonProps & {
|
|
1029
|
+
hidden?: boolean;
|
|
1030
|
+
})[];
|
|
1026
1031
|
};
|
|
1027
1032
|
isFetching?: boolean;
|
|
1028
1033
|
isLoading?: boolean;
|
|
@@ -1381,6 +1386,7 @@ declare const i18nIUICyrilic: {
|
|
|
1381
1386
|
Print: string;
|
|
1382
1387
|
PrintDate: string;
|
|
1383
1388
|
PrintExport: string;
|
|
1389
|
+
OpenInNewWindow: string;
|
|
1384
1390
|
ResetFilter: string;
|
|
1385
1391
|
rowsPerPage: string;
|
|
1386
1392
|
SaveXlsx: string;
|
|
@@ -1475,6 +1481,7 @@ declare const i18nIUILatin: {
|
|
|
1475
1481
|
Print: string;
|
|
1476
1482
|
PrintDate: string;
|
|
1477
1483
|
PrintExport: string;
|
|
1484
|
+
OpenInNewWindow: string;
|
|
1478
1485
|
ResetFilter: string;
|
|
1479
1486
|
rowsPerPage: string;
|
|
1480
1487
|
SaveXlsx: string;
|
|
@@ -1569,6 +1576,7 @@ declare const i18nIUIMe: {
|
|
|
1569
1576
|
Print: string;
|
|
1570
1577
|
PrintDate: string;
|
|
1571
1578
|
PrintExport: string;
|
|
1579
|
+
OpenInNewWindow: string;
|
|
1572
1580
|
ResetFilter: string;
|
|
1573
1581
|
rowsPerPage: string;
|
|
1574
1582
|
SaveXlsx: string;
|