@salesforcedevs/dx-components 0.10.1-alpha.9 → 0.10.1-alpha.93

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.
Files changed (29) hide show
  1. package/lwc.config.json +3 -1
  2. package/package.json +1 -1
  3. package/src/assets/svg/sidebar-loading.svg +34 -0
  4. package/src/modules/dx/cardGrid/__tests__/cardMockProps.ts +78 -148
  5. package/src/modules/dx/codeBlock/codeBlock.stories.ts +2 -69
  6. package/src/modules/dx/codeBlock/codeBlock.ts +5 -1
  7. package/src/modules/dx/codeBlock/darkTheme.css +0 -1
  8. package/src/modules/dx/codeBlock/lightTheme.css +0 -1
  9. package/src/modules/dx/footer/links.ts +3 -5
  10. package/src/modules/dx/searchResults/coveo.css +314 -111
  11. package/src/modules/dx/sidebar/sidebar.css +38 -17
  12. package/src/modules/dx/sidebar/sidebar.html +61 -58
  13. package/src/modules/dx/sidebar/sidebar.stories.ts +69 -49
  14. package/src/modules/dx/sidebar/sidebar.ts +89 -11
  15. package/src/modules/dx/sidebarSearch/sidebarSearch.ts +4310 -86
  16. package/src/modules/dx/sidebarSearch/utils.ts +2 -0
  17. package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.css +11 -1
  18. package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.html +1 -1
  19. package/src/modules/dx/sidebarSearchResult/sidebarSearchResult.ts +8 -2
  20. package/src/modules/dx/spinner/__tests__/spinner.test.ts +37 -0
  21. package/src/modules/dx/spinner/spinner.css +750 -0
  22. package/src/modules/dx/spinner/spinner.html +6 -0
  23. package/src/modules/dx/spinner/spinner.stories.ts +69 -0
  24. package/src/modules/dx/spinner/spinner.ts +20 -0
  25. package/src/modules/helpers/table/table.css +23 -7
  26. package/src/modules/utils/coveo/coveo.ts +3 -0
  27. package/src/modules/utils/highlight/highlight.ts +31 -0
  28. package/src/modules/utils/recentSearches/recentSearches.ts +8 -4
  29. package/src/modules/utils/regexps/regexps.ts +5 -0
package/lwc.config.json CHANGED
@@ -63,6 +63,7 @@
63
63
  "dx/socials",
64
64
  "dx/toc",
65
65
  "dx/tree",
66
+ "dx/tooltip",
66
67
  "dx/typeBadge",
67
68
  "dx/typeBadgeGroup",
68
69
  "dx/toc",
@@ -75,6 +76,7 @@
75
76
  "helpers/table",
76
77
  "helpers/text",
77
78
  "utils/headerBase",
78
- "utils/normalizers"
79
+ "utils/normalizers",
80
+ "utils/highlight"
79
81
  ]
80
82
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@salesforcedevs/dx-components",
3
- "version": "0.10.1-alpha.9",
3
+ "version": "0.10.1-alpha.93",
4
4
  "description": "DX Lightning web components",
5
5
  "license": "MIT",
