@keenmate/web-daterangepicker 1.5.0 → 1.7.0-rc01
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 +65 -3
- package/dist/style.css +1 -1
- package/dist/web-daterangepicker.js +1051 -1048
- package/dist/web-daterangepicker.umd.js +9 -9
- package/package.json +1 -1
- package/src/scss/_badges.scss +4 -8
- package/src/scss/_base.scss +67 -74
- package/src/scss/_calendar-grid.scss +4 -7
- package/src/scss/_header-navigation.scss +5 -8
- package/src/scss/_loading.scss +4 -4
- package/src/scss/_modifiers.scss +0 -215
- package/src/scss/_summary-actions.scss +1 -0
- package/src/scss/_tooltips.scss +3 -3
- package/src/scss/_variables.scss +0 -13
package/src/scss/_variables.scss
CHANGED
|
@@ -340,16 +340,3 @@ $drp-button-apply-bg-hover: $drp-color-accent-dark !default;
|
|
|
340
340
|
$drp-months-gap: $drp-spacing-lg !default;
|
|
341
341
|
$drp-grid-columns: 3 !default;
|
|
342
342
|
$drp-grid-rows: 2 !default;
|
|
343
|
-
|
|
344
|
-
// ==============================================================================
|
|
345
|
-
// DENSITY MULTIPLIERS
|
|
346
|
-
// ==============================================================================
|
|
347
|
-
// Used to scale the entire calendar proportionally (spacing, fonts, cells, etc.)
|
|
348
|
-
// Applied via --drp-density CSS custom property
|
|
349
|
-
// Range: 0.6× (very compact) to 2.0× (very large) for dramatic visual differences
|
|
350
|
-
|
|
351
|
-
$drp-density-xs: 0.6 !default; // 60% - Very compact
|
|
352
|
-
$drp-density-sm: 0.8 !default; // 80% - Compact
|
|
353
|
-
$drp-density-md: 1 !default; // 100% - Normal (baseline)
|
|
354
|
-
$drp-density-lg: 1.5 !default; // 150% - Large
|
|
355
|
-
$drp-density-xl: 2.0 !default; // 200% - Very large
|