@rcarls/rc-carousel 0.1.0 → 0.6.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/package.json +2 -2
package/CHANGELOG.md ADDED
@@ -0,0 +1,31 @@
1
+ # @rcarls/rc-carousel
2
+
3
+ ## 0.6.0
4
+
5
+ ### Minor Changes
6
+
7
+ - b639e04: Add coordinated list and list-item layout tokens so container queries can
8
+ stack unchanged content regions while preserving shared subgrid alignment.
9
+
10
+ Breaking for the pre-1.0 carousel API: remove the redundant
11
+ `variant="hero|multi-browse"` attribute and property. The variant only
12
+ changed slide geometry, which is already controlled by
13
+ `--rc-carousel-slide-size`. Remove `variant="hero"` without replacement;
14
+ replace `variant="multi-browse"` with
15
+ `--rc-carousel-slide-size: min(75%, 300px)`.
16
+
17
+ - 40f9776: Add an APG carousel built on native CSS scroll snap, with optional navigation,
18
+ pagination, mouse dragging, looping, and consumer-controlled slide sizing.
19
+ Preserve controlled active-index behavior after rejected swipes, keep visual
20
+ loop clones inert and out of forms, and degrade safely without intersection
21
+ observation.
22
+
23
+ ### Patch Changes
24
+
25
+ - e0de31d: Avoid scheduling a redundant carousel update during the initial Lit lifecycle
26
+ while retaining initial pagination and dynamic slide synchronization.
27
+ - 7adbd76: Keep development diagnostics concise and prevent expected test fixtures from emitting noisy warnings.
28
+ - Updated dependencies [6683eb9]
29
+ - Updated dependencies [ee7ba6c]
30
+ - Updated dependencies [30eb232]
31
+ - @rcarls/rc-common@0.6.0
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "0.1.0",
6
+ "version": "0.6.0",
7
7
  "description": "WAI-ARIA APG carousel pattern built on native CSS scroll-snap and consumer-controlled slide sizing.",
8
8
  "repository": {
9
9
  "type": "git",
@@ -45,7 +45,7 @@
45
45
  "test:browser:firefox": "vitest --run --project=firefox"
46
46
  },
47
47
  "dependencies": {
48
- "@rcarls/rc-common": "0.5.0"
48
+ "@rcarls/rc-common": "0.6.0"
49
49
  },
50
50
  "devDependencies": {
51
51
  "@custom-elements-manifest/analyzer": "0.11.0",