Skip to content

Commit

Permalink
Merge pull request #29 from xibosignage/develop
Browse files Browse the repository at this point in the history
Expose all other modules (#28)
  • Loading branch information
rubenberttpingol authored Jan 9, 2025
2 parents d17c04e + 2d46cb0 commit 8ad94b4
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@xibosignage/xibo-layout-renderer",
"version": "1.0.7",
"version": "1.0.8",
"description": "Xibo layout renderer is a shared library that performs rendering of given layout from sources (e.g. CMS Preview, Linux Player, etc.)",
"main": "dist/xibo-layout-renderer.cjs.js",
"module": "dist/xibo-layout-renderer.esm.js",
Expand Down
3 changes: 3 additions & 0 deletions src/Modules/Layout/layout.css
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,9 @@ div.preview-canvas, div.player-preview, div.screen-preview {
}

/* Styles override */
#player_container {
overflow: hidden;
}
.preview-player {
display: none;
}
Expand Down
8 changes: 8 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,12 @@
* along with Xibo. If not, see <http://www.gnu.org/licenses/>.
*/
export { default } from './xibo-layout-renderer';
export * from './Modules/ActionController';
export * from './Modules/Generators';
export * from './Modules/Layout';
export * from './Modules/Media';
export * from './Modules/Platform';
export * from './Modules/Region';
export * from './Modules/SplashScreen';
export * from './Modules/Transitions';
export * from './types';

0 comments on commit 8ad94b4

Please sign in to comment.