@pingux/astro 2.210.6-alpha.0 → 2.212.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 (72) hide show
  1. package/lib/cjs/components/ComboBoxField/ComboBoxField.js +2 -1
  2. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.d.ts +14 -0
  3. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.js +70 -0
  4. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.mdx +69 -0
  5. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.stories.js +109 -0
  6. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.styles.d.ts +18 -0
  7. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.styles.js +28 -0
  8. package/lib/cjs/components/LabelValuePairs/LabelValuePairs.test.js +315 -0
  9. package/lib/cjs/components/LabelValuePairs/LabelValuePairsLabel.d.ts +4 -0
  10. package/lib/cjs/components/LabelValuePairs/LabelValuePairsLabel.js +47 -0
  11. package/lib/cjs/components/LabelValuePairs/LabelValuePairsRow.d.ts +3 -0
  12. package/lib/cjs/components/LabelValuePairs/LabelValuePairsRow.js +40 -0
  13. package/lib/cjs/components/LabelValuePairs/LabelValuePairsSubvalue.d.ts +4 -0
  14. package/lib/cjs/components/LabelValuePairs/LabelValuePairsSubvalue.js +29 -0
  15. package/lib/cjs/components/LabelValuePairs/LabelValuePairsValue.d.ts +4 -0
  16. package/lib/cjs/components/LabelValuePairs/LabelValuePairsValue.js +120 -0
  17. package/lib/cjs/components/LabelValuePairs/constants.d.ts +5 -0
  18. package/lib/cjs/components/LabelValuePairs/constants.js +12 -0
  19. package/lib/cjs/components/LabelValuePairs/index.d.ts +2 -0
  20. package/lib/cjs/components/LabelValuePairs/index.js +62 -0
  21. package/lib/cjs/components/LabelValuePairs/labelValuePairsAttributes.d.ts +74 -0
  22. package/lib/cjs/components/LabelValuePairs/labelValuePairsAttributes.js +20 -0
  23. package/lib/cjs/components/Popover/Popover.js +3 -2
  24. package/lib/cjs/components/Popover/Popover.test.js +8 -0
  25. package/lib/cjs/components/PopoverMenu/PopoverMenu.js +2 -1
  26. package/lib/cjs/components/SearchField/SearchAutoComplete.js +2 -1
  27. package/lib/cjs/hooks/useSelectField/useSelectField.js +1 -1
  28. package/lib/cjs/index.d.ts +3 -0
  29. package/lib/cjs/index.js +79 -52
  30. package/lib/cjs/recipes/ListAndPanel.stories.js +1 -16
  31. package/lib/cjs/recipes/PanelContent.stories.js +11 -47
  32. package/lib/cjs/recipes/items.js +38 -30
  33. package/lib/cjs/styles/themes/next-gen/convertedComponentList.js +1 -1
  34. package/lib/cjs/styles/themes/next-gen/next-gen.d.ts +17 -0
  35. package/lib/cjs/styles/themes/next-gen/variants/variants.d.ts +17 -0
  36. package/lib/cjs/styles/themes/next-gen/variants/variants.js +2 -0
  37. package/lib/cjs/styles/variants/variants.js +2 -0
  38. package/lib/cjs/types/index.d.ts +1 -0
  39. package/lib/cjs/types/index.js +46 -35
  40. package/lib/cjs/types/labelValuePairs.d.ts +35 -0
  41. package/lib/cjs/types/labelValuePairs.js +6 -0
  42. package/lib/cjs/utils/designUtils/figmaLinks.d.ts +3 -0
  43. package/lib/cjs/utils/designUtils/figmaLinks.js +3 -0
  44. package/lib/components/ComboBoxField/ComboBoxField.js +2 -1
  45. package/lib/components/LabelValuePairs/LabelValuePairs.js +35 -0
  46. package/lib/components/LabelValuePairs/LabelValuePairs.mdx +69 -0
  47. package/lib/components/LabelValuePairs/LabelValuePairs.stories.js +102 -0
  48. package/lib/components/LabelValuePairs/LabelValuePairs.styles.js +21 -0
  49. package/lib/components/LabelValuePairs/LabelValuePairs.test.js +309 -0
  50. package/lib/components/LabelValuePairs/LabelValuePairsLabel.js +35 -0
  51. package/lib/components/LabelValuePairs/LabelValuePairsRow.js +28 -0
  52. package/lib/components/LabelValuePairs/LabelValuePairsSubvalue.js +17 -0
  53. package/lib/components/LabelValuePairs/LabelValuePairsValue.js +108 -0
  54. package/lib/components/LabelValuePairs/constants.js +5 -0
  55. package/lib/components/LabelValuePairs/index.js +2 -0
  56. package/lib/components/LabelValuePairs/labelValuePairsAttributes.js +13 -0
  57. package/lib/components/Popover/Popover.js +3 -2
  58. package/lib/components/Popover/Popover.test.js +8 -0
  59. package/lib/components/PopoverMenu/PopoverMenu.js +2 -1
  60. package/lib/components/SearchField/SearchAutoComplete.js +2 -1
  61. package/lib/hooks/useSelectField/useSelectField.js +1 -1
  62. package/lib/index.js +3 -0
  63. package/lib/recipes/ListAndPanel.stories.js +3 -18
  64. package/lib/recipes/PanelContent.stories.js +11 -47
  65. package/lib/recipes/items.js +39 -31
  66. package/lib/styles/themes/next-gen/convertedComponentList.js +1 -1
  67. package/lib/styles/themes/next-gen/variants/variants.js +2 -0
  68. package/lib/styles/variants/variants.js +2 -0
  69. package/lib/types/index.js +1 -0
  70. package/lib/types/labelValuePairs.js +1 -0
  71. package/lib/utils/designUtils/figmaLinks.js +3 -0
  72. package/package.json +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pingux/astro",
3
- "version": "2.210.6-alpha.0",
3
+ "version": "2.212.0-alpha.0",
4
4
  "description": "React component library for Ping Identity's design system",
5
5
  "repository": {
6
6
  "type": "git",