@wix/app-extensions 1.0.47 → 1.0.49
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.
|
@@ -18520,6 +18520,14 @@ interface Link {
|
|
|
18520
18520
|
* @maxSize 12
|
|
18521
18521
|
*/
|
|
18522
18522
|
linkTypes?: LinkTypeWithLiterals[];
|
|
18523
|
+
/**
|
|
18524
|
+
* Allows limiting the link to specific Wix apps, by their app ID, in case of LinkType dynamicPageLink or pageLink
|
|
18525
|
+
* @format GUID
|
|
18526
|
+
* @maxSize 20
|
|
18527
|
+
*/
|
|
18528
|
+
appIds?: string[];
|
|
18529
|
+
/** In case of LinkType dynamicPageLink, whether to hide inner routes in the page selection dialog (only top level pages will be selectable) */
|
|
18530
|
+
hideInnerRoute?: boolean | null;
|
|
18523
18531
|
}
|
|
18524
18532
|
/** @internal */
|
|
18525
18533
|
declare enum LinkType {
|
|
@@ -18964,6 +18972,8 @@ interface FunctionParameter extends FunctionParameterSelectedDataTypeOneOf {
|
|
|
18964
18972
|
textEnum?: TextEnum;
|
|
18965
18973
|
/** In case of a Change event parameter */
|
|
18966
18974
|
changeEvent?: ChangeEvent;
|
|
18975
|
+
/** In case of a link */
|
|
18976
|
+
link?: Link;
|
|
18967
18977
|
/**
|
|
18968
18978
|
* Exactly one of `data_type` or `dom_event` must be set
|
|
18969
18979
|
* A data type parameter
|
|
@@ -19004,6 +19014,8 @@ interface FunctionParameterSelectedDataTypeOneOf {
|
|
|
19004
19014
|
textEnum?: TextEnum;
|
|
19005
19015
|
/** In case of a Change event parameter */
|
|
19006
19016
|
changeEvent?: ChangeEvent;
|
|
19017
|
+
/** In case of a link */
|
|
19018
|
+
link?: Link;
|
|
19007
19019
|
}
|
|
19008
19020
|
/** @internal */
|
|
19009
19021
|
declare enum DomEventType {
|
|
@@ -20523,6 +20535,8 @@ interface DisplayFilters {
|
|
|
20523
20535
|
cssCustomProperties?: DisplayFilter;
|
|
20524
20536
|
/** DisplayFilter for states, defines which states to hide or show, uses the state key in the states map, optional */
|
|
20525
20537
|
states?: DisplayFilter;
|
|
20538
|
+
/** DisplayFilter for presets, defines which presets to hide or show, uses the preset key in the presets map, optional */
|
|
20539
|
+
presets?: DisplayFilter;
|
|
20526
20540
|
}
|
|
20527
20541
|
/**
|
|
20528
20542
|
* The logic of the display filter is to define the minimal requirement
|