@antglobal/copilot-cards-core 1.0.4 → 1.0.5
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.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -906,7 +906,7 @@ function convertTextContent(content) {
|
|
|
906
906
|
* ```
|
|
907
907
|
*/
|
|
908
908
|
function convertButtonContent(content) {
|
|
909
|
-
const { label, text, url, actionType, style, ...rest } = content;
|
|
909
|
+
const { label, text, url, actionType: _actionType, style, ...rest } = content;
|
|
910
910
|
const props = { ...rest };
|
|
911
911
|
// Button display text
|
|
912
912
|
const displayText = label ?? text;
|
package/dist/index.js
CHANGED
|
@@ -904,7 +904,7 @@ function convertTextContent(content) {
|
|
|
904
904
|
* ```
|
|
905
905
|
*/
|
|
906
906
|
function convertButtonContent(content) {
|
|
907
|
-
const { label, text, url, actionType, style, ...rest } = content;
|
|
907
|
+
const { label, text, url, actionType: _actionType, style, ...rest } = content;
|
|
908
908
|
const props = { ...rest };
|
|
909
909
|
// Button display text
|
|
910
910
|
const displayText = label ?? text;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@antglobal/copilot-cards-core",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.5",
|
|
4
4
|
"description": "Core logic engine for copilot bot card SDK — no UI, pure logic (Expression Engine, Action Runner, Schema Parser, Lifecycle Manager)",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|