@okam/directus-flexible-content 1.3.2 → 1.3.7

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,34 @@
1
+ ## 1.3.6 (2026-01-19)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated stack-ui to 1.44.2
6
+ - Updated directus-block to 1.7.5
7
+
8
+ ## 1.3.4 (2026-01-19)
9
+
10
+ ### 🩹 Fixes
11
+
12
+ - cross-lib type imports are always absolute ([#392](https://github.com/OKAMca/stack/pull/392))
13
+
14
+ ### ❤️ Thank You
15
+
16
+ - Pierre-Olivier Clerson @poclerson
17
+
18
+ ## 1.3.3 (2026-01-19)
19
+
20
+ ### 🩹 Fixes
21
+
22
+ - cross-lib type imports are always absolute ([#392](https://github.com/OKAMca/stack/pull/392))
23
+
24
+ ### 🧱 Updated Dependencies
25
+
26
+ - Updated directus-block to 1.7.3
27
+
28
+ ### ❤️ Thank You
29
+
30
+ - Pierre-Olivier Clerson @poclerson
31
+
1
32
  ## 1.3.2 (2026-01-16)
2
33
 
3
34
  ### 🧱 Updated Dependencies
@@ -11,6 +42,7 @@
11
42
 
12
43
  - ⚠️ React 19 + Next.js 15 upgrade for all @okam/* packages ([#369](https://github.com/OKAMca/stack/pull/369))
13
44
  - bump ([ab924b9](https://github.com/OKAMca/stack/commit/ab924b9))
45
+ - Consumers must now have react and react-dom in their own
14
46
 
15
47
  ### 🩹 Fixes
16
48
 
@@ -23,10 +55,6 @@
23
55
  - search field icon ([0850fde](https://github.com/OKAMca/stack/commit/0850fde))
24
56
  - select controlled ([#280](https://github.com/OKAMca/stack/pull/280))
25
57
 
26
- ### ⚠️ Breaking Changes
27
-
28
- - Consumers must now have react and react-dom in their own
29
-
30
58
  ### ❤️ Thank You
31
59
 
32
60
  - Marie-Maxime Tanguay @marie-maxime
@@ -1,5 +1,5 @@
1
- import { TBlockSerializerConfig } from '../../../../../directus-block/src/index.ts';
2
- import { TDefaultComponent } from '../../../../../../stack/stack-ui/src/index.ts';
1
+ import { TBlockSerializerConfig } from '@okam/directus-block';
2
+ import { TDefaultComponent } from '@okam/stack-ui';
3
3
  import { JSONContent, Extensions, EditorNodes } from '../../functions/types';
4
4
  import { TRenderingNodes } from '../nodes/types';
5
5
 
@@ -1,4 +1,4 @@
1
- import { TDefaultComponent } from '../../../../../../stack/stack-ui/src/index.ts';
1
+ import { TDefaultComponent } from '@okam/stack-ui';
2
2
  import { ReactNode } from 'react';
3
3
  import { JSONContent, Extensions, ReactComponentSerializers } from '../../functions/types';
4
4
  import { TRenderingNodes } from '../nodes/types';
@@ -1,4 +1,4 @@
1
- import { TDefaultComponent } from '../../../../../../stack/stack-ui/src/index.ts';
1
+ import { TDefaultComponent } from '@okam/stack-ui';
2
2
  import { default as React } from 'react';
3
3
 
4
4
  export interface TBaseRenderingNode extends TDefaultComponent {
@@ -1,4 +1,4 @@
1
- import { TBlock } from '../../../../directus-block/src/index.ts';
1
+ import { TBlock } from '@okam/directus-block';
2
2
  import { JSONContent, Extensions, AnyExtension } from '@tiptap/core';
3
3
  import { ElementType, FunctionComponent, ReactNode } from 'react';
4
4
 
package/lib/types.d.ts CHANGED
@@ -1,4 +1,4 @@
1
- import { TCommonBlockFragment } from '../../../directus-block/src/index.ts';
1
+ import { TCommonBlockFragment } from '@okam/directus-block';
2
2
 
3
3
  export type RelationBlockSerializers<T> = {
4
4
  collection: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@okam/directus-flexible-content",
3
- "version": "1.3.2",
3
+ "version": "1.3.7",
4
4
  "main": "./index.js",
5
5
  "types": "./index.d.ts",
6
6
  "exports": {
@@ -23,8 +23,8 @@
23
23
  },
24
24
  "dependencies": {
25
25
  "@nx/vite": "20.2.2",
26
- "@okam/directus-block": "1.7.2",
27
- "@okam/stack-ui": "1.44.1",
26
+ "@okam/directus-block": "1.7.7",
27
+ "@okam/stack-ui": "1.44.3",
28
28
  "@vitejs/plugin-react": "4.3.4",
29
29
  "vite": "^5.0.13",
30
30
  "vite-plugin-dts": "~2.3.0",