@ng-nest/ui 20.0.2 → 20.0.3
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/core/index.d.ts +4 -0
- package/fesm2022/ng-nest-ui-core.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-pagination.mjs +13 -3
- package/fesm2022/ng-nest-ui-pagination.mjs.map +1 -1
- package/fesm2022/ng-nest-ui-table.mjs +13 -3
- package/fesm2022/ng-nest-ui-table.mjs.map +1 -1
- package/package.json +30 -30
- package/pagination/index.d.ts +11 -1
- package/table/index.d.ts +11 -1
package/core/index.d.ts
CHANGED
|
@@ -1544,10 +1544,12 @@ interface XPaginationConfig {
|
|
|
1544
1544
|
sizeWidth?: string;
|
|
1545
1545
|
sizeData?: number[];
|
|
1546
1546
|
showInputSize?: boolean;
|
|
1547
|
+
showInputSizeTooltipText?: boolean;
|
|
1547
1548
|
inputSizeTooltipText?: string;
|
|
1548
1549
|
inputSizeWidth?: number;
|
|
1549
1550
|
showJump?: boolean;
|
|
1550
1551
|
jumpWidth?: string;
|
|
1552
|
+
showJumpTooltipText?: boolean;
|
|
1551
1553
|
jumpTooltipText?: string;
|
|
1552
1554
|
simple?: boolean;
|
|
1553
1555
|
simpleIndexWidth?: string;
|
|
@@ -1658,10 +1660,12 @@ interface XTableConfig {
|
|
|
1658
1660
|
sizeWidth?: string;
|
|
1659
1661
|
sizeData?: number[];
|
|
1660
1662
|
showInputSize?: boolean;
|
|
1663
|
+
showInputSizeTooltipText?: boolean;
|
|
1661
1664
|
inputSizeTooltipText?: string;
|
|
1662
1665
|
inputSizeWidth?: number;
|
|
1663
1666
|
showJump?: boolean;
|
|
1664
1667
|
jumpWidth?: string;
|
|
1668
|
+
showJumpTooltipText?: boolean;
|
|
1665
1669
|
jumpTooltipText?: string;
|
|
1666
1670
|
simple?: boolean;
|
|
1667
1671
|
simpleIndexWidth?: string;
|