sprintify-ui 0.6.36 → 0.6.37

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.
@@ -7443,6 +7443,7 @@ const Xm = /* @__PURE__ */ pi(Sx, [["render", Cx]]), Tx = { class: "relative w-f
7443
7443
  ref_key: "inputElement",
7444
7444
  ref: p,
7445
7445
  "model-value": T(h),
7446
+ required: !1,
7446
7447
  type: "text",
7447
7448
  "visible-focus": n.visibleFocus,
7448
7449
  placeholder: n.placeholder ? n.placeholder : T(ze)("sui.autocomplete_placeholder"),
@@ -24251,6 +24252,7 @@ const RO = { class: "grow" }, MO = {
24251
24252
  placeholder: T(ze)("sui.autocomplete_placeholder"),
24252
24253
  size: T(c).size.value,
24253
24254
  class: "w-full",
24255
+ required: !1,
24254
24256
  "icon-left": "heroicons:magnifying-glass",
24255
24257
  "icon-right": T(v) ? "heroicons:x-mark" : void 0,
24256
24258
  onIconRightClick: Ce[1] || (Ce[1] = (I) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sprintify-ui",
3
- "version": "0.6.36",
3
+ "version": "0.6.37",
4
4
  "scripts": {
5
5
  "build": "rimraf dist && vue-tsc && vite build",
6
6
  "build-fast": "rimraf dist && vite build",
@@ -26,6 +26,7 @@
26
26
  <BaseInput
27
27
  ref="inputElement"
28
28
  :model-value="keywords"
29
+ :required="false"
29
30
  type="text"
30
31
  :visible-focus="visibleFocus"
31
32
  :placeholder="placeholder ? placeholder : t('sui.autocomplete_placeholder')"
@@ -28,6 +28,7 @@
28
28
  :placeholder="t('sui.autocomplete_placeholder')"
29
29
  :size="sizeInternal.size.value"
30
30
  class="w-full"
31
+ :required="false"
31
32
  icon-left="heroicons:magnifying-glass"
32
33
  :icon-right="searchQuery ? 'heroicons:x-mark' : undefined"
33
34
  @icon-right-click="searchQuery = ''; onSearch('');"