@opengeoweb/sentry 19.5.1-nightly-20260831

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.
@@ -0,0 +1 @@
1
+ export * from './lib/sentry';
@@ -0,0 +1,3 @@
1
+ import React from 'react';
2
+ declare const SentryRecordButton: React.FC;
3
+ export default SentryRecordButton;
@@ -0,0 +1,2 @@
1
+ export { default as SentryRecordButton } from './SentryRecordButton';
2
+ export { default as UserMenuItemSentryRecording } from '../UserMenuItemSentryRecording/UserMenuItemSentryRecording';
@@ -0,0 +1,7 @@
1
+ import React from 'react';
2
+ interface UserMenuItemSentryRecordingProps {
3
+ recordButtonEnabled?: boolean;
4
+ setRecordButtonEnabled?: React.Dispatch<React.SetStateAction<boolean>>;
5
+ }
6
+ export declare const UserMenuItemSentryRecording: React.FC<UserMenuItemSentryRecordingProps>;
7
+ export default UserMenuItemSentryRecording;
@@ -0,0 +1,2 @@
1
+ export * from './components/SentryRecordButton';
2
+ export * from './utils/i18n';
@@ -0,0 +1,7 @@
1
+ import i18n from 'i18next';
2
+ import type { UseTranslationResponse } from 'react-i18next';
3
+ import sentryTranslations from '../../../locales/sentry.json';
4
+ export declare const SENTRY_NAMESPACE = "sentry";
5
+ export declare const initSentryI18n: () => void;
6
+ export declare const useSentryTranslation: () => UseTranslationResponse<typeof SENTRY_NAMESPACE, typeof i18n>;
7
+ export { i18n, sentryTranslations };
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@opengeoweb/sentry",
3
+ "version": "19.5.1-nightly-20260831",
4
+ "description": "GeoWeb sentry integration library for the opengeoweb project",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git@gitlab.com:opengeoweb/opengeoweb.git"
9
+ },
10
+ "main": "./dist/index.esm.js",
11
+ "module": "./dist/index.esm.js",
12
+ "types": "./dist/index.d.ts",
13
+ "exports": {
14
+ "./package.json": "./package.json",
15
+ ".": {
16
+ "@opengeoweb/source": "./src/index.ts",
17
+ "types": "./dist/index.d.ts",
18
+ "import": "./dist/index.esm.js",
19
+ "default": "./dist/index.esm.js"
20
+ }
21
+ },
22
+ "dependencies": {
23
+ "@opengeoweb/shared": "19.5.1-nightly-20260831",
24
+ "@mui/system": "^9.0.1",
25
+ "@sentry/react": "^8.54.0",
26
+ "@mui/material": "^9.0.1",
27
+ "i18next": "^25.3.2",
28
+ "react-i18next": "^15.1.1"
29
+ },
30
+ "peerDependencies": {
31
+ "react": "19",
32
+ "@emotion/react": "*",
33
+ "@emotion/styled": "*"
34
+ },
35
+ "files": [
36
+ "dist",
37
+ "!dist/package.json",
38
+ "README.md",
39
+ "package.json"
40
+ ]
41
+ }