@donkit-ai/design-system 1.1.7 → 1.1.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/index.d.ts +4 -0
  2. package/package.json +1 -1
package/dist/index.d.ts CHANGED
@@ -2,6 +2,7 @@ import type {
2
2
  ReactNode,
3
3
  ReactElement,
4
4
  MouseEvent,
5
+ CSSProperties,
5
6
  HTMLAttributes,
6
7
  ButtonHTMLAttributes,
7
8
  InputHTMLAttributes,
@@ -102,6 +103,8 @@ export interface SelectProps {
102
103
  size?: Size;
103
104
  disabled?: boolean;
104
105
  id?: string;
106
+ className?: string;
107
+ style?: CSSProperties;
105
108
  }
106
109
 
107
110
  export declare function Select(props: SelectProps): JSX.Element;
@@ -270,6 +273,7 @@ export interface CodeProps extends HTMLAttributes<HTMLElement> {
270
273
  collapsible?: boolean;
271
274
  title?: string;
272
275
  defaultExpanded?: boolean;
276
+ language?: string;
273
277
  }
274
278
 
275
279
  export declare function Code(props: CodeProps): JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@donkit-ai/design-system",
3
- "version": "1.1.7",
3
+ "version": "1.1.8",
4
4
  "description": "Donkit Design System - minimal design tokens and React components",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs.js",