@ng-nest/ui 19.0.12 → 19.0.13
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/config/config.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 +46 -46
- package/pagination/pagination.property.d.ts +11 -1
- package/table/table.property.d.ts +11 -1
package/core/config/config.d.ts
CHANGED
|
@@ -404,10 +404,12 @@ export interface XPaginationConfig {
|
|
|
404
404
|
sizeWidth?: string;
|
|
405
405
|
sizeData?: number[];
|
|
406
406
|
showInputSize?: boolean;
|
|
407
|
+
showInputSizeTooltipText?: boolean;
|
|
407
408
|
inputSizeTooltipText?: string;
|
|
408
409
|
inputSizeWidth?: number;
|
|
409
410
|
showJump?: boolean;
|
|
410
411
|
jumpWidth?: string;
|
|
412
|
+
showJumpTooltipText?: boolean;
|
|
411
413
|
jumpTooltipText?: string;
|
|
412
414
|
simple?: boolean;
|
|
413
415
|
simpleIndexWidth?: string;
|
|
@@ -518,10 +520,12 @@ export interface XTableConfig {
|
|
|
518
520
|
sizeWidth?: string;
|
|
519
521
|
sizeData?: number[];
|
|
520
522
|
showInputSize?: boolean;
|
|
523
|
+
showInputSizeTooltipText?: boolean;
|
|
521
524
|
inputSizeTooltipText?: string;
|
|
522
525
|
inputSizeWidth?: number;
|
|
523
526
|
showJump?: boolean;
|
|
524
527
|
jumpWidth?: string;
|
|
528
|
+
showJumpTooltipText?: boolean;
|
|
525
529
|
jumpTooltipText?: string;
|
|
526
530
|
simple?: boolean;
|
|
527
531
|
simpleIndexWidth?: string;
|