@avakhula/ui 0.0.501 → 0.0.503
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 +2970 -16261
- package/dist/index.umd.cjs +22 -167
- package/dist/style.css +1 -1
- package/package.json +1 -1
- package/src/App.vue +0 -0
- package/src/components/Form/Checkbox/Checkbox.vue +2 -1
- package/src/index.js +0 -2
package/package.json
CHANGED
package/src/App.vue
CHANGED
|
File without changes
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
v-bind="attrs"
|
|
5
5
|
:for="id"
|
|
6
6
|
:tabindex="disabled | disableFocus ? -1 : 0"
|
|
7
|
+
@click.prevent.stop="onChange"
|
|
7
8
|
@keypress.prevent="onChange"
|
|
8
9
|
>
|
|
9
10
|
<input
|
|
@@ -15,7 +16,7 @@
|
|
|
15
16
|
:disabled="disabled"
|
|
16
17
|
:required="required"
|
|
17
18
|
v-model="checked"
|
|
18
|
-
@click
|
|
19
|
+
@click="onChange"
|
|
19
20
|
/>
|
|
20
21
|
<div class="ib-checkbox-body">
|
|
21
22
|
<span
|
package/src/index.js
CHANGED
|
@@ -38,8 +38,6 @@ export { default as IbToggle } from "./components/Form/Toggle/Toggle.vue";
|
|
|
38
38
|
export { default as IbTextarea } from "./components/Form/Textarea/Textarea.vue";
|
|
39
39
|
export { default as IbTreeSelect } from "./components/TreeSelect/Select.vue";
|
|
40
40
|
export { default as IbDatePicker } from "./components/Form/DatePicker/DatePicker.vue";
|
|
41
|
-
export { default as IbPhoneInput } from "./components/Form/PhoneInput/PhoneInput.vue";
|
|
42
|
-
export { default as IbTextEditor } from "./components/Form/TextEditor/TextEditor.vue";
|
|
43
41
|
|
|
44
42
|
// Table
|
|
45
43
|
export { default as IbTable } from "./components/Table/Table.vue";
|