bt-core-app 1.4.71 → 1.4.73
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 -3
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -4109,7 +4109,7 @@ function Pa(e) {
|
|
|
4109
4109
|
return {
|
|
4110
4110
|
install(t, l) {
|
|
4111
4111
|
var _;
|
|
4112
|
-
console.log(t), e.vuetifyInstance ?? (e.vuetifyInstance = l.vuetifyInstance), Pn(e);
|
|
4112
|
+
console.log(t), e.vuetifyInstance ?? (e.vuetifyInstance = l.vuetifyInstance), yn(e.urls), Pn(e);
|
|
4113
4113
|
const S = Ln(), s = $n(e);
|
|
4114
4114
|
kn(e), (_ = e.auth).demo ?? (_.demo = S), e.auth.getAuthItem = s.findItem;
|
|
4115
4115
|
const g = Dn(e.auth);
|
|
@@ -4127,7 +4127,7 @@ function Pa(e) {
|
|
|
4127
4127
|
api: x,
|
|
4128
4128
|
auth: g,
|
|
4129
4129
|
navigation: s
|
|
4130
|
-
})
|
|
4130
|
+
});
|
|
4131
4131
|
}
|
|
4132
4132
|
};
|
|
4133
4133
|
}
|
package/dist/index.d.ts
CHANGED
|
@@ -378,7 +378,7 @@ declare interface CreateStoreOptions {
|
|
|
378
378
|
export declare function createUrl(options: CreateUrlOptions): CreateUrlOptions;
|
|
379
379
|
|
|
380
380
|
declare interface CreateUrlOptions {
|
|
381
|
-
getEnv: () =>
|
|
381
|
+
getEnv: () => string;
|
|
382
382
|
production: UrlSet;
|
|
383
383
|
staging: UrlSet;
|
|
384
384
|
development: UrlSet;
|
|
@@ -445,8 +445,6 @@ declare interface DoActionOptions {
|
|
|
445
445
|
throwError?: boolean;
|
|
446
446
|
}
|
|
447
447
|
|
|
448
|
-
declare type Environment = 'production' | 'staging' | 'development';
|
|
449
|
-
|
|
450
448
|
export declare interface ExportToCSVOptions {
|
|
451
449
|
items: any[];
|
|
452
450
|
headers?: TableColumn[];
|
package/package.json
CHANGED