@doodl/slate 1.23.0 → 1.23.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 CHANGED
@@ -2,6 +2,13 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ### [1.23.1](https://bitbucket.org/doodlltd/slate/compare/v1.23.0...v1.23.1) (2024-01-12)
6
+
7
+
8
+ ### Bug Fixes
9
+
10
+ * resolve string interpolation error causing MediaQueryPlugin error ([87ddf11](https://bitbucket.org/doodlltd/slate/commit/87ddf11faf60bb7aa949f5413ad8123d944454de))
11
+
5
12
  ## [1.23.0](https://bitbucket.org/doodlltd/slate/compare/v1.22.16...v1.23.0) (2023-09-17)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@doodl/slate",
3
- "version": "1.23.0",
3
+ "version": "1.23.1",
4
4
  "description": "",
5
5
  "main": "./js/dist/index.js",
6
6
  "module": "./js/dist/index.js",
package/scss/_mixins.scss CHANGED
@@ -5,7 +5,7 @@
5
5
  // Generate preset media query from breakpoint key
6
6
  @function media-query-from-breakpoint($breakpoint, $media: 'screen') {
7
7
  $width: map-get($slate-breakpoints, $breakpoint);
8
- @return '#{$media} and (min-width: #{$width})';
8
+ @return #{$media} and (min-width: #{$width});
9
9
  }
10
10
 
11
11
  // Output content inside a media query for the defined breakpoint,