@pingux/astro 2.81.0-alpha.0 → 2.81.0-alpha.1

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 (59) hide show
  1. package/lib/cjs/components/NavBar/NavBar.styles.d.ts +30 -0
  2. package/lib/cjs/components/NavBar/NavBar.styles.js +34 -1
  3. package/lib/cjs/components/NavBarSection/NavBarItemLink.js +1 -4
  4. package/lib/cjs/components/NavSideBar/Icon.test.d.ts +1 -0
  5. package/lib/cjs/components/NavSideBar/Icon.test.js +67 -0
  6. package/lib/cjs/components/NavSideBar/NavSideBar.d.ts +4 -0
  7. package/lib/cjs/components/NavSideBar/NavSideBar.js +115 -0
  8. package/lib/cjs/components/NavSideBar/NavSideBar.mdx +42 -0
  9. package/lib/cjs/components/NavSideBar/NavSideBar.stories.d.ts +8 -0
  10. package/lib/cjs/components/NavSideBar/NavSideBar.stories.js +1344 -0
  11. package/lib/cjs/components/NavSideBar/NavSideBar.test.d.ts +1 -0
  12. package/lib/cjs/components/NavSideBar/NavSideBar.test.js +311 -0
  13. package/lib/cjs/components/NavSideBar/NavSideBarHeader.d.ts +4 -0
  14. package/lib/cjs/components/NavSideBar/NavSideBarHeader.js +33 -0
  15. package/lib/cjs/components/NavSideBar/NavSideBarItem.d.ts +4 -0
  16. package/lib/cjs/components/NavSideBar/NavSideBarItem.js +112 -0
  17. package/lib/cjs/components/NavSideBar/NavSideBarSection.d.ts +4 -0
  18. package/lib/cjs/components/NavSideBar/NavSideBarSection.js +122 -0
  19. package/lib/cjs/components/NavSideBar/NavSideBarSectionHeader.d.ts +4 -0
  20. package/lib/cjs/components/NavSideBar/NavSideBarSectionHeader.js +98 -0
  21. package/lib/cjs/components/NavSideBar/NavSideBarSectionItem.d.ts +4 -0
  22. package/lib/cjs/components/NavSideBar/NavSideBarSectionItem.js +81 -0
  23. package/lib/cjs/components/NavSideBar/NavSideBarSubTitle.d.ts +4 -0
  24. package/lib/cjs/components/NavSideBar/NavSideBarSubTitle.js +25 -0
  25. package/lib/cjs/components/NavSideBar/icons.d.ts +15 -0
  26. package/lib/cjs/components/NavSideBar/icons.js +174 -0
  27. package/lib/cjs/components/NavSideBar/index.d.ts +5 -0
  28. package/lib/cjs/components/NavSideBar/index.js +42 -0
  29. package/lib/cjs/hooks/useNavBarStyling/useNavBarStyling.d.ts +1 -0
  30. package/lib/cjs/hooks/useNavBarStyling/useNavBarStyling.js +14 -3
  31. package/lib/cjs/hooks/useNavBarStyling/useNavBarStyling.test.js +1 -1
  32. package/lib/cjs/index.d.ts +2 -0
  33. package/lib/cjs/index.js +54 -35
  34. package/lib/cjs/types/index.d.ts +1 -0
  35. package/lib/cjs/types/index.js +28 -17
  36. package/lib/cjs/types/link.d.ts +1 -0
  37. package/lib/cjs/types/navSideBar.d.ts +75 -0
  38. package/lib/cjs/types/navSideBar.js +6 -0
  39. package/lib/components/NavBar/NavBar.styles.js +34 -1
  40. package/lib/components/NavBarSection/NavBarItemLink.js +1 -4
  41. package/lib/components/NavSideBar/Icon.test.js +58 -0
  42. package/lib/components/NavSideBar/NavSideBar.js +101 -0
  43. package/lib/components/NavSideBar/NavSideBar.mdx +42 -0
  44. package/lib/components/NavSideBar/NavSideBar.stories.js +1326 -0
  45. package/lib/components/NavSideBar/NavSideBar.test.js +308 -0
  46. package/lib/components/NavSideBar/NavSideBarHeader.js +19 -0
  47. package/lib/components/NavSideBar/NavSideBarItem.js +98 -0
  48. package/lib/components/NavSideBar/NavSideBarSection.js +108 -0
  49. package/lib/components/NavSideBar/NavSideBarSectionHeader.js +84 -0
  50. package/lib/components/NavSideBar/NavSideBarSectionItem.js +69 -0
  51. package/lib/components/NavSideBar/NavSideBarSubTitle.js +16 -0
  52. package/lib/components/NavSideBar/icons.js +102 -0
  53. package/lib/components/NavSideBar/index.js +5 -0
  54. package/lib/hooks/useNavBarStyling/useNavBarStyling.js +14 -3
  55. package/lib/hooks/useNavBarStyling/useNavBarStyling.test.js +1 -1
  56. package/lib/index.js +2 -0
  57. package/lib/types/index.js +1 -0
  58. package/lib/types/navSideBar.js +1 -0
  59. package/package.json +1 -1
