@avakhula/ui 0.0.346 → 0.0.348

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.346",
3
+ "version": "0.0.348",
4
4
  "main": "dist/index.js",
5
5
  "module": "dist/index.umd.cjs",
6
6
  "source": "src/index.js",
package/src/App.vue CHANGED
@@ -5,7 +5,7 @@
5
5
  </template>
6
6
  </ib-select>
7
7
 
8
- <ib-text-editor :character-limit="40" name="test-name" character-limit-error-message="limit error"></ib-text-editor>
8
+ <ib-toggle :disabled="true"></ib-toggle>
9
9
 
10
10
 
11
11
  </template>
@@ -14,7 +14,8 @@
14
14
  import IbSelect from "./components/TreeSelect/Select.vue";
15
15
  import label from "@/components/Form/Label/Label.vue";
16
16
  import {IbCheckboxGroup} from "./index.js";
17
- import {IbRadio, IbTextEditor} from "./index.js";
17
+ import {IbRadio} from "./index.js";
18
+ import IbToggle from "@/components/Form/Toggle/Toggle.vue";
18
19
  const testData1 = [
19
20
  {
20
21
  id: "1",
@@ -142,6 +143,6 @@ export default {
142
143
  checked: '1'
143
144
  }
144
145
  },
145
- components: {IbTextEditor, IbSelect, IbCheckboxGroup, IbRadio}
146
+ components: {IbToggle, IbSelect, IbCheckboxGroup, IbRadio}
146
147
  }
147
148
  </script>
@@ -8,6 +8,7 @@
8
8
  class="ib-checkbox-group-label"
9
9
  :required="required"
10
10
  :info-text="infoText"
11
+ :tooltip-position="tooltipPosition"
11
12
  >
12
13
  {{ labelText }}
13
14
  </ib-label>
@@ -52,6 +53,9 @@ export default {
52
53
  height: {
53
54
  type: String,
54
55
  default: '290px'
56
+ },
57
+ tooltipPosition: {
58
+ type: String
55
59
  }
56
60
  },
57
61
  components: {
@@ -240,7 +240,7 @@ export default {
240
240
  type: String,
241
241
  },
242
242
  },
243
- emits: ['onOverLimitHandler'],
243
+ emits: ['onOverLimitHandler', 'update:modelValue', 'change', 'blur'],
244
244
  mounted() {
245
245
  // Reset default styles for toolbar
246
246
  this.$refs.toolbar.classList.remove("ql-toolbar");