@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
|
|
24250
|
+
var title = _a.title,
|
|
24251
|
+
shareLink = _a.shareLink;
|
|
24251
24252
|
return jsx(PromotionWidget, {
|
|
24252
24253
|
capsuleTitle: "Share",
|
|
24253
|
-
title:
|
|
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>>;
|