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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ultraforce/ts-dom-lib

v1.0.103

Published

DOM related utility classes.

Readme

Ultra Force Typescript library

Description

The library exists of various support classes for the DOM for use with TypeScript.

It exists of code snippets found on the internet and conversions from other libraries.

Some classes use jQuery.

Installation

npm install @ultraforce/ts-dom-lib

Documentation

To view the generated documentation, visit: https://joshamunnik.github.io/ts-dom-lib/

Html helpers

To load a compiled minified version of all the UFHtmlHelpers, use the following script tag:

<script src="https://cdn.jsdelivr.net/gh/JoshaMunnik/uf-html-helpers@master/dist/uf-html-helpers.js"></script>

This compiled minified version is created by the uf-html-helpers GitHub repository.

Version history

1.0.103

  • changed target of tsconfig to es2021

1.0.102

  • fixed bug with UFFileInputHelper, file size now is displayed correctly when a file is selected.

1.0.101

  • added data-uf-file-show to UFFileInputHelper to show elements when a file is selected.
  • data-uf-file-size now uses UFText.formatFileSize to display the file size.

1.0.100

  • added data-uf-file-none to UFFileInputHelper to show elements when no file is selected.

1.0.99

  • renamed UFImagePreviewHelper to UFFileInputHelper
  • [BREAKING CHANGE] UFFileInputHelper now uses more general attribute names of data-uf-file-name, data-uf-file-size and data-uf-file-type instead data-uf-image-xxxx.

1.0.97

  • added UFDialogListener to listen for dialog open/close changes

1.0.96

  • NaN numbers are now sorted before normal numbers with UFGridSortHelper.

1.0.94

  • dates are no longer sorted in reverse order with UFGridSortHelper.

1.0.93

  • removed UFTableSortHelper, use UFGridSortHelper instead

1.0.92

  • with UFGridSortHelper handle parsed numbers and dates that result in a NaN value

1.0.91

  • fixed bug: grid control with sort type are still used to determine group size

1.0.90

  • added support for data-uf-filter-container with UFFilterHelper

1.0.89

  • when data-uf-group-size is missing, use the number of found controls

1.0.88

  • added support for data-uf-grid-body with UFGridSortHelper

1.0.87

  • added support for data-uf-group-size with UFGridSortHelper

1.0.86

  • started version history
  • [BREAKING CHANGE] UFTableSortHelper uses data-uf-table-sorting instead of data-uf-sorting
  • updated some comments