Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
7 changes: 7 additions & 0 deletions .changepacks/changepack_log_csstype_direct_types.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
{
"changes": {
"packages/react/package.json": "Patch"
},
"note": "Use csstype-extra properties directly to restore missing timeline trigger props and remove stale CSS type generation checks",
"date": "2026-09-14T00:00:00.000Z"
}
2 changes: 1 addition & 1 deletion bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions packages/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,9 @@
"version": "1.0.41",
"type": "module",
"scripts": {
"generate:css-types": "bun scripts/generate-css-properties.ts",
"lint": "eslint && bun ../../node_modules/@typescript/native/bin/tsc --noEmit && bun run test:types",
"build": "bun run test:types && bun ../../node_modules/@typescript/native/bin/tsc && vite build",
"test:types": "bun scripts/generate-css-properties.ts --check && bun ../../node_modules/@typescript/native/bin/tsc --ignoreConfig --noEmit --strict --jsx react-jsx --moduleResolution bundler --module esnext --target esnext --types bun --skipLibCheck type-tests/custom-shorthand.ts"
"test:types": "bun ../../node_modules/@typescript/native/bin/tsc --ignoreConfig --noEmit --strict --jsx react-jsx --moduleResolution bundler --module esnext --target esnext --types bun --skipLibCheck type-tests/custom-shorthand.ts"
},
"publishConfig": {
"access": "public"
Expand Down
64 changes: 0 additions & 64 deletions packages/react/scripts/generate-css-properties.ts

This file was deleted.

9 changes: 9 additions & 0 deletions packages/react/src/types/props/css-properties.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { Properties } from 'csstype-extra'

import type { ResponsiveValue } from '../responsive-value'

type Responsive<T> = { [K in keyof T]?: ResponsiveValue<T[K]> }

// Keep an interface boundary so consumers can reuse cached type relationships.
// eslint-disable-next-line @typescript-eslint/no-empty-object-type
export interface DevupCssProperties extends Responsive<Properties> {}
Loading
Loading