ember-container-query 2.0.1 → 2.0.2

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
@@ -1,3 +1,12 @@
1
+ ## 2.0.2 (2022-04-25)
2
+
3
+ ### Bug Fix
4
+ * [#113](https://github.com/ijlee2/ember-container-query/pull/113) Removed named exports for helpers ([@ijlee2](https://github.com/ijlee2))
5
+
6
+ ### Committers: 1
7
+ - Isaac Lee ([@ijlee2](https://github.com/ijlee2))
8
+
9
+
1
10
  ## 2.0.1 (2022-04-25)
2
11
 
3
12
  ### Bug Fix
@@ -1,6 +1,6 @@
1
1
  import { helper } from '@ember/component/helper';
2
2
 
3
- export function cqAspectRatio(params, hash) {
3
+ function cqAspectRatio(params, hash) {
4
4
  const dimension = 'aspectRatio';
5
5
  const { min = 0, max = Infinity } = hash;
6
6
 
@@ -1,6 +1,6 @@
1
1
  import { helper } from '@ember/component/helper';
2
2
 
3
- export function cqHeight(params, hash) {
3
+ function cqHeight(params, hash) {
4
4
  const dimension = 'height';
5
5
  const { min = 0, max = Infinity } = hash;
6
6
 
@@ -1,6 +1,6 @@
1
1
  import { helper } from '@ember/component/helper';
2
2
 
3
- export function cqWidth(params, hash) {
3
+ function cqWidth(params, hash) {
4
4
  const dimension = 'width';
5
5
  const { min = 0, max = Infinity } = hash;
6
6
 
@@ -1,4 +1 @@
1
- export {
2
- cqAspectRatio,
3
- default,
4
- } from 'ember-container-query/helpers/cq-aspect-ratio';
1
+ export { default } from 'ember-container-query/helpers/cq-aspect-ratio';
@@ -1 +1 @@
1
- export { cqHeight, default } from 'ember-container-query/helpers/cq-height';
1
+ export { default } from 'ember-container-query/helpers/cq-height';
@@ -1 +1 @@
1
- export { cqWidth, default } from 'ember-container-query/helpers/cq-width';
1
+ export { default } from 'ember-container-query/helpers/cq-width';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ember-container-query",
3
- "version": "2.0.1",
3
+ "version": "2.0.2",
4
4
  "description": "Container queries using Ember modifiers",
5
5
  "keywords": [
6
6
  "container-queries",