@naptics/vue-collection 1.0.0-beta.5 → 1.0.0-rc.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.
@@ -9,9 +9,22 @@
9
9
  }
10
10
 
11
11
  .pagination-item.selectable {
12
- @apply cursor-pointer hover:bg-slate-50 focus:outline-hidden focus-visible:border-primary-500 focus-visible:ring-primary-500 focus-visible:ring-1 focus-visible:z-2;
12
+ @apply cursor-pointer hover:bg-slate-50 focus:outline-hidden;
13
+ }
14
+
15
+ .pagination-item.selectable:focus-visible {
16
+ border-color: var(--color-primary-500);
17
+ box-shadow: 0 0 0 1px var(--color-primary-500);
18
+ z-index: 2;
13
19
  }
14
20
 
15
21
  .pagination-item.selectable.selected {
16
- @apply border-primary-500 bg-primary-100 hover:bg-primary-100 text-primary-600 z-1;
22
+ @apply z-1;
23
+ border-color: var(--color-primary-500);
24
+ background-color: var(--color-primary-100);
25
+ color: var(--color-primary-600);
26
+ }
27
+
28
+ .pagination-item.selectable.selected:hover {
29
+ background-color: var(--color-primary-100);
17
30
  }
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@naptics/vue-collection",
3
3
  "author": "Timo Siegenthaler and Jonas Schoch",
4
4
  "description": "Vue Collection is a collection of styled and fully functional Vue components which can easily be integrated into our projects.",
5
- "version": "1.0.0-beta.5",
5
+ "version": "1.0.0-rc.2",
6
6
  "main": "./lib/index.js",
7
7
  "types": "./lib/index.d.ts",
8
8
  "exports": {
@@ -22,6 +22,7 @@
22
22
  "types": "./lib/i18n/index.d.ts",
23
23
  "default": "./lib/i18n/index.js"
24
24
  },
25
+ "./i18n/*/vue-collection.json": "./lib/i18n/*/vue-collection.json",
25
26
  "./i18n/*": {
26
27
  "types": "./lib/i18n/*/index.d.ts",
27
28
  "default": "./lib/i18n/*/index.js"