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

@dignite/ng.file-explorer

v10.0.0-rc.16

Published

Angular UI for **[Dignite.FileExplorer](https://github.com/dignite-projects/abp-modules/tree/main/file-storing)** — an upload widget, a directory-tree file picker, and the ABP-generated API proxies over `/api/file-explorer`.

Readme

@dignite/ng.file-explorer

Angular UI for Dignite.FileExplorer — an upload widget, a directory-tree file picker, and the ABP-generated API proxies over /api/file-explorer.

Angular 21 · ABP 10.5 · LGPL-3.0-only

Install

npm install @dignite/ng.file-explorer

Register the /config secondary entry point once, in your application config, to wire up its routes:

import { provideFileExplorerConfig } from '@dignite/ng.file-explorer/config';

export const appConfig: ApplicationConfig = {
  providers: [provideFileExplorerConfig()],
};

Peer dependencies

@abp/ng.components is a dependency of this package, not a peer — you do not declare it, and it is installed for you. It is deliberately not a peer: an ABP Angular host is not guaranteed to have it (neither @abp/ng.core nor @abp/ng.theme.shared depends on it — only feature packages such as @abp/ng.identity do), so asking the consumer for it left this package's @abp/ng.components/tree import resolving to nothing on any install that skips peers, --legacy-peer-deps included.

Everything in peerDependencies you must declare yourself, including @angular/cdk (~21.2.0), which the picker imports directly for drag-and-drop and which no stock ABP host brings in on its own. It reaches this package only as @abp/ng.componentsng-zorro-antd@angular/cdk, and the middle link is pinned: @abp/ng.components requires ng-zorro-antd ~21.0.0-next.1, i.e. <21.1.0. If your host also declares ng-zorro-antd at a wider range — ^21.0.2, or the 21.3.3 current hosts run — no single version satisfies both, so your package manager installs two: yours at the root and 21.0.2 nested under @abp/ng.components. Two copies are two module-scoped NZ_CONFIG / NzConfigService injection tokens, so provideNzConfig() and provideNzI18n() will not reach the abp-tree inside the directory tree. Pin inside <21.1.0 if you need a single copy.

Components

| Selector | Role | |---|---| | fe-file-explorer-upload | Upload widget for a single blob container | | fe-file-explorer-picker | Shows the currently selected file(s); opens the modal to add more | | fe-file-explorer-modal | Directory tree + file table + inline upload, used by the picker | | fe-file-explorer-directory-tree | Standalone directory navigation tree |

<fe-file-explorer-upload
  [multiple]="false"
  fileContainerName="SampleContainer"
  (fileDataChange)="onFileDataChange($event)"
></fe-file-explorer-upload>

<fe-file-explorer-picker
  [multiple]="true"
  [selectFormFile]="selectedFileGroup"
  fileContainerName="SampleContainer"
  (selectedFileChange)="onSelectedFileChange($event)"
></fe-file-explorer-picker>

fileContainerName has no default — an unconfigured container is a configuration bug, not silently treated as any particular one, and must match a blob container configured server-side via Dignite.Abp.FileStoring.

License

LGPL-3.0-only. See the repository.