@rcarls/rc-bottom-sheet 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.
- package/CHANGELOG.md +44 -0
- package/package.json +4 -4
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
# @rcarls/rc-bottom-sheet
|
|
2
|
+
|
|
3
|
+
## 0.4.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- @rcarls/rc-common@0.4.1
|
|
8
|
+
- @rcarls/rc-dialog@0.4.1
|
|
9
|
+
|
|
10
|
+
## 0.4.0
|
|
11
|
+
|
|
12
|
+
### Minor Changes
|
|
13
|
+
|
|
14
|
+
- 48cf73f: Add the rc-bottom-sheet package as a dialog-backed modal bottom-sheet surface.
|
|
15
|
+
- 037b1b3: Add shared drag gesture measurement and numeric snap helpers, migrate bottom
|
|
16
|
+
sheet settling to the shared velocity lifecycle, and add anchored settling and
|
|
17
|
+
swipe-to-collapse behavior to splitters.
|
|
18
|
+
- c40a1be: Add theme-neutral fast, default, and slow effects and spatial motion token
|
|
19
|
+
pairs. Expose bottom-sheet settle easing through
|
|
20
|
+
`--rc-bottom-sheet-snap-easing` and map sheet settling to the Material spatial
|
|
21
|
+
motion scheme.
|
|
22
|
+
|
|
23
|
+
Give direct-child bottom-sheet handles a full-width 48px interaction target
|
|
24
|
+
while preserving the 32 by 4 pixel visual indicator. Replace rectangular
|
|
25
|
+
mobile browser tap highlights on chips with themeable, shape-clipped state
|
|
26
|
+
layers. Keep bottom-sheet snap targets docked to the block-end edge when CSS
|
|
27
|
+
minimum or maximum sizing constrains their requested heights.
|
|
28
|
+
|
|
29
|
+
Mount declaratively assigned textarea plugins at connection time and remount
|
|
30
|
+
them after reconnection, preserving plugin effects and adopted styles in
|
|
31
|
+
framework render lifecycles.
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- ebec800: Dock bottom sheets without a theme to the viewport block-end by default and
|
|
36
|
+
support absolute positioning for non-modal sheets contained by a positioned ancestor.
|
|
37
|
+
Center authored drag handles with a splitter-aligned pill treatment. Align the
|
|
38
|
+
Material theme with its surface, elevation, scrim, drag-handle, and contextual
|
|
39
|
+
button treatment.
|
|
40
|
+
- Updated dependencies [e57277f]
|
|
41
|
+
- Updated dependencies [ccca8e2]
|
|
42
|
+
- Updated dependencies [037b1b3]
|
|
43
|
+
- @rcarls/rc-dialog@0.4.0
|
|
44
|
+
- @rcarls/rc-common@0.4.0
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"publishConfig": {
|
|
4
4
|
"access": "public"
|
|
5
5
|
},
|
|
6
|
-
"version": "0.4.
|
|
6
|
+
"version": "0.4.1",
|
|
7
7
|
"description": "Modal bottom-sheet wrapper for a native <dialog>.",
|
|
8
8
|
"repository": {
|
|
9
9
|
"type": "git",
|
|
@@ -45,8 +45,8 @@
|
|
|
45
45
|
"test:browser:firefox": "vitest --run --project=firefox"
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
|
-
"@rcarls/rc-common": "
|
|
49
|
-
"@rcarls/rc-dialog": "
|
|
48
|
+
"@rcarls/rc-common": "0.4.1",
|
|
49
|
+
"@rcarls/rc-dialog": "0.4.1"
|
|
50
50
|
},
|
|
51
51
|
"devDependencies": {
|
|
52
52
|
"@custom-elements-manifest/analyzer": "0.11.0",
|
|
@@ -63,4 +63,4 @@
|
|
|
63
63
|
"peerDependencies": {
|
|
64
64
|
"lit": "^3.0.0"
|
|
65
65
|
}
|
|
66
|
-
}
|
|
66
|
+
}
|