@robuust-digital/vue-components 2.5.0-beta.3 → 2.5.0-beta.4
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/CHANGELOG.md +1 -0
- package/dist/core/pagination.css +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
* `Pagination`: Added `prevIcon` and `nextIcon` props to customize previous/next navigation icons
|
|
6
6
|
* `Pagination`: Added `prevIcon` and `nextIcon` slots for full control over previous/next navigation icon rendering
|
|
7
|
+
* `Pagination`: Added `--rvc-pagination-border-color` CSS variable for pagination button border customization
|
|
7
8
|
* `DataTable`: Added support for forwarding `prevIcon` and `nextIcon` props to the built-in `Pagination` component
|
|
8
9
|
|
|
9
10
|
### Updated
|
package/dist/core/pagination.css
CHANGED
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
--rvc-pagination-color-active: var(--color-slate-800);
|
|
11
11
|
--rvc-pagination-bg-color: transparent;
|
|
12
12
|
--rvc-pagination-bg-color-hover: var(--color-slate-100);
|
|
13
|
+
--rvc-pagination-border-color: transparent;
|
|
13
14
|
--rvc-pagination-info-color: var(--color-slate-400);
|
|
14
15
|
--rvc-pagination-info-font-size: var(--text-sm);
|
|
15
16
|
}
|
|
@@ -36,6 +37,7 @@
|
|
|
36
37
|
width: var(--rvc-pagination-size);
|
|
37
38
|
height: var(--rvc-pagination-size);
|
|
38
39
|
transition: color, background-color var(--rvc-pagination-transition-duration) var(--rvc-pagination-transition-timing-function);
|
|
40
|
+
border: 1px solid var(--rvc-pagination-border-color);
|
|
39
41
|
border-radius: var(--rvc-pagination-border-radius);
|
|
40
42
|
background-color: var(--rvc-pagination-bg-color);
|
|
41
43
|
color: var(--rvc-pagination-color);
|