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