includio-cms 0.22.0 → 0.24.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.
Files changed (36) hide show
  1. package/API.md +1 -1
  2. package/CHANGELOG.md +42 -0
  3. package/DOCS.md +1169 -146
  4. package/ROADMAP.md +5 -330
  5. package/dist/core/server/entries/operations/get.bench.d.ts +1 -0
  6. package/dist/core/server/entries/operations/get.bench.js +68 -0
  7. package/dist/core/server/entries/operations/get.js +17 -7
  8. package/dist/core/server/fields/utils/imageStyles.bench.d.ts +1 -0
  9. package/dist/core/server/fields/utils/imageStyles.bench.js +82 -0
  10. package/dist/core/server/fields/utils/imageStyles.js +49 -53
  11. package/dist/core/server/media/operations/backgroundMaintenance.d.ts +6 -0
  12. package/dist/core/server/media/operations/backgroundMaintenance.js +6 -1
  13. package/dist/core/server/media/styles/operations/getImageStyle.d.ts +7 -0
  14. package/dist/core/server/media/styles/operations/getImageStyle.js +24 -0
  15. package/dist/db-postgres/index.d.ts +1 -1
  16. package/dist/db-postgres/index.js +27 -0
  17. package/dist/paraglide/messages/_index.d.ts +36 -3
  18. package/dist/paraglide/messages/_index.js +71 -3
  19. package/dist/paraglide/messages/en.d.ts +5 -0
  20. package/dist/paraglide/messages/en.js +14 -0
  21. package/dist/paraglide/messages/pl.d.ts +5 -0
  22. package/dist/paraglide/messages/pl.js +14 -0
  23. package/dist/types/adapters/db.d.ts +16 -0
  24. package/dist/types/adapters/db.js +8 -1
  25. package/dist/updates/0.23.0/index.d.ts +2 -0
  26. package/dist/updates/0.23.0/index.js +21 -0
  27. package/dist/updates/0.24.0/index.d.ts +2 -0
  28. package/dist/updates/0.24.0/index.js +20 -0
  29. package/dist/updates/index.js +3 -1
  30. package/package.json +2 -1
  31. package/dist/paraglide/messages/hello_world.d.ts +0 -5
  32. package/dist/paraglide/messages/hello_world.js +0 -33
  33. package/dist/paraglide/messages/login_hello.d.ts +0 -16
  34. package/dist/paraglide/messages/login_hello.js +0 -34
  35. package/dist/paraglide/messages/login_please_login.d.ts +0 -16
  36. package/dist/paraglide/messages/login_please_login.js +0 -34
@@ -1,16 +0,0 @@
1
- export { login_please_login as login.please_login };
2
- /**
3
- * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
4
- *
5
- * - Changing this function will be over-written by the next build.
6
- *
7
- * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
8
- * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
9
- *
10
- * @param {{}} inputs
11
- * @param {{ locale?: "en" | "pl" }} options
12
- * @returns {string}
13
- */
14
- declare function login_please_login(inputs?: {}, options?: {
15
- locale?: "en" | "pl";
16
- }): string;
@@ -1,34 +0,0 @@
1
- /* eslint-disable */
2
- import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer } from '../runtime.js';
3
-
4
- const en_login_please_login = /** @type {(inputs: {}) => string} */ () => {
5
- return `Login to your account`
6
- };
7
-
8
- const pl_login_please_login = /** @type {(inputs: {}) => string} */ () => {
9
- return `Zaloguj się na swoje konto`
10
- };
11
-
12
- /**
13
- * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
14
- *
15
- * - Changing this function will be over-written by the next build.
16
- *
17
- * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
18
- * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
19
- *
20
- * @param {{}} inputs
21
- * @param {{ locale?: "en" | "pl" }} options
22
- * @returns {string}
23
- */
24
- /* @__NO_SIDE_EFFECTS__ */
25
- const login_please_login = (inputs = {}, options = {}) => {
26
- if (experimentalMiddlewareLocaleSplitting && isServer === false) {
27
- return /** @type {any} */ (globalThis).__paraglide_ssr.login_please_login(inputs)
28
- }
29
- const locale = options.locale ?? getLocale()
30
- trackMessageCall("login_please_login", locale)
31
- if (locale === "en") return en_login_please_login(inputs)
32
- return pl_login_please_login(inputs)
33
- };
34
- export { login_please_login as "login.please_login" }