@liiift-studio/sanity-font-manager 2.3.2 → 2.3.4
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 +33 -0
- package/dist/index.js +2235 -0
- package/dist/index.mjs +2323 -92
- package/package.json +2 -1
- package/src/components/SetOTF.jsx +87 -0
- package/src/components/StyleCountInput.jsx +16 -0
- package/src/index.js +6 -0
- package/src/schema/openTypeField.js +1945 -0
- package/src/schema/styleCountField.js +12 -0
package/dist/index.js
CHANGED
|
@@ -40,8 +40,10 @@ __export(index_exports, {
|
|
|
40
40
|
RegenerateSubfamiliesComponent: () => RegenerateSubfamiliesComponent,
|
|
41
41
|
SCRIPTS: () => SCRIPTS,
|
|
42
42
|
SCRIPTS_OBJECT: () => SCRIPTS_OBJECT,
|
|
43
|
+
SetOTF: () => SetOTF,
|
|
43
44
|
SingleUploaderTool: () => SingleUploaderTool,
|
|
44
45
|
StatusDisplay: () => StatusDisplay_default,
|
|
46
|
+
StyleCountInput: () => StyleCountInput,
|
|
45
47
|
UpdateScriptsComponent: () => UpdateScriptsComponent,
|
|
46
48
|
UploadButton: () => UploadButton_default,
|
|
47
49
|
UploadScriptsComponent: () => UploadScriptsComponent,
|
|
@@ -61,6 +63,7 @@ __export(index_exports, {
|
|
|
61
63
|
generateSubset: () => generateSubset,
|
|
62
64
|
getEmptyFontKit: () => getEmptyFontKit,
|
|
63
65
|
logFontInfo: () => logFontInfo,
|
|
66
|
+
openTypeField: () => openTypeField,
|
|
64
67
|
parseVariableFontInstances: () => parseVariableFontInstances_default,
|
|
65
68
|
processFontFiles: () => processFontFiles,
|
|
66
69
|
processItalicKeywords: () => processItalicKeywords,
|
|
@@ -71,6 +74,7 @@ __export(index_exports, {
|
|
|
71
74
|
reverseSpellingLookup: () => reverseSpellingLookup,
|
|
72
75
|
sanitizeForSanityId: () => sanitizeForSanityId,
|
|
73
76
|
sortFontObjects: () => sortFontObjects,
|
|
77
|
+
styleCountField: () => styleCountField,
|
|
74
78
|
updateFontPrices: () => updateFontPrices,
|
|
75
79
|
updateTypefaceDocument: () => updateTypefaceDocument,
|
|
76
80
|
uploadFontFiles: () => uploadFontFiles,
|
|
@@ -4041,6 +4045,80 @@ var PrimaryCollectionGeneratorTypeface = () => {
|
|
|
4041
4045
|
)) : /* @__PURE__ */ import_react16.default.createElement(import_ui14.Flex, { align: "center", justify: "center", gap: 3, padding: 4 }, /* @__PURE__ */ import_react16.default.createElement(import_ui14.Spinner, null), /* @__PURE__ */ import_react16.default.createElement(import_ui14.Text, { muted: true, size: 1 }, status))));
|
|
4042
4046
|
};
|
|
4043
4047
|
|
|
4048
|
+
// src/components/SetOTF.jsx
|
|
4049
|
+
var import_react17 = require("react");
|
|
4050
|
+
var import_sanity13 = require("sanity");
|
|
4051
|
+
var import_ui15 = require("@sanity/ui");
|
|
4052
|
+
var SetOTF = (props) => {
|
|
4053
|
+
var _a, _b;
|
|
4054
|
+
const { onChange, value = {} } = props;
|
|
4055
|
+
const client = useSanityClient();
|
|
4056
|
+
const stylesObject = (0, import_sanity13.useFormValue)(["styles"]);
|
|
4057
|
+
const [message, setMessage] = (0, import_react17.useState)("");
|
|
4058
|
+
const detect = async () => {
|
|
4059
|
+
var _a2, _b2, _c;
|
|
4060
|
+
if (!((_a2 = stylesObject == null ? void 0 : stylesObject.fonts) == null ? void 0 : _a2.length)) {
|
|
4061
|
+
setMessage("Error: No fonts found in styles. Please add at least one font first.");
|
|
4062
|
+
setTimeout(() => setMessage(""), 5e3);
|
|
4063
|
+
return;
|
|
4064
|
+
}
|
|
4065
|
+
const fontRef = (_b2 = stylesObject.fonts[0]) == null ? void 0 : _b2._ref;
|
|
4066
|
+
if (!fontRef) {
|
|
4067
|
+
setMessage("Error: Invalid font reference in styles.");
|
|
4068
|
+
setTimeout(() => setMessage(""), 5e3);
|
|
4069
|
+
return;
|
|
4070
|
+
}
|
|
4071
|
+
try {
|
|
4072
|
+
const font = await client.fetch('*[_type == "font" && _id == $id][0]', { id: fontRef });
|
|
4073
|
+
if (!font) {
|
|
4074
|
+
setMessage("Error: Could not find the referenced font.");
|
|
4075
|
+
setTimeout(() => setMessage(""), 5e3);
|
|
4076
|
+
return;
|
|
4077
|
+
}
|
|
4078
|
+
if (!((_c = font.opentypeFeatures) == null ? void 0 : _c.chars)) {
|
|
4079
|
+
setMessage(`Error: No OpenType feature data found in "${font.title || "this font"}". Generate font data first.`);
|
|
4080
|
+
setTimeout(() => setMessage(""), 5e3);
|
|
4081
|
+
return;
|
|
4082
|
+
}
|
|
4083
|
+
const features = [];
|
|
4084
|
+
Object.keys(value).forEach((key) => {
|
|
4085
|
+
var _a3;
|
|
4086
|
+
if (key !== "features" && ((_a3 = value[key]) == null ? void 0 : _a3.feature)) {
|
|
4087
|
+
const requiredFeatures = value[key].feature.split(" ");
|
|
4088
|
+
const approved = requiredFeatures.every((v) => font.opentypeFeatures.chars.includes(v));
|
|
4089
|
+
if (approved) features.push(key);
|
|
4090
|
+
}
|
|
4091
|
+
});
|
|
4092
|
+
onChange((0, import_sanity13.set)({ ...value, features }));
|
|
4093
|
+
setMessage(`Features detected: ${features.length ? features.join(", ") : "none"}.`);
|
|
4094
|
+
setTimeout(() => setMessage(""), 5e3);
|
|
4095
|
+
} catch (err) {
|
|
4096
|
+
setMessage("Error detecting features. Check the console for details.");
|
|
4097
|
+
console.error("SetOTF detect error:", err);
|
|
4098
|
+
}
|
|
4099
|
+
};
|
|
4100
|
+
return /* @__PURE__ */ React.createElement(import_ui15.Stack, { className: "openType" }, ((_a = value == null ? void 0 : value.features) == null ? void 0 : _a.length) > 0 && /* @__PURE__ */ React.createElement(import_ui15.Text, { muted: true, size: 1, style: { marginBottom: "0.5rem" } }, "Number of features: ", value.features.length), !!((_b = stylesObject == null ? void 0 : stylesObject.fonts) == null ? void 0 : _b.length) && /* @__PURE__ */ React.createElement(
|
|
4101
|
+
import_ui15.Button,
|
|
4102
|
+
{
|
|
4103
|
+
text: "Detect OTF",
|
|
4104
|
+
mode: "ghost",
|
|
4105
|
+
onClick: detect,
|
|
4106
|
+
style: { borderRadius: "0 3px 0 0", marginBottom: "1rem" }
|
|
4107
|
+
}
|
|
4108
|
+
), !!message && /* @__PURE__ */ React.createElement(import_ui15.Text, { muted: true, size: 1 }, /* @__PURE__ */ React.createElement("br", null), message, /* @__PURE__ */ React.createElement("br", null), /* @__PURE__ */ React.createElement("br", null)), props.renderDefault(props));
|
|
4109
|
+
};
|
|
4110
|
+
|
|
4111
|
+
// src/components/StyleCountInput.jsx
|
|
4112
|
+
var import_react18 = __toESM(require("react"));
|
|
4113
|
+
var import_ui16 = require("@sanity/ui");
|
|
4114
|
+
var import_sanity14 = require("sanity");
|
|
4115
|
+
var StyleCountInput = (props) => {
|
|
4116
|
+
const styles = (0, import_sanity14.useFormValue)(["styles", "fonts"]) || [];
|
|
4117
|
+
const vfStyles = (0, import_sanity14.useFormValue)(["styles", "variableFont"]) || [];
|
|
4118
|
+
const count = styles.length + vfStyles.length;
|
|
4119
|
+
return /* @__PURE__ */ import_react18.default.createElement(import_ui16.Text, { size: 1 }, count);
|
|
4120
|
+
};
|
|
4121
|
+
|
|
4044
4122
|
// src/utils/getEmptyFontKit.js
|
|
4045
4123
|
var fontkit7 = __toESM(require("fontkit"));
|
|
4046
4124
|
var import_slugify4 = __toESM(require("slugify"));
|
|
@@ -4118,6 +4196,2159 @@ var readFontFile2 = (file) => {
|
|
|
4118
4196
|
reader.readAsArrayBuffer(file);
|
|
4119
4197
|
});
|
|
4120
4198
|
};
|
|
4199
|
+
|
|
4200
|
+
// src/schema/openTypeField.js
|
|
4201
|
+
var openTypeField = {
|
|
4202
|
+
title: "Opentype",
|
|
4203
|
+
name: "openType",
|
|
4204
|
+
type: "object",
|
|
4205
|
+
group: "openType",
|
|
4206
|
+
hidden: false,
|
|
4207
|
+
components: { input: SetOTF },
|
|
4208
|
+
options: { collapsible: true },
|
|
4209
|
+
fields: [
|
|
4210
|
+
{
|
|
4211
|
+
title: "Features",
|
|
4212
|
+
name: "features",
|
|
4213
|
+
type: "array",
|
|
4214
|
+
of: [{ type: "string" }],
|
|
4215
|
+
options: {
|
|
4216
|
+
list: [
|
|
4217
|
+
{ title: "All Alternates", value: "allAlternates" },
|
|
4218
|
+
{ title: "All Caps", value: "allCaps" },
|
|
4219
|
+
{ title: "Alternate Annotation", value: "alternateAnnotation" },
|
|
4220
|
+
{ title: "Alternative Fractions", value: "alternativeFractions" },
|
|
4221
|
+
{ title: "Capitals To Small Caps", value: "capitalsToSmallCaps" },
|
|
4222
|
+
{ title: "Capitals to Petite Caps", value: "capitalsToPetiteCaps" },
|
|
4223
|
+
{ title: "Case Sensitive Forms", value: "caseSensitiveForms" },
|
|
4224
|
+
{ title: "Contextual Alternates", value: "contextualAlternates" },
|
|
4225
|
+
{ title: "Contextual Ligatures", value: "contextualLigatures" },
|
|
4226
|
+
{ title: "Contextual Swash", value: "contextualSwash" },
|
|
4227
|
+
{ title: "Denominator", value: "denominator" },
|
|
4228
|
+
{ title: "Discretionary Ligatures", value: "discretionaryLigatures" },
|
|
4229
|
+
{ title: "Fractions", value: "fractions" },
|
|
4230
|
+
{ title: "Glyph Decomposition", value: "glyphDecomposition" },
|
|
4231
|
+
{ title: "Historical Forms", value: "historicalForms" },
|
|
4232
|
+
{ title: "Historical Ligatures", value: "historicalLigatures" },
|
|
4233
|
+
{ title: "Initial Form", value: "initialForm" },
|
|
4234
|
+
{ title: "Isolated Form", value: "isolatedForm" },
|
|
4235
|
+
{ title: "Justified Alternates", value: "justifiedAlternates" },
|
|
4236
|
+
{ title: "Localized Forms", value: "localizedForms" },
|
|
4237
|
+
{ title: "Mark Positioning", value: "markPositioning" },
|
|
4238
|
+
{ title: "Mark Positioning via Subs", value: "markPositioningViaSubs" },
|
|
4239
|
+
{ title: "Mark to Mark Positioning", value: "markToMarkPositioning" },
|
|
4240
|
+
{ title: "Mathematical Greek", value: "mathematicalGreek" },
|
|
4241
|
+
{ title: "Medial Form", value: "medialForm" },
|
|
4242
|
+
{ title: "Numerator", value: "numerator" },
|
|
4243
|
+
{ title: "Ordinals", value: "ordinals" },
|
|
4244
|
+
{ title: "Ornaments", value: "ornaments" },
|
|
4245
|
+
{ title: "Petite Caps", value: "petiteCaps" },
|
|
4246
|
+
{ title: "Proportional Lining", value: "proportionalLining" },
|
|
4247
|
+
{ title: "Proportional Oldstyle", value: "proportionalOldstyle" },
|
|
4248
|
+
{ title: "Required Ligatures", value: "requiredLigatures" },
|
|
4249
|
+
{ title: "Scientific Inferiors", value: "scientificInferiors" },
|
|
4250
|
+
{ title: "Slashed Zero", value: "slashedZero" },
|
|
4251
|
+
{ title: "Small Caps", value: "smallCaps" },
|
|
4252
|
+
{ title: "Standard Ligatures", value: "standardLigatures" },
|
|
4253
|
+
{ title: "Stylistic Alternates", value: "stylisticAlternates" },
|
|
4254
|
+
{ title: "Subscript", value: "subscript" },
|
|
4255
|
+
{ title: "Superscript", value: "superscript" },
|
|
4256
|
+
{ title: "Swash", value: "swash" },
|
|
4257
|
+
{ title: "Tabular Lining", value: "tabularLining" },
|
|
4258
|
+
{ title: "Tabular Oldstyle", value: "tabularOldstyle" },
|
|
4259
|
+
{ title: "Terminal Form", value: "terminalForm" },
|
|
4260
|
+
{ title: "Titling Alternates", value: "titlingAlternates" },
|
|
4261
|
+
{ title: "Unicase", value: "unicase" },
|
|
4262
|
+
{ title: "All Stylistic Sets", value: "allStylisticSets" },
|
|
4263
|
+
{ title: "Stylistic Set 1", value: "stylisticSet1" },
|
|
4264
|
+
{ title: "Stylistic Set 2", value: "stylisticSet2" },
|
|
4265
|
+
{ title: "Stylistic Set 3", value: "stylisticSet3" },
|
|
4266
|
+
{ title: "Stylistic Set 4", value: "stylisticSet4" },
|
|
4267
|
+
{ title: "Stylistic Set 5", value: "stylisticSet5" },
|
|
4268
|
+
{ title: "Stylistic Set 6", value: "stylisticSet6" },
|
|
4269
|
+
{ title: "Stylistic Set 7", value: "stylisticSet7" },
|
|
4270
|
+
{ title: "Stylistic Set 8", value: "stylisticSet8" },
|
|
4271
|
+
{ title: "Stylistic Set 9", value: "stylisticSet9" },
|
|
4272
|
+
{ title: "Stylistic Set 10", value: "stylisticSet10" },
|
|
4273
|
+
{ title: "Stylistic Set 11", value: "stylisticSet11" },
|
|
4274
|
+
{ title: "Stylistic Set 12", value: "stylisticSet12" },
|
|
4275
|
+
{ title: "Stylistic Set 13", value: "stylisticSet13" },
|
|
4276
|
+
{ title: "Stylistic Set 14", value: "stylisticSet14" },
|
|
4277
|
+
{ title: "Stylistic Set 15", value: "stylisticSet15" },
|
|
4278
|
+
{ title: "Stylistic Set 16", value: "stylisticSet16" },
|
|
4279
|
+
{ title: "Stylistic Set 17", value: "stylisticSet17" },
|
|
4280
|
+
{ title: "Stylistic Set 18", value: "stylisticSet18" },
|
|
4281
|
+
{ title: "Stylistic Set 19", value: "stylisticSet19" },
|
|
4282
|
+
{ title: "Stylistic Set 20", value: "stylisticSet20" }
|
|
4283
|
+
],
|
|
4284
|
+
layout: "checkbox"
|
|
4285
|
+
}
|
|
4286
|
+
},
|
|
4287
|
+
{
|
|
4288
|
+
title: "All Alternates",
|
|
4289
|
+
name: "allAlternates",
|
|
4290
|
+
type: "object",
|
|
4291
|
+
hidden: ({ parent }) => {
|
|
4292
|
+
var _a;
|
|
4293
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("allAlternates"));
|
|
4294
|
+
},
|
|
4295
|
+
fields: [
|
|
4296
|
+
{
|
|
4297
|
+
name: "title",
|
|
4298
|
+
type: "string",
|
|
4299
|
+
placeholder: "eg. All Alternates",
|
|
4300
|
+
initialValue: "All Alternates"
|
|
4301
|
+
},
|
|
4302
|
+
{
|
|
4303
|
+
name: "feature",
|
|
4304
|
+
type: "string",
|
|
4305
|
+
placeholder: "eg. aalt",
|
|
4306
|
+
initialValue: "aalt"
|
|
4307
|
+
},
|
|
4308
|
+
{
|
|
4309
|
+
title: "Custom Text",
|
|
4310
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4311
|
+
name: "customText",
|
|
4312
|
+
hidden: true,
|
|
4313
|
+
type: "string",
|
|
4314
|
+
initialValue: ""
|
|
4315
|
+
}
|
|
4316
|
+
]
|
|
4317
|
+
},
|
|
4318
|
+
{
|
|
4319
|
+
title: "All Caps",
|
|
4320
|
+
name: "allCaps",
|
|
4321
|
+
type: "object",
|
|
4322
|
+
hidden: ({ parent }) => {
|
|
4323
|
+
var _a;
|
|
4324
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("allCaps"));
|
|
4325
|
+
},
|
|
4326
|
+
fields: [
|
|
4327
|
+
{
|
|
4328
|
+
name: "title",
|
|
4329
|
+
type: "string",
|
|
4330
|
+
placeholder: "eg. allCaps",
|
|
4331
|
+
initialValue: "allCaps"
|
|
4332
|
+
},
|
|
4333
|
+
{
|
|
4334
|
+
name: "feature",
|
|
4335
|
+
type: "string",
|
|
4336
|
+
placeholder: "eg. case cpsp",
|
|
4337
|
+
initialValue: "case cpsp"
|
|
4338
|
+
},
|
|
4339
|
+
{
|
|
4340
|
+
title: "Custom Text",
|
|
4341
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4342
|
+
name: "customText",
|
|
4343
|
+
hidden: true,
|
|
4344
|
+
type: "string",
|
|
4345
|
+
initialValue: ""
|
|
4346
|
+
}
|
|
4347
|
+
]
|
|
4348
|
+
},
|
|
4349
|
+
{
|
|
4350
|
+
title: "Alternate Annotation",
|
|
4351
|
+
name: "alternateAnnotation",
|
|
4352
|
+
type: "object",
|
|
4353
|
+
hidden: ({ parent }) => {
|
|
4354
|
+
var _a;
|
|
4355
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("alternateAnnotation"));
|
|
4356
|
+
},
|
|
4357
|
+
fields: [
|
|
4358
|
+
{
|
|
4359
|
+
name: "title",
|
|
4360
|
+
type: "string",
|
|
4361
|
+
placeholder: "eg. Alternate Annotation",
|
|
4362
|
+
initialValue: "Alternate Annotation"
|
|
4363
|
+
},
|
|
4364
|
+
{
|
|
4365
|
+
name: "feature",
|
|
4366
|
+
type: "string",
|
|
4367
|
+
placeholder: "eg. nalt",
|
|
4368
|
+
initialValue: "nalt"
|
|
4369
|
+
},
|
|
4370
|
+
{
|
|
4371
|
+
title: "Custom Text",
|
|
4372
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4373
|
+
name: "customText",
|
|
4374
|
+
hidden: true,
|
|
4375
|
+
type: "string",
|
|
4376
|
+
initialValue: ""
|
|
4377
|
+
}
|
|
4378
|
+
]
|
|
4379
|
+
},
|
|
4380
|
+
{
|
|
4381
|
+
title: "Alternative Fractions",
|
|
4382
|
+
name: "alternativeFractions",
|
|
4383
|
+
type: "object",
|
|
4384
|
+
hidden: ({ parent }) => {
|
|
4385
|
+
var _a;
|
|
4386
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("alternativeFractions"));
|
|
4387
|
+
},
|
|
4388
|
+
fields: [
|
|
4389
|
+
{
|
|
4390
|
+
name: "title",
|
|
4391
|
+
type: "string",
|
|
4392
|
+
placeholder: "eg. Alternative Fractions",
|
|
4393
|
+
initialValue: "Alternative Fractions"
|
|
4394
|
+
},
|
|
4395
|
+
{
|
|
4396
|
+
name: "feature",
|
|
4397
|
+
type: "string",
|
|
4398
|
+
placeholder: "eg. afrc",
|
|
4399
|
+
initialValue: "afrc"
|
|
4400
|
+
},
|
|
4401
|
+
{
|
|
4402
|
+
title: "Custom Text",
|
|
4403
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4404
|
+
name: "customText",
|
|
4405
|
+
hidden: true,
|
|
4406
|
+
type: "string",
|
|
4407
|
+
initialValue: ""
|
|
4408
|
+
}
|
|
4409
|
+
]
|
|
4410
|
+
},
|
|
4411
|
+
{
|
|
4412
|
+
title: "Capitals To Small Caps",
|
|
4413
|
+
name: "capitalsToSmallCaps",
|
|
4414
|
+
type: "object",
|
|
4415
|
+
hidden: ({ parent }) => {
|
|
4416
|
+
var _a;
|
|
4417
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("capitalsToSmallCaps"));
|
|
4418
|
+
},
|
|
4419
|
+
fields: [
|
|
4420
|
+
{
|
|
4421
|
+
name: "title",
|
|
4422
|
+
type: "string",
|
|
4423
|
+
placeholder: "eg. Capitals to Small Caps",
|
|
4424
|
+
initialValue: "Capitals to Small Caps"
|
|
4425
|
+
},
|
|
4426
|
+
{
|
|
4427
|
+
name: "feature",
|
|
4428
|
+
type: "string",
|
|
4429
|
+
placeholder: "eg. c2sc",
|
|
4430
|
+
initialValue: "c2sc"
|
|
4431
|
+
},
|
|
4432
|
+
{
|
|
4433
|
+
title: "Custom Text",
|
|
4434
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4435
|
+
name: "customText",
|
|
4436
|
+
hidden: true,
|
|
4437
|
+
type: "string",
|
|
4438
|
+
initialValue: ""
|
|
4439
|
+
}
|
|
4440
|
+
]
|
|
4441
|
+
},
|
|
4442
|
+
{
|
|
4443
|
+
title: "Capitals to Petite Caps",
|
|
4444
|
+
name: "capitalsToPetiteCaps",
|
|
4445
|
+
type: "object",
|
|
4446
|
+
hidden: ({ parent }) => {
|
|
4447
|
+
var _a;
|
|
4448
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("capitalsToPetiteCaps"));
|
|
4449
|
+
},
|
|
4450
|
+
fields: [
|
|
4451
|
+
{
|
|
4452
|
+
name: "title",
|
|
4453
|
+
type: "string",
|
|
4454
|
+
placeholder: "eg. Capitals to Petite Caps",
|
|
4455
|
+
initialValue: "Capitals to Petite Caps"
|
|
4456
|
+
},
|
|
4457
|
+
{
|
|
4458
|
+
name: "feature",
|
|
4459
|
+
type: "string",
|
|
4460
|
+
placeholder: "eg. c2pc",
|
|
4461
|
+
initialValue: "c2pc"
|
|
4462
|
+
},
|
|
4463
|
+
{
|
|
4464
|
+
title: "Custom Text",
|
|
4465
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4466
|
+
name: "customText",
|
|
4467
|
+
hidden: true,
|
|
4468
|
+
type: "string",
|
|
4469
|
+
initialValue: ""
|
|
4470
|
+
}
|
|
4471
|
+
]
|
|
4472
|
+
},
|
|
4473
|
+
{
|
|
4474
|
+
title: "Case Sensitive Forms",
|
|
4475
|
+
name: "caseSensitiveForms",
|
|
4476
|
+
type: "object",
|
|
4477
|
+
hidden: ({ parent }) => {
|
|
4478
|
+
var _a;
|
|
4479
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("caseSensitiveForms"));
|
|
4480
|
+
},
|
|
4481
|
+
fields: [
|
|
4482
|
+
{
|
|
4483
|
+
name: "title",
|
|
4484
|
+
type: "string",
|
|
4485
|
+
placeholder: "eg. Case Sensitive Forms",
|
|
4486
|
+
initialValue: "Case Sensitive Forms"
|
|
4487
|
+
},
|
|
4488
|
+
{
|
|
4489
|
+
name: "feature",
|
|
4490
|
+
type: "string",
|
|
4491
|
+
placeholder: "eg. case",
|
|
4492
|
+
initialValue: "case"
|
|
4493
|
+
},
|
|
4494
|
+
{
|
|
4495
|
+
title: "Custom Text",
|
|
4496
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4497
|
+
name: "customText",
|
|
4498
|
+
hidden: true,
|
|
4499
|
+
type: "string",
|
|
4500
|
+
initialValue: ""
|
|
4501
|
+
}
|
|
4502
|
+
]
|
|
4503
|
+
},
|
|
4504
|
+
{
|
|
4505
|
+
title: "Contextual Alternates",
|
|
4506
|
+
name: "contextualAlternates",
|
|
4507
|
+
type: "object",
|
|
4508
|
+
hidden: ({ parent }) => {
|
|
4509
|
+
var _a;
|
|
4510
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("contextualAlternates"));
|
|
4511
|
+
},
|
|
4512
|
+
fields: [
|
|
4513
|
+
{
|
|
4514
|
+
name: "title",
|
|
4515
|
+
type: "string",
|
|
4516
|
+
placeholder: "eg. Contextual Alternates",
|
|
4517
|
+
initialValue: "Contextual Alternates"
|
|
4518
|
+
},
|
|
4519
|
+
{
|
|
4520
|
+
name: "feature",
|
|
4521
|
+
type: "string",
|
|
4522
|
+
placeholder: "eg. calt",
|
|
4523
|
+
initialValue: "calt"
|
|
4524
|
+
},
|
|
4525
|
+
{
|
|
4526
|
+
title: "Custom Text",
|
|
4527
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4528
|
+
name: "customText",
|
|
4529
|
+
hidden: true,
|
|
4530
|
+
type: "string",
|
|
4531
|
+
initialValue: ""
|
|
4532
|
+
}
|
|
4533
|
+
]
|
|
4534
|
+
},
|
|
4535
|
+
{
|
|
4536
|
+
title: "Contextual Ligatures",
|
|
4537
|
+
name: "contextualLigatures",
|
|
4538
|
+
type: "object",
|
|
4539
|
+
hidden: ({ parent }) => {
|
|
4540
|
+
var _a;
|
|
4541
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("contextualLigatures"));
|
|
4542
|
+
},
|
|
4543
|
+
fields: [
|
|
4544
|
+
{
|
|
4545
|
+
name: "title",
|
|
4546
|
+
type: "string",
|
|
4547
|
+
placeholder: "eg. Contextual Ligatures",
|
|
4548
|
+
initialValue: "Contextual Ligatures"
|
|
4549
|
+
},
|
|
4550
|
+
{
|
|
4551
|
+
name: "feature",
|
|
4552
|
+
type: "string",
|
|
4553
|
+
placeholder: "eg. clig",
|
|
4554
|
+
initialValue: "clig"
|
|
4555
|
+
},
|
|
4556
|
+
{
|
|
4557
|
+
title: "Custom Text",
|
|
4558
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4559
|
+
name: "customText",
|
|
4560
|
+
hidden: true,
|
|
4561
|
+
type: "string",
|
|
4562
|
+
initialValue: ""
|
|
4563
|
+
}
|
|
4564
|
+
]
|
|
4565
|
+
},
|
|
4566
|
+
{
|
|
4567
|
+
title: "Contextual Swash",
|
|
4568
|
+
name: "contextualSwash",
|
|
4569
|
+
type: "object",
|
|
4570
|
+
hidden: ({ parent }) => {
|
|
4571
|
+
var _a;
|
|
4572
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("contextualSwash"));
|
|
4573
|
+
},
|
|
4574
|
+
fields: [
|
|
4575
|
+
{
|
|
4576
|
+
name: "title",
|
|
4577
|
+
type: "string",
|
|
4578
|
+
placeholder: "eg. Contextual Swash",
|
|
4579
|
+
initialValue: "Contextual Swash"
|
|
4580
|
+
},
|
|
4581
|
+
{
|
|
4582
|
+
name: "feature",
|
|
4583
|
+
type: "string",
|
|
4584
|
+
placeholder: "eg. cswh",
|
|
4585
|
+
initialValue: "cswh"
|
|
4586
|
+
},
|
|
4587
|
+
{
|
|
4588
|
+
title: "Custom Text",
|
|
4589
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4590
|
+
name: "customText",
|
|
4591
|
+
hidden: true,
|
|
4592
|
+
type: "string",
|
|
4593
|
+
initialValue: ""
|
|
4594
|
+
}
|
|
4595
|
+
]
|
|
4596
|
+
},
|
|
4597
|
+
{
|
|
4598
|
+
title: "Denominator",
|
|
4599
|
+
name: "denominator",
|
|
4600
|
+
type: "object",
|
|
4601
|
+
hidden: ({ parent }) => {
|
|
4602
|
+
var _a;
|
|
4603
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("denominator"));
|
|
4604
|
+
},
|
|
4605
|
+
fields: [
|
|
4606
|
+
{
|
|
4607
|
+
name: "title",
|
|
4608
|
+
type: "string",
|
|
4609
|
+
placeholder: "eg. Denominator",
|
|
4610
|
+
initialValue: "Denominator"
|
|
4611
|
+
},
|
|
4612
|
+
{
|
|
4613
|
+
name: "feature",
|
|
4614
|
+
type: "string",
|
|
4615
|
+
placeholder: "eg. dnom",
|
|
4616
|
+
initialValue: "dnom"
|
|
4617
|
+
},
|
|
4618
|
+
{
|
|
4619
|
+
title: "Custom Text",
|
|
4620
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4621
|
+
name: "customText",
|
|
4622
|
+
hidden: true,
|
|
4623
|
+
type: "string",
|
|
4624
|
+
initialValue: ""
|
|
4625
|
+
}
|
|
4626
|
+
]
|
|
4627
|
+
},
|
|
4628
|
+
{
|
|
4629
|
+
title: "Discretionary Ligatures",
|
|
4630
|
+
name: "discretionaryLigatures",
|
|
4631
|
+
type: "object",
|
|
4632
|
+
hidden: ({ parent }) => {
|
|
4633
|
+
var _a;
|
|
4634
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("discretionaryLigatures"));
|
|
4635
|
+
},
|
|
4636
|
+
fields: [
|
|
4637
|
+
{
|
|
4638
|
+
name: "title",
|
|
4639
|
+
type: "string",
|
|
4640
|
+
placeholder: "eg. Discretionary Ligatures",
|
|
4641
|
+
initialValue: "Discretionary Ligatures"
|
|
4642
|
+
},
|
|
4643
|
+
{
|
|
4644
|
+
name: "feature",
|
|
4645
|
+
type: "string",
|
|
4646
|
+
placeholder: "eg. dlig",
|
|
4647
|
+
initialValue: "dlig"
|
|
4648
|
+
},
|
|
4649
|
+
{
|
|
4650
|
+
title: "Custom Text",
|
|
4651
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4652
|
+
name: "customText",
|
|
4653
|
+
hidden: true,
|
|
4654
|
+
type: "string",
|
|
4655
|
+
initialValue: ""
|
|
4656
|
+
}
|
|
4657
|
+
]
|
|
4658
|
+
},
|
|
4659
|
+
{
|
|
4660
|
+
title: "Fractions",
|
|
4661
|
+
name: "fractions",
|
|
4662
|
+
type: "object",
|
|
4663
|
+
hidden: ({ parent }) => {
|
|
4664
|
+
var _a;
|
|
4665
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("fractions"));
|
|
4666
|
+
},
|
|
4667
|
+
fields: [
|
|
4668
|
+
{
|
|
4669
|
+
name: "title",
|
|
4670
|
+
type: "string",
|
|
4671
|
+
placeholder: "eg. Fractions",
|
|
4672
|
+
initialValue: "Fractions"
|
|
4673
|
+
},
|
|
4674
|
+
{
|
|
4675
|
+
name: "feature",
|
|
4676
|
+
type: "string",
|
|
4677
|
+
placeholder: "eg. frac",
|
|
4678
|
+
initialValue: "frac"
|
|
4679
|
+
},
|
|
4680
|
+
{
|
|
4681
|
+
title: "Custom Text",
|
|
4682
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4683
|
+
name: "customText",
|
|
4684
|
+
hidden: true,
|
|
4685
|
+
type: "string",
|
|
4686
|
+
initialValue: ""
|
|
4687
|
+
}
|
|
4688
|
+
]
|
|
4689
|
+
},
|
|
4690
|
+
{
|
|
4691
|
+
title: "Glyph Decomposition",
|
|
4692
|
+
name: "glyphDecomposition",
|
|
4693
|
+
type: "object",
|
|
4694
|
+
hidden: ({ parent }) => {
|
|
4695
|
+
var _a;
|
|
4696
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("glyphDecomposition"));
|
|
4697
|
+
},
|
|
4698
|
+
fields: [
|
|
4699
|
+
{
|
|
4700
|
+
name: "title",
|
|
4701
|
+
type: "string",
|
|
4702
|
+
placeholder: "eg. Glyph Decomposition",
|
|
4703
|
+
initialValue: "Glyph Decomposition"
|
|
4704
|
+
},
|
|
4705
|
+
{
|
|
4706
|
+
name: "feature",
|
|
4707
|
+
type: "string",
|
|
4708
|
+
placeholder: "eg. ccmp",
|
|
4709
|
+
initialValue: "ccmp"
|
|
4710
|
+
},
|
|
4711
|
+
{
|
|
4712
|
+
title: "Custom Text",
|
|
4713
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4714
|
+
name: "customText",
|
|
4715
|
+
hidden: true,
|
|
4716
|
+
type: "string",
|
|
4717
|
+
initialValue: ""
|
|
4718
|
+
}
|
|
4719
|
+
]
|
|
4720
|
+
},
|
|
4721
|
+
{
|
|
4722
|
+
title: "Historical Forms",
|
|
4723
|
+
name: "historicalForms",
|
|
4724
|
+
type: "object",
|
|
4725
|
+
hidden: ({ parent }) => {
|
|
4726
|
+
var _a;
|
|
4727
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("historicalForms"));
|
|
4728
|
+
},
|
|
4729
|
+
fields: [
|
|
4730
|
+
{
|
|
4731
|
+
name: "title",
|
|
4732
|
+
type: "string",
|
|
4733
|
+
placeholder: "eg. Historical Forms",
|
|
4734
|
+
initialValue: "Historical Forms"
|
|
4735
|
+
},
|
|
4736
|
+
{
|
|
4737
|
+
name: "feature",
|
|
4738
|
+
type: "string",
|
|
4739
|
+
placeholder: "eg. hist",
|
|
4740
|
+
initialValue: "hist"
|
|
4741
|
+
},
|
|
4742
|
+
{
|
|
4743
|
+
title: "Custom Text",
|
|
4744
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4745
|
+
name: "customText",
|
|
4746
|
+
hidden: true,
|
|
4747
|
+
type: "string",
|
|
4748
|
+
initialValue: ""
|
|
4749
|
+
}
|
|
4750
|
+
]
|
|
4751
|
+
},
|
|
4752
|
+
{
|
|
4753
|
+
title: "Historical Ligatures",
|
|
4754
|
+
name: "historicalLigatures",
|
|
4755
|
+
type: "object",
|
|
4756
|
+
hidden: ({ parent }) => {
|
|
4757
|
+
var _a;
|
|
4758
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("historicalLigatures"));
|
|
4759
|
+
},
|
|
4760
|
+
fields: [
|
|
4761
|
+
{
|
|
4762
|
+
name: "title",
|
|
4763
|
+
type: "string",
|
|
4764
|
+
placeholder: "eg. Historical Ligatures",
|
|
4765
|
+
initialValue: "Historical Ligatures"
|
|
4766
|
+
},
|
|
4767
|
+
{
|
|
4768
|
+
name: "feature",
|
|
4769
|
+
type: "string",
|
|
4770
|
+
placeholder: "eg. hlig",
|
|
4771
|
+
initialValue: "hlig"
|
|
4772
|
+
},
|
|
4773
|
+
{
|
|
4774
|
+
title: "Custom Text",
|
|
4775
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4776
|
+
name: "customText",
|
|
4777
|
+
hidden: true,
|
|
4778
|
+
type: "string",
|
|
4779
|
+
initialValue: ""
|
|
4780
|
+
}
|
|
4781
|
+
]
|
|
4782
|
+
},
|
|
4783
|
+
{
|
|
4784
|
+
title: "Initial Form",
|
|
4785
|
+
name: "initialForm",
|
|
4786
|
+
type: "object",
|
|
4787
|
+
hidden: ({ parent }) => {
|
|
4788
|
+
var _a;
|
|
4789
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("initialForm"));
|
|
4790
|
+
},
|
|
4791
|
+
fields: [
|
|
4792
|
+
{
|
|
4793
|
+
name: "title",
|
|
4794
|
+
type: "string",
|
|
4795
|
+
placeholder: "eg. Initial Form",
|
|
4796
|
+
initialValue: "Initial Form"
|
|
4797
|
+
},
|
|
4798
|
+
{
|
|
4799
|
+
name: "feature",
|
|
4800
|
+
type: "string",
|
|
4801
|
+
placeholder: "eg. init",
|
|
4802
|
+
initialValue: "init"
|
|
4803
|
+
},
|
|
4804
|
+
{
|
|
4805
|
+
title: "Custom Text",
|
|
4806
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4807
|
+
name: "customText",
|
|
4808
|
+
hidden: true,
|
|
4809
|
+
type: "string",
|
|
4810
|
+
initialValue: ""
|
|
4811
|
+
}
|
|
4812
|
+
]
|
|
4813
|
+
},
|
|
4814
|
+
{
|
|
4815
|
+
title: "Isolated Form",
|
|
4816
|
+
name: "isolatedForm",
|
|
4817
|
+
type: "object",
|
|
4818
|
+
hidden: ({ parent }) => {
|
|
4819
|
+
var _a;
|
|
4820
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("isolatedForm"));
|
|
4821
|
+
},
|
|
4822
|
+
fields: [
|
|
4823
|
+
{
|
|
4824
|
+
name: "title",
|
|
4825
|
+
type: "string",
|
|
4826
|
+
placeholder: "eg. Isolated Form",
|
|
4827
|
+
initialValue: "Isolated Form"
|
|
4828
|
+
},
|
|
4829
|
+
{
|
|
4830
|
+
name: "feature",
|
|
4831
|
+
type: "string",
|
|
4832
|
+
placeholder: "eg. isol",
|
|
4833
|
+
initialValue: "isol"
|
|
4834
|
+
},
|
|
4835
|
+
{
|
|
4836
|
+
title: "Custom Text",
|
|
4837
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4838
|
+
name: "customText",
|
|
4839
|
+
hidden: true,
|
|
4840
|
+
type: "string",
|
|
4841
|
+
initialValue: ""
|
|
4842
|
+
}
|
|
4843
|
+
]
|
|
4844
|
+
},
|
|
4845
|
+
{
|
|
4846
|
+
title: "Justified Alternates",
|
|
4847
|
+
name: "justifiedAlternates",
|
|
4848
|
+
type: "object",
|
|
4849
|
+
hidden: ({ parent }) => {
|
|
4850
|
+
var _a;
|
|
4851
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("justifiedAlternates"));
|
|
4852
|
+
},
|
|
4853
|
+
fields: [
|
|
4854
|
+
{
|
|
4855
|
+
name: "title",
|
|
4856
|
+
type: "string",
|
|
4857
|
+
placeholder: "eg. Justification Alternates",
|
|
4858
|
+
initialValue: "Justification Alternates"
|
|
4859
|
+
},
|
|
4860
|
+
{
|
|
4861
|
+
name: "feature",
|
|
4862
|
+
type: "string",
|
|
4863
|
+
placeholder: "eg. jalt",
|
|
4864
|
+
initialValue: "jalt"
|
|
4865
|
+
},
|
|
4866
|
+
{
|
|
4867
|
+
title: "Custom Text",
|
|
4868
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4869
|
+
name: "customText",
|
|
4870
|
+
hidden: true,
|
|
4871
|
+
type: "string",
|
|
4872
|
+
initialValue: ""
|
|
4873
|
+
}
|
|
4874
|
+
]
|
|
4875
|
+
},
|
|
4876
|
+
{
|
|
4877
|
+
title: "Localized Forms",
|
|
4878
|
+
name: "localizedForms",
|
|
4879
|
+
type: "object",
|
|
4880
|
+
hidden: ({ parent }) => {
|
|
4881
|
+
var _a;
|
|
4882
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("localizedForms"));
|
|
4883
|
+
},
|
|
4884
|
+
fields: [
|
|
4885
|
+
{
|
|
4886
|
+
name: "title",
|
|
4887
|
+
type: "string",
|
|
4888
|
+
placeholder: "eg. Localized Forms",
|
|
4889
|
+
initialValue: "Localized Forms"
|
|
4890
|
+
},
|
|
4891
|
+
{
|
|
4892
|
+
name: "feature",
|
|
4893
|
+
type: "string",
|
|
4894
|
+
placeholder: "eg. locl",
|
|
4895
|
+
initialValue: "locl"
|
|
4896
|
+
},
|
|
4897
|
+
{
|
|
4898
|
+
title: "Custom Text",
|
|
4899
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4900
|
+
name: "customText",
|
|
4901
|
+
hidden: true,
|
|
4902
|
+
type: "string",
|
|
4903
|
+
initialValue: ""
|
|
4904
|
+
}
|
|
4905
|
+
]
|
|
4906
|
+
},
|
|
4907
|
+
{
|
|
4908
|
+
title: "Mark Positioning",
|
|
4909
|
+
name: "markPositioning",
|
|
4910
|
+
type: "object",
|
|
4911
|
+
hidden: ({ parent }) => {
|
|
4912
|
+
var _a;
|
|
4913
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("markPositioning"));
|
|
4914
|
+
},
|
|
4915
|
+
fields: [
|
|
4916
|
+
{
|
|
4917
|
+
name: "title",
|
|
4918
|
+
type: "string",
|
|
4919
|
+
placeholder: "eg. Mark Positioning",
|
|
4920
|
+
initialValue: "Mark Positioning"
|
|
4921
|
+
},
|
|
4922
|
+
{
|
|
4923
|
+
name: "feature",
|
|
4924
|
+
type: "string",
|
|
4925
|
+
placeholder: "eg. mark",
|
|
4926
|
+
initialValue: "mark"
|
|
4927
|
+
},
|
|
4928
|
+
{
|
|
4929
|
+
title: "Custom Text",
|
|
4930
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4931
|
+
name: "customText",
|
|
4932
|
+
hidden: true,
|
|
4933
|
+
type: "string",
|
|
4934
|
+
initialValue: ""
|
|
4935
|
+
}
|
|
4936
|
+
]
|
|
4937
|
+
},
|
|
4938
|
+
{
|
|
4939
|
+
title: "Mark Positioning via Subs",
|
|
4940
|
+
name: "markPositioningViaSubs",
|
|
4941
|
+
type: "object",
|
|
4942
|
+
hidden: ({ parent }) => {
|
|
4943
|
+
var _a;
|
|
4944
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("markPositioningViaSubs"));
|
|
4945
|
+
},
|
|
4946
|
+
fields: [
|
|
4947
|
+
{
|
|
4948
|
+
name: "title",
|
|
4949
|
+
type: "string",
|
|
4950
|
+
placeholder: "eg. Mark Positioning via Subs",
|
|
4951
|
+
initialValue: "Mark Positioning via Subs"
|
|
4952
|
+
},
|
|
4953
|
+
{
|
|
4954
|
+
name: "feature",
|
|
4955
|
+
type: "string",
|
|
4956
|
+
placeholder: "eg. mset",
|
|
4957
|
+
initialValue: "mset"
|
|
4958
|
+
},
|
|
4959
|
+
{
|
|
4960
|
+
title: "Custom Text",
|
|
4961
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4962
|
+
name: "customText",
|
|
4963
|
+
hidden: true,
|
|
4964
|
+
type: "string",
|
|
4965
|
+
initialValue: ""
|
|
4966
|
+
}
|
|
4967
|
+
]
|
|
4968
|
+
},
|
|
4969
|
+
{
|
|
4970
|
+
title: "Mark to Mark Positioning",
|
|
4971
|
+
name: "markToMarkPositioning",
|
|
4972
|
+
type: "object",
|
|
4973
|
+
hidden: ({ parent }) => {
|
|
4974
|
+
var _a;
|
|
4975
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("markToMarkPositioning"));
|
|
4976
|
+
},
|
|
4977
|
+
fields: [
|
|
4978
|
+
{
|
|
4979
|
+
name: "title",
|
|
4980
|
+
type: "string",
|
|
4981
|
+
placeholder: "eg. Mark to Mark Positioning",
|
|
4982
|
+
initialValue: "Mark to Mark Positioning"
|
|
4983
|
+
},
|
|
4984
|
+
{
|
|
4985
|
+
name: "feature",
|
|
4986
|
+
type: "string",
|
|
4987
|
+
placeholder: "eg. mkmk",
|
|
4988
|
+
initialValue: "mkmk"
|
|
4989
|
+
},
|
|
4990
|
+
{
|
|
4991
|
+
title: "Custom Text",
|
|
4992
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
4993
|
+
name: "customText",
|
|
4994
|
+
hidden: true,
|
|
4995
|
+
type: "string",
|
|
4996
|
+
initialValue: ""
|
|
4997
|
+
}
|
|
4998
|
+
]
|
|
4999
|
+
},
|
|
5000
|
+
{
|
|
5001
|
+
title: "Mathematical Greek",
|
|
5002
|
+
name: "mathematicalGreek",
|
|
5003
|
+
type: "object",
|
|
5004
|
+
hidden: ({ parent }) => {
|
|
5005
|
+
var _a;
|
|
5006
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("mathematicalGreek"));
|
|
5007
|
+
},
|
|
5008
|
+
fields: [
|
|
5009
|
+
{
|
|
5010
|
+
name: "title",
|
|
5011
|
+
type: "string",
|
|
5012
|
+
placeholder: "eg. Mathematical Greek",
|
|
5013
|
+
initialValue: "Mathematical Greek"
|
|
5014
|
+
},
|
|
5015
|
+
{
|
|
5016
|
+
name: "feature",
|
|
5017
|
+
type: "string",
|
|
5018
|
+
placeholder: "eg. mgrk",
|
|
5019
|
+
initialValue: "mgrk"
|
|
5020
|
+
},
|
|
5021
|
+
{
|
|
5022
|
+
title: "Custom Text",
|
|
5023
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5024
|
+
name: "customText",
|
|
5025
|
+
hidden: true,
|
|
5026
|
+
type: "string",
|
|
5027
|
+
initialValue: ""
|
|
5028
|
+
}
|
|
5029
|
+
]
|
|
5030
|
+
},
|
|
5031
|
+
{
|
|
5032
|
+
title: "Medial Form",
|
|
5033
|
+
name: "medialForm",
|
|
5034
|
+
type: "object",
|
|
5035
|
+
hidden: ({ parent }) => {
|
|
5036
|
+
var _a;
|
|
5037
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("medialForm"));
|
|
5038
|
+
},
|
|
5039
|
+
fields: [
|
|
5040
|
+
{
|
|
5041
|
+
name: "title",
|
|
5042
|
+
type: "string",
|
|
5043
|
+
placeholder: "eg. Medial Form",
|
|
5044
|
+
initialValue: "Medial Form"
|
|
5045
|
+
},
|
|
5046
|
+
{
|
|
5047
|
+
name: "feature",
|
|
5048
|
+
type: "string",
|
|
5049
|
+
placeholder: "eg. medi",
|
|
5050
|
+
initialValue: "medi"
|
|
5051
|
+
},
|
|
5052
|
+
{
|
|
5053
|
+
title: "Custom Text",
|
|
5054
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5055
|
+
name: "customText",
|
|
5056
|
+
hidden: true,
|
|
5057
|
+
type: "string",
|
|
5058
|
+
initialValue: ""
|
|
5059
|
+
}
|
|
5060
|
+
]
|
|
5061
|
+
},
|
|
5062
|
+
{
|
|
5063
|
+
title: "Numerator",
|
|
5064
|
+
name: "numerator",
|
|
5065
|
+
type: "object",
|
|
5066
|
+
hidden: ({ parent }) => {
|
|
5067
|
+
var _a;
|
|
5068
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("numerator"));
|
|
5069
|
+
},
|
|
5070
|
+
fields: [
|
|
5071
|
+
{
|
|
5072
|
+
name: "title",
|
|
5073
|
+
type: "string",
|
|
5074
|
+
placeholder: "eg. Numerator",
|
|
5075
|
+
initialValue: "Numerator"
|
|
5076
|
+
},
|
|
5077
|
+
{
|
|
5078
|
+
name: "feature",
|
|
5079
|
+
type: "string",
|
|
5080
|
+
placeholder: "eg. numr",
|
|
5081
|
+
initialValue: "numr"
|
|
5082
|
+
},
|
|
5083
|
+
{
|
|
5084
|
+
title: "Custom Text",
|
|
5085
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5086
|
+
name: "customText",
|
|
5087
|
+
hidden: true,
|
|
5088
|
+
type: "string",
|
|
5089
|
+
initialValue: ""
|
|
5090
|
+
}
|
|
5091
|
+
]
|
|
5092
|
+
},
|
|
5093
|
+
{
|
|
5094
|
+
title: "Ordinals",
|
|
5095
|
+
name: "ordinals",
|
|
5096
|
+
type: "object",
|
|
5097
|
+
hidden: ({ parent }) => {
|
|
5098
|
+
var _a;
|
|
5099
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("ordinals"));
|
|
5100
|
+
},
|
|
5101
|
+
fields: [
|
|
5102
|
+
{
|
|
5103
|
+
name: "title",
|
|
5104
|
+
type: "string",
|
|
5105
|
+
placeholder: "eg. Ordinals",
|
|
5106
|
+
initialValue: "Ordinals"
|
|
5107
|
+
},
|
|
5108
|
+
{
|
|
5109
|
+
name: "feature",
|
|
5110
|
+
type: "string",
|
|
5111
|
+
placeholder: "eg. ordn",
|
|
5112
|
+
initialValue: "ordn"
|
|
5113
|
+
},
|
|
5114
|
+
{
|
|
5115
|
+
title: "Custom Text",
|
|
5116
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5117
|
+
name: "customText",
|
|
5118
|
+
hidden: true,
|
|
5119
|
+
type: "string",
|
|
5120
|
+
initialValue: ""
|
|
5121
|
+
}
|
|
5122
|
+
]
|
|
5123
|
+
},
|
|
5124
|
+
{
|
|
5125
|
+
title: "Ornaments",
|
|
5126
|
+
name: "ornaments",
|
|
5127
|
+
type: "object",
|
|
5128
|
+
hidden: ({ parent }) => {
|
|
5129
|
+
var _a;
|
|
5130
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("ornaments"));
|
|
5131
|
+
},
|
|
5132
|
+
fields: [
|
|
5133
|
+
{
|
|
5134
|
+
name: "title",
|
|
5135
|
+
type: "string",
|
|
5136
|
+
placeholder: "eg. Ornaments",
|
|
5137
|
+
initialValue: "Ornaments"
|
|
5138
|
+
},
|
|
5139
|
+
{
|
|
5140
|
+
name: "feature",
|
|
5141
|
+
type: "string",
|
|
5142
|
+
placeholder: "eg. ornm",
|
|
5143
|
+
initialValue: "ornm"
|
|
5144
|
+
},
|
|
5145
|
+
{
|
|
5146
|
+
title: "Custom Text",
|
|
5147
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5148
|
+
name: "customText",
|
|
5149
|
+
hidden: true,
|
|
5150
|
+
type: "string",
|
|
5151
|
+
initialValue: ""
|
|
5152
|
+
}
|
|
5153
|
+
]
|
|
5154
|
+
},
|
|
5155
|
+
{
|
|
5156
|
+
title: "Petite Caps",
|
|
5157
|
+
name: "petiteCaps",
|
|
5158
|
+
type: "object",
|
|
5159
|
+
hidden: ({ parent }) => {
|
|
5160
|
+
var _a;
|
|
5161
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("petiteCaps"));
|
|
5162
|
+
},
|
|
5163
|
+
fields: [
|
|
5164
|
+
{
|
|
5165
|
+
name: "title",
|
|
5166
|
+
type: "string",
|
|
5167
|
+
placeholder: "eg. Petite Caps",
|
|
5168
|
+
initialValue: "Petite Caps"
|
|
5169
|
+
},
|
|
5170
|
+
{
|
|
5171
|
+
name: "feature",
|
|
5172
|
+
type: "string",
|
|
5173
|
+
placeholder: "eg. pcap",
|
|
5174
|
+
initialValue: "pcap"
|
|
5175
|
+
},
|
|
5176
|
+
{
|
|
5177
|
+
title: "Custom Text",
|
|
5178
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5179
|
+
name: "customText",
|
|
5180
|
+
hidden: true,
|
|
5181
|
+
type: "string",
|
|
5182
|
+
initialValue: ""
|
|
5183
|
+
}
|
|
5184
|
+
]
|
|
5185
|
+
},
|
|
5186
|
+
{
|
|
5187
|
+
title: "Proportional Lining",
|
|
5188
|
+
name: "proportionalLining",
|
|
5189
|
+
type: "object",
|
|
5190
|
+
hidden: ({ parent }) => {
|
|
5191
|
+
var _a;
|
|
5192
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("proportionalLining"));
|
|
5193
|
+
},
|
|
5194
|
+
fields: [
|
|
5195
|
+
{
|
|
5196
|
+
name: "title",
|
|
5197
|
+
type: "string",
|
|
5198
|
+
placeholder: "eg. Proportional Lining",
|
|
5199
|
+
initialValue: "Proportional Lining"
|
|
5200
|
+
},
|
|
5201
|
+
{
|
|
5202
|
+
name: "feature",
|
|
5203
|
+
type: "string",
|
|
5204
|
+
placeholder: "eg. pnum lnum",
|
|
5205
|
+
initialValue: "pnum lnum"
|
|
5206
|
+
},
|
|
5207
|
+
{
|
|
5208
|
+
title: "Custom Text",
|
|
5209
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5210
|
+
name: "customText",
|
|
5211
|
+
hidden: true,
|
|
5212
|
+
type: "string",
|
|
5213
|
+
initialValue: ""
|
|
5214
|
+
}
|
|
5215
|
+
]
|
|
5216
|
+
},
|
|
5217
|
+
{
|
|
5218
|
+
title: "Proportional Oldstyle",
|
|
5219
|
+
name: "proportionalOldstyle",
|
|
5220
|
+
type: "object",
|
|
5221
|
+
hidden: ({ parent }) => {
|
|
5222
|
+
var _a;
|
|
5223
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("proportionalOldstyle"));
|
|
5224
|
+
},
|
|
5225
|
+
fields: [
|
|
5226
|
+
{
|
|
5227
|
+
name: "title",
|
|
5228
|
+
type: "string",
|
|
5229
|
+
placeholder: "eg. Proportional Oldstyle",
|
|
5230
|
+
initialValue: "Proportional Oldstyle"
|
|
5231
|
+
},
|
|
5232
|
+
{
|
|
5233
|
+
name: "feature",
|
|
5234
|
+
type: "string",
|
|
5235
|
+
placeholder: "eg. pnum onum",
|
|
5236
|
+
initialValue: "pnum onum"
|
|
5237
|
+
},
|
|
5238
|
+
{
|
|
5239
|
+
title: "Show on Glyph Grid",
|
|
5240
|
+
name: "glyphGrid",
|
|
5241
|
+
type: "boolean",
|
|
5242
|
+
initialValue: false
|
|
5243
|
+
},
|
|
5244
|
+
{
|
|
5245
|
+
title: "Custom Text",
|
|
5246
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5247
|
+
name: "customText",
|
|
5248
|
+
hidden: true,
|
|
5249
|
+
type: "string",
|
|
5250
|
+
initialValue: ""
|
|
5251
|
+
}
|
|
5252
|
+
]
|
|
5253
|
+
},
|
|
5254
|
+
{
|
|
5255
|
+
title: "Required Ligatures",
|
|
5256
|
+
name: "requiredLigatures",
|
|
5257
|
+
type: "object",
|
|
5258
|
+
hidden: ({ parent }) => {
|
|
5259
|
+
var _a;
|
|
5260
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("requiredLigatures"));
|
|
5261
|
+
},
|
|
5262
|
+
fields: [
|
|
5263
|
+
{
|
|
5264
|
+
name: "title",
|
|
5265
|
+
type: "string",
|
|
5266
|
+
placeholder: "eg. Required Ligatures",
|
|
5267
|
+
initialValue: "Required Ligatures"
|
|
5268
|
+
},
|
|
5269
|
+
{
|
|
5270
|
+
name: "feature",
|
|
5271
|
+
type: "string",
|
|
5272
|
+
placeholder: "eg. rlig",
|
|
5273
|
+
initialValue: "rlig"
|
|
5274
|
+
},
|
|
5275
|
+
{
|
|
5276
|
+
title: "Custom Text",
|
|
5277
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5278
|
+
name: "customText",
|
|
5279
|
+
hidden: true,
|
|
5280
|
+
type: "string",
|
|
5281
|
+
initialValue: ""
|
|
5282
|
+
}
|
|
5283
|
+
]
|
|
5284
|
+
},
|
|
5285
|
+
{
|
|
5286
|
+
title: "Scientific Inferiors",
|
|
5287
|
+
name: "scientificInferiors",
|
|
5288
|
+
type: "object",
|
|
5289
|
+
hidden: ({ parent }) => {
|
|
5290
|
+
var _a;
|
|
5291
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("scientificInferiors"));
|
|
5292
|
+
},
|
|
5293
|
+
fields: [
|
|
5294
|
+
{
|
|
5295
|
+
name: "title",
|
|
5296
|
+
type: "string",
|
|
5297
|
+
placeholder: "eg. Scientific Inferiors",
|
|
5298
|
+
initialValue: "Scientific Inferiors"
|
|
5299
|
+
},
|
|
5300
|
+
{
|
|
5301
|
+
name: "feature",
|
|
5302
|
+
type: "string",
|
|
5303
|
+
placeholder: "eg. sinf",
|
|
5304
|
+
initialValue: "sinf"
|
|
5305
|
+
},
|
|
5306
|
+
{
|
|
5307
|
+
title: "Custom Text",
|
|
5308
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5309
|
+
name: "customText",
|
|
5310
|
+
hidden: true,
|
|
5311
|
+
type: "string",
|
|
5312
|
+
initialValue: ""
|
|
5313
|
+
}
|
|
5314
|
+
]
|
|
5315
|
+
},
|
|
5316
|
+
{
|
|
5317
|
+
title: "Slashed Zero",
|
|
5318
|
+
name: "slashedZero",
|
|
5319
|
+
type: "object",
|
|
5320
|
+
hidden: ({ parent }) => {
|
|
5321
|
+
var _a;
|
|
5322
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("slashedZero"));
|
|
5323
|
+
},
|
|
5324
|
+
fields: [
|
|
5325
|
+
{
|
|
5326
|
+
name: "title",
|
|
5327
|
+
type: "string",
|
|
5328
|
+
placeholder: "eg. Slashed Zero",
|
|
5329
|
+
initialValue: "Slashed Zero"
|
|
5330
|
+
},
|
|
5331
|
+
{
|
|
5332
|
+
name: "feature",
|
|
5333
|
+
type: "string",
|
|
5334
|
+
placeholder: "eg. zero",
|
|
5335
|
+
initialValue: "zero"
|
|
5336
|
+
},
|
|
5337
|
+
{
|
|
5338
|
+
title: "Custom Text",
|
|
5339
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5340
|
+
name: "customText",
|
|
5341
|
+
hidden: true,
|
|
5342
|
+
type: "string",
|
|
5343
|
+
initialValue: ""
|
|
5344
|
+
}
|
|
5345
|
+
]
|
|
5346
|
+
},
|
|
5347
|
+
{
|
|
5348
|
+
title: "Small Caps",
|
|
5349
|
+
name: "smallCaps",
|
|
5350
|
+
type: "object",
|
|
5351
|
+
hidden: ({ parent }) => {
|
|
5352
|
+
var _a;
|
|
5353
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("smallCaps"));
|
|
5354
|
+
},
|
|
5355
|
+
fields: [
|
|
5356
|
+
{
|
|
5357
|
+
name: "title",
|
|
5358
|
+
type: "string",
|
|
5359
|
+
placeholder: "eg. smallCaps",
|
|
5360
|
+
initialValue: "Small Caps"
|
|
5361
|
+
},
|
|
5362
|
+
{
|
|
5363
|
+
name: "feature",
|
|
5364
|
+
type: "string",
|
|
5365
|
+
placeholder: "eg. smcp",
|
|
5366
|
+
initialValue: "smcp"
|
|
5367
|
+
},
|
|
5368
|
+
{
|
|
5369
|
+
title: "Custom Text",
|
|
5370
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5371
|
+
name: "customText",
|
|
5372
|
+
hidden: true,
|
|
5373
|
+
type: "string",
|
|
5374
|
+
initialValue: ""
|
|
5375
|
+
}
|
|
5376
|
+
]
|
|
5377
|
+
},
|
|
5378
|
+
{
|
|
5379
|
+
title: "Standard Ligatures",
|
|
5380
|
+
name: "standardLigatures",
|
|
5381
|
+
type: "object",
|
|
5382
|
+
hidden: ({ parent }) => {
|
|
5383
|
+
var _a;
|
|
5384
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("standardLigatures"));
|
|
5385
|
+
},
|
|
5386
|
+
fields: [
|
|
5387
|
+
{
|
|
5388
|
+
name: "title",
|
|
5389
|
+
type: "string",
|
|
5390
|
+
placeholder: "eg. StandardLigatures",
|
|
5391
|
+
initialValue: "StandardLigatures"
|
|
5392
|
+
},
|
|
5393
|
+
{
|
|
5394
|
+
name: "feature",
|
|
5395
|
+
type: "string",
|
|
5396
|
+
placeholder: "eg. liga",
|
|
5397
|
+
initialValue: "liga"
|
|
5398
|
+
},
|
|
5399
|
+
{
|
|
5400
|
+
title: "Custom Text",
|
|
5401
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5402
|
+
name: "customText",
|
|
5403
|
+
hidden: true,
|
|
5404
|
+
type: "string",
|
|
5405
|
+
initialValue: ""
|
|
5406
|
+
}
|
|
5407
|
+
]
|
|
5408
|
+
},
|
|
5409
|
+
{
|
|
5410
|
+
title: "Stylistic Alternates",
|
|
5411
|
+
name: "stylisticAlternates",
|
|
5412
|
+
type: "object",
|
|
5413
|
+
hidden: ({ parent }) => {
|
|
5414
|
+
var _a;
|
|
5415
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticAlternates"));
|
|
5416
|
+
},
|
|
5417
|
+
fields: [
|
|
5418
|
+
{
|
|
5419
|
+
name: "title",
|
|
5420
|
+
type: "string",
|
|
5421
|
+
placeholder: "eg. Stylistic Alternates",
|
|
5422
|
+
initialValue: "Stylistic Alternates"
|
|
5423
|
+
},
|
|
5424
|
+
{
|
|
5425
|
+
name: "feature",
|
|
5426
|
+
type: "string",
|
|
5427
|
+
placeholder: "eg. salt",
|
|
5428
|
+
initialValue: "salt"
|
|
5429
|
+
},
|
|
5430
|
+
{
|
|
5431
|
+
title: "Custom Text",
|
|
5432
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5433
|
+
name: "customText",
|
|
5434
|
+
hidden: true,
|
|
5435
|
+
type: "string",
|
|
5436
|
+
initialValue: ""
|
|
5437
|
+
}
|
|
5438
|
+
]
|
|
5439
|
+
},
|
|
5440
|
+
{
|
|
5441
|
+
title: "Subscript",
|
|
5442
|
+
name: "subscript",
|
|
5443
|
+
type: "object",
|
|
5444
|
+
hidden: ({ parent }) => {
|
|
5445
|
+
var _a;
|
|
5446
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("subscript"));
|
|
5447
|
+
},
|
|
5448
|
+
fields: [
|
|
5449
|
+
{
|
|
5450
|
+
name: "title",
|
|
5451
|
+
type: "string",
|
|
5452
|
+
placeholder: "eg. Subscript",
|
|
5453
|
+
initialValue: "Subscript"
|
|
5454
|
+
},
|
|
5455
|
+
{
|
|
5456
|
+
name: "feature",
|
|
5457
|
+
type: "string",
|
|
5458
|
+
placeholder: "eg. subs",
|
|
5459
|
+
initialValue: "subs"
|
|
5460
|
+
},
|
|
5461
|
+
{
|
|
5462
|
+
title: "Custom Text",
|
|
5463
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5464
|
+
name: "customText",
|
|
5465
|
+
hidden: true,
|
|
5466
|
+
type: "string",
|
|
5467
|
+
initialValue: ""
|
|
5468
|
+
}
|
|
5469
|
+
]
|
|
5470
|
+
},
|
|
5471
|
+
{
|
|
5472
|
+
title: "Superscript",
|
|
5473
|
+
name: "superscript",
|
|
5474
|
+
type: "object",
|
|
5475
|
+
hidden: ({ parent }) => {
|
|
5476
|
+
var _a;
|
|
5477
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("superscript"));
|
|
5478
|
+
},
|
|
5479
|
+
fields: [
|
|
5480
|
+
{
|
|
5481
|
+
name: "title",
|
|
5482
|
+
type: "string",
|
|
5483
|
+
placeholder: "eg. Superscript",
|
|
5484
|
+
initialValue: "Superscript"
|
|
5485
|
+
},
|
|
5486
|
+
{
|
|
5487
|
+
name: "feature",
|
|
5488
|
+
type: "string",
|
|
5489
|
+
placeholder: "eg. sups",
|
|
5490
|
+
initialValue: "sups"
|
|
5491
|
+
},
|
|
5492
|
+
{
|
|
5493
|
+
title: "Custom Text",
|
|
5494
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5495
|
+
name: "customText",
|
|
5496
|
+
hidden: true,
|
|
5497
|
+
type: "string",
|
|
5498
|
+
initialValue: ""
|
|
5499
|
+
}
|
|
5500
|
+
]
|
|
5501
|
+
},
|
|
5502
|
+
{
|
|
5503
|
+
title: "Swash",
|
|
5504
|
+
name: "swash",
|
|
5505
|
+
type: "object",
|
|
5506
|
+
hidden: ({ parent }) => {
|
|
5507
|
+
var _a;
|
|
5508
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("swash"));
|
|
5509
|
+
},
|
|
5510
|
+
fields: [
|
|
5511
|
+
{
|
|
5512
|
+
name: "title",
|
|
5513
|
+
type: "string",
|
|
5514
|
+
placeholder: "eg. Swash",
|
|
5515
|
+
initialValue: "Swash"
|
|
5516
|
+
},
|
|
5517
|
+
{
|
|
5518
|
+
name: "feature",
|
|
5519
|
+
type: "string",
|
|
5520
|
+
placeholder: "eg. swsh",
|
|
5521
|
+
initialValue: "swsh"
|
|
5522
|
+
},
|
|
5523
|
+
{
|
|
5524
|
+
title: "Custom Text",
|
|
5525
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5526
|
+
name: "customText",
|
|
5527
|
+
hidden: true,
|
|
5528
|
+
type: "string",
|
|
5529
|
+
initialValue: ""
|
|
5530
|
+
}
|
|
5531
|
+
]
|
|
5532
|
+
},
|
|
5533
|
+
{
|
|
5534
|
+
title: "Tabular Lining",
|
|
5535
|
+
name: "tabularLining",
|
|
5536
|
+
type: "object",
|
|
5537
|
+
hidden: ({ parent }) => {
|
|
5538
|
+
var _a;
|
|
5539
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("tabularLining"));
|
|
5540
|
+
},
|
|
5541
|
+
fields: [
|
|
5542
|
+
{
|
|
5543
|
+
name: "title",
|
|
5544
|
+
type: "string",
|
|
5545
|
+
placeholder: "eg. Tabular Lining",
|
|
5546
|
+
initialValue: "Tabular Lining"
|
|
5547
|
+
},
|
|
5548
|
+
{
|
|
5549
|
+
name: "feature",
|
|
5550
|
+
type: "string",
|
|
5551
|
+
placeholder: "eg. tnum lnum",
|
|
5552
|
+
initialValue: "tnum lnum"
|
|
5553
|
+
},
|
|
5554
|
+
{
|
|
5555
|
+
title: "Custom Text",
|
|
5556
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5557
|
+
name: "customText",
|
|
5558
|
+
hidden: true,
|
|
5559
|
+
type: "string",
|
|
5560
|
+
initialValue: ""
|
|
5561
|
+
}
|
|
5562
|
+
]
|
|
5563
|
+
},
|
|
5564
|
+
{
|
|
5565
|
+
title: "Tabular Oldstyle",
|
|
5566
|
+
name: "tabularOldstyle",
|
|
5567
|
+
type: "object",
|
|
5568
|
+
hidden: ({ parent }) => {
|
|
5569
|
+
var _a;
|
|
5570
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("tabularOldstyle"));
|
|
5571
|
+
},
|
|
5572
|
+
fields: [
|
|
5573
|
+
{
|
|
5574
|
+
name: "title",
|
|
5575
|
+
type: "string",
|
|
5576
|
+
placeholder: "eg. Tabular Oldstyle",
|
|
5577
|
+
initialValue: "Tabular Oldstyle"
|
|
5578
|
+
},
|
|
5579
|
+
{
|
|
5580
|
+
name: "feature",
|
|
5581
|
+
type: "string",
|
|
5582
|
+
placeholder: "eg. tnum onum",
|
|
5583
|
+
initialValue: "tnum onum"
|
|
5584
|
+
},
|
|
5585
|
+
{
|
|
5586
|
+
title: "Custom Text",
|
|
5587
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5588
|
+
name: "customText",
|
|
5589
|
+
hidden: true,
|
|
5590
|
+
type: "string",
|
|
5591
|
+
initialValue: ""
|
|
5592
|
+
}
|
|
5593
|
+
]
|
|
5594
|
+
},
|
|
5595
|
+
{
|
|
5596
|
+
title: "Terminal Form",
|
|
5597
|
+
name: "terminalForm",
|
|
5598
|
+
type: "object",
|
|
5599
|
+
hidden: ({ parent }) => {
|
|
5600
|
+
var _a;
|
|
5601
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("terminalForm"));
|
|
5602
|
+
},
|
|
5603
|
+
fields: [
|
|
5604
|
+
{
|
|
5605
|
+
name: "title",
|
|
5606
|
+
type: "string",
|
|
5607
|
+
placeholder: "eg. Terminal Form",
|
|
5608
|
+
initialValue: "Terminal Form"
|
|
5609
|
+
},
|
|
5610
|
+
{
|
|
5611
|
+
name: "feature",
|
|
5612
|
+
type: "string",
|
|
5613
|
+
placeholder: "eg. fina",
|
|
5614
|
+
initialValue: "fina"
|
|
5615
|
+
},
|
|
5616
|
+
{
|
|
5617
|
+
title: "Custom Text",
|
|
5618
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5619
|
+
name: "customText",
|
|
5620
|
+
hidden: true,
|
|
5621
|
+
type: "string",
|
|
5622
|
+
initialValue: ""
|
|
5623
|
+
}
|
|
5624
|
+
]
|
|
5625
|
+
},
|
|
5626
|
+
{
|
|
5627
|
+
title: "Titling Alternates",
|
|
5628
|
+
name: "titlingAlternates",
|
|
5629
|
+
type: "object",
|
|
5630
|
+
hidden: ({ parent }) => {
|
|
5631
|
+
var _a;
|
|
5632
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("titlingAlternates"));
|
|
5633
|
+
},
|
|
5634
|
+
fields: [
|
|
5635
|
+
{
|
|
5636
|
+
name: "title",
|
|
5637
|
+
type: "string",
|
|
5638
|
+
placeholder: "eg. Titling Alternates",
|
|
5639
|
+
initialValue: "Titling Alternates"
|
|
5640
|
+
},
|
|
5641
|
+
{
|
|
5642
|
+
name: "feature",
|
|
5643
|
+
type: "string",
|
|
5644
|
+
placeholder: "eg. titl",
|
|
5645
|
+
initialValue: "titl"
|
|
5646
|
+
},
|
|
5647
|
+
{
|
|
5648
|
+
title: "Custom Text",
|
|
5649
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5650
|
+
name: "customText",
|
|
5651
|
+
hidden: true,
|
|
5652
|
+
type: "string",
|
|
5653
|
+
initialValue: ""
|
|
5654
|
+
}
|
|
5655
|
+
]
|
|
5656
|
+
},
|
|
5657
|
+
{
|
|
5658
|
+
title: "Unicase",
|
|
5659
|
+
name: "unicase",
|
|
5660
|
+
type: "object",
|
|
5661
|
+
hidden: ({ parent }) => {
|
|
5662
|
+
var _a;
|
|
5663
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("unicase"));
|
|
5664
|
+
},
|
|
5665
|
+
fields: [
|
|
5666
|
+
{
|
|
5667
|
+
name: "title",
|
|
5668
|
+
type: "string",
|
|
5669
|
+
placeholder: "eg. Unicase",
|
|
5670
|
+
initialValue: "Unicase"
|
|
5671
|
+
},
|
|
5672
|
+
{
|
|
5673
|
+
name: "feature",
|
|
5674
|
+
type: "string",
|
|
5675
|
+
placeholder: "eg. unic",
|
|
5676
|
+
initialValue: "unic"
|
|
5677
|
+
},
|
|
5678
|
+
{
|
|
5679
|
+
title: "Custom Text",
|
|
5680
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5681
|
+
name: "customText",
|
|
5682
|
+
hidden: true,
|
|
5683
|
+
type: "string",
|
|
5684
|
+
initialValue: ""
|
|
5685
|
+
}
|
|
5686
|
+
]
|
|
5687
|
+
},
|
|
5688
|
+
{
|
|
5689
|
+
title: "All Stylistic Sets",
|
|
5690
|
+
name: "allStylisticSets",
|
|
5691
|
+
type: "object",
|
|
5692
|
+
hidden: ({ parent }) => {
|
|
5693
|
+
var _a;
|
|
5694
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("allStylisticSets"));
|
|
5695
|
+
},
|
|
5696
|
+
fields: [
|
|
5697
|
+
{
|
|
5698
|
+
name: "title",
|
|
5699
|
+
type: "string",
|
|
5700
|
+
placeholder: "eg. All Stylistic Sets",
|
|
5701
|
+
initialValue: "All Stylistic Sets"
|
|
5702
|
+
},
|
|
5703
|
+
{
|
|
5704
|
+
name: "feature",
|
|
5705
|
+
type: "string",
|
|
5706
|
+
placeholder: "eg. ss01 ss02 ss03 ss04 ss05 ss06 ss07 ss08 ss09 ss10 ss11 ss12 ss13 ss14 ss15 ss16 ss17 ss18 ss19 ss20",
|
|
5707
|
+
initialValue: "ss01 ss02 ss03 ss04 ss05 ss06 ss07 ss08 ss09 ss10 ss11 ss12 ss13 ss14 ss15 ss16 ss17 ss18 ss19 ss20"
|
|
5708
|
+
},
|
|
5709
|
+
{
|
|
5710
|
+
title: "Custom Text",
|
|
5711
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5712
|
+
name: "customText",
|
|
5713
|
+
hidden: true,
|
|
5714
|
+
type: "string",
|
|
5715
|
+
initialValue: ""
|
|
5716
|
+
}
|
|
5717
|
+
]
|
|
5718
|
+
},
|
|
5719
|
+
{
|
|
5720
|
+
title: "Stylistic Set 1",
|
|
5721
|
+
name: "stylisticSet1",
|
|
5722
|
+
type: "object",
|
|
5723
|
+
hidden: ({ parent }) => {
|
|
5724
|
+
var _a;
|
|
5725
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet1"));
|
|
5726
|
+
},
|
|
5727
|
+
fields: [
|
|
5728
|
+
{
|
|
5729
|
+
name: "title",
|
|
5730
|
+
type: "string",
|
|
5731
|
+
placeholder: "eg. Stylistic Set 1",
|
|
5732
|
+
initialValue: "Stylistic Set 1"
|
|
5733
|
+
},
|
|
5734
|
+
{
|
|
5735
|
+
name: "feature",
|
|
5736
|
+
type: "string",
|
|
5737
|
+
placeholder: "eg. ss01",
|
|
5738
|
+
initialValue: "ss01"
|
|
5739
|
+
},
|
|
5740
|
+
{
|
|
5741
|
+
title: "Custom Text",
|
|
5742
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5743
|
+
name: "customText",
|
|
5744
|
+
hidden: true,
|
|
5745
|
+
type: "string",
|
|
5746
|
+
initialValue: ""
|
|
5747
|
+
}
|
|
5748
|
+
]
|
|
5749
|
+
},
|
|
5750
|
+
{
|
|
5751
|
+
title: "Stylistic Set 2",
|
|
5752
|
+
name: "stylisticSet2",
|
|
5753
|
+
type: "object",
|
|
5754
|
+
hidden: ({ parent }) => {
|
|
5755
|
+
var _a;
|
|
5756
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet2"));
|
|
5757
|
+
},
|
|
5758
|
+
fields: [
|
|
5759
|
+
{
|
|
5760
|
+
name: "title",
|
|
5761
|
+
type: "string",
|
|
5762
|
+
placeholder: "eg. Stylistic Set 2",
|
|
5763
|
+
initialValue: "Stylistic Set 2"
|
|
5764
|
+
},
|
|
5765
|
+
{
|
|
5766
|
+
name: "feature",
|
|
5767
|
+
type: "string",
|
|
5768
|
+
placeholder: "eg. ss02",
|
|
5769
|
+
initialValue: "ss02"
|
|
5770
|
+
},
|
|
5771
|
+
{
|
|
5772
|
+
title: "Custom Text",
|
|
5773
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5774
|
+
name: "customText",
|
|
5775
|
+
hidden: true,
|
|
5776
|
+
type: "string",
|
|
5777
|
+
initialValue: ""
|
|
5778
|
+
}
|
|
5779
|
+
]
|
|
5780
|
+
},
|
|
5781
|
+
{
|
|
5782
|
+
title: "Stylistic Set 3",
|
|
5783
|
+
name: "stylisticSet3",
|
|
5784
|
+
type: "object",
|
|
5785
|
+
hidden: ({ parent }) => {
|
|
5786
|
+
var _a;
|
|
5787
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet3"));
|
|
5788
|
+
},
|
|
5789
|
+
fields: [
|
|
5790
|
+
{
|
|
5791
|
+
name: "title",
|
|
5792
|
+
type: "string",
|
|
5793
|
+
placeholder: "eg. Stylistic Set 3",
|
|
5794
|
+
initialValue: "Stylistic Set 3"
|
|
5795
|
+
},
|
|
5796
|
+
{
|
|
5797
|
+
name: "feature",
|
|
5798
|
+
type: "string",
|
|
5799
|
+
placeholder: "eg. ss03",
|
|
5800
|
+
initialValue: "ss03"
|
|
5801
|
+
},
|
|
5802
|
+
{
|
|
5803
|
+
title: "Custom Text",
|
|
5804
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5805
|
+
name: "customText",
|
|
5806
|
+
hidden: true,
|
|
5807
|
+
type: "string",
|
|
5808
|
+
initialValue: ""
|
|
5809
|
+
}
|
|
5810
|
+
]
|
|
5811
|
+
},
|
|
5812
|
+
{
|
|
5813
|
+
title: "Stylistic Set 4",
|
|
5814
|
+
name: "stylisticSet4",
|
|
5815
|
+
type: "object",
|
|
5816
|
+
hidden: ({ parent }) => {
|
|
5817
|
+
var _a;
|
|
5818
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet4"));
|
|
5819
|
+
},
|
|
5820
|
+
fields: [
|
|
5821
|
+
{
|
|
5822
|
+
name: "title",
|
|
5823
|
+
type: "string",
|
|
5824
|
+
placeholder: "eg. Stylistic Set 4",
|
|
5825
|
+
initialValue: "Stylistic Set 4"
|
|
5826
|
+
},
|
|
5827
|
+
{
|
|
5828
|
+
name: "feature",
|
|
5829
|
+
type: "string",
|
|
5830
|
+
placeholder: "eg. ss04",
|
|
5831
|
+
initialValue: "ss04"
|
|
5832
|
+
},
|
|
5833
|
+
{
|
|
5834
|
+
title: "Custom Text",
|
|
5835
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5836
|
+
name: "customText",
|
|
5837
|
+
hidden: true,
|
|
5838
|
+
type: "string",
|
|
5839
|
+
initialValue: ""
|
|
5840
|
+
}
|
|
5841
|
+
]
|
|
5842
|
+
},
|
|
5843
|
+
{
|
|
5844
|
+
title: "Stylistic Set 5",
|
|
5845
|
+
name: "stylisticSet5",
|
|
5846
|
+
type: "object",
|
|
5847
|
+
hidden: ({ parent }) => {
|
|
5848
|
+
var _a;
|
|
5849
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet5"));
|
|
5850
|
+
},
|
|
5851
|
+
fields: [
|
|
5852
|
+
{
|
|
5853
|
+
name: "title",
|
|
5854
|
+
type: "string",
|
|
5855
|
+
placeholder: "eg. Stylistic Set 5",
|
|
5856
|
+
initialValue: "Stylistic Set 5"
|
|
5857
|
+
},
|
|
5858
|
+
{
|
|
5859
|
+
name: "feature",
|
|
5860
|
+
type: "string",
|
|
5861
|
+
placeholder: "eg. ss05",
|
|
5862
|
+
initialValue: "ss05"
|
|
5863
|
+
},
|
|
5864
|
+
{
|
|
5865
|
+
title: "Custom Text",
|
|
5866
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5867
|
+
name: "customText",
|
|
5868
|
+
hidden: true,
|
|
5869
|
+
type: "string",
|
|
5870
|
+
initialValue: ""
|
|
5871
|
+
}
|
|
5872
|
+
]
|
|
5873
|
+
},
|
|
5874
|
+
{
|
|
5875
|
+
title: "Stylistic Set 6",
|
|
5876
|
+
name: "stylisticSet6",
|
|
5877
|
+
type: "object",
|
|
5878
|
+
hidden: ({ parent }) => {
|
|
5879
|
+
var _a;
|
|
5880
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet6"));
|
|
5881
|
+
},
|
|
5882
|
+
fields: [
|
|
5883
|
+
{
|
|
5884
|
+
name: "title",
|
|
5885
|
+
type: "string",
|
|
5886
|
+
placeholder: "eg. Stylistic Set 6",
|
|
5887
|
+
initialValue: "Stylistic Set 6"
|
|
5888
|
+
},
|
|
5889
|
+
{
|
|
5890
|
+
name: "feature",
|
|
5891
|
+
type: "string",
|
|
5892
|
+
placeholder: "eg. ss06",
|
|
5893
|
+
initialValue: "ss06"
|
|
5894
|
+
},
|
|
5895
|
+
{
|
|
5896
|
+
title: "Custom Text",
|
|
5897
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5898
|
+
name: "customText",
|
|
5899
|
+
hidden: true,
|
|
5900
|
+
type: "string",
|
|
5901
|
+
initialValue: ""
|
|
5902
|
+
}
|
|
5903
|
+
]
|
|
5904
|
+
},
|
|
5905
|
+
{
|
|
5906
|
+
title: "Stylistic Set 7",
|
|
5907
|
+
name: "stylisticSet7",
|
|
5908
|
+
type: "object",
|
|
5909
|
+
hidden: ({ parent }) => {
|
|
5910
|
+
var _a;
|
|
5911
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet7"));
|
|
5912
|
+
},
|
|
5913
|
+
fields: [
|
|
5914
|
+
{
|
|
5915
|
+
name: "title",
|
|
5916
|
+
type: "string",
|
|
5917
|
+
placeholder: "eg. Stylistic Set 7",
|
|
5918
|
+
initialValue: "Stylistic Set 7"
|
|
5919
|
+
},
|
|
5920
|
+
{
|
|
5921
|
+
name: "feature",
|
|
5922
|
+
type: "string",
|
|
5923
|
+
placeholder: "eg. ss07",
|
|
5924
|
+
initialValue: "ss07"
|
|
5925
|
+
},
|
|
5926
|
+
{
|
|
5927
|
+
title: "Custom Text",
|
|
5928
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5929
|
+
name: "customText",
|
|
5930
|
+
hidden: true,
|
|
5931
|
+
type: "string",
|
|
5932
|
+
initialValue: ""
|
|
5933
|
+
}
|
|
5934
|
+
]
|
|
5935
|
+
},
|
|
5936
|
+
{
|
|
5937
|
+
title: "Stylistic Set 8",
|
|
5938
|
+
name: "stylisticSet8",
|
|
5939
|
+
type: "object",
|
|
5940
|
+
hidden: ({ parent }) => {
|
|
5941
|
+
var _a;
|
|
5942
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet8"));
|
|
5943
|
+
},
|
|
5944
|
+
fields: [
|
|
5945
|
+
{
|
|
5946
|
+
name: "title",
|
|
5947
|
+
type: "string",
|
|
5948
|
+
placeholder: "eg. Stylistic Set 8",
|
|
5949
|
+
initialValue: "Stylistic Set 8"
|
|
5950
|
+
},
|
|
5951
|
+
{
|
|
5952
|
+
name: "feature",
|
|
5953
|
+
type: "string",
|
|
5954
|
+
placeholder: "eg. ss08",
|
|
5955
|
+
initialValue: "ss08"
|
|
5956
|
+
},
|
|
5957
|
+
{
|
|
5958
|
+
title: "Custom Text",
|
|
5959
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5960
|
+
name: "customText",
|
|
5961
|
+
hidden: true,
|
|
5962
|
+
type: "string",
|
|
5963
|
+
initialValue: ""
|
|
5964
|
+
}
|
|
5965
|
+
]
|
|
5966
|
+
},
|
|
5967
|
+
{
|
|
5968
|
+
title: "Stylistic Set 9",
|
|
5969
|
+
name: "stylisticSet9",
|
|
5970
|
+
type: "object",
|
|
5971
|
+
hidden: ({ parent }) => {
|
|
5972
|
+
var _a;
|
|
5973
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet9"));
|
|
5974
|
+
},
|
|
5975
|
+
fields: [
|
|
5976
|
+
{
|
|
5977
|
+
name: "title",
|
|
5978
|
+
type: "string",
|
|
5979
|
+
placeholder: "eg. Stylistic Set 9",
|
|
5980
|
+
initialValue: "Stylistic Set 9"
|
|
5981
|
+
},
|
|
5982
|
+
{
|
|
5983
|
+
name: "feature",
|
|
5984
|
+
type: "string",
|
|
5985
|
+
placeholder: "eg. ss09",
|
|
5986
|
+
initialValue: "ss09"
|
|
5987
|
+
},
|
|
5988
|
+
{
|
|
5989
|
+
title: "Custom Text",
|
|
5990
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
5991
|
+
name: "customText",
|
|
5992
|
+
hidden: true,
|
|
5993
|
+
type: "string",
|
|
5994
|
+
initialValue: ""
|
|
5995
|
+
}
|
|
5996
|
+
]
|
|
5997
|
+
},
|
|
5998
|
+
{
|
|
5999
|
+
title: "Stylistic Set 10",
|
|
6000
|
+
name: "stylisticSet10",
|
|
6001
|
+
type: "object",
|
|
6002
|
+
hidden: ({ parent }) => {
|
|
6003
|
+
var _a;
|
|
6004
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet10"));
|
|
6005
|
+
},
|
|
6006
|
+
fields: [
|
|
6007
|
+
{
|
|
6008
|
+
name: "title",
|
|
6009
|
+
type: "string",
|
|
6010
|
+
placeholder: "eg. Stylistic Set10",
|
|
6011
|
+
initialValue: "Stylistic Set10"
|
|
6012
|
+
},
|
|
6013
|
+
{
|
|
6014
|
+
name: "feature",
|
|
6015
|
+
type: "string",
|
|
6016
|
+
placeholder: "eg. ss10",
|
|
6017
|
+
initialValue: "ss10"
|
|
6018
|
+
},
|
|
6019
|
+
{
|
|
6020
|
+
title: "Custom Text",
|
|
6021
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6022
|
+
name: "customText",
|
|
6023
|
+
hidden: true,
|
|
6024
|
+
type: "string",
|
|
6025
|
+
initialValue: ""
|
|
6026
|
+
}
|
|
6027
|
+
]
|
|
6028
|
+
},
|
|
6029
|
+
{
|
|
6030
|
+
title: "Stylistic Set 11",
|
|
6031
|
+
name: "stylisticSet11",
|
|
6032
|
+
type: "object",
|
|
6033
|
+
hidden: ({ parent }) => {
|
|
6034
|
+
var _a;
|
|
6035
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet11"));
|
|
6036
|
+
},
|
|
6037
|
+
fields: [
|
|
6038
|
+
{
|
|
6039
|
+
name: "title",
|
|
6040
|
+
type: "string",
|
|
6041
|
+
placeholder: "eg. Stylistic Set 11",
|
|
6042
|
+
initialValue: "Stylistic Set 11"
|
|
6043
|
+
},
|
|
6044
|
+
{
|
|
6045
|
+
name: "feature",
|
|
6046
|
+
type: "string",
|
|
6047
|
+
placeholder: "eg. ss11",
|
|
6048
|
+
initialValue: "ss11"
|
|
6049
|
+
},
|
|
6050
|
+
{
|
|
6051
|
+
title: "Custom Text",
|
|
6052
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6053
|
+
name: "customText",
|
|
6054
|
+
hidden: true,
|
|
6055
|
+
type: "string",
|
|
6056
|
+
initialValue: ""
|
|
6057
|
+
}
|
|
6058
|
+
]
|
|
6059
|
+
},
|
|
6060
|
+
{
|
|
6061
|
+
title: "Stylistic Set 12",
|
|
6062
|
+
name: "stylisticSet12",
|
|
6063
|
+
type: "object",
|
|
6064
|
+
hidden: ({ parent }) => {
|
|
6065
|
+
var _a;
|
|
6066
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet12"));
|
|
6067
|
+
},
|
|
6068
|
+
fields: [
|
|
6069
|
+
{
|
|
6070
|
+
name: "title",
|
|
6071
|
+
type: "string",
|
|
6072
|
+
placeholder: "eg. Stylistic Set 12",
|
|
6073
|
+
initialValue: "Stylistic Set 12"
|
|
6074
|
+
},
|
|
6075
|
+
{
|
|
6076
|
+
name: "feature",
|
|
6077
|
+
type: "string",
|
|
6078
|
+
placeholder: "eg. ss12",
|
|
6079
|
+
initialValue: "ss12"
|
|
6080
|
+
},
|
|
6081
|
+
{
|
|
6082
|
+
title: "Custom Text",
|
|
6083
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6084
|
+
name: "customText",
|
|
6085
|
+
hidden: true,
|
|
6086
|
+
type: "string",
|
|
6087
|
+
initialValue: ""
|
|
6088
|
+
}
|
|
6089
|
+
]
|
|
6090
|
+
},
|
|
6091
|
+
{
|
|
6092
|
+
title: "Stylistic Set 13",
|
|
6093
|
+
name: "stylisticSet13",
|
|
6094
|
+
type: "object",
|
|
6095
|
+
hidden: ({ parent }) => {
|
|
6096
|
+
var _a;
|
|
6097
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet13"));
|
|
6098
|
+
},
|
|
6099
|
+
fields: [
|
|
6100
|
+
{
|
|
6101
|
+
name: "title",
|
|
6102
|
+
type: "string",
|
|
6103
|
+
placeholder: "eg. Stylistic Set 13",
|
|
6104
|
+
initialValue: "Stylistic Set 13"
|
|
6105
|
+
},
|
|
6106
|
+
{
|
|
6107
|
+
name: "feature",
|
|
6108
|
+
type: "string",
|
|
6109
|
+
placeholder: "eg. ss13",
|
|
6110
|
+
initialValue: "ss13"
|
|
6111
|
+
},
|
|
6112
|
+
{
|
|
6113
|
+
title: "Custom Text",
|
|
6114
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6115
|
+
name: "customText",
|
|
6116
|
+
hidden: true,
|
|
6117
|
+
type: "string",
|
|
6118
|
+
initialValue: ""
|
|
6119
|
+
}
|
|
6120
|
+
]
|
|
6121
|
+
},
|
|
6122
|
+
{
|
|
6123
|
+
title: "Stylistic Set 14",
|
|
6124
|
+
name: "stylisticSet14",
|
|
6125
|
+
type: "object",
|
|
6126
|
+
hidden: ({ parent }) => {
|
|
6127
|
+
var _a;
|
|
6128
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet14"));
|
|
6129
|
+
},
|
|
6130
|
+
fields: [
|
|
6131
|
+
{
|
|
6132
|
+
name: "title",
|
|
6133
|
+
type: "string",
|
|
6134
|
+
placeholder: "eg. Stylistic Set 14",
|
|
6135
|
+
initialValue: "Stylistic Set 14"
|
|
6136
|
+
},
|
|
6137
|
+
{
|
|
6138
|
+
name: "feature",
|
|
6139
|
+
type: "string",
|
|
6140
|
+
placeholder: "eg. ss14",
|
|
6141
|
+
initialValue: "ss14"
|
|
6142
|
+
},
|
|
6143
|
+
{
|
|
6144
|
+
title: "Custom Text",
|
|
6145
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6146
|
+
name: "customText",
|
|
6147
|
+
hidden: true,
|
|
6148
|
+
type: "string",
|
|
6149
|
+
initialValue: ""
|
|
6150
|
+
}
|
|
6151
|
+
]
|
|
6152
|
+
},
|
|
6153
|
+
{
|
|
6154
|
+
title: "Stylistic Set 15",
|
|
6155
|
+
name: "stylisticSet15",
|
|
6156
|
+
type: "object",
|
|
6157
|
+
hidden: ({ parent }) => {
|
|
6158
|
+
var _a;
|
|
6159
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet15"));
|
|
6160
|
+
},
|
|
6161
|
+
fields: [
|
|
6162
|
+
{
|
|
6163
|
+
name: "title",
|
|
6164
|
+
type: "string",
|
|
6165
|
+
placeholder: "eg. Stylistic Set 15",
|
|
6166
|
+
initialValue: "Stylistic Set 15"
|
|
6167
|
+
},
|
|
6168
|
+
{
|
|
6169
|
+
name: "feature",
|
|
6170
|
+
type: "string",
|
|
6171
|
+
placeholder: "eg. ss15",
|
|
6172
|
+
initialValue: "ss15"
|
|
6173
|
+
},
|
|
6174
|
+
{
|
|
6175
|
+
title: "Custom Text",
|
|
6176
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6177
|
+
name: "customText",
|
|
6178
|
+
hidden: true,
|
|
6179
|
+
type: "string",
|
|
6180
|
+
initialValue: ""
|
|
6181
|
+
}
|
|
6182
|
+
]
|
|
6183
|
+
},
|
|
6184
|
+
{
|
|
6185
|
+
title: "Stylistic Set 16",
|
|
6186
|
+
name: "stylisticSet16",
|
|
6187
|
+
type: "object",
|
|
6188
|
+
hidden: ({ parent }) => {
|
|
6189
|
+
var _a;
|
|
6190
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet16"));
|
|
6191
|
+
},
|
|
6192
|
+
fields: [
|
|
6193
|
+
{
|
|
6194
|
+
name: "title",
|
|
6195
|
+
type: "string",
|
|
6196
|
+
placeholder: "eg. Stylistic Set 16",
|
|
6197
|
+
initialValue: "Stylistic Set 16"
|
|
6198
|
+
},
|
|
6199
|
+
{
|
|
6200
|
+
name: "feature",
|
|
6201
|
+
type: "string",
|
|
6202
|
+
placeholder: "eg. ss16",
|
|
6203
|
+
initialValue: "ss16"
|
|
6204
|
+
},
|
|
6205
|
+
{
|
|
6206
|
+
title: "Custom Text",
|
|
6207
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6208
|
+
name: "customText",
|
|
6209
|
+
hidden: true,
|
|
6210
|
+
type: "string",
|
|
6211
|
+
initialValue: ""
|
|
6212
|
+
}
|
|
6213
|
+
]
|
|
6214
|
+
},
|
|
6215
|
+
{
|
|
6216
|
+
title: "Stylistic Set 17",
|
|
6217
|
+
name: "stylisticSet17",
|
|
6218
|
+
type: "object",
|
|
6219
|
+
hidden: ({ parent }) => {
|
|
6220
|
+
var _a;
|
|
6221
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet17"));
|
|
6222
|
+
},
|
|
6223
|
+
fields: [
|
|
6224
|
+
{
|
|
6225
|
+
name: "title",
|
|
6226
|
+
type: "string",
|
|
6227
|
+
placeholder: "eg. Stylistic Set 17",
|
|
6228
|
+
initialValue: "Stylistic Set 17"
|
|
6229
|
+
},
|
|
6230
|
+
{
|
|
6231
|
+
name: "feature",
|
|
6232
|
+
type: "string",
|
|
6233
|
+
placeholder: "eg. ss17",
|
|
6234
|
+
initialValue: "ss17"
|
|
6235
|
+
},
|
|
6236
|
+
{
|
|
6237
|
+
title: "Custom Text",
|
|
6238
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6239
|
+
name: "customText",
|
|
6240
|
+
hidden: true,
|
|
6241
|
+
type: "string",
|
|
6242
|
+
initialValue: ""
|
|
6243
|
+
}
|
|
6244
|
+
]
|
|
6245
|
+
},
|
|
6246
|
+
{
|
|
6247
|
+
title: "Stylistic Set 18",
|
|
6248
|
+
name: "stylisticSet18",
|
|
6249
|
+
type: "object",
|
|
6250
|
+
hidden: ({ parent }) => {
|
|
6251
|
+
var _a;
|
|
6252
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet18"));
|
|
6253
|
+
},
|
|
6254
|
+
fields: [
|
|
6255
|
+
{
|
|
6256
|
+
name: "title",
|
|
6257
|
+
type: "string",
|
|
6258
|
+
placeholder: "eg. Stylistic Set 18",
|
|
6259
|
+
initialValue: "Stylistic Set 18"
|
|
6260
|
+
},
|
|
6261
|
+
{
|
|
6262
|
+
name: "feature",
|
|
6263
|
+
type: "string",
|
|
6264
|
+
placeholder: "eg. ss18",
|
|
6265
|
+
initialValue: "ss18"
|
|
6266
|
+
},
|
|
6267
|
+
{
|
|
6268
|
+
title: "Custom Text",
|
|
6269
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6270
|
+
name: "customText",
|
|
6271
|
+
hidden: true,
|
|
6272
|
+
type: "string",
|
|
6273
|
+
initialValue: ""
|
|
6274
|
+
}
|
|
6275
|
+
]
|
|
6276
|
+
},
|
|
6277
|
+
{
|
|
6278
|
+
title: "Stylistic Set 19",
|
|
6279
|
+
name: "stylisticSet19",
|
|
6280
|
+
type: "object",
|
|
6281
|
+
hidden: ({ parent }) => {
|
|
6282
|
+
var _a;
|
|
6283
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet19"));
|
|
6284
|
+
},
|
|
6285
|
+
fields: [
|
|
6286
|
+
{
|
|
6287
|
+
name: "title",
|
|
6288
|
+
type: "string",
|
|
6289
|
+
placeholder: "eg. Stylistic Set 19",
|
|
6290
|
+
initialValue: "Stylistic Set 19"
|
|
6291
|
+
},
|
|
6292
|
+
{
|
|
6293
|
+
name: "feature",
|
|
6294
|
+
type: "string",
|
|
6295
|
+
placeholder: "eg. ss19",
|
|
6296
|
+
initialValue: "ss19"
|
|
6297
|
+
},
|
|
6298
|
+
{
|
|
6299
|
+
title: "Custom Text",
|
|
6300
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6301
|
+
name: "customText",
|
|
6302
|
+
hidden: true,
|
|
6303
|
+
type: "string",
|
|
6304
|
+
initialValue: ""
|
|
6305
|
+
}
|
|
6306
|
+
]
|
|
6307
|
+
},
|
|
6308
|
+
{
|
|
6309
|
+
title: "Stylistic Set 20",
|
|
6310
|
+
name: "stylisticSet20",
|
|
6311
|
+
type: "object",
|
|
6312
|
+
hidden: ({ parent }) => {
|
|
6313
|
+
var _a;
|
|
6314
|
+
return !((_a = parent == null ? void 0 : parent.features) == null ? void 0 : _a.includes("stylisticSet20"));
|
|
6315
|
+
},
|
|
6316
|
+
fields: [
|
|
6317
|
+
{
|
|
6318
|
+
name: "title",
|
|
6319
|
+
type: "string",
|
|
6320
|
+
placeholder: "eg. Stylistic Set 20",
|
|
6321
|
+
initialValue: "Stylistic Set 20"
|
|
6322
|
+
},
|
|
6323
|
+
{
|
|
6324
|
+
name: "feature",
|
|
6325
|
+
type: "string",
|
|
6326
|
+
placeholder: "eg. ss20",
|
|
6327
|
+
initialValue: "ss20"
|
|
6328
|
+
},
|
|
6329
|
+
{
|
|
6330
|
+
title: "Custom Text",
|
|
6331
|
+
description: "Use the field below to input a word to highlight the feature.",
|
|
6332
|
+
name: "customText",
|
|
6333
|
+
hidden: true,
|
|
6334
|
+
type: "string",
|
|
6335
|
+
initialValue: ""
|
|
6336
|
+
}
|
|
6337
|
+
]
|
|
6338
|
+
}
|
|
6339
|
+
]
|
|
6340
|
+
};
|
|
6341
|
+
|
|
6342
|
+
// src/schema/styleCountField.js
|
|
6343
|
+
var styleCountField = {
|
|
6344
|
+
name: "styleCount",
|
|
6345
|
+
type: "number",
|
|
6346
|
+
group: "styles",
|
|
6347
|
+
components: {
|
|
6348
|
+
input: StyleCountInput
|
|
6349
|
+
},
|
|
6350
|
+
readOnly: true
|
|
6351
|
+
};
|
|
4121
6352
|
// Annotate the CommonJS export names for ESM import in node:
|
|
4122
6353
|
0 && (module.exports = {
|
|
4123
6354
|
BatchUploadFonts,
|
|
@@ -4131,8 +6362,10 @@ var readFontFile2 = (file) => {
|
|
|
4131
6362
|
RegenerateSubfamiliesComponent,
|
|
4132
6363
|
SCRIPTS,
|
|
4133
6364
|
SCRIPTS_OBJECT,
|
|
6365
|
+
SetOTF,
|
|
4134
6366
|
SingleUploaderTool,
|
|
4135
6367
|
StatusDisplay,
|
|
6368
|
+
StyleCountInput,
|
|
4136
6369
|
UpdateScriptsComponent,
|
|
4137
6370
|
UploadButton,
|
|
4138
6371
|
UploadScriptsComponent,
|
|
@@ -4152,6 +6385,7 @@ var readFontFile2 = (file) => {
|
|
|
4152
6385
|
generateSubset,
|
|
4153
6386
|
getEmptyFontKit,
|
|
4154
6387
|
logFontInfo,
|
|
6388
|
+
openTypeField,
|
|
4155
6389
|
parseVariableFontInstances,
|
|
4156
6390
|
processFontFiles,
|
|
4157
6391
|
processItalicKeywords,
|
|
@@ -4162,6 +6396,7 @@ var readFontFile2 = (file) => {
|
|
|
4162
6396
|
reverseSpellingLookup,
|
|
4163
6397
|
sanitizeForSanityId,
|
|
4164
6398
|
sortFontObjects,
|
|
6399
|
+
styleCountField,
|
|
4165
6400
|
updateFontPrices,
|
|
4166
6401
|
updateTypefaceDocument,
|
|
4167
6402
|
uploadFontFiles,
|