@pexip-engage-public/plugin-state
Advanced tools
Comparing version 1.0.11 to 1.1.0-canary-20230420115902
# @pexip-engage-public/plugin-state | ||
## 1.1.0-canary-20230420115902 | ||
### Minor Changes | ||
- 0db2df8: feature: add application.scroll configuration | ||
## 1.0.11 | ||
@@ -4,0 +10,0 @@ |
{ | ||
"name": "@pexip-engage-public/plugin-state", | ||
"version": "1.0.11", | ||
"version": "1.1.0-canary-20230420115902", | ||
"homepage": "https://github.com/skedify/frontend-mono/tree/develop/apps/plugin-remix/packages/plugin-state#readme", | ||
@@ -39,4 +39,4 @@ "bugs": { | ||
"tsup": "^6.7.0", | ||
"eslint-config-pexip-engage": "0.0.21", | ||
"@pexip-engage/tsconfig": "0.0.9" | ||
"@pexip-engage/tsconfig": "0.0.9", | ||
"eslint-config-pexip-engage": "0.0.22" | ||
}, | ||
@@ -43,0 +43,0 @@ "volta": { |
@@ -294,2 +294,8 @@ import { z } from "zod"; | ||
/** | ||
* Used to set scroll top value when navigating steps | ||
* @default -90 | ||
* @type { "disabled" | number } | ||
*/ | ||
scroll: z.union([z.enum(["disabled"]), z.coerce.number()]).default(-90), | ||
/** | ||
* Used to enable timezone selection when the meeting type is video or phone. | ||
@@ -296,0 +302,0 @@ * @default "enable_timezone_selection" |
@@ -613,2 +613,8 @@ import { z } from "zod"; | ||
/** | ||
* Used to set scroll top value when navigating steps | ||
* @default -90 | ||
* @type { "disabled" | number } | ||
*/ | ||
scroll: z.ZodDefault<z.ZodUnion<[z.ZodEnum<["disabled"]>, z.ZodNumber]>>; | ||
/** | ||
* Used to enable timezone selection when the meeting type is video or phone. | ||
@@ -626,5 +632,7 @@ * @default "enable_timezone_selection" | ||
}, "strip", z.ZodTypeAny, { | ||
scroll: number | "disabled"; | ||
timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection"; | ||
timetableUI: "week" | "month"; | ||
}, { | ||
scroll?: number | "disabled" | undefined; | ||
timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined; | ||
@@ -700,2 +708,3 @@ timetableUI?: "week" | "month" | undefined; | ||
application: { | ||
scroll: number | "disabled"; | ||
timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection"; | ||
@@ -799,2 +808,3 @@ timetableUI: "week" | "month"; | ||
application?: { | ||
scroll?: number | "disabled" | undefined; | ||
timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined; | ||
@@ -890,2 +900,3 @@ timetableUI?: "week" | "month" | undefined; | ||
application: { | ||
scroll: number | "disabled"; | ||
timezoneSelection: "enable_timezone_selection" | "disable_timezone_selection"; | ||
@@ -1109,2 +1120,3 @@ timetableUI: "week" | "month"; | ||
application?: { | ||
scroll?: number | "disabled" | undefined; | ||
timezoneSelection?: "enable_timezone_selection" | "disable_timezone_selection" | undefined; | ||
@@ -1111,0 +1123,0 @@ timetableUI?: "week" | "month" | 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
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
No v1
QualityPackage is not semver >=1. This means it is not stable and does not support ^ ranges.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101789
1830
2