6
6
  "engines": {
@@ -0,0 +1,34 @@
1
+
2
+ <svg width="100%" height="374px" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
3
+ <g id="Scoped-Search" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
4
+ <g id="Docs-–-Search-Results-Loading" transform="translate(-52.000000, -240.000000)" fill="#DAD8D7">
5
+ <g id="Group-12" transform="translate(52.000000, 240.000000)">
6
+ <g id="Group-5">
7
+ <rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
8
+ <rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
9
+ <rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
10
+ </g>
11
+ <g id="Group-5" opacity="0.8" transform="translate(0.000000, 78.000000)">
12
+ <rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
13
+ <rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
14
+ <rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
15
+ </g>
16
+ <g id="Group-5" opacity="0.6" transform="translate(0.000000, 156.000000)">
17
+ <rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
18
+ <rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
19
+ <rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
20
+ </g>
21
+ <g id="Group-5" opacity="0.4" transform="translate(0.000000, 234.000000)">
22
+ <rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
23
+ <rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
24
+ <rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
25
+ </g>
26
+ <g id="Group-5" opacity="0.197206577" transform="translate(0.000000, 312.000000)">
27
+ <rect id="Rectangle" x="0" y="0" width="90%" height="10" rx="5"></rect>
28
+ <rect id="Rectangle" x="0" y="26" width="80%" height="10" rx="5"></rect>
29
+ <rect id="Rectangle" x="0" y="52" width="70%" height="10" rx="5"></rect>
30
+ </g>
31
+ </g>
32
+ </g>
33
+ </g>
34
+ </svg>
@@ -1,8 +1,7 @@
1
1
  export default [
2
2
  {
3
3
  title: "Heroku Dev Center",
4
- body:
5
- "Learn about building, deploying, and managing your apps on Heroku.",
4
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
6
5
  href: "https://devcenter.heroku.com/",
7
6
  brand: "platform",
8
7
  links: [
@@ -25,10 +24,8 @@ export default [
25
24
  },
26
25
  {
27
26
  title: "Lightning Web Components",
28
- body:
29
- "Learn about building, deploying, and managing your apps on Heroku.",
30
- href:
31
- "https://developer.salesforce.com/docs/component-library/overview/",
27
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
28
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
32
29
  brand: "platform",
33
30
  links: [
34
31
  {
@@ -50,8 +47,7 @@ export default [
50
47
  },
51
48
  {
52
49
  title: "Lightning Design System",
53
- body:
54
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
50
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
55
51
  href: "https://www.lightningdesignsystem.com/",
56
52
  brand: "platform",
57
53
  links: [
@@ -74,427 +70,361 @@ export default [
74
70
  },
75
71
  {
76
72
  title: "Commerce Cloud APIs",
77
- body:
78
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
79
- href: "https://developer.commercecloud.com/",
73
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
74
+ href: "https://developer.commercecloud.com/s/",
80
75
  brand: "commerce"
81
76
  },
82
77
  {
83
78
  title: "MuleSoft Documentation",
84
- body:
85
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
79
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
86
80
  href: "https://docs.mulesoft.com/",
87
81
  brand: "integration"
88
82
  },
89
83
  {
90
84
  title: "Salesforce Extensions for VS Code",
91
- body:
92
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
85
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
93
86
  href: "https://developer.salesforce.com/tools/vscode",
94
87
  brand: "platform"
95
88
  },
96
89
  {
97
90
  title: "Quip Developer Documentation",
98
- body:
99
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
91
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
100
92
  href: "https://quip.com/dev",
101
93
  brand: "collaboration"
102
94
  },
103
95
  {
104
96
  title: "Tableau Help",
105
- body:
106
- "Tableau brings together data from anywhere to empower your people everywhere.",
97
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
107
98
  href: "https://help.tableau.com/",
108
99
  brand: "analytics"
109
100
  },
110
101
  {
111
102
  title: "Einstein Voice & Vision",
112
- body:
113
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
103
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
114
104
  href: "https://metamind.readme.io",
115
105
  brand: "platform"
116
106
  },
117
107
  {
118
108
  title: "Lightning Web Components",
119
- body:
120
- "Learn about building, deploying, and managing your apps on Heroku.",
121
- href:
122
- "https://developer.salesforce.com/docs/component-library/overview/",
109
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
110
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
123
111
  brand: "platform"
124
112
  },
125
113
  {
126
114
  title: "Lightning Design System",
127
- body:
128
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
115
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
129
116
  href: "https://www.lightningdesignsystem.com/",
130
117
  brand: "platform"
131
118
  },
132
119
  {
133
120
  title: "Commerce Cloud APIs",
134
- body:
135
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
136
- href: "https://developer.commercecloud.com/",
121
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
122
+ href: "https://developer.commercecloud.com/s/",
137
123
  brand: "commerce"
138
124
  },
139
125
  {
140
126
  title: "MuleSoft Documentation",
141
- body:
142
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
127
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
143
128
  href: "https://docs.mulesoft.com/",
144
129
  brand: "integration"
145
130
  },
146
131
  {
147
132
  title: "Salesforce Extensions for VS Code",
148
- body:
149
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
133
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
150
134
  href: "https://developer.salesforce.com/tools/vscode",
151
135
  brand: "platform"
152
136
  },
153
137
  {
154
138
  title: "Quip Developer Documentation",
155
- body:
156
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
139
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
157
140
  href: "https://quip.com/dev",
158
141
  brand: "collaboration"
159
142
  },
160
143
  {
161
144
  title: "Tableau Help",
162
- body:
163
- "Tableau brings together data from anywhere to empower your people everywhere.",
145
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
164
146
  href: "https://help.tableau.com/",
165
147
  brand: "analytics"
166
148
  },
167
149
  {
168
150
  title: "Einstein Voice & Vision",
169
- body:
170
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
151
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
171
152
  href: "https://metamind.readme.io",
172
153
  brand: "platform"
173
154
  },
174
155
  {
175
156
  title: "Lightning Web Components",
176
- body:
177
- "Learn about building, deploying, and managing your apps on Heroku.",
178
- href:
179
- "https://developer.salesforce.com/docs/component-library/overview/",
157
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
158
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
180
159
  brand: "platform"
181
160
  },
182
161
  {
183
162
  title: "Lightning Design System",
184
- body:
185
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
163
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
186
164
  href: "https://www.lightningdesignsystem.com/",
187
165
  brand: "platform"
188
166
  },
189
167
  {
190
168
  title: "Commerce Cloud APIs",
191
- body:
192
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
193
- href: "https://developer.commercecloud.com/",
169
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
170
+ href: "https://developer.commercecloud.com/s/",
194
171
  brand: "commerce"
195
172
  },
196
173
  {
197
174
  title: "MuleSoft Documentation",
198
- body:
199
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
175
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
200
176
  href: "https://docs.mulesoft.com/",
201
177
  brand: "integration"
202
178
  },
203
179
  {
204
180
  title: "Salesforce Extensions for VS Code",
205
- body:
206
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
181
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
207
182
  href: "https://developer.salesforce.com/tools/vscode",
208
183
  brand: "platform"
209
184
  },
210
185
  {
211
186
  title: "Quip Developer Documentation",
212
- body:
213
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
187
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
214
188
  href: "https://quip.com/dev",
215
189
  brand: "collaboration"
216
190
  },
217
191
  {
218
192
  title: "Tableau Help",
219
- body:
220
- "Tableau brings together data from anywhere to empower your people everywhere.",
193
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
221
194
  href: "https://help.tableau.com/",
222
195
  brand: "analytics"
223
196
  },
224
197
  {
225
198
  title: "Einstein Voice & Vision",
226
- body:
227
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
199
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
228
200
  href: "https://metamind.readme.io",
229
201
  brand: "platform"
230
202
  },
231
203
  {
232
204
  title: "Commerce Cloud APIs",
233
- body:
234
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
235
- href: "https://developer.commercecloud.com/",
205
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
206
+ href: "https://developer.commercecloud.com/s/",
236
207
  brand: "commerce"
237
208
  },
238
209
  {
239
210
  title: "MuleSoft Documentation",
240
- body:
241
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
211
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
242
212
  href: "https://docs.mulesoft.com/",
243
213
  brand: "integration"
244
214
  },
245
215
  {
246
216
  title: "Salesforce Extensions for VS Code",
247
- body:
248
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
217
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
249
218
  href: "https://developer.salesforce.com/tools/vscode",
250
219
  brand: "platform"
251
220
  },
252
221
  {
253
222
  title: "Quip Developer Documentation",
254
- body:
255
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
223
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
256
224
  href: "https://quip.com/dev",
257
225
  brand: "collaboration"
258
226
  },
259
227
  {
260
228
  title: "Tableau Help",
261
- body:
262
- "Tableau brings together data from anywhere to empower your people everywhere.",
229
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
263
230
  href: "https://help.tableau.com/",
264
231
  brand: "analytics"
265
232
  },
266
233
  {
267
234
  title: "Einstein Voice & Vision",
268
- body:
269
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
235
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
270
236
  href: "https://metamind.readme.io",
271
237
  brand: "platform"
272
238
  },
273
239
  {
274
240
  title: "Lightning Web Components",
275
- body:
276
- "Learn about building, deploying, and managing your apps on Heroku.",
277
- href:
278
- "https://developer.salesforce.com/docs/component-library/overview/",
241
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
242
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
279
243
  brand: "platform"
280
244
  },
281
245
  {
282
246
  title: "Lightning Design System",
283
- body:
284
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
247
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
285
248
  href: "https://www.lightningdesignsystem.com/",
286
249
  brand: "platform"
287
250
  },
288
251
  {
289
252
  title: "Commerce Cloud APIs",
290
- body:
291
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
292
- href: "https://developer.commercecloud.com/",
253
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
254
+ href: "https://developer.commercecloud.com/s/",
293
255
  brand: "commerce"
294
256
  },
295
257
  {
296
258
  title: "MuleSoft Documentation",
297
- body:
298
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
259
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
299
260
  href: "https://docs.mulesoft.com/",
300
261
  brand: "integration"
301
262
  },
302
263
  {
303
264
  title: "Salesforce Extensions for VS Code",
304
- body:
305
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
265
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
306
266
  href: "https://developer.salesforce.com/tools/vscode",
307
267
  brand: "platform"
308
268
  },
309
269
  {
310
270
  title: "Quip Developer Documentation",
311
- body:
312
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
271
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
313
272
  href: "https://quip.com/dev",
314
273
  brand: "collaboration"
315
274
  },
316
275
  {
317
276
  title: "Tableau Help",
318
- body:
319
- "Tableau brings together data from anywhere to empower your people everywhere.",
277
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
320
278
  href: "https://help.tableau.com/",
321
279
  brand: "analytics"
322
280
  },
323
281
  {
324
282
  title: "Einstein Voice & Vision",
325
- body:
326
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
283
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
327
284
  href: "https://metamind.readme.io",
328
285
  brand: "platform"
329
286
  },
330
287
  {
331
288
  title: "Lightning Web Components",
332
- body:
333
- "Learn about building, deploying, and managing your apps on Heroku.",
334
- href:
335
- "https://developer.salesforce.com/docs/component-library/overview/",
289
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
290
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
336
291
  brand: "platform"
337
292
  },
338
293
  {
339
294
  title: "Lightning Design System",
340
- body:
341
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
295
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
342
296
  href: "https://www.lightningdesignsystem.com/",
343
297
  brand: "platform"
344
298
  },
345
299
  {
346
300
  title: "Commerce Cloud APIs",
347
- body:
348
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
349
- href: "https://developer.commercecloud.com/",
301
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
302
+ href: "https://developer.commercecloud.com/s/",
350
303
  brand: "commerce"
351
304
  },
352
305
  {
353
306
  title: "MuleSoft Documentation",
354
- body:
355
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
307
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
356
308
  href: "https://docs.mulesoft.com/",
357
309
  brand: "integration"
358
310
  },
359
311
  {
360
312
  title: "Salesforce Extensions for VS Code",
361
- body:
362
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
313
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
363
314
  href: "https://developer.salesforce.com/tools/vscode",
364
315
  brand: "platform"
365
316
  },
366
317
  {
367
318
  title: "Quip Developer Documentation",
368
- body:
369
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
319
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
370
320
  href: "https://quip.com/dev",
371
321
  brand: "collaboration"
372
322
  },
373
323
  {
374
324
  title: "Tableau Help",
375
- body:
376
- "Tableau brings together data from anywhere to empower your people everywhere.",
325
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
377
326
  href: "https://help.tableau.com/",
378
327
  brand: "analytics"
379
328
  },
380
329
  {
381
330
  title: "Einstein Voice & Vision",
382
- body:
383
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
331
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
384
332
  href: "https://metamind.readme.io",
385
333
  brand: "platform"
386
334
  },
387
335
  {
388
336
  title: "Commerce Cloud APIs",
389
- body:
390
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
391
- href: "https://developer.commercecloud.com/",
337
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
338
+ href: "https://developer.commercecloud.com/s/",
392
339
  brand: "commerce"
393
340
  },
394
341
  {
395
342
  title: "MuleSoft Documentation",
396
- body:
397
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
343
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
398
344
  href: "https://docs.mulesoft.com/",
399
345
  brand: "integration"
400
346
  },
401
347
  {
402
348
  title: "Salesforce Extensions for VS Code",
403
- body:
404
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
349
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
405
350
  href: "https://developer.salesforce.com/tools/vscode",
406
351
  brand: "platform"
407
352
  },
408
353
  {
409
354
  title: "Quip Developer Documentation",
410
- body:
411
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
355
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
412
356
  href: "https://quip.com/dev",
413
357
  brand: "collaboration"
414
358
  },
415
359
  {
416
360
  title: "Tableau Help",
417
- body:
418
- "Tableau brings together data from anywhere to empower your people everywhere.",
361
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
419
362
  href: "https://help.tableau.com/",
420
363
  brand: "analytics"
421
364
  },
422
365
  {
423
366
  title: "Einstein Voice & Vision",
424
- body:
425
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
367
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
426
368
  href: "https://metamind.readme.io",
427
369
  brand: "platform"
428
370
  },
429
371
  {
430
372
  title: "Lightning Web Components",
431
- body:
432
- "Learn about building, deploying, and managing your apps on Heroku.",
433
- href:
434
- "https://developer.salesforce.com/docs/component-library/overview/",
373
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
374
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
435
375
  brand: "platform"
436
376
  },
437
377
  {
438
378
  title: "Lightning Design System",
439
- body:
440
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
379
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
441
380
  href: "https://www.lightningdesignsystem.com/",
442
381
  brand: "platform"
443
382
  },
444
383
  {
445
384
  title: "Commerce Cloud APIs",
446
- body:
447
- "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
448
- href: "https://developer.commercecloud.com/",
385
+ body: "Unlock and integrate data from any system to deliver critical, time-sensitive projects with MuleSoft.",
386
+ href: "https://developer.commercecloud.com/s/",
449
387
  brand: "commerce"
450
388
  },
451
389
  {
452
390
  title: "MuleSoft Documentation",
453
- body:
454
- "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
391
+ body: "Explore documentation, APIs, resources, and discussion forums to Develop personalized commerce experiences on a fast, flexible platform.",
455
392
  href: "https://docs.mulesoft.com/",
456
393
  brand: "integration"
457
394
  },
458
395
  {
459
396
  title: "Salesforce Extensions for VS Code",
460
- body:
461
- "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
397
+ body: "Use Salesforce Extensions for Visual Studio Code to optimize building and debugging code on the Salesforce Platform. From the VS Studio code editor, work seamlessly with scratch orgs, sandboxes, and DE orgs, and code intelligently with Apex, Lightning components, and Visualforce.",
462
398
  href: "https://developer.salesforce.com/tools/vscode",
463
399
  brand: "platform"
464
400
  },
465
401
  {
466
402
  title: "Quip Developer Documentation",
467
- body:
468
- "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
403
+ body: "Make more intelligent, data-driven decisions that guide your business forward with Quip.",
469
404
  href: "https://quip.com/dev",
470
405
  brand: "collaboration"
471
406
  },
472
407
  {
473
408
  title: "Tableau Help",
474
- body:
475
- "Tableau brings together data from anywhere to empower your people everywhere.",
409
+ body: "Tableau brings together data from anywhere to empower your people everywhere.",
476
410
  href: "https://help.tableau.com/",
477
411
  brand: "analytics"
478
412
  },
479
413
  {
480
414
  title: "Einstein Voice & Vision",
481
- body:
482
- "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
415
+ body: "Einstein Platform Services allows you to seamlessly integrate custom deep learning models into your CRM workflows.",
483
416
  href: "https://metamind.readme.io",
484
417
  brand: "platform"
485
418
  },
486
419
  {
487
420
  title: "Lightning Web Components",
488
- body:
489
- "Learn about building, deploying, and managing your apps on Heroku.",
490
- href:
491
- "https://developer.salesforce.com/docs/component-library/overview/",
421
+ body: "Learn about building, deploying, and managing your apps on Heroku.",
422
+ href: "https://developer.salesforce.com/docs/component-library/overview/",
492
423
  brand: "platform"
493
424
  },
494
425
  {
495
426
  title: "Lightning Design System",
496
- body:
497
- "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
427
+ body: "Create the World's Best Enterprise App Experiences using Salesforce Lightning Design System.",
498
428
  href: "https://www.lightningdesignsystem.com/",
499
429
  brand: "platform"
500
430
  }