react-listing-engine 0.2.0 → 0.2.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 +6 -0
- package/dist/styles.css +8 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# react-listing-engine
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- `/styled`: the mobile filters bottom sheet now uses a light, frosted (backdrop-blurred) scrim instead of a heavy dim, and its open slide/fade runs at 300ms with a strong ease-out -- a more modern bottom-sheet feel.
|
|
8
|
+
|
|
3
9
|
## 0.2.0
|
|
4
10
|
|
|
5
11
|
### Minor Changes
|
package/dist/styles.css
CHANGED
|
@@ -905,9 +905,14 @@
|
|
|
905
905
|
position: fixed;
|
|
906
906
|
inset: 0;
|
|
907
907
|
z-index: 40;
|
|
908
|
-
|
|
908
|
+
/* Light scrim + frosted blur (rather than a heavy dim) so the content
|
|
909
|
+
behind stays legible -- the modern bottom-sheet look. `opacity` fades
|
|
910
|
+
both the scrim AND the composited blur in together. */
|
|
911
|
+
background: rgba(0, 0, 0, 0.1);
|
|
912
|
+
-webkit-backdrop-filter: blur(4px);
|
|
913
|
+
backdrop-filter: blur(4px);
|
|
909
914
|
opacity: 0;
|
|
910
|
-
transition: opacity
|
|
915
|
+
transition: opacity 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
911
916
|
}
|
|
912
917
|
|
|
913
918
|
.rle-sheet-backdrop--open {
|
|
@@ -928,7 +933,7 @@
|
|
|
928
933
|
border-top-right-radius: var(--rle-radius);
|
|
929
934
|
box-shadow: var(--rle-shadow);
|
|
930
935
|
transform: translateY(100%);
|
|
931
|
-
transition: transform
|
|
936
|
+
transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
|
|
932
937
|
padding-bottom: env(safe-area-inset-bottom);
|
|
933
938
|
}
|
|
934
939
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-listing-engine",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Headless, composable listing engine for React: filterable list + Google-Maps multi-layer map, with pluggable data adapters, a filter/dataset registry, injectable components, and a shadcn-compatible styled adapter.",
|
|
6
6
|
"funding": [
|