@donkit-ai/design-system 1.4.42 → 1.4.44
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.
- package/dist/index.d.ts +19 -0
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -873,3 +873,22 @@ export interface ThinkingDotProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
873
873
|
}
|
|
874
874
|
|
|
875
875
|
export declare function ThinkingDot(props: ThinkingDotProps): JSX.Element;
|
|
876
|
+
|
|
877
|
+
// ─── Scrollable ───────────────────────────────────────────────────────────────
|
|
878
|
+
|
|
879
|
+
export interface ScrollableProps extends HTMLAttributes<HTMLDivElement> {
|
|
880
|
+
axis?: 'x' | 'y' | 'both';
|
|
881
|
+
children?: ReactNode;
|
|
882
|
+
}
|
|
883
|
+
|
|
884
|
+
export declare function Scrollable(props: ScrollableProps): JSX.Element;
|
|
885
|
+
|
|
886
|
+
// ─── EngineerGrid ─────────────────────────────────────────────────────────────
|
|
887
|
+
|
|
888
|
+
export interface EngineerGridProps extends HTMLAttributes<HTMLDivElement> {
|
|
889
|
+
variant?: 'light' | 'dark';
|
|
890
|
+
glow?: boolean;
|
|
891
|
+
mask?: boolean;
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
export declare function EngineerGrid(props: EngineerGridProps): JSX.Element;
|