isobit-ui 0.2.37 → 0.2.38
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/dist/index.js +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* isobit-ui v0.2.
|
|
2
|
+
* isobit-ui v0.2.37
|
|
3
3
|
* (c) Erik Alarcon Pinedo
|
|
4
4
|
* Released under the MIT License.
|
|
5
5
|
*/
|
|
@@ -1914,11 +1914,20 @@ var __vue_component__$f = /*#__PURE__*/__vue_normalize__({
|
|
|
1914
1914
|
//
|
|
1915
1915
|
//
|
|
1916
1916
|
//
|
|
1917
|
+
//
|
|
1917
1918
|
var script$e = {
|
|
1918
1919
|
props: {
|
|
1919
1920
|
legend: String,
|
|
1920
1921
|
closable: null
|
|
1921
1922
|
},
|
|
1923
|
+
watch: {
|
|
1924
|
+
closed: function closed(c) {
|
|
1925
|
+
this.$emit('expand', {
|
|
1926
|
+
target: this,
|
|
1927
|
+
value: c
|
|
1928
|
+
});
|
|
1929
|
+
}
|
|
1930
|
+
},
|
|
1922
1931
|
data: function data() {
|
|
1923
1932
|
return {
|
|
1924
1933
|
closed: false
|