@trafilea/afrodita-components 5.0.0-beta.130 → 5.0.0-beta.132
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/build/index.d.ts +3 -1
- package/build/index.esm.js +175 -141
- package/build/index.esm.js.map +1 -1
- package/build/index.js +175 -141
- package/build/index.js.map +1 -1
- package/package.json +1 -1
package/build/index.d.ts
CHANGED
|
@@ -111,6 +111,7 @@ declare type Filter = {
|
|
|
111
111
|
link?: string;
|
|
112
112
|
blockUncheck?: boolean;
|
|
113
113
|
}>;
|
|
114
|
+
showInMobile: boolean;
|
|
114
115
|
};
|
|
115
116
|
declare type FilterChange = {
|
|
116
117
|
sectionIndex: number;
|
|
@@ -2013,8 +2014,9 @@ interface PaginationProps {
|
|
|
2013
2014
|
underlineActive?: boolean;
|
|
2014
2015
|
boldActive?: boolean;
|
|
2015
2016
|
disabled?: boolean;
|
|
2017
|
+
showReducedPages?: boolean;
|
|
2016
2018
|
}
|
|
2017
|
-
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, }: PaginationProps) => JSX.Element;
|
|
2019
|
+
declare const Pagination: ({ from, to, currentPage, onChange, underlineActive, boldActive, disabled, showReducedPages, }: PaginationProps) => JSX.Element;
|
|
2018
2020
|
|
|
2019
2021
|
declare const PaginatorBlog: ({ from, to, currentPage, onChange, }: Pick<PaginationProps, 'from' | 'to' | 'onChange' | 'currentPage'>) => JSX.Element;
|
|
2020
2022
|
|