@lbaz/tetr 0.0.83 → 0.0.84

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.
@@ -15,12 +15,12 @@ export interface ItemDefinition {
15
15
  type: DefinitionType;
16
16
  defaultValue: string;
17
17
  possibleVariants?: Array<PossibleVariant>;
18
+ meta?: DataDefinitionMetaInfo;
18
19
  }
19
20
  export interface DataDefinition {
20
21
  type: DataType;
21
22
  defaultValue?: unknown;
22
23
  definitions: Data<ItemDefinition>;
23
- meta?: DataDefinitionMetaInfo;
24
24
  }
25
25
  export type PossibleDataPayload<T = any> = Data<T> | Array<Data<T>>;
26
26
  export interface CommonEditableBlockWrapStyles {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lbaz/tetr",
3
- "version": "0.0.83",
3
+ "version": "0.0.84",
4
4
  "description": "Template transpiler",
5
5
  "main": "dist/cjs/index.cjs",
6
6
  "module": "dist/esm/index.js",