@tinacms/schema-tools 2.1.0 → 2.2.0
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/types/index.d.ts +1 -0
- package/package.json +1 -1
package/dist/types/index.d.ts
CHANGED
|
@@ -179,6 +179,7 @@ export type StringField = (FieldGeneric<string, undefined> | FieldGeneric<string
|
|
|
179
179
|
isTitle?: boolean;
|
|
180
180
|
isBody?: boolean;
|
|
181
181
|
options?: Option[];
|
|
182
|
+
width?: 'full' | 'half';
|
|
182
183
|
};
|
|
183
184
|
export type NumberField = (FieldGeneric<number, undefined> | FieldGeneric<number, true> | FieldGeneric<number, false>) & BaseField & {
|
|
184
185
|
type: 'number';
|