@woosmap/ui 4.209.0 → 4.210.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@woosmap/ui",
3
- "version": "4.209.0",
3
+ "version": "4.210.0",
4
4
  "repository": {
5
5
  "type": "git",
6
6
  "url": "git+https://github.com/WebGeoServices/ui.git"
@@ -420,19 +420,21 @@ export default class AutocompleteAddressDemo extends Component {
420
420
  disabled={!selectedLocality}
421
421
  >
422
422
  <div className="showcase-result-wrapper nopad">
423
- <div className="showcase-result-request">
424
- <h4>{tr('Request')}</h4>
425
- <CodeSnippet language="bash" codeString={this.renderCurlCode()} />
426
- </div>
427
- {!error && selectedLocality && (
428
- <div className="showcase-result-response">
429
- <h4>{tr(' Response')}</h4>
430
- <CodeSnippet
431
- language="json"
432
- codeString={JSON.stringify(selectedLocality, null, 2)}
433
- />
423
+ <div className="showcase-result-bg">
424
+ <div className="showcase-result-request">
425
+ <h4>{tr('Request')}</h4>
426
+ <CodeSnippet language="bash" codeString={this.renderCurlCode()} />
434
427
  </div>
435
- )}
428
+ {!error && selectedLocality && (
429
+ <div className="showcase-result-response">
430
+ <h4>{tr(' Response')}</h4>
431
+ <CodeSnippet
432
+ language="json"
433
+ codeString={JSON.stringify(selectedLocality, null, 2)}
434
+ />
435
+ </div>
436
+ )}
437
+ </div>
436
438
  </div>
437
439
  </div>
438
440
  ) : null}