knt-shared 1.1.5 → 1.1.6
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/dist/components/Modal/BasicModal.vue.d.ts +3 -0
- package/dist/components/Modal/BasicModal.vue.d.ts.map +1 -1
- package/dist/components/Table/BasicTable.vue.d.ts +1 -11
- package/dist/components/Table/BasicTable.vue.d.ts.map +1 -1
- package/dist/components/Table/types.d.ts +10 -8
- package/dist/components/Table/types.d.ts.map +1 -1
- package/dist/index.cjs.js +4 -4
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +4 -4
- package/dist/index.esm.js.map +1 -1
- package/dist/style.css +16 -16
- package/dist/types/global.d.ts +8 -0
- package/dist/types/global.d.ts.map +1 -0
- package/package.json +1 -1
package/dist/index.esm.js
CHANGED
|
@@ -1437,7 +1437,7 @@ const _sfc_main$2 = /* @__PURE__ */ defineComponent({
|
|
|
1437
1437
|
const getPaginationConfig = computed(() => {
|
|
1438
1438
|
const mergedProps = getMergedProps.value;
|
|
1439
1439
|
if (mergedProps.pagination === false) {
|
|
1440
|
-
return
|
|
1440
|
+
return false;
|
|
1441
1441
|
}
|
|
1442
1442
|
return {
|
|
1443
1443
|
...mergedProps.pagination,
|
|
@@ -2376,7 +2376,7 @@ const _export_sfc = (sfc, props) => {
|
|
|
2376
2376
|
}
|
|
2377
2377
|
return target;
|
|
2378
2378
|
};
|
|
2379
|
-
const BasicTable = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-
|
|
2379
|
+
const BasicTable = /* @__PURE__ */ _export_sfc(_sfc_main$2, [["__scopeId", "data-v-f0b71ff8"]]);
|
|
2380
2380
|
function useTable(options = {}) {
|
|
2381
2381
|
const tableRef = ref(null);
|
|
2382
2382
|
const formRef = ref(null);
|
|
@@ -2657,7 +2657,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
2657
2657
|
footer: { type: Boolean, default: true },
|
|
2658
2658
|
titleAlign: { default: "center" },
|
|
2659
2659
|
height: {},
|
|
2660
|
-
minHeight: {},
|
|
2660
|
+
minHeight: { default: 60 },
|
|
2661
2661
|
useWrapper: { type: Boolean, default: true },
|
|
2662
2662
|
wrapperFooterOffset: { default: 0 },
|
|
2663
2663
|
canFullscreen: { type: Boolean, default: false },
|
|
@@ -3025,7 +3025,7 @@ const _sfc_main$1 = /* @__PURE__ */ defineComponent({
|
|
|
3025
3025
|
};
|
|
3026
3026
|
}
|
|
3027
3027
|
});
|
|
3028
|
-
const BasicModal = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-
|
|
3028
|
+
const BasicModal = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-4117f967"]]);
|
|
3029
3029
|
function useModal(props) {
|
|
3030
3030
|
const modalRef = ref(null);
|
|
3031
3031
|
const loadedRef = ref(false);
|