@qin-ui/antd-vue-pro 2.1.11 → 2.1.12

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/api.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "generatedAt": "2026-05-26T08:14:28.580Z",
2
+ "generatedAt": "2026-06-04T09:03:23.488Z",
3
3
  "name": "@qin-ui/antd-vue-pro",
4
4
  "api": [
5
5
  {
@@ -1,13 +1,13 @@
1
- .pro-table_search-form[data-v-fffc2a28] [class*='-form-item'] {
1
+ .pro-table_search-form[data-v-b6a08ff0] [class*='-form-item'] {
2
2
  margin: 0;
3
3
  }
4
- .pro-table_search-form_expand-toggle-button[data-v-fffc2a28] {
4
+ .pro-table_search-form_expand-toggle-button[data-v-b6a08ff0] {
5
5
  display: flex;
6
6
  align-items: center;
7
7
  padding: 0;
8
8
  padding-left: 4px;
9
9
  }
10
- .pro-table_search-form .transition[data-v-fffc2a28] {
10
+ .pro-table_search-form .transition[data-v-b6a08ff0] {
11
11
  transition: all 0.25s;
12
12
  }
13
13
  .pro-table_search-form-container[data-v-c385cd54] {
package/es/table/index.js CHANGED
@@ -96,11 +96,12 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
96
96
  var _a, _b, _c;
97
97
  return (_c = (_b = (_a = __props.form) == null ? void 0 : _a.fields.value) == null ? void 0 : _b.filter((f) => !f.hidden)) == null ? void 0 : _c.length;
98
98
  },
99
- () => formRef.value
99
+ () => formRef.value,
100
+ () => __props.expand
100
101
  ],
101
102
  () => {
102
103
  var _a, _b, _c, _d, _e;
103
- if (!expandStatus.value || !formRef.value) return;
104
+ if (!__props.expand || !expandStatus.value || !formRef.value) return;
104
105
  const proFormEl = (_a = formRef.value) == null ? void 0 : _a.$el;
105
106
  const { height = 0 } = ((_b = proFormEl == null ? void 0 : proFormEl.getBoundingClientRect) == null ? void 0 : _b.call(proFormEl)) || {};
106
107
  proFormHeight.value = height;
@@ -225,7 +226,7 @@ const _sfc_main$7 = /* @__PURE__ */ defineComponent({
225
226
  };
226
227
  }
227
228
  });
228
- const SearchForm = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-fffc2a28"]]);
229
+ const SearchForm = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-b6a08ff0"]]);
229
230
  const _sfc_main$6 = /* @__PURE__ */ defineComponent({
230
231
  __name: "DefaultSearchFormContainer",
231
232
  setup(__props) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@qin-ui/antd-vue-pro",
3
- "version": "2.1.11",
3
+ "version": "2.1.12",
4
4
  "description": "二次封装antd vue组件",
5
5
  "type": "module",
6
6
  "module": "es/index.js",
@@ -24,6 +24,10 @@
24
24
  "type": "git",
25
25
  "url": "git+https://github.com/dufan3715/pro-components.git"
26
26
  },
27
+ "scripts": {
28
+ "prebuild": "tsx ../../scripts/generate-api-json.ts antd-vue-pro",
29
+ "build": "vue-tsc && vite build"
30
+ },
27
31
  "author": "dufan3715",
28
32
  "bugs": {
29
33
  "url": "https://github.com/dufan3715/pro-components/issues"
@@ -38,11 +42,11 @@
38
42
  "vue-component-type-helpers": "^3.2.5"
39
43
  },
40
44
  "devDependencies": {
45
+ "@qin-ui/core": "workspace:^",
41
46
  "@types/lodash-es": "^4.17.12",
42
47
  "ant-design-vue": "^4",
43
48
  "lodash-es": "^4.17.21",
44
- "scroll-into-view-if-needed": "^3.1.0",
45
- "@qin-ui/core": "^1.0.0"
49
+ "scroll-into-view-if-needed": "^3.1.0"
46
50
  },
47
51
  "sideEffects": false,
48
52
  "publishConfig": {
@@ -63,9 +67,5 @@
63
67
  "table",
64
68
  "pro-form",
65
69
  "pro-table"
66
- ],
67
- "scripts": {
68
- "prebuild": "tsx ../../scripts/generate-api-json.ts antd-vue-pro",
69
- "build": "vue-tsc && vite build"
70
- }
71
- }
70
+ ]
71
+ }
package/LICENSE DELETED
@@ -1,9 +0,0 @@
1
- MIT License
2
-
3
- Copyright (c) 2023-present pro-components
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
6
-
7
- The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
8
-
9
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.