@gcforms/editor 1.0.21 → 1.0.22

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,10 @@ 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.22] - 2026-08-21
9
+
10
+ - Fix collapsible icon warnings
11
+
8
12
  ## [1.0.21] - 2026-08-19
9
13
 
10
14
  - Enable collapsible / details extension
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gcforms/editor",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "author": "Canadian Digital Service",
5
5
  "license": "MIT",
6
6
  "publishConfig": {
@@ -5,14 +5,14 @@ export const CollapsibleIcon = () => (
5
5
  <path
6
6
  d="M3 14.5H10M3 21H10M3 17.75H10"
7
7
  stroke="#64748B"
8
- stroke-width="2"
9
- stroke-linecap="round"
8
+ strokeWidth="2"
9
+ strokeLinecap="round"
10
10
  />
11
11
  <path
12
12
  d="M14 14.5L21 14.5M14 21H21M14 17.75L21 17.75"
13
13
  stroke="black"
14
- stroke-width="2"
15
- stroke-linecap="round"
14
+ strokeWidth="2"
15
+ strokeLinecap="round"
16
16
  />
17
17
  </svg>
18
18
  );