A set of basic HTML elements as components for Orchestrator library.
DEPRECATED!
Please use
@orchestrator/html-tag
package instead which has more streamlined API and allows to render any HTML tags available in the Web.
import { NgModule } from '@angular/core';
import { OrchestratorCoreModule } from '@orchestrator/core';
import { UiWebModule } from '@orchestrator/ui-web';
@NgModule({
imports: [OrchestratorCoreModule.forRoot(), UiWebModule.forRoot()],
})
export class AppModule {}
Component | Description |
---|---|
orc-ui-web-button-host | Button element |
orc-ui-web-heading-host | Heading element (h1..h6) |
orc-ui-web-image-host | Image element |
orc-ui-web-input-host | Input element |
orc-ui-web-select-host | Select element |
orc-ui-web-text-host | Paragraph element |
orc-ui-web-textarea-host | Paragraph element |