3h1-ui 1.0.26 → 1.0.28

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/es/index.js CHANGED
@@ -2,7 +2,7 @@ import { h, nextTick, createVNode, defineComponent, ref, watchEffect, resolveCom
2
2
  import "xe-utils";
3
3
  import { VxeTable, VxeColumn } from "vxe-table";
4
4
  import zhCN from "ant-design-vue/es/locale/zh_CN";
5
- import { ConfigProvider, Pagination, Modal, Button, Tag, Tabs, TabPane, Input, Tree } from "ant-design-vue";
5
+ import { ConfigProvider, Pagination, Modal, Button, Tag, Tabs, TabPane, Input, Tree, CheckboxGroup, Checkbox } from "ant-design-vue";
6
6
  import "ant-design-vue/dist/antd.css";
7
7
  const style = "";
8
8
  function bound01(n, max) {
@@ -1657,8 +1657,6 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1657
1657
  emit("confirm", tagList.value);
1658
1658
  };
1659
1659
  return (_ctx, _cache) => {
1660
- const _component_a_checkbox = resolveComponent("a-checkbox");
1661
- const _component_a_checkbox_group = resolveComponent("a-checkbox-group");
1662
1660
  return openBlock(), createBlock(ShyDialog, {
1663
1661
  width: "50vw",
1664
1662
  title: "\u4EFB\u52A1\u9009\u62E9\u5668",
@@ -1721,7 +1719,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1721
1719
  onSelect: selectChangeEvent
1722
1720
  }, null, 8, ["tree-data", "selectedKeys"])
1723
1721
  ]),
1724
- createVNode(_component_a_checkbox_group, {
1722
+ createVNode(unref(CheckboxGroup), {
1725
1723
  class: "tree-item",
1726
1724
  value: userSelected.value,
1727
1725
  "onUpdate:value": _cache[2] || (_cache[2] = ($event) => userSelected.value = $event)
@@ -1733,7 +1731,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1733
1731
  class: "tree-row"
1734
1732
  }, [
1735
1733
  createElementVNode("div", null, toDisplayString(item.name), 1),
1736
- createVNode(_component_a_checkbox, {
1734
+ createVNode(unref(Checkbox), {
1737
1735
  value: item.id
1738
1736
  }, null, 8, ["value"])
1739
1737
  ]);
@@ -1742,7 +1740,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1742
1740
  _: 1
1743
1741
  }, 8, ["value"])
1744
1742
  ])) : activeKey.value === "2" ? (openBlock(), createElementBlock("div", _hoisted_8, [
1745
- createVNode(_component_a_checkbox_group, {
1743
+ createVNode(unref(CheckboxGroup), {
1746
1744
  value: allUserSelected.value,
1747
1745
  "onUpdate:value": _cache[3] || (_cache[3] = ($event) => allUserSelected.value = $event)
1748
1746
  }, {
@@ -1753,7 +1751,7 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1753
1751
  class: "tree-row"
1754
1752
  }, [
1755
1753
  createElementVNode("div", null, toDisplayString(item.name), 1),
1756
- createVNode(_component_a_checkbox, {
1754
+ createVNode(unref(Checkbox), {
1757
1755
  value: item.id
1758
1756
  }, null, 8, ["value"])
1759
1757
  ]);
@@ -1780,8 +1778,8 @@ const _sfc_main = /* @__PURE__ */ defineComponent({
1780
1778
  };
1781
1779
  }
1782
1780
  });
1783
- const IndexView_vue_vue_type_style_index_0_scoped_4f4e2ba2_lang = "";
1784
- const UserSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4f4e2ba2"]]);
1781
+ const IndexView_vue_vue_type_style_index_0_scoped_e6e68108_lang = "";
1782
+ const UserSelect = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-e6e68108"]]);
1785
1783
  const index = {
1786
1784
  install(app) {
1787
1785
  app.component("s-table", ShyTable);
package/es/lib/index.d.ts CHANGED
@@ -1,7 +1,9 @@
1
1
  import ShyTable from './src/ShyTable/IndexView.vue';
2
2
  import ShyPage from './src/ShyPage/IndexView.vue';
3
+ import ShyDialog from './src/ShyDialog/indexView.vue';
4
+ import UserSelect from './src/UserSelect/IndexView.vue';
3
5
  import { App } from 'vue';
4
- export { ShyPage, ShyTable };
6
+ export { ShyPage, ShyTable, ShyDialog, UserSelect };
5
7
  declare const _default: {
6
8
  install(app: App): void;
7
9
  };
@@ -0,0 +1,8 @@
1
+ import ShyTable from './src/ShyTable/IndexView.vue';
2
+ import ShyPage from './src/ShyPage/IndexView.vue';
3
+ import { App } from 'vue';
4
+ export { ShyPage, ShyTable };
5
+ declare const _default: {
6
+ install(app: App): void;
7
+ };
8
+ export default _default;