@@ -0,0 +1,1326 @@
1
+ import _extends from "@babel/runtime-corejs3/helpers/esm/extends";
2
+ import _slicedToArray from "@babel/runtime-corejs3/helpers/esm/slicedToArray";
3
+ import _mapInstanceProperty from "@babel/runtime-corejs3/core-js-stable/instance/map";
4
+ import React, { useState } from 'react';
5
+ import { withDesign } from 'storybook-addon-designs';
6
+ import { v4 as uuid } from 'uuid';
7
+ import DocsLayout from '../../../.storybook/storybookDocsLayout';
8
+ import { Box, NavSideBar, Separator } from '../../index';
9
+ import { FIGMA_LINKS } from '../../utils/designUtils/figmaLinks';
10
+ import { AccountMultiple, Credentials, Earth, EmoticonHappy, Fingerprint, GlobeIcon, Logo, OpenInNew, ScaleBalance, TransitConnection, Verify, ViewDashboard, ViewGridPlusOutline } from './icons';
11
+ import NavSideBarReadme from './NavSideBar.mdx';
12
+ import NavSideBarHeader from './NavSideBarHeader';
13
+ import NavSideBarItem from './NavSideBarItem';
14
+ import NavSideBarSection from './NavSideBarSection';
15
+ import NavSideBarSectionItem from './NavSideBarSectionItem';
16
+ import NavSideBarSubTitle from './NavSideBarSubTitle';
17
+ import { jsx as ___EmotionJSX } from "@emotion/react";
18
+ export default {
19
+ title: 'Experimental/NavSideBar',
20
+ component: NavSideBar,
21
+ decorators: [withDesign],
22
+ parameters: {
23
+ docs: {
24
+ page: function page() {
25
+ return ___EmotionJSX(React.Fragment, null, ___EmotionJSX(NavSideBarReadme, null), ___EmotionJSX(DocsLayout, null));
26
+ }
27
+ }
28
+ },
29
+ argTypes: {},
30
+ args: {
31
+ title: 'Continue',
32
+ hasCloseButton: true
33
+ }
34
+ };
35
+ export var Default = function Default(args) {
36
+ return ___EmotionJSX(NavSideBar, args, ___EmotionJSX(NavSideBarHeader, {
37
+ key: "nav-side-bar-header",
38
+ linkProps: {
39
+ href: 'https://pingidentity.com/',
40
+ target: '_blank',
41
+ 'aria-label': 'home Link'
42
+ },
43
+ logo: Logo
44
+ }), ___EmotionJSX(Separator, {
45
+ m: "0",
46
+ backgroundColor: "neutral.60",
47
+ key: "top-separator"
48
+ }), ___EmotionJSX(Box, {
49
+ variant: "navBar.sectionContainer",
50
+ pb: "xl"
51
+ }, ___EmotionJSX(NavSideBarItem, {
52
+ key: "Overview",
53
+ icon: GlobeIcon,
54
+ id: "Overview"
55
+ }, "Overview"), ___EmotionJSX(Separator, {
56
+ variant: "separator.navBarSeparator"
57
+ }), ___EmotionJSX(NavSideBarSubTitle, null, "Dashboard Links"), ___EmotionJSX(NavSideBarSection, {
58
+ title: "Dashboard",
59
+ key: "Dashboard",
60
+ id: "Dashboard",
61
+ icon: ViewDashboard
62
+ }, ___EmotionJSX(NavSideBarSectionItem, {
63
+ key: "Dashboard Link Group",
64
+ linkProps: {
65
+ href: 'https://pingidentity.com/'
66
+ }
67
+ }, "Group"), ___EmotionJSX(NavSideBarSectionItem, {
68
+ key: "Dashboard Link Populations"
69
+ }, "Populations")), ___EmotionJSX(NavSideBarSection, {
70
+ title: "Identities",
71
+ key: "Identities",
72
+ id: "Identities",
73
+ icon: AccountMultiple
74
+ }, ___EmotionJSX(NavSideBarSectionItem, {
75
+ key: "Identities Link Users",
76
+ linkProps: {
77
+ href: 'https://pingidentity.com/'
78
+ }
79
+ }, "Users"), ___EmotionJSX(NavSideBarSectionItem, {
80
+ key: "Identities Link Groups",
81
+ linkProps: {
82
+ href: 'https://pingidentity.com/'
83
+ }
84
+ }, "Groups"), ___EmotionJSX(NavSideBarSectionItem, {
85
+ key: "Identities Link Populations",
86
+ linkProps: {
87
+ href: 'https://pingidentity.com/'
88
+ }
89
+ }, "Populations"), ___EmotionJSX(NavSideBarSectionItem, {
90
+ key: "Identities Link Attributes",
91
+ linkProps: {
92
+ href: 'https://pingidentity.com/'
93
+ }
94
+ }, "Attributes"), ___EmotionJSX(NavSideBarSectionItem, {
95
+ key: "Identities Link Roles"
96
+ }, "Roles")), ___EmotionJSX(NavSideBarSection, {
97
+ title: "Connections",
98
+ key: "Connections",
99
+ id: "Connections",
100
+ icon: TransitConnection
101
+ }, ___EmotionJSX(NavSideBarSubTitle, {
102
+ sx: {
103
+ ml: '45px'
104
+ },
105
+ key: "Connections Applications SubTitle"
106
+ }, "Applications"), ___EmotionJSX(NavSideBarSectionItem, {
107
+ key: "Connections Applications"
108
+ }, "Applications"), ___EmotionJSX(NavSideBarSectionItem, {
109
+ key: "Connections Application Catalog",
110
+ linkProps: {
111
+ href: 'https://pingidentity.com/'
112
+ }
113
+ }, "Application Catalog"), ___EmotionJSX(NavSideBarSectionItem, {
114
+ key: "Connections Application Portal",
115
+ linkProps: {
116
+ href: 'https://pingidentity.com/'
117
+ }
118
+ }, "Application Portal"), ___EmotionJSX(Separator, {
119
+ variant: "separator.navBarSubtitleSeparator"
120
+ }), ___EmotionJSX(NavSideBarSubTitle, {
121
+ key: "Identity Providers",
122
+ sx: {
123
+ ml: '45px'
124
+ }
125
+ }, "Identity Providers"), ___EmotionJSX(NavSideBarSectionItem, {
126
+ key: "Connections External IDPs",
127
+ linkProps: {
128
+ href: 'https://pingidentity.com/'
129
+ }
130
+ }, "External IDPs"), ___EmotionJSX(Separator, {
131
+ variant: "separator.navBarSubtitleSeparator"
132
+ }), ___EmotionJSX(NavSideBarSubTitle, {
133
+ key: "Ping Products",
134
+ sx: {
135
+ ml: '45px'
136
+ }
137
+ }, "Ping Products"), ___EmotionJSX(NavSideBarSectionItem, {
138
+ key: "Connections PingFederate",
139
+ linkProps: {
140
+ href: 'https://pingidentity.com/'
141
+ }
142
+ }, "PingFederate"), ___EmotionJSX(NavSideBarSectionItem, {
143
+ key: "Connections PingIntelligence",
144
+ linkProps: {
145
+ href: 'https://pingidentity.com/'
146
+ }
147
+ }, "PingIntelligence"), ___EmotionJSX(Separator, {
148
+ variant: "separator.navBarSubtitleSeparator"
149
+ }), ___EmotionJSX(NavSideBarSectionItem, {
150
+ key: "Connections Provisioning",
151
+ linkProps: {
152
+ href: 'https://pingidentity.com/'
153
+ }
154
+ }, "Provisioning"), ___EmotionJSX(NavSideBarSectionItem, {
155
+ key: "Connections WebHooks",
156
+ linkProps: {
157
+ href: 'https://pingidentity.com/'
158
+ }
159
+ }, "WebHooks"), ___EmotionJSX(NavSideBarSectionItem, {
160
+ key: "Connections Gateways",
161
+ linkProps: {
162
+ href: 'https://pingidentity.com/'
163
+ }
164
+ }, "Gateways"), ___EmotionJSX(NavSideBarSectionItem, {
165
+ key: "Connections Certificates & Key Pairs",
166
+ linkProps: {
167
+ href: 'https://pingidentity.com/'
168
+ }
169
+ }, "Certificates & Key Pairs"), ___EmotionJSX(NavSideBarSectionItem, {
170
+ key: "Connections Resources"
171
+ }, "Resources")), ___EmotionJSX(NavSideBarSection, {
172
+ title: "Experiences",
173
+ key: "Experiences",
174
+ id: "Experiences",
175
+ icon: EmoticonHappy
176
+ }, ___EmotionJSX(NavSideBarSubTitle, {
177
+ key: "Experience Policies",
178
+ sx: {
179
+ ml: '45px'
180
+ }
181
+ }, "Policies"), ___EmotionJSX(NavSideBarSectionItem, {
182
+ key: "Experiences Authentication",
183
+ linkProps: {
184
+ href: 'https://pingidentity.com/'
185
+ }
186
+ }, "Authentication"), ___EmotionJSX(NavSideBarSectionItem, {
187
+ key: "Experiences MFA",
188
+ linkProps: {
189
+ href: 'https://pingidentity.com/'
190
+ }
191
+ }, "MFA"), ___EmotionJSX(NavSideBarSectionItem, {
192
+ key: "Experiences Password",
193
+ linkProps: {
194
+ href: 'https://pingidentity.com/'
195
+ }
196
+ }, "Password"), ___EmotionJSX(Separator, {
197
+ variant: "separator.navBarSubtitleSeparator"
198
+ }), ___EmotionJSX(NavSideBarSectionItem, {
199
+ key: "Experiences Risk",
200
+ linkProps: {
201
+ href: 'https://pingidentity.com/'
202
+ }
203
+ }, "Risk"), ___EmotionJSX(NavSideBarSectionItem, {
204
+ key: "Experiences Flows",
205
+ linkProps: {
206
+ href: 'https://pingidentity.com/'
207
+ }
208
+ }, "Flows"), ___EmotionJSX(NavSideBarSectionItem, {
209
+ key: "Experiences Forms",
210
+ linkProps: {
211
+ href: 'https://pingidentity.com/'
212
+ }
213
+ }, "Forms"), ___EmotionJSX(NavSideBarSectionItem, {
214
+ key: "Experiences Language",
215
+ linkProps: {
216
+ href: 'https://pingidentity.com/'
217
+ }
218
+ }, "Languages"), ___EmotionJSX(NavSideBarSectionItem, {
219
+ key: "Experiences Agreements",
220
+ linkProps: {
221
+ href: 'https://pingidentity.com/'
222
+ }
223
+ }, "Agreements"), ___EmotionJSX(NavSideBarSectionItem, {
224
+ key: "Experiences Branding & Themes",
225
+ linkProps: {
226
+ href: 'https://pingidentity.com/'
227
+ }
228
+ }, "Branding & Themes"), ___EmotionJSX(NavSideBarSectionItem, {
229
+ key: "Experiences Notifications",
230
+ linkProps: {
231
+ href: 'https://pingidentity.com/'
232
+ }
233
+ }, "Notifications"), ___EmotionJSX(NavSideBarSectionItem, {
234
+ key: "Experiences Vanity Domains",
235
+ linkProps: {
236
+ href: 'https://pingidentity.com/'
237
+ },
238
+ onClick: function onClick(e) {
239
+ return e.preventDefault();
240
+ }
241
+ }, "Vanity Domains"), ___EmotionJSX(NavSideBarSectionItem, {
242
+ key: "Experiences Sender"
243
+ }, "Sender")), ___EmotionJSX(Separator, {
244
+ variant: "separator.navBarSeparator"
245
+ }), ___EmotionJSX(NavSideBarSubTitle, null, "PingOne Services"), ___EmotionJSX(NavSideBarItem, {
246
+ key: "DaVinci",
247
+ id: "DaVinci",
248
+ icon: ViewGridPlusOutline,
249
+ customIcon: OpenInNew,
250
+ linkProps: {
251
+ href: 'https://pingidentity.com/',
252
+ 'aria-label': 'DaVinci Link'
253
+ }
254
+ }, "DaVinci"), ___EmotionJSX(NavSideBarSection, {
255
+ title: "MFA",
256
+ key: "MFA",
257
+ id: "MFA",
258
+ icon: Fingerprint
259
+ }, ___EmotionJSX(NavSideBarSectionItem, {
260
+ key: "MFA Button Users"
261
+ }, "Users"), ___EmotionJSX(Separator, {
262
+ variant: "separator.navBarSubtitleSeparator"
263
+ }), ___EmotionJSX(NavSideBarSubTitle, {
264
+ key: "PingOne Services",
265
+ sx: {
266
+ ml: '45px'
267
+ }
268
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
269
+ key: "MFA Button Group"
270
+ }, "Group Test")), ___EmotionJSX(NavSideBarSection, {
271
+ title: "Risk",
272
+ key: "Risk",
273
+ id: "Risk",
274
+ icon: ScaleBalance
275
+ }, ___EmotionJSX(NavSideBarSectionItem, {
276
+ key: "Risk Button Users"
277
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
278
+ key: "PingOne Services",
279
+ sx: {
280
+ ml: '45px'
281
+ }
282
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
283
+ key: "Risk Button Group"
284
+ }, "Group")), ___EmotionJSX(NavSideBarSection, {
285
+ title: "Verify",
286
+ key: "Verify",
287
+ id: "Verify",
288
+ icon: Verify
289
+ }, ___EmotionJSX(NavSideBarSectionItem, {
290
+ key: "Verify Button Users"
291
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
292
+ key: "PingOne Services",
293
+ sx: {
294
+ ml: '45px'
295
+ }
296
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
297
+ key: "Verify Button Group"
298
+ }, "Group")), ___EmotionJSX(NavSideBarSection, {
299
+ title: "Credentials",
300
+ key: "Credentials",
301
+ id: "Credentials",
302
+ icon: Credentials
303
+ }, ___EmotionJSX(NavSideBarSectionItem, {
304
+ key: "Credentials Button Users"
305
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
306
+ key: "PingOne Services",
307
+ sx: {
308
+ ml: '45px'
309
+ }
310
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
311
+ key: "Credentials Button Group"
312
+ }, "Group")), ___EmotionJSX(Separator, {
313
+ variant: "separator.navBarSeparator"
314
+ }), ___EmotionJSX(NavSideBarSection, {
315
+ title: "Environment title that is so long, it wraps",
316
+ key: "Environment",
317
+ id: "Environment",
318
+ icon: Earth
319
+ }, ___EmotionJSX(NavSideBarSectionItem, {
320
+ key: "Earth Button Users"
321
+ }, "Users"), ___EmotionJSX(NavSideBarSectionItem, {
322
+ key: "Earth Button Group"
323
+ }, "Group"))));
324
+ };
325
+ Default.parameters = {
326
+ design: {
327
+ type: 'figma',
328
+ url: FIGMA_LINKS.navBar["default"]
329
+ }
330
+ };
331
+ export var Controlled = function Controlled(args) {
332
+ var _useState = useState('Dashboard Link Group'),
333
+ _useState2 = _slicedToArray(_useState, 2),
334
+ selectedKey = _useState2[0],
335
+ setSelectedKey = _useState2[1];
336
+ return ___EmotionJSX(NavSideBar, _extends({}, args, {
337
+ setSelectedKey: setSelectedKey,
338
+ selectedKey: selectedKey
339
+ }), ___EmotionJSX(NavSideBarHeader, {
340
+ key: "nav-side-bar-header",
341
+ linkProps: {
342
+ href: 'https://pingidentity.com/',
343
+ target: '_blank',
344
+ 'aria-label': 'home Link'
345
+ },
346
+ logo: Logo
347
+ }), ___EmotionJSX(Separator, {
348
+ m: "0",
349
+ backgroundColor: "neutral.60",
350
+ key: "top-separator"
351
+ }), ___EmotionJSX(Box, {
352
+ variant: "navBar.sectionContainer",
353
+ paddingBottom: "xl",
354
+ key: "first-section-container"
355
+ }, ___EmotionJSX(NavSideBarItem, {
356
+ key: "Overview",
357
+ icon: GlobeIcon,
358
+ id: "Overview"
359
+ }, "Overview"), ___EmotionJSX(Separator, {
360
+ variant: "separator.navBarSeparator"
361
+ }), ___EmotionJSX(NavSideBarSubTitle, null, "Dashboard Links"), ___EmotionJSX(NavSideBarSection, {
362
+ title: "Dashboard",
363
+ key: "Dashboard",
364
+ id: "Dashboard",
365
+ icon: ViewDashboard
366
+ }, ___EmotionJSX(NavSideBarSectionItem, {
367
+ key: "Dashboard Link Group",
368
+ linkProps: {
369
+ href: 'https://pingidentity.com/'
370
+ }
371
+ }, "Group"), ___EmotionJSX(NavSideBarSectionItem, {
372
+ key: "Dashboard Link Populations",
373
+ onPress: function onPress() {
374
+ setSelectedKey('MFA Button Users');
375
+ }
376
+ }, "Populations")), ___EmotionJSX(NavSideBarSection, {
377
+ title: "Identities",
378
+ key: "Identities",
379
+ id: "Identities",
380
+ icon: AccountMultiple
381
+ }, ___EmotionJSX(NavSideBarSectionItem, {
382
+ key: "Identities Link Users",
383
+ linkProps: {
384
+ href: 'https://pingidentity.com/'
385
+ },
386
+ onClick: function onClick(e) {
387
+ return e.preventDefault();
388
+ }
389
+ }, "Users"), ___EmotionJSX(NavSideBarSectionItem, {
390
+ key: "Identities Link Groups",
391
+ linkProps: {
392
+ href: 'https://pingidentity.com/'
393
+ }
394
+ }, "Groups"), ___EmotionJSX(NavSideBarSectionItem, {
395
+ key: "Identities Link Populations",
396
+ linkProps: {
397
+ href: 'https://pingidentity.com/'
398
+ }
399
+ }, "Populations"), ___EmotionJSX(NavSideBarSectionItem, {
400
+ key: "Identities Link Attributes",
401
+ linkProps: {
402
+ href: 'https://pingidentity.com/'
403
+ }
404
+ }, "Attributes"), ___EmotionJSX(NavSideBarSectionItem, {
405
+ key: "Identities Link Roles"
406
+ }, "Roles")), ___EmotionJSX(NavSideBarSection, {
407
+ title: "Connections",
408
+ key: "Connections",
409
+ id: "Connections",
410
+ icon: TransitConnection
411
+ }, ___EmotionJSX(NavSideBarSubTitle, {
412
+ key: "Connections Applications SubTitle",
413
+ sx: {
414
+ ml: '45px'
415
+ }
416
+ }, "Applications"), ___EmotionJSX(NavSideBarSectionItem, {
417
+ key: "Connections Applications"
418
+ }, "Applications"), ___EmotionJSX(NavSideBarSectionItem, {
419
+ key: "Connections Application Catalog",
420
+ linkProps: {
421
+ href: 'https://pingidentity.com/'
422
+ }
423
+ }, "Application Catalog"), ___EmotionJSX(NavSideBarSectionItem, {
424
+ key: "Connections Application Portal",
425
+ linkProps: {
426
+ href: 'https://pingidentity.com/'
427
+ }
428
+ }, "Application Portal"), ___EmotionJSX(Separator, {
429
+ variant: "separator.navBarSubtitleSeparator"
430
+ }), ___EmotionJSX(NavSideBarSubTitle, {
431
+ key: "Identity Providers",
432
+ sx: {
433
+ ml: '45px'
434
+ }
435
+ }, "Identity Providers"), ___EmotionJSX(NavSideBarSectionItem, {
436
+ key: "Connections External IDPs",
437
+ linkProps: {
438
+ href: 'https://pingidentity.com/'
439
+ }
440
+ }, "External IDPs"), ___EmotionJSX(Separator, {
441
+ variant: "separator.navBarSubtitleSeparator"
442
+ }), ___EmotionJSX(NavSideBarSubTitle, {
443
+ key: "Ping Products",
444
+ sx: {
445
+ ml: '45px'
446
+ }
447
+ }, "Ping Products"), ___EmotionJSX(NavSideBarSectionItem, {
448
+ key: "Connections PingFederate",
449
+ linkProps: {
450
+ href: 'https://pingidentity.com/'
451
+ }
452
+ }, "PingFederate"), ___EmotionJSX(NavSideBarSectionItem, {
453
+ key: "Connections PingIntelligence",
454
+ linkProps: {
455
+ href: 'https://pingidentity.com/'
456
+ }
457
+ }, "PingIntelligence"), ___EmotionJSX(Separator, {
458
+ variant: "separator.navBarSubtitleSeparator"
459
+ }), ___EmotionJSX(NavSideBarSectionItem, {
460
+ key: "Connections Provisioning",
461
+ linkProps: {
462
+ href: 'https://pingidentity.com/'
463
+ }
464
+ }, "Provisioning"), ___EmotionJSX(NavSideBarSectionItem, {
465
+ key: "Connections WebHooks",
466
+ linkProps: {
467
+ href: 'https://pingidentity.com/'
468
+ }
469
+ }, "WebHooks"), ___EmotionJSX(NavSideBarSectionItem, {
470
+ key: "Connections Gateways",
471
+ linkProps: {
472
+ href: 'https://pingidentity.com/'
473
+ }
474
+ }, "Gateways"), ___EmotionJSX(NavSideBarSectionItem, {
475
+ key: "Connections Certificates & Key Pairs",
476
+ linkProps: {
477
+ href: 'https://pingidentity.com/'
478
+ }
479
+ }, "Certificates & Key Pairs"), ___EmotionJSX(NavSideBarSectionItem, {
480
+ key: "Connections Resources"
481
+ }, "Resources")), ___EmotionJSX(NavSideBarSection, {
482
+ title: "Experiences",
483
+ key: "Experiences",
484
+ id: "Experiences",
485
+ icon: EmoticonHappy
486
+ }, ___EmotionJSX(NavSideBarSubTitle, {
487
+ key: "Experience Policies",
488
+ sx: {
489
+ ml: '45px'
490
+ }
491
+ }, "Policies"), ___EmotionJSX(NavSideBarSectionItem, {
492
+ key: "Experiences Authentication",
493
+ linkProps: {
494
+ href: 'https://pingidentity.com/'
495
+ }
496
+ }, "Authentication"), ___EmotionJSX(NavSideBarSectionItem, {
497
+ key: "Experiences MFA",
498
+ linkProps: {
499
+ href: 'https://pingidentity.com/'
500
+ }
501
+ }, "MFA"), ___EmotionJSX(NavSideBarSectionItem, {
502
+ key: "Experiences Password",
503
+ linkProps: {
504
+ href: 'https://pingidentity.com/'
505
+ }
506
+ }, "Password"), ___EmotionJSX(Separator, {
507
+ variant: "separator.navBarSubtitleSeparator"
508
+ }), ___EmotionJSX(NavSideBarSectionItem, {
509
+ key: "Experiences Risk",
510
+ linkProps: {
511
+ href: 'https://pingidentity.com/'
512
+ }
513
+ }, "Risk"), ___EmotionJSX(NavSideBarSectionItem, {
514
+ key: "Experiences Flows",
515
+ linkProps: {
516
+ href: 'https://pingidentity.com/'
517
+ }
518
+ }, "Flows"), ___EmotionJSX(NavSideBarSectionItem, {
519
+ key: "Experiences Forms",
520
+ linkProps: {
521
+ href: 'https://pingidentity.com/'
522
+ }
523
+ }, "Forms"), ___EmotionJSX(NavSideBarSectionItem, {
524
+ key: "Experiences Language",
525
+ linkProps: {
526
+ href: 'https://pingidentity.com/'
527
+ }
528
+ }, "Languages"), ___EmotionJSX(NavSideBarSectionItem, {
529
+ key: "Experiences Agreements",
530
+ linkProps: {
531
+ href: 'https://pingidentity.com/'
532
+ }
533
+ }, "Agreements"), ___EmotionJSX(NavSideBarSectionItem, {
534
+ key: "Experiences Branding & Themes",
535
+ linkProps: {
536
+ href: 'https://pingidentity.com/'
537
+ }
538
+ }, "Branding & Themes"), ___EmotionJSX(NavSideBarSectionItem, {
539
+ key: "Experiences Notifications",
540
+ linkProps: {
541
+ href: 'https://pingidentity.com/'
542
+ }
543
+ }, "Notifications"), ___EmotionJSX(NavSideBarSectionItem, {
544
+ key: "Experiences Vanity Domains",
545
+ linkProps: {
546
+ href: 'https://pingidentity.com/'
547
+ },
548
+ onClick: function onClick(e) {
549
+ return e.preventDefault();
550
+ }
551
+ }, "Vanity Domains"), ___EmotionJSX(NavSideBarSectionItem, {
552
+ key: "Experiences Sender"
553
+ }, "Sender")), ___EmotionJSX(Separator, {
554
+ variant: "separator.navBarSeparator"
555
+ }), ___EmotionJSX(NavSideBarSubTitle, null, "PingOne Services"), ___EmotionJSX(NavSideBarItem, {
556
+ key: "DaVinci",
557
+ id: "DaVinci",
558
+ icon: ViewGridPlusOutline,
559
+ customIcon: OpenInNew,
560
+ linkProps: {
561
+ href: 'https://pingidentity.com/',
562
+ 'aria-label': 'DaVinci Link'
563
+ }
564
+ }, "DaVinci"), ___EmotionJSX(NavSideBarSection, {
565
+ title: "MFA",
566
+ key: "MFA",
567
+ id: "MFA",
568
+ icon: Fingerprint
569
+ }, ___EmotionJSX(NavSideBarSectionItem, {
570
+ key: "MFA Button Users"
571
+ }, "Users"), ___EmotionJSX(Separator, {
572
+ variant: "separator.navBarSubtitleSeparator"
573
+ }), ___EmotionJSX(NavSideBarSubTitle, {
574
+ key: "PingOne Services",
575
+ sx: {
576
+ ml: '45px'
577
+ }
578
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
579
+ key: "MFA Button Group"
580
+ }, "Group Test")), ___EmotionJSX(NavSideBarSection, {
581
+ title: "Risk",
582
+ key: "Risk",
583
+ id: "Risk",
584
+ icon: ScaleBalance
585
+ }, ___EmotionJSX(NavSideBarSectionItem, {
586
+ key: "Risk Button Users"
587
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
588
+ key: "PingOne Services",
589
+ sx: {
590
+ ml: '45px'
591
+ }
592
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
593
+ key: "Risk Button Group"
594
+ }, "Group")), ___EmotionJSX(NavSideBarSection, {
595
+ title: "Verify",
596
+ key: "Verify",
597
+ id: "Verify",
598
+ icon: Verify
599
+ }, ___EmotionJSX(NavSideBarSectionItem, {
600
+ key: "Verify Button Users"
601
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
602
+ key: "PingOne Services",
603
+ sx: {
604
+ ml: '45px'
605
+ }
606
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
607
+ key: "Verify Button Group"
608
+ }, "Group")), ___EmotionJSX(NavSideBarSection, {
609
+ title: "Credentials",
610
+ key: "Credentials",
611
+ id: "Credentials",
612
+ icon: Credentials
613
+ }, ___EmotionJSX(NavSideBarSectionItem, {
614
+ key: "Credentials Button Users"
615
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
616
+ key: "PingOne Services",
617
+ sx: {
618
+ ml: '45px'
619
+ }
620
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
621
+ key: "Credentials Button Group"
622
+ }, "Group")), ___EmotionJSX(Separator, {
623
+ variant: "separator.navBarSeparator"
624
+ }), ___EmotionJSX(NavSideBarSection, {
625
+ title: "Environment title that is so long, it wraps",
626
+ key: "Environment",
627
+ id: "Environment",
628
+ icon: Earth
629
+ }, ___EmotionJSX(NavSideBarSectionItem, {
630
+ key: "Earth Button Users"
631
+ }, "Users"), ___EmotionJSX(NavSideBarSectionItem, {
632
+ key: "Earth Button Group"
633
+ }, "Group"))));
634
+ };
635
+ export var AutoCollapse = function AutoCollapse(args) {
636
+ return ___EmotionJSX(NavSideBar, _extends({}, args, {
637
+ isAutoСollapsible: true
638
+ }), ___EmotionJSX(NavSideBarHeader, {
639
+ key: "nav-side-bar-header",
640
+ linkProps: {
641
+ href: 'https://pingidentity.com/',
642
+ target: '_blank',
643
+ 'aria-label': 'home Link'
644
+ },
645
+ logo: Logo
646
+ }), ___EmotionJSX(Separator, {
647
+ m: "0",
648
+ backgroundColor: "neutral.60",
649
+ key: "top-separator"
650
+ }), ___EmotionJSX(Box, {
651
+ variant: "navBar.sectionContainer",
652
+ paddingBottom: "xl",
653
+ key: "first-section-container"
654
+ }, ___EmotionJSX(NavSideBarItem, {
655
+ key: "Overview",
656
+ icon: GlobeIcon,
657
+ id: "Overview"
658
+ }, "Overview"), ___EmotionJSX(Separator, {
659
+ variant: "separator.navBarSeparator"
660
+ }), ___EmotionJSX(NavSideBarSubTitle, null, "Dashboard Links"), ___EmotionJSX(NavSideBarSection, {
661
+ title: "Dashboard",
662
+ key: "Dashboard",
663
+ id: "Dashboard",
664
+ icon: ViewDashboard
665
+ }, ___EmotionJSX(NavSideBarSectionItem, {
666
+ key: "Dashboard Link Group",
667
+ linkProps: {
668
+ href: 'https://pingidentity.com/'
669
+ }
670
+ }, "Group"), ___EmotionJSX(NavSideBarSectionItem, {
671
+ key: "Dashboard Link Populations"
672
+ }, "Populations")), ___EmotionJSX(NavSideBarSection, {
673
+ title: "Identities",
674
+ key: "Identities",
675
+ id: "Identities",
676
+ icon: AccountMultiple
677
+ }, ___EmotionJSX(NavSideBarSectionItem, {
678
+ key: "Identities Link Users",
679
+ linkProps: {
680
+ href: 'https://pingidentity.com/'
681
+ }
682
+ }, "Users"), ___EmotionJSX(NavSideBarSectionItem, {
683
+ key: "Identities Link Groups",
684
+ linkProps: {
685
+ href: 'https://pingidentity.com/'
686
+ }
687
+ }, "Groups"), ___EmotionJSX(NavSideBarSectionItem, {
688
+ key: "Identities Link Populations",
689
+ linkProps: {
690
+ href: 'https://pingidentity.com/'
691
+ }
692
+ }, "Populations"), ___EmotionJSX(NavSideBarSectionItem, {
693
+ key: "Identities Link Attributes",
694
+ linkProps: {
695
+ href: 'https://pingidentity.com/'
696
+ }
697
+ }, "Attributes"), ___EmotionJSX(NavSideBarSectionItem, {
698
+ key: "Identities Link Roles"
699
+ }, "Roles")), ___EmotionJSX(NavSideBarSection, {
700
+ title: "Connections",
701
+ key: "Connections",
702
+ id: "Connections",
703
+ icon: TransitConnection
704
+ }, ___EmotionJSX(NavSideBarSubTitle, {
705
+ key: "Connections Applications SubTitle",
706
+ sx: {
707
+ ml: '45px'
708
+ }
709
+ }, "Applications"), ___EmotionJSX(NavSideBarSectionItem, {
710
+ key: "Connections Applications"
711
+ }, "Applications"), ___EmotionJSX(NavSideBarSectionItem, {
712
+ key: "Connections Application Catalog",
713
+ linkProps: {
714
+ href: 'https://pingidentity.com/'
715
+ }
716
+ }, "Application Catalog"), ___EmotionJSX(NavSideBarSectionItem, {
717
+ key: "Connections Application Portal",
718
+ linkProps: {
719
+ href: 'https://pingidentity.com/'
720
+ }
721
+ }, "Application Portal"), ___EmotionJSX(Separator, {
722
+ variant: "separator.navBarSubtitleSeparator"
723
+ }), ___EmotionJSX(NavSideBarSubTitle, {
724
+ key: "Identity Providers",
725
+ sx: {
726
+ ml: '45px'
727
+ }
728
+ }, "Identity Providers"), ___EmotionJSX(NavSideBarSectionItem, {
729
+ key: "Connections External IDPs",
730
+ linkProps: {
731
+ href: 'https://pingidentity.com/'
732
+ }
733
+ }, "External IDPs"), ___EmotionJSX(Separator, {
734
+ variant: "separator.navBarSubtitleSeparator"
735
+ }), ___EmotionJSX(NavSideBarSubTitle, {
736
+ key: "Ping Products",
737
+ sx: {
738
+ ml: '45px'
739
+ }
740
+ }, "Ping Products"), ___EmotionJSX(NavSideBarSectionItem, {
741
+ key: "Connections PingFederate",
742
+ linkProps: {
743
+ href: 'https://pingidentity.com/'
744
+ }
745
+ }, "PingFederate"), ___EmotionJSX(NavSideBarSectionItem, {
746
+ key: "Connections PingIntelligence",
747
+ linkProps: {
748
+ href: 'https://pingidentity.com/'
749
+ }
750
+ }, "PingIntelligence"), ___EmotionJSX(Separator, {
751
+ variant: "separator.navBarSubtitleSeparator"
752
+ }), ___EmotionJSX(NavSideBarSectionItem, {
753
+ key: "Connections Provisioning",
754
+ linkProps: {
755
+ href: 'https://pingidentity.com/'
756
+ }
757
+ }, "Provisioning"), ___EmotionJSX(NavSideBarSectionItem, {
758
+ key: "Connections WebHooks",
759
+ linkProps: {
760
+ href: 'https://pingidentity.com/'
761
+ }
762
+ }, "WebHooks"), ___EmotionJSX(NavSideBarSectionItem, {
763
+ key: "Connections Gateways",
764
+ linkProps: {
765
+ href: 'https://pingidentity.com/'
766
+ }
767
+ }, "Gateways"), ___EmotionJSX(NavSideBarSectionItem, {
768
+ key: "Connections Certificates & Key Pairs",
769
+ linkProps: {
770
+ href: 'https://pingidentity.com/'
771
+ }
772
+ }, "Certificates & Key Pairs"), ___EmotionJSX(NavSideBarSectionItem, {
773
+ key: "Connections Resources"
774
+ }, "Resources")), ___EmotionJSX(NavSideBarSection, {
775
+ title: "Experiences",
776
+ key: "Experiences",
777
+ id: "Experiences",
778
+ icon: EmoticonHappy
779
+ }, ___EmotionJSX(NavSideBarSubTitle, {
780
+ key: "Experience Policies",
781
+ sx: {
782
+ ml: '45px'
783
+ }
784
+ }, "Policies"), ___EmotionJSX(NavSideBarSectionItem, {
785
+ key: "Experiences Authentication",
786
+ linkProps: {
787
+ href: 'https://pingidentity.com/'
788
+ }
789
+ }, "Authentication"), ___EmotionJSX(NavSideBarSectionItem, {
790
+ key: "Experiences MFA",
791
+ linkProps: {
792
+ href: 'https://pingidentity.com/'
793
+ }
794
+ }, "MFA"), ___EmotionJSX(NavSideBarSectionItem, {
795
+ key: "Experiences Password",
796
+ linkProps: {
797
+ href: 'https://pingidentity.com/'
798
+ }
799
+ }, "Password"), ___EmotionJSX(Separator, {
800
+ variant: "separator.navBarSubtitleSeparator"
801
+ }), ___EmotionJSX(NavSideBarSectionItem, {
802
+ key: "Experiences Risk",
803
+ linkProps: {
804
+ href: 'https://pingidentity.com/'
805
+ }
806
+ }, "Risk"), ___EmotionJSX(NavSideBarSectionItem, {
807
+ key: "Experiences Flows",
808
+ linkProps: {
809
+ href: 'https://pingidentity.com/'
810
+ }
811
+ }, "Flows"), ___EmotionJSX(NavSideBarSectionItem, {
812
+ key: "Experiences Forms",
813
+ linkProps: {
814
+ href: 'https://pingidentity.com/'
815
+ }
816
+ }, "Forms"), ___EmotionJSX(NavSideBarSectionItem, {
817
+ key: "Experiences Language",
818
+ linkProps: {
819
+ href: 'https://pingidentity.com/'
820
+ }
821
+ }, "Languages"), ___EmotionJSX(NavSideBarSectionItem, {
822
+ key: "Experiences Agreements",
823
+ linkProps: {
824
+ href: 'https://pingidentity.com/'
825
+ }
826
+ }, "Agreements"), ___EmotionJSX(NavSideBarSectionItem, {
827
+ key: "Experiences Branding & Themes",
828
+ linkProps: {
829
+ href: 'https://pingidentity.com/'
830
+ }
831
+ }, "Branding & Themes"), ___EmotionJSX(NavSideBarSectionItem, {
832
+ key: "Experiences Notifications",
833
+ linkProps: {
834
+ href: 'https://pingidentity.com/'
835
+ }
836
+ }, "Notifications"), ___EmotionJSX(NavSideBarSectionItem, {
837
+ key: "Experiences Vanity Domains",
838
+ linkProps: {
839
+ href: 'https://pingidentity.com/'
840
+ },
841
+ onClick: function onClick(e) {
842
+ return e.preventDefault();
843
+ }
844
+ }, "Vanity Domains"), ___EmotionJSX(NavSideBarSectionItem, {
845
+ key: "Experiences Sender"
846
+ }, "Sender")), ___EmotionJSX(Separator, {
847
+ variant: "separator.navBarSeparator"
848
+ }), ___EmotionJSX(NavSideBarSubTitle, null, "PingOne Services"), ___EmotionJSX(NavSideBarItem, {
849
+ key: "DaVinci",
850
+ id: "DaVinci",
851
+ icon: ViewGridPlusOutline,
852
+ customIcon: OpenInNew,
853
+ linkProps: {
854
+ href: 'https://pingidentity.com/',
855
+ 'aria-label': 'DaVinci Link'
856
+ }
857
+ }, "DaVinci"), ___EmotionJSX(NavSideBarSection, {
858
+ title: "MFA",
859
+ key: "MFA",
860
+ id: "MFA",
861
+ icon: Fingerprint
862
+ }, ___EmotionJSX(NavSideBarSectionItem, {
863
+ key: "MFA Button Users"
864
+ }, "Users"), ___EmotionJSX(Separator, {
865
+ variant: "separator.navBarSubtitleSeparator"
866
+ }), ___EmotionJSX(NavSideBarSubTitle, {
867
+ key: "PingOne Services",
868
+ sx: {
869
+ ml: '45px'
870
+ }
871
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
872
+ key: "MFA Button Group"
873
+ }, "Group Test")), ___EmotionJSX(NavSideBarSection, {
874
+ title: "Risk",
875
+ key: "Risk",
876
+ id: "Risk",
877
+ icon: ScaleBalance
878
+ }, ___EmotionJSX(NavSideBarSectionItem, {
879
+ key: "Risk Button Users"
880
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
881
+ key: "PingOne Services",
882
+ sx: {
883
+ ml: '45px'
884
+ }
885
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
886
+ key: "Risk Button Group"
887
+ }, "Group")), ___EmotionJSX(NavSideBarSection, {
888
+ title: "Verify",
889
+ key: "Verify",
890
+ id: "Verify",
891
+ icon: Verify
892
+ }, ___EmotionJSX(NavSideBarSectionItem, {
893
+ key: "Verify Button Users"
894
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
895
+ key: "PingOne Services",
896
+ sx: {
897
+ ml: '45px'
898
+ }
899
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
900
+ key: "Verify Button Group"
901
+ }, "Group")), ___EmotionJSX(NavSideBarSection, {
902
+ title: "Credentials",
903
+ key: "Credentials",
904
+ id: "Credentials",
905
+ icon: Credentials
906
+ }, ___EmotionJSX(NavSideBarSectionItem, {
907
+ key: "Credentials Button Users"
908
+ }, "Users"), ___EmotionJSX(NavSideBarSubTitle, {
909
+ key: "PingOne Services",
910
+ sx: {
911
+ ml: '45px'
912
+ }
913
+ }, "PingOne Services"), ___EmotionJSX(NavSideBarSectionItem, {
914
+ key: "Credentials Button Group"
915
+ }, "Group")), ___EmotionJSX(Separator, {
916
+ variant: "separator.navBarSeparator"
917
+ }), ___EmotionJSX(NavSideBarSection, {
918
+ title: "Environment title that is so long, it wraps",
919
+ key: "Environment",
920
+ id: "Environment",
921
+ icon: Earth
922
+ }, ___EmotionJSX(NavSideBarSectionItem, {
923
+ key: "Earth Button Users"
924
+ }, "Users"), ___EmotionJSX(NavSideBarSectionItem, {
925
+ key: "Earth Button Group"
926
+ }, "Group"))));
927
+ };
928
+ export var Dynamic = function Dynamic(args) {
929
+ var navSideBarSectionItems = [{
930
+ 'data-id': 'overview',
931
+ icon: GlobeIcon,
932
+ key: 'Overview',
933
+ heading: 'Overview'
934
+ }, {
935
+ type: 'separator'
936
+ }, {
937
+ type: 'subTitle',
938
+ key: 'Dashboard Links SubHeading',
939
+ text: 'Dashboard Links'
940
+ }, {
941
+ 'data-id': 'dashboard-data-id',
942
+ heading: 'Dashboard',
943
+ icon: ViewDashboard,
944
+ key: 'Dashboard',
945
+ children: [{
946
+ key: 'Dashboard Link Group',
947
+ linkProps: {
948
+ href: 'https://pingidentity.com/'
949
+ },
950
+ text: 'Group'
951
+ }, {
952
+ key: 'Dashboard Button Populations',
953
+ text: 'Populations'
954
+ }]
955
+ }, {
956
+ 'data-id': 'identities-data-id',
957
+ icon: AccountMultiple,
958
+ key: 'Identities',
959
+ heading: 'Identities',
960
+ children: [{
961
+ key: 'Identity Link Users',
962
+ linkProps: {
963
+ href: 'https://pingidentity.com/'
964
+ },
965
+ text: 'Users'
966
+ }, {
967
+ key: 'Identity Link Groups',
968
+ linkProps: {
969
+ href: 'https://pingidentity.com/'
970
+ },
971
+ text: 'Groups'
972
+ }, {
973
+ key: 'Identity Link Populations',
974
+ linkProps: {
975
+ href: 'https://pingidentity.com/'
976
+ },
977
+ text: 'Populations'
978
+ }, {
979
+ key: 'Identities Link Attributes',
980
+ linkProps: {
981
+ href: 'https://pingidentity.com/'
982
+ },
983
+ text: 'Attributes'
984
+ }, {
985
+ key: 'Identities Button Roles',
986
+ text: 'Roles'
987
+ }]
988
+ }, {
989
+ 'data-id': 'connections-data-id',
990
+ icon: TransitConnection,
991
+ key: 'Connections',
992
+ heading: 'Connections',
993
+ children: [{
994
+ type: 'subTitle',
995
+ key: 'Connections Applications SubHeading',
996
+ text: 'Applications'
997
+ }, {
998
+ key: 'Connections Link Applications',
999
+ linkProps: {
1000
+ href: 'https://pingidentity.com/'
1001
+ },
1002
+ text: 'Applications'
1003
+ }, {
1004
+ key: 'Connections Link Application Catalog',
1005
+ linkProps: {
1006
+ href: 'https://pingidentity.com/'
1007
+ },
1008
+ text: 'Application Catalog'
1009
+ }, {
1010
+ key: 'Connections Link Application Portal',
1011
+ linkProps: {
1012
+ href: 'https://pingidentity.com/'
1013
+ },
1014
+ text: 'Application Portal'
1015
+ }, {
1016
+ type: 'separator'
1017
+ }, {
1018
+ type: 'subTitle',
1019
+ key: 'Identity Providers SubHeading',
1020
+ text: 'Identity Providers'
1021
+ }, {
1022
+ key: 'Connections Link External IDPs',
1023
+ linkProps: {
1024
+ href: 'https://pingidentity.com/'
1025
+ },
1026
+ text: 'External IDPs'
1027
+ }, {
1028
+ type: 'separator'
1029
+ }, {
1030
+ type: 'subTitle',
1031
+ key: 'Ping Products SubHeading',
1032
+ text: 'Ping Products'
1033
+ }, {
1034
+ key: 'Connections Link PingFederate',
1035
+ linkProps: {
1036
+ href: 'https://pingidentity.com/'
1037
+ },
1038
+ text: 'PingFederate'
1039
+ }, {
1040
+ key: 'Connections Link PingIntelligence',
1041
+ linkProps: {
1042
+ href: 'https://pingidentity.com/'
1043
+ },
1044
+ text: 'PingIntelligence'
1045
+ }, {
1046
+ type: 'separator'
1047
+ }, {
1048
+ key: 'Connections Link Provisioning',
1049
+ linkProps: {
1050
+ href: 'https://pingidentity.com/'
1051
+ },
1052
+ text: 'Provisioning'
1053
+ }, {
1054
+ key: 'Connections Link WebHooks',
1055
+ linkProps: {
1056
+ href: 'https://pingidentity.com/'
1057
+ },
1058
+ text: 'WebHooks'
1059
+ }, {
1060
+ key: 'Connections Link Gateways',
1061
+ linkProps: {
1062
+ href: 'https://pingidentity.com/'
1063
+ },
1064
+ text: 'Gateways'
1065
+ }, {
1066
+ key: 'Connections Link Certificates & Key Pairs',
1067
+ linkProps: {
1068
+ href: 'https://pingidentity.com/'
1069
+ },
1070
+ text: 'Certificates & Key Pairs'
1071
+ }, {
1072
+ key: 'Connections Button Resources',
1073
+ text: 'Resources'
1074
+ }]
1075
+ }, {
1076
+ 'data-id': 'experiences-data-id',
1077
+ icon: EmoticonHappy,
1078
+ key: 'Experiences',
1079
+ heading: 'Experiences',
1080
+ children: [{
1081
+ type: 'subTitle',
1082
+ key: 'Experience Policies SubHeading',
1083
+ text: 'Policies'
1084
+ }, {
1085
+ key: 'Experiences Authentication',
1086
+ linkProps: {
1087
+ href: 'https://pingidentity.com/'
1088
+ },
1089
+ text: 'Authentication'
1090
+ }, {
1091
+ key: 'Experiences MFA',
1092
+ linkProps: {
1093
+ href: 'https://pingidentity.com/'
1094
+ },
1095
+ text: 'MFA'
1096
+ }, {
1097
+ key: 'Experiences Password',
1098
+ linkProps: {
1099
+ href: 'https://pingidentity.com/'
1100
+ },
1101
+ text: 'Password'
1102
+ }, {
1103
+ type: 'separator'
1104
+ }, {
1105
+ key: 'Experiences Risk',
1106
+ linkProps: {
1107
+ href: 'https://pingidentity.com/'
1108
+ },
1109
+ text: 'Risk'
1110
+ }, {
1111
+ key: 'Experiences Flows',
1112
+ linkProps: {
1113
+ href: 'https://pingidentity.com/'
1114
+ },
1115
+ text: 'Flows'
1116
+ }, {
1117
+ key: 'Experiences Forms',
1118
+ linkProps: {
1119
+ href: 'https://pingidentity.com/'
1120
+ },
1121
+ text: 'Forms'
1122
+ }, {
1123
+ key: 'Experiences Languages',
1124
+ linkProps: {
1125
+ href: 'https://pingidentity.com/'
1126
+ },
1127
+ text: 'Languages'
1128
+ }, {
1129
+ key: 'Experiences Agreements',
1130
+ linkProps: {
1131
+ href: 'https://pingidentity.com/'
1132
+ },
1133
+ text: 'Agreements'
1134
+ }, {
1135
+ key: 'Experiences Branding & Themes',
1136
+ linkProps: {
1137
+ href: 'https://pingidentity.com/'
1138
+ },
1139
+ text: 'Branding & Themes'
1140
+ }, {
1141
+ key: 'Experiences Notifications',
1142
+ linkProps: {
1143
+ href: 'https://pingidentity.com/'
1144
+ },
1145
+ text: 'Notifications'
1146
+ }, {
1147
+ key: 'Experiences Vanity Domains',
1148
+ linkProps: {
1149
+ href: 'https://pingidentity.com/'
1150
+ },
1151
+ text: 'Vanity Domains',
1152
+ onClick: function onClick(e) {
1153
+ return e.preventDefault();
1154
+ }
1155
+ }, {
1156
+ key: 'Experiences Sender',
1157
+ text: 'Sender'
1158
+ }]
1159
+ }, {
1160
+ type: 'separator'
1161
+ }, {
1162
+ type: 'subTitle',
1163
+ key: 'DaVinci SubHeading',
1164
+ text: 'PingOne Services'
1165
+ }, {
1166
+ 'data-id': 'da-vinci-data-id',
1167
+ icon: ViewGridPlusOutline,
1168
+ key: 'DaVinci',
1169
+ heading: 'DaVinci',
1170
+ customIcon: OpenInNew,
1171
+ linkProps: {
1172
+ href: 'https://pingidentity.com/',
1173
+ 'aria-label': 'DaVinci Link'
1174
+ }
1175
+ }, {
1176
+ 'data-id': 'mfa-data-id',
1177
+ icon: Fingerprint,
1178
+ key: 'MFA',
1179
+ heading: 'MFA',
1180
+ children: [{
1181
+ key: 'MFA Button Users',
1182
+ text: 'Users'
1183
+ }, {
1184
+ type: 'separator'
1185
+ }, {
1186
+ type: 'subTitle',
1187
+ key: 'MFA SubHeading',
1188
+ text: 'PingOne Services'
1189
+ }, {
1190
+ key: 'MFA Button Group',
1191
+ text: 'Group Test'
1192
+ }]
1193
+ }, {
1194
+ 'data-id': 'risk-data-id',
1195
+ icon: ScaleBalance,
1196
+ key: 'Risk',
1197
+ heading: 'Risk',
1198
+ children: [{
1199
+ key: 'Risk Button Users',
1200
+ text: 'Users'
1201
+ }, {
1202
+ type: 'subTitle',
1203
+ key: 'Risk SubHeading',
1204
+ text: 'PingOne Services'
1205
+ }, {
1206
+ key: 'Risk Button Group',
1207
+ text: 'Group'
1208
+ }]
1209
+ }, {
1210
+ 'data-id': 'verify-data-id',
1211
+ icon: Verify,
1212
+ key: 'Verify',
1213
+ heading: 'Verify',
1214
+ children: [{
1215
+ key: 'Verify Button Users',
1216
+ text: 'Users'
1217
+ }, {
1218
+ type: 'subTitle',
1219
+ key: 'Verify SubHeading',
1220
+ text: 'PingOne Services'
1221
+ }, {
1222
+ key: 'Verify Button Group',
1223
+ text: 'Group'
1224
+ }]
1225
+ }, {
1226
+ 'data-id': 'credentials-data-id',
1227
+ icon: Credentials,
1228
+ key: 'Credentials',
1229
+ heading: 'Credentials',
1230
+ children: [{
1231
+ key: 'Credentials Button Users',
1232
+ text: 'Users'
1233
+ }, {
1234
+ type: 'subTitle',
1235
+ key: 'Credential SubHeading',
1236
+ text: 'PingOne Services'
1237
+ }, {
1238
+ key: 'Credentials Button Group',
1239
+ text: 'Group'
1240
+ }]
1241
+ }, {
1242
+ type: 'separator'
1243
+ }, {
1244
+ 'data-id': 'environment-data-id',
1245
+ icon: Earth,
1246
+ key: 'Environment',
1247
+ heading: 'Environment title that is so long, it wraps',
1248
+ children: [{
1249
+ key: 'Environment Button Users',
1250
+ text: 'Users'
1251
+ }, {
1252
+ key: 'Environment Button Group',
1253
+ text: 'Group'
1254
+ }]
1255
+ }];
1256
+ var renderNavSideBarSection = function renderNavSideBarSection(item) {
1257
+ var _context;
1258
+ return ___EmotionJSX(NavSideBarSection, {
1259
+ key: item.key,
1260
+ title: item.heading,
1261
+ id: item.key,
1262
+ icon: item.icon
1263
+ }, _mapInstanceProperty(_context = item.children).call(_context, function (child) {
1264
+ switch (child.type) {
1265
+ case 'separator':
1266
+ return ___EmotionJSX(Separator, {
1267
+ key: uuid(),
1268
+ variant: "separator.navBarSubtitleSeparator"
1269
+ });
1270
+ case 'subTitle':
1271
+ return ___EmotionJSX(NavSideBarSubTitle, {
1272
+ key: child.key,
1273
+ sx: {
1274
+ ml: '45px'
1275
+ }
1276
+ }, child.text);
1277
+ default:
1278
+ return ___EmotionJSX(NavSideBarSectionItem, {
1279
+ key: child.key,
1280
+ linkProps: child.linkProps,
1281
+ onClick: child.onClick
1282
+ }, child.text);
1283
+ }
1284
+ }));
1285
+ };
1286
+ var renderNavSideBarItem = function renderNavSideBarItem(item) {
1287
+ return ___EmotionJSX(NavSideBarItem, {
1288
+ key: item.key,
1289
+ icon: item.icon,
1290
+ id: item.key,
1291
+ customIcon: item.customIcon,
1292
+ linkProps: item.linkProps
1293
+ }, item.heading);
1294
+ };
1295
+ return ___EmotionJSX(NavSideBar, args, ___EmotionJSX(NavSideBarHeader, {
1296
+ key: "nav-side-bar-header",
1297
+ linkProps: {
1298
+ href: 'https://pingidentity.com/',
1299
+ target: '_blank',
1300
+ 'aria-label': 'home Link'
1301
+ },
1302
+ logo: Logo
1303
+ }), ___EmotionJSX(Separator, {
1304
+ m: "0",
1305
+ backgroundColor: "neutral.60",
1306
+ key: "top-separator"
1307
+ }), ___EmotionJSX(Box, {
1308
+ variant: "navBar.sectionContainer",
1309
+ paddingBottom: "xl",
1310
+ key: "first-section-container"
1311
+ }, _mapInstanceProperty(navSideBarSectionItems).call(navSideBarSectionItems, function (item) {
1312
+ switch (item.type) {
1313
+ case 'separator':
1314
+ return ___EmotionJSX(Separator, {
1315
+ key: uuid(),
1316
+ variant: "separator.navBarSeparator"
1317
+ });
1318
+ case 'subTitle':
1319
+ return ___EmotionJSX(NavSideBarSubTitle, {
1320
+ key: item.key
1321
+ }, item.text);
1322
+ default:
1323
+ return item.children ? renderNavSideBarSection(item) : renderNavSideBarItem(item);
1324
+ }
1325
+ })));
1326
+ };