solid-ui 3.0.3-d2ed432 → 3.0.3-e1671a6

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.
@@ -18771,19 +18771,10 @@ function tabWidget(options) {
18771
18771
  });
18772
18772
  var tab = selectedTab1 || selectedTab0 || tabContainer.children[0];
18773
18773
  var clickMe = tab.firstChild;
18774
- if (clickMe !== null && clickMe !== void 0 && clickMe.click) {
18775
- clickMe.click();
18776
- } else if (tab instanceof HTMLElement) {
18777
- tab.click();
18778
- }
18774
+ // @ts-ignore
18775
+ if (clickMe) clickMe.click();
18779
18776
  } else if (!options.startEmpty) {
18780
- var firstTab = tabContainer.children[0];
18781
- var clickTarget = firstTab === null || firstTab === void 0 ? void 0 : firstTab.firstChild;
18782
- if (clickTarget !== null && clickTarget !== void 0 && clickTarget.click) {
18783
- clickTarget.click();
18784
- } else if (firstTab instanceof HTMLElement) {
18785
- firstTab.click(); // Open first tab
18786
- }
18777
+ tabContainer.children[0].firstChild.click(); // Open first tab
18787
18778
  }
18788
18779
  return rootElement;
18789
18780
  function addCancelButton(tabContainer) {
@@ -25186,7 +25177,7 @@ function _toConsumableArray(r) {
25186
25177
  /**
25187
25178
  * Default signup endpoints (list of identity providers)
25188
25179
  */
25189
- signupEndpoint: 'https://solidproject.org/use-solid/',
25180
+ signupEndpoint: 'https://solidproject.org/get_a_pod',
25190
25181
  /**
25191
25182
  * Default height of the Signup popup window, in pixels
25192
25183
  */