Skip to Main Content

DevOps, CI/CD and Automation

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Oracle JET v15 Core Pack Components not working

Rachid Lamtabbet-OracleAug 22 2023 — edited Aug 22 2023

I'm working on an Oracle JET web application that uses the following:
- OJET JET v15.0.0 (VDOM)
- Webpack 5.75.0

Unfortunately some Oracle JET v15 Core Pack Components are not working:
In the example below all other component works except oj-c/progress-circle
Is this a known bug or case of misconfiguration?

import { h } from 'preact';
import 'oj-c/progress-circle';
import 'ojs/ojprogress-circle';
import 'oj-c/button';
import 'ojs/ojbutton';

const CorePackComponent = () => (<div>
oj-c-progress: <oj-c-progress-circle></oj-c-progress-circle>
<br />
oj-progress: <oj-progress-circle></oj-progress-circle>
<br />
<oj-c-button id="button1" label="Oj C Button"></oj-c-button>
<br />
<oj-button id="button1">Oj Button</oj-button>
</div>);

export default CorePackComponent;

Thanks!

This post has been answered by Rachid Lamtabbet-Oracle on Aug 23 2023
Jump to Answer
Comments
Post Details
Added on Aug 22 2023
3 comments
745 views