- Introduced new styles for form components including input, textarea, and input number. - Created a new TextArea component with status and variant support. - Updated global styles to include form variables and component styles. - Added type definitions for form components to ensure consistency. - Integrated new components into the main component index for easy access.
12 lines
214 B
TypeScript
12 lines
214 B
TypeScript
// packages/ui/env.d.ts
|
|
|
|
declare module '*.module.css' {
|
|
const classes: { readonly [key: string]: string };
|
|
export default classes;
|
|
}
|
|
|
|
declare module '*.css' {
|
|
const content: any;
|
|
export default content;
|
|
}
|