@projectcaluma/ember-form 11.0.0-beta.11 → 11.0.0-beta.12
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/addon/modifiers/autoresize.js +16 -0
- package/app/modifiers/autoresize.js +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
# [@projectcaluma/ember-form-v11.0.0-beta.12](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.11...@projectcaluma/ember-form-v11.0.0-beta.12) (2022-02-23)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* **form:** fix textarea size in tables ([efba737](https://github.com/projectcaluma/ember-caluma/commit/efba737f0a6314225a851ee0c57c2c506403bc06))
|
7
|
+
|
1
8
|
# [@projectcaluma/ember-form-v11.0.0-beta.11](https://github.com/projectcaluma/ember-caluma/compare/@projectcaluma/ember-form-v11.0.0-beta.10...@projectcaluma/ember-form-v11.0.0-beta.11) (2022-02-16)
|
2
9
|
|
3
10
|
|
@@ -0,0 +1,16 @@
|
|
1
|
+
import { inject as service } from "@ember/service";
|
2
|
+
import AutoresizeModifier from "ember-autoresize-modifier/modifiers/autoresize";
|
3
|
+
|
4
|
+
export default class CustomAutoresizeModifier extends AutoresizeModifier {
|
5
|
+
@service inViewport;
|
6
|
+
|
7
|
+
didInstall() {
|
8
|
+
super.didInstall();
|
9
|
+
|
10
|
+
this.inViewport.watchElement(this.element).onEnter(this.resize);
|
11
|
+
}
|
12
|
+
|
13
|
+
willRemove() {
|
14
|
+
this.inViewport.stopWatching(this.element);
|
15
|
+
}
|
16
|
+
}
|
@@ -0,0 +1 @@
|
|
1
|
+
export { default } from "@projectcaluma/ember-form/modifiers/autoresize";
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@projectcaluma/ember-form",
|
3
|
-
"version": "11.0.0-beta.
|
3
|
+
"version": "11.0.0-beta.12",
|
4
4
|
"description": "Ember addon for rendering Caluma forms.",
|
5
5
|
"keywords": [
|
6
6
|
"ember-addon"
|
@@ -30,8 +30,8 @@
|
|
30
30
|
"ember-intl": "^5.7.2",
|
31
31
|
"ember-math-helpers": "^2.18.1",
|
32
32
|
"ember-pikaday": "^4.0.0",
|
33
|
-
"ember-power-select": "^5.0.
|
34
|
-
"ember-resources": "^4.3.
|
33
|
+
"ember-power-select": "^5.0.4",
|
34
|
+
"ember-resources": "^4.3.3",
|
35
35
|
"ember-uikit": "^5.0.0",
|
36
36
|
"ember-validators": "^4.1.2",
|
37
37
|
"graphql": "^15.8.0",
|
@@ -44,7 +44,7 @@
|
|
44
44
|
"@ember/optional-features": "2.0.0",
|
45
45
|
"@ember/test-helpers": "2.6.0",
|
46
46
|
"@embroider/test-setup": "1.2.0",
|
47
|
-
"@faker-js/faker": "6.0.0-alpha.
|
47
|
+
"@faker-js/faker": "6.0.0-alpha.7",
|
48
48
|
"@projectcaluma/ember-testing": "11.0.0-beta.3",
|
49
49
|
"@projectcaluma/ember-workflow": "11.0.0-beta.4",
|
50
50
|
"broccoli-asset-rev": "3.0.0",
|
@@ -67,10 +67,10 @@
|
|
67
67
|
"loader.js": "4.7.0",
|
68
68
|
"miragejs": "0.1.43",
|
69
69
|
"npm-run-all": "4.1.5",
|
70
|
-
"qunit": "2.
|
70
|
+
"qunit": "2.18.0",
|
71
71
|
"qunit-dom": "2.0.0",
|
72
72
|
"uuid": "8.3.2",
|
73
|
-
"webpack": "5.69.
|
73
|
+
"webpack": "5.69.1"
|
74
74
|
},
|
75
75
|
"engines": {
|
76
76
|
"node": "12.* || 14.* || >= 16"
|