@salesforcedevs/docs-components 0.0.24-chat → 0.0.25-chat

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": "@salesforcedevs/docs-components",
3
- "version": "0.0.24-chat",
3
+ "version": "0.0.25-chat",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -42,29 +42,31 @@
42
42
  <slot name="doc-phase"></slot>
43
43
  <slot name="version-banner"></slot>
44
44
  <div class="content-body-container">
45
- <div class="content-body">
46
- <doc-breadcrumbs
47
- lwc:if={showBreadcrumbs}
48
- breadcrumbs={breadcrumbs}
49
- ></doc-breadcrumbs>
50
- <slot onslotchange={onSlotChange}></slot>
51
- <doc-sprig-survey
52
- lwc:if={shouldDisplayFeedback}
53
- ></doc-sprig-survey>
45
+ <div class="body-margin">
46
+ <div class="content-body">
47
+ <doc-breadcrumbs
48
+ lwc:if={showBreadcrumbs}
49
+ breadcrumbs={breadcrumbs}
50
+ ></doc-breadcrumbs>
51
+ <slot onslotchange={onSlotChange}></slot>
52
+ <doc-sprig-survey
53
+ lwc:if={shouldDisplayFeedback}
54
+ ></doc-sprig-survey>
55
+ </div>
56
+ <div lwc:if={showToc} class="right-nav-bar is-sticky">
57
+ <dx-toc
58
+ header={tocTitle}
59
+ options={tocOptions}
60
+ value={tocValue}
61
+ ></dx-toc>
62
+ </div>
54
63
  </div>
55
- <div lwc:if={showToc} class="right-nav-bar is-sticky">
56
- <dx-toc
57
- header={tocTitle}
58
- options={tocOptions}
59
- value={tocValue}
60
- ></dx-toc>
61
- </div>
62
- </div>
63
- <doc-chat
64
+ <doc-chat
64
65
  title="Smart Agent"
65
66
  placeholder="Type your message..."
66
67
  assistant-name="Assistant"
67
- ></doc-chat>
68
+ ></doc-chat>
69
+ </div>
68
70
  <div lwc:if={showFooter} class="footer-container">
69
71
  <dx-footer variant="no-signup"></dx-footer>
70
72
  </div>
@@ -69,6 +69,9 @@ dx-toc {
69
69
  min-height: 62vh;
70
70
  margin: auto;
71
71
  padding: 0 var(--dx-g-global-header-padding-horizontal);
72
+ }
73
+
74
+ .body-margin {
72
75
  margin-bottom: calc(2 * (var(--dx-g-spacing-5xl) + 4px));
73
76
  }
74
77