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

injast-core

v1.0.82

Published

Reusable Injast React and Material UI components, providers, hooks, utilities, and design tokens.

Downloads

927

Readme

Injast Core

Reusable React components, Material UI theme providers, hooks, utilities, and design tokens used by Injast applications.

Installation

npm install injast-core

Peer requirements:

npm install react@^18.2.0 react-dom@^18.2.0

The package is published as ESM and is intended for modern React bundlers such as Vite, Next.js, and similar tooling.

Usage

Root imports are supported:

import { Button, TextField, ThemeProvider, coreFaIR } from "injast-core";

Subpath imports are also available when you want a narrower entrypoint:

import { Button, TextField } from "injast-core/components";
import { ThemeProvider, SPAThemeProvider } from "injast-core/providers";
import { createApiRequest } from "injast-core/libs";
import { convertRialToToman, formatPersianNumber } from "injast-core/utils";
import { defaultColors } from "injast-core/constants";

Theme Providers

For React single-page applications:

import { SPAThemeProvider, coreFaIR } from "injast-core";

const appColors = {
  primary: {
    main: "#1DBF98",
    light: "#1DBF98",
    dark: "#1DBF98",
    contrastText: "#ffffff",
  },
  secondary: {
    main: "#4F545E",
    light: "#4F545E",
    dark: "#4F545E",
    contrastText: "#ffffff",
  },
};

export function AppProviders({ children }: { children: React.ReactNode }) {
  return (
    <SPAThemeProvider
      dir="rtl"
      appColors={appColors}
      themeOptions={{ ...coreFaIR }}
    >
      {children}
    </SPAThemeProvider>
  );
}

For Next.js client layouts or app providers:

"use client";

import { ThemeProvider } from "injast-core";

const appColors = {
  primary: {
    main: "#1DBF98",
    light: "#1DBF98",
    dark: "#1DBF98",
    contrastText: "#ffffff",
  },
  secondary: {
    main: "#4F545E",
    light: "#4F545E",
    dark: "#4F545E",
    contrastText: "#ffffff",
  },
};

export function Providers({ children }: { children: React.ReactNode }) {
  return (
    <ThemeProvider dir="rtl" appColors={appColors}>
      {children}
    </ThemeProvider>
  );
}

Components

injast-core/components exports wrappers and custom components including Button, TextField, Select, Modal, Toast, MobileDatePicker, WheelDatePicker, DataGrid, MultiSelect, OtpInput, NumberInput, CardNumberInput, and common Material UI layout primitives.

Most wrapper components accept the corresponding Material UI component props, with additional Injast-specific props where documented in Storybook stories.

Utilities and Hooks

Useful utilities are exported from injast-core/utils, including date conversion helpers, Persian number formatting, query string creation, iframe messaging, and coreFaIR for MUI Persian locale configuration.

Hooks are exported from injast-core/hooks, including shared Material UI hooks and Injast-specific helpers such as useErrorHandler, useMessage, and useWebOtpListener.

Fonts and Date Picker CSS

The theme uses the IRANYekanX and IRANYekanXFaNum font families. You can load the bundled font stylesheet once in your app:

import "injast-core/fonts.css";

MobileDatePicker imports the required react-multi-date-picker mobile layout stylesheet from its dependency. Ensure your bundler supports CSS imports from JavaScript modules.

Figma Make

Figma Make users should select the public npm package named injast-core. Do not use @alimohammadiwork/injast-core or @make-kits/injast-core-make-kit for the public package path.

If the package selector ranks unrelated core packages when searching injast-core, search for:

injast

Then select injast-core from the public unscoped package results.

For Make kits, start with the included guidelines:

guidelines/Guidelines.md

The guidelines route Make to setup instructions, foundations, component selection rules, and focused component usage notes. In a Vite/React Make file, use SPAThemeProvider, import injast-core/fonts.css once, and prefer Injast components over raw HTML controls.

For Figma-driven implementation, use the Figma MCP flow before coding. The local MCP endpoint is:

http://127.0.0.1:3845/mcp

Fetch structured design context and a screenshot for the exact node, then translate the design into Injast Core components, RTL layout, Persian copy, and the project guidelines.

Generated mobile app screens should follow the Gold reference app at /Users/ali/Documents/Gold: centered max-width: 520px shell, wired navigation and overlay behavior, Injast Core inputs, drawer-based pre-invoices, and no mobile OS/app status bar chrome.

Codex Skill

The package ships a Codex skill for Injast app generation:

skills/injast-app-builder

After installing the package, consumers can point Codex at node_modules/injast-core/skills/injast-app-builder or copy that folder into their Codex skills directory if their Codex setup does not auto-discover package-bundled skills.

License

ISC