diff --git a/packages/core/package.json b/packages/core/package.json index b43eced3b..185190df1 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -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)", diff --git a/packages/core/src/core/Types/src/component-with-ui.ts b/packages/core/src/core/Types/src/component-with-ui.ts index fc4d2245f..10d3d924e 100644 --- a/packages/core/src/core/Types/src/component-with-ui.ts +++ b/packages/core/src/core/Types/src/component-with-ui.ts @@ -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 {