@burdenoff/fe-libs 2026.703.2 → 2026.704.1

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.
@@ -8,6 +8,15 @@ export interface Product {
8
8
  /** When true, render as disabled with a "Coming soon" badge. */
9
9
  comingSoon?: boolean;
10
10
  }
11
+ /**
12
+ * Resolve the product to render as "current" in the switcher trigger.
13
+ *
14
+ * If the active shell's slug isn't in the catalog yet, synthesize a neutral
15
+ * product from the slug itself rather than mislabelling it as `products[0]`
16
+ * (which would show the first catalog entry's brand). Falls back to
17
+ * `products[0]` only when no slug is provided at all.
18
+ */
19
+ export declare function resolveCurrentProduct(products: Product[], currentProductId?: string): Product | undefined;
11
20
  export interface ProductSwitcherProps {
12
21
  products: Product[];
13
22
  currentProductId?: string;
@@ -1 +1 @@
1
- {"version":3,"file":"ProductSwitcher.d.ts","sourceRoot":"","sources":["../../src/chrome/ProductSwitcher.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,MAAM,WAAW,OAAO;IACtB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gEAAgE;IAChE,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC7C,4CAA4C;IAC5C,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CAwIpD,CAAC"}
1
+ {"version":3,"file":"ProductSwitcher.d.ts","sourceRoot":"","sources":["../../src/chrome/ProductSwitcher.tsx"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,EAAE,EAAE,MAAM,OAAO,CAAC;AAEhC,MAAM,WAAW,OAAO;IACtB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,gEAAgE;IAChE,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED;;;;;;;GAOG;AACH,wBAAgB,qBAAqB,CACnC,QAAQ,EAAE,OAAO,EAAE,EACnB,gBAAgB,CAAC,EAAE,MAAM,GACxB,OAAO,GAAG,SAAS,CAKrB;AAED,MAAM,WAAW,oBAAoB;IACnC,QAAQ,EAAE,OAAO,EAAE,CAAC;IACpB,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B,eAAe,CAAC,EAAE,CAAC,OAAO,EAAE,OAAO,KAAK,IAAI,CAAC;IAC7C,4CAA4C;IAC5C,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED;;;;;;;;;;;GAWG;AACH,eAAO,MAAM,eAAe,EAAE,EAAE,CAAC,oBAAoB,CAwIpD,CAAC"}
@@ -1,37 +1,44 @@
1
1
  import { useEffect as e, useRef as t, useState as n } from "react";
2
2
  import { jsx as r, jsxs as i } from "react/jsx-runtime";
3
3
  //#region src/chrome/ProductSwitcher.tsx
4
- var a = ({ products: a, currentProductId: o, onProductChange: s, compact: c = !1 }) => {
5
- let [l, u] = n(!1), d = t(null), f = a.find((e) => e.id === o) || a[0];
4
+ function a(e, t) {
5
+ return e.find((e) => e.id === t) ?? (t ? {
6
+ id: t,
7
+ name: t,
8
+ url: "#"
9
+ } : e[0]);
10
+ }
11
+ var o = ({ products: o, currentProductId: s, onProductChange: c, compact: l = !1 }) => {
12
+ let [u, d] = n(!1), f = t(null), p = a(o, s);
6
13
  e(() => {
7
14
  let e = (e) => {
8
- d.current && !d.current.contains(e.target) && u(!1);
15
+ f.current && !f.current.contains(e.target) && d(!1);
9
16
  };
10
- if (l) return document.addEventListener("mousedown", e), () => document.removeEventListener("mousedown", e);
11
- }, [l]);
12
- let p = (e) => {
13
- e.comingSoon || (s ? s(e) : window.location.href = e.url, u(!1));
17
+ if (u) return document.addEventListener("mousedown", e), () => document.removeEventListener("mousedown", e);
18
+ }, [u]);
19
+ let m = (e) => {
20
+ e.comingSoon || (c ? c(e) : window.location.href = e.url, d(!1));
14
21
  };
15
22
  return /* @__PURE__ */ i("div", {
16
23
  className: "relative",
17
- ref: d,
24
+ ref: f,
18
25
  children: [/* @__PURE__ */ i("button", {
19
- onClick: () => u(!l),
20
- className: `flex items-center gap-2 px-3 py-2 rounded-button hover:bg-bg-sunken transition-colors ${l ? "bg-bg-sunken" : ""}`,
26
+ onClick: () => d(!u),
27
+ className: `flex items-center gap-2 px-3 py-2 rounded-button hover:bg-bg-sunken transition-colors ${u ? "bg-bg-sunken" : ""}`,
21
28
  "aria-label": "Switch product",
22
- "aria-expanded": l,
29
+ "aria-expanded": u,
23
30
  children: [
24
31
  /* @__PURE__ */ r("div", {
25
32
  className: "size-6 rounded-md flex items-center justify-center flex-shrink-0 text-text-inverse font-semibold text-xs",
26
- style: { backgroundColor: f?.color || "var(--color-action-primary-bg)" },
27
- children: f?.icon || f?.name.charAt(0)
33
+ style: { backgroundColor: p?.color || "var(--color-action-primary-bg)" },
34
+ children: p?.icon || p?.name.charAt(0)
28
35
  }),
29
- !c && /* @__PURE__ */ r("span", {
36
+ !l && /* @__PURE__ */ r("span", {
30
37
  className: "text-body-sm font-medium text-text-primary",
31
- children: f?.name
38
+ children: p?.name
32
39
  }),
33
- !c && /* @__PURE__ */ r("svg", {
34
- className: `w-4 h-4 text-text-secondary transition-transform ${l ? "rotate-180" : ""}`,
40
+ !l && /* @__PURE__ */ r("svg", {
41
+ className: `w-4 h-4 text-text-secondary transition-transform ${u ? "rotate-180" : ""}`,
35
42
  fill: "none",
36
43
  stroke: "currentColor",
37
44
  viewBox: "0 0 24 24",
@@ -43,7 +50,7 @@ var a = ({ products: a, currentProductId: o, onProductChange: s, compact: c = !1
43
50
  })
44
51
  })
45
52
  ]
46
- }), l && /* @__PURE__ */ i("div", {
53
+ }), u && /* @__PURE__ */ i("div", {
47
54
  className: "absolute right-0 mt-2 w-[calc(100vw-1.5rem)] sm:w-64 max-w-64 bg-bg-elevated border border-border-subtle rounded-card shadow-[var(--shadow-elevation-4)] z-50 py-2 overflow-hidden animate-in fade-in-0 zoom-in-95 slide-in-from-top-2 duration-200",
48
55
  children: [/* @__PURE__ */ r("div", {
49
56
  className: "px-4 py-2 border-b border-border-subtle",
@@ -53,12 +60,12 @@ var a = ({ products: a, currentProductId: o, onProductChange: s, compact: c = !1
53
60
  })
54
61
  }), /* @__PURE__ */ r("div", {
55
62
  className: "py-1 max-h-96 overflow-y-auto",
56
- children: a.map((e) => /* @__PURE__ */ i("button", {
57
- onClick: () => p(e),
63
+ children: o.map((e) => /* @__PURE__ */ i("button", {
64
+ onClick: () => m(e),
58
65
  disabled: e.comingSoon,
59
66
  "aria-disabled": e.comingSoon,
60
67
  title: e.comingSoon ? "Coming soon" : void 0,
61
- className: `w-full flex items-center gap-3 px-4 py-2.5 text-body-sm transition-colors ${e.comingSoon ? "text-text-muted cursor-not-allowed opacity-60" : e.id === o ? "bg-[var(--color-accent-soft)] text-text-primary font-medium" : "text-text-primary hover:bg-bg-sunken"}`,
68
+ className: `w-full flex items-center gap-3 px-4 py-2.5 text-body-sm transition-colors ${e.comingSoon ? "text-text-muted cursor-not-allowed opacity-60" : e.id === s ? "bg-[var(--color-accent-soft)] text-text-primary font-medium" : "text-text-primary hover:bg-bg-sunken"}`,
62
69
  children: [
63
70
  /* @__PURE__ */ r("div", {
64
71
  className: "size-8 rounded-md flex items-center justify-center flex-shrink-0 text-text-inverse font-semibold text-sm",
@@ -72,7 +79,7 @@ var a = ({ products: a, currentProductId: o, onProductChange: s, compact: c = !1
72
79
  e.comingSoon ? /* @__PURE__ */ r("span", {
73
80
  className: "shrink-0 whitespace-nowrap rounded-full border border-border-subtle bg-bg-sunken px-1.5 py-0.5 text-[10px] font-medium uppercase tracking-wide text-text-secondary",
74
81
  children: "Coming soon"
75
- }) : e.id === o && /* @__PURE__ */ r("svg", {
82
+ }) : e.id === s && /* @__PURE__ */ r("svg", {
76
83
  className: "size-5 text-action-primary-bg",
77
84
  fill: "currentColor",
78
85
  viewBox: "0 0 20 20",
@@ -89,4 +96,4 @@ var a = ({ products: a, currentProductId: o, onProductChange: s, compact: c = !1
89
96
  });
90
97
  };
91
98
  //#endregion
92
- export { a as ProductSwitcher };
99
+ export { o as ProductSwitcher };
@@ -31,6 +31,24 @@ export declare const PRODUCT_URLS: {
31
31
  readonly workspaces: "https://app.burdenoff.com/";
32
32
  readonly vibecontrols: "https://app.vibecontrols.com/";
33
33
  readonly botlit: "https://app.botlit.ai/";
34
+ readonly healthybowl: "https://app.gethealthybowl.com/";
35
+ readonly adaptercloud: "https://app.adaptercloud.com/";
36
+ readonly atheletebridge: "https://app.atheletebridge.com/";
37
+ readonly coolandlovely: "https://app.coolandlovely.com/";
38
+ readonly hookmovies: "https://app.hookmovies.com/";
39
+ readonly labsofscience: "https://app.labsofscience.com/";
40
+ readonly subscriberbot: "https://app.subscriberbot.com/";
41
+ readonly crewfoundry: "https://app.crewfoundry.com/";
42
+ readonly kadaikodi: "https://app.kadaikodi.com/";
43
+ readonly headshotmarketing: "https://app.headshotmarketing.com/";
44
+ readonly ggnomad: "https://app.ggnomad.com/";
45
+ readonly assethandler: "https://app.assethandler.com/";
46
+ readonly eventfullymanaged: "https://app.eventfullymanaged.com/";
47
+ readonly housingvista: "https://app.housingvista.com/";
48
+ readonly timecampus: "https://app.timecampus.com/";
49
+ readonly movethewheels: "https://app.movethewheels.com/";
50
+ readonly manufacturedops: "https://app.manufacturedops.com/";
51
+ readonly proserviceworld: "https://app.proserviceworld.com/";
34
52
  };
35
53
  };
36
54
  export declare const PRODUCTS: ProductConfig[];
@@ -1 +1 @@
1
- {"version":3,"file":"products.d.ts","sourceRoot":"","sources":["../../../src/shared/config/products.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;CAef,CAAC;AAEX,eAAO,MAAM,QAAQ,EAAE,aAAa,EA0CnC,CAAC;AAOF,wBAAgB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAIvD;AAED;;GAEG;AACH,wBAAgB,mBAAmB;;QAzF7B,MAAM;UACJ,MAAM;UACN,MAAM;WACL,MAAM;kBACC,MAAM;IACpB;;;;;OAKG;iBACU,OAAO;IAgFrB"}
1
+ {"version":3,"file":"products.d.ts","sourceRoot":"","sources":["../../../src/shared/config/products.ts"],"names":[],"mappings":"AAAA;;;;GAIG;AAEH,MAAM,WAAW,aAAa;IAC5B,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,CAAC;IACd,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB;;;;;OAKG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;CACtB;AAED,eAAO,MAAM,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAiCf,CAAC;AAEX,eAAO,MAAM,QAAQ,EAAE,aAAa,EA0LnC,CAAC;AAOF,wBAAgB,aAAa,CAAC,SAAS,EAAE,MAAM,GAAG,MAAM,CAIvD;AAED;;GAEG;AACH,wBAAgB,mBAAmB;;QA3P7B,MAAM;UACJ,MAAM;UACN,MAAM;WACL,MAAM;kBACC,MAAM;IACpB;;;;;OAKG;iBACU,OAAO;IAkPrB"}
@@ -12,7 +12,25 @@ var e = {
12
12
  bigconsole: "https://app.bigconsole.com/",
13
13
  workspaces: "https://app.burdenoff.com/",
14
14
  vibecontrols: "https://app.vibecontrols.com/",
15
- botlit: "https://app.botlit.ai/"
15
+ botlit: "https://app.botlit.ai/",
16
+ healthybowl: "https://app.gethealthybowl.com/",
17
+ adaptercloud: "https://app.adaptercloud.com/",
18
+ atheletebridge: "https://app.atheletebridge.com/",
19
+ coolandlovely: "https://app.coolandlovely.com/",
20
+ hookmovies: "https://app.hookmovies.com/",
21
+ labsofscience: "https://app.labsofscience.com/",
22
+ subscriberbot: "https://app.subscriberbot.com/",
23
+ crewfoundry: "https://app.crewfoundry.com/",
24
+ kadaikodi: "https://app.kadaikodi.com/",
25
+ headshotmarketing: "https://app.headshotmarketing.com/",
26
+ ggnomad: "https://app.ggnomad.com/",
27
+ assethandler: "https://app.assethandler.com/",
28
+ eventfullymanaged: "https://app.eventfullymanaged.com/",
29
+ housingvista: "https://app.housingvista.com/",
30
+ timecampus: "https://app.timecampus.com/",
31
+ movethewheels: "https://app.movethewheels.com/",
32
+ manufacturedops: "https://app.manufacturedops.com/",
33
+ proserviceworld: "https://app.proserviceworld.com/"
16
34
  }
17
35
  }, t = [
18
36
  {
@@ -52,6 +70,150 @@ var e = {
52
70
  color: "#f59e0b",
53
71
  description: "AI agent platform",
54
72
  comingSoon: !0
73
+ },
74
+ {
75
+ id: "healthybowl",
76
+ name: "Healthybowl",
77
+ icon: "HB",
78
+ color: "#22c55e",
79
+ description: "Health & wellness platform",
80
+ comingSoon: !0
81
+ },
82
+ {
83
+ id: "adaptercloud",
84
+ name: "AdapterCloud",
85
+ icon: "AC",
86
+ color: "#0ea5e9",
87
+ description: "Digital infrastructure continuum",
88
+ comingSoon: !0
89
+ },
90
+ {
91
+ id: "atheletebridge",
92
+ name: "AtheleteBridge",
93
+ icon: "AB",
94
+ color: "#f97316",
95
+ description: "Sports, gaming & training platform",
96
+ comingSoon: !0
97
+ },
98
+ {
99
+ id: "coolandlovely",
100
+ name: "CoolAndLovely",
101
+ icon: "CL",
102
+ color: "#ec4899",
103
+ description: "Fashion & lifestyle platform",
104
+ comingSoon: !0
105
+ },
106
+ {
107
+ id: "hookmovies",
108
+ name: "HookMovies",
109
+ icon: "HM",
110
+ color: "#ef4444",
111
+ description: "Multi-language global streaming network",
112
+ comingSoon: !0
113
+ },
114
+ {
115
+ id: "labsofscience",
116
+ name: "LabsOfScience",
117
+ icon: "LS",
118
+ color: "#14b8a6",
119
+ description: "Science & discovery platform",
120
+ comingSoon: !0
121
+ },
122
+ {
123
+ id: "subscriberbot",
124
+ name: "SubscriberBot",
125
+ icon: "SB",
126
+ color: "#a855f7",
127
+ description: "Recurring-subscription management",
128
+ comingSoon: !0
129
+ },
130
+ {
131
+ id: "crewfoundry",
132
+ name: "Crewfoundry",
133
+ icon: "CF",
134
+ color: "#6366f1",
135
+ description: "Workforce & crew management platform",
136
+ comingSoon: !0
137
+ },
138
+ {
139
+ id: "kadaikodi",
140
+ name: "Kadaikodi",
141
+ icon: "KK",
142
+ color: "#eab308",
143
+ description: "Local commerce marketplace",
144
+ comingSoon: !0
145
+ },
146
+ {
147
+ id: "headshotmarketing",
148
+ name: "HeadshotMarketing",
149
+ icon: "HS",
150
+ color: "#d946ef",
151
+ description: "AI-powered marketing platform",
152
+ comingSoon: !0
153
+ },
154
+ {
155
+ id: "ggnomad",
156
+ name: "GGNomad",
157
+ icon: "GG",
158
+ color: "#8b5cf6",
159
+ description: "Gaming & digital nomad platform",
160
+ comingSoon: !0
161
+ },
162
+ {
163
+ id: "assethandler",
164
+ name: "AssetHandler",
165
+ icon: "AH",
166
+ color: "#0891b2",
167
+ description: "Asset lifecycle management platform",
168
+ comingSoon: !0
169
+ },
170
+ {
171
+ id: "eventfullymanaged",
172
+ name: "EventfullyManaged",
173
+ icon: "EM",
174
+ color: "#e11d48",
175
+ description: "Event management platform",
176
+ comingSoon: !0
177
+ },
178
+ {
179
+ id: "housingvista",
180
+ name: "HousingVista",
181
+ icon: "HV",
182
+ color: "#059669",
183
+ description: "Real estate & housing platform",
184
+ comingSoon: !0
185
+ },
186
+ {
187
+ id: "timecampus",
188
+ name: "Timecampus",
189
+ icon: "TC",
190
+ color: "#2563eb",
191
+ description: "Time & scheduling platform",
192
+ comingSoon: !0
193
+ },
194
+ {
195
+ id: "movethewheels",
196
+ name: "MoveTheWheels",
197
+ icon: "MW",
198
+ color: "#ea580c",
199
+ description: "Logistics & mobility platform",
200
+ comingSoon: !0
201
+ },
202
+ {
203
+ id: "manufacturedops",
204
+ name: "ManufacturedOps",
205
+ icon: "MO",
206
+ color: "#475569",
207
+ description: "Manufacturing execution system",
208
+ comingSoon: !0
209
+ },
210
+ {
211
+ id: "proserviceworld",
212
+ name: "ProServiceWorld",
213
+ icon: "PS",
214
+ color: "#7c3aed",
215
+ description: "Professional services platform",
216
+ comingSoon: !0
55
217
  }
56
218
  ];
57
219
  function n() {
@@ -9,7 +9,7 @@ import { ReactNode } from 'react';
9
9
  export type ThemeMode = 'light' | 'dark' | 'forest' | 'ocean' | 'sunset' | 'high-contrast' | 'system' | 'custom';
10
10
  /** The six concrete CSS themes (`data-theme` only ever receives one of these). */
11
11
  export type ThemeName = Exclude<ThemeMode, 'system' | 'custom'>;
12
- export type Brand = 'workspaces' | 'fluidgrids' | 'bigconsole' | 'botlit' | 'vibecontrols' | 'healthybowl' | 'housingvista' | 'default';
12
+ export type Brand = 'workspaces' | 'fluidgrids' | 'bigconsole' | 'botlit' | 'vibecontrols' | 'healthybowl' | 'housingvista' | 'adaptercloud' | 'atheletebridge' | 'brainyrich' | 'buildmyiq' | 'collabkin' | 'comradecircle' | 'coolandlovely' | 'cosmicintersection' | 'crewfoundry' | 'ecoimpacthub' | 'eventfullymanaged' | 'ggnomad' | 'govcitizenhub' | 'headshotmarketing' | 'hookmovies' | 'intelwatchtower' | 'kadaikodi' | 'labsofscience' | 'manufacturedops' | 'movethewheels' | 'mybodyshield' | 'planmagnet' | 'proserviceworld' | 'semanticfed' | 'subscriberbot' | 'theculturepost' | 'theglobalfuel' | 'timecampus' | 'default';
13
13
  export type Density = 'compact' | 'comfortable' | 'spacious';
14
14
  export type Typography = 'default' | 'large' | 'small';
15
15
  /** Glass intensity preference (drives `data-glass` → blur + opaque fallback). */
@@ -1 +1 @@
1
- {"version":3,"file":"ThemeProvider.d.ts","sourceRoot":"","sources":["../../../../src/shared/providers/shell/ThemeProvider.tsx"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"ThemeProvider.d.ts","sourceRoot":"","sources":["../../../../src/shared/providers/shell/ThemeProvider.tsx"],"names":[],"mappings":"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"}
@@ -1,7 +1,13 @@
1
1
  import { ComponentPropsWithoutRef, ElementRef } from 'react';
2
2
  import * as TooltipPrimitive from '@radix-ui/react-tooltip';
3
3
  declare const TooltipProvider: import('react').FC<TooltipPrimitive.TooltipProviderProps>;
4
- declare const Tooltip: import('react').FC<TooltipPrimitive.TooltipProps>;
4
+ /**
5
+ * Tooltip root that self-provides a {@link TooltipProvider}. Radix permits
6
+ * nested providers, so this remains safe when a provider is already mounted
7
+ * higher up the tree, while also working for consumers that never mount one
8
+ * (which otherwise throws "Tooltip must be used within TooltipProvider").
9
+ */
10
+ declare function Tooltip({ children, ...props }: ComponentPropsWithoutRef<typeof TooltipPrimitive.Root>): import("react/jsx-runtime").JSX.Element;
5
11
  declare const TooltipTrigger: import('react').ForwardRefExoticComponent<TooltipPrimitive.TooltipTriggerProps & import('react').RefAttributes<HTMLButtonElement>>;
6
12
  declare function TooltipContent({ ref, className, sideOffset, ...props }: ComponentPropsWithoutRef<typeof TooltipPrimitive.Content> & {
7
13
  ref?: React.Ref<ElementRef<typeof TooltipPrimitive.Content>>;
@@ -1 +1 @@
1
- {"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../src/ui/tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,KAAK,wBAAwB,EAAE,KAAK,UAAU,EAAE,MAAM,OAAO,CAAC;AAIvE,QAAA,MAAM,eAAe,2DAA4B,CAAC;AAElD,QAAA,MAAM,OAAO,mDAAwB,CAAC;AAEtC,QAAA,MAAM,cAAc,oIAA2B,CAAC;AAEhD,iBAAS,cAAc,CAAC,EACtB,GAAG,EACH,SAAS,EACT,UAAc,EACd,GAAG,KAAK,EACT,EAAE,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,GAAG;IAC7D,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC;CAC9D,2CAYA;kBAnBQ,cAAc;;;AAsBvB,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,cAAc,EAAE,CAAC"}
1
+ {"version":3,"file":"tooltip.d.ts","sourceRoot":"","sources":["../../src/ui/tooltip.tsx"],"names":[],"mappings":"AAAA,OAAO,KAAK,gBAAgB,MAAM,yBAAyB,CAAC;AAC5D,OAAO,EAAE,KAAK,wBAAwB,EAAE,KAAK,UAAU,EAAE,MAAM,OAAO,CAAC;AAIvE,QAAA,MAAM,eAAe,2DAA4B,CAAC;AAElD;;;;;GAKG;AACH,iBAAS,OAAO,CAAC,EAAE,QAAQ,EAAE,GAAG,KAAK,EAAE,EAAE,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,IAAI,CAAC,2CAM9F;AAED,QAAA,MAAM,cAAc,oIAA2B,CAAC;AAEhD,iBAAS,cAAc,CAAC,EACtB,GAAG,EACH,SAAS,EACT,UAAc,EACd,GAAG,KAAK,EACT,EAAE,wBAAwB,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,GAAG;IAC7D,GAAG,CAAC,EAAE,KAAK,CAAC,GAAG,CAAC,UAAU,CAAC,OAAO,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC;CAC9D,2CAYA;kBAnBQ,cAAc;;;AAsBvB,OAAO,EAAE,OAAO,EAAE,cAAc,EAAE,eAAe,EAAE,cAAc,EAAE,CAAC"}
@@ -2,7 +2,14 @@ import { cn as e } from "../shared-utils.js";
2
2
  import { jsx as t } from "react/jsx-runtime";
3
3
  import * as n from "@radix-ui/react-tooltip";
4
4
  //#region src/ui/tooltip.tsx
5
- var r = n.Provider, i = n.Root, a = n.Trigger;
5
+ var r = n.Provider;
6
+ function i({ children: e, ...r }) {
7
+ return /* @__PURE__ */ t(n.Provider, { children: /* @__PURE__ */ t(n.Root, {
8
+ ...r,
9
+ children: e
10
+ }) });
11
+ }
12
+ var a = n.Trigger;
6
13
  function o({ ref: r, className: i, sideOffset: a = 4, ...o }) {
7
14
  return /* @__PURE__ */ t(n.Content, {
8
15
  ref: r,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/fe-libs",
3
- "version": "2026.703.2",
3
+ "version": "2026.704.1",
4
4
  "description": "Burdenoff frontend primitives and domain libraries",
5
5
  "type": "module",
6
6
  "imports": {