@schukai/monster 3.114.1 → 3.114.2
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/CHANGELOG.md +8 -0
- package/package.json +1 -1
- package/source/components/form/login.mjs +9 -5
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
@@ -1 +1 @@
|
|
1
|
-
{"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@popperjs/core":"^2.11.8","buffer":"^6.0.3"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.114.
|
1
|
+
{"author":"schukai GmbH","dependencies":{"@floating-ui/dom":"^1.6.13","@popperjs/core":"^2.11.8","buffer":"^6.0.3"},"description":"Monster is a simple library for creating fast, robust and lightweight websites.","homepage":"https://monsterjs.org/","keywords":["framework","web","dom","css","sass","mobile-first","app","front-end","templates","schukai","core","shopcloud","alvine","monster","buildmap","stack","observer","observable","uuid","node","nodelist","css-in-js","logger","log","theme"],"license":"AGPL 3.0","main":"source/monster.mjs","module":"source/monster.mjs","name":"@schukai/monster","repository":{"type":"git","url":"https://gitlab.schukai.com/oss/libraries/javascript/monster.git"},"type":"module","version":"3.114.2"}
|
@@ -229,7 +229,7 @@ class Login extends CustomElement {
|
|
229
229
|
disabled: false,
|
230
230
|
features: {
|
231
231
|
forgotPassword: true,
|
232
|
-
redirectToFirstSuccessUrl:
|
232
|
+
redirectToFirstSuccessUrl: false,
|
233
233
|
},
|
234
234
|
actions: {},
|
235
235
|
|
@@ -261,7 +261,8 @@ class Login extends CustomElement {
|
|
261
261
|
method: "POST",
|
262
262
|
mode: "same-origin",
|
263
263
|
headers: {
|
264
|
-
|
264
|
+
"Accept": "application/json",
|
265
|
+
"Content-Type": "application/json; charset=utf-8",
|
265
266
|
},
|
266
267
|
credentials: "same-origin",
|
267
268
|
},
|
@@ -270,7 +271,8 @@ class Login extends CustomElement {
|
|
270
271
|
method: "POST",
|
271
272
|
mode: "same-origin",
|
272
273
|
headers: {
|
273
|
-
|
274
|
+
"Accept": "application/json",
|
275
|
+
"Content-Type": "application/json; charset=utf-8",
|
274
276
|
},
|
275
277
|
credentials: "same-origin",
|
276
278
|
},
|
@@ -279,7 +281,8 @@ class Login extends CustomElement {
|
|
279
281
|
method: "POST",
|
280
282
|
mode: "same-origin",
|
281
283
|
headers: {
|
282
|
-
|
284
|
+
"Accept": "application/json",
|
285
|
+
"Content-Type": "application/json; charset=utf-8",
|
283
286
|
},
|
284
287
|
credentials: "same-origin",
|
285
288
|
},
|
@@ -288,7 +291,8 @@ class Login extends CustomElement {
|
|
288
291
|
method: "POST",
|
289
292
|
mode: "same-origin",
|
290
293
|
headers: {
|
291
|
-
|
294
|
+
"Accept": "application/json",
|
295
|
+
"Content-Type": "application/json; charset=utf-8",
|
292
296
|
},
|
293
297
|
credentials: "same-origin",
|
294
298
|
},
|