prlg-ui 1.8.10 → 1.8.12
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 +3 -0
- package/dist/prlg-ui.cjs.js +1 -1
- package/dist/prlg-ui.css +1 -1
- package/dist/prlg-ui.es.js +564 -557
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1430,6 +1430,7 @@ declare interface PaginatorProps {
|
|
|
1430
1430
|
totals: number;
|
|
1431
1431
|
/** Опции для выбора количества элементов на странице */
|
|
1432
1432
|
perPageOptions?: number[];
|
|
1433
|
+
viewPerPage?: boolean;
|
|
1433
1434
|
}
|
|
1434
1435
|
|
|
1435
1436
|
export declare const Popover: __VLS_WithTemplateSlots_12<typeof __VLS_component_12, __VLS_TemplateResult_12["slots"]>;
|
|
@@ -1620,6 +1621,8 @@ declare type TableProps = {
|
|
|
1620
1621
|
rows?: number;
|
|
1621
1622
|
/** Показывать пагинатор */
|
|
1622
1623
|
paginator?: boolean;
|
|
1624
|
+
/** Показывать выбор кол-во отображаемых строк */
|
|
1625
|
+
viewPerPage?: boolean;
|
|
1623
1626
|
/** Опции для выбора количества элементов на странице */
|
|
1624
1627
|
perPageOptions?: number[];
|
|
1625
1628
|
/** Общее количество элементов */
|