@weni/unnnic-system 2.25.1-alpha.3 → 2.26.1-alpha.0
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.
- package/CHANGELOG.md +10 -0
- package/dist/{es-cdafe638.mjs → es-9285ce98.mjs} +1 -1
- package/dist/{index-527a9005.mjs → index-a5a1decc.mjs} +4 -3
- package/dist/{pt-br-45022c50.mjs → pt-br-1a2b1794.mjs} +1 -1
- package/dist/unnnic.mjs +1 -1
- package/dist/unnnic.umd.js +21 -21
- package/package.json +1 -1
- package/src/components/SelectSmart/SelectSmart.vue +4 -0
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## 2.26.0 (2025-03-27)
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
|
|
12
|
+
- Add DatePicker disableClear prop to ocult clear button
|
|
13
|
+
|
|
14
|
+
### Fixed
|
|
15
|
+
|
|
16
|
+
- InputDatePicker mouseover cursor pointer
|
|
17
|
+
|
|
8
18
|
## 2.25.0 (2025-03-12)
|
|
9
19
|
|
|
10
20
|
### Added
|
|
@@ -19580,6 +19580,7 @@ const qG = {
|
|
|
19580
19580
|
default: null
|
|
19581
19581
|
}
|
|
19582
19582
|
},
|
|
19583
|
+
emits: ["update:searchValue", "onChange", "update:modelValue"],
|
|
19583
19584
|
data() {
|
|
19584
19585
|
return {
|
|
19585
19586
|
active: !1,
|
|
@@ -19636,7 +19637,7 @@ const qG = {
|
|
|
19636
19637
|
});
|
|
19637
19638
|
},
|
|
19638
19639
|
searchValue(e, i) {
|
|
19639
|
-
this.focusedOption = null, !this.active && i && (this.active = !0);
|
|
19640
|
+
this.focusedOption = null, !this.active && i && (this.active = !0), this.$emit("update:searchValue", e);
|
|
19640
19641
|
},
|
|
19641
19642
|
modelValue: {
|
|
19642
19643
|
deep: !0,
|
|
@@ -22814,8 +22815,8 @@ function Dee(e, i, n, a, r, o) {
|
|
|
22814
22815
|
});
|
|
22815
22816
|
}
|
|
22816
22817
|
const Aee = /* @__PURE__ */ k(Mee, [["render", Dee], ["__scopeId", "data-v-9b793da0"]]);
|
|
22817
|
-
import("./es-
|
|
22818
|
-
import("./pt-br-
|
|
22818
|
+
import("./es-9285ce98.mjs");
|
|
22819
|
+
import("./pt-br-1a2b1794.mjs");
|
|
22819
22820
|
const To = {
|
|
22820
22821
|
name: "ChatsContact",
|
|
22821
22822
|
components: {
|
package/dist/unnnic.mjs
CHANGED