15.0.0-dev-0e2befe • Published 2 days ago

truly-ui v15.0.0-dev-0e2befe

Weekly downloads
822
License
MIT
Repository
github
Last release
2 days ago


Quick Links

Motivation

TrulyUI is an Angular Framework especially developed for Desktop Applications based on Web Components using the greatest technologies of the world. TrulyUI is based on Angular, maintained by world-wide community. By the way, we believe that Angular is the most promising Web Framework. We developed TrulyUI thinking to fill a gap on open-source Web Technologies that's poor when it's about applications on Desktop. Ex: Electron, App.js and NW.js

Prerequisites

We assume that you have already installed the following packages at least and are already running an AngularIO project.

Installation

  1. Having NPM installation run the following command on your terminal to install it:

     $ npm install --save truly-ui @angular/animations @angular/cdk
  2. Because NPM does not install peerDependencies, you should manually install the dependencies:

     $ npm install --save string-format ts-md5 object-path reflect-metadata
     $ npm install --save-dev @types/object-path
  3. Configure styles of used font packages (Icon Packages are already installed when running npm install truly-ui):

    Inside the angular.json file add the following paths to the styles key

     "styles": [
           "src/styles.css",
           ...
           "node_modules/@angular/cdk/overlay-prebuilt.css",
           "node_modules/truly-ui/css/icons/dx-icons/css/icons.scss",
           "node_modules/truly-ui/css/icons/fa-icons/css/icons.scss",
           "node_modules/truly-ui/css/icons/ion-icons/css/icons.scss",
           "node_modules/truly-ui/css/icons/animations.scss"
     ]
  4. Configure CoreModule on your AppModule:

    import { BrowserModule } from '@angular/platform-browser';
    import { FormsModule } from '@angular/forms';
    import { NgModule } from '@angular/core';
    
    import { AppComponent } from './app.component';
    
    import { CoreModule } from 'truly-ui'; //CoreModule
    
    @NgModule({
      declarations: [
        AppComponent
      ],
      imports: [
        BrowserModule,
        CoreModule.forRoot({theme: 'default'}) // Configurations
      ],
      providers: [],
      bootstrap: [AppComponent]
    })
    export class AppModule { }

    Usage

    The use of the components is basically the importation of the main module and the use of the directives in its application: Example is the import of the input module and its use

import { BrowserModule } from '@angular/platform-browser';
import { FormsModule } from '@angular/forms';
import { NgModule } from '@angular/core';

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

// Import your library, for example the InputComponent :
import { InputModule, ButtonModule, CoreModule } from 'truly-ui';//Import Modules

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    CoreModule.forRoot({theme: 'default'}),

    // Specify your library as an import
    InputModule,
    ButtonModule
  ],
  providers: [],
  bootstrap: [AppComponent]
})
export class AppModule { }

Once your library is imported, you can use its components, directives and pipes in your Angular application:

<!-- You can now use your library component in app.component.html -->

 <tl-input
     [(ngModel)]="Many Properties"
     [iconBefore]="'ion-printer'"
     [placeholder]="'With Placeholder'"
     [textAfter]="'US'"
     [clearButton]="true"
     [autocomplete]="'off'">
 </tl-input>

Available Features

FeatureNotesDocs
accordionDocs
autocompleteDocs
avatarDocs
badgeDocs
blockuiDocs
buttonDocs
buttongroupDocs
calendarDocs
chatlistDocs
checkboxDocs
colorpickerDocs
contextmenuDocs
datatableDocs
datepickerDocs
dialogDocs
dropdownlistDocs
editorDocs
formDocs
iconDocs
inputDocs
listboxDocs
menuDocs
shortcutDocs
modalDocs
multiselectDocs
multiviewDocs
navigatorDocs
overlaypanelDocs
panelgroupDocs
popupmenuDocs
progressbarDocs
radiobuttonDocs
sidebarDocs
splitbuttonDocs
stopwatchDocs
switchDocs
tabcontrolDocs
textareaDocs
themingDocs
timeavaliableDocs
timelineDocs
timepickerDocs
toasterDocs
toolbarDocs
tooltipDocs
validatorsDocs

