pge-front-common 10.2.2 → 10.2.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/lib/index.d.ts +18 -1
- package/lib/index.esm.js +237 -160
- package/lib/index.esm.js.map +1 -1
- package/lib/index.js +237 -159
- package/lib/index.js.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -170,6 +170,23 @@ interface Props {
|
|
|
170
170
|
}
|
|
171
171
|
declare const PaginationTable: ({ currentPage, countPage, itemsVisiblePage, handleClickPage, }: Omit<Props, "header" | "body" | "footer">) => React__default.JSX.Element;
|
|
172
172
|
|
|
173
|
+
interface PaginationProps {
|
|
174
|
+
countPage: number;
|
|
175
|
+
currentPage: number;
|
|
176
|
+
totalItems: number;
|
|
177
|
+
itemsPerPage: number;
|
|
178
|
+
handlePrevious: () => void;
|
|
179
|
+
handleNext: () => void;
|
|
180
|
+
handleItemPorPage: (value: number) => void;
|
|
181
|
+
handlePage: (value: number) => void;
|
|
182
|
+
pagina: number;
|
|
183
|
+
defaultOptions?: {
|
|
184
|
+
value: number;
|
|
185
|
+
label: string;
|
|
186
|
+
}[];
|
|
187
|
+
}
|
|
188
|
+
declare const Pagination: React__default.FC<PaginationProps>;
|
|
189
|
+
|
|
173
190
|
interface SelectMultProps {
|
|
174
191
|
name: string;
|
|
175
192
|
optionsSelect: OptionsProps[];
|
|
@@ -275,4 +292,4 @@ declare const IconUpAndDownArror: (props?: SVGProps<SVGSVGElement>) => React__de
|
|
|
275
292
|
|
|
276
293
|
declare const IconCheck: (props?: SVGProps<SVGSVGElement>) => React__default.JSX.Element;
|
|
277
294
|
|
|
278
|
-
export { Accordion, AccordionItem, type AccordionItemProps, BoxError, BoxSuccess, Button, type ButtonProps, Checkbox, type Column, FooterComponent as Footer, Header, IconAdd, IconAddCell, IconArrowExpland, IconArrowRecall, IconCLose, IconCalendar, IconCheck, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDelete, IconDownload, IconEdit, IconEventAvaliable, IconInvisibility, IconLogout, IconNewTab, IconProfile, IconRemove, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconUpAndDownArror, IconUpload, IconVisibility, IconWarning, InformativeBox, type InformativeBoxProps, InputBase, type InputProps, LoadingSpinner, SelectMult as Multiselect, type OptionsProps, PaginationTable, PasswordInput, RadioGroupBase, type RadioGroupBaseProps, type SelectMultProps, TableComponent, type TableComponentProps, TextareaBase, type TextareaBaseProps, Title };
|
|
295
|
+
export { Accordion, AccordionItem, type AccordionItemProps, BoxError, BoxSuccess, Button, type ButtonProps, Checkbox, type Column, FooterComponent as Footer, Header, IconAdd, IconAddCell, IconArrowExpland, IconArrowRecall, IconCLose, IconCalendar, IconCheck, IconCheckCircle, IconCircleExpland, IconCircleRecall, IconDelete, IconDownload, IconEdit, IconEventAvaliable, IconInvisibility, IconLogout, IconNewTab, IconProfile, IconRemove, IconSearch, IconSwap, IconTriangleExpand, IconTriangleRecall, IconUpAndDownArror, IconUpload, IconVisibility, IconWarning, InformativeBox, type InformativeBoxProps, InputBase, type InputProps, LoadingSpinner, SelectMult as Multiselect, type OptionsProps, PaginationTable, Pagination as PaginationV2, PasswordInput, RadioGroupBase, type RadioGroupBaseProps, type SelectMultProps, TableComponent, type TableComponentProps, TextareaBase, type TextareaBaseProps, Title };
|