cosey 0.4.40 → 0.4.41
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.
|
@@ -127,6 +127,9 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
127
127
|
watch(() => props.data, () => {
|
|
128
128
|
tableData.value = props.data || [];
|
|
129
129
|
});
|
|
130
|
+
const getData = () => {
|
|
131
|
+
return tableData.value;
|
|
132
|
+
};
|
|
130
133
|
const setData = data => {
|
|
131
134
|
tableData.value = data;
|
|
132
135
|
};
|
|
@@ -342,7 +345,8 @@ var stdin_default = /* @__PURE__ */defineComponent({
|
|
|
342
345
|
collapseAll,
|
|
343
346
|
getFetchParams,
|
|
344
347
|
getFullFetchParams,
|
|
345
|
-
setData
|
|
348
|
+
setData,
|
|
349
|
+
getData
|
|
346
350
|
}, () => tableQueryRef.value);
|
|
347
351
|
watch(() => props.getExpose, () => {
|
|
348
352
|
props.getExpose?.(expose);
|