myshell-react-lib 0.1.70 → 0.1.71
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.cjs +4 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +4 -3
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -1220,6 +1220,7 @@ declare const Tabs: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsPro
|
|
|
1220
1220
|
listClassName?: string;
|
|
1221
1221
|
listBoxClassName?: string;
|
|
1222
1222
|
contentClassName?: string;
|
|
1223
|
+
contentBoxClassName?: string;
|
|
1223
1224
|
items?: TItems[];
|
|
1224
1225
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1225
1226
|
declare const Tab: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
package/dist/index.d.ts
CHANGED
|
@@ -1220,6 +1220,7 @@ declare const Tabs: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsPro
|
|
|
1220
1220
|
listClassName?: string;
|
|
1221
1221
|
listBoxClassName?: string;
|
|
1222
1222
|
contentClassName?: string;
|
|
1223
|
+
contentBoxClassName?: string;
|
|
1223
1224
|
items?: TItems[];
|
|
1224
1225
|
} & React$1.RefAttributes<HTMLDivElement>>;
|
|
1225
1226
|
declare const Tab: React$1.ForwardRefExoticComponent<Omit<TabsPrimitive.TabsTriggerProps & React$1.RefAttributes<HTMLButtonElement>, "ref"> & {
|
package/dist/index.js
CHANGED
|
@@ -6398,7 +6398,7 @@ var Command = React16.forwardRef(function(_param, ref) {
|
|
|
6398
6398
|
]);
|
|
6399
6399
|
return /* @__PURE__ */ jsx22(CommandPrimitive, _object_spread({
|
|
6400
6400
|
ref: ref,
|
|
6401
|
-
className: cn("flex h-full w-full flex-col overflow-hidden rounded-sm
|
|
6401
|
+
className: cn("flex h-full w-full flex-col overflow-hidden rounded-sm text-Colors-Text-Default bg-cc-Input-bg-default", className)
|
|
6402
6402
|
}, props));
|
|
6403
6403
|
});
|
|
6404
6404
|
Command.displayName = CommandPrimitive.displayName;
|
|
@@ -12309,11 +12309,12 @@ var tabVariants = cva17("relative inline-flex h-full items-center whitespace-now
|
|
|
12309
12309
|
}
|
|
12310
12310
|
});
|
|
12311
12311
|
var Tabs2 = React38.forwardRef(function(_param, ref) {
|
|
12312
|
-
var className = _param.className, listClassName = _param.listClassName, listBoxClassName = _param.listBoxClassName, contentClassName = _param.contentClassName, _param_variant = _param.variant, variant = _param_variant === void 0 ? "button" : _param_variant, size = _param.size, _param_isLink = _param.isLink, isLink = _param_isLink === void 0 ? false : _param_isLink, _param_rounded = _param.rounded, rounded = _param_rounded === void 0 ? "default" : _param_rounded, items = _param.items, props = _object_without_properties(_param, [
|
|
12312
|
+
var className = _param.className, listClassName = _param.listClassName, listBoxClassName = _param.listBoxClassName, contentClassName = _param.contentClassName, contentBoxClassName = _param.contentBoxClassName, _param_variant = _param.variant, variant = _param_variant === void 0 ? "button" : _param_variant, size = _param.size, _param_isLink = _param.isLink, isLink = _param_isLink === void 0 ? false : _param_isLink, _param_rounded = _param.rounded, rounded = _param_rounded === void 0 ? "default" : _param_rounded, items = _param.items, props = _object_without_properties(_param, [
|
|
12313
12313
|
"className",
|
|
12314
12314
|
"listClassName",
|
|
12315
12315
|
"listBoxClassName",
|
|
12316
12316
|
"contentClassName",
|
|
12317
|
+
"contentBoxClassName",
|
|
12317
12318
|
"variant",
|
|
12318
12319
|
"size",
|
|
12319
12320
|
"isLink",
|
|
@@ -12346,7 +12347,7 @@ var Tabs2 = React38.forwardRef(function(_param, ref) {
|
|
|
12346
12347
|
}))
|
|
12347
12348
|
}),
|
|
12348
12349
|
!isLink && /* @__PURE__ */ jsx52("div", {
|
|
12349
|
-
className: "w-full",
|
|
12350
|
+
className: cn("w-full", contentBoxClassName),
|
|
12350
12351
|
children: items === null || items === void 0 ? void 0 : items.map(function(item) {
|
|
12351
12352
|
return /* @__PURE__ */ jsx52(TabsContent, {
|
|
12352
12353
|
value: item.value,
|