ember-container-query 6.1.4 → 6.1.5
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/LICENSE.md +1 -1
- package/README.md +2 -2
- package/dist/components/container-query.js +1 -1
- package/package.json +11 -10
package/LICENSE.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
The MIT License (MIT)
|
|
2
2
|
|
|
3
|
-
Copyright (c)
|
|
3
|
+
Copyright (c) 2026 Isaac J. Lee
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
|
6
6
|
|
package/README.md
CHANGED
|
@@ -124,7 +124,7 @@ Where can you use container queries? Here are real-life (and some theoretical) a
|
|
|
124
124
|
|
|
125
125
|
</details>
|
|
126
126
|
|
|
127
|
-
You will find plenty of examples in [`docs-app`](
|
|
127
|
+
You will find plenty of examples in [`docs-app`](../../docs-app). Visit https://ember-container-query.netlify.app/ to see the app in action!
|
|
128
128
|
|
|
129
129
|
<div align="left">
|
|
130
130
|
<img alt="A demo of ember-container-query shows a smooth transition when using a list or table to display data" src="https://user-images.githubusercontent.com/16869656/82177207-72699c00-989e-11ea-9cb6-2e388c5e98c0.gif" width="600" />
|
|
@@ -282,4 +282,4 @@ Much thanks goes to [Chad Carbert (@chadian)](https://github.com/chadian), who i
|
|
|
282
282
|
|
|
283
283
|
## License
|
|
284
284
|
|
|
285
|
-
This project is licensed under the [MIT License](LICENSE.md).
|
|
285
|
+
This project is licensed under the [MIT License](./LICENSE.md).
|
|
@@ -29,7 +29,7 @@ class ContainerQuery extends Component {
|
|
|
29
29
|
this.queryResults = queryResults;
|
|
30
30
|
};
|
|
31
31
|
static {
|
|
32
|
-
setComponentTemplate(precompileTemplate("
|
|
32
|
+
setComponentTemplate(precompileTemplate("{{#let (element this.tagName) as |Tag|}}\n <Tag class=\"container-query\" {{containerQuery dataAttributePrefix=@dataAttributePrefix debounce=@debounce features=@features onQuery=this.updateState}} ...attributes>\n {{yield (hash dimensions=this.dimensions features=this.queryResults)}}\n </Tag>\n{{/let}}", {
|
|
33
33
|
strictMode: true,
|
|
34
34
|
scope: () => ({
|
|
35
35
|
element,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ember-container-query",
|
|
3
|
-
"version": "6.1.
|
|
3
|
+
"version": "6.1.5",
|
|
4
4
|
"description": "Make container queries that harness the power of Ember",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"container-queries",
|
|
@@ -16,7 +16,8 @@
|
|
|
16
16
|
],
|
|
17
17
|
"repository": {
|
|
18
18
|
"type": "git",
|
|
19
|
-
"url": "https://github.com/ijlee2/ember-container-query.git"
|
|
19
|
+
"url": "https://github.com/ijlee2/ember-container-query.git",
|
|
20
|
+
"directory": "packages/ember-container-query"
|
|
20
21
|
},
|
|
21
22
|
"license": "MIT",
|
|
22
23
|
"author": "Isaac J. Lee",
|
|
@@ -52,30 +53,30 @@
|
|
|
52
53
|
"decorator-transforms": "^2.3.0",
|
|
53
54
|
"ember-element-helper": "^0.8.8",
|
|
54
55
|
"ember-modifier": "^4.2.2",
|
|
55
|
-
"ember-primitives": "^0.48.
|
|
56
|
+
"ember-primitives": "^0.48.2"
|
|
56
57
|
},
|
|
57
58
|
"devDependencies": {
|
|
58
59
|
"@babel/core": "^7.28.5",
|
|
59
60
|
"@babel/plugin-transform-typescript": "^7.28.5",
|
|
60
61
|
"@babel/runtime": "^7.28.4",
|
|
61
|
-
"@embroider/addon-dev": "^8.
|
|
62
|
+
"@embroider/addon-dev": "^8.2.0",
|
|
62
63
|
"@glimmer/component": "^2.0.0",
|
|
63
64
|
"@glimmer/tracking": "^1.1.2",
|
|
64
65
|
"@glint/ember-tsc": "^1.0.8",
|
|
65
66
|
"@glint/template": "^1.7.3",
|
|
66
67
|
"@glint/tsserver-plugin": "^2.0.8",
|
|
67
|
-
"@ijlee2-frontend-configs/ember-template-lint": "^2.3.
|
|
68
|
-
"@ijlee2-frontend-configs/eslint-config-ember": "^2.
|
|
69
|
-
"@ijlee2-frontend-configs/prettier": "^2.3.
|
|
68
|
+
"@ijlee2-frontend-configs/ember-template-lint": "^2.3.2",
|
|
69
|
+
"@ijlee2-frontend-configs/eslint-config-ember": "^2.5.0",
|
|
70
|
+
"@ijlee2-frontend-configs/prettier": "^2.3.3",
|
|
70
71
|
"@rollup/plugin-babel": "^6.1.0",
|
|
71
72
|
"@tsconfig/ember": "^3.0.12",
|
|
72
73
|
"babel-plugin-ember-template-compilation": "^3.0.1",
|
|
73
74
|
"concurrently": "^9.2.1",
|
|
74
|
-
"ember-source": "^6.
|
|
75
|
+
"ember-source": "^6.9.0",
|
|
75
76
|
"ember-template-lint": "^7.9.3",
|
|
76
|
-
"eslint": "^9.39.
|
|
77
|
+
"eslint": "^9.39.2",
|
|
77
78
|
"prettier": "^3.7.4",
|
|
78
|
-
"rollup": "^4.
|
|
79
|
+
"rollup": "^4.54.0",
|
|
79
80
|
"typescript": "^5.9.3"
|
|
80
81
|
},
|
|
81
82
|
"engines": {
|