Skip to content
This repository was archived by the owner on Jul 31, 2026. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
c340af6
feat: do the alpha
farazcsk Jun 3, 2025
4834ba7
fix: undo
adaam2 Jun 19, 2025
96fa343
feat: trigger
adaam2 Jun 19, 2025
f8be026
feat: trigger
adaam2 Jun 19, 2025
e42b0b6
feat: trigger2
adaam2 Jun 19, 2025
d9d99c9
feat: restore wip shadcn theme
farazcsk Jun 23, 2025
850189a
feat: add text utils
farazcsk Jun 23, 2025
d889d5f
feat: export raw css
farazcsk Jun 23, 2025
615f3e5
fix: add globals file to exports
farazcsk Jun 23, 2025
296ea81
feat: add gradient util
farazcsk Jun 23, 2025
6d4d517
feat: add background-pure
farazcsk Jun 23, 2025
d07fad4
feat: add utilities from gram
farazcsk Jun 25, 2025
69fc3d0
fix: remove hardcoded color usage
farazcsk Jun 25, 2025
4754b17
feat: add border-gradient-primary utility
farazcsk Jun 25, 2025
c93d3fd
fix: text-colors
farazcsk Jun 25, 2025
2d67fa2
feat: split up globals file into base + utilities
farazcsk Jun 25, 2025
f6414ba
feat: file cleanup
farazcsk Jun 25, 2025
cec3003
feat: documentation
farazcsk Jun 25, 2025
9c5feba
feat: fonts
farazcsk Jun 25, 2025
30401de
fix: lint
farazcsk Jun 25, 2025
ef3adad
feat: add neutral border utils
farazcsk Jun 28, 2025
5d67ee7
feat: add link border utils
farazcsk Jun 28, 2025
d78b1a0
feat: update accent color token value
farazcsk Jul 8, 2025
f959202
feat: update shadcn destructive token
farazcsk Jul 8, 2025
6ad2277
feat: merge main (#225)
mattlalonde Jul 9, 2025
a07eea6
fix: token values
farazcsk Jul 9, 2025
eb2f111
fix: muted-text-foreground colors
farazcsk Jul 9, 2025
1006b45
fix: update dark mode primary tokens
farazcsk Jul 9, 2025
8503e09
fix: ai chat component backgrounds
farazcsk Jul 9, 2025
3df59c9
feat: sandbox fixes (#226)
mattlalonde Jul 10, 2025
558f9ee
feat: slim nav bar logo (#227)
mattlalonde Jul 10, 2025
ae7da03
feat: export tabs (#228)
mattlalonde Jul 11, 2025
0d7a503
feat: code editor (#229)
mattlalonde Jul 11, 2025
b2db023
feat: add tailwind utilities (#235)
mattlalonde Jul 17, 2025
cdb9987
feat: extend tailwind merge (#236)
mattlalonde Jul 17, 2025
ce70130
feat: add strokes and fix colors (#237)
mattlalonde Jul 18, 2025
2b770e2
feat: refactor and typo fixes (#238)
mattlalonde Jul 20, 2025
f0272ed
feat: button typography (#239)
mattlalonde Jul 21, 2025
15e7551
feat: icon needs to have use client (#240)
mattlalonde Jul 21, 2025
ee7d94e
fix: add loading state for ai message
farazcsk Jul 22, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ on:
push:
branches:
- main
- alpha

permissions:
contents: write # to be able to publish a GitHub release
Expand Down
2 changes: 1 addition & 1 deletion .releaserc.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"branches": ["main"],
"branches": ["main", { "name": "alpha", "prerelease": true }],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
Expand Down
47 changes: 47 additions & 0 deletions .storybook/fonts.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
/*
* Custom Fonts for Storybook
* Fonts are loaded from .storybook/public/fonts/
*/

/* Diatype Font Family */
@font-face {
font-family: "Diatype";
src: url("/fonts/diatype/ABCDiatype-Regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: block;
}

@font-face {
font-family: "Diatype";
src: url("/fonts/diatype/ABCDiatype-Light.woff2") format("woff2");
font-weight: 300;
font-style: normal;
font-display: block;
}

/* Diatype Mono Font Family */
@font-face {
font-family: "Diatype Mono";
src: url("/fonts/diatype-mono/ABCDiatypeMono-Regular.woff2") format("woff2");
font-weight: 400;
font-style: normal;
font-display: block;
}

@font-face {
font-family: "Diatype Mono";
src: url("/fonts/diatype-mono/ABCDiatypeMono-Light.woff2") format("woff2");
font-weight: 300;
font-style: normal;
font-display: block;
}

/* Tobias Font Family */
@font-face {
font-family: "Tobias";
src: url("/fonts/tobias/Tobias-Thin.woff2") format("woff2");
font-weight: 100;
font-style: normal;
font-display: block;
}
1 change: 1 addition & 0 deletions .storybook/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ const config: StorybookConfig = {
name: '@storybook/react-vite',
options: {},
},
staticDirs: ['./public'],
core: {
builder: '@storybook/builder-vite',
},
Expand Down
7 changes: 3 additions & 4 deletions .storybook/manager.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
import { addons } from '@storybook/manager-api'
import { create } from '@storybook/theming'

// Define the colors and styles for the theme
Expand Down Expand Up @@ -36,6 +35,6 @@ export const speakeasyTheme = create({
brandUrl: 'https://speakeasy.com',
})

addons.setConfig({
theme: speakeasyTheme,
})
// addons.setConfig({
// theme: speakeasyTheme,
// })
1 change: 1 addition & 0 deletions .storybook/preview.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import type { Preview } from '@storybook/react'
import '../src/global.css'
import './fonts.css'
import React from 'react'
import { allModes } from './modes'
import { withThemeByClassName } from '@storybook/addon-themes'
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added .storybook/public/fonts/tobias/Tobias-Thin.woff2
Binary file not shown.
Loading