npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

fts-system-library

v0.0.15

Published

| Angular | fts-system-library | |--------------------|:------------------:| | >=14.1.0 < 14.1.x | >= v0.0.10 | ---

Downloads

19

Readme

Versions

| Angular | fts-system-library | |--------------------|:------------------:| | >=14.1.0 < 14.1.x | >= v0.0.10 |

| Edge | Firefox | Chrome | | --------- | --------- | --------- | | last 2 versions | last 2 versions | last 2 versions |

Table of contents

Features

  • [x] Dynamic Pages
  • [x] List, Profile, WorkFlow and Dynamic Details templates

Warning

Our library is under active development and may have API breaking changes for subsequent major versions after 0.0.10

Getting started


----    ----    ----    ----    ----    ----    ----    ----

Step 1: 📦 Install fts-system-library:

NPM

  npm install fts-system-library --save

Dependant Npm

  npm i [email protected]
  npm i [email protected] => npm i minimist => npm i neo-async => npm i source-map => npm i wordwrap => npm i  uglify-js
  npm i @ng-select/[email protected]
  npm i [email protected]
  npm i [email protected]

Include ng-select theme:

To allow customization and theming, ng-select bundle includes only generic styles that are necessary for correct layout and positioning. To get full look of the control, include one of the themes in your application. If you're using the Angular CLI, you can add this to your styles.scss or include it in .angular-cli.json (Angular v5 and below) or angular.json (Angular v6 onwards).

  @import "~@ng-select/ng-select/themes/default.theme.css";
  // ... or 
  @import "~@ng-select/ng-select/themes/material.theme.css";

Step 2:

Need to add these bootstrap cdn's in index file of your application:

  <!-- Bootstrap 4.0.0 -->
  <link href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" rel="stylesheet">
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/umd/popper.min.js" integrity="sha384-ApNbgh9  +Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q" crossorigin="anonymous"></script>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl" crossorigin="anonymous"><  script> 
  <!-- Bootstrap 5.0.2 -->
  <link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css" rel="stylesheet" integrity="sha384-EVSTQN3/azprG1Anm3QDgpJLIm9Nao0Yz1ztcQTwFspd3yD65VohhpuuCOmLASjC" crossorigin="anonymous">
  <script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js"  integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous">< script>
  <script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-cVKIPhGWiC2Al4u+LWgxfKTRIcfu0JTxR+EQDz/bgldoEyl4H0zUF0QKbrJ0EcQF" crossorigin="anonymous"><  script>

Step 3:

Import the DynamicAppsModule in your.module.ts:

  import { DynamicAppsModule } from 'fts-system-library'; 
  @NgModule({
  declarations: [AppComponent],
  imports: [DynamicAppsModule],
  bootstrap: [AppComponent]
  })
  export class AppModule {}

Step 4 :

🔨 Configuration:

  • After importing it into your appmodule you have use the below selector(tag app-fts-system) to view the output and also you have to pass the PageId and HostUrl and UserType as input decorator like below, you have to get the PageId and HostUrl and UserType from the FTS System Admin :

    • All the Input-(OR)-API parameters are given below table you can verify that..

    | Property | Type | Is Nullable | Description | | ----------------------- | ------ | ------------- | ----------------------------------------------------- | | CustomerId | string | No | Your user name | | PageId | number | No | Request your system admin | | UserType | number | No | Your user type | | HostUrl | string | No | Request your system admin | | AppName | string | Yes | Request your system admin | | FormId | number | Yes | Request your system admin | | Language | string | No | By default value is English |

  <!-- Using our template like this -->
  <app-index [HostUrl]="providedHostUrl" [PageId]="providedPageId" [FormId]="providedFormId"
  [AppName]="providedAppName" [UserType]="yourUserType" [CustomerId]="yourUserName"
  [Language]="userPreferedLanguage"></app-index>

Language Enum:

  export enum E_Language {
    DefaultValue = "English",
    English = "English",
    Arabic = "Arabic",
  }

🎉Users

License

Released under the MIT license.

Note: if the library does not give the proper output please stop the application and run the application again and check it will work fine.