design-system-next 2.7.22 → 2.7.23

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.
@@ -16209,7 +16209,7 @@ const C8 = (e) => ({
16209
16209
  class: b(i(a).helperClasses)
16210
16210
  }, [
16211
16211
  te(o.$slots, "counter", {}, () => [
16212
- I("span", null, Z(`${o.$attrs.modelValue.length}/${r.maxLength}`), 1)
16212
+ I("span", null, Z(`${o.modelValue.length}/${r.maxLength}`), 1)
16213
16213
  ])
16214
16214
  ], 2)) : j("", !0)
16215
16215
  ], 2)
Binary file
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "design-system-next",
3
3
  "private": false,
4
- "version": "2.7.22",
4
+ "version": "2.7.23",
5
5
  "main": "./dist/design-system-next.js",
6
6
  "module": "./dist/design-system-next.js",
7
7
  "repository": {
@@ -7,7 +7,7 @@ export const textAreaPropTypes = {
7
7
  type: String,
8
8
  default: '',
9
9
  },
10
- modelValue: {
10
+ modelValue: {
11
11
  type: String,
12
12
  default: '',
13
13
  },
@@ -25,7 +25,7 @@
25
25
 
26
26
  <div v-if="props.hasCounter && props.maxLength" :class="textareaClasses.helperClasses">
27
27
  <slot name="counter">
28
- <span>{{ `${$attrs.modelValue.length}/${props.maxLength}` }}</span>
28
+ <span>{{ `${modelValue.length}/${props.maxLength}` }}</span>
29
29
  </slot>
30
30
  </div>
31
31
  </div>