@payfit/unity-components 2.60.8 → 2.60.10

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 (32) hide show
  1. package/dist/esm/components/action-bar/ActionBar.d.ts +4 -0
  2. package/dist/esm/components/actionable/Actionable.d.ts +4 -0
  3. package/dist/esm/components/alert/Alert.d.ts +5 -0
  4. package/dist/esm/components/alert/parts/AlertContent.d.ts +2 -2
  5. package/dist/esm/components/app-menu/parts/AppMenuFooter.d.ts +8 -33
  6. package/dist/esm/components/app-menu/parts/AppMenuFooter.js +14 -180
  7. package/dist/esm/components/app-profile-menu-button/AppProfileMenuButton.d.ts +25 -0
  8. package/dist/esm/components/app-profile-menu-button/AppProfileMenuButton.js +70 -0
  9. package/dist/esm/components/app-profile-menu-button/parts/AppProfileAvatar.d.ts +18 -0
  10. package/dist/esm/components/app-profile-menu-button/parts/AppProfileAvatar.js +79 -0
  11. package/dist/esm/components/app-profile-menu-button/parts/AppProfileMenuHeader.d.ts +14 -0
  12. package/dist/esm/components/app-profile-menu-button/parts/AppProfileMenuHeader.js +88 -0
  13. package/dist/esm/components/avatar/Avatar.d.ts +12 -27
  14. package/dist/esm/components/badge/Badge.d.ts +4 -0
  15. package/dist/esm/components/carousel/Carousel.d.ts +4 -0
  16. package/dist/esm/components/data-table/parts/DataTableBulkActions.d.ts +1 -0
  17. package/dist/esm/components/filter-toolbar/FilterToolbar.d.ts +1 -0
  18. package/dist/esm/components/icon/Icon.d.ts +3 -0
  19. package/dist/esm/components/link/RawLink.d.ts +3 -0
  20. package/dist/esm/components/payfit-brand/PayFitBrand.d.ts +3 -0
  21. package/dist/esm/components/radio-button-group/RadioButtonGroup.d.ts +3 -0
  22. package/dist/esm/components/skip-links/SkipLinks.d.ts +3 -0
  23. package/dist/esm/components/spinner/Spinner.d.ts +7 -0
  24. package/dist/esm/components/timeline/Timeline.d.ts +4 -0
  25. package/dist/esm/docs/reference/catalog/catalog.generated.d.ts +1 -1
  26. package/dist/esm/index.d.ts +1 -0
  27. package/dist/esm/index.js +215 -214
  28. package/i18n/en-GB.json +1 -0
  29. package/i18n/es-ES.json +1 -0
  30. package/i18n/fr-FR.json +1 -0
  31. package/package.json +7 -7
  32. package/src/agent-references/component-catalog.json +29 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@payfit/unity-components",
3
- "version": "2.60.8",
3
+ "version": "2.60.10",
4
4
  "module": "./dist/esm/index.js",
5
5
  "type": "module",
6
6
  "sideEffects": false,
@@ -96,7 +96,7 @@
96
96
  "tailwind-variants": "3.2.2",
97
97
  "usehooks-ts": "3.1.1",
98
98
  "zod": "4.4.3",
99
- "@payfit/unity-illustrations": "2.60.8"
99
+ "@payfit/unity-illustrations": "2.60.10"
100
100
  },
101
101
  "peerDependencies": {
102
102
  "@hookform/devtools": "^4",
@@ -108,8 +108,8 @@
108
108
  "react-hook-form": "^7",
109
109
  "react-router-dom": "^5",
110
110
  "zod": "^3 || ^4",
111
- "@payfit/unity-icons": "2.60.8",
112
- "@payfit/unity-themes": "2.60.8"
111
+ "@payfit/unity-icons": "2.60.10",
112
+ "@payfit/unity-themes": "2.60.10"
113
113
  },
114
114
  "devDependencies": {
115
115
  "@figma/code-connect": "1.4.9",
@@ -159,10 +159,10 @@
159
159
  "@payfit/hr-apps-tsconfigs": "0.0.0-use.local",
160
160
  "@payfit/storybook-addon-console-errors": "0.0.0-use.local",
161
161
  "@payfit/storybook-config": "0.0.0-use.local",
162
- "@payfit/unity-icons": "2.60.8",
163
- "@payfit/unity-themes": "2.60.8",
162
+ "@payfit/unity-illustrations": "2.60.10",
164
163
  "@payfit/vite-configs": "0.0.0-use.local",
165
- "@payfit/unity-illustrations": "2.60.8"
164
+ "@payfit/unity-themes": "2.60.10",
165
+ "@payfit/unity-icons": "2.60.10"
166
166
  },
167
167
  "peerDependenciesMeta": {
168
168
  "@hookform/devtools": {
@@ -131,6 +131,35 @@
131
131
  ],
132
132
  "title": "AppMenu"
133
133
  },
134
+ {
135
+ "description": "Represents an entity profile (company or person) that opens a composed profile menu from an application-shell trigger.",
136
+ "docsHref": "?path=/docs/component-reference-appprofilemenubutton--docs",
137
+ "id": "component-reference-appprofilemenubutton",
138
+ "keywords": [
139
+ "profile",
140
+ "account",
141
+ "avatar",
142
+ "menu",
143
+ "application shell",
144
+ "profile menu",
145
+ "entity"
146
+ ],
147
+ "preview": {
148
+ "type": "story",
149
+ "story": "primary",
150
+ "storyId": "component-reference-appprofilemenubutton--primary"
151
+ },
152
+ "related": [],
153
+ "section": "patterns",
154
+ "tags": [
155
+ "type:pattern",
156
+ "category:navigation",
157
+ "category:content",
158
+ "behavior:disclosure",
159
+ "behavior:editing"
160
+ ],
161
+ "title": "AppProfileMenuButton"
162
+ },
134
163
  {
135
164
  "description": "Provides the content-level sticky top-bar structure for application shells.",
136
165
  "docsHref": "?path=/docs/component-reference-apptopbar--docs",