@producteca/producteca-ui-kit 1.15.4 → 1.17.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/inputs/dateRangePicker/dateFormater.d.ts +1 -0
- package/dist/components/inputs/dateRangePicker/dateRangePickerUtils.d.ts +0 -1
- package/dist/components/inputs/dateRangePicker/index.d.ts +1 -0
- package/dist/components/tooltip/tooltip.d.ts +2 -1
- package/dist/locales/es.d.ts +3 -0
- package/dist/producteca-ui-kit.es.js +3947 -3923
- package/dist/producteca-ui-kit.umd.js +91 -91
- package/dist/style.css +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const formatDate: (date: Date, format: string) => string;
|
|
@@ -2,7 +2,6 @@ import { DateRange, Matcher } from 'react-day-picker';
|
|
|
2
2
|
import { InputValue } from '../../../validators';
|
|
3
3
|
|
|
4
4
|
export declare const fromInputValue: (inputValue: InputValue) => DateRange | undefined;
|
|
5
|
-
export declare const getSafeDateFormat: (format: string, fallback?: string) => string;
|
|
6
5
|
export declare const getDisplayRange: (range: DateRange | undefined, format?: string) => string;
|
|
7
6
|
export declare const convertToDate: (val: InputValue | undefined) => Date | undefined;
|
|
8
7
|
export declare const CustomWeekday: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -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;
|