@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.
Files changed (57) hide show
  1. package/lib/cjs/components/Avatar/Avatar.js +13 -2
  2. package/lib/cjs/components/Avatar/Avatar.test.js +95 -1
  3. package/lib/cjs/components/Avatar/constants.d.ts +2 -0
  4. package/lib/cjs/components/Avatar/constants.js +8 -0
  5. package/lib/cjs/components/Avatar/getColorFromUuid.d.ts +2 -0
  6. package/lib/cjs/components/Avatar/getColorFromUuid.js +37 -0
  7. package/lib/cjs/components/Icon/Icon.js +15 -49
  8. package/lib/cjs/components/Icon/Icon.test.js +7 -36
  9. package/lib/cjs/components/Icon/IconDefault.d.ts +4 -0
  10. package/lib/cjs/components/Icon/IconDefault.js +63 -0
  11. package/lib/cjs/components/Icon/IconDefault.test.js +92 -0
  12. package/lib/cjs/components/Icon/IconSymbol.d.ts +4 -0
  13. package/lib/cjs/components/Icon/IconSymbol.js +60 -0
  14. package/lib/cjs/components/Icon/IconSymbol.mdx +46 -0
  15. package/lib/cjs/components/Icon/IconSymbol.test.js +80 -0
  16. package/lib/cjs/components/Icon/MaterialSymbolIcon.stories.d.ts +7 -0
  17. package/lib/cjs/components/Icon/MaterialSymbolIcon.stories.js +207 -0
  18. package/lib/cjs/hooks/useGetTheme/useGetTheme.d.ts +31 -31
  19. package/lib/cjs/index.d.ts +1 -0
  20. package/lib/cjs/index.js +1 -0
  21. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/icons.d.ts +31 -31
  22. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/customProperties/index.d.ts +31 -31
  23. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.d.ts +18 -20
  24. package/lib/cjs/styles/themeOverrides/nextGenDarkMode/variants/variants.js +18 -20
  25. package/lib/cjs/styles/themeOverrides/onyxSideNav.d.ts +32 -29
  26. package/lib/cjs/styles/themeOverrides/onyxSideNav.js +3 -0
  27. package/lib/cjs/styles/themes/next-gen/convertedComponentList.d.ts +1 -0
  28. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +3 -2
  29. package/lib/cjs/styles/themes/next-gen/customProperties/icons.d.ts +32 -32
  30. package/lib/cjs/styles/themes/next-gen/customProperties/icons.js +1 -32
  31. package/lib/cjs/styles/themes/next-gen/customProperties/index.d.ts +32 -32
  32. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +60 -56
  33. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +28 -24
  34. package/lib/cjs/styles/themes/next-gen/variants/variants.js +28 -24
  35. package/lib/cjs/types/avatar.d.ts +2 -0
  36. package/lib/cjs/types/icon.d.ts +3 -1
  37. package/lib/cjs/types/navBar.d.ts +2 -1
  38. package/lib/components/Avatar/Avatar.js +14 -3
  39. package/lib/components/Avatar/Avatar.test.js +95 -1
  40. package/lib/components/Avatar/constants.js +2 -0
  41. package/lib/components/Avatar/getColorFromUuid.js +29 -0
  42. package/lib/components/Icon/Icon.js +11 -47
  43. package/lib/components/Icon/Icon.test.js +5 -34
  44. package/lib/components/Icon/IconDefault.js +53 -0
  45. package/lib/components/Icon/IconDefault.test.js +84 -0
  46. package/lib/components/Icon/IconSymbol.js +50 -0
  47. package/lib/components/Icon/IconSymbol.mdx +46 -0
  48. package/lib/components/Icon/IconSymbol.test.js +77 -0
  49. package/lib/components/Icon/MaterialSymbolIcon.stories.js +200 -0
  50. package/lib/index.js +1 -1
  51. package/lib/styles/themeOverrides/nextGenDarkMode/variants/variants.js +18 -20
  52. package/lib/styles/themeOverrides/onyxSideNav.js +3 -0
  53. package/lib/styles/themes/next-gen/convertedComponentList.js +3 -2
  54. package/lib/styles/themes/next-gen/customProperties/icons.js +1 -32
  55. package/lib/styles/themes/next-gen/variants/variants.js +28 -24
  56. package/lib/tsconfig.lib.tsbuildinfo +1 -1
  57. package/package.json +4 -2
