@pixonui/react 0.5.19 → 0.5.21
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.d.mts +7 -1
- package/dist/index.d.ts +7 -1
- package/dist/index.js +9 -9
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -9
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -1712,7 +1712,13 @@ interface InteractiveCard {
|
|
|
1712
1712
|
};
|
|
1713
1713
|
body: string;
|
|
1714
1714
|
footer?: string;
|
|
1715
|
-
buttons
|
|
1715
|
+
buttons?: InteractiveButton[];
|
|
1716
|
+
nativeFlow?: {
|
|
1717
|
+
buttons: {
|
|
1718
|
+
name: string;
|
|
1719
|
+
buttonParamsJson: string;
|
|
1720
|
+
}[];
|
|
1721
|
+
};
|
|
1716
1722
|
}
|
|
1717
1723
|
interface InteractiveContent {
|
|
1718
1724
|
type: 'button' | 'list' | 'carousel';
|
package/dist/index.d.ts
CHANGED
|
@@ -1712,7 +1712,13 @@ interface InteractiveCard {
|
|
|
1712
1712
|
};
|
|
1713
1713
|
body: string;
|
|
1714
1714
|
footer?: string;
|
|
1715
|
-
buttons
|
|
1715
|
+
buttons?: InteractiveButton[];
|
|
1716
|
+
nativeFlow?: {
|
|
1717
|
+
buttons: {
|
|
1718
|
+
name: string;
|
|
1719
|
+
buttonParamsJson: string;
|
|
1720
|
+
}[];
|
|
1721
|
+
};
|
|
1716
1722
|
}
|
|
1717
1723
|
interface InteractiveContent {
|
|
1718
1724
|
type: 'button' | 'list' | 'carousel';
|