solid-ui 3.0.3 → 3.0.4-e7336b6

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