@salesforcedevs/docs-components 1.27.1-banner1 → 1.27.5-redoc

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/lwc.config.json CHANGED
@@ -10,7 +10,6 @@
10
10
  "doc/componentPlayground",
11
11
  "doc/content",
12
12
  "doc/contentCallout",
13
- "doc/banner",
14
13
  "doc/doDont",
15
14
  "doc/contentLayout",
16
15
  "doc/contentMedia",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/docs-components",
3
- "version": "1.27.1-banner1",
3
+ "version": "1.27.5-redoc",
4
4
  "description": "Docs Lightning web components for DSC",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
@@ -140,7 +140,7 @@ export default class ContentLayout extends LightningElement {
140
140
  }
141
141
 
142
142
  get showReadingTime(): boolean {
143
- return this.readingTime != null && this.readingTime > 0;
143
+ return this.readingTime != null && this.readingTime > 1;
144
144
  }
145
145
 
146
146
  connectedCallback(): void {
@@ -239,8 +239,6 @@ export default class RedocReference extends LightningElement {
239
239
  window.Redoc.init(
240
240
  specUrl,
241
241
  {
242
- // Auto-expand HTTP 200 and 400 response sections
243
- expandResponses: "200,400",
244
242
  // Dynamic scroll offset to account for headers
245
243
  scrollYOffset: this.calculateScrollYOffset
246
244
  },
@@ -70,6 +70,7 @@ dx-toc {
70
70
  .content-body-doc-phase-container {
71
71
  flex: 1;
72
72
  border-left: 1px solid var(--dx-g-gray-90);
73
+ min-width: 0;
73
74
  }
74
75
 
75
76
  .doc-phase-wrapper,
@@ -105,6 +106,7 @@ dx-toc {
105
106
  max-width: 1000px;
106
107
  flex: 1;
107
108
  width: 0;
109
+ word-break: break-word;
108
110
  }
109
111
 
110
112
  .is-sticky {
@@ -1,17 +0,0 @@
1
- .container {
2
- padding: 16px;
3
- border: 1px solid #ddd;
4
- border-radius: 8px;
5
- background: white;
6
- }
7
-
8
- .title {
9
- margin: 0 0 8px;
10
- font-size: 18px;
11
- font-weight: bold;
12
- }
13
-
14
- .description {
15
- margin: 0;
16
- color: #666;
17
- }
@@ -1,6 +0,0 @@
1
- <template>
2
- <div class="container">
3
- <h3 class="title">{title}</h3>
4
- <p class="description">{description}</p>
5
- </div>
6
- </template>
@@ -1,6 +0,0 @@
1
- import { LightningElement, api } from "lwc";
2
-
3
- export default class Banner extends LightningElement {
4
- @api title: string = "";
5
- @api description: string = "";
6
- }