@blueprint-ts/core 4.0.0-beta.4 → 4.0.0-beta.5

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
@@ -1,3 +1,11 @@
1
+ ## v4.0.0-beta.5 - 2026-02-27 (beta)
2
+
3
+ # [4.0.0-beta.5](/compare/v4.0.0-beta.4...v4.0.0-beta.5) (2026-02-27)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * satisfy paginator updater typing and type-only import in VueRequestLoaderFactory 6468368
1
9
  ## v4.0.0-beta.4 - 2026-02-26 (beta)
2
10
 
3
11
  # [4.0.0-beta.4](/compare/v4.0.0-beta.3...v4.0.0-beta.4) (2026-02-26)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@blueprint-ts/core",
3
- "version": "4.0.0-beta.4",
3
+ "version": "4.0.0-beta.5",
4
4
  "license": "MIT",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -42,7 +42,7 @@ export abstract class BasePaginator<ResourceInterface, ViewDriver extends BaseVi
42
42
  const result = updater(row, i, data)
43
43
 
44
44
  if (result !== undefined) {
45
- data[i] = result
45
+ data[i] = result as ResourceInterface
46
46
  }
47
47
 
48
48
  updated++
@@ -1,7 +1,7 @@
1
1
  import { VueRequestLoader } from '../loaders/VueRequestLoader'
2
2
  import { type RequestLoaderContract } from '../../../requests/contracts/RequestLoaderContract'
3
3
  import { type Ref } from 'vue'
4
- import { RequestLoaderFactoryContract } from '../../../requests'
4
+ import type { RequestLoaderFactoryContract } from '../../../requests'
5
5
 
6
6
  export class VueRequestLoaderFactory implements RequestLoaderFactoryContract<Ref<boolean>> {
7
7
  public make(): RequestLoaderContract<Ref<boolean>> {