@wix/app-extensions 1.0.30 → 1.0.32
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.d.ts +4 -0
- package/build/cjs/index.js.map +1 -1
- package/build/es/index.d.mts +4 -0
- package/build/es/index.mjs.map +1 -1
- package/build/trusted/cjs/index.d.ts +10 -4
- package/build/trusted/cjs/index.js.map +1 -1
- package/build/trusted/es/index.d.mts +10 -4
- package/build/trusted/es/index.mjs.map +1 -1
- package/package.json +2 -2
package/build/cjs/index.d.ts
CHANGED
|
@@ -280,6 +280,10 @@ interface PageComponentData {
|
|
|
280
280
|
* @maxLength 300
|
|
281
281
|
*/
|
|
282
282
|
shortDescription?: string | null;
|
|
283
|
+
/** When true, this page is displayed as full page on desktop only */
|
|
284
|
+
fullPageDesktopOnly?: boolean | null;
|
|
285
|
+
/** When true, this page is used as a landing page on mobile */
|
|
286
|
+
landingPageInMobile?: boolean | null;
|
|
283
287
|
}
|
|
284
288
|
/**
|
|
285
289
|
* An iframe that opens in the user’s Wix Dashboard,
|