1.1.0 • Published 3 years ago

@enterpriseui/ui-core v1.1.0

Weekly downloads
-
License
Apache-2.0
Repository
github
Last release
3 years ago

Enterprise UI core version Built With Stencil

Enterprise UI core is a component library that makes it easy to build beautiful enterprise applications and websites.

These components are just Web Components, so they work in any major framework or with no framework at all.

Usage

Script tag

  • Put a script tag like this <script src='https://unpkg.com/@enterpriseui/ui-core@latest/dist/uicore.js'></script> in the head of your index.html
  • You have to import some styling too <link rel="stylesheet" type="text/css" href="https://unpkg.com/@enterpriseui/ui-core@latest/dist/uicore/uicore.css">
  • Then you can use the element anywhere in your template, JSX, html etc

Node Modules

  • Run npm install @enterpriseui/ui-core --save
  • Put a script tag like this <script src='/node_modules/@enterpriseui/ui-core/dist/uicore.js'></script> in the head of your index.html
  • You have to import some styling too <link rel="stylesheet" type="text/css" href="/node_modules/@enterpriseui/ui-core@latest/dist/uicore/uicore.css">
  • Then you can use the element anywhere in your template, JSX, html etc

In a stencil-starter app

  • Run npm install @enterpriseui/ui-core --save
  • Import it to your application import '@enterpriseui/ui-core';
  • Put a link tag like this <link rel="stylesheet" type="text/css" href="/node_modules/@enterpriseui/ui-core@latest/dist/uicore/uicore.css"> in the head of your index.html
  • Then you can use the element anywhere in your template, JSX, html etc

Contributing

Check out our contributing documentations