@spscommerce/max 0.13.0 → 0.14.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.
@@ -1,5 +1,6 @@
1
1
  import * as React from "react";
2
- export declare const SuggestedPrompt: ({ onClick, children, }: {
2
+ export declare const SuggestedPrompt: ({ onClick, children, highlighted, }: {
3
3
  onClick: () => void;
4
4
  children: React.ReactNode;
5
+ highlighted?: boolean;
5
6
  }) => React.JSX.Element;
@@ -0,0 +1,6 @@
1
+ import * as React from "react";
2
+ export declare function SupportFyiNotice({ message, tipMessage, imageAlt, }: {
3
+ message: string;
4
+ tipMessage: string;
5
+ imageAlt: string;
6
+ }): React.ReactNode;
@@ -0,0 +1,4 @@
1
+ export interface UseSupportFyiResult {
2
+ shouldShow: boolean;
3
+ }
4
+ export declare function useSupportFyi(key: string, maxViews: number, active: boolean): UseSupportFyiResult;
@@ -1,4 +1,5 @@
1
1
  import ANIMATED_LOGO from "./AI-logo-animated.gif";
2
2
  import COLOR_LOGO from "./AI-logo-color.svg";
3
3
  import BETA_LOGO from "./AI-logo-color-beta.svg";
4
- export { ANIMATED_LOGO, COLOR_LOGO, BETA_LOGO };
4
+ import SUPPORT_FYI_IMAGE from "./max-location-nav-bar.png";
5
+ export { ANIMATED_LOGO, COLOR_LOGO, BETA_LOGO, SUPPORT_FYI_IMAGE };