@okam/directus-block 1.7.1 → 1.7.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 +28 -0
- package/components/BlockDispatcher/interface.d.ts +1 -1
- package/components/BlockSerializer/interface.d.ts +1 -1
- package/package.json +3 -3
- package/types/block.d.ts +1 -1
- package/utils/getBlock.d.ts +1 -1
- package/utils/getBlockProps.d.ts +1 -1
- package/utils/mergeConfigs.d.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,31 @@
|
|
|
1
|
+
## 1.7.5 (2026-01-19)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated stack-ui to 1.44.2
|
|
6
|
+
|
|
7
|
+
## 1.7.4 (2026-01-19)
|
|
8
|
+
|
|
9
|
+
### 🧱 Updated Dependencies
|
|
10
|
+
|
|
11
|
+
- Updated directus-query to 1.5.1
|
|
12
|
+
|
|
13
|
+
## 1.7.3 (2026-01-19)
|
|
14
|
+
|
|
15
|
+
### 🩹 Fixes
|
|
16
|
+
|
|
17
|
+
- cross-lib type imports are always absolute ([#392](https://github.com/OKAMca/stack/pull/392))
|
|
18
|
+
|
|
19
|
+
### ❤️ Thank You
|
|
20
|
+
|
|
21
|
+
- Pierre-Olivier Clerson @poclerson
|
|
22
|
+
|
|
23
|
+
## 1.7.2 (2026-01-16)
|
|
24
|
+
|
|
25
|
+
### 🧱 Updated Dependencies
|
|
26
|
+
|
|
27
|
+
- Updated stack-ui to 1.44.1
|
|
28
|
+
|
|
1
29
|
## 1.7.1 (2026-01-16)
|
|
2
30
|
|
|
3
31
|
### 🧱 Updated Dependencies
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TDefaultComponent, Nullable } from '
|
|
1
|
+
import { TDefaultComponent, Nullable } from '@okam/stack-ui';
|
|
2
2
|
import { default as React } from 'react';
|
|
3
3
|
import { TAdditionalProps } from '../../types/block';
|
|
4
4
|
import { TBlockSerializerProps, TBlockSerializerConfig } from '../BlockSerializer/interface';
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
-
import { Nullable, TDefaultComponent } from '
|
|
2
|
+
import { Nullable, TDefaultComponent } from '@okam/stack-ui';
|
|
3
3
|
import { Variables as GraphQLVariables } from 'graphql-request';
|
|
4
4
|
import { FunctionComponent } from 'react';
|
|
5
5
|
import { TCommonBlockFragment, TAdditionalProps, TBlockQuery, TBlockVariables, TBlockDocument } from '../../types/block';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okam/directus-block",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.7",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@graphql-typed-document-node/core": "3.2.0",
|
|
36
|
-
"@okam/directus-query": "1.5.
|
|
37
|
-
"@okam/stack-ui": "1.44.
|
|
36
|
+
"@okam/directus-query": "1.5.2",
|
|
37
|
+
"@okam/stack-ui": "1.44.3",
|
|
38
38
|
"graphql": "^16.9.0",
|
|
39
39
|
"graphql-request": "^7.1.2",
|
|
40
40
|
"radashi": "^12.3.0"
|
package/types/block.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DocumentTypeDecoration, TypedDocumentNode } from '@graphql-typed-document-node/core';
|
|
2
|
-
import { Nullable } from '
|
|
2
|
+
import { Nullable } from '@okam/stack-ui';
|
|
3
3
|
import { Variables } from 'graphql-request';
|
|
4
4
|
import { FragmentType } from '../generated/fragment-masking';
|
|
5
5
|
import { BlockSettingsFragment } from '../generated/graphql';
|
package/utils/getBlock.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { TToken } from '
|
|
1
|
+
import { TToken } from '@okam/stack-ui';
|
|
2
2
|
import { GraphQLClient } from 'graphql-request';
|
|
3
3
|
import { TBlockSerializerProps } from '../components/BlockSerializer/interface';
|
|
4
4
|
import { TBlockDocument, TBlockVariables, TCommonBlockFragment } from '../types/block';
|
package/utils/getBlockProps.d.ts
CHANGED
package/utils/mergeConfigs.d.ts
CHANGED