@logo-software/core
v11.0.1
Published
Core module is main Logo Module that contains shared **directives**, **pipes**, **services** and **util** class. It also exported to the `SharedDirectiveModule` and `SharedPipeModule` for directly usage.
Downloads
34
Readme
Core Module
Core module is main Logo Module that contains shared directives, pipes, services and util class. It also exported to the SharedDirectiveModule
and SharedPipeModule
for directly usage.
Click here for demo
Installation
All public NPM packages of Logo Software is at https://www.npmjs.com/~logofe. To install Core Module:
$ npm set registry https://registry.npmjs.org/
$ npm install @logo-software/core -s
Just import it to your project of @NgModule
import section.
@NgModule({
imports: [CommonModule, CoreModule]
})
export class AppModule {
}
Directives:
- AutoFocusDirective - Makes focused to added element
- Base64Directive - Manages base64 operations
- IsActiveRouteDirective - True when current route is active
- LastDirective - When use ngFor directive, if it was last item trigger the a defined function
- MaskDirective - An input mask is a string of characters that indicates the format of valid input values.
- HTMLParseDirective - clear HTML tag and convert it to span
- VariableDirective - Set a variable in HTML than use everywhere
- VideoSnapshot - Takes a snapshot from video
Pipes:
- FormatPipe - Formats string to given pattern
- OrderPipe - Orders data ASC or DESC
- SafeHtml - Orders data ASC or DESC
Services:
- EndpointService - Handles HTTP request
- LoggerService - Manages Log
- StateService - Manages Application State data
- WatcherService - Watcher is a Subject. Subject is a special type of Observable that allows values to be multicast to many Observers. Subjects are like EventEmitters.
For API details, please visit http://design.logo.com.tr/#/docs/components/components-overview