bt-core-app 1.4.516 → 1.4.517
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/bt-core-app.js +2 -2
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -12173,9 +12173,9 @@ function Gi(e, t, n) {
|
|
|
12173
12173
|
storeKey: u
|
|
12174
12174
|
});
|
|
12175
12175
|
}
|
|
12176
|
-
function Pn() {
|
|
12176
|
+
function Pn(he) {
|
|
12177
12177
|
O(() => {
|
|
12178
|
-
a.exportToCSV(ue.value, L.value);
|
|
12178
|
+
a.exportToCSV(ue.value, he ? L.value : I.value);
|
|
12179
12179
|
}, { loadingMsg: "Exporting to CSV" });
|
|
12180
12180
|
}
|
|
12181
12181
|
function Rt() {
|
package/dist/index.d.ts
CHANGED
|
@@ -1819,7 +1819,7 @@ export declare function useList<T, TSave, TReturn>(props: ListProps<T, TSave, TR
|
|
|
1819
1819
|
width?: string | undefined;
|
|
1820
1820
|
}[]>;
|
|
1821
1821
|
errorMsg: ComputedRef<string | undefined>;
|
|
1822
|
-
exportToCSV: () => void;
|
|
1822
|
+
exportToCSV: (onlyFilteredItems: boolean) => void;
|
|
1823
1823
|
filteredItems: ShallowRef<TReturn[]>;
|
|
1824
1824
|
filters: ComputedRef<any[]>;
|
|
1825
1825
|
filtersChanged: ComputedRef<boolean>;
|
package/package.json
CHANGED