@pingux/astro 2.161.1-alpha.4 → 2.161.1-alpha.6
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/AstroProvider/AstroProvider.js +12 -7
- package/lib/cjs/components/NavBar/stories/NavBar.Onyx.stories.d.ts +5 -0
- package/lib/cjs/components/NavBar/stories/NavBar.Onyx.stories.js +21 -0
- package/lib/cjs/components/NavBar/stories/NavBarNextGenComponent.js +26 -30
- package/lib/cjs/components/NavBarSection/NavBarItemHeader.js +1 -1
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +74 -16
- package/lib/cjs/hooks/useGetTheme/useGetTheme.js +16 -12
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.js +8 -0
- package/lib/cjs/styles/theme.js +2 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +35 -7
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +36 -7
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
- package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +269 -0
- package/lib/cjs/styles/themeOverrides/onyxSideNav.js +236 -0
- package/lib/cjs/styles/themeOverrides/uiLibraryOverride.d.ts +108 -0
- package/lib/cjs/styles/themes/astro/customProperties/icons.d.ts +35 -7
- package/lib/cjs/styles/themes/astro/customProperties/icons.js +25 -10
- package/lib/cjs/styles/themes/astro/customProperties/index.d.ts +36 -7
- package/lib/cjs/styles/themes/astro/customProperties/navBarIcons.d.ts +6 -0
- package/lib/cjs/styles/themes/astro/customProperties/navBarIcons.js +145 -0
- package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.d.ts +1 -0
- package/lib/cjs/styles/themes/astro/customProperties/tShirtSizes.js +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +37 -9
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +28 -10
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +36 -7
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/customProperties/tShirtSizes.js +2 -1
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +44 -0
- package/lib/cjs/styles/themes/next-gen/next-gen.js +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/navbar.d.ts +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/navbar.js +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +2 -0
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +2 -2
- package/lib/cjs/types/shared/style.d.ts +1 -1
- package/lib/cjs/utils/devUtils/constants/tShirtSizes.d.ts +1 -0
- package/lib/cjs/utils/devUtils/constants/tShirtSizes.js +2 -1
- package/lib/components/AstroProvider/AstroProvider.js +12 -7
- package/lib/components/NavBar/stories/NavBar.Onyx.stories.js +13 -0
- package/lib/components/NavBar/stories/NavBarNextGenComponent.js +26 -30
- package/lib/components/NavBarSection/NavBarItemHeader.js +1 -1
- package/lib/hooks/useGetTheme/useGetTheme.js +14 -10
- package/lib/index.js +1 -0
- package/lib/styles/theme.js +2 -0
- package/lib/styles/themeOverrides/nextGenDarkMode/nextGenDarkModeOverride.js +2 -0
- package/lib/styles/themeOverrides/onyxSideNav.js +229 -0
- package/lib/styles/themes/astro/customProperties/icons.js +25 -10
- package/lib/styles/themes/astro/customProperties/navBarIcons.js +136 -0
- package/lib/styles/themes/astro/customProperties/tShirtSizes.js +1 -0
- package/lib/styles/themes/next-gen/customProperties/icons.js +28 -10
- package/lib/styles/themes/next-gen/customProperties/tShirtSizes.js +2 -1
- package/lib/styles/themes/next-gen/next-gen.js +2 -0
- package/lib/styles/themes/next-gen/variants/navbar.js +2 -0
- package/lib/styles/themes/next-gen/variants/variants.js +2 -2
- package/lib/tsconfig.lib.tsbuildinfo +1 -1
- package/lib/utils/devUtils/constants/tShirtSizes.js +2 -1
- package/package.json +1 -1
|
@@ -0,0 +1,108 @@
|
|
|
1
|
+
declare const _default: {
|
|
2
|
+
buttons: {
|
|
3
|
+
critical: {
|
|
4
|
+
'&:not(.disabled):hover': any;
|
|
5
|
+
};
|
|
6
|
+
danger: {
|
|
7
|
+
'&:not(.disabled):hover': any;
|
|
8
|
+
};
|
|
9
|
+
success: {
|
|
10
|
+
'&:not(.disabled):hover': any;
|
|
11
|
+
};
|
|
12
|
+
default: {
|
|
13
|
+
'&:not(.disabled):hover': any;
|
|
14
|
+
'&:focus': any;
|
|
15
|
+
};
|
|
16
|
+
inline: {
|
|
17
|
+
'&:not(.disabled):hover': any;
|
|
18
|
+
};
|
|
19
|
+
inlinePrimary: {
|
|
20
|
+
'&:not(.disabled):hover': any;
|
|
21
|
+
};
|
|
22
|
+
text: {
|
|
23
|
+
'&:not(.disabled):hover': any;
|
|
24
|
+
};
|
|
25
|
+
inverted: any;
|
|
26
|
+
primary: {
|
|
27
|
+
'&:hover': any;
|
|
28
|
+
};
|
|
29
|
+
link: {
|
|
30
|
+
'body &': any;
|
|
31
|
+
'body &:hover': any;
|
|
32
|
+
'&:not(.disabled):hover': {
|
|
33
|
+
color: string;
|
|
34
|
+
borderColor: string;
|
|
35
|
+
};
|
|
36
|
+
};
|
|
37
|
+
iconButtons: any;
|
|
38
|
+
filter: {
|
|
39
|
+
'&:not(.disabled):hover': {
|
|
40
|
+
borderColor: string;
|
|
41
|
+
color: string;
|
|
42
|
+
};
|
|
43
|
+
};
|
|
44
|
+
};
|
|
45
|
+
forms: {
|
|
46
|
+
input: {
|
|
47
|
+
'&[type=password]': {
|
|
48
|
+
backgroundColor: string;
|
|
49
|
+
borderColor: string;
|
|
50
|
+
};
|
|
51
|
+
'&[type=password]:focus': {
|
|
52
|
+
outline: string;
|
|
53
|
+
outlineColor: string;
|
|
54
|
+
outlineOffset: string;
|
|
55
|
+
borderColor: string;
|
|
56
|
+
};
|
|
57
|
+
numberField: any;
|
|
58
|
+
};
|
|
59
|
+
select: {
|
|
60
|
+
'&:not(.disabled):hover': any;
|
|
61
|
+
};
|
|
62
|
+
search: {
|
|
63
|
+
wrapper: {
|
|
64
|
+
'& input[type=search]': any;
|
|
65
|
+
'& input[type=search]:focus': {
|
|
66
|
+
outline: string;
|
|
67
|
+
outlineColor: string;
|
|
68
|
+
outlineOffset: string;
|
|
69
|
+
borderColor: string;
|
|
70
|
+
};
|
|
71
|
+
};
|
|
72
|
+
};
|
|
73
|
+
label: {
|
|
74
|
+
'body &': {
|
|
75
|
+
textTransform: string;
|
|
76
|
+
};
|
|
77
|
+
checkbox: {
|
|
78
|
+
textTransform: string;
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
};
|
|
82
|
+
links: {
|
|
83
|
+
app: {
|
|
84
|
+
'&:hover': any;
|
|
85
|
+
};
|
|
86
|
+
};
|
|
87
|
+
variants: {
|
|
88
|
+
accordion: {
|
|
89
|
+
header: any;
|
|
90
|
+
};
|
|
91
|
+
rockerButton: {
|
|
92
|
+
thumbSwitch: any;
|
|
93
|
+
};
|
|
94
|
+
environmentBreadcrumb: {
|
|
95
|
+
button: {
|
|
96
|
+
current: {
|
|
97
|
+
'&:hover:not(.disabled)': any;
|
|
98
|
+
'&:focus': any;
|
|
99
|
+
};
|
|
100
|
+
};
|
|
101
|
+
};
|
|
102
|
+
navBar: {
|
|
103
|
+
sectionButton: any;
|
|
104
|
+
itemButton: any;
|
|
105
|
+
};
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
export default _default;
|
|
@@ -1,15 +1,43 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
[x: number]: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
applicationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
5
|
+
Ascending: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
6
|
+
authenticationIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
7
|
+
clipboard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
8
|
+
CreateIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
9
|
+
daVinci: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
5
10
|
DefaultCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
6
|
-
|
|
11
|
+
Descending: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
12
|
+
ErrorCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
13
|
+
integrationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
14
|
+
listViewMenu: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
15
|
+
mdiAccountCog: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
16
|
+
mdiAccountMultiple: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
17
|
+
mdiEarth: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
18
|
+
mdiEmoticonHappyOutline: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
19
|
+
mdiFingerprint: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
20
|
+
mdiPlayCircleIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
21
|
+
mdiScaleBalance: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
22
|
+
mdiShoCard: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
23
|
+
mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
24
|
+
mdiViewDashboard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
25
|
+
mdiWeb: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
7
26
|
MenuDown: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
8
27
|
MenuUp: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
9
|
-
|
|
28
|
+
monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
29
|
+
openInNew: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
30
|
+
overviewIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
31
|
+
p1verify: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
pam: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
PingAuthorize: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
10
34
|
pingLogoHorizontalSmall: import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
35
|
+
protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
rocketLaunchIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
37
|
+
shareFeedbackIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
38
|
+
shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
39
|
+
SuccessCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
40
|
+
userExperienceIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
41
|
+
WarningIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
14
42
|
};
|
|
15
43
|
export default _default;
|
|
@@ -10,31 +10,46 @@ _Object$defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports["default"] = void 0;
|
|
12
12
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
|
13
|
+
var _AccountCogIcon = _interopRequireDefault(require("@pingux/mdi-react/AccountCogIcon"));
|
|
14
|
+
var _AccountMultipleIcon = _interopRequireDefault(require("@pingux/mdi-react/AccountMultipleIcon"));
|
|
13
15
|
var _AlertCircleIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertCircleIcon"));
|
|
14
16
|
var _AlertCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertCircleOutlineIcon"));
|
|
15
17
|
var _AlertIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertIcon"));
|
|
16
18
|
var _AlertOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertOutlineIcon"));
|
|
19
|
+
var _ApplicationOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/ApplicationOutlineIcon"));
|
|
17
20
|
var _ArrowDownIcon = _interopRequireDefault(require("@pingux/mdi-react/ArrowDownIcon"));
|
|
18
21
|
var _ArrowUpIcon = _interopRequireDefault(require("@pingux/mdi-react/ArrowUpIcon"));
|
|
22
|
+
var _ChatIcon = _interopRequireDefault(require("@pingux/mdi-react/ChatIcon"));
|
|
19
23
|
var _CheckboxBlankCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckboxBlankCircleOutlineIcon"));
|
|
20
24
|
var _CheckCircleIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckCircleIcon"));
|
|
25
|
+
var _CheckCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckCircleOutlineIcon"));
|
|
26
|
+
var _ClipboardIcon = _interopRequireDefault(require("@pingux/mdi-react/ClipboardIcon"));
|
|
21
27
|
var _CloseOctagonOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CloseOctagonOutlineIcon"));
|
|
28
|
+
var _ConnectionIcon = _interopRequireDefault(require("@pingux/mdi-react/ConnectionIcon"));
|
|
22
29
|
var _CreateIcon = _interopRequireDefault(require("@pingux/mdi-react/CreateIcon"));
|
|
30
|
+
var _EarthIcon = _interopRequireDefault(require("@pingux/mdi-react/EarthIcon"));
|
|
31
|
+
var _EmoticonHappyOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/EmoticonHappyOutlineIcon"));
|
|
32
|
+
var _FingerprintIcon = _interopRequireDefault(require("@pingux/mdi-react/FingerprintIcon"));
|
|
33
|
+
var _GlobeIcon = _interopRequireDefault(require("@pingux/mdi-react/GlobeIcon"));
|
|
23
34
|
var _InformationIcon = _interopRequireDefault(require("@pingux/mdi-react/InformationIcon"));
|
|
24
35
|
var _InformationOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/InformationOutlineIcon"));
|
|
36
|
+
var _KeyChainVariantIcon = _interopRequireDefault(require("@pingux/mdi-react/KeyChainVariantIcon"));
|
|
25
37
|
var _MenuDownIcon = _interopRequireDefault(require("@pingux/mdi-react/MenuDownIcon"));
|
|
26
38
|
var _MenuUpIcon = _interopRequireDefault(require("@pingux/mdi-react/MenuUpIcon"));
|
|
39
|
+
var _MonitorScreenshotIcon = _interopRequireDefault(require("@pingux/mdi-react/MonitorScreenshotIcon"));
|
|
27
40
|
var _MoreVertIcon = _interopRequireDefault(require("@pingux/mdi-react/MoreVertIcon"));
|
|
41
|
+
var _OpenInNewIcon = _interopRequireDefault(require("@pingux/mdi-react/OpenInNewIcon"));
|
|
42
|
+
var _PlayCircleIcon = _interopRequireDefault(require("@pingux/mdi-react/PlayCircleIcon"));
|
|
43
|
+
var _PulseIcon = _interopRequireDefault(require("@pingux/mdi-react/PulseIcon"));
|
|
44
|
+
var _RocketLaunchIcon = _interopRequireDefault(require("@pingux/mdi-react/RocketLaunchIcon"));
|
|
45
|
+
var _ScaleBalanceIcon = _interopRequireDefault(require("@pingux/mdi-react/ScaleBalanceIcon"));
|
|
46
|
+
var _ShieldStarOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/ShieldStarOutlineIcon"));
|
|
47
|
+
var _TransitConnectionVariantIcon = _interopRequireDefault(require("@pingux/mdi-react/TransitConnectionVariantIcon"));
|
|
48
|
+
var _ViewDashboardIcon = _interopRequireDefault(require("@pingux/mdi-react/ViewDashboardIcon"));
|
|
49
|
+
var _WebIcon = _interopRequireDefault(require("@pingux/mdi-react/WebIcon"));
|
|
28
50
|
var _logos = require("../../../../utils/devUtils/constants/logos");
|
|
29
51
|
var _statuses = _interopRequireWildcard(require("../../../../utils/devUtils/constants/statuses"));
|
|
30
|
-
var
|
|
52
|
+
var _navBarIcons = require("./navBarIcons");
|
|
53
|
+
var _statuses$DEFAULT$sta;
|
|
31
54
|
function _interopRequireWildcard(e, t) { if ("function" == typeof _WeakMap) var r = new _WeakMap(), n = new _WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = _Object$defineProperty) && _Object$getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
32
|
-
var _default = exports["default"] = (
|
|
33
|
-
ErrorCircle: _AlertCircleIcon["default"],
|
|
34
|
-
WarningIcon: _AlertOutlineIcon["default"],
|
|
35
|
-
DefaultCircle: _CheckboxBlankCircleOutlineIcon["default"],
|
|
36
|
-
SuccessCircle: _CheckCircleIcon["default"],
|
|
37
|
-
MenuDown: _MenuDownIcon["default"],
|
|
38
|
-
MenuUp: _MenuUpIcon["default"],
|
|
39
|
-
CreateIcon: _CreateIcon["default"]
|
|
40
|
-
}, (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_ErrorCircle$WarningI, _statuses["default"].DEFAULT, _InformationIcon["default"]), _statuses["default"].ERROR, _AlertCircleIcon["default"]), _statuses["default"].SUCCESS, _CheckCircleIcon["default"]), _statuses["default"].WARNING, _AlertIcon["default"]), _statuses.statusIcon.INFO, _InformationOutlineIcon["default"]), _statuses.statusIcon.CRITICAL, _AlertCircleOutlineIcon["default"]), _statuses.statusIcon.MAJOR, _ArrowUpIcon["default"]), _statuses.statusIcon.MINOR, _ArrowDownIcon["default"]), _statuses.statusIcon.WARNING_NEUTRAL, _AlertOutlineIcon["default"]), _statuses.statusIcon.FATAL, _CloseOctagonOutlineIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_ErrorCircle$WarningI, "pingLogoHorizontalSmall", _logos.pingLogoHorizontalSmallWhite), "listViewMenu", _MoreVertIcon["default"]), "Ascending", _MenuUpIcon["default"]), "Descending", _MenuDownIcon["default"]));
|
|
55
|
+
var _default = exports["default"] = (_statuses$DEFAULT$sta = {}, (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_statuses$DEFAULT$sta, _statuses["default"].DEFAULT, _InformationIcon["default"]), _statuses["default"].ERROR, _AlertCircleIcon["default"]), _statuses["default"].SUCCESS, _CheckCircleIcon["default"]), _statuses["default"].WARNING, _AlertIcon["default"]), _statuses.statusIcon.CRITICAL, _AlertCircleOutlineIcon["default"]), _statuses.statusIcon.FATAL, _CloseOctagonOutlineIcon["default"]), _statuses.statusIcon.INFO, _InformationOutlineIcon["default"]), _statuses.statusIcon.MAJOR, _ArrowUpIcon["default"]), _statuses.statusIcon.MINOR, _ArrowDownIcon["default"]), _statuses.statusIcon.WARNING_NEUTRAL, _AlertOutlineIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_statuses$DEFAULT$sta, "aic", _navBarIcons.Aic), "applicationsIcon", _ApplicationOutlineIcon["default"]), "Ascending", _MenuUpIcon["default"]), "authenticationIcon", _CheckCircleOutlineIcon["default"]), "clipboard", _ClipboardIcon["default"]), "CreateIcon", _CreateIcon["default"]), "daVinci", _navBarIcons.DaVinci), "DefaultCircle", _CheckboxBlankCircleOutlineIcon["default"]), "Descending", _MenuDownIcon["default"]), "ErrorCircle", _AlertCircleIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_statuses$DEFAULT$sta, "integrationsIcon", _ConnectionIcon["default"]), "listViewMenu", _MoreVertIcon["default"]), "mdiAccountCog", _AccountCogIcon["default"]), "mdiAccountMultiple", _AccountMultipleIcon["default"]), "mdiEarth", _EarthIcon["default"]), "mdiEmoticonHappyOutline", _EmoticonHappyOutlineIcon["default"]), "mdiFingerprint", _FingerprintIcon["default"]), "mdiPlayCircleIcon", _PlayCircleIcon["default"]), "mdiScaleBalance", _ScaleBalanceIcon["default"]), "mdiShoCard", _navBarIcons.Credentials), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_statuses$DEFAULT$sta, "mdiTransitConnectionVariant", _TransitConnectionVariantIcon["default"]), "mdiViewDashboard", _ViewDashboardIcon["default"]), "mdiWeb", _GlobeIcon["default"]), "MenuDown", _MenuDownIcon["default"]), "MenuUp", _MenuUpIcon["default"]), "monitoringIcon", _PulseIcon["default"]), "openInNew", _OpenInNewIcon["default"]), "overviewIcon", _WebIcon["default"]), "p1verify", _navBarIcons.Verify), "pam", _navBarIcons.PamIcon), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_statuses$DEFAULT$sta, "PingAuthorize", _KeyChainVariantIcon["default"]), "pingLogoHorizontalSmall", _logos.pingLogoHorizontalSmallWhite), "protect", _navBarIcons.Protect), "rocketLaunchIcon", _RocketLaunchIcon["default"]), "shareFeedbackIcon", _ChatIcon["default"]), "shieldStar", _ShieldStarOutlineIcon["default"]), "SuccessCircle", _CheckCircleIcon["default"]), "userExperienceIcon", _MonitorScreenshotIcon["default"]), "WarningIcon", _AlertOutlineIcon["default"]));
|
|
@@ -5,17 +5,45 @@ export declare const astroThemeValues: {
|
|
|
5
5
|
backgroundBaseColor: string;
|
|
6
6
|
icons: {
|
|
7
7
|
[x: number]: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
8
|
-
|
|
9
|
-
|
|
8
|
+
aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
applicationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
10
|
+
Ascending: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
11
|
+
authenticationIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
12
|
+
clipboard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
13
|
+
CreateIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
14
|
+
daVinci: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
10
15
|
DefaultCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
11
|
-
|
|
16
|
+
Descending: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
17
|
+
ErrorCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
18
|
+
integrationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
19
|
+
listViewMenu: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
20
|
+
mdiAccountCog: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
21
|
+
mdiAccountMultiple: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
22
|
+
mdiEarth: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
23
|
+
mdiEmoticonHappyOutline: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
24
|
+
mdiFingerprint: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
25
|
+
mdiPlayCircleIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
26
|
+
mdiScaleBalance: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
27
|
+
mdiShoCard: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
28
|
+
mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
29
|
+
mdiViewDashboard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
30
|
+
mdiWeb: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
12
31
|
MenuDown: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
13
32
|
MenuUp: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
14
|
-
|
|
33
|
+
monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
34
|
+
openInNew: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
35
|
+
overviewIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
36
|
+
p1verify: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
pam: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
38
|
+
PingAuthorize: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
15
39
|
pingLogoHorizontalSmall: import("react/jsx-runtime").JSX.Element;
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
40
|
+
protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
41
|
+
rocketLaunchIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
42
|
+
shareFeedbackIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
43
|
+
shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
44
|
+
SuccessCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
45
|
+
userExperienceIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
46
|
+
WarningIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
19
47
|
};
|
|
20
48
|
styles: {
|
|
21
49
|
navButtonEstHeight: number;
|
|
@@ -23,6 +51,7 @@ export declare const astroThemeValues: {
|
|
|
23
51
|
tShirtSizes: {
|
|
24
52
|
xxs: string;
|
|
25
53
|
xs: string;
|
|
54
|
+
xsm: string;
|
|
26
55
|
sm: string;
|
|
27
56
|
md: string;
|
|
28
57
|
};
|
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
export declare const Verify: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
2
|
+
export declare const DaVinci: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
3
|
+
export declare const Credentials: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
export declare const Protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export declare const Aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
6
|
+
export declare const PamIcon: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
var _Object$defineProperty = require("@babel/runtime-corejs3/core-js-stable/object/define-property");
|
|
4
|
+
var _interopRequireDefault = require("@babel/runtime-corejs3/helpers/interopRequireDefault");
|
|
5
|
+
_Object$defineProperty(exports, "__esModule", {
|
|
6
|
+
value: true
|
|
7
|
+
});
|
|
8
|
+
exports.Verify = exports.Protect = exports.PamIcon = exports.DaVinci = exports.Credentials = exports.Aic = void 0;
|
|
9
|
+
var _extends2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/extends"));
|
|
10
|
+
var _react = _interopRequireDefault(require("react"));
|
|
11
|
+
var _react2 = require("@emotion/react");
|
|
12
|
+
/* eslint-disable max-len */
|
|
13
|
+
|
|
14
|
+
var Verify = exports.Verify = function Verify(props) {
|
|
15
|
+
return (0, _react2.jsx)("svg", {
|
|
16
|
+
width: "24",
|
|
17
|
+
height: "24",
|
|
18
|
+
viewBox: "0 0 24 24",
|
|
19
|
+
fill: "none",
|
|
20
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
21
|
+
}, (0, _react2.jsx)("g", {
|
|
22
|
+
id: "verify"
|
|
23
|
+
}, (0, _react2.jsx)("g", {
|
|
24
|
+
id: "card-account-details-star-outline"
|
|
25
|
+
}, (0, _react2.jsx)("path", {
|
|
26
|
+
id: "Shape",
|
|
27
|
+
fillRule: "evenodd",
|
|
28
|
+
clipRule: "evenodd",
|
|
29
|
+
d: "M13.9067 20.2H2.83333C1.83417 20.164 1.03667 19.381 1 18.4V5.8C1.03667 4.819 1.83417 4.036 2.83333 4H21.1667C22.1658 4.036 22.9633 4.819 23 5.8V15.277C22.4683 14.8 21.8542 14.449 21.1667 14.206V5.8H2.83333V18.4H13.9067C13.8608 18.697 13.8333 18.994 13.8333 19.3C13.8333 19.606 13.8608 19.912 13.9067 20.2ZM13.8333 16.6H4.66667V15.475C4.66667 13.981 7.72833 13.225 9.25 13.225C10.7717 13.225 13.8333 13.981 13.8333 15.475V16.6ZM17.5 11.2H13.8333V12.1H17.5V11.2ZM9.25 7.6C7.99417 7.6 6.95833 8.617 6.95833 9.85C6.95833 11.083 7.99417 12.1 9.25 12.1C10.5058 12.1 11.5417 11.083 11.5417 9.85C11.5417 8.617 10.5058 7.6 9.25 7.6ZM19.3333 9.4H13.8333V10.3H19.3333V9.4ZM13.8333 7.6H19.3333V8.5H13.8333V7.6ZM15.6667 19.3L18.1875 22L22.5417 17.725L21.4783 16.456L18.1875 19.687L16.73 18.256L15.6667 19.3Z"
|
|
30
|
+
}))));
|
|
31
|
+
};
|
|
32
|
+
var DaVinci = exports.DaVinci = function DaVinci(props) {
|
|
33
|
+
return (0, _react2.jsx)("svg", (0, _extends2["default"])({
|
|
34
|
+
width: "24",
|
|
35
|
+
height: "24",
|
|
36
|
+
viewBox: "0 0 24 24",
|
|
37
|
+
fill: "none",
|
|
38
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
39
|
+
}, props), (0, _react2.jsx)("path", {
|
|
40
|
+
fillRule: "evenodd",
|
|
41
|
+
clipRule: "evenodd",
|
|
42
|
+
d: "M2 5H5V8H2V5ZM8.98124 9.18922C8.40906 8.51487 7.5878 8 6 8V5C8.4122 5 10.0909 5.86013 11.2688 7.24828C12.3198 8.48703 12.8987 10.0806 13.3691 11.3758L13.4097 11.4874C13.9318 12.9231 14.3502 14.0229 15.0188 14.8108C15.5909 15.4851 16.4122 16 18 16V19H6V16H11.0563C10.9745 15.8905 10.8976 15.7846 10.8245 15.6841L10.7869 15.6323C10.2778 14.9323 9.93844 14.4905 9.36346 14.1517C8.79448 13.8164 7.83564 13.5 6 13.5V10.5C7.7039 10.5 9.02155 10.73 10.0813 11.1674C9.7558 10.3671 9.42315 9.71004 8.98124 9.18922ZM5 10.5H2V13.5H5V10.5ZM2 16H5V19H2V16ZM22 16H19V19H22V16Z"
|
|
43
|
+
}));
|
|
44
|
+
};
|
|
45
|
+
var Credentials = exports.Credentials = function Credentials(props) {
|
|
46
|
+
return (0, _react2.jsx)("div", (0, _extends2["default"])({}, props, {
|
|
47
|
+
style: {
|
|
48
|
+
position: 'relative'
|
|
49
|
+
}
|
|
50
|
+
}), (0, _react2.jsx)("svg", {
|
|
51
|
+
width: "20",
|
|
52
|
+
height: "30",
|
|
53
|
+
viewBox: "0 5 24 32",
|
|
54
|
+
fill: "none",
|
|
55
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
56
|
+
style: {
|
|
57
|
+
position: 'absolute'
|
|
58
|
+
}
|
|
59
|
+
}, (0, _react2.jsx)("path", {
|
|
60
|
+
fillRule: "evenodd",
|
|
61
|
+
clipRule: "evenodd",
|
|
62
|
+
d: "M11.4 20H4V10H20V14.8C21 15.5 21.7 16.8 22 17.6V10C22 8.9 21.1 8 20 8H4C2.9 8 2 8.9 2 10V20C2 21.1 2.9 22 4 22H12.1C11.7 21.4 11.5 20.7 11.4 20ZM11 13H5V11H11V13ZM9 16H5V14H9V16ZM11 17H5V19H11V17ZM21.1 19.3C21.1 19.8 21 20.3 20.8 20.8C20.6 21.3 20.4 21.8 20 22.1V26.3L16.7 25.2L13.4 26.3V22.1C12.7 21.3 12.3 20.3 12.3 19.2C12.3 18 12.7 16.9 13.6 16.1C14.4 15.3 15.5 14.8 16.7 14.8C17.9 14.8 19 15.2 19.8 16.1C20.7 17 21.1 18.1 21.1 19.3ZM14.5 16.9C15.1 16.3 15.9 16 16.8 16C17.6 16 18.5 16.3 19.1 16.9C19.8 17.5 20.1 18.3 20.1 19.2C20.1 20.1 19.7 20.9 19.1 21.5C18.5 22.2 17.7 22.5 16.8 22.5C15.9 22.5 15.1 22.1 14.5 21.5C13.8 20.9 13.5 20.1 13.5 19.2C13.5 18.3 13.9 17.5 14.5 16.9ZM16.7 17.7C15.8 17.7 15.1 18.4 15.1 19.3C15.1 20.2 15.9 20.9 16.7 20.9C17.6 20.9 18.3 20.2 18.3 19.3C18.3 18.4 17.6 17.7 16.7 17.7Z",
|
|
63
|
+
fill: "white"
|
|
64
|
+
})));
|
|
65
|
+
};
|
|
66
|
+
var Protect = exports.Protect = function Protect(props) {
|
|
67
|
+
return (0, _react2.jsx)("svg", (0, _extends2["default"])({
|
|
68
|
+
width: "40",
|
|
69
|
+
height: "40",
|
|
70
|
+
viewBox: "0 0 100 100",
|
|
71
|
+
fill: "none",
|
|
72
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
73
|
+
}, props), (0, _react2.jsx)("path", {
|
|
74
|
+
d: "M11.5 11.5H88.66L88.67 7.5H7.5V38.5H11.5V11.5Z",
|
|
75
|
+
fill: "#949115"
|
|
76
|
+
}), (0, _react2.jsx)("path", {
|
|
77
|
+
d: "M88.67 7.5L88.5 88.47H11.5V81.78H7.5V92.5H92.5V7.5H88.67Z",
|
|
78
|
+
fill: "#949115"
|
|
79
|
+
}), (0, _react2.jsx)("path", {
|
|
80
|
+
d: "M8.8627 59.3614V51.2294H13.4987C14.1827 51.2294 14.8414 51.2801 15.4747 51.3814C16.108 51.4827 16.6654 51.6854 17.1467 51.9894C17.628 52.2681 18.008 52.6734 18.2867 53.2054C18.5907 53.7374 18.7427 54.4341 18.7427 55.2954C18.7427 56.1567 18.5907 56.8534 18.2867 57.3854C18.008 57.9174 17.628 58.3354 17.1467 58.6394C16.6654 58.9181 16.108 59.1081 15.4747 59.2094C14.8414 59.3107 14.1827 59.3614 13.4987 59.3614H8.8627ZM2.8967 46.5934V73.7254H8.8627V63.9974H15.1327C16.83 63.9974 18.274 63.7567 19.4647 63.2754C20.6554 62.7687 21.618 62.1101 22.3527 61.2994C23.1127 60.4887 23.6574 59.5641 23.9867 58.5254C24.3414 57.4614 24.5187 56.3847 24.5187 55.2954C24.5187 54.1807 24.3414 53.1041 23.9867 52.0654C23.6574 51.0267 23.1127 50.1021 22.3527 49.2914C21.618 48.4807 20.6554 47.8347 19.4647 47.3534C18.274 46.8467 16.83 46.5934 15.1327 46.5934H2.8967Z",
|
|
81
|
+
fill: "#949115"
|
|
82
|
+
}), (0, _react2.jsx)("path", {
|
|
83
|
+
d: "M34.2084 58.8674V51.2294H40.7444C42.1124 51.2294 43.1384 51.5334 43.8224 52.1414C44.5064 52.7241 44.8484 53.6741 44.8484 54.9914C44.8484 56.3594 44.5064 57.3474 43.8224 57.9554C43.1384 58.5634 42.1124 58.8674 40.7444 58.8674H34.2084ZM28.2424 46.5934V73.7254H34.2084V63.1234H40.1744C41.6691 63.1234 42.7457 63.4527 43.4044 64.1114C44.0631 64.7701 44.4937 65.8087 44.6964 67.2274C44.8484 68.3167 44.9624 69.4567 45.0384 70.6474C45.1144 71.8381 45.3171 72.8641 45.6464 73.7254H51.6124C51.3337 73.3454 51.1184 72.8894 50.9664 72.3574C50.8397 71.8001 50.7384 71.2174 50.6624 70.6094C50.6117 70.0014 50.5737 69.4061 50.5484 68.8234C50.5231 68.2407 50.4977 67.7341 50.4724 67.3034C50.4217 66.6194 50.3204 65.9354 50.1684 65.2514C50.0417 64.5674 49.8264 63.9467 49.5224 63.3894C49.2184 62.8067 48.8257 62.3127 48.3444 61.9074C47.8631 61.4767 47.2551 61.1601 46.5204 60.9574V60.8814C48.0404 60.2734 49.1297 59.3867 49.7884 58.2214C50.4724 57.0561 50.8144 55.6754 50.8144 54.0794C50.8144 53.0407 50.6244 52.0781 50.2444 51.1914C49.8897 50.2794 49.3577 49.4814 48.6484 48.7974C47.9644 48.1134 47.1284 47.5814 46.1404 47.2014C45.1777 46.7961 44.0884 46.5934 42.8724 46.5934H28.2424Z",
|
|
84
|
+
fill: "#949115"
|
|
85
|
+
}), (0, _react2.jsx)("path", {
|
|
86
|
+
d: "M60.4542 60.2734C60.4542 59.0827 60.5809 57.9301 60.8342 56.8154C61.1129 55.7007 61.5436 54.7127 62.1262 53.8514C62.7089 52.9647 63.4689 52.2681 64.4062 51.7614C65.3436 51.2294 66.4836 50.9634 67.8262 50.9634C69.1689 50.9634 70.3089 51.2294 71.2462 51.7614C72.1836 52.2681 72.9436 52.9647 73.5262 53.8514C74.1089 54.7127 74.5269 55.7007 74.7802 56.8154C75.0589 57.9301 75.1982 59.0827 75.1982 60.2734C75.1982 61.4134 75.0589 62.5281 74.7802 63.6174C74.5269 64.6814 74.1089 65.6441 73.5262 66.5054C72.9436 67.3667 72.1836 68.0634 71.2462 68.5954C70.3089 69.1021 69.1689 69.3554 67.8262 69.3554C66.4836 69.3554 65.3436 69.1021 64.4062 68.5954C63.4689 68.0634 62.7089 67.3667 62.1262 66.5054C61.5436 65.6441 61.1129 64.6814 60.8342 63.6174C60.5809 62.5281 60.4542 61.4134 60.4542 60.2734ZM54.4882 60.2734C54.4882 62.2494 54.7922 64.0987 55.4002 65.8214C56.0082 67.5187 56.8822 69.0007 58.0222 70.2674C59.1622 71.5341 60.5556 72.5347 62.2022 73.2694C63.8742 73.9787 65.7489 74.3334 67.8262 74.3334C69.9289 74.3334 71.8036 73.9787 73.4502 73.2694C75.0969 72.5347 76.4902 71.5341 77.6302 70.2674C78.7702 69.0007 79.6442 67.5187 80.2522 65.8214C80.8602 64.0987 81.1642 62.2494 81.1642 60.2734C81.1642 58.2467 80.8602 56.3721 80.2522 54.6494C79.6442 52.9014 78.7702 51.3814 77.6302 50.0894C76.4902 48.7974 75.0969 47.7841 73.4502 47.0494C71.8036 46.3147 69.9289 45.9474 67.8262 45.9474C65.7489 45.9474 63.8742 46.3147 62.2022 47.0494C60.5556 47.7841 59.1622 48.7974 58.0222 50.0894C56.8822 51.3814 56.0082 52.9014 55.4002 54.6494C54.7922 56.3721 54.4882 58.2467 54.4882 60.2734Z",
|
|
87
|
+
fill: "#949115"
|
|
88
|
+
}));
|
|
89
|
+
};
|
|
90
|
+
var Aic = exports.Aic = function Aic(props) {
|
|
91
|
+
return (0, _react2.jsx)("svg", (0, _extends2["default"])({
|
|
92
|
+
width: "40",
|
|
93
|
+
height: "40",
|
|
94
|
+
viewBox: "0 0 100 100",
|
|
95
|
+
fill: "none",
|
|
96
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
97
|
+
}, props), (0, _react2.jsx)("path", {
|
|
98
|
+
d: "M11.5 11.5H88.66L88.67 7.5H7.5V38.5H11.5V11.5Z",
|
|
99
|
+
fill: "#032B75"
|
|
100
|
+
}), (0, _react2.jsx)("path", {
|
|
101
|
+
d: "M88.67 7.5L88.5 88.47H11.5V81.78H7.5V92.5H92.5V7.5H88.67Z",
|
|
102
|
+
fill: "#032B75"
|
|
103
|
+
}), (0, _react2.jsx)("path", {
|
|
104
|
+
d: "M58.2054 55.7134C58.1041 55.0294 57.8761 54.4087 57.5214 53.8514C57.1667 53.2687 56.7234 52.7621 56.1914 52.3314C55.6594 51.9007 55.0514 51.5714 54.3674 51.3434C53.7087 51.0901 53.0121 50.9634 52.2774 50.9634C50.9347 50.9634 49.7947 51.2294 48.8574 51.7614C47.9201 52.2681 47.1601 52.9647 46.5774 53.8514C45.9947 54.7127 45.5641 55.7007 45.2854 56.8154C45.0321 57.9301 44.9054 59.0827 44.9054 60.2734C44.9054 61.4134 45.0321 62.5281 45.2854 63.6174C45.5641 64.6814 45.9947 65.6441 46.5774 66.5054C47.1601 67.3667 47.9201 68.0634 48.8574 68.5954C49.7947 69.1021 50.9347 69.3554 52.2774 69.3554C54.1014 69.3554 55.5201 68.7981 56.5334 67.6834C57.5721 66.5687 58.2054 65.0994 58.4334 63.2754H64.2094C64.0574 64.9727 63.6647 66.5054 63.0314 67.8734C62.3981 69.2414 61.5621 70.4067 60.5234 71.3694C59.4847 72.3321 58.2687 73.0667 56.8754 73.5734C55.4821 74.0801 53.9494 74.3334 52.2774 74.3334C50.2001 74.3334 48.3254 73.9787 46.6534 73.2694C45.0067 72.5347 43.6134 71.5341 42.4734 70.2674C41.3334 69.0007 40.4594 67.5187 39.8514 65.8214C39.2434 64.0987 38.9394 62.2494 38.9394 60.2734C38.9394 58.2467 39.2434 56.3721 39.8514 54.6494C40.4594 52.9014 41.3334 51.3814 42.4734 50.0894C43.6134 48.7974 45.0067 47.7841 46.6534 47.0494C48.3254 46.3147 50.2001 45.9474 52.2774 45.9474C53.7721 45.9474 55.1781 46.1627 56.4954 46.5934C57.8381 47.0241 59.0287 47.6574 60.0674 48.4934C61.1314 49.3041 62.0054 50.3174 62.6894 51.5334C63.3734 52.7494 63.8041 54.1427 63.9814 55.7134H58.2054Z",
|
|
105
|
+
fill: "#032B75"
|
|
106
|
+
}), (0, _react2.jsx)("path", {
|
|
107
|
+
d: "M28.9103 46.5934H34.8763V73.7254H28.9103V46.5934Z",
|
|
108
|
+
fill: "#032B75"
|
|
109
|
+
}), (0, _react2.jsx)("path", {
|
|
110
|
+
d: "M9.73669 63.2374H16.7667L13.3467 53.2814H13.2707L9.73669 63.2374ZM10.3067 46.5934H16.4247L26.5707 73.7254H20.3767L18.3247 67.6834H8.17869L6.05069 73.7254H0.0466919L10.3067 46.5934Z",
|
|
111
|
+
fill: "#032B75"
|
|
112
|
+
}));
|
|
113
|
+
};
|
|
114
|
+
var PamIcon = exports.PamIcon = function PamIcon(props) {
|
|
115
|
+
return (0, _react2.jsx)("svg", (0, _extends2["default"])({
|
|
116
|
+
width: "40",
|
|
117
|
+
height: "40",
|
|
118
|
+
viewBox: "0 0 40 40",
|
|
119
|
+
fill: "none",
|
|
120
|
+
xmlns: "http://www.w3.org/2000/svg"
|
|
121
|
+
}, props), (0, _react2.jsx)("g", {
|
|
122
|
+
clipPath: "url(#clip0_33_3080)"
|
|
123
|
+
}, (0, _react2.jsx)("path", {
|
|
124
|
+
d: "M4.6 4.6H35.464L35.468 3H3V15.4H4.6V4.6Z",
|
|
125
|
+
fill: "#52304B"
|
|
126
|
+
}), (0, _react2.jsx)("path", {
|
|
127
|
+
d: "M35.468 3L35.4 35.388H4.6V32.712H3V37H37V3H35.468Z",
|
|
128
|
+
fill: "#52304B"
|
|
129
|
+
}), (0, _react2.jsx)("path", {
|
|
130
|
+
d: "M27.0457 29.4902H24.3553L20.8441 18.6374H23.2913L25.7081 26.2678H25.7385L28.1857 18.6374H30.6481L27.0457 29.4902Z",
|
|
131
|
+
fill: "#52304B"
|
|
132
|
+
}), (0, _react2.jsx)("path", {
|
|
133
|
+
d: "M13.6834 23.547H16.2978C16.845 23.547 17.2554 23.4254 17.529 23.1822C17.8026 22.939 17.9394 22.5438 17.9394 21.9966C17.9394 21.4696 17.8026 21.0896 17.529 20.8566C17.2554 20.6134 16.845 20.4918 16.2978 20.4918H13.6834V23.547ZM11.297 18.6374H17.149C17.6354 18.6374 18.0711 18.7184 18.4562 18.8806C18.8514 19.0326 19.1858 19.2454 19.4594 19.519C19.7431 19.7926 19.9559 20.1118 20.0978 20.4766C20.2498 20.8312 20.3258 21.2163 20.3258 21.6318C20.3258 22.2702 20.189 22.8224 19.9154 23.2886C19.6519 23.7547 19.2162 24.1094 18.6082 24.3526V24.383C18.9021 24.464 19.1453 24.5907 19.3378 24.763C19.5303 24.9251 19.6874 25.1227 19.809 25.3558C19.9306 25.5787 20.0167 25.827 20.0674 26.1006C20.1282 26.3742 20.1687 26.6478 20.189 26.9214C20.1991 27.0936 20.2093 27.2963 20.2194 27.5294C20.2295 27.7624 20.2447 28.0006 20.265 28.2438C20.2954 28.487 20.3359 28.72 20.3866 28.943C20.4474 29.1558 20.5335 29.3382 20.645 29.4902H18.2586C18.1269 29.1456 18.0458 28.7352 18.0154 28.259C17.985 27.7827 17.9394 27.3267 17.8786 26.891C17.7975 26.3235 17.6253 25.908 17.3618 25.6446C17.0983 25.3811 16.6677 25.2494 16.0698 25.2494H13.6834V29.4902H11.297V18.6374Z",
|
|
134
|
+
fill: "#52304B"
|
|
135
|
+
}), (0, _react2.jsx)("path", {
|
|
136
|
+
d: "M3.54509 23.7446H5.39949C5.67309 23.7446 5.93656 23.7243 6.18989 23.6838C6.44322 23.6432 6.66616 23.5672 6.85869 23.4558C7.05123 23.3342 7.20323 23.167 7.31469 22.9542C7.43629 22.7414 7.49709 22.4627 7.49709 22.1182C7.49709 21.7736 7.43629 21.495 7.31469 21.2822C7.20323 21.0694 7.05123 20.9072 6.85869 20.7958C6.66616 20.6742 6.44322 20.5931 6.18989 20.5526C5.93656 20.512 5.67309 20.4918 5.39949 20.4918H3.54509V23.7446ZM1.15869 18.6374H6.05309C6.73203 18.6374 7.30963 18.7387 7.78589 18.9414C8.26216 19.1339 8.64723 19.3923 8.94109 19.7166C9.24509 20.0408 9.46296 20.4107 9.59469 20.8262C9.73656 21.2416 9.80749 21.6723 9.80749 22.1182C9.80749 22.5539 9.73656 22.9846 9.59469 23.4102C9.46296 23.8256 9.24509 24.1955 8.94109 24.5198C8.64723 24.844 8.26216 25.1075 7.78589 25.3102C7.30963 25.5027 6.73203 25.599 6.05309 25.599H3.54509V29.4902H1.15869V18.6374Z",
|
|
137
|
+
fill: "#52304B"
|
|
138
|
+
})), (0, _react2.jsx)("defs", null, (0, _react2.jsx)("clipPath", {
|
|
139
|
+
id: "clip0_33_3080"
|
|
140
|
+
}, (0, _react2.jsx)("rect", {
|
|
141
|
+
width: "40",
|
|
142
|
+
height: "40",
|
|
143
|
+
fill: "white"
|
|
144
|
+
}))));
|
|
145
|
+
};
|
|
@@ -1,15 +1,43 @@
|
|
|
1
|
-
declare const
|
|
1
|
+
declare const icons: {
|
|
2
2
|
[x: number]: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
3
|
+
aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
+
applicationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
5
|
+
Ascending: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
6
|
+
authenticationIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
7
|
+
clipboard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
7
8
|
CreateIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
9
|
+
daVinci: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
10
|
+
DefaultCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
11
|
+
Descending: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
12
|
+
ErrorCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
13
|
+
integrationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
14
|
+
listViewMenu: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
15
|
+
mdiAccountCog: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
16
|
+
mdiAccountMultiple: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
17
|
+
mdiEarth: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
18
|
+
mdiEmoticonHappyOutline: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
19
|
+
mdiFingerprint: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
20
|
+
mdiPlayCircleIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
21
|
+
mdiScaleBalance: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
22
|
+
mdiShoCard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
23
|
+
mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
24
|
+
mdiViewDashboard: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
25
|
+
mdiWeb: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
8
26
|
MenuDown: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
9
27
|
MenuUp: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
28
|
+
monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
29
|
+
openInNew: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
30
|
+
overviewIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
31
|
+
p1verify: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
32
|
+
pam: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
33
|
+
PingAuthorize: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
10
34
|
pingLogoHorizontalSmall: import("react/jsx-runtime").JSX.Element;
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
35
|
+
protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
rocketLaunchIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
37
|
+
shareFeedbackIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
38
|
+
shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
39
|
+
SuccessCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
40
|
+
userExperienceIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
41
|
+
WarningIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
14
42
|
};
|
|
15
|
-
export default
|
|
43
|
+
export default icons;
|
|
@@ -10,28 +10,46 @@ _Object$defineProperty(exports, "__esModule", {
|
|
|
10
10
|
});
|
|
11
11
|
exports["default"] = void 0;
|
|
12
12
|
var _defineProperty2 = _interopRequireDefault(require("@babel/runtime-corejs3/helpers/defineProperty"));
|
|
13
|
+
var _AccountCheckOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AccountCheckOutlineIcon"));
|
|
14
|
+
var _AccountCogIcon = _interopRequireDefault(require("@pingux/mdi-react/AccountCogIcon"));
|
|
15
|
+
var _AccountMultipleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AccountMultipleOutlineIcon"));
|
|
13
16
|
var _AlertCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertCircleOutlineIcon"));
|
|
14
17
|
var _AlertOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertOutlineIcon"));
|
|
18
|
+
var _AppsIcon = _interopRequireDefault(require("@pingux/mdi-react/AppsIcon"));
|
|
15
19
|
var _ArrowDownIcon = _interopRequireDefault(require("@pingux/mdi-react/ArrowDownIcon"));
|
|
16
20
|
var _ArrowUpIcon = _interopRequireDefault(require("@pingux/mdi-react/ArrowUpIcon"));
|
|
21
|
+
var _CardAccountDetailsOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CardAccountDetailsOutlineIcon"));
|
|
22
|
+
var _ChatIcon = _interopRequireDefault(require("@pingux/mdi-react/ChatIcon"));
|
|
17
23
|
var _CheckboxBlankCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckboxBlankCircleOutlineIcon"));
|
|
18
24
|
var _CheckCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckCircleOutlineIcon"));
|
|
19
25
|
var _ChevronDownIcon = _interopRequireDefault(require("@pingux/mdi-react/ChevronDownIcon"));
|
|
20
26
|
var _ChevronUpIcon = _interopRequireDefault(require("@pingux/mdi-react/ChevronUpIcon"));
|
|
27
|
+
var _ClipboardIcon = _interopRequireDefault(require("@pingux/mdi-react/ClipboardIcon"));
|
|
21
28
|
var _CloseOctagonOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CloseOctagonOutlineIcon"));
|
|
22
29
|
var _CreateOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CreateOutlineIcon"));
|
|
23
30
|
var _DotsHorizontalIcon = _interopRequireDefault(require("@pingux/mdi-react/DotsHorizontalIcon"));
|
|
31
|
+
var _EmoticonHappyOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/EmoticonHappyOutlineIcon"));
|
|
32
|
+
var _FileTreeOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/FileTreeOutlineIcon"));
|
|
33
|
+
var _FingerprintIcon = _interopRequireDefault(require("@pingux/mdi-react/FingerprintIcon"));
|
|
34
|
+
var _GlobeIcon = _interopRequireDefault(require("@pingux/mdi-react/GlobeIcon"));
|
|
24
35
|
var _InformationOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/InformationOutlineIcon"));
|
|
36
|
+
var _KeyOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/KeyOutlineIcon"));
|
|
37
|
+
var _OpenInNewIcon = _interopRequireDefault(require("@pingux/mdi-react/OpenInNewIcon"));
|
|
38
|
+
var _PaletteOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/PaletteOutlineIcon"));
|
|
39
|
+
var _PlayCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/PlayCircleOutlineIcon"));
|
|
40
|
+
var _RocketLaunchIcon = _interopRequireDefault(require("@pingux/mdi-react/RocketLaunchIcon"));
|
|
41
|
+
var _ScaleBalanceIcon = _interopRequireDefault(require("@pingux/mdi-react/ScaleBalanceIcon"));
|
|
42
|
+
var _SettingsOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/SettingsOutlineIcon"));
|
|
43
|
+
var _ShieldStarOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/ShieldStarOutlineIcon"));
|
|
44
|
+
var _ShowChartIcon = _interopRequireDefault(require("@pingux/mdi-react/ShowChartIcon"));
|
|
45
|
+
var _TransitConnectionVariantIcon = _interopRequireDefault(require("@pingux/mdi-react/TransitConnectionVariantIcon"));
|
|
46
|
+
var _ViewDashboardIcon = _interopRequireDefault(require("@pingux/mdi-react/ViewDashboardIcon"));
|
|
47
|
+
var _ViewDashboardOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/ViewDashboardOutlineIcon"));
|
|
48
|
+
var _WidgetsOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/WidgetsOutlineIcon"));
|
|
25
49
|
var _logos = require("../../../../utils/devUtils/constants/logos");
|
|
26
50
|
var _statuses = _interopRequireWildcard(require("../../../../utils/devUtils/constants/statuses"));
|
|
27
|
-
var
|
|
51
|
+
var _navBarIcons = require("../../astro/customProperties/navBarIcons");
|
|
52
|
+
var _icons;
|
|
28
53
|
function _interopRequireWildcard(e, t) { if ("function" == typeof _WeakMap) var r = new _WeakMap(), n = new _WeakMap(); return (_interopRequireWildcard = function _interopRequireWildcard(e, t) { if (!t && e && e.__esModule) return e; var o, i, f = { __proto__: null, "default": e }; if (null === e || "object" != _typeof(e) && "function" != typeof e) return f; if (o = t ? n : r) { if (o.has(e)) return o.get(e); o.set(e, f); } for (var _t in e) "default" !== _t && {}.hasOwnProperty.call(e, _t) && ((i = (o = _Object$defineProperty) && _Object$getOwnPropertyDescriptor(e, _t)) && (i.get || i.set) ? o(f, _t, i) : f[_t] = e[_t]); return f; })(e, t); }
|
|
29
|
-
var
|
|
30
|
-
|
|
31
|
-
WarningIcon: _AlertOutlineIcon["default"],
|
|
32
|
-
DefaultCircle: _CheckboxBlankCircleOutlineIcon["default"],
|
|
33
|
-
SuccessCircle: _CheckCircleOutlineIcon["default"],
|
|
34
|
-
CreateIcon: _CreateOutlineIcon["default"],
|
|
35
|
-
MenuDown: _ChevronDownIcon["default"],
|
|
36
|
-
MenuUp: _ChevronUpIcon["default"]
|
|
37
|
-
}, (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_ErrorCircle$WarningI, _statuses["default"].DEFAULT, _InformationOutlineIcon["default"]), _statuses["default"].ERROR, _AlertCircleOutlineIcon["default"]), _statuses["default"].SUCCESS, _CheckCircleOutlineIcon["default"]), _statuses["default"].WARNING, _AlertOutlineIcon["default"]), _statuses.statusIcon.INFO, _InformationOutlineIcon["default"]), _statuses.statusIcon.CRITICAL, _AlertCircleOutlineIcon["default"]), _statuses.statusIcon.MAJOR, _ArrowUpIcon["default"]), _statuses.statusIcon.MINOR, _ArrowDownIcon["default"]), _statuses.statusIcon.WARNING_NEUTRAL, _AlertOutlineIcon["default"]), _statuses.statusIcon.FATAL, _CloseOctagonOutlineIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_ErrorCircle$WarningI, "pingLogoHorizontalSmall", _logos.pingLogoHorizontalSmall), "listViewMenu", _DotsHorizontalIcon["default"]), "Ascending", _ArrowUpIcon["default"]), "Descending", _ArrowDownIcon["default"]));
|
|
54
|
+
var icons = (_icons = {}, (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_icons, _statuses["default"].DEFAULT, _InformationOutlineIcon["default"]), _statuses["default"].ERROR, _AlertCircleOutlineIcon["default"]), _statuses["default"].SUCCESS, _CheckCircleOutlineIcon["default"]), _statuses["default"].WARNING, _AlertOutlineIcon["default"]), _statuses.statusIcon.CRITICAL, _AlertCircleOutlineIcon["default"]), _statuses.statusIcon.FATAL, _CloseOctagonOutlineIcon["default"]), _statuses.statusIcon.INFO, _InformationOutlineIcon["default"]), _statuses.statusIcon.MAJOR, _ArrowUpIcon["default"]), _statuses.statusIcon.MINOR, _ArrowDownIcon["default"]), _statuses.statusIcon.WARNING_NEUTRAL, _AlertOutlineIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_icons, "aic", _navBarIcons.Aic), "applicationsIcon", _AppsIcon["default"]), "Ascending", _ArrowUpIcon["default"]), "authenticationIcon", _CheckCircleOutlineIcon["default"]), "clipboard", _ClipboardIcon["default"]), "CreateIcon", _CreateOutlineIcon["default"]), "daVinci", _FileTreeOutlineIcon["default"]), "DefaultCircle", _CheckboxBlankCircleOutlineIcon["default"]), "Descending", _ArrowDownIcon["default"]), "ErrorCircle", _AlertCircleOutlineIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_icons, "integrationsIcon", _WidgetsOutlineIcon["default"]), "listViewMenu", _DotsHorizontalIcon["default"]), "mdiAccountCog", _AccountCogIcon["default"]), "mdiAccountMultiple", _AccountMultipleOutlineIcon["default"]), "mdiEarth", _SettingsOutlineIcon["default"]), "mdiEmoticonHappyOutline", _EmoticonHappyOutlineIcon["default"]), "mdiFingerprint", _FingerprintIcon["default"]), "mdiPlayCircleIcon", _PlayCircleOutlineIcon["default"]), "mdiScaleBalance", _ScaleBalanceIcon["default"]), "mdiShoCard", _CardAccountDetailsOutlineIcon["default"]), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_icons, "mdiTransitConnectionVariant", _TransitConnectionVariantIcon["default"]), "mdiViewDashboard", _ViewDashboardIcon["default"]), "mdiWeb", _GlobeIcon["default"]), "MenuDown", _ChevronDownIcon["default"]), "MenuUp", _ChevronUpIcon["default"]), "monitoringIcon", _ShowChartIcon["default"]), "openInNew", _OpenInNewIcon["default"]), "overviewIcon", _ViewDashboardOutlineIcon["default"]), "p1verify", _AccountCheckOutlineIcon["default"]), "pam", _navBarIcons.PamIcon), (0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])((0, _defineProperty2["default"])(_icons, "PingAuthorize", _KeyOutlineIcon["default"]), "pingLogoHorizontalSmall", _logos.pingLogoHorizontalSmall), "protect", _navBarIcons.Protect), "rocketLaunchIcon", _RocketLaunchIcon["default"]), "shareFeedbackIcon", _ChatIcon["default"]), "shieldStar", _ShieldStarOutlineIcon["default"]), "SuccessCircle", _CheckCircleOutlineIcon["default"]), "userExperienceIcon", _PaletteOutlineIcon["default"]), "WarningIcon", _AlertOutlineIcon["default"]));
|
|
55
|
+
var _default = exports["default"] = icons;
|