@tolgee/web 6.0.1-prerelease.8d24de83.0 → 6.1.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/package.json CHANGED
@@ -1,10 +1,11 @@
1
1
  {
2
2
  "name": "@tolgee/web",
3
- "version": "6.0.1-prerelease.8d24de83.0",
3
+ "version": "6.1.0",
4
4
  "description": "Tolgee for web",
5
5
  "declaration": true,
6
+ "type": "module",
6
7
  "main": "./index.cjs",
7
- "types": "./lib/entry-production.d.ts",
8
+ "types": "./types/index.d.ts",
8
9
  "exports": {
9
10
  ".": {
10
11
  "production": {
@@ -13,12 +14,12 @@
13
14
  },
14
15
  "import": "./dist/tolgee-web.development.esm.js",
15
16
  "require": "./index.cjs",
16
- "types": "./lib/entry-production.d.ts"
17
+ "types": "./types/index.d.ts"
17
18
  },
18
19
  "./tools": {
19
20
  "import": "./dist/tolgee-in-context-tools.esm.js",
20
21
  "require": "./dist/tolgee-in-context-tools.umd.cjs",
21
- "types": "./lib/entry-tools.d.ts"
22
+ "types": "./types/tools.d.ts"
22
23
  },
23
24
  "./package.json": "./package.json"
24
25
  },
@@ -44,7 +45,7 @@
44
45
  "index.cjs"
45
46
  ],
46
47
  "dependencies": {
47
- "@tolgee/core": "6.0.1-prerelease.8d24de83.0"
48
+ "@tolgee/core": "6.1.0"
48
49
  },
49
50
  "devDependencies": {
50
51
  "@emotion/react": "^11.11.4",
@@ -95,7 +96,7 @@
95
96
  "url": "https://github.com/tolgee/tolgee-js/issues"
96
97
  },
97
98
  "homepage": "https://github.com/tolgee/tolgee-js#readme",
98
- "gitHead": "c51f0e006000c43df16526685d2ba481786521c7",
99
+ "gitHead": "c42e65216c4a99707c898df83b9a683a0397b65b",
99
100
  "publishConfig": {
100
101
  "access": "public"
101
102
  },
@@ -2,12 +2,12 @@
2
2
  "internal": true,
3
3
  "main": "../dist/tolgee-in-context-tools.umd.cjs",
4
4
  "type": "module",
5
- "types": "../lib/entry-tools.d.ts",
5
+ "types": "../types/tools.d.ts",
6
6
  "exports": {
7
7
  ".": {
8
8
  "import": "./../dist/tolgee-in-context-tools.esm.js",
9
9
  "require": "./../dist/tolgee-in-context-tools.umd.cjs",
10
- "types": "./../lib/entry-tools.d.ts"
10
+ "types": "./../types/tools.d.ts"
11
11
  },
12
12
  "./package.json": "./package.json"
13
13
  }
@@ -0,0 +1,6 @@
1
+ import type { TolgeePlugin } from '@tolgee/core';
2
+ import type { InContextOptions } from '../lib/types';
3
+
4
+ export declare const DevTools: (options?: InContextOptions) => TolgeePlugin;
5
+
6
+ export * from '../lib/typedIndex';
@@ -0,0 +1,7 @@
1
+ import type { TolgeePlugin } from '@tolgee/core';
2
+ import type { InContextOptions } from '../lib/types';
3
+
4
+ export declare const ContextUi: () => TolgeePlugin;
5
+ export declare const InContextTools: (
6
+ options?: InContextOptions
7
+ ) => TolgeePlugin;