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!