revdev-components 0.23.0 → 0.24.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/build/index.js +2 -2
- package/build/link/link/index.d.ts +1 -1
- package/package.json +1 -1
package/build/index.js
CHANGED
|
@@ -4855,7 +4855,7 @@ var FlatButton = function (_a) {
|
|
|
4855
4855
|
|
|
4856
4856
|
var s$6 = {"root":"index-module_root__r-dVh"};
|
|
4857
4857
|
|
|
4858
|
-
|
|
4858
|
+
function AppLink(_a) {
|
|
4859
4859
|
var _b;
|
|
4860
4860
|
var propHref = _a.href, as = _a.as, className = _a.className, children = _a.children, shallow = _a.shallow, title = _a.title, route = _a.route, params = _a.params, noneDecoration = _a.noneDecoration, showUnderline = _a.showUnderline, aRef = _a.aRef, rest = __rest(_a, ["href", "as", "className", "children", "shallow", "title", "route", "params", "noneDecoration", "showUnderline", "aRef"]);
|
|
4861
4861
|
var href = propHref;
|
|
@@ -4868,7 +4868,7 @@ var AppLink = function (_a) {
|
|
|
4868
4868
|
_b[s$6.none__decoration] = noneDecoration,
|
|
4869
4869
|
_b[s$6.show__underline] = showUnderline,
|
|
4870
4870
|
_b)), ref: aRef }, rest), children));
|
|
4871
|
-
}
|
|
4871
|
+
}
|
|
4872
4872
|
|
|
4873
4873
|
var s$5 = {"root":"index-module_root__gpEkZ"};
|
|
4874
4874
|
|
|
@@ -12,5 +12,5 @@ interface Props<TQuery = any> extends React.AnchorHTMLAttributes<HTMLAnchorEleme
|
|
|
12
12
|
params?: TQuery;
|
|
13
13
|
aRef?: React.RefObject<any>;
|
|
14
14
|
}
|
|
15
|
-
export declare
|
|
15
|
+
export declare function AppLink<T = any>({ href: propHref, as, className, children, shallow, title, route, params, noneDecoration, showUnderline, aRef, ...rest }: Props<T>): React.JSX.Element;
|
|
16
16
|
export {};
|