Premium support for our pure JavaScript UI components


Post by turina »

Dear support,

Because of the security assesment in my company, we would like to know if you can provide the same delivery that you did with the react wrapper. With your delivery we are able to build @bryntum/scheduler but we don't see anything regarding @bryntum/scheduler-react


Post by sergey.maltsev »

Hi!

We have @bryntum/scheduler-react at our private npm server.

This is npm repository access guide
https://www.bryntum.com/docs/scheduler/guide/Scheduler/npm-repository

This is integration guide for React
https://www.bryntum.com/docs/scheduler/guide/Scheduler/integration/react

Please check bundled examples for React framework there which use wrappers.

Please be more specific on what are you looking for?


Post by turina »

Thanks for your answer. When downloading the distribution(see screenshot), the zip files contains only @bryntum/scheduler project (see screenshot). We would like to have the distribution for @bryntum/scheduler-react also. This is the easiest solution for us to do a security assesment and to publish bryntum into our artifactory.

Attachments
our-need.pdf
(130.49 KiB) Downloaded 62 times

Post by sergey.maltsev »

Hello!

React wrapper packages available through private npm repository only.

For offline package access you may install packages locally and then pack them from node_modules/@bryntum/scheduler and node_modules/@bryntum/scheduler-react with

npm pack

command line.

Than you would receive .tgz files which can be stored to version control to be accessed as local file: npm packages in project’s package.json file.

Please check docs here.
https://docs.npmjs.com/cli/v7/commands/npm-pack

OR copy node_modules/@bryntum/scheduler and node_modules/@bryntum/scheduler-react folders somewhere to VCS sources and also use them as local npm packages.

"dependencies": {
    "scheduler": "file:../@bryntum/scheduler",
    ...
  }

OR publish installed packages to you private repository. No public publishing is allowed.

Also Artifactory integration info for using online repository can be found here
https://www.bryntum.com/docs/scheduler/guide/Scheduler/npm-repository#artifactory-integration


Post by turina »

ok thanks. We did a publish in our local artifactory.


Post Reply