@burdenoff/fe-libs 2026.803.3 → 2026.803.4

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.
@@ -1,4 +1,4 @@
1
- import { ReactNode, ElementType } from 'react';
1
+ import { ReactNode, ElementType, ComponentPropsWithoutRef } from 'react';
2
2
  interface MotionListContextValue {
3
3
  /** True when the list has already played its entrance stagger */
4
4
  hasAnimated: boolean;
@@ -8,7 +8,7 @@ interface MotionListContextValue {
8
8
  * added by polling) should animate in or appear instantly.
9
9
  */
10
10
  export declare function useMotionListContext(): MotionListContextValue;
11
- interface MotionListProps {
11
+ interface MotionListProps extends Omit<ComponentPropsWithoutRef<'div'>, 'children' | 'className'> {
12
12
  children: ReactNode;
13
13
  className?: string;
14
14
  /** Stagger delay between children in seconds (default: 0.05) */
@@ -23,6 +23,6 @@ interface MotionListProps {
23
23
  * Children should use MotionItem for the individual item animation.
24
24
  * Animates once per mount by default.
25
25
  */
26
- export declare function MotionList({ children, className, stagger, as: Component, animateOnce, }: MotionListProps): import("react/jsx-runtime").JSX.Element;
26
+ export declare function MotionList({ children, className, stagger, as: Component, animateOnce, ...rest }: MotionListProps): import("react/jsx-runtime").JSX.Element;
27
27
  export {};
28
28
  //# sourceMappingURL=MotionList.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"MotionList.d.ts","sourceRoot":"","sources":["../../../src/shared/motion/MotionList.tsx"],"names":[],"mappings":"AACA,OAAO,EAAsB,KAAK,SAAS,EAAE,KAAK,WAAW,EAAE,MAAM,OAAO,CAAC;AAI7E,UAAU,sBAAsB;IAC9B,iEAAiE;IACjE,WAAW,EAAE,OAAO,CAAC;CACtB;AAMD;;;GAGG;AACH,wBAAgB,oBAAoB,2BAEnC;AAED,UAAU,eAAe;IACvB,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gEAAgE;IAChE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,mDAAmD;IACnD,EAAE,CAAC,EAAE,WAAW,CAAC;IACjB,wEAAwE;IACxE,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAOD;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,EACzB,QAAQ,EACR,SAAS,EACT,OAAc,EACd,EAAE,EAAE,SAAiB,EACrB,WAAkB,GACnB,EAAE,eAAe,2CAoBjB"}
1
+ {"version":3,"file":"MotionList.d.ts","sourceRoot":"","sources":["../../../src/shared/motion/MotionList.tsx"],"names":[],"mappings":"AACA,OAAO,EAAsB,KAAK,SAAS,EAAE,KAAK,WAAW,EAAE,KAAK,wBAAwB,EAAE,MAAM,OAAO,CAAC;AAI5G,UAAU,sBAAsB;IAC9B,iEAAiE;IACjE,WAAW,EAAE,OAAO,CAAC;CACtB;AAMD;;;GAGG;AACH,wBAAgB,oBAAoB,2BAEnC;AAED,UAAU,eAAgB,SAAQ,IAAI,CAAC,wBAAwB,CAAC,KAAK,CAAC,EAAE,UAAU,GAAG,WAAW,CAAC;IAC/F,QAAQ,EAAE,SAAS,CAAC;IACpB,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,gEAAgE;IAChE,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,mDAAmD;IACnD,EAAE,CAAC,EAAE,WAAW,CAAC;IACjB,wEAAwE;IACxE,WAAW,CAAC,EAAE,OAAO,CAAC;CACvB;AAOD;;;;GAIG;AACH,wBAAgB,UAAU,CAAC,EACzB,QAAQ,EACR,SAAS,EACT,OAAc,EACd,EAAE,EAAE,SAAiB,EACrB,WAAkB,EAClB,GAAG,IAAI,EACR,EAAE,eAAe,2CAqBjB"}
@@ -15,15 +15,16 @@ var u = {
15
15
  transition: { duration: t.fast }
16
16
  }
17
17
  };
18
- function d({ children: t, className: r, stagger: i = .05, as: l = "div", animateOnce: d = !0 }) {
19
- let f = s(), p = e(), m = o.create(l), h = d && p;
18
+ function d({ children: t, className: r, stagger: i = .05, as: l = "div", animateOnce: d = !0, ...f }) {
19
+ let p = s(), m = e(), h = o.create(l), g = d && m;
20
20
  return /* @__PURE__ */ a(c.Provider, {
21
- value: { hasAnimated: h },
22
- children: /* @__PURE__ */ a(m, {
23
- initial: h ? !1 : "hidden",
21
+ value: { hasAnimated: g },
22
+ children: /* @__PURE__ */ a(h, {
23
+ initial: g ? !1 : "hidden",
24
24
  animate: "visible",
25
- variants: f ? u : n(i),
25
+ variants: p ? u : n(i),
26
26
  className: r,
27
+ ...f,
27
28
  children: t
28
29
  })
29
30
  });
@@ -5,6 +5,8 @@ export type CTAAction = {
5
5
  intent?: 'default' | 'destructive';
6
6
  icon?: ReactNode;
7
7
  disabled?: boolean;
8
+ /** Optional product-tour anchor, since collapsed menu items render no DOM node to target otherwise. */
9
+ dataTour?: string;
8
10
  };
9
11
  export type CTAPrimaryAction = {
10
12
  label: string;
@@ -1 +1 @@
1
- {"version":3,"file":"cta-overflow-menu.d.ts","sourceRoot":"","sources":["../../src/ui/cta-overflow-menu.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAWvC,MAAM,MAAM,SAAS,GAAG;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,SAAS,GAAG,aAAa,CAAC;IACnC,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;CACpB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,0EAA0E;IAC1E,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAC3B,oEAAoE;IACpE,OAAO,EAAE,SAAS,EAAE,CAAC;IACrB,6DAA6D;IAC7D,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC;IACxB,oDAAoD;IACpD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;;;;;;;GAQG;AACH,iBAAS,eAAe,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,KAAa,EAAE,SAAS,EAAE,EAAE,oBAAoB,2CA2C5F;kBA3CQ,eAAe;;;AA8CxB,OAAO,EAAE,eAAe,EAAE,CAAC"}
1
+ {"version":3,"file":"cta-overflow-menu.d.ts","sourceRoot":"","sources":["../../src/ui/cta-overflow-menu.tsx"],"names":[],"mappings":"AACA,OAAO,EAAE,KAAK,SAAS,EAAE,MAAM,OAAO,CAAC;AAWvC,MAAM,MAAM,SAAS,GAAG;IACtB,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,MAAM,CAAC,EAAE,SAAS,GAAG,aAAa,CAAC;IACnC,IAAI,CAAC,EAAE,SAAS,CAAC;IACjB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,uGAAuG;IACvG,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,gBAAgB,GAAG;IAC7B,KAAK,EAAE,MAAM,CAAC;IACd,QAAQ,EAAE,MAAM,IAAI,CAAC;IACrB,QAAQ,CAAC,EAAE,OAAO,CAAC;IACnB,IAAI,CAAC,EAAE,SAAS,CAAC;CAClB,CAAC;AAEF,MAAM,MAAM,oBAAoB,GAAG;IACjC,0EAA0E;IAC1E,OAAO,CAAC,EAAE,gBAAgB,CAAC;IAC3B,oEAAoE;IACpE,OAAO,EAAE,SAAS,EAAE,CAAC;IACrB,6DAA6D;IAC7D,KAAK,CAAC,EAAE,OAAO,GAAG,KAAK,CAAC;IACxB,oDAAoD;IACpD,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF;;;;;;;;GAQG;AACH,iBAAS,eAAe,CAAC,EAAE,OAAO,EAAE,OAAO,EAAE,KAAa,EAAE,SAAS,EAAE,EAAE,oBAAoB,2CA4C5F;kBA5CQ,eAAe;;;AA+CxB,OAAO,EAAE,eAAe,EAAE,CAAC"}
@@ -25,6 +25,7 @@ function l({ primary: l, actions: u, align: d = "end", className: f }) {
25
25
  }), /* @__PURE__ */ s(r, {
26
26
  align: d,
27
27
  children: u.map((t, n) => /* @__PURE__ */ c(i, {
28
+ "data-tour": t.dataTour,
28
29
  disabled: t.disabled,
29
30
  onSelect: t.onSelect,
30
31
  className: e("gap-2", t.intent === "destructive" && "text-status-error-text focus:text-status-error-text focus:bg-status-error-bg-subtle"),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@burdenoff/fe-libs",
3
- "version": "2026.803.3",
3
+ "version": "2026.803.4",
4
4
  "description": "Burdenoff frontend primitives and domain libraries",
5
5
  "type": "module",
6
6
  "bin": {