solid-ui 3.0.3 → 3.0.4-192295e

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.
@@ -10983,7 +10983,7 @@ function attachmentList(dom, subject, div) {
10983
10983
  var attachmentRight = attachmentOne.appendChild(dom.createElement('td'));
10984
10984
  var attachmentTable = attachmentRight.appendChild(dom.createElement('table'));
10985
10985
  attachmentTable.appendChild(dom.createElement('tr')) // attachmentTableTop
10986
- ;
10986
+ ;
10987
10987
  attachmentOuter.refresh = refresh; // Participate in downstream changes
10988
10988
  // ;(attachmentTable as any).refresh = refresh <- outer should be best?
10989
10989
 
@@ -18408,7 +18408,7 @@ function basicField(dom, container, already, subject, form, doc, callbackFunctio
18408
18408
  }
18409
18409
  if (!kb.updater.editable(doc.uri)) {
18410
18410
  field.readOnly = true // was: disabled. readOnly is better
18411
- ;
18411
+ ;
18412
18412
  field.style = _style__WEBPACK_IMPORTED_MODULE_3__/* .style */ .i.textInputStyleUneditable + paramStyle;
18413
18413
  if (suppressEmptyUneditable && field.value === '') {
18414
18414
  box.style.display = 'none'; // clutter
@@ -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) {
@@ -20212,7 +20221,7 @@ function cameraCaptureControl(dom, store, getImageDoc, doneCallback) {
20212
20221
  // if (!confirm('Save picture to ' + destination + ' ?')) return
20213
20222
  _debug__WEBPACK_IMPORTED_MODULE_2__/* .log */ .Rm('Putting ' + blob.size + ' bytes of ' + contentType + ' to ' + destination)
20214
20223
  // @@ TODO Remove casting
20215
- ;
20224
+ ;
20216
20225
  store.fetcher.webOperation('PUT', destination.uri, {
20217
20226
  data: blob,
20218
20227
  contentType: contentType
@@ -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
  */