@edvisor/product-language 0.10.16 → 0.10.18
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/index.js
CHANGED
|
@@ -7041,7 +7041,7 @@ InputText.Label = InputField$1.Label;
|
|
|
7041
7041
|
const HTMLAnchor = /*#__PURE__*/styled.a.withConfig({
|
|
7042
7042
|
displayName: "link__HTMLAnchor",
|
|
7043
7043
|
componentId: "gys54r-0"
|
|
7044
|
-
})(["color:", ";pointer-events:", ";&:hover{text-decoration:none;color:", ";}&:active{text-decoration:underline;}"], ({
|
|
7044
|
+
})(["color:", ";text-decoration:underline;pointer-events:", ";&:hover{text-decoration:none;color:", ";}&:active{text-decoration:underline;}"], ({
|
|
7045
7045
|
initialColor
|
|
7046
7046
|
}) => initialColor, ({
|
|
7047
7047
|
disabled
|
|
@@ -5,6 +5,6 @@ interface IPaginationProps {
|
|
|
5
5
|
buttonsOnly?: boolean;
|
|
6
6
|
onChange: (page: number) => void;
|
|
7
7
|
}
|
|
8
|
-
declare type IProps = IPaginationProps & InputHTMLAttributes<HTMLInputElement>;
|
|
8
|
+
declare type IProps = IPaginationProps & Omit<InputHTMLAttributes<HTMLInputElement>, 'onChange'>;
|
|
9
9
|
export declare const Pagination: (props: IProps) => JSX.Element;
|
|
10
10
|
export {};
|