@pingux/astro 2.170.1-alpha.0 → 2.172.0-alpha.0
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/Avatar/Avatar.js +13 -2
- package/lib/cjs/components/Avatar/Avatar.test.js +95 -1
- package/lib/cjs/components/Avatar/constants.d.ts +2 -0
- package/lib/cjs/components/Avatar/constants.js +8 -0
- package/lib/cjs/components/Avatar/getColorFromUuid.d.ts +2 -0
- package/lib/cjs/components/Avatar/getColorFromUuid.js +37 -0
- package/lib/cjs/components/Icon/Icon.js +15 -49
- package/lib/cjs/components/Icon/Icon.test.js +7 -36
- package/lib/cjs/components/Icon/IconDefault.d.ts +4 -0
- package/lib/cjs/components/Icon/IconDefault.js +63 -0
- package/lib/cjs/components/Icon/IconDefault.test.js +92 -0
- package/lib/cjs/components/Icon/IconSymbol.d.ts +4 -0
- package/lib/cjs/components/Icon/IconSymbol.js +60 -0
- package/lib/cjs/components/Icon/IconSymbol.mdx +46 -0
- package/lib/cjs/components/Icon/IconSymbol.test.js +80 -0
- package/lib/cjs/components/Icon/MaterialSymbolIcon.stories.d.ts +7 -0
- package/lib/cjs/components/Icon/MaterialSymbolIcon.stories.js +207 -0
- package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +31 -31
- package/lib/cjs/index.d.ts +1 -0
- package/lib/cjs/index.js +1 -0
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +31 -31
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +31 -31
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +18 -20
- package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +18 -20
- package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +32 -29
- package/lib/cjs/styles/themeOverrides/onyxSideNav.js +3 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +1 -0
- package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +3 -2
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +32 -32
- package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +1 -32
- package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +32 -32
- package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +60 -56
- package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +28 -24
- package/lib/cjs/styles/themes/next-gen/variants/variants.js +28 -24
- package/lib/cjs/types/avatar.d.ts +2 -0
- package/lib/cjs/types/icon.d.ts +3 -1
- package/lib/cjs/types/navBar.d.ts +2 -1
- package/lib/components/Avatar/Avatar.js +14 -3
- package/lib/components/Avatar/Avatar.test.js +95 -1
- package/lib/components/Avatar/constants.js +2 -0
- package/lib/components/Avatar/getColorFromUuid.js +29 -0
- package/lib/components/Icon/Icon.js +11 -47
- package/lib/components/Icon/Icon.test.js +5 -34
- package/lib/components/Icon/IconDefault.js +53 -0
- package/lib/components/Icon/IconDefault.test.js +84 -0
- package/lib/components/Icon/IconSymbol.js +50 -0
- package/lib/components/Icon/IconSymbol.mdx +46 -0
- package/lib/components/Icon/IconSymbol.test.js +77 -0
- package/lib/components/Icon/MaterialSymbolIcon.stories.js +200 -0
- package/lib/index.js +1 -1
- package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +18 -20
- package/lib/styles/themeOverrides/onyxSideNav.js +3 -0
- package/lib/styles/themes/next-gen/convertedComponentList.js +3 -2
- package/lib/styles/themes/next-gen/customProperties/icons.js +1 -32
- package/lib/styles/themes/next-gen/variants/variants.js +28 -24
- package/lib/tsconfig.lib.tsbuildinfo +1 -1
- package/package.json +4 -2
|
@@ -666,58 +666,56 @@ declare const _default: {
|
|
|
666
666
|
base: {
|
|
667
667
|
'&.is-default': {
|
|
668
668
|
bg: string;
|
|
669
|
-
|
|
670
|
-
|
|
669
|
+
span: {
|
|
670
|
+
color: string;
|
|
671
671
|
};
|
|
672
672
|
};
|
|
673
673
|
'&.is-critical': {
|
|
674
674
|
bg: string;
|
|
675
|
-
|
|
676
|
-
|
|
675
|
+
span: {
|
|
676
|
+
color: string;
|
|
677
677
|
};
|
|
678
678
|
};
|
|
679
679
|
'&.is-warning': {
|
|
680
680
|
bg: string;
|
|
681
|
-
|
|
682
|
-
|
|
681
|
+
span: {
|
|
682
|
+
color: string;
|
|
683
683
|
};
|
|
684
684
|
};
|
|
685
685
|
'&.is-info': {
|
|
686
686
|
bg: string;
|
|
687
|
-
|
|
688
|
-
|
|
687
|
+
span: {
|
|
688
|
+
color: string;
|
|
689
689
|
};
|
|
690
690
|
};
|
|
691
691
|
'&.is-major': {
|
|
692
692
|
bg: string;
|
|
693
|
-
|
|
694
|
-
|
|
693
|
+
span: {
|
|
694
|
+
color: string;
|
|
695
695
|
};
|
|
696
696
|
};
|
|
697
697
|
'&.is-minor': {
|
|
698
698
|
bg: string;
|
|
699
|
-
|
|
700
|
-
|
|
699
|
+
span: {
|
|
700
|
+
color: string;
|
|
701
701
|
};
|
|
702
702
|
};
|
|
703
703
|
'&.is-warning-neutral': {
|
|
704
704
|
bg: string;
|
|
705
|
-
|
|
706
|
-
|
|
705
|
+
span: {
|
|
706
|
+
color: string;
|
|
707
707
|
};
|
|
708
708
|
};
|
|
709
709
|
'&.is-fatal': {
|
|
710
710
|
bg: string;
|
|
711
|
-
|
|
712
|
-
|
|
711
|
+
span: {
|
|
712
|
+
color: string;
|
|
713
713
|
};
|
|
714
714
|
};
|
|
715
715
|
'&.is-selected.is-selected': {
|
|
716
716
|
bg: string;
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
fill: string;
|
|
720
|
-
};
|
|
717
|
+
span: {
|
|
718
|
+
color: string;
|
|
721
719
|
};
|
|
722
720
|
};
|
|
723
721
|
};
|
|
@@ -128,58 +128,56 @@ var statusIcon = {
|
|
|
128
128
|
base: {
|
|
129
129
|
'&.is-default': {
|
|
130
130
|
bg: 'gray-100',
|
|
131
|
-
|
|
132
|
-
|
|
131
|
+
span: {
|
|
132
|
+
color: 'black'
|
|
133
133
|
}
|
|
134
134
|
},
|
|
135
135
|
'&.is-critical': {
|
|
136
136
|
bg: 'red-500',
|
|
137
|
-
|
|
138
|
-
|
|
137
|
+
span: {
|
|
138
|
+
color: 'black'
|
|
139
139
|
}
|
|
140
140
|
},
|
|
141
141
|
'&.is-warning': {
|
|
142
142
|
bg: 'yellow-500',
|
|
143
|
-
|
|
144
|
-
|
|
143
|
+
span: {
|
|
144
|
+
color: 'black'
|
|
145
145
|
}
|
|
146
146
|
},
|
|
147
147
|
'&.is-info': {
|
|
148
148
|
bg: 'blue-500',
|
|
149
|
-
|
|
150
|
-
|
|
149
|
+
span: {
|
|
150
|
+
color: 'black'
|
|
151
151
|
}
|
|
152
152
|
},
|
|
153
153
|
'&.is-major': {
|
|
154
154
|
bg: 'orange-500',
|
|
155
|
-
|
|
156
|
-
|
|
155
|
+
span: {
|
|
156
|
+
color: 'black'
|
|
157
157
|
}
|
|
158
158
|
},
|
|
159
159
|
'&.is-minor': {
|
|
160
160
|
bg: 'yellow-500',
|
|
161
|
-
|
|
162
|
-
|
|
161
|
+
span: {
|
|
162
|
+
color: 'black'
|
|
163
163
|
}
|
|
164
164
|
},
|
|
165
165
|
'&.is-warning-neutral': {
|
|
166
166
|
bg: 'gray-700',
|
|
167
|
-
|
|
168
|
-
|
|
167
|
+
span: {
|
|
168
|
+
color: 'gray-100'
|
|
169
169
|
}
|
|
170
170
|
},
|
|
171
171
|
'&.is-fatal': {
|
|
172
172
|
bg: 'gray-100',
|
|
173
|
-
|
|
174
|
-
|
|
173
|
+
span: {
|
|
174
|
+
color: 'gray-700'
|
|
175
175
|
}
|
|
176
176
|
},
|
|
177
177
|
'&.is-selected.is-selected': {
|
|
178
178
|
bg: 'black',
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
fill: 'active'
|
|
182
|
-
}
|
|
179
|
+
span: {
|
|
180
|
+
color: 'active'
|
|
183
181
|
}
|
|
184
182
|
}
|
|
185
183
|
}
|
|
@@ -214,6 +214,9 @@ declare const _default: {
|
|
|
214
214
|
'> div > svg': {
|
|
215
215
|
fill: string;
|
|
216
216
|
};
|
|
217
|
+
'> span.material-symbols-outlined': {
|
|
218
|
+
color: string;
|
|
219
|
+
};
|
|
217
220
|
};
|
|
218
221
|
navBarItemBody: {
|
|
219
222
|
mb: string;
|
|
@@ -239,42 +242,42 @@ declare const _default: {
|
|
|
239
242
|
MenuUp: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
240
243
|
pingLogoHorizontalSmall: import("react/jsx-runtime").JSX.Element;
|
|
241
244
|
aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
242
|
-
applicationsIcon:
|
|
243
|
-
Ascending:
|
|
244
|
-
authenticationIcon:
|
|
245
|
-
clipboard:
|
|
246
|
-
CreateIcon:
|
|
247
|
-
daVinci:
|
|
248
|
-
DefaultCircle:
|
|
249
|
-
Descending:
|
|
250
|
-
popoverMenuIcon:
|
|
251
|
-
ErrorCircle:
|
|
252
|
-
integrationsIcon:
|
|
253
|
-
listViewMenu:
|
|
254
|
-
mdiAccountCog:
|
|
255
|
-
mdiAccountMultiple:
|
|
245
|
+
applicationsIcon: string;
|
|
246
|
+
Ascending: string;
|
|
247
|
+
authenticationIcon: string;
|
|
248
|
+
clipboard: string;
|
|
249
|
+
CreateIcon: string;
|
|
250
|
+
daVinci: string;
|
|
251
|
+
DefaultCircle: string;
|
|
252
|
+
Descending: string;
|
|
253
|
+
popoverMenuIcon: string;
|
|
254
|
+
ErrorCircle: string;
|
|
255
|
+
integrationsIcon: string;
|
|
256
|
+
listViewMenu: string;
|
|
257
|
+
mdiAccountCog: string;
|
|
258
|
+
mdiAccountMultiple: string;
|
|
256
259
|
mdiEarth: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
257
260
|
mdiEmoticonHappyOutline: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
258
|
-
mdiFingerprint:
|
|
259
|
-
mdiPlayCircleIcon:
|
|
260
|
-
mdiScaleBalance:
|
|
261
|
-
mdiShoCard:
|
|
261
|
+
mdiFingerprint: string;
|
|
262
|
+
mdiPlayCircleIcon: string;
|
|
263
|
+
mdiScaleBalance: string;
|
|
264
|
+
mdiShoCard: string;
|
|
262
265
|
mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
263
|
-
mdiViewDashboard:
|
|
264
|
-
mdiWeb:
|
|
266
|
+
mdiViewDashboard: string;
|
|
267
|
+
mdiWeb: string;
|
|
265
268
|
monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
266
|
-
openInNew:
|
|
267
|
-
overviewIcon:
|
|
268
|
-
p1verify:
|
|
269
|
+
openInNew: string;
|
|
270
|
+
overviewIcon: string;
|
|
271
|
+
p1verify: string;
|
|
269
272
|
pam: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
270
|
-
PingAuthorize:
|
|
273
|
+
PingAuthorize: string;
|
|
271
274
|
protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
272
|
-
rocketLaunchIcon:
|
|
273
|
-
shareFeedbackIcon:
|
|
275
|
+
rocketLaunchIcon: string;
|
|
276
|
+
shareFeedbackIcon: string;
|
|
274
277
|
shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
275
|
-
SuccessCircle:
|
|
276
|
-
userExperienceIcon:
|
|
277
|
-
WarningIcon:
|
|
278
|
+
SuccessCircle: string;
|
|
279
|
+
userExperienceIcon: string;
|
|
280
|
+
WarningIcon: string;
|
|
278
281
|
};
|
|
279
282
|
tShirtSizes: {
|
|
280
283
|
xxs: number;
|
|
@@ -5,7 +5,7 @@ _Object$defineProperty(exports, "__esModule", {
|
|
|
5
5
|
value: true
|
|
6
6
|
});
|
|
7
7
|
exports.nextGenOnlyComponents = exports["default"] = exports.componentSpecificNextGenBlacklist = exports.astroBlacklistStory = void 0;
|
|
8
|
-
var nextGenConvertedComponents = ['AccordionGridGroup', 'AccordionGroup', 'ArrayField', 'AstroProvider', 'Avatar', 'Badge', 'Base Components', 'Breadcrumbs', 'Button', 'ButtonBar', 'Callout', 'Card', 'CheckboxField', 'CodeView', 'ColorField', 'ComboBoxField', 'CopyText', 'DataTable', 'EnvironmentBreadcrumb', 'GridList', 'HelpHint', 'Icon', 'IconBadge', 'IconButton', 'IconWrapper', 'ImageUploadField', 'Loader', 'Link', 'LinkSelectField', 'ListView', 'ListViewItem', 'Message', 'Messages', 'Modal', 'MultiValuesField', 'MultivaluesField', 'NavBar', 'NavList', 'NavigationHeader', 'NextGen ListViewItem', 'NumberField', 'OverlayPanel', 'PageHeader', 'Pagination', 'PanelHeader', 'PasswordField', 'PopoverMenu', 'ProgressBar', 'RadioField', 'RadioGroupField', 'RangeCalendar', 'RequirementsList', 'RockerButtonGroup', 'SearchField', 'SelectField', 'Skeleton', 'SliderField', 'Stepper', 'Sticker Sheet', 'SwitchField', 'StatusIcon', 'Table', 'TableBase', 'Tabs', 'Text', 'TextAreaField', 'TextField', 'TooltipTrigger', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField', 'ServerErrorBoundary', 'Avatar', 'Box', 'TimeField'];
|
|
8
|
+
var nextGenConvertedComponents = ['AccordionGridGroup', 'AccordionGroup', 'ArrayField', 'AstroProvider', 'Avatar', 'Badge', 'Base Components', 'Breadcrumbs', 'Button', 'ButtonBar', 'Callout', 'Card', 'CheckboxField', 'CodeView', 'ColorField', 'ComboBoxField', 'CopyText', 'DataTable', 'EnvironmentBreadcrumb', 'GridList', 'HelpHint', 'Icon', 'MaterialSymbolIcon', 'IconBadge', 'IconButton', 'IconWrapper', 'ImageUploadField', 'Loader', 'Link', 'LinkSelectField', 'ListView', 'ListViewItem', 'Message', 'Messages', 'Modal', 'MultiValuesField', 'MultivaluesField', 'NavBar', 'NavList', 'NavigationHeader', 'NextGen ListViewItem', 'NumberField', 'OverlayPanel', 'PageHeader', 'Pagination', 'PanelHeader', 'PasswordField', 'PopoverMenu', 'ProgressBar', 'RadioField', 'RadioGroupField', 'RangeCalendar', 'RequirementsList', 'RockerButtonGroup', 'SearchField', 'SelectField', 'Skeleton', 'SliderField', 'Stepper', 'Sticker Sheet', 'SwitchField', 'StatusIcon', 'Table', 'TableBase', 'Tabs', 'Text', 'TextAreaField', 'TextField', 'TooltipTrigger', 'ArrayField', 'ColorField', 'LinkSelectField', 'NumberField', 'SwitchField', 'Base Components', 'SliderField', 'ServerErrorBoundary', 'Avatar', 'Box', 'TimeField'];
|
|
9
9
|
var componentSpecificNextGenBlacklist = exports.componentSpecificNextGenBlacklist = {
|
|
10
10
|
AstroProvider: ['Default', 'With Custom Theme Override'],
|
|
11
11
|
Messages: ['Customization'],
|
|
@@ -28,7 +28,8 @@ var astroBlacklistStory = exports.astroBlacklistStory = {
|
|
|
28
28
|
Avatar: ['Size Variation', 'Color Variation', 'Icon Variation', 'Square Variation', 'Logo Variation'],
|
|
29
29
|
Text: ['Onyx'],
|
|
30
30
|
Loader: ['Circular', 'Custom Circular'],
|
|
31
|
-
Card: ['With Shadow']
|
|
31
|
+
Card: ['With Shadow'],
|
|
32
|
+
MaterialSymbolIcon: ['Default', 'Sizes', 'Commonly Used']
|
|
32
33
|
};
|
|
33
34
|
var nextGenOnlyComponents = exports.nextGenOnlyComponents = ['NavigationHeader', 'Prompt', 'AI Panel', 'Response', 'Suggestions', 'Prompt Input', 'Footer', 'Onyx Input Patterns'];
|
|
34
35
|
var _default = exports["default"] = nextGenConvertedComponents;
|
|
@@ -1,44 +1,44 @@
|
|
|
1
1
|
declare const icons: {
|
|
2
|
-
[x: number]:
|
|
2
|
+
[x: number]: string;
|
|
3
3
|
aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
4
|
-
applicationsIcon:
|
|
5
|
-
Ascending:
|
|
6
|
-
authenticationIcon:
|
|
7
|
-
clipboard:
|
|
8
|
-
CreateIcon:
|
|
9
|
-
daVinci:
|
|
10
|
-
DefaultCircle:
|
|
11
|
-
Descending:
|
|
12
|
-
popoverMenuIcon:
|
|
13
|
-
ErrorCircle:
|
|
14
|
-
integrationsIcon:
|
|
15
|
-
listViewMenu:
|
|
16
|
-
mdiAccountCog:
|
|
17
|
-
mdiAccountMultiple:
|
|
4
|
+
applicationsIcon: string;
|
|
5
|
+
Ascending: string;
|
|
6
|
+
authenticationIcon: string;
|
|
7
|
+
clipboard: string;
|
|
8
|
+
CreateIcon: string;
|
|
9
|
+
daVinci: string;
|
|
10
|
+
DefaultCircle: string;
|
|
11
|
+
Descending: string;
|
|
12
|
+
popoverMenuIcon: string;
|
|
13
|
+
ErrorCircle: string;
|
|
14
|
+
integrationsIcon: string;
|
|
15
|
+
listViewMenu: string;
|
|
16
|
+
mdiAccountCog: string;
|
|
17
|
+
mdiAccountMultiple: string;
|
|
18
18
|
mdiEarth: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
19
19
|
mdiEmoticonHappyOutline: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
20
|
-
mdiFingerprint:
|
|
21
|
-
mdiPlayCircleIcon:
|
|
22
|
-
mdiScaleBalance:
|
|
23
|
-
mdiShoCard:
|
|
20
|
+
mdiFingerprint: string;
|
|
21
|
+
mdiPlayCircleIcon: string;
|
|
22
|
+
mdiScaleBalance: string;
|
|
23
|
+
mdiShoCard: string;
|
|
24
24
|
mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
25
|
-
mdiViewDashboard:
|
|
26
|
-
mdiWeb:
|
|
27
|
-
MenuDown:
|
|
28
|
-
MenuUp:
|
|
25
|
+
mdiViewDashboard: string;
|
|
26
|
+
mdiWeb: string;
|
|
27
|
+
MenuDown: string;
|
|
28
|
+
MenuUp: string;
|
|
29
29
|
monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
30
|
-
openInNew:
|
|
31
|
-
overviewIcon:
|
|
32
|
-
p1verify:
|
|
30
|
+
openInNew: string;
|
|
31
|
+
overviewIcon: string;
|
|
32
|
+
p1verify: string;
|
|
33
33
|
pam: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
34
|
-
PingAuthorize:
|
|
34
|
+
PingAuthorize: string;
|
|
35
35
|
pingLogoHorizontalSmall: import("react/jsx-runtime").JSX.Element;
|
|
36
36
|
protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
37
|
-
rocketLaunchIcon:
|
|
38
|
-
shareFeedbackIcon:
|
|
37
|
+
rocketLaunchIcon: string;
|
|
38
|
+
shareFeedbackIcon: string;
|
|
39
39
|
shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
40
|
-
SuccessCircle:
|
|
41
|
-
userExperienceIcon:
|
|
42
|
-
WarningIcon:
|
|
40
|
+
SuccessCircle: string;
|
|
41
|
+
userExperienceIcon: string;
|
|
42
|
+
WarningIcon: string;
|
|
43
43
|
};
|
|
44
44
|
export default icons;
|
|
@@ -10,46 +10,15 @@ _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"));
|
|
16
|
-
var _AlertCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertCircleOutlineIcon"));
|
|
17
|
-
var _AlertOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/AlertOutlineIcon"));
|
|
18
|
-
var _AppsIcon = _interopRequireDefault(require("@pingux/mdi-react/AppsIcon"));
|
|
19
|
-
var _ArrowDownIcon = _interopRequireDefault(require("@pingux/mdi-react/ArrowDownIcon"));
|
|
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"));
|
|
23
|
-
var _CheckboxBlankCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckboxBlankCircleOutlineIcon"));
|
|
24
|
-
var _CheckCircleOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CheckCircleOutlineIcon"));
|
|
25
|
-
var _ChevronDownIcon = _interopRequireDefault(require("@pingux/mdi-react/ChevronDownIcon"));
|
|
26
|
-
var _ChevronUpIcon = _interopRequireDefault(require("@pingux/mdi-react/ChevronUpIcon"));
|
|
27
|
-
var _ClipboardIcon = _interopRequireDefault(require("@pingux/mdi-react/ClipboardIcon"));
|
|
28
|
-
var _CloseOctagonOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CloseOctagonOutlineIcon"));
|
|
29
|
-
var _CreateOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/CreateOutlineIcon"));
|
|
30
|
-
var _DotsHorizontalIcon = _interopRequireDefault(require("@pingux/mdi-react/DotsHorizontalIcon"));
|
|
31
13
|
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"));
|
|
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
14
|
var _SettingsOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/SettingsOutlineIcon"));
|
|
43
15
|
var _ShieldStarOutlineIcon = _interopRequireDefault(require("@pingux/mdi-react/ShieldStarOutlineIcon"));
|
|
44
16
|
var _ShowChartIcon = _interopRequireDefault(require("@pingux/mdi-react/ShowChartIcon"));
|
|
45
17
|
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"));
|
|
49
18
|
var _logos = require("../../../../utils/devUtils/constants/logos");
|
|
50
19
|
var _statuses = _interopRequireWildcard(require("../../../../utils/devUtils/constants/statuses"));
|
|
51
20
|
var _navBarIcons = require("../../astro/customProperties/navBarIcons");
|
|
52
21
|
var _icons;
|
|
53
22
|
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); }
|
|
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,
|
|
23
|
+
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, 'info'), _statuses["default"].ERROR, 'error'), _statuses["default"].SUCCESS, 'check_circle'), _statuses["default"].WARNING, 'warning'), _statuses.statusIcon.CRITICAL, 'error'), _statuses.statusIcon.FATAL, 'dangerous'), _statuses.statusIcon.INFO, 'info'), _statuses.statusIcon.MAJOR, 'arrow_upward'), _statuses.statusIcon.MINOR, 'arrow_downward'), _statuses.statusIcon.WARNING_NEUTRAL, 'warning'), (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", 'apps'), "Ascending", 'arrow_upward'), "authenticationIcon", 'check_circle'), "clipboard", 'content_paste'), "CreateIcon", 'edit'), "daVinci", 'account_tree'), "DefaultCircle", 'circle'), "Descending", 'arrow_downward'), "popoverMenuIcon", 'more_horiz'), (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, "ErrorCircle", 'error'), "integrationsIcon", 'widgets'), "listViewMenu", 'more_horiz'), "mdiAccountCog", 'manage_accounts'), "mdiAccountMultiple", 'group'), "mdiEarth", _SettingsOutlineIcon["default"]), "mdiEmoticonHappyOutline", _EmoticonHappyOutlineIcon["default"]), "mdiFingerprint", 'fingerprint'), "mdiPlayCircleIcon", 'play_circle'), "mdiScaleBalance", 'balance'), (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, "mdiShoCard", 'id_card'), "mdiTransitConnectionVariant", _TransitConnectionVariantIcon["default"]), "mdiViewDashboard", 'dashboard'), "mdiWeb", 'globe'), "MenuDown", 'keyboard_arrow_down'), "MenuUp", 'keyboard_arrow_up'), "monitoringIcon", _ShowChartIcon["default"]), "openInNew", 'open_in_new'), "overviewIcon", 'dashboard'), "p1verify", 'person_check'), (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, "pam", _navBarIcons.PamIcon), "PingAuthorize", 'key'), "pingLogoHorizontalSmall", _logos.pingLogoHorizontalSmall), "protect", _navBarIcons.Protect), "rocketLaunchIcon", 'rocket_launch'), "shareFeedbackIcon", 'chat'), "shieldStar", _ShieldStarOutlineIcon["default"]), "SuccessCircle", 'check_circle'), "userExperienceIcon", 'palette'), "WarningIcon", 'warning'));
|
|
55
24
|
var _default = exports["default"] = icons;
|
|
@@ -16,47 +16,47 @@ export declare const nextGenThemeValues: {
|
|
|
16
16
|
navButtonEstHeight: number;
|
|
17
17
|
};
|
|
18
18
|
icons: {
|
|
19
|
-
[x: number]:
|
|
19
|
+
[x: number]: string;
|
|
20
20
|
aic: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
21
|
-
applicationsIcon:
|
|
22
|
-
Ascending:
|
|
23
|
-
authenticationIcon:
|
|
24
|
-
clipboard:
|
|
25
|
-
CreateIcon:
|
|
26
|
-
daVinci:
|
|
27
|
-
DefaultCircle:
|
|
28
|
-
Descending:
|
|
29
|
-
popoverMenuIcon:
|
|
30
|
-
ErrorCircle:
|
|
31
|
-
integrationsIcon:
|
|
32
|
-
listViewMenu:
|
|
33
|
-
mdiAccountCog:
|
|
34
|
-
mdiAccountMultiple:
|
|
21
|
+
applicationsIcon: string;
|
|
22
|
+
Ascending: string;
|
|
23
|
+
authenticationIcon: string;
|
|
24
|
+
clipboard: string;
|
|
25
|
+
CreateIcon: string;
|
|
26
|
+
daVinci: string;
|
|
27
|
+
DefaultCircle: string;
|
|
28
|
+
Descending: string;
|
|
29
|
+
popoverMenuIcon: string;
|
|
30
|
+
ErrorCircle: string;
|
|
31
|
+
integrationsIcon: string;
|
|
32
|
+
listViewMenu: string;
|
|
33
|
+
mdiAccountCog: string;
|
|
34
|
+
mdiAccountMultiple: string;
|
|
35
35
|
mdiEarth: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
36
36
|
mdiEmoticonHappyOutline: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
37
|
-
mdiFingerprint:
|
|
38
|
-
mdiPlayCircleIcon:
|
|
39
|
-
mdiScaleBalance:
|
|
40
|
-
mdiShoCard:
|
|
37
|
+
mdiFingerprint: string;
|
|
38
|
+
mdiPlayCircleIcon: string;
|
|
39
|
+
mdiScaleBalance: string;
|
|
40
|
+
mdiShoCard: string;
|
|
41
41
|
mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
42
|
-
mdiViewDashboard:
|
|
43
|
-
mdiWeb:
|
|
44
|
-
MenuDown:
|
|
45
|
-
MenuUp:
|
|
42
|
+
mdiViewDashboard: string;
|
|
43
|
+
mdiWeb: string;
|
|
44
|
+
MenuDown: string;
|
|
45
|
+
MenuUp: string;
|
|
46
46
|
monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
47
|
-
openInNew:
|
|
48
|
-
overviewIcon:
|
|
49
|
-
p1verify:
|
|
47
|
+
openInNew: string;
|
|
48
|
+
overviewIcon: string;
|
|
49
|
+
p1verify: string;
|
|
50
50
|
pam: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
51
|
-
PingAuthorize:
|
|
51
|
+
PingAuthorize: string;
|
|
52
52
|
pingLogoHorizontalSmall: import("react/jsx-runtime").JSX.Element;
|
|
53
53
|
protect: (props: any) => import("react/jsx-runtime").JSX.Element;
|
|
54
|
-
rocketLaunchIcon:
|
|
55
|
-
shareFeedbackIcon:
|
|
54
|
+
rocketLaunchIcon: string;
|
|
55
|
+
shareFeedbackIcon: string;
|
|
56
56
|
shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
|
|
57
|
-
SuccessCircle:
|
|
58
|
-
userExperienceIcon:
|
|
59
|
-
WarningIcon:
|
|
57
|
+
SuccessCircle: string;
|
|
58
|
+
userExperienceIcon: string;
|
|
59
|
+
WarningIcon: string;
|
|
60
60
|
};
|
|
61
61
|
tShirtSizes: {
|
|
62
62
|
xxs: string;
|