@geotab/zenith 3.4.0-beta.0 → 3.4.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/README.md +2 -1
- package/dist/stepperRaw/stepperRaw.d.ts +4 -1
- package/dist/stepperRaw/stepperRaw.js +2 -1
- package/dist/textInputRaw/textInputRaw.d.ts +4 -1
- package/dist/textInputRaw/textInputRaw.js +1 -0
- package/dist/tooltip/tooltip.d.ts +12 -3
- package/esm/stepperRaw/stepperRaw.d.ts +4 -1
- package/esm/stepperRaw/stepperRaw.js +2 -1
- package/esm/textInputRaw/textInputRaw.d.ts +4 -1
- package/esm/textInputRaw/textInputRaw.js +1 -0
- package/esm/tooltip/tooltip.d.ts +12 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -42,11 +42,11 @@ Zenith library provides components defined in Zenith Design System. It includes
|
|
|
42
42
|
|
|
43
43
|
### 3.4.0
|
|
44
44
|
|
|
45
|
+
* Integrate Tooltip with Zenith components
|
|
45
46
|
* Add `tall` list variation
|
|
46
47
|
* Fix Layout min-height issue
|
|
47
48
|
* Add EmptyState component
|
|
48
49
|
* Update fr and es trantions
|
|
49
|
-
* Integrate Tooltip with Zenith components
|
|
50
50
|
* Add ExpandablePill `autoExpandChildren` property
|
|
51
51
|
* Mobile Table alignment fix
|
|
52
52
|
* Modal close button style fix
|
|
@@ -56,6 +56,7 @@ Zenith library provides components defined in Zenith Design System. It includes
|
|
|
56
56
|
* Update documentation for images
|
|
57
57
|
* Zenith stacked bar chart calculation fix
|
|
58
58
|
* Update Alerts animation
|
|
59
|
+
* FormField build fixes
|
|
59
60
|
|
|
60
61
|
### 3.3.0
|
|
61
62
|
|
|
@@ -4,5 +4,8 @@ export interface IStepperRaw extends IStepperRawBase {
|
|
|
4
4
|
}
|
|
5
5
|
export declare const INPUT_DEFAULT_WIDTH = 47;
|
|
6
6
|
export declare const INPUT_DEFAULT_WIDTH_DRIVE = 56;
|
|
7
|
-
export declare const StepperRaw:
|
|
7
|
+
export declare const StepperRaw: {
|
|
8
|
+
(props: TStepperRaw): React.JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
8
11
|
export declare const TRANSLATIONS: string[];
|
|
@@ -139,4 +139,5 @@ const StepperRaw = props => {
|
|
|
139
139
|
});
|
|
140
140
|
};
|
|
141
141
|
exports.StepperRaw = StepperRaw;
|
|
142
|
-
exports.TRANSLATIONS = ["Decrease value", "Increase value"];
|
|
142
|
+
exports.TRANSLATIONS = ["Decrease value", "Increase value"];
|
|
143
|
+
exports.StepperRaw.displayName = "StepperRaw";
|
|
@@ -2,4 +2,7 @@ import "./textInputRaw.less";
|
|
|
2
2
|
import { ITextInputDefaultRaw, TTextInputRaw } from "./types";
|
|
3
3
|
export interface ITextInputRaw extends ITextInputDefaultRaw {
|
|
4
4
|
}
|
|
5
|
-
export declare const TextInputRaw:
|
|
5
|
+
export declare const TextInputRaw: {
|
|
6
|
+
(props: TTextInputRaw): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
@@ -22,3 +22,4 @@ const TextInputRaw = (props) => {
|
|
|
22
22
|
min: min, max: max, "aria-labelledby": props.ariaLabelledby, "aria-label": props.ariaLabel, autoFocus: props.autoFocus, required: !!required, onFocus: props.onFocus, minLength: minLength, name: name, pattern: pattern });
|
|
23
23
|
};
|
|
24
24
|
exports.TextInputRaw = TextInputRaw;
|
|
25
|
+
exports.TextInputRaw.displayName = "TextInputRaw";
|
|
@@ -13,14 +13,23 @@ interface ITooltip extends IZenComponentProps {
|
|
|
13
13
|
mobileTitle?: string;
|
|
14
14
|
/**
|
|
15
15
|
* @deprecated
|
|
16
|
-
* @param mobileSheetTitle - will be removed in the next major release
|
|
17
|
-
* @param mobileView - will be removed in the next major release
|
|
18
16
|
* @param size - will be removed in the next major release
|
|
19
|
-
* @param padding - will be removed in the next major release
|
|
20
17
|
*/
|
|
21
18
|
size?: TooltipSize;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated
|
|
21
|
+
* @param padding - will be removed in the next major release
|
|
22
|
+
*/
|
|
22
23
|
padding?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @deprecated
|
|
26
|
+
* @param mobileView - will be removed in the next major release
|
|
27
|
+
*/
|
|
23
28
|
mobileView?: TMobileView;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated
|
|
31
|
+
* @param mobileSheetTitle - will be removed in the next major release
|
|
32
|
+
*/
|
|
24
33
|
mobileSheetTitle?: ReactElement | string;
|
|
25
34
|
}
|
|
26
35
|
export declare const Tooltip: FC<ITooltip>;
|
|
@@ -4,5 +4,8 @@ export interface IStepperRaw extends IStepperRawBase {
|
|
|
4
4
|
}
|
|
5
5
|
export declare const INPUT_DEFAULT_WIDTH = 47;
|
|
6
6
|
export declare const INPUT_DEFAULT_WIDTH_DRIVE = 56;
|
|
7
|
-
export declare const StepperRaw:
|
|
7
|
+
export declare const StepperRaw: {
|
|
8
|
+
(props: TStepperRaw): React.JSX.Element;
|
|
9
|
+
displayName: string;
|
|
10
|
+
};
|
|
8
11
|
export declare const TRANSLATIONS: string[];
|
|
@@ -2,4 +2,7 @@ import "./textInputRaw.less";
|
|
|
2
2
|
import { ITextInputDefaultRaw, TTextInputRaw } from "./types";
|
|
3
3
|
export interface ITextInputRaw extends ITextInputDefaultRaw {
|
|
4
4
|
}
|
|
5
|
-
export declare const TextInputRaw:
|
|
5
|
+
export declare const TextInputRaw: {
|
|
6
|
+
(props: TTextInputRaw): import("react/jsx-runtime").JSX.Element;
|
|
7
|
+
displayName: string;
|
|
8
|
+
};
|
|
@@ -18,3 +18,4 @@ export const TextInputRaw = (props) => {
|
|
|
18
18
|
// TODO: add tests
|
|
19
19
|
min: min, max: max, "aria-labelledby": props.ariaLabelledby, "aria-label": props.ariaLabel, autoFocus: props.autoFocus, required: !!required, onFocus: props.onFocus, minLength: minLength, name: name, pattern: pattern });
|
|
20
20
|
};
|
|
21
|
+
TextInputRaw.displayName = "TextInputRaw";
|
package/esm/tooltip/tooltip.d.ts
CHANGED
|
@@ -13,14 +13,23 @@ interface ITooltip extends IZenComponentProps {
|
|
|
13
13
|
mobileTitle?: string;
|
|
14
14
|
/**
|
|
15
15
|
* @deprecated
|
|
16
|
-
* @param mobileSheetTitle - will be removed in the next major release
|
|
17
|
-
* @param mobileView - will be removed in the next major release
|
|
18
16
|
* @param size - will be removed in the next major release
|
|
19
|
-
* @param padding - will be removed in the next major release
|
|
20
17
|
*/
|
|
21
18
|
size?: TooltipSize;
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated
|
|
21
|
+
* @param padding - will be removed in the next major release
|
|
22
|
+
*/
|
|
22
23
|
padding?: number;
|
|
24
|
+
/**
|
|
25
|
+
* @deprecated
|
|
26
|
+
* @param mobileView - will be removed in the next major release
|
|
27
|
+
*/
|
|
23
28
|
mobileView?: TMobileView;
|
|
29
|
+
/**
|
|
30
|
+
* @deprecated
|
|
31
|
+
* @param mobileSheetTitle - will be removed in the next major release
|
|
32
|
+
*/
|
|
24
33
|
mobileSheetTitle?: ReactElement | string;
|
|
25
34
|
}
|
|
26
35
|
export declare const Tooltip: FC<ITooltip>;
|