Skip to content

Commit a394fdf

Browse files
Rename to use ATXP
1 parent 5f49642 commit a394fdf

File tree

12 files changed

+24
-24
lines changed

12 files changed

+24
-24
lines changed

CLAUDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Theme System Maintenance Guide
22

3-
Quick reference for maintaining themes in the Circuit & Chisel Design System.
3+
Quick reference for maintaining themes in the ATXP Design System.
44

55
## File Structure
66

FIGMA_SYNC.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,4 +323,4 @@ For questions or issues:
323323
---
324324

325325
**Last Updated**: 2024-12-19
326-
**Maintainers**: Circuit & Chisel Team
326+
**Maintainers**: ATXP Team

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (c) 2025, Circuit and Chisel, Inc.
1+
Copyright (c) 2025, ATXP, Inc.
22

33
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Circuit & Chisel Design System
1+
# ATXP Design System
22

33
A React component library built with TypeScript, Tailwind CSS, and based on our Figma design system.
44

@@ -191,7 +191,7 @@ pnpm typecheck
191191

192192
## Syncing with Figma
193193

194-
This design system is built from our Figma designs. When the design team updates components in Figma, follow this workflow to sync changes:
194+
This design system is built from Figma designs. When the design team updates components in Figma, follow this workflow to sync changes:
195195

196196
### Prerequisites
197197

THEMES.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Theme System
22

3-
Circuit & Chisel Design System supports multiple themes with easy runtime switching.
3+
ATXP Design System supports multiple themes with easy runtime switching.
44

55
## Available Themes
66

@@ -19,8 +19,8 @@ Circuit & Chisel Design System supports multiple themes with easy runtime switch
1919
The easiest way to use themes in a React application is with the `ThemeProvider`:
2020

2121
```tsx
22-
import { ThemeProvider } from '@circuitandchisel/design-system';
23-
import '@circuitandchisel/design-system/styles.css';
22+
import { ThemeProvider } from '@atxp/design-system';
23+
import '@atxp/design-system/styles.css';
2424

2525
function App() {
2626
return (
@@ -44,7 +44,7 @@ function App() {
4444
Access and control themes from any component:
4545

4646
```tsx
47-
import { useTheme } from '@circuitandchisel/design-system';
47+
import { useTheme } from '@atxp/design-system';
4848

4949
function ThemeToggle() {
5050
const { theme, setTheme, actualTheme } = useTheme();
@@ -153,7 +153,7 @@ You can create custom themes by adding CSS with data attribute selectors:
153153
### 2. Import your custom theme
154154

155155
```tsx
156-
import '@circuitandchisel/design-system/styles.css';
156+
import '@atxp/design-system/styles.css';
157157
import './custom-theme.css';
158158
```
159159

@@ -326,7 +326,7 @@ function App() {
326326

327327
1. Ensure you've imported the styles:
328328
```tsx
329-
import '@circuitandchisel/design-system/styles.css';
329+
import '@atxp/design-system/styles.css';
330330
```
331331

332332
2. Check that ThemeProvider wraps your app:

docs/LLM_GUIDE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
# Circuit & Chisel Design System - LLM Agent Quick Start Guide
1+
# ATXP Design System - LLM Agent Quick Start Guide
22

3-
**Purpose**: This guide helps LLM coding agents effectively use the Circuit & Chisel Design System to generate correct, accessible React components.
3+
**Purpose**: This guide helps LLM coding agents effectively use the ATXP Design System to generate correct, accessible React components.
44

55
**Target Audience**: AI coding assistants, code generation tools, and LLM agents
66

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "@atxp/design-system",
33
"version": "0.1.2",
44
"type": "module",
5-
"description": "Circuit & Chisel Design System - React component library",
5+
"description": "ATXP Design System - React component library",
66
"main": "./dist/index.cjs",
77
"module": "./dist/index.js",
88
"types": "./dist/index.d.ts",
@@ -35,18 +35,18 @@
3535
"components",
3636
"design-system",
3737
"ui",
38-
"circuit-and-chisel"
38+
"atxp"
3939
],
40-
"author": "Circuit & Chisel",
40+
"author": "ATXP",
4141
"license": "MIT",
4242
"repository": {
4343
"type": "git",
44-
"url": "https://github.com/circuitandchisel/design-system.git"
44+
"url": "https://github.com/atxp-dev/design-system.git"
4545
},
4646
"bugs": {
47-
"url": "https://github.com/circuitandchisel/design-system/issues"
47+
"url": "https://github.com/atxp-dev/design-system/issues"
4848
},
49-
"homepage": "https://github.com/circuitandchisel/design-system#readme",
49+
"homepage": "https://github.com/atxp-dev/design-system#readme",
5050
"sideEffects": false,
5151
"peerDependencies": {
5252
"react": "^18.0.0 || ^19.0.0",

render.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ services:
22
- type: web
33
name: design-system-storybook
44
runtime: static
5-
repo: https://github.com/circuitandchisel/design-system
5+
repo: https://github.com/atxp-dev/design-system
66
buildCommand: pnpm install --frozen-lockfile && pnpm run build-storybook
77
staticPublishPath: storybook-static
88
autoDeployTrigger: commit

src/components/Icon/Icon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import { cn } from '@/lib/utils';
1212
*
1313
* @example
1414
* ```tsx
15-
* import { Icon } from '@circuitandchisel/design-system';
15+
* import { Icon } from '@atxp/design-system';
1616
* import { AlertCircle } from 'lucide-react';
1717
*
1818
* <Icon icon={AlertCircle} />

src/components/Theme/Theme.stories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { Badge } from '@/components/Badge';
66
import { Alert } from '@/components/Alert';
77

88
/**
9-
* The Circuit & Chisel Design System supports multiple themes with easy runtime switching.
9+
* The ATXP Design System supports multiple themes with easy runtime switching.
1010
*
1111
* ## Available Themes
1212
* - **light** - Primary brand theme (default)

0 commit comments

Comments
 (0)