@okam/directus-block 1.5.0 → 1.5.2
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 +21 -0
- package/package.json +18 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,24 @@
|
|
|
1
|
+
## 1.5.2 (2025-05-01)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- add header option to select component ([0338ebc](https://github.com/OKAMca/stack/commit/0338ebc))
|
|
6
|
+
- bump versions to force publish ([6e3eb60](https://github.com/OKAMca/stack/commit/6e3eb60))
|
|
7
|
+
- project cleanup ([a5dde9d](https://github.com/OKAMca/stack/commit/a5dde9d))
|
|
8
|
+
|
|
9
|
+
### 🩹 Fixes
|
|
10
|
+
|
|
11
|
+
- bump package ([b6259d1](https://github.com/OKAMca/stack/commit/b6259d1))
|
|
12
|
+
- issue with typing not resolving correctly when installing package ([bc4c81d](https://github.com/OKAMca/stack/commit/bc4c81d))
|
|
13
|
+
|
|
14
|
+
### 🧱 Updated Dependencies
|
|
15
|
+
|
|
16
|
+
- Updated stack-ui to 1.31.0
|
|
17
|
+
|
|
18
|
+
### ❤️ Thank You
|
|
19
|
+
|
|
20
|
+
- Marie-Maxime Tanguay @marie-maxime
|
|
21
|
+
|
|
1
22
|
## 1.4.0 (2024-10-04)
|
|
2
23
|
|
|
3
24
|
|
package/package.json
CHANGED
|
@@ -1,16 +1,28 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@okam/directus-block",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.2",
|
|
4
4
|
"main": "./index.js",
|
|
5
5
|
"types": "./index.d.ts",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": {
|
|
8
|
-
"import":
|
|
9
|
-
|
|
8
|
+
"import": {
|
|
9
|
+
"types": "./index.d.ts",
|
|
10
|
+
"default": "./index.mjs"
|
|
11
|
+
},
|
|
12
|
+
"require": {
|
|
13
|
+
"types": "./index.d.ts",
|
|
14
|
+
"default": "./index.mjs"
|
|
15
|
+
}
|
|
10
16
|
},
|
|
11
17
|
"./server": {
|
|
12
|
-
"import":
|
|
13
|
-
|
|
18
|
+
"import": {
|
|
19
|
+
"types": "./server.d.ts",
|
|
20
|
+
"default": "./server.mjs"
|
|
21
|
+
},
|
|
22
|
+
"require": {
|
|
23
|
+
"types": "./server.d.ts",
|
|
24
|
+
"default": "./server.mjs"
|
|
25
|
+
}
|
|
14
26
|
}
|
|
15
27
|
},
|
|
16
28
|
"publishConfig": {
|
|
@@ -21,7 +33,7 @@
|
|
|
21
33
|
},
|
|
22
34
|
"dependencies": {
|
|
23
35
|
"@graphql-typed-document-node/core": "3.2.0",
|
|
24
|
-
"@okam/directus-query": "1.4.
|
|
36
|
+
"@okam/directus-query": "1.4.1",
|
|
25
37
|
"@okam/stack-ui": "1.31.0",
|
|
26
38
|
"graphql": "^16.9.0",
|
|
27
39
|
"graphql-request": "^7.1.2",
|