@pexip-engage-public/plugin-state
Advanced tools
Comparing version 1.3.2 to 1.3.3
# @pexip-engage-public/plugin-state | ||
## 1.3.3 | ||
### Patch Changes | ||
- 091322089: [Legacy] Add configuration for making office search required | ||
## 1.3.2 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@pexip-engage-public/plugin-state", | ||
"version": "1.3.2", | ||
"version": "1.3.3", | ||
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/plugin-state#readme", | ||
@@ -5,0 +5,0 @@ "bugs": { |
@@ -257,2 +257,8 @@ import { z } from "zod"; | ||
/** | ||
* Used to enable/disable the office search step. | ||
* @defualt "optional" | ||
* @type { "required" | "optional" } | ||
*/ | ||
officeSearch: z.enum(["required", "optional"]).default("optional"), | ||
/** | ||
* Used to set scroll top value when navigating steps | ||
@@ -259,0 +265,0 @@ * @default -90 |
@@ -478,2 +478,8 @@ import { z } from "zod"; | ||
/** | ||
* Used to enable/disable the office search step. | ||
* @defualt "optional" | ||
* @type { "required" | "optional" } | ||
*/ | ||
officeSearch: z.ZodDefault<z.ZodEnum<["required", "optional"]>>; | ||
/** | ||
* Used to set scroll top value when navigating steps | ||
@@ -497,2 +503,3 @@ * @default -90 | ||
}, "strip", z.ZodTypeAny, { | ||
officeSearch: "required" | "optional"; | ||
scroll: number | "disabled"; | ||
@@ -502,2 +509,3 @@ timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection"; | ||
}, { | ||
officeSearch?: "required" | "optional" | undefined; | ||
scroll?: number | "disabled" | undefined; | ||
@@ -579,2 +587,3 @@ timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined; | ||
application: { | ||
officeSearch: "required" | "optional"; | ||
scroll: number | "disabled"; | ||
@@ -672,2 +681,3 @@ timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection"; | ||
application?: { | ||
officeSearch?: "required" | "optional" | undefined; | ||
scroll?: number | "disabled" | undefined; | ||
@@ -731,2 +741,3 @@ timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined; | ||
application: { | ||
officeSearch: "required" | "optional"; | ||
scroll: number | "disabled"; | ||
@@ -940,2 +951,3 @@ timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection"; | ||
application?: { | ||
officeSearch?: "required" | "optional" | undefined; | ||
scroll?: number | "disabled" | undefined; | ||
@@ -942,0 +954,0 @@ timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined; |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
97938
1678