@hubspot/ui-extensions 0.12.0 → 0.12.2
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/dist/hooks/useExtensionActions.d.ts +17 -1
- package/dist/hooks/useExtensionActions.js +16 -0
- package/dist/hooks/useExtensionApi.d.ts +20 -0
- package/dist/hooks/useExtensionApi.js +22 -0
- package/dist/hooks/useExtensionContext.d.ts +17 -1
- package/dist/hooks/useExtensionContext.js +16 -0
- package/dist/index.d.ts +2 -1
- package/dist/index.js +2 -1
- package/dist/shared/remoteComponents.d.ts +11 -2
- package/dist/shared/remoteComponents.js +9 -0
- package/dist/shared/types/components/accordion.d.ts +1 -1
- package/dist/shared/types/components/alert.d.ts +1 -1
- package/dist/shared/types/components/app-home-header-actions.d.ts +2 -2
- package/dist/shared/types/components/button-row.d.ts +1 -1
- package/dist/shared/types/components/button.d.ts +4 -3
- package/dist/shared/types/components/chart.d.ts +71 -10
- package/dist/shared/types/components/description-list.d.ts +3 -3
- package/dist/shared/types/components/divider.d.ts +5 -1
- package/dist/shared/types/components/dropdown.d.ts +2 -2
- package/dist/shared/types/components/empty-state.d.ts +1 -1
- package/dist/shared/types/components/error-state.d.ts +1 -1
- package/dist/shared/types/components/form.d.ts +1 -1
- package/dist/shared/types/components/heading.d.ts +1 -1
- package/dist/shared/types/components/icon.d.ts +1 -1
- package/dist/shared/types/components/illustration.d.ts +1 -1
- package/dist/shared/types/components/image.d.ts +3 -2
- package/dist/shared/types/components/index.d.ts +1 -0
- package/dist/shared/types/components/inputs.d.ts +8 -8
- package/dist/shared/types/components/layouts.d.ts +5 -5
- package/dist/shared/types/components/link.d.ts +3 -2
- package/dist/shared/types/components/list.d.ts +1 -1
- package/dist/shared/types/components/loading-spinner.d.ts +1 -1
- package/dist/shared/types/components/progress-bar.d.ts +1 -1
- package/dist/shared/types/components/selects.d.ts +2 -2
- package/dist/shared/types/components/spacer.d.ts +14 -0
- package/dist/shared/types/components/spacer.js +1 -0
- package/dist/shared/types/components/statistics.d.ts +5 -5
- package/dist/shared/types/components/status-tag.d.ts +1 -1
- package/dist/shared/types/components/step-indicator.d.ts +1 -1
- package/dist/shared/types/components/table.d.ts +4 -4
- package/dist/shared/types/components/tag.d.ts +3 -2
- package/dist/shared/types/components/text.d.ts +1 -1
- package/dist/shared/types/components/tile.d.ts +1 -1
- package/dist/shared/types/components/toggle.d.ts +1 -1
- package/dist/shared/types/components/toggleInputs.d.ts +3 -3
- package/dist/shared/types/context.d.ts +2 -0
- package/dist/shared/types/crm.d.ts +186 -42
- package/dist/shared/types/extension-points.d.ts +6 -1
- package/dist/shared/types/shared.d.ts +8 -0
- package/dist/shared/types/worker-globals.d.ts +5 -1
- package/dist/testing/__tests__/mocks.useExtensionApi.spec.d.ts +1 -0
- package/dist/testing/__tests__/mocks.useExtensionApi.spec.js +72 -0
- package/dist/testing/internal/mocks/mock-hooks.js +9 -0
- package/dist/testing/internal/types-internal.d.ts +2 -0
- package/dist/testing/types.d.ts +10 -0
- package/package.json +5 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hubspot/ui-extensions",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -61,19 +61,19 @@
|
|
|
61
61
|
"devDependencies": {
|
|
62
62
|
"@testing-library/dom": "^10.4.0",
|
|
63
63
|
"@testing-library/react": "^14.1.2",
|
|
64
|
-
"@types/node": "^
|
|
64
|
+
"@types/node": "^22.14.0",
|
|
65
65
|
"@types/react": "^18.3.1",
|
|
66
66
|
"@types/react-dom": "^18.3.1",
|
|
67
|
-
"@vitest/coverage-v8": "
|
|
67
|
+
"@vitest/coverage-v8": "4.0.18",
|
|
68
68
|
"jsdom": "26.1.0",
|
|
69
69
|
"react-dom": "18.3.1",
|
|
70
70
|
"react-reconciler": "^0.29.0",
|
|
71
71
|
"tsd": "^0.33.0",
|
|
72
72
|
"typescript": "5.9.3",
|
|
73
|
-
"vitest": "
|
|
73
|
+
"vitest": "4.0.18"
|
|
74
74
|
},
|
|
75
75
|
"tsd": {
|
|
76
76
|
"directory": "src/__tests__/test-d"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "b8c8170048a28b28112833cb552be43d4587c2ed"
|
|
79
79
|
}
|