@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
|
@@ -2658,6 +2658,10 @@ interface PageComponentData {
|
|
|
2658
2658
|
* @maxLength 300
|
|
2659
2659
|
*/
|
|
2660
2660
|
shortDescription?: string | null;
|
|
2661
|
+
/** When true, this page is displayed as full page on desktop only */
|
|
2662
|
+
fullPageDesktopOnly?: boolean | null;
|
|
2663
|
+
/** When true, this page is used as a landing page on mobile */
|
|
2664
|
+
landingPageInMobile?: boolean | null;
|
|
2661
2665
|
}
|
|
2662
2666
|
/** @internal */
|
|
2663
2667
|
interface Padding {
|
|
@@ -10382,7 +10386,10 @@ interface ComponentTranslationAdditionalFieldsConfig {
|
|
|
10382
10386
|
}
|
|
10383
10387
|
/** @internal */
|
|
10384
10388
|
interface FormSchemaSpiConfig {
|
|
10385
|
-
/**
|
|
10389
|
+
/**
|
|
10390
|
+
* URI where the SPI Implementer is deployed
|
|
10391
|
+
* @maxLength 500
|
|
10392
|
+
*/
|
|
10386
10393
|
deploymentUri?: string;
|
|
10387
10394
|
/**
|
|
10388
10395
|
* Configuration of namespaces known by implementer
|
|
@@ -10408,8 +10415,8 @@ interface FormsSchemaNamespaceConfig {
|
|
|
10408
10415
|
multilingualEnabled?: boolean;
|
|
10409
10416
|
/** Attempt to select unique name for form */
|
|
10410
10417
|
uniqueName?: boolean;
|
|
10411
|
-
/** Enable
|
|
10412
|
-
|
|
10418
|
+
/** Enable hook for applying form schema related changes before form save, more info in OnBeforeSave. */
|
|
10419
|
+
onBeforeSaveHookEnabled?: boolean;
|
|
10413
10420
|
}
|
|
10414
10421
|
/** @internal */
|
|
10415
10422
|
interface FormsPermissions {
|
|
@@ -18473,7 +18480,6 @@ interface TemplateContainer {
|
|
|
18473
18480
|
interface ItemPath {
|
|
18474
18481
|
/**
|
|
18475
18482
|
* Deprecated, use item_key instead
|
|
18476
|
-
* @minLength 1
|
|
18477
18483
|
* @deprecated Deprecated, use item_key instead
|
|
18478
18484
|
* @replacedBy item_key
|
|
18479
18485
|
* @targetRemovalDate 2026-09-30
|