Working with crayons older version

Hi there!

Greetings!

I am working on an application in which I have used the older version of crayons.

<script src="https://unpkg.com/@freshworks/crayons/dist/crayons/crayons.esm.js"></script>
  <script nomodule src="https://unpkg.com/@freshworks/crayons/dist/crayons/crayons.js"></script>

but recently I have changed the script tag to the newer version

<script
  type="module"
  src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@v4/dist/crayons/crayons.esm.js"
></script>
<script nomodule src="https://cdn.jsdelivr.net/npm/@freshworks/crayons@v4/dist/crayons/crayons.js"
></script>

without changing the HTML. Now the no events are triggering (button and on change events)

So, shall I revert back to the old script? is it safe and what version does the first script tag point to?

Thank you.

Hi @Bene_Immanuel ,

By default it points to V1, we recommend using the V4 as it has latest feature updates and additional components.

Regards,
Thakur