lecom-ui 4.3.3 → 4.3.4
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 +5 -5
- package/dist/plugin/plugin.cjs +5 -5
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -451,7 +451,7 @@ interface ErrorEmptyDisplayProps {
|
|
|
451
451
|
render?: React.ReactNode;
|
|
452
452
|
}
|
|
453
453
|
declare const ErrorEmptyDisplay: {
|
|
454
|
-
({ className, classContent, image, title, description, footer, render, }: ErrorEmptyDisplayProps): string | number | bigint | true | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined
|
|
454
|
+
({ className, classContent, image, title, description, footer, render, }: ErrorEmptyDisplayProps): string | number | bigint | true | react_jsx_runtime.JSX.Element | Iterable<React$1.ReactNode> | Promise<string | number | bigint | boolean | React$1.ReactPortal | React$1.ReactElement<unknown, string | React$1.JSXElementConstructor<any>> | Iterable<React$1.ReactNode> | null | undefined>;
|
|
455
455
|
displayName: string;
|
|
456
456
|
};
|
|
457
457
|
|
|
@@ -541,9 +541,9 @@ interface HeaderProps extends React$1.HTMLAttributes<HTMLElement>, VariantProps<
|
|
|
541
541
|
}
|
|
542
542
|
|
|
543
543
|
declare const inputVariants: (props?: ({
|
|
544
|
-
variant?: "
|
|
545
|
-
size?: "
|
|
546
|
-
radius?: "
|
|
544
|
+
variant?: "filled" | "default" | "borderless" | null | undefined;
|
|
545
|
+
size?: "small" | "large" | "default" | null | undefined;
|
|
546
|
+
radius?: "small" | "large" | "default" | null | undefined;
|
|
547
547
|
} & class_variance_authority_types.ClassProp) | undefined) => string;
|
|
548
548
|
interface InputProps extends Omit<React$1.InputHTMLAttributes<HTMLInputElement>, 'size' | 'sufix' | 'prefix'>, VariantProps<typeof inputVariants> {
|
|
549
549
|
sufix?: React$1.ReactNode;
|
|
@@ -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,5 @@
|
|
|
1
|
-
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
2
|
-
|
|
3
|
-
const buildPlugin = require('./template').buildPlugin;
|
|
4
|
-
|
|
5
|
-
module.exports = buildPlugin('
|
|
1
|
+
/* eslint-disable @typescript-eslint/no-require-imports */
|
|
2
|
+
|
|
3
|
+
const buildPlugin = require('./template').buildPlugin;
|
|
4
|
+
|
|
5
|
+
module.exports = buildPlugin('lecom-ui/dist/public');
|