@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
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.170.1-alpha.0",
3
+ "version": "2.172.0-alpha.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",
@@ -43,8 +43,10 @@
43
43
  "@fortawesome/react-fontawesome": "^0.2.2",
44
44
  "@internationalized/date": "^3.5.3",
45
45
  "@internationalized/number": "^3.6.0",
46
+ "@material-symbols/font-400": "^0.40.2",
46
47
  "@mdx-js/react": "^2.0.0",
47
48
  "@monaco-editor/react": "4.4.2",
49
+ "@nx/vite": "20.0.5",
48
50
  "@pingux/mdi-react": "^1.2.0",
49
51
  "@react-aria/accordion": "~3.0.0-alpha.11",
50
52
  "@react-aria/breadcrumbs": "^3.1.4",
@@ -199,8 +201,8 @@
199
201
  "typescript": "~5.5.2",
200
202
  "use-resize-observer": "^8.0.0",
201
203
  "vite-plugin-dts": "~3.8.1",
202
- "whatwg-fetch": "^3.2.0",
203
204
  "vitest": "^1.3.1",
205
+ "whatwg-fetch": "^3.2.0",
204
206
  "babel-loader": "^8.1.0",
205
207
  "msw": "^2.11.3",
206
208
  "msw-storybook-addon": "^2.0.5",