Skip to content

Commit

Permalink
update build (latest typescript changed the output to include a comment)
Browse files Browse the repository at this point in the history
  • Loading branch information
trusktr committed Sep 17, 2024
1 parent 6d4f77a commit d772f49
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions dist/VisualFormat.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,9 +73,9 @@ declare class VisualFormat {
* @return {Object} meta-info
*/
static parseMetaInfo(visualFormat: any, options?: any): {
viewport?: Record<string, any> | undefined;
widths?: Record<string, any> | undefined;
heights?: Record<string, any> | undefined;
viewport?: Record<string, any>;
widths?: Record<string, any>;
heights?: Record<string, any>;
spacing?: any;
};
}
Expand Down
2 changes: 1 addition & 1 deletion dist/VisualFormat.d.ts.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/VisualFormat.js
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ function _processProportionalSpacer(context, stackView) {
view1: name,
attr1: context.horizontal ? Attribute.WIDTH : Attribute.HEIGHT,
relation: context.relation.relation || Relation.EQU,
view2: context.relation.view,
view2: context.relation.view, // or relative to the stackView... food for thought
attr2: context.horizontal ? Attribute.WIDTH : Attribute.HEIGHT,
priority: context.relation.priority,
multiplier: context.relation.multiplier,
Expand Down

0 comments on commit d772f49

Please sign in to comment.