gd-bs 6.9.0 → 6.9.2
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/bs.js +1 -1
- package/build/components/dropdown/index.js +5 -0
- package/build/components/pagination/index.js +283 -80
- package/dist/gd-bs-icons.js +1 -1
- package/dist/gd-bs-icons.min.js +1 -1
- package/dist/gd-bs.d.ts +2 -1
- package/dist/gd-bs.js +1 -1
- package/dist/gd-bs.js.LICENSE.txt +20 -0
- package/dist/gd-bs.min.js +1 -1
- package/indexv2.html +1 -1
- package/package.json +1 -1
- package/src/components/dropdown/index.ts +6 -0
- package/src/components/pagination/index.ts +300 -84
- package/src/components/pagination/types.d.ts +2 -1
- package/src/styles/_custom.scss +12 -0
package/dist/gd-bs.d.ts
CHANGED
|
@@ -2498,8 +2498,9 @@ declare module 'gd-bs/components/pagination/types' {
|
|
|
2498
2498
|
isLarge?: boolean;
|
|
2499
2499
|
isSmall?: boolean;
|
|
2500
2500
|
label?: string;
|
|
2501
|
+
maxPages?: number;
|
|
2501
2502
|
numberOfPages?: number;
|
|
2502
|
-
onClick?: (pageNumber?: number
|
|
2503
|
+
onClick?: (pageNumber?: number) => void;
|
|
2503
2504
|
}
|
|
2504
2505
|
|
|
2505
2506
|
/**
|