@momo-webplatform/mobase 0.2.108 → 0.2.110
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/cjs/index.cjs +16 -16
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +2 -1
- package/dist/esm/index.d.ts +2 -1
- package/dist/esm/index.js +17 -17
- package/dist/esm/index.js.map +1 -1
- package/package.json +3 -3
package/dist/cjs/index.d.cts
CHANGED
|
@@ -137,9 +137,10 @@ interface ActionButtonProps extends ButtonProps {
|
|
|
137
137
|
* The content for button.
|
|
138
138
|
*/
|
|
139
139
|
children?: ReactNode;
|
|
140
|
+
onPushTrackingEvent?: () => void;
|
|
140
141
|
}
|
|
141
142
|
|
|
142
|
-
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
143
|
+
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, onPushTrackingEvent, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
143
144
|
|
|
144
145
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
145
146
|
separator?: React$1.ReactNode;
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -137,9 +137,10 @@ interface ActionButtonProps extends ButtonProps {
|
|
|
137
137
|
* The content for button.
|
|
138
138
|
*/
|
|
139
139
|
children?: ReactNode;
|
|
140
|
+
onPushTrackingEvent?: () => void;
|
|
140
141
|
}
|
|
141
142
|
|
|
142
|
-
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
143
|
+
declare const ActionButton: ({ action, newTab, offset, dialogQrProps, className, children, onPushTrackingEvent, ...props }: ActionButtonProps) => react_jsx_runtime.JSX.Element;
|
|
143
144
|
|
|
144
145
|
declare const Breadcrumb: React$1.ForwardRefExoticComponent<Omit<React$1.DetailedHTMLProps<React$1.HTMLAttributes<HTMLElement>, HTMLElement>, "ref"> & {
|
|
145
146
|
separator?: React$1.ReactNode;
|