tekivex-ui 3.3.0 → 3.4.0

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.
@@ -0,0 +1,27 @@
1
+ import { type CSSProperties } from 'react';
2
+ export interface HeatmapDataPoint {
3
+ date: string;
4
+ value: number;
5
+ }
6
+ export interface TkxCalendarHeatmapProps {
7
+ data: HeatmapDataPoint[];
8
+ endDate?: Date | string;
9
+ startDate?: Date | string;
10
+ colors?: [string, string, string, string, string];
11
+ cellSize?: number;
12
+ gap?: number;
13
+ showMonthLabels?: boolean;
14
+ showWeekdayLabels?: boolean;
15
+ onCellClick?: (point: {
16
+ date: string;
17
+ value: number;
18
+ }) => void;
19
+ formatTooltip?: (point: {
20
+ date: string;
21
+ value: number;
22
+ }) => string;
23
+ ariaLabel?: string;
24
+ className?: string;
25
+ style?: CSSProperties;
26
+ }
27
+ export declare function TkxCalendarHeatmap({ data, endDate, startDate, colors, cellSize, gap, showMonthLabels, showWeekdayLabels, onCellClick, formatTooltip, ariaLabel, className, style, }: TkxCalendarHeatmapProps): import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,12 @@
1
+ import { type CSSProperties, type ReactNode } from 'react';
2
+ import type { ThemeTokens } from '../themes';
3
+ export interface TkxThemeStudioProps {
4
+ initialTheme?: ThemeTokens;
5
+ onChange?: (tokens: ThemeTokens) => void;
6
+ onExport?: (format: 'json' | 'ts' | 'css', text: string) => void;
7
+ preview?: ReactNode;
8
+ exportName?: string;
9
+ className?: string;
10
+ style?: CSSProperties;
11
+ }
12
+ export declare function TkxThemeStudio({ initialTheme, onChange, onExport, preview, exportName, className, style, }: TkxThemeStudioProps): import("react/jsx-runtime").JSX.Element;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "tekivex-ui",
3
- "version": "3.3.0",
3
+ "version": "3.4.0",
4
4
  "description": "Production-grade React component library — 99 components, WCAG 2.1 AAA, WAI-ARIA 1.2, built-in security kernel, built-in charts, headless primitives, zero-runtime CSS engine, 35-locale i18n, Indian KYC pack, TypeScript-first. v3.0.0 ships with 1034 passing tests.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",