@rokkit/themes 1.0.0-next.74 → 1.0.0-next.76

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@rokkit/themes",
3
- "version": "1.0.0-next.74",
3
+ "version": "1.0.0-next.76",
4
4
  "description": "Themes for use with rokkit components.",
5
5
  "author": "Jerry Thomas <me@jerrythomas.name>",
6
6
  "license": "MIT",
@@ -19,7 +19,7 @@
19
19
  "typescript": "^5.3.3",
20
20
  "vite": "^5.0.12",
21
21
  "vitest": "~1.2.2",
22
- "shared-config": "1.0.0-next.74"
22
+ "shared-config": "1.0.0-next.76"
23
23
  },
24
24
  "files": [
25
25
  "src"
@@ -38,7 +38,7 @@
38
38
  }
39
39
  },
40
40
  "dependencies": {
41
- "@rokkit/core": "1.0.0-next.74"
41
+ "@rokkit/core": "1.0.0-next.76"
42
42
  },
43
43
  "scripts": {
44
44
  "format": "prettier --write .",
@@ -10,9 +10,15 @@
10
10
  .rokkit input-field > label {
11
11
  @apply text-secondary-600;
12
12
  }
13
- .rokkit input-field field:focus-within {
13
+ .rokkit input-field:not(.disabled) field:focus-within {
14
14
  @apply border-neutral-base bg-gradient-to-r from-primary to-secondary;
15
15
  }
16
+ .rokkit input-field.disabled label {
17
+ @apply text-neutral-500;
18
+ }
19
+ /* .rokkit input-field.disabled field:focus-within {
20
+ @apply bg-gradient-to-r from-neutral-subtle to-neutral-subtle;
21
+ } */
16
22
  .rokkit input-field span {
17
23
  @apply border-r border-neutral-muted bg-neutral-base px-1 h-full aspect-square;
18
24
  }