@gcforms/types 1.0.11 → 1.0.13
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/CHANGELOG.md +10 -1
- package/dist/index.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
# [1.0.13] - 2025-07-08
|
|
9
|
+
|
|
10
|
+
### Changed
|
|
11
|
+
|
|
12
|
+
- Add strictValue to ElementProperties for use with ComboBox / Searchable list
|
|
13
|
+
|
|
14
|
+
## [1.0.12] - 2025-06-25
|
|
15
|
+
|
|
16
|
+
### Changed
|
|
17
|
+
|
|
8
18
|
## [1.0.11] - 2025-06-23
|
|
9
19
|
|
|
10
20
|
### Changed
|
|
@@ -23,7 +33,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
23
33
|
|
|
24
34
|
- Update NotificationsIntervalDefault to off
|
|
25
35
|
|
|
26
|
-
|
|
27
36
|
## [1.0.8] - 2025-05-20
|
|
28
37
|
|
|
29
38
|
### Changed
|
package/dist/index.d.mts
CHANGED
|
@@ -102,6 +102,7 @@ interface ElementProperties {
|
|
|
102
102
|
addressComponents?: AddressComponents | undefined;
|
|
103
103
|
dynamicRow?: dynamicRowType;
|
|
104
104
|
sortOrder?: SortValue;
|
|
105
|
+
strictValue?: boolean;
|
|
105
106
|
[key: string]: string | string[] | number | boolean | Array<PropertyChoices> | Array<FormElement> | ValidationProperties | Array<ConditionalRule> | AddressComponents | dynamicRowType | undefined;
|
|
106
107
|
}
|
|
107
108
|
interface BrandProperties {
|
|
@@ -178,7 +179,7 @@ declare const FormStatus: {
|
|
|
178
179
|
readonly CAPTCHA_VERIFICATION_ERROR: "CaptchaVerificationError";
|
|
179
180
|
};
|
|
180
181
|
type FormStatus = (typeof FormStatus)[keyof typeof FormStatus];
|
|
181
|
-
declare const NotificationsIntervalDefault:
|
|
182
|
+
declare const NotificationsIntervalDefault: 1440;
|
|
182
183
|
declare const NotificationsInterval: {
|
|
183
184
|
readonly OFF: null;
|
|
184
185
|
readonly DAY: 1440;
|
package/dist/index.d.ts
CHANGED
|
@@ -102,6 +102,7 @@ interface ElementProperties {
|
|
|
102
102
|
addressComponents?: AddressComponents | undefined;
|
|
103
103
|
dynamicRow?: dynamicRowType;
|
|
104
104
|
sortOrder?: SortValue;
|
|
105
|
+
strictValue?: boolean;
|
|
105
106
|
[key: string]: string | string[] | number | boolean | Array<PropertyChoices> | Array<FormElement> | ValidationProperties | Array<ConditionalRule> | AddressComponents | dynamicRowType | undefined;
|
|
106
107
|
}
|
|
107
108
|
interface BrandProperties {
|
|
@@ -178,7 +179,7 @@ declare const FormStatus: {
|
|
|
178
179
|
readonly CAPTCHA_VERIFICATION_ERROR: "CaptchaVerificationError";
|
|
179
180
|
};
|
|
180
181
|
type FormStatus = (typeof FormStatus)[keyof typeof FormStatus];
|
|
181
|
-
declare const NotificationsIntervalDefault:
|
|
182
|
+
declare const NotificationsIntervalDefault: 1440;
|
|
182
183
|
declare const NotificationsInterval: {
|
|
183
184
|
readonly OFF: null;
|
|
184
185
|
readonly DAY: 1440;
|
package/dist/index.js
CHANGED
|
@@ -67,7 +67,7 @@ var NotificationsInterval = {
|
|
|
67
67
|
DAY: 1440,
|
|
68
68
|
WEEK: 10080
|
|
69
69
|
};
|
|
70
|
-
var NotificationsIntervalDefault = NotificationsInterval.
|
|
70
|
+
var NotificationsIntervalDefault = NotificationsInterval.DAY;
|
|
71
71
|
// Annotate the CommonJS export names for ESM import in node:
|
|
72
72
|
0 && (module.exports = {
|
|
73
73
|
FormElementTypes,
|
package/dist/index.mjs
CHANGED