@ramme-io/ui 1.0.2 → 1.0.3

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.
Files changed (3) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +91 -6
  3. package/package.json +1 -1
package/LICENSE ADDED
@@ -0,0 +1,21 @@
1
+ MIT License
2
+
3
+ Copyright (c) 2025 Excesspool Limited Liability Company
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,18 +1,35 @@
1
- # Ramme App Starter
1
+ # Ramme UI
2
2
 
3
- [![NPM Version](https://img.shields.io/npm/v/@ramme-io/create-app.svg)](https://www.npmjs.com/package/@ramme-io/create-app) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
3
+ [![NPM Version](https://img.shields.io/npm/v/@ramme-io/create-app.svg)](https://www.npmjs.com/package/@ramme-io/ui) [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
4
4
 
5
- **The clean-room environment for modern product design.**
5
+ **The structural frame for the modern web.**
6
6
 
7
- This repository is the official scaffolding tool for the Ramme ecosystem. It automates the setup of a production-grade frontend environment, pre-wiring the **Ramme UI** component library with the industry's most robust open-source technologies.
7
+ Ramme UI is a curated bundle of industry-standard libraries, accessible components, and architectural best practices designed for rapid prototyping.
8
8
 
9
- Designed for speed and structural integrity, this starter kit removes the friction of configuration so you can move from concept to interactive prototype in seconds.
9
+ It creates a "Golden Path" for product designers and engineers who need to validate ideas quickly without getting bogged down in configuration. By bundling the best open-source tools into a cohesive system, Ramme allows you to build high-fidelity, interactive prototypes that are production-ready from day one.
10
+
11
+ ---
12
+
13
+ ## The Architecture
14
+ Ramme (Danish for "Frame") is not about reinventing the wheel. It is about providing a solid steel frame so you can focus on the walls and windows.
15
+
16
+ We have orchestrated the most robust third-party libraries in the ecosystem into a single, opinionated toolkit:
17
+
18
+ * **Engine:** React 19+
19
+ * **Styling:** Tailwind CSS (configured for rapid iteration)
20
+ * **Primitives:** Radix UI (for unstyled, accessible interactive elements)
21
+ * **Motion:** Framer Motion (for high-fidelity interaction design)
22
+ * **Icons:** Lucide React
23
+
24
+ This is not a "walled garden." It is a standardized set of building materials that respects your need for speed and flexibility.
10
25
 
11
26
  ---
12
27
 
13
28
  ## Quick Start
14
29
 
15
- To scaffold a new project, run the initialization command in your terminal. This will generate a fresh directory with all dependencies linked and configured.
30
+ The fastest way to start building is to use our CLI tool, which scaffolds a Vite-powered application with the Ramme Design System pre-configured.
31
+
32
+ Run the following command in your terminal:
16
33
 
17
34
  *(Replace `my-new-project` with your desired folder name).*
18
35
 
@@ -64,6 +81,70 @@ This starter kit is not a proprietary framework; it is an opinionated orchestrat
64
81
 
65
82
  ---
66
83
 
84
+ ## Manual Installation
85
+
86
+ If you are adding Ramme to an existing project, install the core package:
87
+
88
+ ```bash
89
+ npm install @ramme-io/ui
90
+ # or
91
+ pnpm add @ramme-io/ui
92
+ ```
93
+
94
+ ---
95
+
96
+ ## Component Usage
97
+
98
+ Ramme components are designed to be composable and intuitive.
99
+
100
+ ```tsx
101
+ import React from 'react';
102
+ import { Button, Card, PageHeader } from '@ramme-io/ui';
103
+ import { ArrowRight } from 'lucide-react';
104
+
105
+ function LandingPage() {
106
+ return (
107
+ <div className="p-8 max-w-4xl mx-auto">
108
+ <PageHeader
109
+ title="Prototype Faster."
110
+ description="Stop fighting with config files. Start designing in code."
111
+ />
112
+
113
+ <Card className="mt-8 p-6 border-neutral-200 shadow-sm">
114
+ <h3 className="text-lg font-medium mb-2">Ready to build?</h3>
115
+ <p className="text-neutral-600 mb-6">
116
+ This component is accessible, responsive, and themable by default.
117
+ </p>
118
+ <Button variant="default" onClick={() => console.log('Launch')}>
119
+ Initialize Project <ArrowRight className="ml-2 h-4 w-4" />
120
+ </Button>
121
+ </Card>
122
+ </div>
123
+ );
124
+ }
125
+
126
+ export default LandingPage;
127
+ ```
128
+
129
+ ---
130
+
131
+ ## Local Development
132
+
133
+ If you want to contribute to the framework or customize the primitives, you can run our component workbench locally.
134
+
135
+ 1. Install Dependencies:
136
+
137
+ ```bash
138
+ pnpm install
139
+ ```
140
+
141
+ 2. Run Storybook: This starts the local development environment where you can test components in isolation.
142
+
143
+ ```bash
144
+ pnpm run storybook
145
+ ```
146
+ ---
147
+
67
148
  ## The Ramme Ecosystem
68
149
 
69
150
  This tool is part of a suite of developer resources maintained by **Excesspool Limited Liability Company**:
@@ -73,6 +154,10 @@ This tool is part of a suite of developer resources maintained by **Excesspool L
73
154
 
74
155
  ---
75
156
 
157
+ ## Contributing
158
+
159
+ We welcome contributions from the community. Please fork the repository and submit a pull request. For major architectural changes, please open an issue first to discuss the proposed direction.
160
+
76
161
  ## License
77
162
 
78
163
  Copyright © 2025 Excesspool Limited Liability Company.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ramme-io/ui",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "description": "The structural component library for the Ramme Framework.",
5
5
  "private": false,
6
6
  "main": "./dist/index.umd.js",