3h1-ui 1.0.21 → 1.0.22

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/lib/index.js CHANGED
@@ -1345,7 +1345,7 @@ const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
1345
1345
  }
1346
1346
  });
1347
1347
  const isExpandFlag = vue.computed(() => {
1348
- return searchColumn.value.length >= 3 ? true : false;
1348
+ return searchColumn.value.length > 3 ? true : false;
1349
1349
  });
1350
1350
  const iconStyle = {
1351
1351
  fontSize: "7px",
@@ -1430,7 +1430,7 @@ const _sfc_main$3 = /* @__PURE__ */ vue.defineComponent({
1430
1430
  };
1431
1431
  }
1432
1432
  });
1433
- const IndexView_vue_vue_type_style_index_0_scoped_4bb16c80_lang = "";
1433
+ const IndexView_vue_vue_type_style_index_0_scoped_8e35f1f3_lang = "";
1434
1434
  const _export_sfc = (sfc, props) => {
1435
1435
  const target = sfc.__vccOpts || sfc;
1436
1436
  for (const [key, val] of props) {
@@ -1438,7 +1438,7 @@ const _export_sfc = (sfc, props) => {
1438
1438
  }
1439
1439
  return target;
1440
1440
  };
1441
- const ShySearch = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-4bb16c80"]]);
1441
+ const ShySearch = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-8e35f1f3"]]);
1442
1442
  const style = "";
1443
1443
  const _withScopeId = (n) => (vue.pushScopeId("data-v-68169e62"), n = n(), vue.popScopeId(), n);
1444
1444
  const _hoisted_1 = { class: "button-group" };
@@ -1637,7 +1637,7 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
1637
1637
  (column == null ? void 0 : column.slot) === true ? {
1638
1638
  name: "default",
1639
1639
  fn: vue.withCtx(({ row }) => [
1640
- vue.renderSlot(_ctx.$slots, column.dataIndex, vue.normalizeProps(vue.guardReactiveProps({ row })), () => [
1640
+ vue.renderSlot(_ctx.$slots, column.prop, vue.normalizeProps(vue.guardReactiveProps({ row })), () => [
1641
1641
  vue.createTextVNode("\u63D2\u69FD\u5DF2\u5F00\u542F")
1642
1642
  ], true)
1643
1643
  ]),
@@ -1665,8 +1665,8 @@ const _sfc_main$1 = /* @__PURE__ */ vue.defineComponent({
1665
1665
  };
1666
1666
  }
1667
1667
  });
1668
- const IndexView_vue_vue_type_style_index_0_scoped_0df066ef_lang = "";
1669
- const ShyTable = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-0df066ef"]]);
1668
+ const IndexView_vue_vue_type_style_index_0_scoped_fdb6331b_lang = "";
1669
+ const ShyTable = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-fdb6331b"]]);
1670
1670
  const _sfc_main = /* @__PURE__ */ vue.defineComponent({
1671
1671
  __name: "IndexView",
1672
1672
  props: {
@@ -0,0 +1,10 @@
1
+ import ShySearch from './src/search/IndexView.vue';
2
+ import ShyForm from './src/ShyForm/IndexView.vue';
3
+ import ShyTable from './src/ShyTable/IndexView.vue';
4
+ import ShyPage from './src/ShyPage/IndexView.vue';
5
+ import { App } from 'vue';
6
+ export { ShySearch, ShyForm, ShyPage, ShyTable };
7
+ declare const _default: {
8
+ install(app: App): void;
9
+ };
10
+ export default _default;