@gentleduck/registry-ui 0.2.9 → 0.2.10
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/.turbo/turbo-test.log +4 -4
- package/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/accordion/accordion.tsx +1 -1
package/.turbo/turbo-test.log
CHANGED
|
@@ -2,15 +2,15 @@ $ bun test
|
|
|
2
2
|
bun test v1.3.5 (1e86cebd)
|
|
3
3
|
|
|
4
4
|
::group::src/chart/__test__/chart.test.tsx:
|
|
5
|
-
(pass) registry-ui chart > ChartContainer server render does not emit invalid size warnings [
|
|
5
|
+
(pass) registry-ui chart > ChartContainer server render does not emit invalid size warnings [25.00ms]
|
|
6
6
|
|
|
7
7
|
::endgroup::
|
|
8
8
|
|
|
9
9
|
::group::src/button/__test__/button.test.tsx:
|
|
10
10
|
(pass) registry-ui button > buttonVariants returns the shared base styles and defaults
|
|
11
11
|
(pass) registry-ui button > buttonVariants applies explicit variant and size overrides
|
|
12
|
-
(pass) registry-ui button > button exports keep stable display names
|
|
13
|
-
(pass) registry-ui button > Button renders loading state as a busy disabled native button [
|
|
12
|
+
(pass) registry-ui button > button exports keep stable display names
|
|
13
|
+
(pass) registry-ui button > Button renders loading state as a busy disabled native button [3.00ms]
|
|
14
14
|
(pass) registry-ui button > Button preserves explicit disabled state even when loading is false
|
|
15
15
|
(pass) registry-ui button > Button collapses into icon-only mode and hides secondary content [1.00ms]
|
|
16
16
|
(pass) registry-ui button > AnimationIcon renders left and right placements around children [1.00ms]
|
|
@@ -20,4 +20,4 @@ bun test v1.3.5 (1e86cebd)
|
|
|
20
20
|
8 pass
|
|
21
21
|
0 fail
|
|
22
22
|
25 expect() calls
|
|
23
|
-
Ran 8 tests across 2 files. [
|
|
23
|
+
Ran 8 tests across 2 files. [371.00ms]
|
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
|
@@ -204,7 +204,7 @@ const AccordionTrigger = React.forwardRef<
|
|
|
204
204
|
return (
|
|
205
205
|
<summary
|
|
206
206
|
className={cn(
|
|
207
|
-
'flex flex-1 cursor-pointer
|
|
207
|
+
'flex flex-1 cursor-pointer items-center justify-between py-4 font-medium text-base ring-offset-background transition-all hover:underline focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2',
|
|
208
208
|
className,
|
|
209
209
|
)}
|
|
210
210
|
ref={ref as React.Ref<HTMLElement>}
|