In progress, planned, and non-planned features

FeatureStatusDocsIssue
datetimepickernon-planned
clockpickerIn-progress, planned S2 2024
monthyearpickernon-planned
paginatorIn-progress, planned S2 2024
scheduleIn-progress, planned S2 2024
widgetnon-planned

Feedback

Feedback is always welcome.

For google

angular ui components angular 2 components, angular 4 components, angular electron, angular 5 components ng2 nw ng components ng-components ng2-components angular2 components angular4 electron angular 5 components angular 6 components angular 7 components angular electron components desktop applications library ui components desktop electron angular components electron angular

License

The MIT License (MIT)

Copyright (c) 2024 Temainfo Software

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

5.2.0-dev-eb8e99d

10 months ago

5.2.0

2 years ago

5.1.2

3 years ago

5.1.1

3 years ago

5.1.0

3 years ago

5.0.0

4 years ago

4.5.0

4 years ago

4.4.0

5 years ago

4.3.0

5 years ago

4.2.0

5 years ago

4.1.3

5 years ago

4.1.2

5 years ago

4.1.1

5 years ago

4.1.0

5 years ago

3.18.0

5 years ago

4.0.0

5 years ago

3.17.0

5 years ago

3.16.0

5 years ago

3.15.0

5 years ago

3.14.0

5 years ago

3.13.1

5 years ago

3.12.0

5 years ago

3.11.0

5 years ago

3.10.0

5 years ago

3.9.0

5 years ago

3.8.1

5 years ago

3.8.0

5 years ago

3.7.0

5 years ago

3.6.0

6 years ago

3.5.0

6 years ago

3.4.0

6 years ago

3.3.0

6 years ago

3.2.0

6 years ago

3.1.0

6 years ago

3.0.0

6 years ago

2.32.1

6 years ago

2.32.0

6 years ago

2.31.0

6 years ago

2.30.4

6 years ago

2.30.3

6 years ago

2.30.2

6 years ago

2.30.1

6 years ago

2.30.0

6 years ago

2.29.2

6 years ago

2.29.1

6 years ago

2.29.0

6 years ago

2.28.1

6 years ago

2.28.0

6 years ago

2.27.0

6 years ago

2.26.0

6 years ago

2.25.2

6 years ago

2.25.0

6 years ago

2.24.0

6 years ago

2.23.0

6 years ago

2.22.2

6 years ago

2.22.1

6 years ago

2.22.0

6 years ago

2.21.0

6 years ago

2.20.3

6 years ago

2.20.2

6 years ago

2.20.1

6 years ago

2.20.0

6 years ago

2.19.5

6 years ago

2.19.4

6 years ago

2.19.3

6 years ago

2.19.2

6 years ago

2.19.1

6 years ago

2.19.0

6 years ago

2.18.0

6 years ago

2.17.0

6 years ago

2.16.0

6 years ago

2.15.0

6 years ago

2.14.0

6 years ago

2.13.0

6 years ago

2.12.0

6 years ago

2.11.0

6 years ago

2.10.0

6 years ago

2.9.0

6 years ago

2.8.0

6 years ago

2.7.0

6 years ago

2.6.0

6 years ago

2.5.0

6 years ago

2.4.0

6 years ago

2.3.0

6 years ago

2.2.1

6 years ago

2.2.0

6 years ago

2.1.2

6 years ago

2.1.1

6 years ago

2.1.0

6 years ago

2.0.0

6 years ago

1.91.0

6 years ago

1.90.0

7 years ago

1.89.1

7 years ago

1.89.0

7 years ago

1.88.0

7 years ago

1.87.0

7 years ago

1.86.3

7 years ago

1.86.2

7 years ago

1.86.1

7 years ago

1.86.0

7 years ago

1.85.0

7 years ago

1.84.0

7 years ago

1.83.0

7 years ago

1.82.0

7 years ago

1.81.0

7 years ago

1.80.0

7 years ago

1.79.0

7 years ago

1.78.0

7 years ago

