@wix/app-extensions 1.0.71 → 1.0.72
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/build/cjs/index.js +9 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.mjs +8 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +106 -4
- package/build/trusted/cjs/index.js +9 -0
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +106 -4
- package/build/trusted/es/index.mjs +8 -0
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.js
CHANGED
|
@@ -77,6 +77,7 @@ __export(index_exports, {
|
|
|
77
77
|
ContactField: () => ContactField,
|
|
78
78
|
ContainerType: () => ContainerType,
|
|
79
79
|
ContentResizeDirection: () => ContentResizeDirection,
|
|
80
|
+
ContextActionExecutionType: () => ContextActionExecutionType,
|
|
80
81
|
Crop: () => Crop,
|
|
81
82
|
CssDataType: () => CssDataType,
|
|
82
83
|
CssPropertyType: () => CssPropertyType,
|
|
@@ -2973,6 +2974,7 @@ var ActionType = /* @__PURE__ */ ((ActionType2) => {
|
|
|
2973
2974
|
ActionType2["displayGroup"] = "displayGroup";
|
|
2974
2975
|
ActionType2["cssProperty"] = "cssProperty";
|
|
2975
2976
|
ActionType2["cssCustomProperty"] = "cssCustomProperty";
|
|
2977
|
+
ActionType2["dashboard"] = "dashboard";
|
|
2976
2978
|
return ActionType2;
|
|
2977
2979
|
})(ActionType || {});
|
|
2978
2980
|
var PanelType = /* @__PURE__ */ ((PanelType2) => {
|
|
@@ -3428,6 +3430,12 @@ var FileMediaType = /* @__PURE__ */ ((FileMediaType2) => {
|
|
|
3428
3430
|
FileMediaType2["FONT_MEDIA_TYPE"] = "FONT_MEDIA_TYPE";
|
|
3429
3431
|
return FileMediaType2;
|
|
3430
3432
|
})(FileMediaType || {});
|
|
3433
|
+
var ContextActionExecutionType = /* @__PURE__ */ ((ContextActionExecutionType2) => {
|
|
3434
|
+
ContextActionExecutionType2["UNKNOWN_ContextActionExecutionType"] = "UNKNOWN_ContextActionExecutionType";
|
|
3435
|
+
ContextActionExecutionType2["panel"] = "panel";
|
|
3436
|
+
ContextActionExecutionType2["dashboard"] = "dashboard";
|
|
3437
|
+
return ContextActionExecutionType2;
|
|
3438
|
+
})(ContextActionExecutionType || {});
|
|
3431
3439
|
var ConnectionMethod = /* @__PURE__ */ ((ConnectionMethod2) => {
|
|
3432
3440
|
ConnectionMethod2["UNKNOWN_CONNECTION_METHOD"] = "UNKNOWN_CONNECTION_METHOD";
|
|
3433
3441
|
ConnectionMethod2["OAUTH"] = "OAUTH";
|
|
@@ -6394,6 +6402,7 @@ function editorExposure({
|
|
|
6394
6402
|
ContactField,
|
|
6395
6403
|
ContainerType,
|
|
6396
6404
|
ContentResizeDirection,
|
|
6405
|
+
ContextActionExecutionType,
|
|
6397
6406
|
Crop,
|
|
6398
6407
|
CssDataType,
|
|
6399
6408
|
CssPropertyType,
|