@pexip/components 16.13.0 → 16.14.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 (55) hide show
  1. package/CHANGELOG.md +31 -0
  2. package/design-tokens/base/variants.variables.scss +1 -0
  3. package/design-tokens/generated/Icons.ts +8 -0
  4. package/design-tokens/generated/icons/share-16.json +7 -0
  5. package/design-tokens/generated/icons/share-16.svg +14 -0
  6. package/design-tokens/generated/icons/share-16.svg.d.ts +5 -0
  7. package/design-tokens/generated/icons/share-24.json +7 -0
  8. package/design-tokens/generated/icons/share-24.svg +14 -0
  9. package/design-tokens/generated/icons/share-24.svg.d.ts +5 -0
  10. package/design-tokens/mixins/_focus.scss +55 -0
  11. package/dist/components.js +1 -1
  12. package/dist/components.mjs +3084 -2852
  13. package/dist/style.css +1 -1
  14. package/dist/types/design-tokens/generated/Icons.d.ts +1 -0
  15. package/dist/types/design-tokens/generated/Icons.d.ts.map +1 -1
  16. package/dist/types/src/components/elements/BadgeCounter/BadgeCounter.d.ts +3 -0
  17. package/dist/types/src/components/elements/BadgeCounter/BadgeCounter.d.ts.map +1 -1
  18. package/dist/types/src/components/elements/Button/Button.d.ts +32 -1
  19. package/dist/types/src/components/elements/Button/Button.d.ts.map +1 -1
  20. package/dist/types/src/components/elements/InteractiveElement/InteractiveElement.d.ts +7 -1
  21. package/dist/types/src/components/elements/InteractiveElement/InteractiveElement.d.ts.map +1 -1
  22. package/dist/types/src/components/elements/SimpleButton/SimpleButton.d.ts +15 -0
  23. package/dist/types/src/components/elements/SimpleButton/SimpleButton.d.ts.map +1 -1
  24. package/dist/types/src/components/elements/Tooltip/Tooltip.d.ts.map +1 -1
  25. package/dist/types/src/components/elements/Tooltip/Tooltip.utils.d.ts.map +1 -1
  26. package/dist/types/src/components/elements/Video/Video.d.ts +1 -0
  27. package/dist/types/src/components/elements/Video/Video.d.ts.map +1 -1
  28. package/dist/types/src/components/modules/AriaMenu/AriaMenu.d.ts +86 -0
  29. package/dist/types/src/components/modules/AriaMenu/AriaMenu.d.ts.map +1 -0
  30. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenu.d.ts +10 -0
  31. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenu.d.ts.map +1 -0
  32. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuButton.d.ts +19 -0
  33. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuButton.d.ts.map +1 -0
  34. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuItem.d.ts +12 -0
  35. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuItem.d.ts.map +1 -0
  36. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuPopover.d.ts +10 -0
  37. package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuPopover.d.ts.map +1 -0
  38. package/dist/types/src/components/modules/NumberStepInput/NumberStepInput.d.ts.map +1 -1
  39. package/dist/types/src/components/modules/RoundIndicator/RoundIndicator.d.ts +1 -1
  40. package/dist/types/src/components/modules/RoundIndicator/RoundIndicator.d.ts.map +1 -1
  41. package/dist/types/src/components/modules/Table/TablePagination.d.ts +3 -2
  42. package/dist/types/src/components/modules/Table/TablePagination.d.ts.map +1 -1
  43. package/dist/types/src/components/modules/Table/TablePaginationNav.d.ts +1 -1
  44. package/dist/types/src/components/modules/Table/TablePaginationNav.d.ts.map +1 -1
  45. package/dist/types/src/components/modules/Table/hooks/useGroupedPagesNav.d.ts +3 -3
  46. package/dist/types/src/components/modules/Table/hooks/useGroupedPagesNav.d.ts.map +1 -1
  47. package/dist/types/src/components/modules/UserMenuDropContent/UserMenuDropContent.view.d.ts +2 -0
  48. package/dist/types/src/components/modules/UserMenuDropContent/UserMenuDropContent.view.d.ts.map +1 -1
  49. package/dist/types/src/index.d.ts +5 -3
  50. package/dist/types/src/index.d.ts.map +1 -1
  51. package/dist/types/src/types/propTypes.d.ts +1 -1
  52. package/dist/types/src/types/propTypes.d.ts.map +1 -1
  53. package/dist/types/src/types/variants.d.ts +2 -0
  54. package/dist/types/src/types/variants.d.ts.map +1 -1
  55. package/package.json +15 -4
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pexip/components",
3
- "version": "16.13.0",
3
+ "version": "16.14.0",
4
4
  "homepage": "https://gitlab.com/pexip/zoo",
5
5
  "bugs": "https://gitlab.com/pexip/zoo/issues",
6
6
  "repository": {
@@ -38,12 +38,20 @@
38
38
  "typescript-declarations": "tsc --project tsconfig.declarations.json"
39
39
  },
40
40
  "dependencies": {
41
- "@pexip/hooks": "17.1.0",
41
+ "@pexip/hooks": "17.1.1",
42
42
  "@pexip/signal": "16.7.0",
43
- "@pexip/utils": "16.10.0",
43
+ "@pexip/utils": "16.11.0",
44
+ "@react-aria/button": "^3.9.3",
45
+ "@react-aria/interactions": "^3.21.1",
46
+ "@react-aria/menu": "^3.13.1",
44
47
  "@react-aria/overlays": "^3.4.7",
45
48
  "@react-aria/tooltip": "^3.4.7",
49
+ "@react-aria/utils": "^3.23.2",
50
+ "@react-stately/collections": "^3.10.5",
51
+ "@react-stately/menu": "^3.6.1",
52
+ "@react-stately/overlays": "^3.6.5",
46
53
  "@react-stately/tooltip": "^3.4.7",
54
+ "@react-stately/tree": "^3.7.6",
47
55
  "change-case": "^4.1.1",
48
56
  "classnames": "^2.2.6",
49
57
  "focus-visible": "^5.1.0",
@@ -56,7 +64,10 @@
56
64
  },
57
65
  "devDependencies": {
58
66
  "@mdx-js/react": "^1.6.22",
59
- "@pexip/bundler": "16.6.0",
67
+ "@pexip/bundler": "16.6.1",
68
+ "@react-types/button": "^3.9.2",
69
+ "@react-types/menu": "^3.9.7",
70
+ "@react-types/shared": "^3.22.1",
60
71
  "@storybook/addon-actions": "^7.6.15",
61
72
  "@storybook/addon-docs": "^7.6.15",
62
73
  "@storybook/blocks": "^7.6.15",