@1024pix/pix-ui 58.4.6 → 58.4.7
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.
|
@@ -2,13 +2,12 @@ import { on } from '@ember/modifier';
|
|
|
2
2
|
import { action } from '@ember/object';
|
|
3
3
|
import { guidFor } from '@ember/object/internals';
|
|
4
4
|
import Component from '@glimmer/component';
|
|
5
|
-
import {
|
|
5
|
+
import { localCopy } from 'tracked-toolbox';
|
|
6
6
|
|
|
7
7
|
import PixLabel from './pix-label';
|
|
8
8
|
|
|
9
9
|
export default class PixTextarea extends Component {
|
|
10
|
-
|
|
11
|
-
@tracked value = this.args.value;
|
|
10
|
+
@localCopy('args.value') value;
|
|
12
11
|
|
|
13
12
|
get id() {
|
|
14
13
|
if (this.args.id) return this.args.id;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@1024pix/pix-ui",
|
|
3
|
-
"version": "58.4.
|
|
3
|
+
"version": "58.4.7",
|
|
4
4
|
"description": "Pix-UI is the implementation of Pix design principles and guidelines for its products.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ember-addon"
|
|
@@ -72,7 +72,8 @@
|
|
|
72
72
|
"ember-modifier": "^4.2.0",
|
|
73
73
|
"ember-popperjs": "^3.0.0",
|
|
74
74
|
"ember-template-imports": "^4.3.0",
|
|
75
|
-
"ember-truth-helpers": "^5.0.0"
|
|
75
|
+
"ember-truth-helpers": "^5.0.0",
|
|
76
|
+
"tracked-toolbox": "^2.2.0"
|
|
76
77
|
},
|
|
77
78
|
"devDependencies": {
|
|
78
79
|
"@1024pix/ember-testing-library": "^3.0.25",
|