@jamsrui/description 0.0.5

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md ADDED
@@ -0,0 +1,40 @@
1
+ # πŸš€ **JamsrUI**
2
+
3
+ **A comprehensive React UI component library designed for developers, with Tailwind CSS integration for seamless styling.**
4
+
5
+
6
+ ## πŸ“– **Overview**
7
+
8
+ [JamsrUI](https://jamsr-ui.jamsrworld.com) is designed to help developers build modern, fast and visually appealing web applications with ease.
9
+
10
+ ## πŸš€ Getting Started
11
+
12
+ Boost & Build your websites using [JamsrUI](https://jamsr-ui.jamsrworld.com).
13
+
14
+ ## ✨ Features
15
+
16
+ - πŸš€ **Production-Ready**: Optimized for modern React projects.
17
+ - 🎨 **Customizable**: Easily override styles and themes.
18
+ - πŸ› οΈ **Reusable Components**: Save time with prebuilt, efficient UI elements.
19
+ - ⚑ **Developer-Friendly**: Simple API and well-documented usage.
20
+ - πŸ“¦ **Lightweight**: Minimal dependencies for fast performance.
21
+ - πŸ–₯️ **Modern Design**: Clean, responsive, and user-friendly components.
22
+
23
+ ## 🌱 Community
24
+
25
+ We’re thrilled to see the community actively engage with **JamsrUI**! Whether you're sharing feedback, reporting bugs, requesting features, or showcasing projects built with JamsrUI, your involvement helps us grow and improve.
26
+
27
+ ### How to Engage
28
+
29
+ - πŸ’¬ **Report Bugs**: [GitHub Issues](https://github.com/jamsrworld/jamsr-ui/issues)
30
+ - πŸš€ **Request Features**: Share ideas for new components.
31
+ - 🀝 **Showcase Projects**: Let us know how you use JamsrUI.
32
+
33
+ ## Contributing
34
+
35
+ We welcome contributions from developers of all skill levels!
36
+
37
+ ## ⭐ Support the Project
38
+
39
+ If you find **JamsrUI** helpful, consider giving it a ⭐ on [GitHub](https://github.com/jamsrworld/jamsr-ui).
40
+
@@ -0,0 +1 @@
1
+ import{cn as t}from"@jamsrui/utils";var p=e=>{let{className:r,...s}=e;return{...s,className:t("description text-xs text-foreground-secondary",r)}};export{p as a};
@@ -0,0 +1 @@
1
+ import{a as e}from"./chunk-G753CSOL.mjs";import{useRenderElement as s}from"@jamsrui/hooks";var i=r=>{let o=e(r);return s("p",{props:[o]})};export{i as a};
@@ -0,0 +1,11 @@
1
+ import * as react from 'react';
2
+ import { useDescription } from './use-description.mjs';
3
+ import '@jamsrui/utils';
4
+
5
+ declare const Description: (props: Description.Props) => react.ReactElement<unknown, string | react.JSXElementConstructor<any>>;
6
+ declare namespace Description {
7
+ interface Props extends useDescription.Props {
8
+ }
9
+ }
10
+
11
+ export { Description };
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-ZHXXXWPD.mjs";import"./chunk-G753CSOL.mjs";export{a as Description};
@@ -0,0 +1,4 @@
1
+ export { Description } from './description.mjs';
2
+ import 'react';
3
+ import './use-description.mjs';
4
+ import '@jamsrui/utils';
package/dist/index.mjs ADDED
@@ -0,0 +1 @@
1
+ "use client";import{a as e}from"./chunk-ZHXXXWPD.mjs";import"./chunk-G753CSOL.mjs";export{e as Description};
@@ -0,0 +1,11 @@
1
+ import { UIProps } from '@jamsrui/utils';
2
+
3
+ declare const useDescription: (props: useDescription.Props) => useDescription.ReturnType;
4
+ declare namespace useDescription {
5
+ interface ReturnType extends UIProps<"p"> {
6
+ }
7
+ interface Props extends UIProps<"p"> {
8
+ }
9
+ }
10
+
11
+ export { useDescription };
@@ -0,0 +1 @@
1
+ import{a}from"./chunk-G753CSOL.mjs";export{a as useDescription};
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "@jamsrui/description",
3
+ "version": "0.0.5",
4
+ "peerDependencies": {
5
+ "react": ">=19"
6
+ },
7
+ "dependencies": {
8
+ "@jamsrui/hooks": "^0.0.12",
9
+ "@jamsrui/utils": "^0.0.12"
10
+ },
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": "./dist/index.mjs"
15
+ }
16
+ },
17
+ "description": "A modern and beautiful Next.js UI components library.",
18
+ "keywords": [
19
+ "react",
20
+ "ui",
21
+ "UI components",
22
+ "Next.js",
23
+ "React",
24
+ "JamsrUI",
25
+ "jamsr-ui",
26
+ "TypeScript"
27
+ ],
28
+ "sideEffects": false,
29
+ "license": "MIT",
30
+ "author": "@jamsrworld",
31
+ "repository": {
32
+ "type": "git",
33
+ "url": "https://github.com/jamsrworld/jamsr-ui"
34
+ },
35
+ "bugs": {
36
+ "url": "https://github.com/jamsrworld/jamsr-ui/issues"
37
+ },
38
+ "homepage": "https://jamsr-ui.jamsrworld.com",
39
+ "files": [
40
+ "dist",
41
+ "README",
42
+ "README.md",
43
+ "package.json",
44
+ "LICENSE"
45
+ ]
46
+ }