bt-core-app 1.4.0 → 1.4.1
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 +8553 -8559
- package/dist/composables/helpers.d.ts +1 -3
- package/dist/composables/list.d.ts +1 -1
- package/dist/main.d.ts +0 -0
- package/dist/style.css +1 -5
- package/package.json +2 -2
- package/src/components/BT-Btn.vue +1 -1
- package/src/components/BT-Span.vue +1 -1
- package/src/components/Dialog-Select.vue +1 -1
- package/src/composables/csv.ts +1 -1
- package/src/composables/helpers.ts +4 -51
- package/src/composables/list.ts +2 -2
- package/src/index.ts +0 -2
- package/src/main.ts +6 -0
- package/vite.config.ts +8 -8
|
@@ -1,5 +1,3 @@
|
|
|
1
|
-
import { MaybeRefOrGetter } from 'vue';
|
|
2
|
-
|
|
3
1
|
export declare function appendUrl(originalVal?: string, additionalVal?: string): string;
|
|
4
2
|
export declare function extensionExists(elementId?: string): boolean;
|
|
5
3
|
interface GeoCoordinate {
|
|
@@ -79,7 +77,7 @@ export declare function getMinDateString(): string;
|
|
|
79
77
|
* @param dPlaces
|
|
80
78
|
* @returns
|
|
81
79
|
*/
|
|
82
|
-
export declare function roundTo(
|
|
80
|
+
export declare function roundTo(val: number, dPlaces: number): number;
|
|
83
81
|
export declare function toggleCSV(value?: string, tag?: string): string | null;
|
|
84
82
|
export declare function csvContains(value?: string, tag?: string): boolean;
|
|
85
83
|
/**copies object and all descendant properties */
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { StorageMode, StoreMode } from '../
|
|
1
|
+
import { StorageMode, StoreMode } from '../composables/stores';
|
|
2
2
|
import { MaybeRefOrGetter } from 'vue';
|
|
3
3
|
import { BladeVariant } from '../types';
|
|
4
4
|
import { OnCanDoAsync, OnDoAsync, OnDoSuccessAsync, OnGetAsync, OnGetSuccessAsync } from './actions';
|
package/dist/main.d.ts
ADDED
|
File without changes
|