@keenmate/web-daterangepicker 1.7.0-rc01 → 1.7.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.
- package/README.md +55 -36
- package/dist/style.css +1 -1
- package/dist/web-daterangepicker.js +563 -565
- package/dist/web-daterangepicker.umd.js +5 -5
- package/package.json +1 -1
- package/src/scss/_calendar-grid.scss +5 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@keenmate/web-daterangepicker",
|
|
3
|
-
"version": "1.7.0
|
|
3
|
+
"version": "1.7.0",
|
|
4
4
|
"description": "Lightweight date picker web component with excellent keyboard navigation and range selection",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/web-daterangepicker.umd.js",
|
|
@@ -124,6 +124,11 @@
|
|
|
124
124
|
background-color: transparent;
|
|
125
125
|
border-color: transparent;
|
|
126
126
|
}
|
|
127
|
+
|
|
128
|
+
// Disabled day that is also in range - show range background behind disabled overlay
|
|
129
|
+
&.drp-date-picker__day--in-range {
|
|
130
|
+
background-color: color-mix(in srgb, var(--drp-day-range-bg) $drp-day-in-range-bg-opacity * 100%, transparent);
|
|
131
|
+
}
|
|
127
132
|
}
|
|
128
133
|
|
|
129
134
|
// --------------------------------------
|