react-lib-tools 0.0.24 → 0.0.26

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.
Files changed (29) hide show
  1. package/README.md +6 -0
  2. package/dist/{GettingStartedRoute-DT-NgTRJ.js → GettingStartedRoute-DdNa0GEu.js} +2 -2
  3. package/dist/{GettingStartedRoute-DT-NgTRJ.js.map → GettingStartedRoute-DdNa0GEu.js.map} +1 -1
  4. package/dist/{GettingStartedRoute-CzpsPdpt.cjs → GettingStartedRoute-eHXI8kXM.cjs} +2 -2
  5. package/dist/{GettingStartedRoute-CzpsPdpt.cjs.map → GettingStartedRoute-eHXI8kXM.cjs.map} +1 -1
  6. package/dist/{PageNotFound-s_DTkau5.cjs → PageNotFound-Ds3IquRU.cjs} +2 -2
  7. package/dist/{PageNotFound-s_DTkau5.cjs.map → PageNotFound-Ds3IquRU.cjs.map} +1 -1
  8. package/dist/{PageNotFound-BlfHlRrb.js → PageNotFound-k-Qhjbpf.js} +2 -2
  9. package/dist/{PageNotFound-BlfHlRrb.js.map → PageNotFound-k-Qhjbpf.js.map} +1 -1
  10. package/dist/{SupportRoute-CcJBfOWu.js → SupportRoute-CodOYgT1.js} +2 -2
  11. package/dist/{SupportRoute-CcJBfOWu.js.map → SupportRoute-CodOYgT1.js.map} +1 -1
  12. package/dist/{SupportRoute-BcjMIACR.cjs → SupportRoute-gybxWRSQ.cjs} +2 -2
  13. package/dist/{SupportRoute-BcjMIACR.cjs.map → SupportRoute-gybxWRSQ.cjs.map} +1 -1
  14. package/dist/{VersionsRoute-C_HIVV6r.js → VersionsRoute-CWPitZ1W.js} +2 -2
  15. package/dist/{VersionsRoute-C_HIVV6r.js.map → VersionsRoute-CWPitZ1W.js.map} +1 -1
  16. package/dist/{VersionsRoute-CX3YF7an.cjs → VersionsRoute-D-MGMVvr.cjs} +2 -2
  17. package/dist/{VersionsRoute-CX3YF7an.cjs.map → VersionsRoute-D-MGMVvr.cjs.map} +1 -1
  18. package/dist/{index-Dt2kd-pc.js → index-BGq8Vw-C.js} +3445 -2851
  19. package/dist/index-BGq8Vw-C.js.map +1 -0
  20. package/dist/index-fDoQ6OQ9.cjs +8 -0
  21. package/dist/index-fDoQ6OQ9.cjs.map +1 -0
  22. package/dist/react-lib-tools.cjs +1 -1
  23. package/dist/react-lib-tools.d.ts +8 -1
  24. package/dist/react-lib-tools.js +5 -4
  25. package/package.json +1 -1
  26. package/styles.css +4 -0
  27. package/dist/index-BCwWYpnQ.cjs +0 -8
  28. package/dist/index-BCwWYpnQ.cjs.map +0 -1
  29. package/dist/index-Dt2kd-pc.js.map +0 -1
@@ -1,2 +1,2 @@
1
- "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e=require("./index-BCwWYpnQ.cjs");exports.AppRoot=e.AppRoot;exports.Block=e.Block;exports.Box=e.Box;exports.Button=e.Button;exports.Callout=e.Callout;exports.Checkbox=e.Checkbox;exports.Code=e.Code;exports.ComponentProps=e.ComponentProps;exports.ComponentPropsSection=e.ComponentPropsSection;exports.DocsSection=e.DocsSection;exports.ErrorBoundary=e.ErrorBoundary;exports.ExternalLink=e.ExternalLink;exports.Header=e.Header;exports.ImperativeHandle=e.ImperativeHandle;exports.Input=e.Input;exports.Link=e.Link;exports.LoadingSpinner=e.LoadingSpinner;exports.NavLink=e.NavLink;exports.NavSection=e.NavSection;exports.Radio=e.Radio;exports.Select=e.Select;exports.assert=e.assert;exports.cn=e.cn;exports.getIntentClassNames=e.getIntentClassNames;
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const o=require("./index-fDoQ6OQ9.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
@@ -113,7 +113,7 @@ export declare function getIntentClassNames(intent: Intent, minimal?: boolean):
113
113
 
114
114
  declare function GettingStartedRoute(): JSX.Element;
115
115
 
116
- export declare function Header({ section, title: titleProp }: {
116
+ export declare function Header({ section, title }: {
117
117
  section?: string;
118
118
  title: string;
119
119
  }): JSX.Element;
@@ -207,6 +207,13 @@ export declare function Select<Value extends string>({ className, defaultValue,
207
207
 
208
208
  declare function SupportRoute(): JSX.Element;
209
209
 
210
+ export declare function Tooltip({ children, className, content, showOnFocus, showOnHover }: PropsWithChildren<{
211
+ className?: string;
212
+ content: ReactNode;
213
+ showOnFocus?: boolean;
214
+ showOnHover?: boolean;
215
+ }>): JSX.Element;
216
+
210
217
  declare type Versions = {
211
218
  [major: string]: {
212
219
  [fullVersion: string]: string;
@@ -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, l as v, m as E, n as H } from "./index-Dt2kd-pc.js";
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-BGq8Vw-C.js";
2
2
  export {
3
3
  o as AppRoot,
4
4
  e as Block,
@@ -21,8 +21,9 @@ export {
21
21
  I as NavSection,
22
22
  N as Radio,
23
23
  g as Select,
24
- v as assert,
25
- E as cn,
26
- H as getIntentClassNames
24
+ v as Tooltip,
25
+ E as assert,
26
+ H as cn,
27
+ R as getIntentClassNames
27
28
  };
28
29
  //# sourceMappingURL=react-lib-tools.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-lib-tools",
3
- "version": "0.0.24",
3
+ "version": "0.0.26",
4
4
  "type": "module",
5
5
  "author": "Brian Vaughn <brian.david.vaughn@gmail.com> (https://github.com/bvaughn/)",
6
6
  "contributors": [
package/styles.css CHANGED
@@ -32,6 +32,10 @@
32
32
  --color-background-gradient-2: var(--color-violet-500);
33
33
  --color-background-gradient-3: var(--color-fuchsia-700);
34
34
 
35
+ --color-header-package-name: var(--color-white);
36
+ --color-header-package-description: var(--color-white);
37
+ --color-header-icons: var(--color-white);
38
+
35
39
  --color-focus-1: var(--color-sky-300);
36
40
  --color-focus-2: var(--color-sky-400);
37
41
  --color-focus-3: var(--color-sky-600);