@avakhula/ui 0.0.95 → 0.0.97

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@avakhula/ui",
3
- "version": "0.0.95",
3
+ "version": "0.0.97",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
@@ -3,7 +3,7 @@
3
3
  {{ errorMessage }}
4
4
  </ib-alert>
5
5
 
6
- <div class="tree-select">
6
+ <div class="tree-select" :class="classList">
7
7
  <ib-dropdown
8
8
  :disabled="isLoading"
9
9
  :is-resizable="isResizable"
@@ -244,6 +244,7 @@ export default {
244
244
  name: "IbTreeSelect",
245
245
  inject: ["LANG_COMPONENTS"],
246
246
  props: {
247
+ classList: [String, Array],
247
248
  placeholder: {
248
249
  type: String,
249
250
  default: "",
@@ -386,7 +387,7 @@ export default {
386
387
  default: false,
387
388
  },
388
389
  },
389
- emits: ["close"],
390
+ emits: ["close", "input"],
390
391
  watch: {
391
392
  value(value) {
392
393
  this.val = value;