vue-devui 1.3.2 → 1.3.3-alpha.2

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/README.md CHANGED
@@ -218,6 +218,8 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
218
218
  <td align="center"><a href="https://github.com/buaalkn"><img src="https://avatars.githubusercontent.com/u/89232641?v=4?s=100" width="100px;" alt=""/><br /><sub><b>buaalkn</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=buaalkn" title="Code">💻</a></td>
219
219
  <td align="center"><a href="https://github.com/hxj9102"><img src="https://avatars.githubusercontent.com/u/58357112?v=4?s=100" width="100px;" alt=""/><br /><sub><b>hxj9102</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=hxj9102" title="Code">💻</a></td>
220
220
  <td align="center"><a href="https://github.com/Whbbit1999"><img src="https://avatars.githubusercontent.com/u/60510247?v=4?s=100" width="100px;" alt=""/><br /><sub><b>Whbbit1999</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=Whbbit1999" title="Code">💻</a></td>
221
+ <td align="center"><a href="https://github.com/zhaoShijuan"><img src="https://avatars.githubusercontent.com/u/31791365?v=4?s=100" width="100px;" alt=""/><br /><sub><b>zhaoShijuan</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=zhaoShijuan" title="Code">💻</a></td>
222
+ <td align="center"><a href="https://github.com/XiaoRIGE"><img src="https://avatars.githubusercontent.com/u/33147011?v=4?s=100" width="100px;" alt=""/><br /><sub><b>XiaoRIGE</b></sub></a><br /><a href="https://github.com/DevCloudFE/vue-devui/commits?author=XiaoRIGE" title="Code">💻</a></td>
221
223
  </tr>
222
224
  </tbody>
223
225
  </table>
@@ -7891,7 +7891,8 @@ function useCheckbox(props, ctx) {
7891
7891
  ctx.emit("update:modelValue", current);
7892
7892
  ctx.emit("change", current);
7893
7893
  };
7894
- const handleClick = () => {
7894
+ const handleClick = ($event) => {
7895
+ $event.stopPropagation();
7895
7896
  canChange(!isChecked.value, props.label).then((res) => res && toggle());
7896
7897
  };
7897
7898
  const size = computed(() => (formContext == null ? void 0 : formContext.size) || (checkboxGroupConf == null ? void 0 : checkboxGroupConf.size.value) || props.size);