Skip to content

Commit e95179e

Browse files
authored
chore: rename (#28)
1 parent 68ff9e1 commit e95179e

File tree

273 files changed

+148
-151
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

273 files changed

+148
-151
lines changed

.claude/commands/review-commit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Please review the **staged changes** (git diff --cached) in this repository agai
88

99
## Context
1010

11-
This is the **Databricks Apps Kit** (@databricks/app-kit) - a modular TypeScript SDK for building Databricks apps with workflows and plugins.
11+
This is the **Databricks Apps Kit** (@databricks/appkit) - a modular TypeScript SDK for building Databricks apps with workflows and plugins.
1212

1313
## SDK Core Principles
1414

.claude/commands/review-pr.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Please review **all changes in the current branch** (compared to $ARGUMENTS or m
99

1010
## Context
1111

12-
This is the **Databricks AppKit** (@databricks/app-kit) - a modular TypeScript SDK for building Databricks apps with workflows and plugins.
12+
This is the **Databricks AppKit** (@databricks/appkit) - a modular TypeScript SDK for building Databricks apps with workflows and plugins.
1313

1414
## SDK Core Principles
1515

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
name: Detect Changes
2323
outputs:
2424
docs: ${{ steps.filter.outputs.docs }}
25-
app-kit: ${{ steps.filter.outputs.app-kit }}
25+
appkit: ${{ steps.filter.outputs.appkit }}
2626
steps:
2727
- uses: actions/checkout@v4
2828
- uses: dorny/paths-filter@v3
@@ -31,7 +31,7 @@ jobs:
3131
filters: |
3232
docs:
3333
- 'docs/**'
34-
app-kit:
34+
appkit:
3535
- '!docs/**'
3636
3737
lint_and_typecheck:
@@ -61,7 +61,7 @@ jobs:
6161
test:
6262
name: Unit Tests
6363
needs: detect-changes
64-
if: needs.detect-changes.outputs.app-kit == 'true'
64+
if: needs.detect-changes.outputs.appkit == 'true'
6565
runs-on:
6666
group: databricks-protected-runner-group
6767
labels: linux-ubuntu-latest

CLAUDE.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ Databricks AppKit is a modular TypeScript SDK for building Databricks applicatio
1414

1515
```
1616
/packages/
17-
/app-kit/ - Core SDK with plugin architecture
18-
/app-kit-ui/ - React components and JS utilities
17+
/appkit/ - Core SDK with plugin architecture
18+
/appkit-ui/ - React components and JS utilities
1919
/shared/ - Shared TypeScript types across packages
2020
2121
/apps/
@@ -70,8 +70,8 @@ pnpm test:watch # Run tests in watch mode
7070
```
7171

7272
**Test Projects:**
73-
- `app-kit-ui`: Uses jsdom environment (for React components)
74-
- `app-kit`: Uses node environment (for Node.js SDK)
73+
- `appkit-ui`: Uses jsdom environment (for React components)
74+
- `appkit`: Uses node environment (for Node.js SDK)
7575

7676
### Code Quality
7777
```bash
@@ -113,7 +113,7 @@ AppKit uses a **phase-based plugin architecture** with three initialization phas
113113

114114
**Creating a Plugin:**
115115
```typescript
116-
import { Plugin, toPlugin } from '@databricks/app-kit';
116+
import { Plugin, toPlugin } from '@databricks/appkit';
117117

118118
class MyPlugin extends Plugin {
119119
name: string = "my-plugin";
@@ -257,7 +257,7 @@ Biome is used instead of ESLint/Prettier for faster performance:
257257
pnpm add -Dw <package>
258258

259259
# Package-specific dependencies
260-
pnpm --filter=@databricks/app-kit add <package>
260+
pnpm --filter=@databricks/appkit add <package>
261261

262262
# App dependencies
263263
pnpm --filter=sdk-playground add <package>
@@ -273,7 +273,7 @@ Packages should:
273273

274274
### Type Generation
275275

276-
`packages/app-kit/src/utils/type-generator.ts` creates plugin registry types at build time. This enables:
276+
`packages/appkit/src/utils/type-generator.ts` creates plugin registry types at build time. This enables:
277277
```typescript
278278
const AppKit = await createApp({ plugins: [...] });
279279
AppKit.myPlugin.method(); // Typed based on registered plugins
@@ -291,7 +291,7 @@ The reference app demonstrates AppKit usage:
291291
**Frontend (`apps/dev-playground/client/`):**
292292
- Vite + React 19 + TypeScript
293293
- TanStack Router for file-based routing (routes in `src/routes/`)
294-
- Components from `@databricks/app-kit-ui`
294+
- Components from `@databricks/appkit-ui`
295295
- Route files: `src/routes/<page-name>.route.tsx`
296296
- Root layout: `src/routes/__root.tsx`
297297

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# App Kit
1+
# AppKit
22

33
> [!WARNING]
44
> ## ⚠️ PREVIEW - NOT FOR PRODUCTION USE
@@ -17,7 +17,7 @@ See [CONTRIBUTING.md](CONTRIBUTING.md) for development setup and contribution gu
1717

1818
## Documentation
1919

20-
The `docs/` directory contains the App Kit documentation site, built with Docusaurus.
20+
The `docs/` directory contains the AppKit documentation site, built with Docusaurus.
2121

2222
**Working with docs:**
2323

apps/clean-app/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
"preview": "vite preview"
1111
},
1212
"dependencies": {
13-
"@databricks/app-kit": "workspace:*",
13+
"@databricks/appkit": "workspace:*",
1414
"react": "^19.2.0",
1515
"react-dom": "^19.2.0"
1616
},

apps/clean-app/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
import { createApp, server } from "@databricks/app-kit";
1+
import { createApp, server } from "@databricks/appkit";
22

33
createApp({
44
plugins: [server()],

apps/dev-playground/client/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<div id="root"></div>
1010
<script>
1111
(function() {
12-
const THEME_STORAGE_KEY = "app-kit-playground-theme";
12+
const THEME_STORAGE_KEY = "appkit-playground-theme";
1313
const storedTheme = localStorage.getItem(THEME_STORAGE_KEY);
1414
const root = document.documentElement;
1515

apps/dev-playground/client/package-lock.json

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

apps/dev-playground/client/src/appKitTypes.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
// Auto-generated by AppKit - DO NOT EDIT
22
// Generated by 'npx appkit-generate-types' or Vite plugin during build
3-
import "@databricks/app-kit-ui/react";
4-
import type { SQLTypeMarker, SQLStringMarker, SQLNumberMarker, SQLBooleanMarker, SQLBinaryMarker, SQLDateMarker, SQLTimestampMarker } from "@databricks/app-kit-ui/js";
3+
import "@databricks/appkit-ui/react";
4+
import type { SQLTypeMarker, SQLStringMarker, SQLNumberMarker, SQLBooleanMarker, SQLBinaryMarker, SQLDateMarker, SQLTimestampMarker } from "@databricks/appkit-ui/js";
55

6-
declare module "@databricks/app-kit-ui/react" {
6+
declare module "@databricks/appkit-ui/react" {
77
interface QueryRegistry {
88
app_activity_heatmap: {
99
name: "app_activity_heatmap";

0 commit comments

Comments
 (0)