New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@ditpsoftware/woco-ui

Package Overview
Dependencies
Maintainers
5
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@ditpsoftware/woco-ui

Library for rendering woco innovations's Blueriq runtime.

  • 0.0.17
  • latest
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
5
Weekly downloads
 
Created
Source

woco-ui

Library for rendering woco innovations's Blueriq runtime.

Include in any Angular module

Add the WocoUiModule to your Angular module and place the <woco-ui /> component in the required place.

import { NgModule } from '@angular/core'
import { BrowserModule } from '@angular/platform-browser'
import { WocoUiModule } from '@ditpsoftware/woco-ui'

import { AppComponent } from './app.component'

@NgModule({
  declarations: [AppComponent],
  imports: [BrowserModule, WocoUiModule],
  providers: [],
  bootstrap: [AppComponent],
})
export class AppModule {}

Add to the template

<woco-ui todo='todo' [todo2]='todo'></woco-ui>

Override styles

The Woco UI utilizes css-variables and thus makes it easy to override branding and styling at runtime if required.

Also classes are available to directly override behaviour. All classes are prefixed with woco- and components are not view encapsulated (ViewEncapsulation.None), meaning these classes are registered directly into the main DOM.

/* CSS examples */

.woco-renderer {
  border: 1px dashed black;
  padding: 1rem;

  /* override variables */
  --color-primary: blue;
  --space-unit-size: 16px;
}

All CSS variables

TODO

FAQs

Package last updated on 21 Apr 2021

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc