@everymatrix/player-account-controller 1.0.0 → 1.0.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/index.html
CHANGED
|
@@ -43,6 +43,7 @@
|
|
|
43
43
|
separatelimits="true"
|
|
44
44
|
userroles="everyone,loggedIn,"
|
|
45
45
|
hasdefaultamount="true"
|
|
46
|
+
simplepasswordvalidation="false"
|
|
46
47
|
></player-account-controller>
|
|
47
48
|
<!--<player-account-controller cmsendpoint="https://wp-one-widgets.everymatrix.com/wp-json/wpone-rest/v1"
|
|
48
49
|
accountpath="/menu-locations/profile-menu"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@everymatrix/player-account-controller",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "dist/player-account-controller.js",
|
|
5
5
|
"svelte": "src/index.ts",
|
|
6
6
|
"scripts": {
|
|
@@ -36,5 +36,5 @@
|
|
|
36
36
|
"publishConfig": {
|
|
37
37
|
"access": "public"
|
|
38
38
|
},
|
|
39
|
-
"gitHead": "
|
|
39
|
+
"gitHead": "a90b005fe3a45c7d5ba83769886d60c006b3968f"
|
|
40
40
|
}
|
|
@@ -40,6 +40,7 @@
|
|
|
40
40
|
export let separatelimits:string = 'true';
|
|
41
41
|
export let hasdefaultamount:string = 'false';
|
|
42
42
|
export let userroles:string = '';
|
|
43
|
+
export let simplepasswordvalidation:string = 'false';
|
|
43
44
|
|
|
44
45
|
setupI18n({ withLocale: 'en', translations: {}});
|
|
45
46
|
|
|
@@ -774,7 +775,7 @@
|
|
|
774
775
|
{#if switchContent && pagePath === widgetPath[0]}
|
|
775
776
|
<player-profile-info {endpoint} {lang} {countrycode}></player-profile-info>
|
|
776
777
|
{:else if switchContent && pagePath === widgetPath[1]}
|
|
777
|
-
<player-change-password {lang}></player-change-password>
|
|
778
|
+
<player-change-password {simplepasswordvalidation}{lang}></player-change-password>
|
|
778
779
|
{:else if switchContent && pagePath === widgetPath[2]}
|
|
779
780
|
<player-reality-check realitycheck={realityCheckData} {endpoint} {playerid} {session} {lang}></player-reality-check>
|
|
780
781
|
{:else if switchContent && pagePath === widgetPath[3]}
|
|
@@ -811,7 +812,7 @@
|
|
|
811
812
|
{#if switchContent && pagePath === widgetPath[0]}
|
|
812
813
|
<player-profile-info {endpoint} {lang} {countrycode}></player-profile-info>
|
|
813
814
|
{:else if switchContent && pagePath === widgetPath[1]}
|
|
814
|
-
<player-change-password {lang}></player-change-password>
|
|
815
|
+
<player-change-password {simplepasswordvalidation}{lang}></player-change-password>
|
|
815
816
|
{:else if switchContent && pagePath === widgetPath[2]}
|
|
816
817
|
<player-reality-check realitycheck={realityCheckData} {endpoint} {playerid} {session} {lang}></player-reality-check>
|
|
817
818
|
{:else if switchContent && pagePath === widgetPath[3]}
|