@salesforcedevs/dx-components 1.3.245-alpha3 → 1.3.245-dc-alpha3
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 +1 -0
- package/package.json +1 -1
- package/src/modules/dx/button/button.html +2 -2
- package/src/modules/dx/button/button.ts +1 -1
- package/src/modules/dx/cardBlogPost/cardBlogPost.ts +0 -5
- package/src/modules/dx/coveoRecommendations/coveoRecommendations.html +0 -1
- package/src/modules/dx/coveoRecommendations/coveoRecommendations.ts +3 -58
- package/src/modules/dx/dropdownOption/dropdownOption.css +5 -3
- package/src/modules/dx/headerNav/headerNav.css +8 -0
- package/src/modules/dx/mainContentHeader/mainContentHeader.css +74 -2
- package/src/modules/dx/mainContentHeader/mainContentHeader.html +48 -23
- package/src/modules/dx/mainContentHeader/mainContentHeader.ts +20 -5
- package/src/modules/dx/popover/popover.css +2 -2
- package/src/modules/dx/sidebar/sidebar.css +9 -5
- package/src/modules/dx/sidebar/sidebar.html +32 -16
- package/src/modules/dx/sidebar/sidebar.ts +2 -42
- package/src/modules/dx/sidebarFooterNav/sidebarFooterNav.css +49 -0
- package/src/modules/dx/sidebarFooterNav/sidebarFooterNav.html +55 -0
- package/src/modules/dx/sidebarFooterNav/sidebarFooterNav.ts +106 -0
- package/src/modules/dx/sidebarOld/sidebarOld.css +1 -0
- package/src/modules/dx/sidebarOld/sidebarOld.html +31 -14
- package/src/modules/dx/sidebarOld/sidebarOld.ts +4 -38
- package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.css +35 -4
- package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.html +16 -10
- package/src/modules/dx/tab/tab.css +48 -19
- package/src/modules/dx/treeItem/treeItem.css +2 -2
- package/src/modules/dx/treeTile/treeTile.css +39 -28
- package/src/modules/dx/treeTile/treeTile.html +6 -6
- package/src/modules/dx/treeTile/treeTile.ts +2 -1
- package/src/modules/dxBaseElements/sidebarBase/sidebarBase.ts +100 -1
- package/src/modules/dxHelpers/commonHeader/commonHeader.css +4 -2
- package/src/modules/dxHelpers/commonSidebar/commonSidebar.css +38 -16
- package/src/modules/dxHelpers/commonTreeItem/commonTreeItem.css +26 -3
- package/logs_4_17.txt +0 -100
|
@@ -23,21 +23,25 @@
|
|
|
23
23
|
--tile-height: 20px;
|
|
24
24
|
|
|
25
25
|
font-family: var(--dx-g-font-sans);
|
|
26
|
-
font-size:
|
|
26
|
+
font-size: 14px;
|
|
27
27
|
line-height: var(--tile-height);
|
|
28
|
+
font-weight: var(--dx-g-font-normal);
|
|
28
29
|
}
|
|
29
30
|
|
|
30
31
|
.tile-root {
|
|
31
|
-
font-family: var(--dx-g-font-
|
|
32
|
+
font-family: var(--dx-g-font-sans);
|
|
32
33
|
font-size: var(--dx-g-text-sm);
|
|
33
|
-
font-weight: var(--dx-g-font-
|
|
34
|
-
color: var(--dx-g-blue-vibrant-
|
|
34
|
+
font-weight: var(--dx-g-font-bold);
|
|
35
|
+
color: var(--dx-g-blue-vibrant-20);
|
|
35
36
|
display: block;
|
|
36
37
|
}
|
|
37
38
|
|
|
38
39
|
.tile-icon {
|
|
39
40
|
align-items: center;
|
|
40
41
|
height: var(--tile-height);
|
|
42
|
+
padding: calc(var(--dx-g-spacing-sm) + var(--dx-g-spacing-2xs))
|
|
43
|
+
calc(var(--dx-g-spacing-xs) + 2px)
|
|
44
|
+
calc(var(--dx-g-spacing-sm) + var(--dx-g-spacing-2xs)) 0;
|
|
41
45
|
}
|
|
42
46
|
|
|
43
47
|
.tile-label {
|
|
@@ -54,95 +58,102 @@
|
|
|
54
58
|
|
|
55
59
|
.tile-with-children .tile-expand-icon {
|
|
56
60
|
order: 1;
|
|
57
|
-
padding-right: var(--dx-g-spacing-xs);
|
|
58
61
|
}
|
|
59
62
|
|
|
60
63
|
.indentation {
|
|
61
|
-
padding-left: var(--indentation);
|
|
64
|
+
padding-left: calc(var(--indentation) + var(--dx-g-spacing-2xs));
|
|
62
65
|
}
|
|
63
66
|
|
|
64
67
|
.tile-with-children .indentation {
|
|
65
68
|
padding-left: calc(var(--indentation) - var(--base-indentation));
|
|
66
69
|
}
|
|
67
70
|
|
|
71
|
+
.tile-root-with-child .indentation {
|
|
72
|
+
padding-left: 0;
|
|
73
|
+
}
|
|
74
|
+
|
|
75
|
+
[aria-level="2"] {
|
|
76
|
+
--indentation: var(--dx-g-spacing-md);
|
|
77
|
+
}
|
|
78
|
+
|
|
68
79
|
[aria-level="3"] {
|
|
69
|
-
--indentation: var(--base-indentation);
|
|
80
|
+
--indentation: calc(2 * var(--base-indentation));
|
|
70
81
|
}
|
|
71
82
|
|
|
72
83
|
[aria-level="4"] {
|
|
73
|
-
--indentation: calc(
|
|
84
|
+
--indentation: calc(3 * var(--base-indentation));
|
|
74
85
|
}
|
|
75
86
|
|
|
76
87
|
[aria-level="5"] {
|
|
77
|
-
--indentation: calc(
|
|
88
|
+
--indentation: calc(4 * var(--base-indentation));
|
|
78
89
|
}
|
|
79
90
|
|
|
80
91
|
[aria-level="6"] {
|
|
81
|
-
--indentation: calc(
|
|
92
|
+
--indentation: calc(5 * var(--base-indentation));
|
|
82
93
|
}
|
|
83
94
|
|
|
84
95
|
[aria-level="7"] {
|
|
85
|
-
--indentation: calc(
|
|
96
|
+
--indentation: calc(6 * var(--base-indentation));
|
|
86
97
|
}
|
|
87
98
|
|
|
88
99
|
[aria-level="8"] {
|
|
89
|
-
--indentation: calc(
|
|
100
|
+
--indentation: calc(7 * var(--base-indentation));
|
|
90
101
|
}
|
|
91
102
|
|
|
92
103
|
[aria-level="9"] {
|
|
93
|
-
--indentation: calc(
|
|
104
|
+
--indentation: calc(8 * var(--base-indentation));
|
|
94
105
|
}
|
|
95
106
|
|
|
96
107
|
[aria-level="10"] {
|
|
97
|
-
--indentation: calc(
|
|
108
|
+
--indentation: calc(9 * var(--base-indentation));
|
|
98
109
|
}
|
|
99
110
|
|
|
100
111
|
[aria-level="11"] {
|
|
101
|
-
--indentation: calc(
|
|
112
|
+
--indentation: calc(10 * var(--base-indentation));
|
|
102
113
|
}
|
|
103
114
|
|
|
104
115
|
[aria-level="12"] {
|
|
105
|
-
--indentation: calc(
|
|
116
|
+
--indentation: calc(11 * var(--base-indentation));
|
|
106
117
|
}
|
|
107
118
|
|
|
108
119
|
[aria-level="13"] {
|
|
109
|
-
--indentation: calc(
|
|
120
|
+
--indentation: calc(12 * var(--base-indentation));
|
|
110
121
|
}
|
|
111
122
|
|
|
112
123
|
[aria-level="14"] {
|
|
113
|
-
--indentation: calc(
|
|
124
|
+
--indentation: calc(13 * var(--base-indentation));
|
|
114
125
|
}
|
|
115
126
|
|
|
116
127
|
[aria-level="15"] {
|
|
117
|
-
--indentation: calc(
|
|
128
|
+
--indentation: calc(14 * var(--base-indentation));
|
|
118
129
|
}
|
|
119
130
|
|
|
120
131
|
[aria-level="16"] {
|
|
121
|
-
--indentation: calc(
|
|
132
|
+
--indentation: calc(15 * var(--base-indentation));
|
|
122
133
|
}
|
|
123
134
|
|
|
124
135
|
[aria-level="17"] {
|
|
125
|
-
--indentation: calc(
|
|
136
|
+
--indentation: calc(16 * var(--base-indentation));
|
|
126
137
|
}
|
|
127
138
|
|
|
128
139
|
[aria-level="18"] {
|
|
129
|
-
--indentation: calc(
|
|
140
|
+
--indentation: calc(17 * var(--base-indentation));
|
|
130
141
|
}
|
|
131
142
|
|
|
132
143
|
[aria-level="19"] {
|
|
133
|
-
--indentation: calc(
|
|
144
|
+
--indentation: calc(18 * var(--base-indentation));
|
|
134
145
|
}
|
|
135
146
|
|
|
136
147
|
[aria-level="20"] {
|
|
137
|
-
--indentation: calc(
|
|
148
|
+
--indentation: calc(19 * var(--base-indentation));
|
|
138
149
|
}
|
|
139
150
|
|
|
140
151
|
[aria-level="21"] {
|
|
141
|
-
--indentation: calc(
|
|
152
|
+
--indentation: calc(20 * var(--base-indentation));
|
|
142
153
|
}
|
|
143
154
|
|
|
144
155
|
[aria-level="22"] {
|
|
145
|
-
--indentation: calc(
|
|
156
|
+
--indentation: calc(21 * var(--base-indentation));
|
|
146
157
|
}
|
|
147
158
|
|
|
148
159
|
dx-metadata-badge {
|
|
@@ -181,10 +192,10 @@ a {
|
|
|
181
192
|
|
|
182
193
|
a:link,
|
|
183
194
|
a:visited {
|
|
184
|
-
color: var(--dx-g-
|
|
195
|
+
color: var(--dx-g-blue-vibrant-20);
|
|
185
196
|
}
|
|
186
197
|
|
|
187
198
|
a:visited.tile-root,
|
|
188
199
|
a:link.tile-root {
|
|
189
|
-
color: var(--dx-g-blue-vibrant-
|
|
200
|
+
color: var(--dx-g-blue-vibrant-20);
|
|
190
201
|
}
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
<template>
|
|
2
2
|
<a href={href} class={tileClass} target={target}>
|
|
3
3
|
<div class="flex indentation" role="heading" aria-level={tileAriaLevel}>
|
|
4
|
-
<span
|
|
5
|
-
class="tile-label sidebar-item-truncate-text"
|
|
6
|
-
title={treeNode.label}
|
|
7
|
-
>
|
|
8
|
-
{treeNode.label}
|
|
9
|
-
</span>
|
|
10
4
|
<div class="flex tile-expand-icon tile-icon" if:true={showArrow}>
|
|
11
5
|
<dx-icon
|
|
12
6
|
aria-expanded={isExpanded}
|
|
@@ -16,6 +10,12 @@
|
|
|
16
10
|
onclick={onClickIcon}
|
|
17
11
|
></dx-icon>
|
|
18
12
|
</div>
|
|
13
|
+
<span
|
|
14
|
+
class="tile-label sidebar-item-truncate-text"
|
|
15
|
+
title={treeNode.label}
|
|
16
|
+
>
|
|
17
|
+
{treeNode.label}
|
|
18
|
+
</span>
|
|
19
19
|
<dx-metadata-badge
|
|
20
20
|
if:true={showMethod}
|
|
21
21
|
class="flex tile-icon"
|
|
@@ -37,7 +37,7 @@ export default class TreeTile extends LightningElement {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
private get iconSize() {
|
|
40
|
-
return
|
|
40
|
+
return "xsmall";
|
|
41
41
|
}
|
|
42
42
|
|
|
43
43
|
private get metadataBadgeColor(): string | undefined {
|
|
@@ -62,6 +62,7 @@ export default class TreeTile extends LightningElement {
|
|
|
62
62
|
return cx("tile", "sidebar-item", {
|
|
63
63
|
"tile-root": this.isRoot,
|
|
64
64
|
"tile-with-children": !this.isRoot && this.hasChildren,
|
|
65
|
+
"tile-root-with-child": this.isRoot && this.showArrow,
|
|
65
66
|
"sidebar-item-selected": this.isSelected
|
|
66
67
|
});
|
|
67
68
|
}
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
import { LightningElement } from "lwc";
|
|
1
|
+
import { LightningElement, api } from "lwc";
|
|
2
|
+
import type { OptionWithLink } from "typings/custom";
|
|
3
|
+
import { toJson } from "dxUtils/normalizers";
|
|
2
4
|
|
|
3
5
|
export const HEIGHT_OF_SIDEBAR_ITEM = 32;
|
|
4
6
|
export const WAIT_TIME_BEFORE_SCROLL_IN_MS = 500;
|
|
@@ -8,6 +10,35 @@ export class SidebarBase extends LightningElement {
|
|
|
8
10
|
|
|
9
11
|
selectedElement: HTMLElement | null = null;
|
|
10
12
|
timerId: ReturnType<typeof setTimeout> | null = null;
|
|
13
|
+
_languages!: OptionWithLink[];
|
|
14
|
+
mobile: boolean = true;
|
|
15
|
+
expanded: boolean = true;
|
|
16
|
+
_value?: string = undefined;
|
|
17
|
+
showBoxShadow: boolean = false;
|
|
18
|
+
private scrolling: boolean = false;
|
|
19
|
+
|
|
20
|
+
@api langValuePath: string = "id";
|
|
21
|
+
@api language!: string;
|
|
22
|
+
@api bailHref!: string;
|
|
23
|
+
@api bailLabel!: string;
|
|
24
|
+
|
|
25
|
+
@api
|
|
26
|
+
get languages() {
|
|
27
|
+
return this._languages;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
set languages(value) {
|
|
31
|
+
this._languages = toJson(value);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
@api
|
|
35
|
+
get value() {
|
|
36
|
+
return this._value;
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
set value(value) {
|
|
40
|
+
this._value = value;
|
|
41
|
+
}
|
|
11
42
|
|
|
12
43
|
get sidebarContent() {
|
|
13
44
|
if (!this._sidebarContent) {
|
|
@@ -18,6 +49,29 @@ export class SidebarBase extends LightningElement {
|
|
|
18
49
|
return this._sidebarContent;
|
|
19
50
|
}
|
|
20
51
|
|
|
52
|
+
/**
|
|
53
|
+
* This method is to handle the scroll event for LNB and show box shadow
|
|
54
|
+
* @param scrollEvent
|
|
55
|
+
*/
|
|
56
|
+
handleScroll(scrollEvent: any) {
|
|
57
|
+
const lnb = scrollEvent.target;
|
|
58
|
+
|
|
59
|
+
if (!this.scrolling) {
|
|
60
|
+
this.scrolling = true;
|
|
61
|
+
// Set a timeout to handle scroll event after a delay
|
|
62
|
+
setTimeout(() => {
|
|
63
|
+
// Check if lnb is scrolled
|
|
64
|
+
if (lnb.scrollTop > 0 && lnb.scrollHeight > lnb.clientHeight) {
|
|
65
|
+
this.showBoxShadow = true;
|
|
66
|
+
} else {
|
|
67
|
+
this.showBoxShadow = false;
|
|
68
|
+
}
|
|
69
|
+
// Reset scrolling back to false after handling the scroll
|
|
70
|
+
this.scrolling = false;
|
|
71
|
+
}, 200);
|
|
72
|
+
}
|
|
73
|
+
}
|
|
74
|
+
|
|
21
75
|
renderedCallback(): void {
|
|
22
76
|
/**
|
|
23
77
|
* Implementing debouncing kind of logic here to scroll to selected element once tree rendering is done
|
|
@@ -62,4 +116,49 @@ export class SidebarBase extends LightningElement {
|
|
|
62
116
|
this.selectedElement = null;
|
|
63
117
|
}
|
|
64
118
|
}
|
|
119
|
+
|
|
120
|
+
onMediaChange = (event: MediaQueryListEvent | MediaQueryList) => {
|
|
121
|
+
this.mobile = event.matches;
|
|
122
|
+
this.expanded = !this.mobile;
|
|
123
|
+
};
|
|
124
|
+
|
|
125
|
+
onSelect(event: CustomEvent) {
|
|
126
|
+
this._value = event.detail.name;
|
|
127
|
+
|
|
128
|
+
if (this.mobile) {
|
|
129
|
+
this.onToggleClick();
|
|
130
|
+
}
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
onToggleClick() {
|
|
134
|
+
this.expanded = !this.expanded;
|
|
135
|
+
this.dispatchEvent(
|
|
136
|
+
new CustomEvent("togglesidebar", {
|
|
137
|
+
detail: {
|
|
138
|
+
open: this.expanded,
|
|
139
|
+
bubbles: true,
|
|
140
|
+
composed: true
|
|
141
|
+
}
|
|
142
|
+
})
|
|
143
|
+
);
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
private get hasMobileSidebarFooter(): boolean {
|
|
147
|
+
return this.mobile && this.languages?.length > 1 && this.expanded;
|
|
148
|
+
}
|
|
149
|
+
|
|
150
|
+
private get hasSidebarFooter(): boolean {
|
|
151
|
+
return this.languages?.length > 1 || Boolean(this.bailHref);
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
private get sidebarContentClass(): string {
|
|
155
|
+
const sidebarConterCss = "sidebar-content sidebar-content-tree";
|
|
156
|
+
return this.hasSidebarFooter || this.hasMobileSidebarFooter
|
|
157
|
+
? sidebarConterCss + " sidebar-content-hasfooter"
|
|
158
|
+
: sidebarConterCss;
|
|
159
|
+
}
|
|
160
|
+
|
|
161
|
+
private get isDesktop(): boolean {
|
|
162
|
+
return !this.mobile;
|
|
163
|
+
}
|
|
65
164
|
}
|
|
@@ -19,6 +19,7 @@ header {
|
|
|
19
19
|
flex-direction: column;
|
|
20
20
|
width: 100%;
|
|
21
21
|
position: relative;
|
|
22
|
+
background: white;
|
|
22
23
|
}
|
|
23
24
|
|
|
24
25
|
header > *:not(dx-skip-nav-link) {
|
|
@@ -58,8 +59,8 @@ header.state-show-mobile-nav .header_l2_group-nav_overflow {
|
|
|
58
59
|
/* Second row */
|
|
59
60
|
|
|
60
61
|
.header_l2 {
|
|
61
|
-
|
|
62
|
-
|
|
62
|
+
padding: var(--dx-g-spacing-smd) var(--dx-g-spacing-lg)
|
|
63
|
+
var(--dx-g-spacing-smd) var(--dx-g-global-header-padding-horizontal);
|
|
63
64
|
}
|
|
64
65
|
|
|
65
66
|
.header_l2_group {
|
|
@@ -70,6 +71,7 @@ header.state-show-mobile-nav .header_l2_group-nav_overflow {
|
|
|
70
71
|
|
|
71
72
|
.header_l2_group-title {
|
|
72
73
|
flex-shrink: 0;
|
|
74
|
+
padding: var(--dx-g-spacing-smd) 0 calc(var(--dx-g-spacing-smd) - 1px) 0;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
77
|
.header_l2_group-title
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
@import "dxHelpers/text";
|
|
3
3
|
|
|
4
4
|
:host {
|
|
5
|
-
--dx-c-sidebar-width:
|
|
5
|
+
--dx-c-sidebar-width: 337px;
|
|
6
6
|
--dx-c-sidebar-button-color: var(--dx-g-blue-vibrant-50);
|
|
7
7
|
--dx-c-sidebar-button-background: white;
|
|
8
8
|
--dx-c-sidebar-button-border: white;
|
|
@@ -11,10 +11,7 @@
|
|
|
11
11
|
--dx-c-sidebar-button-border-hover: var(--dx-g-blue-vibrant-50);
|
|
12
12
|
--dx-c-sidebar-left-padding: var(--dx-g-global-header-padding-horizontal);
|
|
13
13
|
--dx-c-sidebar-vertical-padding: var(--dx-g-spacing-md);
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
dx-tree:not(:last-child) {
|
|
17
|
-
margin-bottom: var(--dx-g-spacing-sm);
|
|
14
|
+
--doc-version-picker-width: 296px;
|
|
18
15
|
}
|
|
19
16
|
|
|
20
17
|
.header {
|
|
@@ -31,12 +28,18 @@ dx-tree:not(:last-child) {
|
|
|
31
28
|
}
|
|
32
29
|
|
|
33
30
|
.padding-horizontal {
|
|
34
|
-
padding
|
|
35
|
-
|
|
31
|
+
padding: 0 var(--dx-g-spacing-lg) 0 var(--dx-c-sidebar-left-padding);
|
|
32
|
+
}
|
|
33
|
+
|
|
34
|
+
.sidebar-header[show-shadow="true"] {
|
|
35
|
+
box-shadow: 0 4px 4px -2px var(--dx-g-gray-90);
|
|
36
36
|
}
|
|
37
37
|
|
|
38
38
|
.header-title {
|
|
39
|
-
line-height:
|
|
39
|
+
line-height: 28px;
|
|
40
|
+
letter-spacing: -0.08px;
|
|
41
|
+
font-size: var(--dx-g-text-lg);
|
|
42
|
+
font-weight: var(--dx-g-font-demi);
|
|
40
43
|
}
|
|
41
44
|
|
|
42
45
|
.header-toggle-icon {
|
|
@@ -53,7 +56,7 @@ dx-tree:not(:last-child) {
|
|
|
53
56
|
}
|
|
54
57
|
|
|
55
58
|
.container {
|
|
56
|
-
background-color:
|
|
59
|
+
background-color: white;
|
|
57
60
|
display: flex;
|
|
58
61
|
flex-direction: column;
|
|
59
62
|
height: var(--dx-c-sidebar-height);
|
|
@@ -68,8 +71,7 @@ dx-tree:not(:last-child) {
|
|
|
68
71
|
|
|
69
72
|
box-shadow: 2px 0 0 0 var(--border-color);
|
|
70
73
|
min-height: var(--dx-c-sidebar-min-height);
|
|
71
|
-
padding: var(--dx-c-sidebar-vertical-padding) 0
|
|
72
|
-
var(--dx-c-sidebar-vertical-padding) var(--left-spacing);
|
|
74
|
+
padding: var(--dx-c-sidebar-vertical-padding) 0 var(--dx-g-spacing-2xs) 0;
|
|
73
75
|
position: relative;
|
|
74
76
|
}
|
|
75
77
|
|
|
@@ -102,7 +104,7 @@ dx-tree:not(:last-child) {
|
|
|
102
104
|
|
|
103
105
|
.container.container-mobile.collapsed {
|
|
104
106
|
height: unset;
|
|
105
|
-
padding
|
|
107
|
+
padding: 4px 0;
|
|
106
108
|
}
|
|
107
109
|
|
|
108
110
|
.container.container-mobile.collapsed .header {
|
|
@@ -127,9 +129,29 @@ dx-tree:not(:last-child) {
|
|
|
127
129
|
white-space: nowrap;
|
|
128
130
|
}
|
|
129
131
|
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
132
|
+
.footer-nav {
|
|
133
|
+
display: flex;
|
|
134
|
+
padding: var(--dx-g-spacing-xs) var(--dx-g-spacing-sm)
|
|
135
|
+
var(--dx-g-spacing-xs) var(--dx-g-global-header-padding-horizontal);
|
|
136
|
+
position: fixed;
|
|
137
|
+
bottom: 0;
|
|
138
|
+
left: 0;
|
|
139
|
+
width: inherit;
|
|
140
|
+
background: white;
|
|
141
|
+
border-top: 1px solid var(--dx-g-gray-90);
|
|
142
|
+
border-right: 1px solid var(--dx-g-gray-90);
|
|
143
|
+
height: var(--dx-g-spacing-2xl);
|
|
144
|
+
align-items: center;
|
|
145
|
+
}
|
|
146
|
+
|
|
147
|
+
.sidebar-content-hasfooter {
|
|
148
|
+
margin-bottom: var(--dx-g-spacing-2xl);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
@media screen and (max-width: 767px) {
|
|
152
|
+
:host {
|
|
153
|
+
--doc-version-picker-width: calc(
|
|
154
|
+
100vw - var(--dx-c-sidebar-left-padding) - var(--dx-g-spacing-lg)
|
|
155
|
+
);
|
|
134
156
|
}
|
|
135
157
|
}
|
|
@@ -8,14 +8,37 @@
|
|
|
8
8
|
|
|
9
9
|
.sidebar-item-selected {
|
|
10
10
|
background: var(--dx-g-cloud-blue-vibrant-95);
|
|
11
|
-
box-shadow: inset var(--dx-g-spacing-xs) 0 0 0 var(--dx-g-blue-vibrant-
|
|
11
|
+
box-shadow: inset var(--dx-g-spacing-xs) 0 0 0 var(--dx-g-blue-vibrant-40);
|
|
12
12
|
border-radius: 0;
|
|
13
|
+
color: var(--dx-g-blue-vibrant-40) !important;
|
|
13
14
|
}
|
|
14
15
|
|
|
15
16
|
.sidebar-item {
|
|
16
|
-
padding: 6px var(--dx-g-spacing-
|
|
17
|
+
padding: 6px var(--dx-g-spacing-lg) 6px
|
|
18
|
+
var(--dx-g-global-header-padding-horizontal);
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.sidebar-item:not(.sidebar-item-selected):focus-visible {
|
|
22
|
+
padding: calc(var(--dx-g-spacing-sm) - var(--dx-g-spacing-2xs)) 0;
|
|
23
|
+
margin: 0 var(--dx-g-spacing-lg) 0
|
|
24
|
+
var(--dx-g-global-header-padding-horizontal);
|
|
25
|
+
outline: var(--dx-g-spacing-2xs) solid var(--dx-g-blue-vibrant-40);
|
|
26
|
+
border-radius: var(--dx-g-spacing-2xs);
|
|
27
|
+
}
|
|
28
|
+
|
|
29
|
+
.sidebar-item-selected:focus-visible {
|
|
30
|
+
padding-top: 0;
|
|
31
|
+
padding-bottom: 0;
|
|
32
|
+
outline: none;
|
|
33
|
+
|
|
34
|
+
.indentation {
|
|
35
|
+
outline: var(--dx-g-spacing-2xs) solid var(--dx-g-blue-vibrant-40);
|
|
36
|
+
border-radius: var(--dx-g-spacing-2xs);
|
|
37
|
+
padding-top: calc(var(--dx-g-spacing-sm) - var(--dx-g-spacing-2xs));
|
|
38
|
+
padding-bottom: calc(var(--dx-g-spacing-sm) - var(--dx-g-spacing-2xs));
|
|
39
|
+
}
|
|
17
40
|
}
|
|
18
41
|
|
|
19
42
|
.sidebar-item:not(.sidebar-item-selected):hover {
|
|
20
|
-
|
|
43
|
+
color: var(--dx-g-blue-vibrant-50);
|
|
21
44
|
}
|
package/logs_4_17.txt
DELETED
|
@@ -1,100 +0,0 @@
|
|
|
1
|
-
2024-04-17T19:14:03.405709+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/langCon_apex_expressions_operators_understanding.htm in 3595 ms
|
|
2
|
-
2024-04-17T19:14:06.502407+00:00 app[web.5]: 2024-04-17T19:14:06.502Z { duration=3094ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_select_count.htm
|
|
3
|
-
2024-04-17T19:14:06.755292+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_select_count.htm[0m
|
|
4
|
-
2024-04-17T19:14:07.068642+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_select_count.htm in 3663 ms
|
|
5
|
-
2024-04-17T19:14:12.798473+00:00 app[web.5]: 2024-04-17T19:14:12.798Z { duration=5727ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_relationships_query_using.htm
|
|
6
|
-
2024-04-17T19:14:13.068617+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_relationships_query_using.htm[0m
|
|
7
|
-
2024-04-17T19:14:13.386510+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_relationships_query_using.htm in 6318 ms
|
|
8
|
-
2024-04-17T19:14:16.480948+00:00 app[web.5]: 2024-04-17T19:14:16.480Z { duration=3090ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_dev_guide.htm?search_text=[REDACTED]
|
|
9
|
-
2024-04-17T19:14:16.787293+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_dev_guide.htm?search_text=[REDACTED][0m
|
|
10
|
-
2024-04-17T19:14:17.100719+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_dev_guide.htm?search_text=[REDACTED] in 3714 ms
|
|
11
|
-
2024-04-17T19:14:20.394776+00:00 app[web.5]: 2024-04-17T19:14:20.394Z { duration=3291ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.platform_events.meta/platform_events/platform_events_intro.htm
|
|
12
|
-
2024-04-17T19:14:20.608616+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.platform_events.meta/platform_events/platform_events_intro.htm[0m
|
|
13
|
-
2024-04-17T19:14:20.864108+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.platform_events.meta/platform_events/platform_events_intro.htm in 3763 ms
|
|
14
|
-
2024-04-17T19:14:24.106051+00:00 app[web.5]: 2024-04-17T19:14:24.105Z { duration=3239ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_rest_methods.htm
|
|
15
|
-
2024-04-17T19:14:24.370237+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_rest_methods.htm[0m
|
|
16
|
-
2024-04-17T19:14:24.695140+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_rest_methods.htm in 3831 ms
|
|
17
|
-
2024-04-17T19:14:27.833248+00:00 app[web.5]: 2024-04-17T19:14:27.833Z { duration=3135ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.api_iot.meta/api_iot/qs_auth_access_token.htm
|
|
18
|
-
2024-04-17T19:14:28.042179+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.api_iot.meta/api_iot/qs_auth_access_token.htm[0m
|
|
19
|
-
2024-04-17T19:14:28.301724+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.api_iot.meta/api_iot/qs_auth_access_token.htm in 3606 ms
|
|
20
|
-
2024-04-17T19:14:31.392318+00:00 app[web.5]: 2024-04-17T19:14:31.392Z { duration=3088ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.dataLoader.meta/dataLoader/loader_install_general.htm
|
|
21
|
-
2024-04-17T19:14:31.639186+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.dataLoader.meta/dataLoader/loader_install_general.htm[0m
|
|
22
|
-
2024-04-17T19:14:31.947972+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.dataLoader.meta/dataLoader/loader_install_general.htm in 3646 ms
|
|
23
|
-
2024-04-17T19:14:35.042480+00:00 app[web.5]: 2024-04-17T19:14:35.042Z { duration=3092ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_defining.htm
|
|
24
|
-
2024-04-17T19:14:35.250477+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_defining.htm[0m
|
|
25
|
-
2024-04-17T19:14:35.505331+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_classes_defining.htm in 3557 ms
|
|
26
|
-
2024-04-17T19:14:38.547437+00:00 app[web.5]: 2024-04-17T19:14:38.547Z { duration=3040ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_intro_overview.htm
|
|
27
|
-
2024-04-17T19:14:38.794589+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_intro_overview.htm[0m
|
|
28
|
-
2024-04-17T19:14:39.106756+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.integration_patterns_and_practices.meta/integration_patterns_and_practices/integ_pat_intro_overview.htm in 3601 ms
|
|
29
|
-
2024-04-17T19:14:42.221458+00:00 app[web.5]: 2024-04-17T19:14:42.221Z { duration=3113ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.mc-apis.meta/mc-apis/index-api.htm
|
|
30
|
-
2024-04-17T19:14:42.431914+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.mc-apis.meta/mc-apis/index-api.htm[0m
|
|
31
|
-
2024-04-17T19:14:42.690416+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.mc-apis.meta/mc-apis/index-api.htm in 3583 ms
|
|
32
|
-
2024-04-17T19:14:45.745645+00:00 app[web.5]: 2024-04-17T19:14:45.745Z { duration=3053ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_testing_testsetup_using.htm
|
|
33
|
-
2024-04-17T19:14:46.056638+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_testing_testsetup_using.htm[0m
|
|
34
|
-
2024-04-17T19:14:46.394094+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_testing_testsetup_using.htm in 3703 ms
|
|
35
|
-
2024-04-17T19:14:49.526474+00:00 app[web.5]: 2024-04-17T19:14:49.526Z { duration=3130ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_emailmessage.htm
|
|
36
|
-
2024-04-17T19:14:49.746730+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_emailmessage.htm[0m
|
|
37
|
-
2024-04-17T19:14:50.004464+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.object_reference.meta/object_reference/sforce_api_objects_emailmessage.htm in 3610 ms
|
|
38
|
-
2024-04-17T19:14:53.103269+00:00 app[web.5]: 2024-04-17T19:14:53.103Z { duration=3097ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_sosl_intro.htm
|
|
39
|
-
2024-04-17T19:14:53.353429+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_sosl_intro.htm[0m
|
|
40
|
-
2024-04-17T19:14:53.676797+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.soql_sosl.meta/soql_sosl/sforce_api_calls_soql_sosl_intro.htm in 3672 ms
|
|
41
|
-
2024-04-17T19:14:56.804436+00:00 app[web.5]: 2024-04-17T19:14:56.804Z { duration=3125ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_writing.htm
|
|
42
|
-
2024-04-17T19:14:57.013234+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_writing.htm[0m
|
|
43
|
-
2024-04-17T19:14:57.274941+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_writing.htm in 3598 ms
|
|
44
|
-
2024-04-17T19:15:00.367147+00:00 app[web.5]: 2024-04-17T19:15:00.366Z { duration=3089ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.api_rest.meta/api_rest/dome_upsert.htm
|
|
45
|
-
2024-04-17T19:15:00.616162+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.api_rest.meta/api_rest/dome_upsert.htm[0m
|
|
46
|
-
2024-04-17T19:15:00.924977+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.api_rest.meta/api_rest/dome_upsert.htm in 3650 ms
|
|
47
|
-
2024-04-17T19:15:04.027901+00:00 app[web.5]: 2024-04-17T19:15:04.027Z { duration=3100ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexref.meta/apexref/apex_methods_system_system.htm
|
|
48
|
-
2024-04-17T19:15:04.236967+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexref.meta/apexref/apex_methods_system_system.htm[0m
|
|
49
|
-
2024-04-17T19:15:04.494580+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexref.meta/apexref/apex_methods_system_system.htm in 3569 ms
|
|
50
|
-
2024-04-17T19:15:07.571829+00:00 app[web.5]: 2024-04-17T19:15:07.571Z { duration=3075ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_exception_trycatch_example.htm
|
|
51
|
-
2024-04-17T19:15:07.818514+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_exception_trycatch_example.htm[0m
|
|
52
|
-
2024-04-17T19:15:08.132789+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_exception_trycatch_example.htm in 3638 ms
|
|
53
|
-
2024-04-17T19:15:11.264640+00:00 app[web.5]: 2024-04-17T19:15:11.264Z { duration=3129ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.lightning.meta/lightning/data_service.htm
|
|
54
|
-
2024-04-17T19:15:11.474330+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.lightning.meta/lightning/data_service.htm[0m
|
|
55
|
-
2024-04-17T19:15:12.451496+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.lightning.meta/lightning/data_service.htm in 4318 ms
|
|
56
|
-
2024-04-17T19:15:15.495408+00:00 app[web.5]: 2024-04-17T19:15:15.495Z { duration=3042ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.pages.meta/pages/pages_intro.htm
|
|
57
|
-
2024-04-17T19:15:15.752877+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_intro.htm[0m
|
|
58
|
-
2024-04-17T19:15:16.115013+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.pages.meta/pages/pages_intro.htm in 3663 ms
|
|
59
|
-
2024-04-17T19:15:19.264983+00:00 app[web.5]: 2024-04-17T19:15:19.264Z { duration=3147ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.api.meta/api/sforce_api_objects_contentdocument.htm
|
|
60
|
-
2024-04-17T19:15:19.491140+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.api.meta/api/sforce_api_objects_contentdocument.htm[0m
|
|
61
|
-
2024-04-17T19:15:19.761745+00:00 app[web.5]: {"data":"Accepted: 512 Events, RequestId: d43af98e-3f6b-456a-87ef-f61f5681d5a5"}[info][SSG] en-US /docs/atlas.en-us.api.meta/api/sforce_api_objects_contentdocument.htm in 3646 ms
|
|
62
|
-
2024-04-17T19:15:22.832954+00:00 app[web.5]: 2024-04-17T19:15:22.832Z { duration=3068ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/atlas.en-us.apexcode.meta/apexcode/apex_map_sobject.htm
|
|
63
|
-
2024-04-17T19:15:23.121189+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_map_sobject.htm[0m
|
|
64
|
-
2024-04-17T19:15:23.432039+00:00 app[web.5]: [info][SSG] en-US /docs/atlas.en-us.apexcode.meta/apexcode/apex_map_sobject.htm in 3670 ms
|
|
65
|
-
2024-04-17T19:16:29.188838+00:00 app[web.5]: Circular dependency: ../1/bundle/esm/l/en-US/bi/0/module/mi/dx%2FtreeItem%2Fv%2F1_3_245/latest/bundle_dx_treeItem.js -> ../1/bundle/esm/l/en-US/bi/0/module/mi/dx%2FtreeItem%23treeItem.html%2Fv%2F1_3_245/latest/bundle_dx_treeItem_treeItem_html.js -> ../1/bundle/esm/l/en-US/bi/0/module/mi/dx%2FtreeItem%2Fv%2F1_3_245/latest/bundle_dx_treeItem.js
|
|
66
|
-
2024-04-17T19:16:35.800568+00:00 app[web.5]: 2024-04-17T19:16:35.800Z { duration=72366ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/commerce/commerce-api/references
|
|
67
|
-
2024-04-17T19:16:36.132850+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/commerce/commerce-api/references[0m
|
|
68
|
-
2024-04-17T19:16:36.506610+00:00 app[web.5]: [info][SSG] en-US /docs/commerce/commerce-api/references in 73074 ms
|
|
69
|
-
2024-04-17T19:16:47.422402+00:00 app[web.5]: 2024-04-17T19:16:47.422Z { duration=10914ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/commerce/b2c-commerce/references/ocapi-data-api
|
|
70
|
-
2024-04-17T19:16:47.722083+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/commerce/b2c-commerce/references/ocapi-data-api[0m
|
|
71
|
-
2024-04-17T19:16:48.219763+00:00 app[web.5]: [info][SSG] en-US /docs/commerce/b2c-commerce/references/ocapi-data-api in 11713 ms
|
|
72
|
-
2024-04-17T19:16:52.330519+00:00 app[web.5]: 2024-04-17T19:16:52.330Z { duration=4108ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/commerce/b2c-commerce/references/ocapi-shop-api
|
|
73
|
-
2024-04-17T19:16:52.593272+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/commerce/b2c-commerce/references/ocapi-shop-api[0m
|
|
74
|
-
2024-04-17T19:16:52.972623+00:00 app[web.5]: [info][SSG] en-US /docs/commerce/b2c-commerce/references/ocapi-shop-api in 4752 ms
|
|
75
|
-
2024-04-17T19:16:54.998115+00:00 app[web.5]: Circular dependency: ../1/bundle/esm/l/en-US/bi/0/module/mi/dx%2FtreeItem%2Fv%2F1_3_245/latest/bundle_dx_treeItem.js -> ../1/bundle/esm/l/en-US/bi/0/module/mi/dx%2FtreeItem%23treeItem.html%2Fv%2F1_3_245/latest/bundle_dx_treeItem_treeItem_html.js -> ../1/bundle/esm/l/en-US/bi/0/module/mi/dx%2FtreeItem%2Fv%2F1_3_245/latest/bundle_dx_treeItem.js
|
|
76
|
-
2024-04-17T19:16:59.352310+00:00 app[web.5]: 2024-04-17T19:16:59.352Z { duration=6378ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /docs/marketing/marketing-cloud/guide/apis-overview.html
|
|
77
|
-
2024-04-17T19:16:59.795389+00:00 app[web.5]: [33m[warn][SSG] Skipped generation of external url: https://staging.developer.salesforce.com/docs/marketing/marketing-cloud/guide/apis-overview.html[0m
|
|
78
|
-
2024-04-17T19:17:00.180088+00:00 app[web.5]: [info][SSG] en-US /docs/marketing/marketing-cloud/guide/apis-overview.html in 7207 ms
|
|
79
|
-
2024-04-17T19:17:00.180091+00:00 app[web.5]: [info][Server Warmup] complete
|
|
80
|
-
2024-04-17T19:17:00.180391+00:00 app[web.5]: 2024-04-17T19:17:00.180Z [cli] [32minfo[39m: App listening on port 54027 in prod mode
|
|
81
|
-
2024-04-17T19:17:00.180446+00:00 app[web.5]: 2024-04-17T19:17:00.180Z [cli] [32minfo[39m: Launching the browser : http://localhost:54027
|
|
82
|
-
2024-04-17T20:00:18.646423+00:00 heroku[router]: at=info method=GET path="/assets/icons/salesforcebrand-sprite/svg/symbols.svg" host=developer-website-s.herokuapp.com request_id=8b7e27b9fcbb08b9e02fa6b6777c0accc82f7f6d fwd="204.14.236.211, 104.156.87.69" dyno=web.4 connect=0ms service=14ms status=200 bytes=35543 protocol=http tls_version=tls1.2
|
|
83
|
-
2024-04-17T20:00:18.680675+00:00 heroku[router]: at=info method=GET path="/assets/icons/utility-sprite/svg/symbols.svg" host=developer-website-s.herokuapp.com request_id=07f1fd8f8b6ef26a8b780fb4460e102fd6a6ae46 fwd="204.14.236.211, 104.156.87.125" dyno=web.5 connect=0ms service=35ms status=200 bytes=83663 protocol=http tls_version=tls1.2
|
|
84
|
-
2024-04-17T20:00:18.710451+00:00 app[web.5]: 2024-04-17T20:00:18.710Z { duration=37ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /podcast/api?maxResults=3
|
|
85
|
-
2024-04-17T20:00:18.711951+00:00 heroku[router]: at=info method=GET path="/podcast/api?maxResults=3" host=developer-website-s.herokuapp.com request_id=296959d759b7566a23c4daf6bdf94a340066b29b fwd="204.14.236.211, 104.156.83.22" dyno=web.5 connect=0ms service=40ms status=304 bytes=0 protocol=http tls_version=tls1.2
|
|
86
|
-
2024-04-17T20:00:18.719716+00:00 app[web.3]: 2024-04-17T20:00:18.719Z { duration=47ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /blogs/api?maxResults=6
|
|
87
|
-
2024-04-17T20:00:18.720600+00:00 heroku[router]: at=info method=GET path="/blogs/api?maxResults=6" host=developer-website-s.herokuapp.com request_id=c37df479c9c6ae50bcdf7d1a268480d52d9fcd59 fwd="204.14.236.211, 104.156.87.50" dyno=web.3 connect=0ms service=50ms status=304 bytes=0 protocol=http tls_version=tls1.2
|
|
88
|
-
2024-04-17T20:00:18.725263+00:00 heroku[router]: at=info method=GET path="/assets/icons/brand-sprite/svg/symbols.svg" host=developer-website-s.herokuapp.com request_id=780e63c1d66117743d874d07e75d4883dbe58d4a fwd="204.14.236.211, 104.156.87.177" dyno=web.1 connect=0ms service=32ms status=200 bytes=188684 protocol=http tls_version=tls1.2
|
|
89
|
-
2024-04-17T20:00:18.729822+00:00 heroku[router]: at=info method=GET path="/assets/icons/general-sprite/svg/symbols.svg" host=developer-website-s.herokuapp.com request_id=2fe1d86e25d9fdc63b01674b8ac0575112a7eefc fwd="204.14.236.211, 104.156.87.166" dyno=web.1 connect=0ms service=35ms status=200 bytes=202515 protocol=http tls_version=tls1.2
|
|
90
|
-
2024-04-17T20:19:26.526803+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=developer-website-s.herokuapp.com request_id=f810fa541499a369f62042a5f79c8f23f5563874 fwd="204.14.236.211, 104.156.87.108" dyno=web.2 connect=0ms service=57ms status=404 bytes=4431 protocol=http tls_version=tls1.2
|
|
91
|
-
2024-04-17T20:22:14.982679+00:00 app[api]: Scaled to web@4:Private-L by user metrics-team+apphs@heroku.com
|
|
92
|
-
2024-04-17T20:22:27.194863+00:00 heroku[web.5]: State changed from up to stopping
|
|
93
|
-
2024-04-17T20:22:42.291686+00:00 heroku[web.5]: State changed from stopping to down
|
|
94
|
-
2024-04-17T22:05:02.594174+00:00 app[web.1]: 2024-04-17T22:05:02.594Z { duration=167ms } [@salesforcedevs/sfdocs-portal:portal-content-route-handler] [32minfo[39m: Request processed for /
|
|
95
|
-
2024-04-17T22:05:02.596364+00:00 heroku[router]: at=info method=GET path="/" host=developer-website-s.herokuapp.com request_id=f9257f31-3d64-f827-d41d-33fee5d7fbe2 fwd="199.45.155.49" dyno=web.1 connect=0ms service=171ms status=200 bytes=10856 protocol=http tls_version=tls1.3
|
|
96
|
-
2024-04-17T22:05:10.834861+00:00 heroku[router]: at=info method=GET path="/favicon.ico" host=developer-website-s.herokuapp.com request_id=89b2b223-4853-5908-1411-86f77dfca8b4 fwd="199.45.155.49" dyno=web.3 connect=0ms service=42ms status=404 bytes=4431 protocol=http tls_version=tls1.3
|
|
97
|
-
2024-04-17T22:08:16.001194+00:00 app[api]: Scaled to web@3:Private-L by user metrics-team+apphs@heroku.com
|
|
98
|
-
2024-04-17T22:08:33.321645+00:00 heroku[web.4]: State changed from up to stopping
|
|
99
|
-
2024-04-17T22:08:43.059876+00:00 heroku[web.4]: Process exited with status 1
|
|
100
|
-
2024-04-17T22:08:43.072867+00:00 heroku[web.4]: State changed from stopping to down
|