sprintify-ui 0.0.127 → 0.0.128
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/sprintify-ui.es.js
CHANGED
|
@@ -6684,9 +6684,9 @@ const Pd = {
|
|
|
6684
6684
|
return te = tl(te, ae), T(te), Ve(() => {
|
|
6685
6685
|
re();
|
|
6686
6686
|
}), o({
|
|
6687
|
-
fetch: D,
|
|
6688
|
-
fetchWithLoading: P,
|
|
6689
|
-
fetchWithoutLoading: L,
|
|
6687
|
+
fetch: () => D(!0),
|
|
6688
|
+
fetchWithLoading: () => P(!0),
|
|
6689
|
+
fetchWithoutLoading: () => L(!0),
|
|
6690
6690
|
scrollIntoView: F,
|
|
6691
6691
|
query: t
|
|
6692
6692
|
}), (se, _e) => {
|
|
@@ -7694,10 +7694,10 @@ const Vh = /* @__PURE__ */ vt(Rh, [["render", zh]]), Hh = { class: "flex justify
|
|
|
7694
7694
|
);
|
|
7695
7695
|
}
|
|
7696
7696
|
function A() {
|
|
7697
|
-
p.value && p.value.fetch(
|
|
7697
|
+
p.value && p.value.fetch();
|
|
7698
7698
|
}
|
|
7699
7699
|
function S() {
|
|
7700
|
-
p.value && p.value.fetchWithoutLoading(
|
|
7700
|
+
p.value && p.value.fetchWithoutLoading();
|
|
7701
7701
|
}
|
|
7702
7702
|
const _ = G(() => {
|
|
7703
7703
|
var k;
|
|
@@ -48,9 +48,9 @@ declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
|
|
48
48
|
type: BooleanConstructor;
|
|
49
49
|
};
|
|
50
50
|
}, {
|
|
51
|
-
fetch: (
|
|
52
|
-
fetchWithLoading: (
|
|
53
|
-
fetchWithoutLoading: (
|
|
51
|
+
fetch: () => void;
|
|
52
|
+
fetchWithLoading: () => void;
|
|
53
|
+
fetchWithoutLoading: () => void;
|
|
54
54
|
scrollIntoView: () => void;
|
|
55
55
|
query: Ref<DataTableQuery>;
|
|
56
56
|
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("click" | "delete" | "checkAll" | "update:checked-rows" | "check" | "update:query")[], "click" | "delete" | "checkAll" | "update:checked-rows" | "check" | "update:query", import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
package/package.json
CHANGED
|
@@ -712,9 +712,9 @@ onMounted(() => {
|
|
|
712
712
|
*/
|
|
713
713
|
|
|
714
714
|
defineExpose({
|
|
715
|
-
fetch,
|
|
716
|
-
fetchWithLoading,
|
|
717
|
-
fetchWithoutLoading,
|
|
715
|
+
fetch: () => fetch(true),
|
|
716
|
+
fetchWithLoading: () => fetchWithLoading(true),
|
|
717
|
+
fetchWithoutLoading: () => fetchWithoutLoading(true),
|
|
718
718
|
scrollIntoView,
|
|
719
719
|
query,
|
|
720
720
|
});
|
|
@@ -481,16 +481,14 @@ function fetch() {
|
|
|
481
481
|
if (!dataIterator.value) {
|
|
482
482
|
return;
|
|
483
483
|
}
|
|
484
|
-
|
|
485
|
-
dataIterator.value.fetch(true);
|
|
484
|
+
dataIterator.value.fetch();
|
|
486
485
|
}
|
|
487
486
|
|
|
488
487
|
function fetchWithoutLoading() {
|
|
489
488
|
if (!dataIterator.value) {
|
|
490
489
|
return;
|
|
491
490
|
}
|
|
492
|
-
|
|
493
|
-
dataIterator.value.fetchWithoutLoading(true);
|
|
491
|
+
dataIterator.value.fetchWithoutLoading();
|
|
494
492
|
}
|
|
495
493
|
|
|
496
494
|
const dataIteratorQuery = computed((): DataTableQuery | null => {
|