@producteca/producteca-ui-kit 1.15.3 → 1.16.0
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/components/tooltip/tooltip.d.ts +2 -1
- package/dist/locales/es.d.ts +3 -0
- package/dist/producteca-ui-kit.es.js +1457 -1446
- package/dist/producteca-ui-kit.umd.js +64 -64
- package/package.json +1 -1
|
@@ -8,11 +8,12 @@ export interface BaseTooltipProps {
|
|
|
8
8
|
arrow?: boolean;
|
|
9
9
|
maxWidth?: number | string;
|
|
10
10
|
trigger?: TooltipTrigger;
|
|
11
|
+
shouldShowTooltip?: boolean;
|
|
11
12
|
}
|
|
12
13
|
export interface WithTooltipProps extends BaseTooltipProps {
|
|
13
14
|
children: React.ReactElement;
|
|
14
15
|
}
|
|
15
|
-
export declare const WithTooltip: ({ children, content, placement, arrow, maxWidth, trigger, ...otherProps }: WithTooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare const WithTooltip: ({ children, content, placement, arrow, maxWidth, trigger, shouldShowTooltip, ...otherProps }: WithTooltipProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
export interface CombinedTooltipProps extends BaseTooltipProps {
|
|
17
18
|
children: React.ReactElement;
|
|
18
19
|
}
|
package/dist/locales/es.d.ts
CHANGED
|
@@ -28,6 +28,9 @@ declare const _default: {
|
|
|
28
28
|
tooltip: {
|
|
29
29
|
hoverToSee: string;
|
|
30
30
|
basicContent: string;
|
|
31
|
+
showTooltipWhenHoverButton: string;
|
|
32
|
+
showTooltipWhenDisabled: string;
|
|
33
|
+
showTooltipWhenDisabledDescription: string;
|
|
31
34
|
basicDescription: string;
|
|
32
35
|
overflowDescription: string;
|
|
33
36
|
componentDescription: string;
|