@fils/sanity-components 0.0.6 → 0.0.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/README.md +2 -0
- package/lib/components/core/SEO.d.ts +4 -4
- package/lib/components/core/SEO.js +2 -2
- package/package.json +6 -3
package/README.md
CHANGED
|
@@ -5,6 +5,8 @@ You will need top have a `.env` file properly set up in your project.
|
|
|
5
5
|
|
|
6
6
|
This is part of a series of packages that we use in our studio for personal and commercial web & [THREEjs](https://threejs.org) based work. It might remain undocumented for a long while but feel free to try it out!
|
|
7
7
|
|
|
8
|
+
This package is discontinued. Back-End components & our publishing workflow will be moved into a private NPM package at GitHub.
|
|
9
|
+
|
|
8
10
|
### License
|
|
9
11
|
© Copyright 2025, fil studio
|
|
10
12
|
|
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
export declare const SEO: {
|
|
2
|
-
type: "
|
|
2
|
+
type: "object";
|
|
3
3
|
name: "seo";
|
|
4
|
-
} & Omit<import("sanity").
|
|
4
|
+
} & Omit<import("sanity").ObjectDefinition, "preview"> & {
|
|
5
5
|
preview?: import("sanity").PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
6
6
|
};
|
|
7
7
|
export declare const LocalizedSEO: {
|
|
8
|
-
type: "
|
|
8
|
+
type: "object";
|
|
9
9
|
name: "localseo";
|
|
10
|
-
} & Omit<import("sanity").
|
|
10
|
+
} & Omit<import("sanity").ObjectDefinition, "preview"> & {
|
|
11
11
|
preview?: import("sanity").PreviewConfig<Record<string, string>, Record<never, any>> | undefined;
|
|
12
12
|
};
|
|
@@ -3,7 +3,7 @@ import { SEOImage } from "./SEOImage";
|
|
|
3
3
|
export const SEO = defineType({
|
|
4
4
|
name: 'seo',
|
|
5
5
|
title: "SEO",
|
|
6
|
-
type: "
|
|
6
|
+
type: "object",
|
|
7
7
|
fields: [
|
|
8
8
|
defineField({
|
|
9
9
|
name: 'title',
|
|
@@ -19,7 +19,7 @@ export const SEO = defineType({
|
|
|
19
19
|
export const LocalizedSEO = defineType({
|
|
20
20
|
name: 'localseo',
|
|
21
21
|
title: "SEO",
|
|
22
|
-
type: "
|
|
22
|
+
type: "object",
|
|
23
23
|
fields: [
|
|
24
24
|
defineField({
|
|
25
25
|
name: 'title',
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fils/sanity-components",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.7",
|
|
4
4
|
"description": "Fil's Components for Sanity Back-Ends",
|
|
5
5
|
"main": "lib/main.js",
|
|
6
6
|
"repository": "git@github.com:fil-studio/fils.git",
|
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"lib"
|
|
16
16
|
],
|
|
17
|
-
"
|
|
17
|
+
"peerDependencies": {
|
|
18
18
|
"@sanity/dashboard": "^4.1.3",
|
|
19
19
|
"sanity": "^3.85.1",
|
|
20
20
|
"sanity-plugin-dashboard-widget-netlify": "^2.0.1"
|
|
@@ -23,6 +23,9 @@
|
|
|
23
23
|
"@sanity/types": "^3.85.1",
|
|
24
24
|
"@types/react": "^19.1.2",
|
|
25
25
|
"@types/react-dom": "^19.1.2",
|
|
26
|
-
"typescript": "^5.8.3"
|
|
26
|
+
"typescript": "^5.8.3",
|
|
27
|
+
"sanity": "^3.85.1",
|
|
28
|
+
"@sanity/dashboard": "^4.1.3",
|
|
29
|
+
"sanity-plugin-dashboard-widget-netlify": "^2.0.1"
|
|
27
30
|
}
|
|
28
31
|
}
|