@cyber-harbour/ui 1.0.63 → 1.0.64
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.mts +9 -0
- package/dist/index.d.ts +9 -0
- package/dist/index.js +47 -46
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +97 -96
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
- package/src/Core/Pagination/Pagination.tsx +18 -13
- package/src/Theme/themes/dark.ts +9 -0
- package/src/Theme/themes/light.ts +9 -0
- package/src/Theme/types.ts +9 -0
package/dist/index.d.mts
CHANGED
|
@@ -312,6 +312,15 @@ type Theme = {
|
|
|
312
312
|
color: string;
|
|
313
313
|
background: string;
|
|
314
314
|
};
|
|
315
|
+
pagination: {
|
|
316
|
+
fontSize: string | number;
|
|
317
|
+
paddingBlock: string | number;
|
|
318
|
+
paddingInline: string | number;
|
|
319
|
+
borderRadius: string | number;
|
|
320
|
+
gap: string | number;
|
|
321
|
+
height: string | number;
|
|
322
|
+
iconSize: string | number;
|
|
323
|
+
};
|
|
315
324
|
};
|
|
316
325
|
type ThemeColors = Theme['colors'];
|
|
317
326
|
type ColorCategory = keyof ThemeColors;
|
package/dist/index.d.ts
CHANGED
|
@@ -312,6 +312,15 @@ type Theme = {
|
|
|
312
312
|
color: string;
|
|
313
313
|
background: string;
|
|
314
314
|
};
|
|
315
|
+
pagination: {
|
|
316
|
+
fontSize: string | number;
|
|
317
|
+
paddingBlock: string | number;
|
|
318
|
+
paddingInline: string | number;
|
|
319
|
+
borderRadius: string | number;
|
|
320
|
+
gap: string | number;
|
|
321
|
+
height: string | number;
|
|
322
|
+
iconSize: string | number;
|
|
323
|
+
};
|
|
315
324
|
};
|
|
316
325
|
type ThemeColors = Theme['colors'];
|
|
317
326
|
type ColorCategory = keyof ThemeColors;
|