@plaidev/karte-action-sdk 1.1.191 → 1.1.193-28161125.e3cebe5d
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/hydrate/index.es.d.ts +7 -2
- package/dist/hydrate/index.es.js +131 -121
- package/dist/index.es.d.ts +7 -2
- package/dist/index.es.js +134 -126
- package/package.json +2 -2
package/dist/index.es.d.ts
CHANGED
@@ -787,6 +787,11 @@ declare const OnClickOperationOptions: readonly [
|
|
787
787
|
readonly name: "open_new_tab";
|
788
788
|
readonly type: "BooleanKeyword";
|
789
789
|
readonly default: true;
|
790
|
+
},
|
791
|
+
{
|
792
|
+
readonly name: "decode";
|
793
|
+
readonly type: "BooleanKeyword";
|
794
|
+
readonly default: false;
|
790
795
|
}
|
791
796
|
];
|
792
797
|
},
|
@@ -968,9 +973,9 @@ declare const FlexDirections: readonly [
|
|
968
973
|
type FlexDirection = (typeof FlexDirections)[number];
|
969
974
|
/** @internal */
|
970
975
|
declare const ObjectFits: readonly [
|
971
|
-
"contain",
|
972
976
|
"cover",
|
973
|
-
"fill"
|
977
|
+
"fill",
|
978
|
+
"contain"
|
974
979
|
];
|
975
980
|
/** @internal */
|
976
981
|
type ObjectFit = (typeof ObjectFits)[number];
|