includio-cms 0.1.3 → 0.1.4

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/CHANGELOG.md CHANGED
@@ -3,6 +3,14 @@
3
3
  All notable changes to includio-cms are documented here.
4
4
  Generated from `src/lib/updates/` — do not edit manually.
5
5
 
6
+ ## 0.1.4 — 2026-02-19
7
+
8
+ Build & reactivity fixes
9
+
10
+ ### Fixed
11
+ - Prepack: remove dist/paraglide/.gitignore before publint (fixes publish validation)
12
+ - Collection entries: wrap query blocks in {#key} to force re-fetch on param change
13
+
6
14
  ## 0.1.3 — 2026-02-18
7
15
 
8
16
  Admin DX — route scaffolding & boilerplate reduction
package/ROADMAP.md CHANGED
@@ -48,6 +48,11 @@
48
48
 
49
49
  - [x] `[feature]` `[P1]` Admin route scaffolding — CLI `includio scaffold admin`, catch-all API handler, page.params fallbacks for CollectionPage/EntryPage <!-- files: src/lib/cli/scaffold/admin.ts, src/lib/admin/api/handler.ts, src/lib/admin/client/collection/collection-page.svelte, src/lib/admin/client/entry/entry-page.svelte -->
50
50
 
51
+ ## 0.1.4 — Build & reactivity fixes
52
+
53
+ - [x] `[fix]` `[P0]` Prepack: remove dist/paraglide/.gitignore before publint (publish validation) <!-- files: package.json -->
54
+ - [x] `[fix]` `[P1]` Collection entries: {#key} wrapper on query blocks to force re-fetch on param change <!-- files: src/lib/admin/client/collection/collection-entries.svelte -->
55
+
51
56
  ## 0.2.0 — Plugin system
52
57
 
53
58
  - [ ] `[feature]` `[P0]` Wire plugin hooks into CRUD operations (before/afterCreate, Update, Delete) <!-- files: src/lib/types/plugins.ts, src/lib/core/server/entries/operations/ -->
@@ -384,6 +384,7 @@
384
384
  </div>
385
385
 
386
386
  <Tabs.Content value="active" class="mt-0">
387
+ {#key JSON.stringify(activeQueryParams)}
387
388
  {#await remotes.getRawEntries(activeQueryParams) then result}
388
389
  {@const allRows = result.entries.map(mapEntryToRow)}
389
390
  {@const items = useServerPagination
@@ -506,9 +507,11 @@
506
507
  />
507
508
  {/if}
508
509
  {/await}
510
+ {/key}
509
511
  </Tabs.Content>
510
512
 
511
513
  <Tabs.Content value="archived" class="mt-0">
514
+ {#key JSON.stringify(archivedQueryParams)}
512
515
  {#await remotes.getRawEntries(archivedQueryParams) then result}
513
516
  {@const items = result.entries.map((entry) => ({
514
517
  ...mapEntryToRow(entry),
@@ -549,6 +552,7 @@
549
552
  </div>
550
553
  {/if}
551
554
  {/await}
555
+ {/key}
552
556
  </Tabs.Content>
553
557
  </Tabs.Root>
554
558
 
@@ -0,0 +1,3 @@
1
+ # ignore everything because the directory is auto-generated by inlang paraglide-js
2
+ # for more info visit https://inlang.com/m/gerre34r/paraglide-js
3
+ *
@@ -0,0 +1,36 @@
1
+ export function hello_world(inputs: {
2
+ name: NonNullable<unknown>;
3
+ }, options?: {
4
+ locale?: "en" | "pl";
5
+ }): string;
6
+ /**
7
+ * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
8
+ *
9
+ * - Changing this function will be over-written by the next build.
10
+ *
11
+ * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
12
+ * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
13
+ *
14
+ * @param {{}} inputs
15
+ * @param {{ locale?: "en" | "pl" }} options
16
+ * @returns {string}
17
+ */
18
+ declare function login_hello(inputs?: {}, options?: {
19
+ locale?: "en" | "pl";
20
+ }): string;
21
+ /**
22
+ * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
23
+ *
24
+ * - Changing this function will be over-written by the next build.
25
+ *
26
+ * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
27
+ * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
28
+ *
29
+ * @param {{}} inputs
30
+ * @param {{ locale?: "en" | "pl" }} options
31
+ * @returns {string}
32
+ */
33
+ declare function login_please_login(inputs?: {}, options?: {
34
+ locale?: "en" | "pl";
35
+ }): string;
36
+ export { login_hello as login.hello, login_please_login as login.please_login };
@@ -0,0 +1,72 @@
1
+ /* eslint-disable */
2
+ import { getLocale, trackMessageCall, experimentalMiddlewareLocaleSplitting, isServer } from "../runtime.js"
3
+ import * as en from "./en.js"
4
+ import * as pl from "./pl.js"
5
+ /**
6
+ * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
7
+ *
8
+ * - Changing this function will be over-written by the next build.
9
+ *
10
+ * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
11
+ * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
12
+ *
13
+ * @param {{ name: NonNullable<unknown> }} inputs
14
+ * @param {{ locale?: "en" | "pl" }} options
15
+ * @returns {string}
16
+ */
17
+ /* @__NO_SIDE_EFFECTS__ */
18
+ export const hello_world = (inputs, options = {}) => {
19
+ if (experimentalMiddlewareLocaleSplitting && isServer === false) {
20
+ return /** @type {any} */ (globalThis).__paraglide_ssr.hello_world(inputs)
21
+ }
22
+ const locale = options.locale ?? getLocale()
23
+ trackMessageCall("hello_world", locale)
24
+ if (locale === "en") return en.hello_world(inputs)
25
+ return pl.hello_world(inputs)
26
+ };
27
+ /**
28
+ * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
29
+ *
30
+ * - Changing this function will be over-written by the next build.
31
+ *
32
+ * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
33
+ * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
34
+ *
35
+ * @param {{}} inputs
36
+ * @param {{ locale?: "en" | "pl" }} options
37
+ * @returns {string}
38
+ */
39
+ /* @__NO_SIDE_EFFECTS__ */
40
+ const login_hello = (inputs = {}, options = {}) => {
41
+ if (experimentalMiddlewareLocaleSplitting && isServer === false) {
42
+ return /** @type {any} */ (globalThis).__paraglide_ssr.login_hello(inputs)
43
+ }
44
+ const locale = options.locale ?? getLocale()
45
+ trackMessageCall("login_hello", locale)
46
+ if (locale === "en") return en.login_hello(inputs)
47
+ return pl.login_hello(inputs)
48
+ };
49
+ export { login_hello as "login.hello" }
50
+ /**
51
+ * This function has been compiled by [Paraglide JS](https://inlang.com/m/gerre34r).
52
+ *
53
+ * - Changing this function will be over-written by the next build.
54
+ *
55
+ * - If you want to change the translations, you can either edit the source files e.g. `en.json`, or
56
+ * use another inlang app like [Fink](https://inlang.com/m/tdozzpar) or the [VSCode extension Sherlock](https://inlang.com/m/r7kp499g).
57
+ *
58
+ * @param {{}} inputs
59
+ * @param {{ locale?: "en" | "pl" }} options
60
+ * @returns {string}
61
+ */
62
+ /* @__NO_SIDE_EFFECTS__ */
63
+ const login_please_login = (inputs = {}, options = {}) => {
64
+ if (experimentalMiddlewareLocaleSplitting && isServer === false) {
65
+ return /** @type {any} */ (globalThis).__paraglide_ssr.login_please_login(inputs)
66
+ }
67
+ const locale = options.locale ?? getLocale()
68
+ trackMessageCall("login_please_login", locale)
69
+ if (locale === "en") return en.login_please_login(inputs)
70
+ return pl.login_please_login(inputs)
71
+ };
72
+ export { login_please_login as "login.please_login" }
@@ -0,0 +1,5 @@
1
+ export const hello_world: (inputs: {
2
+ name: NonNullable<unknown>;
3
+ }) => string;
4
+ export const login_hello: (inputs: {}) => string;
5
+ export const login_please_login: (inputs: {}) => string;
@@ -0,0 +1,14 @@
1
+ /* eslint-disable */
2
+
3
+
4
+ export const hello_world = /** @type {(inputs: { name: NonNullable<unknown> }) => string} */ (i) => {
5
+ return `Hello, ${i.name} from en!`
6
+ };
7
+
8
+ export const login_hello = /** @type {(inputs: {}) => string} */ () => {
9
+ return `Welcome back`
10
+ };
11
+
12
+ export const login_please_login = /** @type {(inputs: {}) => string} */ () => {
13
+ return `Login to your account`
14
+ };
@@ -0,0 +1,5 @@
1
+ export const hello_world: (inputs: {
2
+ name: NonNullable<unknown>;
3
+ }) => string;
4
+ export const login_hello: (inputs: {}) => string;
5
+ export const login_please_login: (inputs: {}) => string;
@@ -0,0 +1,14 @@
1
+ /* eslint-disable */
2
+
3
+
4
+ export const hello_world = /** @type {(inputs: { name: NonNullable<unknown> }) => string} */ (i) => {
5
+ return `Hello, ${i.name} from pl!`
6
+ };
7
+
8
+ export const login_hello = /** @type {(inputs: {}) => string} */ () => {
9
+ return `Witaj ponownie`
10
+ };
11
+
12
+ export const login_please_login = /** @type {(inputs: {}) => string} */ () => {
13
+ return `Zaloguj się na swoje konto`
14
+ };
@@ -0,0 +1,2 @@
1
+ export * from "./messages/_index.js";
2
+ export * as m from "./messages/_index.js";
@@ -0,0 +1,4 @@
1
+ /* eslint-disable */
2
+ export * from './messages/_index.js'
3
+ // enabling auto-import by exposing all messages as m
4
+ export * as m from './messages/_index.js'
@@ -0,0 +1,21 @@
1
+ /**
2
+ * @param {import("./runtime.js").Locale} locale
3
+ * @param {unknown} input
4
+ * @param {Intl.PluralRulesOptions} [options]
5
+ * @returns {string}
6
+ */
7
+ export function plural(locale: import("./runtime.js").Locale, input: unknown, options?: Intl.PluralRulesOptions): string;
8
+ /**
9
+ * @param {import("./runtime.js").Locale} locale
10
+ * @param {unknown} input
11
+ * @param {Intl.NumberFormatOptions} [options]
12
+ * @returns {string}
13
+ */
14
+ export function number(locale: import("./runtime.js").Locale, input: unknown, options?: Intl.NumberFormatOptions): string;
15
+ /**
16
+ * @param {import("./runtime.js").Locale} locale
17
+ * @param {unknown} input
18
+ * @param {Intl.DateTimeFormatOptions} [options]
19
+ * @returns {string}
20
+ */
21
+ export function datetime(locale: import("./runtime.js").Locale, input: unknown, options?: Intl.DateTimeFormatOptions): string;
@@ -0,0 +1,31 @@
1
+ /* eslint-disable */
2
+
3
+ /**
4
+ * @param {import("./runtime.js").Locale} locale
5
+ * @param {unknown} input
6
+ * @param {Intl.PluralRulesOptions} [options]
7
+ * @returns {string}
8
+ */
9
+ export function plural(locale, input, options) {
10
+ return new Intl.PluralRules(locale, options).select(Number(input))
11
+ };
12
+
13
+ /**
14
+ * @param {import("./runtime.js").Locale} locale
15
+ * @param {unknown} input
16
+ * @param {Intl.NumberFormatOptions} [options]
17
+ * @returns {string}
18
+ */
19
+ export function number(locale, input, options) {
20
+ return new Intl.NumberFormat(locale, options).format(Number(input))
21
+ };
22
+
23
+ /**
24
+ * @param {import("./runtime.js").Locale} locale
25
+ * @param {unknown} input
26
+ * @param {Intl.DateTimeFormatOptions} [options]
27
+ * @returns {string}
28
+ */
29
+ export function datetime(locale, input, options) {
30
+ return new Intl.DateTimeFormat(locale, options).format(new Date(/** @type {string} */ (input)))
31
+ };