elseware-ui
v3.4.0
Published
A modern and customizable React UI component library by elseware Technology.
Readme
elseware-ui
A TypeScript-first React component library for web and React Native applications. The package provides shared component contracts, platform-specific implementations, Tailwind/NativeWind styling, and conditional exports for browser and mobile bundlers.
Features
- Web and React Native entry points with platform-specific declarations
- React 18 and 19 support
- React Native and NativeWind components
- Tailwind CSS design tokens and a reusable preset
- Tree-shakable ESM builds for modern web and Metro bundlers
- Storybook 10 component development and production builds
- TypeScript 7 web/native validation
- Oxlint, Prettier, Knip, lint-staged, and Husky quality gates
Installation
Install the library and the peer dependencies required by your target.
Web
npm install elseware-ui react react-dom formik yup tailwindcssImport the browser API and compiled styles:
import { Button } from "elseware-ui";
import "elseware-ui/styles.css";React Native
npm install elseware-ui react react-native formik yup nativewind tailwindcss react-native-reanimated react-native-workletsMetro-compatible bundlers select the react-native condition from the root export. The native entry can also be imported explicitly:
import { Button, Input } from "elseware-ui/native";Configure NativeWind and Reanimated in the consuming application according to their platform setup requirements.
Package exports
The root export selects the native build when the bundler enables the react-native condition and otherwise selects the web build.
{
".": {
"react-native": {
"types": "./dist/index.native.d.ts",
"import": "./dist/index.native.mjs",
"default": "./dist/index.native.mjs"
},
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"default": "./dist/index.mjs"
},
"./native": {
"types": "./dist/index.native.d.ts",
"import": "./dist/index.native.mjs",
"default": "./dist/index.native.mjs"
},
"./tailwind": "./tailwind.preset.js",
"./styles.css": "./dist/index.css"
}Tailwind preset
Add the package preset and include the distributed component sources or compiled application usage in your Tailwind content configuration as appropriate for your application:
const elsewarePreset = require("elseware-ui/tailwind");
module.exports = {
presets: [elsewarePreset],
content: ["./src/**/*.{js,jsx,ts,tsx}"],
};Development
npm install
npm run devThe main quality commands are:
npm run typecheck # Type-check workspace, web, and native graphs
npm run lint # Run Oxlint with warnings denied
npm run format:check # Verify Prettier formatting
npm run deadcode # Check files and dependency reachability
npm run build # Build JS, CSS, and TS7 declarations
npm run build:storybook # Build the production Storybook
npm run validate # Run the complete quality pipelinenpm install initializes Husky for repository contributors. The pre-commit hook runs lint-staged; it can also be invoked directly with npm run precommit.
Component structure
Shared behavior and types live in base modules. Browser and native renderers live in web and native modules, with .native barrels forming the mobile public graph. Platform-neutral modules must not import DOM-only utilities.
Web component styles stay beside their owning component and are imported by that component's web implementation or local barrel. Do not register component styles in a root CSS manifest. The build follows the web module graph and extracts those imports into the public elseware-ui/styles.css bundle. Only design-system-wide foundations belong in src/styles.
Use type-only imports for TypeScript types and keep imports grouped as external, internal, data, and types where those groups are useful.
Publishing
Update the package version with npm version, then run:
npm run releaseThe release command runs the full validation pipeline before publishing publicly.
