@salesforcedevs/docs-components 0.69.0 → 0.69.2-miles
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 +2 -2
- package/src/modules/doc/breadcrumbs/breadcrumbs.html +40 -40
- package/src/modules/doc/breadcrumbs/breadcrumbs.ts +1 -1
- package/src/modules/doc/contentLayout/contentLayout.html +4 -2
- package/src/modules/doc/contentLayout/contentLayout.ts +16 -2
- package/src/modules/doc/xmlContent/xmlContent.html +1 -0
- package/src/modules/doc/xmlContent/xmlContent.ts +6 -2
- package/LICENSE +0 -12
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@salesforcedevs/docs-components",
|
|
3
|
-
"version": "0.69.
|
|
3
|
+
"version": "0.69.2-miles",
|
|
4
4
|
"description": "Docs Lightning web components for DSC",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"main": "index.js",
|
|
@@ -24,5 +24,5 @@
|
|
|
24
24
|
"@types/lodash.orderby": "^4.6.7",
|
|
25
25
|
"@types/lodash.uniqby": "^4.7.7"
|
|
26
26
|
},
|
|
27
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "4629fdd9ca18a13480044ad43515b91945d16aad"
|
|
28
28
|
}
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<nav role="navigation" aria-label={ariaLabel}>
|
|
3
|
-
<template if:
|
|
4
|
-
<template if:
|
|
3
|
+
<template if:true={displayCrumbs}>
|
|
4
|
+
<template if:false={renderSmallVariant}>
|
|
5
5
|
<doc-breadcrumb-item
|
|
6
6
|
analytics-event={analyticsEventName}
|
|
7
7
|
analytics-base-payload={analyticsBasePayload}
|
|
@@ -9,50 +9,50 @@
|
|
|
9
9
|
label={firstCrumb.label}
|
|
10
10
|
></doc-breadcrumb-item>
|
|
11
11
|
<span class="breadcrumb-item_slash">/</span>
|
|
12
|
+
<template if:true={renderDropdown}>
|
|
13
|
+
<dx-dropdown
|
|
14
|
+
if:true={renderDropdown}
|
|
15
|
+
analytics-event={analyticsEventName}
|
|
16
|
+
analytics-base-payload={analyticsBasePayload}
|
|
17
|
+
options={dropdownOptions}
|
|
18
|
+
open-on-hover
|
|
19
|
+
placement="bottom"
|
|
20
|
+
suppress-gtm-nav-headings
|
|
21
|
+
variant="indented"
|
|
22
|
+
width="fit-content"
|
|
23
|
+
>
|
|
24
|
+
<dx-button
|
|
25
|
+
aria-label="Open Breadcrumbs Dropdown"
|
|
26
|
+
icon-size="large"
|
|
27
|
+
icon-symbol="threedots"
|
|
28
|
+
variant="tertiary"
|
|
29
|
+
></dx-button>
|
|
30
|
+
</dx-dropdown>
|
|
31
|
+
<span class="breadcrumb-item_slash">/</span>
|
|
32
|
+
</template>
|
|
33
|
+
<template for:each={breadcrumbItems} for:item="breadcrumb">
|
|
34
|
+
<doc-breadcrumb-item
|
|
35
|
+
analytics-event={analyticsEventName}
|
|
36
|
+
analytics-base-payload={analyticsBasePayload}
|
|
37
|
+
href={breadcrumb.href}
|
|
38
|
+
key={breadcrumb.id}
|
|
39
|
+
label={breadcrumb.label}
|
|
40
|
+
></doc-breadcrumb-item>
|
|
41
|
+
<span class="breadcrumb-item_slash" key={breadcrumb.label}>
|
|
42
|
+
/
|
|
43
|
+
</span>
|
|
44
|
+
</template>
|
|
45
|
+
<doc-breadcrumb-item label={lastCrumb.label}></doc-breadcrumb-item>
|
|
12
46
|
</template>
|
|
13
|
-
<template if:true={
|
|
14
|
-
<dx-dropdown
|
|
15
|
-
if:true={renderDropdown}
|
|
16
|
-
analytics-event={analyticsEventName}
|
|
17
|
-
analytics-base-payload={analyticsBasePayload}
|
|
18
|
-
options={dropdownOptions}
|
|
19
|
-
open-on-hover
|
|
20
|
-
placement="bottom"
|
|
21
|
-
suppress-gtm-nav-headings
|
|
22
|
-
variant="indented"
|
|
23
|
-
width="fit-content"
|
|
24
|
-
>
|
|
25
|
-
<dx-button
|
|
26
|
-
aria-label="Open Breadcrumbs Dropdown"
|
|
27
|
-
icon-size="large"
|
|
28
|
-
icon-symbol="threedots"
|
|
29
|
-
variant="tertiary"
|
|
30
|
-
></dx-button>
|
|
31
|
-
</dx-dropdown>
|
|
32
|
-
<span class="breadcrumb-item_slash">/</span>
|
|
33
|
-
</template>
|
|
34
|
-
<template for:each={breadcrumbItems} for:item="breadcrumb">
|
|
47
|
+
<template if:true={renderSmallVariant}>
|
|
35
48
|
<doc-breadcrumb-item
|
|
36
49
|
analytics-event={analyticsEventName}
|
|
37
50
|
analytics-base-payload={analyticsBasePayload}
|
|
38
|
-
href={
|
|
39
|
-
|
|
40
|
-
|
|
51
|
+
href={lastLinkCrump.href}
|
|
52
|
+
label={lastLinkCrump.label}
|
|
53
|
+
variant="back-arrow"
|
|
41
54
|
></doc-breadcrumb-item>
|
|
42
|
-
<span class="breadcrumb-item_slash" key={breadcrumb.label}>
|
|
43
|
-
/
|
|
44
|
-
</span>
|
|
45
55
|
</template>
|
|
46
|
-
<doc-breadcrumb-item label={lastCrumb.label}></doc-breadcrumb-item>
|
|
47
|
-
</template>
|
|
48
|
-
<template if:true={renderSmallVariant}>
|
|
49
|
-
<doc-breadcrumb-item
|
|
50
|
-
analytics-event={analyticsEventName}
|
|
51
|
-
analytics-base-payload={analyticsBasePayload}
|
|
52
|
-
href={lastLinkCrump.href}
|
|
53
|
-
label={lastLinkCrump.label}
|
|
54
|
-
variant="back-arrow"
|
|
55
|
-
></doc-breadcrumb-item>
|
|
56
56
|
</template>
|
|
57
57
|
</nav>
|
|
58
58
|
</template>
|
|
@@ -29,10 +29,12 @@
|
|
|
29
29
|
<div class="content-body-container">
|
|
30
30
|
<div class="content-body">
|
|
31
31
|
<doc-breadcrumbs
|
|
32
|
-
if:true={
|
|
32
|
+
if:true={showBreadcrumbs}
|
|
33
33
|
breadcrumbs={breadcrumbs}
|
|
34
34
|
></doc-breadcrumbs>
|
|
35
|
-
<
|
|
35
|
+
<div style={docContentStyle}>
|
|
36
|
+
<slot onslotchange={onSlotChange}></slot>
|
|
37
|
+
</div>
|
|
36
38
|
</div>
|
|
37
39
|
<div class="right-nav-bar is-sticky">
|
|
38
40
|
<dx-toc
|
|
@@ -38,7 +38,7 @@ export default class ContentLayout extends LightningElement {
|
|
|
38
38
|
return this._breadcrumbs;
|
|
39
39
|
}
|
|
40
40
|
|
|
41
|
-
set breadcrumbs(value) {
|
|
41
|
+
set breadcrumbs(value): [] {
|
|
42
42
|
if (value) {
|
|
43
43
|
this._breadcrumbs = toJson(value);
|
|
44
44
|
}
|
|
@@ -78,6 +78,8 @@ export default class ContentLayout extends LightningElement {
|
|
|
78
78
|
private anchoredElements: AnchorMap = {};
|
|
79
79
|
private lastScrollPosition: number;
|
|
80
80
|
private observer?: IntersectionObserver;
|
|
81
|
+
private hasRendered: boolean = false;
|
|
82
|
+
|
|
81
83
|
private searchSyncer = new SearchSyncer({
|
|
82
84
|
callbacks: {
|
|
83
85
|
onUrlChange: (nextSearchString: string): void => {
|
|
@@ -109,6 +111,14 @@ export default class ContentLayout extends LightningElement {
|
|
|
109
111
|
return window.location.pathname;
|
|
110
112
|
}
|
|
111
113
|
|
|
114
|
+
get showBreadcrumbs(): boolean {
|
|
115
|
+
return this.breadcrumbs != null && (this.breadcrumbs as any[]).length > 1;
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
get docContentStyle(): string {
|
|
119
|
+
return this.showBreadcrumbs ? "" : "margin-top: 48px";
|
|
120
|
+
}
|
|
121
|
+
|
|
112
122
|
connectedCallback(): void {
|
|
113
123
|
const hasParentHighlightListener = closest(
|
|
114
124
|
"doc-xml-content",
|
|
@@ -125,6 +135,7 @@ export default class ContentLayout extends LightningElement {
|
|
|
125
135
|
this._scrollInterval = window.setInterval(() => {
|
|
126
136
|
this.saveScroll();
|
|
127
137
|
}, 1000);
|
|
138
|
+
|
|
128
139
|
|
|
129
140
|
}
|
|
130
141
|
|
|
@@ -138,7 +149,10 @@ export default class ContentLayout extends LightningElement {
|
|
|
138
149
|
this.attachInteractionObserver,
|
|
139
150
|
OBSERVER_ATTACH_WAIT_TIME
|
|
140
151
|
);
|
|
141
|
-
this.
|
|
152
|
+
if(!this.hasRendered) {
|
|
153
|
+
this.hasRendered = true;
|
|
154
|
+
this.restoreScroll();
|
|
155
|
+
}
|
|
142
156
|
}
|
|
143
157
|
|
|
144
158
|
disconnectedCallback(): void {
|
|
@@ -577,7 +577,11 @@ export default class DocXmlContent extends LightningElementWithState<{
|
|
|
577
577
|
}
|
|
578
578
|
|
|
579
579
|
get showBreadcrumbs(): boolean {
|
|
580
|
-
return this.breadcrumbs && this.breadcrumbs.length >
|
|
580
|
+
return this.breadcrumbs && this.breadcrumbs.length > 1;
|
|
581
|
+
}
|
|
582
|
+
|
|
583
|
+
get docContentStyle(): string {
|
|
584
|
+
return this.showBreadcrumbs ? "" : "margin-top: 48px";
|
|
581
585
|
}
|
|
582
586
|
|
|
583
587
|
private buildBreadcrumbs(): void {
|
|
@@ -588,7 +592,7 @@ export default class DocXmlContent extends LightningElementWithState<{
|
|
|
588
592
|
|
|
589
593
|
const currentNode = this.tocMap[contentDocumentId];
|
|
590
594
|
|
|
591
|
-
if(currentNode
|
|
595
|
+
if(currentNode?.parent) {
|
|
592
596
|
this.breadcrumbs = this.nodeToBreadcrumb(currentNode);
|
|
593
597
|
} else {
|
|
594
598
|
this.breadcrumbs = [];
|
package/LICENSE
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
Copyright (c) 2020, Salesforce.com, Inc.
|
|
2
|
-
All rights reserved.
|
|
3
|
-
|
|
4
|
-
Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
|
|
5
|
-
|
|
6
|
-
* Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
|
|
7
|
-
|
|
8
|
-
* Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
|
|
9
|
-
|
|
10
|
-
* Neither the name of Salesforce.com nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
|
|
11
|
-
|
|
12
|
-
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|