@liiift-studio/sanity-font-manager 2.3.14 → 2.3.15
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/dist/index.js +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +3 -3
- package/src/schema/stylesField.js +1 -1
package/dist/index.js
CHANGED
|
@@ -6806,7 +6806,7 @@ var stylisticSetField = {
|
|
|
6806
6806
|
};
|
|
6807
6807
|
|
|
6808
6808
|
// src/schema/stylesField.js
|
|
6809
|
-
var import_sanity_advanced_reference_array = require("sanity-advanced-reference-array");
|
|
6809
|
+
var import_sanity_advanced_reference_array = require("@liiift-studio/sanity-advanced-reference-array");
|
|
6810
6810
|
var field = (condition, def) => condition ? [def] : [];
|
|
6811
6811
|
var fontsFilter = async ({ getClient, document, parent }) => {
|
|
6812
6812
|
const client = getClient({ apiVersion: "2022-11-09" });
|
package/dist/index.mjs
CHANGED
|
@@ -6716,7 +6716,7 @@ var stylisticSetField = {
|
|
|
6716
6716
|
};
|
|
6717
6717
|
|
|
6718
6718
|
// src/schema/stylesField.js
|
|
6719
|
-
import { AdvancedRefArray } from "sanity-advanced-reference-array";
|
|
6719
|
+
import { AdvancedRefArray } from "@liiift-studio/sanity-advanced-reference-array";
|
|
6720
6720
|
var field = (condition, def) => condition ? [def] : [];
|
|
6721
6721
|
var fontsFilter = async ({ getClient, document, parent }) => {
|
|
6722
6722
|
const client = getClient({ apiVersion: "2022-11-09" });
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liiift-studio/sanity-font-manager",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.15",
|
|
4
4
|
"description": "Sanity Studio plugin — full font management suite with batch upload, format conversion, metadata extraction, CSS generation, collection/pair generation, and script variant support. Supports Sanity v3, v4, and v5.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Liiift Studio",
|
|
@@ -60,10 +60,10 @@
|
|
|
60
60
|
"@sanity/ui": ">=3",
|
|
61
61
|
"react": ">=18",
|
|
62
62
|
"sanity": ">=3",
|
|
63
|
-
"sanity-advanced-reference-array": ">=1"
|
|
63
|
+
"@liiift-studio/sanity-advanced-reference-array": ">=1"
|
|
64
64
|
},
|
|
65
65
|
"peerDependenciesMeta": {
|
|
66
|
-
"sanity-advanced-reference-array": {
|
|
66
|
+
"@liiift-studio/sanity-advanced-reference-array": {
|
|
67
67
|
"optional": true
|
|
68
68
|
}
|
|
69
69
|
},
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// Sanity schema factory function for the Styles object field — call createStylesField(options) to generate the field definition for a typeface document
|
|
2
|
-
import { AdvancedRefArray } from 'sanity-advanced-reference-array';
|
|
2
|
+
import { AdvancedRefArray } from '@liiift-studio/sanity-advanced-reference-array';
|
|
3
3
|
import { RegenerateSubfamiliesComponent } from '../components/RegenerateSubfamiliesComponent.jsx';
|
|
4
4
|
|
|
5
5
|
// Conditionally includes a field definition in an array
|