Skip to content

Commit

Permalink
feat(core): improve UIElement type
Browse files Browse the repository at this point in the history
  • Loading branch information
agviegas committed Nov 4, 2024
1 parent b61d3a7 commit cc6253b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@thatopen/components",
"description": "Collection of core functionalities to author BIM apps.",
"version": "2.4.0-alpha.18",
"version": "2.4.0-alpha.19",
"author": "That Open Company",
"contributors": [
"Antonio Gonzalez Viegas (https://github.com/agviegas)",
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/core/Types/src/component-with-ui.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ import { Component } from "./component";

export type ComponentUIElement = {
name: string;
id: string;
componentID: string;
attributes: { [name: string]: string };
get: () => HTMLElement;
disabled?: boolean;
};

export abstract class ComponentWithUI extends Component {
Expand Down

0 comments on commit cc6253b

Please sign in to comment.