@gcforms/types 1.0.9 → 1.0.11

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 CHANGED
@@ -5,6 +5,18 @@ 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.11] - 2025-06-23
9
+
10
+ ### Changed
11
+
12
+ - Update Yarn to version 4.9.2
13
+
14
+ ## [1.0.10] - 2025-05-29
15
+
16
+ ### Changed
17
+
18
+ - Update fileType to allow for an array of types
19
+
8
20
  ## [1.0.9] - 2025-05-28
9
21
 
10
22
  ### Changed
package/dist/index.d.mts CHANGED
@@ -91,7 +91,7 @@ interface ElementProperties {
91
91
  choices?: PropertyChoices[];
92
92
  managedChoices?: string;
93
93
  subElements?: FormElement[];
94
- fileType?: string | undefined;
94
+ fileType?: string | string[] | undefined;
95
95
  headingLevel?: string | undefined;
96
96
  isSectional?: boolean;
97
97
  maxNumberOfRows?: number;
package/dist/index.d.ts CHANGED
@@ -91,7 +91,7 @@ interface ElementProperties {
91
91
  choices?: PropertyChoices[];
92
92
  managedChoices?: string;
93
93
  subElements?: FormElement[];
94
- fileType?: string | undefined;
94
+ fileType?: string | string[] | undefined;
95
95
  headingLevel?: string | undefined;
96
96
  isSectional?: boolean;
97
97
  maxNumberOfRows?: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gcforms/types",
3
- "version": "1.0.9",
3
+ "version": "1.0.11",
4
4
  "author": "Canadian Digital Service",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -29,5 +29,5 @@
29
29
  "tsup": "^8.3.6",
30
30
  "typescript": "^5.5.2"
31
31
  },
32
- "packageManager": "yarn@4.6.0"
32
+ "packageManager": "yarn@4.9.2"
33
33
  }