lecom-ui 4.3.3 → 4.3.5
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.ts +1 -1
- package/dist/plugin/plugin.cjs +7 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -702,7 +702,7 @@ declare const TooltipTrigger: React$1.ForwardRefExoticComponent<TooltipPrimitive
|
|
|
702
702
|
declare const TooltipArrow: React$1.ForwardRefExoticComponent<TooltipPrimitive.TooltipArrowProps & React$1.RefAttributes<SVGSVGElement>>;
|
|
703
703
|
declare const TooltipPortal: React$1.FC<TooltipPrimitive.TooltipPortalProps>;
|
|
704
704
|
declare const tooltipContentVariants: (props?: ({
|
|
705
|
-
color?: "
|
|
705
|
+
color?: "white" | "black" | null | undefined;
|
|
706
706
|
arrow?: boolean | null | undefined;
|
|
707
707
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
708
708
|
interface TooltipContentProps extends React$1.ComponentPropsWithoutRef<typeof TooltipPrimitive.Content>, VariantProps<typeof tooltipContentVariants> {
|
package/dist/plugin/plugin.cjs
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
2
|
-
|
|
3
|
-
const buildPlugin = require('./template').buildPlugin;
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
2
|
+
|
|
3
|
+
const buildPlugin = require('./template').buildPlugin;
|
|
4
|
+
|
|
5
|
+
console.log('>>>>>>>>>>>>>>', process.env);
|
|
6
|
+
|
|
7
|
+
module.exports = buildPlugin('lecom-ui/dist/public');
|