react-lib-tools 0.0.34 → 0.0.35
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/{CommonQuestionsRoute-woOvTCB7.cjs → CommonQuestionsRoute-CA0eEVPH.cjs} +2 -2
- package/dist/{CommonQuestionsRoute-woOvTCB7.cjs.map → CommonQuestionsRoute-CA0eEVPH.cjs.map} +1 -1
- package/dist/{CommonQuestionsRoute-DmRskZnY.js → CommonQuestionsRoute-D9K79upc.js} +2 -2
- package/dist/{CommonQuestionsRoute-DmRskZnY.js.map → CommonQuestionsRoute-D9K79upc.js.map} +1 -1
- package/dist/{GettingStartedRoute-Bo5SxNiA.cjs → GettingStartedRoute-B2gmhrI5.cjs} +2 -2
- package/dist/{GettingStartedRoute-Bo5SxNiA.cjs.map → GettingStartedRoute-B2gmhrI5.cjs.map} +1 -1
- package/dist/{GettingStartedRoute-BwCE2V2M.js → GettingStartedRoute-rQVjSgEq.js} +2 -2
- package/dist/{GettingStartedRoute-BwCE2V2M.js.map → GettingStartedRoute-rQVjSgEq.js.map} +1 -1
- package/dist/{PageNotFound-Do-frKwc.js → PageNotFound-CrAUgSnt.js} +2 -2
- package/dist/{PageNotFound-Do-frKwc.js.map → PageNotFound-CrAUgSnt.js.map} +1 -1
- package/dist/{PageNotFound-yp0rd76-.cjs → PageNotFound-YcVoO6YV.cjs} +2 -2
- package/dist/{PageNotFound-yp0rd76-.cjs.map → PageNotFound-YcVoO6YV.cjs.map} +1 -1
- package/dist/{SupportRoute-Q9tiVrsw.cjs → SupportRoute-B4AetYXb.cjs} +2 -2
- package/dist/{SupportRoute-Q9tiVrsw.cjs.map → SupportRoute-B4AetYXb.cjs.map} +1 -1
- package/dist/{SupportRoute-DEqnIuv0.js → SupportRoute-C74g_-rm.js} +2 -2
- package/dist/{SupportRoute-DEqnIuv0.js.map → SupportRoute-C74g_-rm.js.map} +1 -1
- package/dist/{VersionsRoute-CQdZrZ85.js → VersionsRoute-CX4l8cMW.js} +2 -2
- package/dist/{VersionsRoute-CQdZrZ85.js.map → VersionsRoute-CX4l8cMW.js.map} +1 -1
- package/dist/{VersionsRoute-DJ7l0bVC.cjs → VersionsRoute-Spk6Sna2.cjs} +2 -2
- package/dist/{VersionsRoute-DJ7l0bVC.cjs.map → VersionsRoute-Spk6Sna2.cjs.map} +1 -1
- package/dist/{index-8LP1ujuh.cjs → index-BB-4-AeJ.cjs} +5 -5
- package/dist/{index-8LP1ujuh.cjs.map → index-BB-4-AeJ.cjs.map} +1 -1
- package/dist/{index-BeyKcpAG.js → index-Bf43K_g2.js} +1616 -1580
- package/dist/{index-BeyKcpAG.js.map → index-Bf43K_g2.js.map} +1 -1
- package/dist/react-lib-tools.cjs +1 -1
- package/dist/react-lib-tools.d.ts +4 -1
- package/dist/react-lib-tools.js +1 -1
- package/package.json +1 -1
package/dist/react-lib-tools.cjs
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./index-
|
|
1
|
+
"use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./index-BB-4-AeJ.cjs");exports.AppRoot=o.AppRoot;exports.Block=o.Block;exports.Box=o.Box;exports.Button=o.Button;exports.Callout=o.Callout;exports.Checkbox=o.Checkbox;exports.Code=o.Code;exports.ComponentProps=o.ComponentProps;exports.ComponentPropsSection=o.ComponentPropsSection;exports.DocsSection=o.DocsSection;exports.ErrorBoundary=o.ErrorBoundary;exports.ExternalLink=o.ExternalLink;exports.Header=o.Header;exports.ImperativeHandle=o.ImperativeHandle;exports.Input=o.Input;exports.Link=o.Link;exports.LoadingSpinner=o.LoadingSpinner;exports.NavLink=o.NavLink;exports.NavSection=o.NavSection;exports.Radio=o.Radio;exports.Select=o.Select;exports.Tooltip=o.Tooltip;exports.assert=o.assert;exports.cn=o.cn;exports.getIntentClassNames=o.getIntentClassNames;
|
|
2
2
|
//# sourceMappingURL=react-lib-tools.cjs.map
|
|
@@ -8,6 +8,7 @@ import { JSX } from 'react/jsx-runtime';
|
|
|
8
8
|
import { KeyboardEvent as KeyboardEvent_2 } from 'react';
|
|
9
9
|
import { LazyExoticComponent } from 'react';
|
|
10
10
|
import { MouseEvent as MouseEvent_2 } from 'react';
|
|
11
|
+
import { Placement } from '@floating-ui/react';
|
|
11
12
|
import { PropsWithChildren } from 'react';
|
|
12
13
|
import { ReactNode } from 'react';
|
|
13
14
|
|
|
@@ -219,11 +220,13 @@ export declare function Select<Value extends string>({ className, defaultValue,
|
|
|
219
220
|
|
|
220
221
|
declare function SupportRoute(): JSX.Element;
|
|
221
222
|
|
|
222
|
-
export declare function Tooltip({ children, className, content, showOnFocus, showOnHover }: PropsWithChildren<{
|
|
223
|
+
export declare function Tooltip({ children, className, content, positions, showOnFocus, showOnHover, usePortal }: PropsWithChildren<{
|
|
223
224
|
className?: string;
|
|
224
225
|
content: ReactNode;
|
|
226
|
+
positions?: Array<Placement> | undefined;
|
|
225
227
|
showOnFocus?: boolean;
|
|
226
228
|
showOnHover?: boolean;
|
|
229
|
+
usePortal?: boolean;
|
|
227
230
|
}>): JSX.Element;
|
|
228
231
|
|
|
229
232
|
declare type Versions = {
|
package/dist/react-lib-tools.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { A as o, a as e, B as n, b as t, C as r, c as i, d as p, i as c, j as l, D as d, e as C, E as k, H as m, I as B, f as L, L as S, g as u, N as x, h as I, R as N, k as g, T as v, l as E, m as H, n as R } from "./index-
|
|
1
|
+
import { A as o, a as e, B as n, b as t, C as r, c as i, d as p, i as c, j as l, D as d, e as C, E as k, H as m, I as B, f as L, L as S, g as u, N as x, h as I, R as N, k as g, T as v, l as E, m as H, n as R } from "./index-Bf43K_g2.js";
|
|
2
2
|
export {
|
|
3
3
|
o as AppRoot,
|
|
4
4
|
e as Block,
|