@sendoutcards/quantum-design-ui 1.7.80 → 1.7.81

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/index.es.js CHANGED
@@ -24247,10 +24247,11 @@ var CardEntryDialog = function (_a) {
24247
24247
  };
24248
24248
 
24249
24249
  var AffiliateShareWidget = function (_a) {
24250
- var shareLink = _a.shareLink;
24250
+ var title = _a.title,
24251
+ shareLink = _a.shareLink;
24251
24252
  return jsx(PromotionWidget, {
24252
24253
  capsuleTitle: "Share",
24253
- title: "Share the $97 Postcard Program",
24254
+ title: title,
24254
24255
  type: "secondary",
24255
24256
  description: "",
24256
24257
  backgroundColor: "foreground"
@@ -0,0 +1,17 @@
1
+ import React from 'react';
2
+ import { HOCBaseProps } from "../../helpers/hoc-types/hocBasePropTypes";
3
+ import { HOCMotionProps } from "../../helpers/hoc-types/hocMotionTypes";
4
+ export declare type DivProps = {
5
+ children?: React.ReactNode;
6
+ outsideClick?: () => void;
7
+ clickElementBypass?: string;
8
+ } & HOCBaseProps & HOCMotionProps;
9
+ export declare const Companion: React.ForwardRefExoticComponent<{
10
+ children?: React.ReactNode;
11
+ outsideClick?: (() => void) | undefined;
12
+ clickElementBypass?: string | undefined;
13
+ } & HOCBaseProps & {
14
+ className?: string | undefined;
15
+ motionKey?: string | number | undefined;
16
+ id?: string | undefined;
17
+ } & import("framer-motion").MotionProps & React.RefAttributes<HTMLDivElement>>;
@@ -1,5 +1,6 @@
1
1
  import { FC } from 'react';
2
2
  export declare type AffiliateShareWidgetProps = {
3
+ title: string;
3
4
  shareLink: string;
4
5
  };
5
6
  export declare const AffiliateShareWidget: FC<AffiliateShareWidgetProps>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@sendoutcards/quantum-design-ui",
3
- "version": "1.7.80",
3
+ "version": "1.7.81",
4
4
  "description": "UI component library for Quantum Design System",
5
5
  "module": "dist/index.es.js",
6
6
  "jsnext:main": "dist/index.es.js",