reykit 1.0.148 → 1.0.150
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.js +4 -2
- package/dist/src/components/index.d.ts +1 -1
- package/dist/src/index.d.ts +0 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -49021,7 +49021,10 @@ function dI({
|
|
|
49021
49021
|
{
|
|
49022
49022
|
variant: "ghost",
|
|
49023
49023
|
size: "sm",
|
|
49024
|
-
className:
|
|
49024
|
+
className: ie(
|
|
49025
|
+
"relative right-1 pl-1 pr-0 gap-0",
|
|
49026
|
+
"hover:bg-foreground hover:text-background dark:hover:bg-foreground dark:hover:text-background"
|
|
49027
|
+
)
|
|
49025
49028
|
}
|
|
49026
49029
|
),
|
|
49027
49030
|
children: [
|
|
@@ -49521,6 +49524,5 @@ const CI = /* @__PURE__ */ Object.freeze(/* @__PURE__ */ Object.defineProperty({
|
|
|
49521
49524
|
window: bI
|
|
49522
49525
|
};
|
|
49523
49526
|
export {
|
|
49524
|
-
cI as Table,
|
|
49525
49527
|
ZI as default
|
|
49526
49528
|
};
|
|
@@ -6,5 +6,5 @@ export { Form } from './Form';
|
|
|
6
6
|
export { Loading } from './Loading/Loading';
|
|
7
7
|
export { useLoading } from './Loading/uesLoading';
|
|
8
8
|
export { Notice, notice } from './Notice';
|
|
9
|
-
export { Table } from './Table';
|
|
9
|
+
export { type HeaderOption, type SearchOption, type ButtonOption, type OptionName, type RowOption, type SelectRowsOption, Table } from './Table';
|
|
10
10
|
export { IconToggle } from './Toggle';
|
package/dist/src/index.d.ts
CHANGED