@everymatrix/player-account-controller 0.0.414 → 0.0.416

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
@@ -42,6 +42,7 @@
42
42
  env="stage"
43
43
  separatelimits="true"
44
44
  userroles="everyone,loggedIn,"
45
+ hasdefaultamount="true"
45
46
  ></player-account-controller>
46
47
  <!--<player-account-controller cmsendpoint="https://wp-one-widgets.everymatrix.com/wp-json/wpone-rest/v1"
47
48
  accountpath="/menu-locations/profile-menu"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@everymatrix/player-account-controller",
3
- "version": "0.0.414",
3
+ "version": "0.0.416",
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": "3d0c4cb2345019983e4773cb82991760b70452ce"
39
+ "gitHead": "ada5a114acf72cf5b34a7ca915bcb2205dc59463"
40
40
  }
@@ -38,6 +38,7 @@
38
38
  export let realm: string = ''
39
39
  export let webapiendpoint: string = 'wss://api-stage.everymatrix.com/v2'
40
40
  export let separatelimits:string = 'true';
41
+ export let hasdefaultamount:string = 'false';
41
42
  export let userroles:string = '';
42
43
 
43
44
  setupI18n({ withLocale: 'en', translations: {}});
@@ -791,9 +792,9 @@
791
792
  {:else if switchContent && pagePath === widgetPath[9]}
792
793
  <player-gaming-history {endpoint} {session} {playerid} {lang}></player-gaming-history>
793
794
  {:else if switchContent && pagePath === widgetPath[10]}
794
- <player-deposit {endpoint} {session} {playerid} {lang}></player-deposit>
795
+ <player-deposit {endpoint} {session} {playerid} {lang} {hasdefaultamount}></player-deposit>
795
796
  {:else if switchContent && pagePath === widgetPath[11]}
796
- <player-withdrawal {endpoint} {session} {playerid} {lang}></player-withdrawal>
797
+ <player-withdrawal {endpoint} {session} {playerid} {lang} {hasdefaultamount}></player-withdrawal>
797
798
  {:else if switchContent && pagePath === widgetPath[12]}
798
799
  <player-pending-withdrawals {endpoint} {session} {playerid} {lang}></player-pending-withdrawals>
799
800
  {:else if switchContent && pagePath === widgetPath[13]}
@@ -828,9 +829,9 @@
828
829
  {:else if switchContent && pagePath === widgetPath[9]}
829
830
  <player-gaming-history {endpoint} {session} {playerid} {lang}></player-gaming-history>
830
831
  {:else if switchContent && pagePath === widgetPath[10]}
831
- <player-deposit {endpoint} {session} {playerid} {lang}></player-deposit>
832
+ <player-deposit {endpoint} {session} {playerid} {lang} {hasdefaultamount}></player-deposit>
832
833
  {:else if switchContent && pagePath === widgetPath[11]}
833
- <player-withdrawal {endpoint} {session} {playerid} {lang}></player-withdrawal>
834
+ <player-withdrawal {endpoint} {session} {playerid} {lang} {hasdefaultamount}></player-withdrawal>
834
835
  {:else if switchContent && pagePath === widgetPath[12]}
835
836
  <player-pending-withdrawals {endpoint} {session} {playerid} {lang}></player-pending-withdrawals>
836
837
  {:else if switchContent && pagePath === widgetPath[13]}