
Security News
ECMAScript 2025 Finalized with Iterator Helpers, Set Methods, RegExp.escape, and More
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
@openremote/or-app
Advanced tools
Web Component for displaying an asset tree. This component requires an OpenRemote Manager to retrieve, save and query assets.
npm i @openremote/or-asset-viewer
yarn add @openremote/or-asset-viewer
By default the or-asset-viewer is using a 2 columns grid. This can be changed by using a different config.
4 column grid, 25% for each column:
const viewerConfig = {
viewerStyles: {
gridTemplateColumns: "repeat(auto-fill, minmax(calc(25%),1fr))";
}
};
<or-asset-viewer .config="${viewerConfig}"></or-asset-viewer>
The position of a panel can also be changed by changing the config of or-asset-viewer
To change the width of a panel use gridColumn:
const viewerConfig = {
panels: {
"info": {
type: "property",
panelStyles: {
gridColumn: "1 / -1" // same as 1 / 3 in a 2 column grid: Start on column 1, End on column 3
}
}
}
};
gridColumn can also be used to change the position horizontally.
const viewerConfig = {
panels: {
"info": {
type: "property",
panelStyles: {
gridColumnStart: "2" // start the panel in the second column
}
}
}
};
To change the vertical position of a panel use gridRowStart. To start the panel on the first row set gridRowStart to 1:
const viewerConfig = {
panels: {
"info": {
type: "property",
panelStyles: {
gridRowStart: "1"
}
}
}
};
For a full list of properties, methods and options refer to the TypeDoc generated documentation.
The last 2 versions of all modern browsers are supported, including Chrome, Safari, Opera, Firefox, Edge. In addition, Internet Explorer 11 is also supported.
FAQs
OpenRemote app template
The npm package @openremote/or-app receives a total of 120 weekly downloads. As such, @openremote/or-app popularity was classified as not popular.
We found that @openremote/or-app demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
ECMAScript 2025 introduces Iterator Helpers, Set methods, JSON modules, and more in its latest spec update approved by Ecma in June 2025.
Security News
A new Node.js homepage button linking to paid support for EOL versions has sparked a heated discussion among contributors and the wider community.
Research
North Korean threat actors linked to the Contagious Interview campaign return with 35 new malicious npm packages using a stealthy multi-stage malware loader.