@@ -666,58 +666,56 @@ declare const _default: {
666
666
  base: {
667
667
  '&.is-default': {
668
668
  bg: string;
669
- path: {
670
- fill: string;
669
+ span: {
670
+ color: string;
671
671
  };
672
672
  };
673
673
  '&.is-critical': {
674
674
  bg: string;
675
- path: {
676
- fill: string;
675
+ span: {
676
+ color: string;
677
677
  };
678
678
  };
679
679
  '&.is-warning': {
680
680
  bg: string;
681
- path: {
682
- fill: string;
681
+ span: {
682
+ color: string;
683
683
  };
684
684
  };
685
685
  '&.is-info': {
686
686
  bg: string;
687
- path: {
688
- fill: string;
687
+ span: {
688
+ color: string;
689
689
  };
690
690
  };
691
691
  '&.is-major': {
692
692
  bg: string;
693
- path: {
694
- fill: string;
693
+ span: {
694
+ color: string;
695
695
  };
696
696
  };
697
697
  '&.is-minor': {
698
698
  bg: string;
699
- path: {
700
- fill: string;
699
+ span: {
700
+ color: string;
701
701
  };
702
702
  };
703
703
  '&.is-warning-neutral': {
704
704
  bg: string;
705
- path: {
706
- fill: string;
705
+ span: {
706
+ color: string;
707
707
  };
708
708
  };
709
709
  '&.is-fatal': {
710
710
  bg: string;
711
- path: {
712
- fill: string;
711
+ span: {
712
+ color: string;
713
713
  };
714
714
  };
715
715
  '&.is-selected.is-selected': {
716
716
  bg: string;
717
- '& > svg': {
718
- path: {
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
- path: {
132
- fill: 'black'
131
+ span: {
132
+ color: 'black'
133
133
  }
134
134
  },
135
135
  '&.is-critical': {
136
136
  bg: 'red-500',
137
- path: {
138
- fill: 'black'
137
+ span: {
138
+ color: 'black'
139
139
  }
140
140
  },
141
141
  '&.is-warning': {
142
142
  bg: 'yellow-500',
143
- path: {
144
- fill: 'black'
143
+ span: {
144
+ color: 'black'
145
145
  }
146
146
  },
147
147
  '&.is-info': {
148
148
  bg: 'blue-500',
149
- path: {
150
- fill: 'black'
149
+ span: {
150
+ color: 'black'
151
151
  }
152
152
  },
153
153
  '&.is-major': {
154
154
  bg: 'orange-500',
155
- path: {
156
- fill: 'black'
155
+ span: {
156
+ color: 'black'
157
157
  }
158
158
  },
159
159
  '&.is-minor': {
160
160
  bg: 'yellow-500',
161
- path: {
162
- fill: 'black'
161
+ span: {
162
+ color: 'black'
163
163
  }
164
164
  },
165
165
  '&.is-warning-neutral': {
166
166
  bg: 'gray-700',
167
- path: {
168
- fill: 'gray-100'
167
+ span: {
168
+ color: 'gray-100'
169
169
  }
170
170
  },
171
171
  '&.is-fatal': {
172
172
  bg: 'gray-100',
173
- path: {
174
- fill: 'gray-700'
173
+ span: {
174
+ color: 'gray-700'
175
175
  }
176
176
  },
177
177
  '&.is-selected.is-selected': {
178
178
  bg: 'black',
179
- '& > svg': {
180
- path: {
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: import("@pingux/mdi-react").MdiReactIconComponentType;
243
- Ascending: import("@pingux/mdi-react").MdiReactIconComponentType;
244
- authenticationIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
245
- clipboard: import("@pingux/mdi-react").MdiReactIconComponentType;
246
- CreateIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
247
- daVinci: import("@pingux/mdi-react").MdiReactIconComponentType;
248
- DefaultCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
249
- Descending: import("@pingux/mdi-react").MdiReactIconComponentType;
250
- popoverMenuIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
251
- ErrorCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
252
- integrationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
253
- listViewMenu: import("@pingux/mdi-react").MdiReactIconComponentType;
254
- mdiAccountCog: import("@pingux/mdi-react").MdiReactIconComponentType;
255
- mdiAccountMultiple: import("@pingux/mdi-react").MdiReactIconComponentType;
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: import("@pingux/mdi-react").MdiReactIconComponentType;
259
- mdiPlayCircleIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
260
- mdiScaleBalance: import("@pingux/mdi-react").MdiReactIconComponentType;
261
- mdiShoCard: import("@pingux/mdi-react").MdiReactIconComponentType;
261
+ mdiFingerprint: string;
262
+ mdiPlayCircleIcon: string;
263
+ mdiScaleBalance: string;
264
+ mdiShoCard: string;
262
265
  mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
263
- mdiViewDashboard: import("@pingux/mdi-react").MdiReactIconComponentType;
264
- mdiWeb: import("@pingux/mdi-react").MdiReactIconComponentType;
266
+ mdiViewDashboard: string;
267
+ mdiWeb: string;
265
268
  monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
266
- openInNew: import("@pingux/mdi-react").MdiReactIconComponentType;
267
- overviewIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
268
- p1verify: import("@pingux/mdi-react").MdiReactIconComponentType;
269
+ openInNew: string;
270
+ overviewIcon: string;
271
+ p1verify: string;
269
272
  pam: (props: any) => import("react/jsx-runtime").JSX.Element;
270
- PingAuthorize: import("@pingux/mdi-react").MdiReactIconComponentType;
273
+ PingAuthorize: string;
271
274
  protect: (props: any) => import("react/jsx-runtime").JSX.Element;
272
- rocketLaunchIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
273
- shareFeedbackIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
275
+ rocketLaunchIcon: string;
276
+ shareFeedbackIcon: string;
274
277
  shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
275
- SuccessCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
276
- userExperienceIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
277
- WarningIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
278
+ SuccessCircle: string;
279
+ userExperienceIcon: string;
280
+ WarningIcon: string;
278
281
  };
279
282
  tShirtSizes: {
280
283
  xxs: number;
@@ -213,6 +213,9 @@ var navBar = {
213
213
  },
214
214
  '> div > svg': {
215
215
  fill: '#455469'
216
+ },
217
+ '> span.material-symbols-outlined': {
218
+ color: '#455469'
216
219
  }
217
220
  },
218
221
  navBarItemBody: {
@@ -22,6 +22,7 @@ export declare const astroBlacklistStory: {
22
22
  Text: string[];
23
23
  Loader: string[];
24
24
  Card: string[];
25
+ MaterialSymbolIcon: string[];
25
26
  };
26
27
  export declare const nextGenOnlyComponents: string[];
27
28
  export default nextGenConvertedComponents;
@@ -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]: import("@pingux/mdi-react").MdiReactIconComponentType;
2
+ [x: number]: string;
3
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: import("@pingux/mdi-react").MdiReactIconComponentType;
10
- DefaultCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
11
- Descending: import("@pingux/mdi-react").MdiReactIconComponentType;
12
- popoverMenuIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
13
- ErrorCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
14
- integrationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
15
- listViewMenu: import("@pingux/mdi-react").MdiReactIconComponentType;
16
- mdiAccountCog: import("@pingux/mdi-react").MdiReactIconComponentType;
17
- mdiAccountMultiple: import("@pingux/mdi-react").MdiReactIconComponentType;
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: import("@pingux/mdi-react").MdiReactIconComponentType;
21
- mdiPlayCircleIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
22
- mdiScaleBalance: import("@pingux/mdi-react").MdiReactIconComponentType;
23
- mdiShoCard: import("@pingux/mdi-react").MdiReactIconComponentType;
20
+ mdiFingerprint: string;
21
+ mdiPlayCircleIcon: string;
22
+ mdiScaleBalance: string;
23
+ mdiShoCard: string;
24
24
  mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
25
- mdiViewDashboard: import("@pingux/mdi-react").MdiReactIconComponentType;
26
- mdiWeb: import("@pingux/mdi-react").MdiReactIconComponentType;
27
- MenuDown: import("@pingux/mdi-react").MdiReactIconComponentType;
28
- MenuUp: import("@pingux/mdi-react").MdiReactIconComponentType;
25
+ mdiViewDashboard: string;
26
+ mdiWeb: string;
27
+ MenuDown: string;
28
+ MenuUp: string;
29
29
  monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
30
- openInNew: import("@pingux/mdi-react").MdiReactIconComponentType;
31
- overviewIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
32
- p1verify: import("@pingux/mdi-react").MdiReactIconComponentType;
30
+ openInNew: string;
31
+ overviewIcon: string;
32
+ p1verify: string;
33
33
  pam: (props: any) => import("react/jsx-runtime").JSX.Element;
34
- PingAuthorize: import("@pingux/mdi-react").MdiReactIconComponentType;
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: import("@pingux/mdi-react").MdiReactIconComponentType;
38
- shareFeedbackIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
37
+ rocketLaunchIcon: string;
38
+ shareFeedbackIcon: string;
39
39
  shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
40
- SuccessCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
41
- userExperienceIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
42
- WarningIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
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, _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"]), "popoverMenuIcon", _DotsHorizontalIcon["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, "ErrorCircle", _AlertCircleOutlineIcon["default"]), "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"]), (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", _CardAccountDetailsOutlineIcon["default"]), "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"]), (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", _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"]));
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]: import("@pingux/mdi-react").MdiReactIconComponentType;
19
+ [x: number]: string;
20
20
  aic: (props: any) => import("react/jsx-runtime").JSX.Element;
21
- applicationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
22
- Ascending: import("@pingux/mdi-react").MdiReactIconComponentType;
23
- authenticationIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
24
- clipboard: import("@pingux/mdi-react").MdiReactIconComponentType;
25
- CreateIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
26
- daVinci: import("@pingux/mdi-react").MdiReactIconComponentType;
27
- DefaultCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
28
- Descending: import("@pingux/mdi-react").MdiReactIconComponentType;
29
- popoverMenuIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
30
- ErrorCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
31
- integrationsIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
32
- listViewMenu: import("@pingux/mdi-react").MdiReactIconComponentType;
33
- mdiAccountCog: import("@pingux/mdi-react").MdiReactIconComponentType;
34
- mdiAccountMultiple: import("@pingux/mdi-react").MdiReactIconComponentType;
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: import("@pingux/mdi-react").MdiReactIconComponentType;
38
- mdiPlayCircleIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
39
- mdiScaleBalance: import("@pingux/mdi-react").MdiReactIconComponentType;
40
- mdiShoCard: import("@pingux/mdi-react").MdiReactIconComponentType;
37
+ mdiFingerprint: string;
38
+ mdiPlayCircleIcon: string;
39
+ mdiScaleBalance: string;
40
+ mdiShoCard: string;
41
41
  mdiTransitConnectionVariant: import("@pingux/mdi-react").MdiReactIconComponentType;
42
- mdiViewDashboard: import("@pingux/mdi-react").MdiReactIconComponentType;
43
- mdiWeb: import("@pingux/mdi-react").MdiReactIconComponentType;
44
- MenuDown: import("@pingux/mdi-react").MdiReactIconComponentType;
45
- MenuUp: import("@pingux/mdi-react").MdiReactIconComponentType;
42
+ mdiViewDashboard: string;
43
+ mdiWeb: string;
44
+ MenuDown: string;
45
+ MenuUp: string;
46
46
  monitoringIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
47
- openInNew: import("@pingux/mdi-react").MdiReactIconComponentType;
48
- overviewIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
49
- p1verify: import("@pingux/mdi-react").MdiReactIconComponentType;
47
+ openInNew: string;
48
+ overviewIcon: string;
49
+ p1verify: string;
50
50
  pam: (props: any) => import("react/jsx-runtime").JSX.Element;
51
- PingAuthorize: import("@pingux/mdi-react").MdiReactIconComponentType;
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: import("@pingux/mdi-react").MdiReactIconComponentType;
55
- shareFeedbackIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
54
+ rocketLaunchIcon: string;
55
+ shareFeedbackIcon: string;
56
56
  shieldStar: import("@pingux/mdi-react").MdiReactIconComponentType;
57
- SuccessCircle: import("@pingux/mdi-react").MdiReactIconComponentType;
58
- userExperienceIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
59
- WarningIcon: import("@pingux/mdi-react").MdiReactIconComponentType;
57
+ SuccessCircle: string;
58
+ userExperienceIcon: string;
59
+ WarningIcon: string;
60
60
  };
61
61
  tShirtSizes: {
62
62
  xxs: string;