@tolgee/core 4.4.0 → 4.6.0-rc.6a7caf3.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/dist/tolgee.cjs.js +116 -109
- package/dist/tolgee.cjs.js.map +1 -1
- package/dist/tolgee.cjs.min.js +1 -1
- package/dist/tolgee.cjs.min.js.map +1 -1
- package/dist/tolgee.esm.js +1 -1
- package/dist/tolgee.esm.js.map +1 -1
- package/dist/tolgee.umd.js +116 -109
- package/dist/tolgee.umd.js.map +1 -1
- package/dist/tolgee.umd.min.js +1 -1
- package/dist/tolgee.umd.min.js.map +1 -1
- package/lib/Constants/Global.d.ts +0 -0
- package/lib/Constants/ModifierKey.d.ts +0 -0
- package/lib/Errors/ApiHttpError.d.ts +0 -0
- package/lib/Observer.d.ts +0 -0
- package/lib/Properties.d.ts +2 -1
- package/lib/Tolgee.d.ts +0 -0
- package/lib/TolgeeConfig.d.ts +7 -1
- package/lib/helpers/NodeHelper.d.ts +0 -0
- package/lib/helpers/TextHelper.d.ts +0 -0
- package/lib/helpers/commonTypes.d.ts +0 -0
- package/lib/helpers/encoderPolyfill.d.ts +0 -0
- package/lib/helpers/secret.d.ts +0 -0
- package/lib/helpers/sleep.d.ts +0 -0
- package/lib/highlighter/HighlightFunctionsInitializer.d.ts +1 -0
- package/lib/highlighter/MouseEventHandler.d.ts +7 -12
- package/lib/highlighter/TranslationHighlighter.d.ts +1 -1
- package/lib/index.d.ts +0 -0
- package/lib/modules/IcuFormatter.d.ts +0 -0
- package/lib/modules/index.d.ts +0 -0
- package/lib/services/ApiHttpService.d.ts +0 -0
- package/lib/services/CoreService.d.ts +0 -0
- package/lib/services/DependencyService.d.ts +0 -0
- package/lib/services/ElementRegistrar.d.ts +0 -0
- package/lib/services/EventEmitter.d.ts +0 -0
- package/lib/services/EventService.d.ts +0 -0
- package/lib/services/ModuleService.d.ts +0 -0
- package/lib/services/ScreenshotService.d.ts +0 -0
- package/lib/services/Subscription.d.ts +0 -0
- package/lib/services/TextService.d.ts +0 -0
- package/lib/services/TranslationService.d.ts +0 -0
- package/lib/toolsManager/Messages.d.ts +0 -0
- package/lib/toolsManager/PluginManager.d.ts +0 -0
- package/lib/types/DTOs.d.ts +0 -0
- package/lib/types/apiSchema.generated.d.ts +0 -0
- package/lib/types.d.ts +1 -0
- package/lib/wrappers/AbstractWrapper.d.ts +0 -0
- package/lib/wrappers/NodeHandler.d.ts +0 -0
- package/lib/wrappers/WrappedHandler.d.ts +0 -0
- package/lib/wrappers/invisible/AttributeHandler.d.ts +0 -0
- package/lib/wrappers/invisible/Coder.d.ts +0 -0
- package/lib/wrappers/invisible/ContentHandler.d.ts +0 -0
- package/lib/wrappers/invisible/CoreHandler.d.ts +0 -0
- package/lib/wrappers/invisible/InvisibleWrapper.d.ts +0 -0
- package/lib/wrappers/invisible/ValueMemory.d.ts +0 -0
- package/lib/wrappers/text/AttributeHandler.d.ts +0 -0
- package/lib/wrappers/text/Coder.d.ts +0 -0
- package/lib/wrappers/text/ContentHandler.d.ts +0 -0
- package/lib/wrappers/text/CoreHandler.d.ts +0 -0
- package/lib/wrappers/text/TextWrapper.d.ts +0 -0
- package/package.json +5 -5
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/lib/Observer.d.ts
CHANGED
|
File without changes
|
package/lib/Properties.d.ts
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
import { TolgeeConfig } from './TolgeeConfig';
|
|
2
|
-
import { Scope } from './types';
|
|
2
|
+
import { Mode, Scope } from './types';
|
|
3
3
|
export declare class Properties {
|
|
4
4
|
config: TolgeeConfig;
|
|
5
5
|
scopes?: Scope[];
|
|
6
6
|
projectId?: number;
|
|
7
7
|
permittedLanguageIds?: number[];
|
|
8
|
+
mode?: Mode;
|
|
8
9
|
_currentLanguage?: string;
|
|
9
10
|
get currentLanguage(): string;
|
|
10
11
|
set currentLanguage(language: string);
|
package/lib/Tolgee.d.ts
CHANGED
|
File without changes
|
package/lib/TolgeeConfig.d.ts
CHANGED
|
@@ -1,11 +1,17 @@
|
|
|
1
|
-
|
|
1
|
+
/// <reference types="node" />
|
|
2
|
+
import { TreeTranslationsData } from './types';
|
|
2
3
|
import { ModifierKey } from './Constants/ModifierKey';
|
|
4
|
+
import { Mode } from 'fs';
|
|
3
5
|
declare type UiConstructor = new (...args: any[]) => any;
|
|
4
6
|
interface UiLibInterface {
|
|
5
7
|
UI: UiConstructor;
|
|
6
8
|
}
|
|
7
9
|
declare type UiType = UiConstructor | UiLibInterface | Promise<UiConstructor> | Promise<UiLibInterface>;
|
|
8
10
|
export declare class TolgeeConfig {
|
|
11
|
+
/**
|
|
12
|
+
* @deprecated This option won't have any effect,
|
|
13
|
+
* because mode is now automatically detected when apiKey + apiUrl are set
|
|
14
|
+
*/
|
|
9
15
|
mode?: Mode;
|
|
10
16
|
apiUrl?: string;
|
|
11
17
|
apiKey?: string;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/lib/helpers/secret.d.ts
CHANGED
|
File without changes
|
package/lib/helpers/sleep.d.ts
CHANGED
|
File without changes
|
|
@@ -4,6 +4,7 @@ export declare class HighlightFunctionsInitializer {
|
|
|
4
4
|
private properties;
|
|
5
5
|
constructor(properties: Properties);
|
|
6
6
|
initFunctions(element: ElementWithMeta): void;
|
|
7
|
+
borderElement: HTMLDivElement | null;
|
|
7
8
|
private initHighlightFunction;
|
|
8
9
|
private initUnhighlightFunction;
|
|
9
10
|
}
|
|
@@ -1,23 +1,18 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { Properties } from '../Properties';
|
|
1
|
+
import { DependencyService } from '../services/DependencyService';
|
|
3
2
|
export declare class MouseEventHandler {
|
|
4
|
-
private
|
|
3
|
+
private dependencies;
|
|
5
4
|
private keysDown;
|
|
6
|
-
private mouseOn;
|
|
7
5
|
private highlighted;
|
|
8
6
|
private mouseOnChanged;
|
|
9
7
|
private keysChanged;
|
|
10
|
-
|
|
8
|
+
private cursorPosition;
|
|
9
|
+
constructor(dependencies: DependencyService);
|
|
11
10
|
run(): void;
|
|
12
|
-
handle(element: ElementWithMeta & ElementCSSInlineStyle, onclick: (clickEvent: MouseEvent) => void): void;
|
|
13
|
-
private initEventListeners;
|
|
14
|
-
private readonly onConditionsChanged;
|
|
15
11
|
private readonly highlight;
|
|
16
12
|
private readonly unhighlight;
|
|
17
|
-
private
|
|
18
|
-
private
|
|
19
|
-
private getMouseOn;
|
|
13
|
+
private updateHighlight;
|
|
14
|
+
private updateCursorPosition;
|
|
20
15
|
private initKeyListener;
|
|
21
|
-
private
|
|
16
|
+
private getClosestTolgeeElement;
|
|
22
17
|
private areKeysDown;
|
|
23
18
|
}
|
|
@@ -10,5 +10,5 @@ export declare class TranslationHighlighter {
|
|
|
10
10
|
listen(element: ElementWithMeta & ElementCSSInlineStyle): void;
|
|
11
11
|
private getRenderer;
|
|
12
12
|
private getKeyAndDefault;
|
|
13
|
-
|
|
13
|
+
translationEdit: (e: MouseEvent, element: ElementWithMeta) => Promise<void>;
|
|
14
14
|
}
|
package/lib/index.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/modules/index.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/lib/types/DTOs.d.ts
CHANGED
|
File without changes
|
|
File without changes
|
package/lib/types.d.ts
CHANGED
|
@@ -81,6 +81,7 @@ export declare type ElementMeta = {
|
|
|
81
81
|
nodes: Set<NodeWithMeta>;
|
|
82
82
|
listeningForHighlighting?: boolean;
|
|
83
83
|
removeAllEventListeners?: () => void;
|
|
84
|
+
highlightEl?: HTMLDivElement;
|
|
84
85
|
highlight?: () => void;
|
|
85
86
|
unhighlight?: () => void;
|
|
86
87
|
initialBackgroundColor?: string;
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tolgee/core",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.6.0-rc.6a7caf3.0",
|
|
4
4
|
"description": "Library providing ability to translate messages directly in context of developed application.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "./dist/tolgee.esm.js",
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"@types/intl-messageformat": "^3.0.0",
|
|
49
49
|
"@types/jest": "^27.0.2",
|
|
50
50
|
"@types/node": "^17.0.8",
|
|
51
|
-
"concurrently": "7.
|
|
51
|
+
"concurrently": "7.1.0",
|
|
52
52
|
"intl-messageformat": "^9.9.1",
|
|
53
53
|
"jest": "^27.2.4",
|
|
54
54
|
"jest-fetch-mock": "^3.0.3",
|
|
@@ -57,15 +57,15 @@
|
|
|
57
57
|
"rollup-plugin-terser": "7.0.2",
|
|
58
58
|
"ts-jest": "^27.0.5",
|
|
59
59
|
"tslib": "^2.3.1",
|
|
60
|
-
"typedoc": "0.22.
|
|
61
|
-
"typedoc-plugin-markdown": "3.
|
|
60
|
+
"typedoc": "0.22.15",
|
|
61
|
+
"typedoc-plugin-markdown": "3.12.1",
|
|
62
62
|
"typescript": "4.6.3"
|
|
63
63
|
},
|
|
64
64
|
"exports": {
|
|
65
65
|
"require": "./dist/tolgee.cjs.js",
|
|
66
66
|
"import": "./dist/tolgee.esm.js"
|
|
67
67
|
},
|
|
68
|
-
"gitHead": "
|
|
68
|
+
"gitHead": "6b14274971e7e31b16d5fb37e6eceaea0d3f17f6",
|
|
69
69
|
"publishConfig": {
|
|
70
70
|
"access": "public"
|
|
71
71
|
}
|