@saasquatch/mint-components 1.5.0-101 → 1.5.0-102

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.
@@ -742,7 +742,7 @@ const Leaderboard = class {
742
742
  const viewprops = index_module.k()
743
743
  ? useLeaderboardDemo(demoProps)
744
744
  : useLeaderboard(props);
745
- return (index.h(ShadowViewAddon.LeaderboardView, Object.assign({}, viewprops), index.h("slot", null)));
745
+ return index.h(ShadowViewAddon.LeaderboardView, Object.assign({}, viewprops));
746
746
  }
747
747
  };
748
748
  function LoadingSlot() {
@@ -43,8 +43,7 @@ export class Leaderboard {
43
43
  const viewprops = isDemo()
44
44
  ? useLeaderboardDemo(demoProps)
45
45
  : useLeaderboard(props);
46
- return (h(LeaderboardView, Object.assign({}, viewprops),
47
- h("slot", null)));
46
+ return h(LeaderboardView, Object.assign({}, viewprops));
48
47
  }
49
48
  static get is() { return "sqm-leaderboard"; }
50
49
  static get properties() { return {
@@ -738,7 +738,7 @@ const Leaderboard = class {
738
738
  const viewprops = k()
739
739
  ? useLeaderboardDemo(demoProps)
740
740
  : useLeaderboard(props);
741
- return (h$1(LeaderboardView, Object.assign({}, viewprops), h$1("slot", null)));
741
+ return h$1(LeaderboardView, Object.assign({}, viewprops));
742
742
  }
743
743
  };
744
744
  function LoadingSlot() {