@codapet/design-system 0.7.6 → 0.7.7
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/dist/index.d.mts +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as react_jsx_runtime from 'react/jsx-runtime';
|
|
2
|
-
import * as React$1 from 'react';
|
|
3
2
|
import * as AccordionPrimitive from '@radix-ui/react-accordion';
|
|
3
|
+
import * as React$1 from 'react';
|
|
4
4
|
import * as class_variance_authority_types from 'class-variance-authority/types';
|
|
5
5
|
import { VariantProps } from 'class-variance-authority';
|
|
6
6
|
import * as AlertDialogPrimitive from '@radix-ui/react-alert-dialog';
|
package/dist/index.mjs
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
"use client";
|
|
2
2
|
|
|
3
3
|
// src/components/ui/accordion.tsx
|
|
4
|
-
import * as React from "react";
|
|
5
4
|
import * as AccordionPrimitive from "@radix-ui/react-accordion";
|
|
6
5
|
import { ChevronDownIcon } from "lucide-react";
|
|
6
|
+
import * as React from "react";
|
|
7
7
|
|
|
8
8
|
// src/lib/utils.ts
|
|
9
9
|
import { clsx } from "clsx";
|
|
@@ -45,7 +45,7 @@ function AccordionItem({
|
|
|
45
45
|
{
|
|
46
46
|
"data-slot": "accordion-item",
|
|
47
47
|
className: cn(
|
|
48
|
-
variant === "outlined" ? "rounded-
|
|
48
|
+
variant === "outlined" ? "rounded-xl border border-border-default " : "border-b last:border-b-0",
|
|
49
49
|
className
|
|
50
50
|
),
|
|
51
51
|
...props
|