@citruslime/ui 2.4.5-beta.0 → 2.4.6-beta.0

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.
@@ -9,7 +9,7 @@ import type { InputValidationState, InputType } from '../components';
9
9
  * @param timeZone The time zone for the component being validated.
10
10
  * @returns An InputValidationState determining if the value passes validation.
11
11
  */
12
- export declare function validateMinValue(minimumValue: number | string | null, typeOfValue: InputType, valueName: string, actualValue: string | number, timeZone: string): Promise<InputValidationState>;
12
+ export declare function validateMinValue(minimumValue: number | string | null, typeOfValue: InputType, valueName: string, actualValue: string | number, timeZone: string | null): Promise<InputValidationState>;
13
13
  /**
14
14
  * Validates if a value is below the maximum allowed.
15
15
  *
@@ -20,7 +20,7 @@ export declare function validateMinValue(minimumValue: number | string | null, t
20
20
  * @param timeZone The time zone for the component being validated.
21
21
  * @returns An InputValidationState determining if the value passes validation.
22
22
  */
23
- export declare function validateMaxValue(maximumValue: number | string | null, typeOfValue: InputType, valueName: string, actualValue: string | number, timeZone: string): Promise<InputValidationState>;
23
+ export declare function validateMaxValue(maximumValue: number | string | null, typeOfValue: InputType, valueName: string, actualValue: string | number, timeZone: string | null): Promise<InputValidationState>;
24
24
  /**
25
25
  * Validates that a required value is set.
26
26
  *
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@citruslime/ui",
3
3
  "type": "module",
4
- "version": "2.4.5-beta.0",
4
+ "version": "2.4.6-beta.0",
5
5
  "author": {
6
6
  "name": "Citrus-Lime Ltd",
7
7
  "url": "https://citruslime.com"