@rcarls/rc-virtual-canvas 0.4.0 → 0.4.1

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +28 -0
  2. package/package.json +2 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,28 @@
1
+ # @rcarls/rc-virtual-canvas
2
+
3
+ ## 0.4.1
4
+
5
+ ## 0.4.0
6
+
7
+ ### Patch Changes
8
+
9
+ - 037b1b3: Add try/catch for ResizeObserver.observe() for WebKit TypeError
10
+ - d49cde9: Fix `contentWidth`/`contentHeight` so their HTML attributes are `content-width`/`content-height`,
11
+ matching every other multi-word attribute in the library. They previously had no kebab-case
12
+ mapping, so `<rc-virtual-canvas content-width="...">` was silently ignored.
13
+
14
+ ## 0.3.2
15
+
16
+ ## 0.3.1
17
+
18
+ ## 0.3.0
19
+
20
+ ### Added
21
+
22
+ - Add read-only `canvasScaleX` and `canvasScaleY` getters.
23
+
24
+ ### Changed
25
+
26
+ - Update package metadata, README intro, and docs links.
27
+
28
+ ## 0.2.0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.4.0",
6
+ "version": "0.4.1",
7
7
  "description": "Scrollable virtual canvas for rendering large coordinate-space content.",
8
8
  "repository": {
9
9
  "type": "git",
@@ -60,4 +60,4 @@
60
60
  "peerDependencies": {
61
61
  "lit": "^3.0.0"
62
62
  }
63
- }
63
+ }