bt-core-app 1.4.546 → 1.4.548
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 -0
- package/package.json +1 -1
package/dist/bt-core-app.js
CHANGED
|
@@ -40770,7 +40770,7 @@ function qV(e) {
|
|
|
40770
40770
|
dates: c,
|
|
40771
40771
|
demo: o,
|
|
40772
40772
|
filters: e.filters
|
|
40773
|
-
}), H2(), vx({
|
|
40773
|
+
}), e.usePWA ?? (e.usePWA = !0), e.usePWA && H2(), vx({
|
|
40774
40774
|
api: s,
|
|
40775
40775
|
auth: i,
|
|
40776
40776
|
dates: c,
|
|
@@ -41061,7 +41061,7 @@ const j5 = { class: "d-flex align-center" }, GV = /* @__PURE__ */ Xe({
|
|
|
41061
41061
|
return pl(() => {
|
|
41062
41062
|
v(), m();
|
|
41063
41063
|
}), (p, T) => (B(), te(ni, {
|
|
41064
|
-
"max-width": n.value.maxWidth,
|
|
41064
|
+
"max-width": l.value == "number" ? n.value.maxWidth : a.value.maxWidth,
|
|
41065
41065
|
modelValue: t.value,
|
|
41066
41066
|
"onUpdate:modelValue": T[5] || (T[5] = (b) => t.value = b)
|
|
41067
41067
|
}, {
|
package/dist/index.d.ts
CHANGED
|
@@ -396,6 +396,7 @@ export declare interface CreateCoreOptions {
|
|
|
396
396
|
/**suboptions */
|
|
397
397
|
subscriptionOptions?: AuthSubscription[];
|
|
398
398
|
urls: CreateUrlOptions;
|
|
399
|
+
usePWA?: boolean;
|
|
399
400
|
}
|
|
400
401
|
|
|
401
402
|
export declare function createCosmetics<T extends BaseCosmeticTheme>(options: UseCosmeticsOptions<T>): BTCosmetics;
|
package/package.json
CHANGED