@xh/hoist 71.0.0-SNAPSHOT.1733788412834 → 71.0.0-SNAPSHOT.1733791818708

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 CHANGED
@@ -15,6 +15,8 @@
15
15
  ### ⚙️ Technical
16
16
 
17
17
  * Added explicit `devDependencies` and `resolutions` blocks for `@types/react[-dom]` at v18.x.
18
+ * Added workaround for problematic use of SASS-syntax-in-CSS shipped by `react-dates`. This began
19
+ throwing "This function isn't allowed in plain CSS" with latest version of sass/sass-loader.
18
20
 
19
21
  ## v70.0.0 - 2024-11-15
20
22
 
@@ -1,5 +1,5 @@
1
1
  import { SingleDatePicker } from 'react-dates';
2
2
  import 'react-dates/initialize';
3
- import 'react-dates/lib/css/_datepicker.css';
3
+ import './datepicker.css';
4
4
  export { SingleDatePicker };
5
5
  export declare const singleDatePicker: import("@xh/hoist/core").ElementFactory<any>;