1.77.1

7 years ago

1.77.0

7 years ago

1.76.0

7 years ago

1.75.0

7 years ago

1.74.1

7 years ago

1.74.0

7 years ago

1.73.0

7 years ago

1.72.4

7 years ago

1.72.3

7 years ago

1.72.2

7 years ago

1.72.1

7 years ago

1.72.0

7 years ago

1.71.0

7 years ago

1.70.2

7 years ago

1.70.1

7 years ago

1.70.0

7 years ago

0.0.0

7 years ago

1.68.0

7 years ago

1.67.0

7 years ago

1.66.1

7 years ago

1.66.0

7 years ago

1.65.0

7 years ago

1.64.5

7 years ago

1.64.4

7 years ago

1.64.3

7 years ago

1.64.2

7 years ago

1.64.1

7 years ago

1.64.0

7 years ago

1.63.1

7 years ago

1.63.0

7 years ago

1.62.1

7 years ago

1.62.0

7 years ago

1.61.1

7 years ago

1.61.0

7 years ago

1.60.0

7 years ago

1.59.0

7 years ago

1.58.0

7 years ago

1.57.0

7 years ago

1.56.0

7 years ago

1.55.0

7 years ago

1.54.0

7 years ago

1.53.0

7 years ago

1.52.0

7 years ago

1.51.0

7 years ago

1.50.0

7 years ago

1.49.0

7 years ago

1.48.3

7 years ago

1.48.2

7 years ago

1.48.1

7 years ago

1.48.0

7 years ago

1.47.0

7 years ago

1.46.0

7 years ago

1.45.0

7 years ago

1.44.0

7 years ago

1.43.0

7 years ago

1.42.0

7 years ago

1.41.0

7 years ago

1.40.3

7 years ago

1.40.2

7 years ago

1.40.1

7 years ago

1.40.0

7 years ago

1.39.0

7 years ago

1.38.0

7 years ago

1.37.0

7 years ago

1.36.0

7 years ago

1.35.0

7 years ago

1.34.0

7 years ago

1.33.0

7 years ago

1.32.0

7 years ago

1.31.0

7 years ago

1.30.0

7 years ago

1.29.0

7 years ago

1.28.0

7 years ago

1.27.0

7 years ago

1.26.0

7 years ago

1.25.1

7 years ago

1.25.0

7 years ago

1.24.2

7 years ago

1.24.1

7 years ago

1.24.0

7 years ago

1.23.0

7 years ago

1.22.2

7 years ago

1.22.1

7 years ago

1.22.0

7 years ago

1.21.2

7 years ago

1.21.1

7 years ago

1.21.0

7 years ago

1.20.0

7 years ago

1.19.0

7 years ago

1.18.0

7 years ago

1.17.2

7 years ago

1.17.1

7 years ago

1.17.0

7 years ago

1.16.0

7 years ago

1.15.0

7 years ago

1.14.0

7 years ago

1.13.0

7 years ago

1.12.0

7 years ago

1.11.0

7 years ago

1.10.0

7 years ago

1.9.0

7 years ago

1.8.0

7 years ago

1.7.0

7 years ago

1.6.0

7 years ago

1.5.0

7 years ago

1.4.0

7 years ago

1.3.0

7 years ago

1.2.0

7 years ago

1.1.0

7 years ago

1.0.0

7 years ago

0.17.0

7 years ago

0.16.4

7 years ago

0.16.3

7 years ago

0.16.2

7 years ago

0.16.1

7 years ago

0.16.0

7 years ago

0.15.0

7 years ago

0.14.0

7 years ago

0.13.0

7 years ago

0.12.0

7 years ago

0.11.0

7 years ago

0.10.0

7 years ago

0.9.0

7 years ago

0.8.0

7 years ago

0.7.0

7 years ago

0.6.0

7 years ago

0.5.0

7 years ago

0.4.1

7 years ago

0.4.0

7 years ago

0.3.0

7 years ago

0.2.0

7 years ago

0.1.1

7 years ago

0.0.1

7 years ago

0.1.0

7 years ago