@budibase/shared-core 3.24.2 → 3.24.3

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 declare const forgotPasswordTranslations: import("./types").TranslationDefinition[];
@@ -2,9 +2,14 @@ import { userMenuTranslations } from "./userMenu";
2
2
  import { profileModalTranslations } from "./profileModal";
3
3
  import { passwordModalTranslations } from "./passwordModal";
4
4
  import { pickerTranslations } from "./picker";
5
+ import { recaptchaTranslations } from "./recaptcha";
6
+ import { portalTranslations } from "./portal";
7
+ import { loginTranslations } from "./login";
8
+ import { forgotPasswordTranslations } from "./forgotPassword";
5
9
  import type { TranslationCategory, TranslationDefinition, TranslationOverrides } from "./types";
6
10
  export * from "./types";
7
- export { userMenuTranslations, profileModalTranslations, passwordModalTranslations, pickerTranslations, };
11
+ export { userMenuTranslations, profileModalTranslations, passwordModalTranslations, pickerTranslations, recaptchaTranslations, portalTranslations, loginTranslations, forgotPasswordTranslations, };
12
+ export declare const TRANSLATION_CATEGORY_LABELS: Record<TranslationCategory, string>;
8
13
  export declare const translations: TranslationDefinition[];
9
14
  export declare const UI_TRANSLATIONS: TranslationDefinition[];
10
15
  export declare const filterValidTranslationOverrides: (source?: TranslationOverrides | null) => TranslationOverrides;
@@ -0,0 +1 @@
1
+ export declare const loginTranslations: import("./types").TranslationDefinition[];
@@ -0,0 +1 @@
1
+ export declare const portalTranslations: import("./types").TranslationDefinition[];
@@ -0,0 +1 @@
1
+ export declare const recaptchaTranslations: import("./types").TranslationDefinition[];
@@ -1,4 +1,4 @@
1
- export type TranslationCategory = "userMenu" | "profileModal" | "passwordModal" | "picker";
1
+ export type TranslationCategory = "userMenu" | "profileModal" | "passwordModal" | "picker" | "recaptcha" | "portal" | "login" | "forgotPassword";
2
2
  export interface TranslationDefinitionInput {
3
3
  key: string;
4
4
  name: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@budibase/shared-core",
3
- "version": "3.24.2",
3
+ "version": "3.24.3",
4
4
  "description": "Shared data utils",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -37,5 +37,5 @@
37
37
  }
38
38
  }
39
39
  },
40
- "gitHead": "237b6a0e4013f770eb766e79596e6f52bfcb6ea7"
40
+ "gitHead": "a85e0ba10b7d19e204062fb63dc306953284e277"
41
41
  }