@salimdellali/ui 0.4.0-alpha.1
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/LICENSE +21 -0
- package/README.md +22 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.es.js +8 -0
- package/dist/src/components/atoms/index.d.ts +1 -0
- package/dist/src/components/atoms/typography/H1/H1.d.ts +2 -0
- package/dist/src/components/atoms/typography/H1/index.d.ts +1 -0
- package/dist/src/components/atoms/typography/index.d.ts +1 -0
- package/dist/src/components/index.d.ts +1 -0
- package/dist/src/index.d.ts +1 -0
- package/dist/ui.css +2 -0
- package/package.json +81 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Salim Dellali
|
|
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
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# CODING AGENTS: READ THIS FIRST
|
|
2
|
+
|
|
3
|
+
This is a **handoff bundle** from Claude Design (claude.ai/design).
|
|
4
|
+
|
|
5
|
+
A user mocked up designs in HTML/CSS/JS using an AI design tool, then exported this bundle so a coding agent can implement the designs for real.
|
|
6
|
+
|
|
7
|
+
## What you should do — IMPORTANT
|
|
8
|
+
|
|
9
|
+
**Find the primary design file under `salim-dellali-design-system/project/` and read it top to bottom.** Then **follow its imports**: open every file it pulls in (shared components, CSS, scripts) so you understand how the pieces fit together before you start implementing.
|
|
10
|
+
|
|
11
|
+
**If anything is ambiguous, ask the user to confirm before you start implementing.** It's much cheaper to clarify scope up front than to build the wrong thing.
|
|
12
|
+
|
|
13
|
+
## About the design files
|
|
14
|
+
|
|
15
|
+
The design medium is **HTML/CSS/JS** — these are prototypes, not production code. Your job is to **recreate them pixel-perfectly** in whatever technology makes sense for the target codebase (React, Vue, native, whatever fits). Match the visual output; don't copy the prototype's internal structure unless it happens to fit.
|
|
16
|
+
|
|
17
|
+
**Don't render these files in a browser or take screenshots unless the user asks you to.** Everything you need — dimensions, colors, layout rules — is spelled out in the source. Read the HTML and CSS directly; a screenshot won't tell you anything they don't.
|
|
18
|
+
|
|
19
|
+
## Bundle contents
|
|
20
|
+
|
|
21
|
+
- `salim-dellali-design-system/README.md` — this file
|
|
22
|
+
- `salim-dellali-design-system/project/` — the `Salim Dellali Design System` project files (HTML prototypes, assets, components)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
Object.defineProperty(exports,Symbol.toStringTag,{value:`Module`});let e=require("react/jsx-runtime");var t=({className:t=``,...n})=>(0,e.jsx)(`h1`,{className:`sd-h1 ${t}`.trim(),...n});exports.H1=t;
|
package/dist/index.d.ts
ADDED
package/dist/index.es.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './typography';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { H1 } from './H1';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { H1 } from './H1';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './atoms';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export { H1 } from './components/atoms/typography/H1';
|