3h1-ui 2.8.1 → 2.8.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/es/index.js +3 -4
- package/es/style.css +10 -0
- package/lib/index.js +3 -4
- package/package.json +1 -1
package/es/index.js
CHANGED
|
@@ -7290,7 +7290,6 @@ const _sfc_main$M = /* @__PURE__ */ defineComponent({
|
|
|
7290
7290
|
});
|
|
7291
7291
|
const Table_vue_vue_type_style_index_0_scoped_7465b460_lang = "";
|
|
7292
7292
|
const Table = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-7465b460"]]);
|
|
7293
|
-
console.log(Divider);
|
|
7294
7293
|
const componentMap$2 = /* @__PURE__ */ new Map();
|
|
7295
7294
|
componentMap$2.set("Input", Input);
|
|
7296
7295
|
componentMap$2.set("InputGroup", Input.Group);
|
|
@@ -14466,7 +14465,8 @@ function useTableFooter(propsRef, scrollRef, tableElRef, getDataSourceRef) {
|
|
|
14466
14465
|
function useTableForm(propsRef, slots, fetch, getLoading) {
|
|
14467
14466
|
const getFormConfig = computed(() => {
|
|
14468
14467
|
const { formConfig } = unref(propsRef);
|
|
14469
|
-
|
|
14468
|
+
const temp = JSON.parse(JSON.stringify(formConfig));
|
|
14469
|
+
temp == null ? void 0 : temp.schemas.forEach((item) => {
|
|
14470
14470
|
if (item.component === "Input") {
|
|
14471
14471
|
item.componentProps = {
|
|
14472
14472
|
showCount: false,
|
|
@@ -14474,7 +14474,7 @@ function useTableForm(propsRef, slots, fetch, getLoading) {
|
|
|
14474
14474
|
};
|
|
14475
14475
|
}
|
|
14476
14476
|
});
|
|
14477
|
-
return
|
|
14477
|
+
return temp;
|
|
14478
14478
|
});
|
|
14479
14479
|
const getFormProps = computed(() => {
|
|
14480
14480
|
const { formConfig } = unref(propsRef);
|
|
@@ -14790,7 +14790,6 @@ const _sfc_main$i = defineComponent({
|
|
|
14790
14790
|
getFormSlotKeys,
|
|
14791
14791
|
handleSearchInfoChange
|
|
14792
14792
|
} = useTableForm(getProps, slots, fetch, getLoading);
|
|
14793
|
-
console.log("1", getFormProps.value);
|
|
14794
14793
|
const getBindValues = computed(() => {
|
|
14795
14794
|
const dataSource = unref(getDataSourceRef);
|
|
14796
14795
|
let propsData = {
|
package/es/style.css
CHANGED
|
@@ -204,6 +204,16 @@ img, svg {
|
|
|
204
204
|
p {
|
|
205
205
|
margin: 0;
|
|
206
206
|
}
|
|
207
|
+
select {
|
|
208
|
+
font-family: inherit;
|
|
209
|
+
font-size: 100%;
|
|
210
|
+
line-height: 1.15;
|
|
211
|
+
margin: 0;
|
|
212
|
+
text-transform: none;
|
|
213
|
+
padding: 0;
|
|
214
|
+
line-height: inherit;
|
|
215
|
+
color: inherit;
|
|
216
|
+
}
|
|
207
217
|
@keyframes enter-x-animation {
|
|
208
218
|
to {
|
|
209
219
|
opacity: 1;
|
package/lib/index.js
CHANGED
|
@@ -7292,7 +7292,6 @@ const _sfc_main$M = /* @__PURE__ */ vue.defineComponent({
|
|
|
7292
7292
|
});
|
|
7293
7293
|
const Table_vue_vue_type_style_index_0_scoped_7465b460_lang = "";
|
|
7294
7294
|
const Table = /* @__PURE__ */ _export_sfc(_sfc_main$M, [["__scopeId", "data-v-7465b460"]]);
|
|
7295
|
-
console.log(Divider);
|
|
7296
7295
|
const componentMap$2 = /* @__PURE__ */ new Map();
|
|
7297
7296
|
componentMap$2.set("Input", antDesignVue.Input);
|
|
7298
7297
|
componentMap$2.set("InputGroup", antDesignVue.Input.Group);
|
|
@@ -14468,7 +14467,8 @@ function useTableFooter(propsRef, scrollRef, tableElRef, getDataSourceRef) {
|
|
|
14468
14467
|
function useTableForm(propsRef, slots, fetch, getLoading) {
|
|
14469
14468
|
const getFormConfig = vue.computed(() => {
|
|
14470
14469
|
const { formConfig } = vue.unref(propsRef);
|
|
14471
|
-
|
|
14470
|
+
const temp = JSON.parse(JSON.stringify(formConfig));
|
|
14471
|
+
temp == null ? void 0 : temp.schemas.forEach((item) => {
|
|
14472
14472
|
if (item.component === "Input") {
|
|
14473
14473
|
item.componentProps = {
|
|
14474
14474
|
showCount: false,
|
|
@@ -14476,7 +14476,7 @@ function useTableForm(propsRef, slots, fetch, getLoading) {
|
|
|
14476
14476
|
};
|
|
14477
14477
|
}
|
|
14478
14478
|
});
|
|
14479
|
-
return
|
|
14479
|
+
return temp;
|
|
14480
14480
|
});
|
|
14481
14481
|
const getFormProps = vue.computed(() => {
|
|
14482
14482
|
const { formConfig } = vue.unref(propsRef);
|
|
@@ -14792,7 +14792,6 @@ const _sfc_main$i = vue.defineComponent({
|
|
|
14792
14792
|
getFormSlotKeys,
|
|
14793
14793
|
handleSearchInfoChange
|
|
14794
14794
|
} = useTableForm(getProps, slots, fetch, getLoading);
|
|
14795
|
-
console.log("1", getFormProps.value);
|
|
14796
14795
|
const getBindValues = vue.computed(() => {
|
|
14797
14796
|
const dataSource = vue.unref(getDataSourceRef);
|
|
14798
14797
|
let propsData = {
|