sprintify-ui 0.8.21 → 0.8.22

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.
@@ -7186,7 +7186,7 @@ const Gx = {
7186
7186
  (d = o.value) == null || d.focus();
7187
7187
  return;
7188
7188
  }
7189
- r("confirm", l);
7189
+ r("confirm", l.value);
7190
7190
  }
7191
7191
  return (c, d) => (I(), K("div", Qx, [
7192
7192
  j("div", Zx, [
@@ -7228,7 +7228,7 @@ const Gx = {
7228
7228
  ]),
7229
7229
  _(a) ? (I(), Ee(Sr, {
7230
7230
  key: 0,
7231
- class: "mt-5",
7231
+ class: "mt-5 w-full",
7232
7232
  label: _(a).label,
7233
7233
  size: _(a).size,
7234
7234
  required: _(a).required
@@ -7242,7 +7242,8 @@ const Gx = {
7242
7242
  "onUpdate:modelValue": d[0] || (d[0] = (f) => gr(l) ? l.value = f : null),
7243
7243
  name: "input",
7244
7244
  placeholder: _(a).placeholder,
7245
- class: "w-full"
7245
+ class: "w-full",
7246
+ "tw-input": "w-full"
7246
7247
  }, null, 8, ["modelValue", "placeholder"])) : (I(), Ee(ir, {
7247
7248
  key: 1,
7248
7249
  ref_key: "inputRef",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.8.21",
3
+ "version": "0.8.22",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -57,7 +57,7 @@
57
57
 
58
58
  <BaseField
59
59
  v-if="inputConfig"
60
- class="mt-5"
60
+ class="mt-5 w-full"
61
61
  :label="inputConfig.label"
62
62
  :size="inputConfig.size"
63
63
  :required="inputConfig.required"
@@ -69,6 +69,7 @@
69
69
  name="input"
70
70
  :placeholder="inputConfig.placeholder"
71
71
  class="w-full"
72
+ tw-input="w-full"
72
73
  />
73
74
  <BaseInput
74
75
  v-else
@@ -197,7 +198,7 @@ function confirm() {
197
198
  return;
198
199
  }
199
200
 
200
- emit('confirm', input);
201
+ emit('confirm', input.value);
201
202
  }
202
203
 
203
204
  </script>