@iankibetsh/shframework 1.3.4 → 1.3.5
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/library.js +1 -1
- package/dist/library.mjs +1 -1
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -5406,7 +5406,7 @@ const ShFrontend = {
|
|
|
5406
5406
|
app.provide('redirectLogin', redirectLogin);
|
|
5407
5407
|
app.provide('redirectRegister', redirectRegister);
|
|
5408
5408
|
app.provide('logoutApiEndpoint', logoutApiEndpoint);
|
|
5409
|
-
app.provide('formComponents', options.shFormComponents
|
|
5409
|
+
app.provide('formComponents', options.shFormComponents ?? {});
|
|
5410
5410
|
app.provide('loginUrl', loginUrl);
|
|
5411
5411
|
app.provide('shFormElementClasses',defaultFormElementClasses);
|
|
5412
5412
|
window.swalPosition = swalPosition;
|
package/dist/library.mjs
CHANGED
|
@@ -5393,7 +5393,7 @@ const ShFrontend = {
|
|
|
5393
5393
|
app.provide('redirectLogin', redirectLogin);
|
|
5394
5394
|
app.provide('redirectRegister', redirectRegister);
|
|
5395
5395
|
app.provide('logoutApiEndpoint', logoutApiEndpoint);
|
|
5396
|
-
app.provide('formComponents', options.shFormComponents
|
|
5396
|
+
app.provide('formComponents', options.shFormComponents ?? {});
|
|
5397
5397
|
app.provide('loginUrl', loginUrl);
|
|
5398
5398
|
app.provide('shFormElementClasses',defaultFormElementClasses);
|
|
5399
5399
|
window.swalPosition = swalPosition;
|