@eturnity/eturnity_reusable_components 8.26.11-autiFill.6 → 8.26.11-autoFill.8

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/main.es21.js CHANGED
@@ -62,11 +62,9 @@ const _sfc_main = {
62
62
  this.isOpenByClick = !this.isOpenByClick;
63
63
  },
64
64
  close() {
65
- this.$emit("on-close");
66
65
  this.isOpenByClick = false;
67
66
  },
68
67
  open() {
69
- this.$emit("on-open");
70
68
  this.isOpenByClick = true;
71
69
  }
72
70
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@eturnity/eturnity_reusable_components",
3
- "version": "8.26.11-autiFill.6",
3
+ "version": "8.26.11-autoFill.8",
4
4
  "files": [
5
5
  "dist",
6
6
  "src"
@@ -81,11 +81,9 @@
81
81
  this.isOpenByClick = !this.isOpenByClick
82
82
  },
83
83
  close() {
84
- this.$emit('on-close')
85
84
  this.isOpenByClick = false
86
85
  },
87
86
  open() {
88
- this.$emit('on-open')
89
87
  this.isOpenByClick = true
90
88
  },
91
89
  },
@@ -21,6 +21,7 @@
21
21
  <CheckWrapper :has-label="hasLabel">
22
22
  <span class="checkmark"></span>
23
23
  </CheckWrapper>
24
+
24
25
  <LabelText v-if="hasLabel" :is-disabled="isDisabled">
25
26
  {{ label }}
26
27
  </LabelText>
@@ -232,6 +233,16 @@
232
233
  type: String,
233
234
  default: 'pointer',
234
235
  },
236
+ labelInfoText: {
237
+ type: String,
238
+ required: false,
239
+ default: null,
240
+ },
241
+ labelInfoAlign: {
242
+ type: String,
243
+ required: false,
244
+ default: 'left',
245
+ },
235
246
  },
236
247
  computed: {
237
248
  hasLabel() {