@tstdl/base 0.85.9 → 0.85.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tstdl/base",
3
- "version": "0.85.9",
3
+ "version": "0.85.10",
4
4
  "author": "Patrick Hein",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -4,6 +4,7 @@ import type { PickBy, ReactiveValue, ReplaceKey } from '../types.js';
4
4
  import type { LocalizableText } from './localizable-text.model.js';
5
5
  import { LocalizationService } from './localization.service.js';
6
6
  export type DynamicText = ReactiveValue<LocalizableText>;
7
+ export declare const missingLocalizationKeyText = "[MISSING LOCALIZATION KEY]";
7
8
  export declare function resolveDynamicText(text: DynamicText, localizationService?: LocalizationService): Signal<string>;
8
9
  export declare function resolveDynamicText$(text: DynamicText, localizationService?: LocalizationService): Observable<string>;
9
10
  export declare function resolveDynamicTexts(texts: DynamicText[], localizationService?: LocalizationService): Signal<string[]>;
@@ -18,6 +18,7 @@ var __copyProps = (to, from, except, desc) => {
18
18
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
19
19
  var dynamic_text_model_exports = {};
20
20
  __export(dynamic_text_model_exports, {
21
+ missingLocalizationKeyText: () => missingLocalizationKeyText,
21
22
  resolveDynamicText: () => resolveDynamicText,
22
23
  resolveDynamicText$: () => resolveDynamicText$,
23
24
  resolveDynamicTexts: () => resolveDynamicTexts,