keystone_ui 0.9.0 → 0.9.1
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.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: fc51f5315bb4315b50a98d76085bce19f48de6c9f95ded851c745fc83f46ddf2
|
|
4
|
+
data.tar.gz: 0a2436931ac90ccb62af03429e1be4b1b3d19fc1b0a8cf9dac2385fc12c94ea0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b1a1fb202743e5a2fcd9312db49c202f3c0e60b5314b976a05b5584ccf80bba50dc64c169c31a6b9e6417b49913d2d6e99def606ecb7f63cd883d450e42e74e6
|
|
7
|
+
data.tar.gz: 1717453d259ec802e2b66e4f59db9c1d911cfa428a406da81f5546e83d78ead564214ebd41547133ca9e77f15e70b560b456b9d5dc6b85a3f99b4aa8af7ac511
|
|
@@ -4,9 +4,9 @@ module Keystone
|
|
|
4
4
|
module Ui
|
|
5
5
|
class CheckboxRowComponent < ViewComponent::Base
|
|
6
6
|
ROW_CLASSES = "flex items-start gap-3 py-3 cursor-pointer"
|
|
7
|
-
INPUT_CLASSES = "mt-0.5 size-4 shrink-0 rounded border-surface-300 text-accent-600 focus:ring-accent-500"
|
|
8
|
-
LABEL_CLASSES = "block text-sm font-medium text-surface-900"
|
|
9
|
-
HINT_CLASSES = "block mt-0.5 text-sm text-surface-500"
|
|
7
|
+
INPUT_CLASSES = "mt-0.5 size-4 shrink-0 rounded border-surface-300 text-accent-600 checked:bg-accent-600 focus:ring-accent-500"
|
|
8
|
+
LABEL_CLASSES = "block text-sm font-medium text-surface-900 dark:text-surface-100"
|
|
9
|
+
HINT_CLASSES = "block mt-0.5 text-sm text-surface-500 dark:text-surface-400"
|
|
10
10
|
|
|
11
11
|
attr_reader :name, :value, :label, :hint
|
|
12
12
|
|
data/lib/keystone_ui/version.rb
CHANGED