@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.
- package/CHANGELOG.md +31 -0
- package/design-tokens/base/variants.variables.scss +1 -0
- package/design-tokens/generated/Icons.ts +8 -0
- package/design-tokens/generated/icons/share-16.json +7 -0
- package/design-tokens/generated/icons/share-16.svg +14 -0
- package/design-tokens/generated/icons/share-16.svg.d.ts +5 -0
- package/design-tokens/generated/icons/share-24.json +7 -0
- package/design-tokens/generated/icons/share-24.svg +14 -0
- package/design-tokens/generated/icons/share-24.svg.d.ts +5 -0
- package/design-tokens/mixins/_focus.scss +55 -0
- package/dist/components.js +1 -1
- package/dist/components.mjs +3084 -2852
- package/dist/style.css +1 -1
- package/dist/types/design-tokens/generated/Icons.d.ts +1 -0
- package/dist/types/design-tokens/generated/Icons.d.ts.map +1 -1
- package/dist/types/src/components/elements/BadgeCounter/BadgeCounter.d.ts +3 -0
- package/dist/types/src/components/elements/BadgeCounter/BadgeCounter.d.ts.map +1 -1
- package/dist/types/src/components/elements/Button/Button.d.ts +32 -1
- package/dist/types/src/components/elements/Button/Button.d.ts.map +1 -1
- package/dist/types/src/components/elements/InteractiveElement/InteractiveElement.d.ts +7 -1
- package/dist/types/src/components/elements/InteractiveElement/InteractiveElement.d.ts.map +1 -1
- package/dist/types/src/components/elements/SimpleButton/SimpleButton.d.ts +15 -0
- package/dist/types/src/components/elements/SimpleButton/SimpleButton.d.ts.map +1 -1
- package/dist/types/src/components/elements/Tooltip/Tooltip.d.ts.map +1 -1
- package/dist/types/src/components/elements/Tooltip/Tooltip.utils.d.ts.map +1 -1
- package/dist/types/src/components/elements/Video/Video.d.ts +1 -0
- package/dist/types/src/components/elements/Video/Video.d.ts.map +1 -1
- package/dist/types/src/components/modules/AriaMenu/AriaMenu.d.ts +86 -0
- package/dist/types/src/components/modules/AriaMenu/AriaMenu.d.ts.map +1 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenu.d.ts +10 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenu.d.ts.map +1 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuButton.d.ts +19 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuButton.d.ts.map +1 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuItem.d.ts +12 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuItem.d.ts.map +1 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuPopover.d.ts +10 -0
- package/dist/types/src/components/modules/AriaMenu/InnerAriaMenuPopover.d.ts.map +1 -0
- package/dist/types/src/components/modules/NumberStepInput/NumberStepInput.d.ts.map +1 -1
- package/dist/types/src/components/modules/RoundIndicator/RoundIndicator.d.ts +1 -1
- package/dist/types/src/components/modules/RoundIndicator/RoundIndicator.d.ts.map +1 -1
- package/dist/types/src/components/modules/Table/TablePagination.d.ts +3 -2
- package/dist/types/src/components/modules/Table/TablePagination.d.ts.map +1 -1
- package/dist/types/src/components/modules/Table/TablePaginationNav.d.ts +1 -1
- package/dist/types/src/components/modules/Table/TablePaginationNav.d.ts.map +1 -1
- package/dist/types/src/components/modules/Table/hooks/useGroupedPagesNav.d.ts +3 -3
- package/dist/types/src/components/modules/Table/hooks/useGroupedPagesNav.d.ts.map +1 -1
- package/dist/types/src/components/modules/UserMenuDropContent/UserMenuDropContent.view.d.ts +2 -0
- package/dist/types/src/components/modules/UserMenuDropContent/UserMenuDropContent.view.d.ts.map +1 -1
- package/dist/types/src/index.d.ts +5 -3
- package/dist/types/src/index.d.ts.map +1 -1
- package/dist/types/src/types/propTypes.d.ts +1 -1
- package/dist/types/src/types/propTypes.d.ts.map +1 -1
- package/dist/types/src/types/variants.d.ts +2 -0
- package/dist/types/src/types/variants.d.ts.map +1 -1
- package/package.json +15 -4
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pexip/components",
|
|
3
|
-
"version": "16.
|
|
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.
|
|
41
|
+
"@pexip/hooks": "17.1.1",
|
|
42
42
|
"@pexip/signal": "16.7.0",
|
|
43
|
-
"@pexip/utils": "16.
|
|
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.
|
|
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",
|