@iankibetsh/shframework 4.7.2 → 4.7.3
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 +2 -0
- package/dist/library.mjs +2 -0
- package/package.json +1 -1
package/dist/library.js
CHANGED
|
@@ -7270,6 +7270,7 @@ const ShFrontend = {
|
|
|
7270
7270
|
const forgotEndpoint = options.forgotEndpoint ?? 'auth/forgot-password';
|
|
7271
7271
|
const registerTitle = options.registerTitle ?? 'Create a new account';
|
|
7272
7272
|
const registerSubTitle = options.registerSubTitle ?? `It's quick and easy`;
|
|
7273
|
+
const loginTitle = options.loginTitle ?? `Login to your account`;
|
|
7273
7274
|
const logoutApiEndpoint = options.logoutApiEndpoint ?? `auth/logout`;
|
|
7274
7275
|
options.formTextInput ?? script$t;
|
|
7275
7276
|
const loginUrl = options.loginUrl ?? `/login`;
|
|
@@ -7284,6 +7285,7 @@ const ShFrontend = {
|
|
|
7284
7285
|
app.provide('registerTitle', registerTitle);
|
|
7285
7286
|
app.provide('registerSubTitle', registerSubTitle);
|
|
7286
7287
|
app.provide('redirectLogin', redirectLogin);
|
|
7288
|
+
app.provide('loginTitle', loginTitle);
|
|
7287
7289
|
app.provide('redirectRegister', redirectRegister);
|
|
7288
7290
|
app.provide('logoutApiEndpoint', logoutApiEndpoint);
|
|
7289
7291
|
app.provide('formComponents', options.shFormComponents ?? {});
|
package/dist/library.mjs
CHANGED
|
@@ -7258,6 +7258,7 @@ const ShFrontend = {
|
|
|
7258
7258
|
const forgotEndpoint = options.forgotEndpoint ?? 'auth/forgot-password';
|
|
7259
7259
|
const registerTitle = options.registerTitle ?? 'Create a new account';
|
|
7260
7260
|
const registerSubTitle = options.registerSubTitle ?? `It's quick and easy`;
|
|
7261
|
+
const loginTitle = options.loginTitle ?? `Login to your account`;
|
|
7261
7262
|
const logoutApiEndpoint = options.logoutApiEndpoint ?? `auth/logout`;
|
|
7262
7263
|
options.formTextInput ?? script$t;
|
|
7263
7264
|
const loginUrl = options.loginUrl ?? `/login`;
|
|
@@ -7272,6 +7273,7 @@ const ShFrontend = {
|
|
|
7272
7273
|
app.provide('registerTitle', registerTitle);
|
|
7273
7274
|
app.provide('registerSubTitle', registerSubTitle);
|
|
7274
7275
|
app.provide('redirectLogin', redirectLogin);
|
|
7276
|
+
app.provide('loginTitle', loginTitle);
|
|
7275
7277
|
app.provide('redirectRegister', redirectRegister);
|
|
7276
7278
|
app.provide('logoutApiEndpoint', logoutApiEndpoint);
|
|
7277
7279
|
app.provide('formComponents', options.shFormComponents ?? {});
|