tekivex-ui 3.22.0 → 3.32.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.
- package/README.md +7 -5
- package/dist/headless.cjs +1 -1
- package/dist/headless.js +58 -55
- package/dist/i18n.cjs +1 -1
- package/dist/i18n.js +1 -1
- package/dist/index.cjs +1 -1
- package/dist/index.d.ts +17 -3
- package/dist/index.js +771 -749
- package/dist/src/components/TkxAccordion.d.ts +2 -1
- package/dist/src/components/TkxChat.d.ts +1 -1
- package/dist/src/components/TkxCode.d.ts +15 -0
- package/dist/src/components/TkxComboBox.d.ts +27 -0
- package/dist/src/components/TkxDatePicker.d.ts +4 -4
- package/dist/src/components/TkxDescriptions.d.ts +28 -0
- package/dist/src/components/TkxDrawer.d.ts +2 -1
- package/dist/src/components/TkxField.d.ts +19 -0
- package/dist/src/components/TkxSEO.d.ts +6 -1
- package/dist/src/components/TkxSplitter.d.ts +25 -0
- package/dist/src/components/TkxTable.d.ts +1 -1
- package/dist/src/components/TkxTextarea.d.ts +15 -0
- package/dist/src/components/TkxToast.d.ts +15 -1
- package/dist/src/components/TkxTooltip.d.ts +7 -3
- package/dist/src/components/index.d.ts +6 -0
- package/dist/src/engine/wcag.d.ts +1 -1
- package/dist/src/headless/index.d.ts +3 -1
- package/dist/src/hooks/index.d.ts +16 -0
- package/dist/src/hooks/useVariableVirtualList.d.ts +25 -0
- package/dist/src/i18n/index.d.ts +7 -0
- package/package.json +1 -1
|
@@ -22,10 +22,11 @@ export interface TkxAccordionProps {
|
|
|
22
22
|
iconPosition?: 'left' | 'right';
|
|
23
23
|
iconStyle?: 'chevron' | 'plus' | 'arrow';
|
|
24
24
|
flush?: boolean;
|
|
25
|
+
headingLevel?: number;
|
|
25
26
|
className?: string;
|
|
26
27
|
style?: CSSProperties;
|
|
27
28
|
}
|
|
28
|
-
export declare function TkxAccordion({ items, multiple, defaultOpen, value: valueProp, onChange, variant, size, iconPosition, iconStyle, flush, className, style, }: TkxAccordionProps): import("react/jsx-runtime").JSX.Element;
|
|
29
|
+
export declare function TkxAccordion({ items, multiple, defaultOpen, value: valueProp, onChange, variant, size, iconPosition, iconStyle, flush, headingLevel, className, style, }: TkxAccordionProps): import("react/jsx-runtime").JSX.Element;
|
|
29
30
|
export declare namespace TkxAccordion {
|
|
30
31
|
var displayName: string;
|
|
31
32
|
}
|
|
@@ -27,5 +27,5 @@ export interface TkxChatBubbleProps {
|
|
|
27
27
|
avatarAssistant?: ReactNode;
|
|
28
28
|
}
|
|
29
29
|
export declare function TkxThinkingIndicator(): import("react/jsx-runtime").JSX.Element;
|
|
30
|
-
export declare function TkxChatBubble({ message, showTimestamp, avatarUser, avatarAssistant }: TkxChatBubbleProps): import("react/jsx-runtime").JSX.Element;
|
|
30
|
+
export declare function TkxChatBubble({ message, showTimestamp, avatarUser, avatarAssistant }: TkxChatBubbleProps): import("react/jsx-runtime").JSX.Element | null;
|
|
31
31
|
export declare function TkxChat({ messages, onSend, isLoading, placeholder, maxLength, showTimestamps, avatarUser, avatarAssistant, height, inputPosition, }: TkxChatProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type CSSProperties } from 'react';
|
|
2
|
+
export type TkxCodeLanguage = 'ts' | 'tsx' | 'js' | 'jsx' | 'json' | 'bash' | 'css' | 'html' | 'python' | 'text';
|
|
3
|
+
export interface TkxCodeProps {
|
|
4
|
+
code?: string;
|
|
5
|
+
language?: TkxCodeLanguage;
|
|
6
|
+
showLineNumbers?: boolean;
|
|
7
|
+
highlightLines?: number[];
|
|
8
|
+
copyable?: boolean;
|
|
9
|
+
filename?: string;
|
|
10
|
+
wrap?: boolean;
|
|
11
|
+
maxHeight?: number | string;
|
|
12
|
+
className?: string;
|
|
13
|
+
style?: CSSProperties;
|
|
14
|
+
}
|
|
15
|
+
export declare const TkxCode: import("react").ForwardRefExoticComponent<TkxCodeProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
import { type CSSProperties } from 'react';
|
|
2
|
+
export interface ComboBoxOption {
|
|
3
|
+
value: string;
|
|
4
|
+
label: string;
|
|
5
|
+
disabled?: boolean;
|
|
6
|
+
}
|
|
7
|
+
export interface TkxComboBoxProps {
|
|
8
|
+
label: string;
|
|
9
|
+
options?: ComboBoxOption[];
|
|
10
|
+
value?: string[];
|
|
11
|
+
defaultValue?: string[];
|
|
12
|
+
onChange?: (values: string[], selectedOptions: ComboBoxOption[]) => void;
|
|
13
|
+
placeholder?: string;
|
|
14
|
+
hint?: string;
|
|
15
|
+
error?: string;
|
|
16
|
+
isInvalid?: boolean;
|
|
17
|
+
isRequired?: boolean;
|
|
18
|
+
disabled?: boolean;
|
|
19
|
+
clearable?: boolean;
|
|
20
|
+
maxSelected?: number;
|
|
21
|
+
id?: string;
|
|
22
|
+
name?: string;
|
|
23
|
+
className?: string;
|
|
24
|
+
style?: CSSProperties;
|
|
25
|
+
}
|
|
26
|
+
export declare const TkxComboBox: import("react").ForwardRefExoticComponent<TkxComboBoxProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
27
|
+
export default TkxComboBox;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { type CSSProperties } from 'react';
|
|
2
2
|
export type DatePickerMode = 'single' | 'range' | 'multiple';
|
|
3
3
|
export type DatePickerView = 'day' | 'month' | 'year';
|
|
4
|
+
export type WeekStartsOn = 0 | 1 | 2 | 3 | 4 | 5 | 6;
|
|
4
5
|
export interface DatePreset {
|
|
5
6
|
label: string;
|
|
6
7
|
getValue: () => [Date, Date];
|
|
@@ -18,6 +19,8 @@ export interface TkxDatePickerProps {
|
|
|
18
19
|
disabledDates?: Date[] | ((date: Date) => boolean);
|
|
19
20
|
locale?: string;
|
|
20
21
|
dateFormat?: string;
|
|
22
|
+
weekStartsOn?: WeekStartsOn;
|
|
23
|
+
name?: string;
|
|
21
24
|
showTime?: boolean;
|
|
22
25
|
timeValue?: {
|
|
23
26
|
h: number;
|
|
@@ -40,7 +43,4 @@ export interface TkxDatePickerProps {
|
|
|
40
43
|
className?: string;
|
|
41
44
|
style?: CSSProperties;
|
|
42
45
|
}
|
|
43
|
-
export declare
|
|
44
|
-
export declare namespace TkxDatePicker {
|
|
45
|
-
var displayName: string;
|
|
46
|
-
}
|
|
46
|
+
export declare const TkxDatePicker: import("react").ForwardRefExoticComponent<TkxDatePickerProps & import("react").RefAttributes<HTMLInputElement>>;
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
import { type ReactNode, type CSSProperties } from 'react';
|
|
2
|
+
export interface TkxDescriptionsItem {
|
|
3
|
+
key?: string;
|
|
4
|
+
label: ReactNode;
|
|
5
|
+
children: ReactNode;
|
|
6
|
+
span?: number;
|
|
7
|
+
}
|
|
8
|
+
export interface TkxDescriptionsColumnMap {
|
|
9
|
+
xs?: number;
|
|
10
|
+
sm?: number;
|
|
11
|
+
md?: number;
|
|
12
|
+
lg?: number;
|
|
13
|
+
}
|
|
14
|
+
export interface TkxDescriptionsProps {
|
|
15
|
+
items?: TkxDescriptionsItem[];
|
|
16
|
+
title?: ReactNode;
|
|
17
|
+
extra?: ReactNode;
|
|
18
|
+
column?: number | TkxDescriptionsColumnMap;
|
|
19
|
+
bordered?: boolean;
|
|
20
|
+
layout?: 'horizontal' | 'vertical';
|
|
21
|
+
size?: 'small' | 'middle' | 'large';
|
|
22
|
+
colon?: boolean;
|
|
23
|
+
labelStyle?: CSSProperties;
|
|
24
|
+
contentStyle?: CSSProperties;
|
|
25
|
+
className?: string;
|
|
26
|
+
style?: CSSProperties;
|
|
27
|
+
}
|
|
28
|
+
export declare const TkxDescriptions: import("react").ForwardRefExoticComponent<TkxDescriptionsProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -7,9 +7,10 @@ export interface TkxDrawerProps {
|
|
|
7
7
|
placement?: DrawerPlacement;
|
|
8
8
|
size?: DrawerSize;
|
|
9
9
|
title?: ReactNode;
|
|
10
|
+
ariaLabel?: string;
|
|
10
11
|
children: ReactNode;
|
|
11
12
|
footer?: ReactNode;
|
|
12
13
|
closeOnOverlayClick?: boolean;
|
|
13
14
|
closeOnEsc?: boolean;
|
|
14
15
|
}
|
|
15
|
-
export declare function TkxDrawer({ isOpen, onClose, placement, size, title, children, footer, closeOnOverlayClick, closeOnEsc, }: TkxDrawerProps): import("react").ReactPortal | null;
|
|
16
|
+
export declare function TkxDrawer({ isOpen, onClose, placement, size, title, ariaLabel, children, footer, closeOnOverlayClick, closeOnEsc, }: TkxDrawerProps): import("react").ReactPortal | null;
|
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
import { type CSSProperties, type ReactElement, type ReactNode } from 'react';
|
|
2
|
+
export interface TkxFieldChildProps {
|
|
3
|
+
id: string;
|
|
4
|
+
'aria-describedby'?: string;
|
|
5
|
+
'aria-invalid'?: boolean;
|
|
6
|
+
'aria-required'?: boolean;
|
|
7
|
+
}
|
|
8
|
+
export interface TkxFieldProps {
|
|
9
|
+
label: string;
|
|
10
|
+
id?: string;
|
|
11
|
+
hint?: string;
|
|
12
|
+
error?: string;
|
|
13
|
+
isInvalid?: boolean;
|
|
14
|
+
isRequired?: boolean;
|
|
15
|
+
children?: ReactElement<TkxFieldChildProps> | ((field: TkxFieldChildProps) => ReactNode);
|
|
16
|
+
className?: string;
|
|
17
|
+
style?: CSSProperties;
|
|
18
|
+
}
|
|
19
|
+
export declare function TkxField({ label, id: idProp, hint, error, isInvalid, isRequired, children, className, style, }: TkxFieldProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -10,8 +10,13 @@ export interface TkxSEOProps {
|
|
|
10
10
|
locale?: string;
|
|
11
11
|
robots?: string;
|
|
12
12
|
schema?: object | object[];
|
|
13
|
+
articleAuthor?: string;
|
|
14
|
+
articlePublishedTime?: string;
|
|
15
|
+
articleModifiedTime?: string;
|
|
16
|
+
articleSection?: string;
|
|
17
|
+
articleTags?: string[];
|
|
13
18
|
}
|
|
14
|
-
export declare function TkxSEO({ title, description, canonical, keywords, image, twitterSite, twitterCreator, ogType, locale, robots, schema, }: TkxSEOProps): null;
|
|
19
|
+
export declare function TkxSEO({ title, description, canonical, keywords, image, twitterSite, twitterCreator, ogType, locale, robots, schema, articleAuthor, articlePublishedTime, articleModifiedTime, articleSection, articleTags, }: TkxSEOProps): null;
|
|
15
20
|
export declare const seoSchema: {
|
|
16
21
|
softwareApplication(data: {
|
|
17
22
|
name: string;
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { type ReactNode, type CSSProperties } from 'react';
|
|
2
|
+
export interface TkxSplitterPaneProps {
|
|
3
|
+
defaultSize?: number;
|
|
4
|
+
minSize?: number;
|
|
5
|
+
maxSize?: number;
|
|
6
|
+
className?: string;
|
|
7
|
+
style?: CSSProperties;
|
|
8
|
+
children?: ReactNode;
|
|
9
|
+
}
|
|
10
|
+
export interface TkxSplitterProps {
|
|
11
|
+
direction?: 'horizontal' | 'vertical';
|
|
12
|
+
sizes?: number[];
|
|
13
|
+
onResize?: (sizes: number[]) => void;
|
|
14
|
+
onResizeEnd?: (sizes: number[]) => void;
|
|
15
|
+
gutterSize?: number;
|
|
16
|
+
disabled?: boolean;
|
|
17
|
+
className?: string;
|
|
18
|
+
style?: CSSProperties;
|
|
19
|
+
children?: ReactNode;
|
|
20
|
+
}
|
|
21
|
+
export declare function TkxSplitterPane(props: TkxSplitterPaneProps): import("react/jsx-runtime").JSX.Element;
|
|
22
|
+
export declare namespace TkxSplitterPane {
|
|
23
|
+
var displayName: string;
|
|
24
|
+
}
|
|
25
|
+
export declare const TkxSplitter: import("react").ForwardRefExoticComponent<TkxSplitterProps & import("react").RefAttributes<HTMLDivElement>>;
|
|
@@ -29,4 +29,4 @@ export interface TkxTableProps<T extends Record<string, unknown>> {
|
|
|
29
29
|
bordered?: boolean;
|
|
30
30
|
compact?: boolean;
|
|
31
31
|
}
|
|
32
|
-
export declare function TkxTable<T extends Record<string, unknown>>({ columns, data, caption, sortable, stickyHeader, isLoading, emptyState, style, className, striped, maxHeight, rowHeight, virtualScroll, onLoadMore, hasMore, loadingMore, onRowClick, selectedRows, bordered, compact, }: TkxTableProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
32
|
+
export declare function TkxTable<T extends Record<string, unknown>>({ columns: columns_, data: data_, caption, sortable, stickyHeader, isLoading, emptyState, style, className, striped, maxHeight, rowHeight, virtualScroll, onLoadMore, hasMore, loadingMore, onRowClick, selectedRows, bordered, compact, }: TkxTableProps<T>): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { type TextareaHTMLAttributes } from 'react';
|
|
2
|
+
export interface TkxTextareaProps extends Omit<TextareaHTMLAttributes<HTMLTextAreaElement>, 'id' | 'rows'> {
|
|
3
|
+
label: string;
|
|
4
|
+
id?: string;
|
|
5
|
+
error?: string;
|
|
6
|
+
hint?: string;
|
|
7
|
+
isInvalid?: boolean;
|
|
8
|
+
isRequired?: boolean;
|
|
9
|
+
autoResize?: boolean;
|
|
10
|
+
minRows?: number;
|
|
11
|
+
maxRows?: number;
|
|
12
|
+
showCount?: boolean;
|
|
13
|
+
unicodeSafe?: boolean;
|
|
14
|
+
}
|
|
15
|
+
export declare const TkxTextarea: import("react").ForwardRefExoticComponent<TkxTextareaProps & import("react").RefAttributes<HTMLTextAreaElement>>;
|
|
@@ -10,14 +10,28 @@ export interface ToastItem {
|
|
|
10
10
|
label: string;
|
|
11
11
|
onClick: () => void;
|
|
12
12
|
};
|
|
13
|
+
onDismiss?: (id: string) => void;
|
|
13
14
|
}
|
|
14
15
|
export interface TkxToastProps {
|
|
15
16
|
position?: ToastPosition;
|
|
17
|
+
isolated?: boolean;
|
|
16
18
|
children?: React.ReactNode;
|
|
17
19
|
}
|
|
20
|
+
type Listener = (toasts: ToastItem[]) => void;
|
|
21
|
+
export interface ToastStore {
|
|
22
|
+
add(item: Omit<ToastItem, 'id'>): string;
|
|
23
|
+
remove(id: string): void;
|
|
24
|
+
dismissAll(): void;
|
|
25
|
+
pause(): void;
|
|
26
|
+
resume(): void;
|
|
27
|
+
subscribe(fn: Listener): () => void;
|
|
28
|
+
getSnapshot(): ToastItem[];
|
|
29
|
+
}
|
|
30
|
+
export declare function toast(item: Omit<ToastItem, 'id'>): string;
|
|
18
31
|
export declare function useToast(): {
|
|
19
32
|
toast: (item: Omit<ToastItem, "id">) => string;
|
|
20
33
|
dismiss: (id: string) => void;
|
|
21
34
|
dismissAll: () => void;
|
|
22
35
|
};
|
|
23
|
-
export declare function TkxToastProvider({ position, children }: TkxToastProps): import("react/jsx-runtime").JSX.Element;
|
|
36
|
+
export declare function TkxToastProvider({ position, isolated, children }: TkxToastProps): import("react/jsx-runtime").JSX.Element;
|
|
37
|
+
export {};
|
|
@@ -1,9 +1,13 @@
|
|
|
1
|
-
import { type ReactElement } from 'react';
|
|
1
|
+
import { type ReactElement, type ReactNode } from 'react';
|
|
2
2
|
export type TooltipPlacement = 'top' | 'bottom' | 'left' | 'right';
|
|
3
3
|
export interface TkxTooltipProps {
|
|
4
|
-
content:
|
|
4
|
+
content: ReactNode;
|
|
5
5
|
children: ReactElement;
|
|
6
6
|
placement?: TooltipPlacement;
|
|
7
7
|
delay?: number;
|
|
8
|
+
open?: boolean;
|
|
9
|
+
onOpenChange?: (open: boolean) => void;
|
|
10
|
+
disabled?: boolean;
|
|
8
11
|
}
|
|
9
|
-
export declare function TkxTooltip({ content, children, placement, delay }: TkxTooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export declare function TkxTooltip({ content, children, placement, delay, open: controlledOpen, onOpenChange, disabled, }: TkxTooltipProps): import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export default TkxTooltip;
|
|
@@ -1,6 +1,12 @@
|
|
|
1
1
|
export * from './TkxButton';
|
|
2
2
|
export * from './TkxCard';
|
|
3
3
|
export * from './TkxInput';
|
|
4
|
+
export * from './TkxTextarea';
|
|
5
|
+
export * from './TkxSplitter';
|
|
6
|
+
export * from './TkxDescriptions';
|
|
7
|
+
export * from './TkxField';
|
|
8
|
+
export * from './TkxComboBox';
|
|
9
|
+
export * from './TkxCode';
|
|
4
10
|
export * from './TkxBadge';
|
|
5
11
|
export * from './TkxProgress';
|
|
6
12
|
export * from './TkxToggle';
|
|
@@ -13,7 +13,7 @@ export interface FocusTrap {
|
|
|
13
13
|
deactivate(): void;
|
|
14
14
|
}
|
|
15
15
|
export declare function createFocusTrap(container: HTMLElement): FocusTrap;
|
|
16
|
-
export declare function handleTabsKeyboard(e: KeyboardEvent, currentIndex: number, tabCount: number, onSelect: (index: number) => void): void;
|
|
16
|
+
export declare function handleTabsKeyboard(e: KeyboardEvent, currentIndex: number, tabCount: number, onSelect: (index: number) => void, isDisabled?: (index: number) => boolean): void;
|
|
17
17
|
export declare function handleMenuKeyboard(e: KeyboardEvent, currentIndex: number, itemCount: number, onSelect: (index: number) => void, onClose?: () => void): void;
|
|
18
18
|
export declare function prefersReducedMotion(): boolean;
|
|
19
19
|
export declare function prefersHighContrast(): boolean;
|
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
export { useReducedMotion, useHighContrast, useFocusTrap, useAnnounce, useEscapeKey, useClickOutside, } from '../hooks';
|
|
1
|
+
export { useReducedMotion, useHighContrast, useFocusTrap, useAnnounce, useEscapeKey, useClickOutside, useVirtualList, useVariableVirtualList, } from '../hooks';
|
|
2
|
+
export type { VirtualListOptions, VirtualListResult } from '../hooks';
|
|
3
|
+
export type { VariableVirtualListOptions, VariableVirtualListResult } from '../hooks';
|
|
2
4
|
export { useTkxForm } from '../components/TkxForm';
|
|
3
5
|
export type { FormInstance, ValidationRule } from '../components/TkxForm';
|
|
4
6
|
export { extractAtomicCSS, resetAtomicCSS, cx, tkxPlugin, tkxRemovePlugin, tkxListPlugins } from '../engine/tkx';
|
|
@@ -5,3 +5,19 @@ export declare function useFocusTrap(active: boolean): RefObject<HTMLElement | n
|
|
|
5
5
|
export declare function useAnnounce(): (message: string, politeness?: 'polite' | 'assertive') => void;
|
|
6
6
|
export declare function useEscapeKey(handler: () => void, active?: boolean): void;
|
|
7
7
|
export declare function useClickOutside(ref: RefObject<HTMLElement | null>, handler: () => void): void;
|
|
8
|
+
export interface VirtualListOptions {
|
|
9
|
+
itemCount: number;
|
|
10
|
+
itemHeight: number;
|
|
11
|
+
overscan?: number;
|
|
12
|
+
enabled?: boolean;
|
|
13
|
+
containerRef: RefObject<HTMLElement | null>;
|
|
14
|
+
}
|
|
15
|
+
export interface VirtualListResult {
|
|
16
|
+
startIndex: number;
|
|
17
|
+
endIndex: number;
|
|
18
|
+
offsetY: number;
|
|
19
|
+
totalHeight: number;
|
|
20
|
+
onScroll: () => void;
|
|
21
|
+
}
|
|
22
|
+
export declare function useVirtualList(opts: VirtualListOptions): VirtualListResult;
|
|
23
|
+
export { useVariableVirtualList, type VariableVirtualListOptions, type VariableVirtualListResult, } from './useVariableVirtualList';
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
import { type RefObject } from 'react';
|
|
2
|
+
export interface VariableVirtualListOptions {
|
|
3
|
+
itemCount: number;
|
|
4
|
+
getItemKey: (index: number) => string;
|
|
5
|
+
estimateHeight: number | ((index: number) => number);
|
|
6
|
+
overscanPx?: number;
|
|
7
|
+
enabled?: boolean;
|
|
8
|
+
containerRef: RefObject<HTMLElement | null>;
|
|
9
|
+
maintainVisibleContentPosition?: boolean;
|
|
10
|
+
pinToBottom?: boolean;
|
|
11
|
+
pinThreshold?: number;
|
|
12
|
+
}
|
|
13
|
+
export interface VariableVirtualListResult {
|
|
14
|
+
startIndex: number;
|
|
15
|
+
endIndex: number;
|
|
16
|
+
offsetY: number;
|
|
17
|
+
totalHeight: number;
|
|
18
|
+
onScroll: () => void;
|
|
19
|
+
measureRef: (key: string) => (el: HTMLElement | null) => void;
|
|
20
|
+
getItemOffset: (index: number) => number;
|
|
21
|
+
scrollToIndex: (index: number, align?: 'auto' | 'start' | 'center' | 'end') => void;
|
|
22
|
+
scrollToBottom: (behavior?: ScrollBehavior) => void;
|
|
23
|
+
isPinnedToBottom: () => boolean;
|
|
24
|
+
}
|
|
25
|
+
export declare function useVariableVirtualList(opts: VariableVirtualListOptions): VariableVirtualListResult;
|
package/dist/src/i18n/index.d.ts
CHANGED
|
@@ -59,6 +59,13 @@ export interface LocaleStrings {
|
|
|
59
59
|
breadcrumb?: string;
|
|
60
60
|
showHiddenItems?: string;
|
|
61
61
|
richTextContent?: string;
|
|
62
|
+
selectNoOptions?: string;
|
|
63
|
+
dropdownMenu?: string;
|
|
64
|
+
commandPalette?: string;
|
|
65
|
+
dataGrid?: string;
|
|
66
|
+
pagination?: string;
|
|
67
|
+
dismiss?: string;
|
|
68
|
+
searchCommands?: string;
|
|
62
69
|
}
|
|
63
70
|
export declare const enUS: LocaleStrings;
|
|
64
71
|
export declare const esES: LocaleStrings;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "tekivex-ui",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.32.0",
|
|
4
4
|
"description": "Production-grade React component library — 116 components (plus 4 experimental, opt-in), WCAG 2.1 AAA, WAI-ARIA 1.2, built-in security kernel with published threat model, built-in charts, headless primitives, zero-runtime CSS engine, 44-locale i18n, Indian KYC pack, agent runtime (Anthropic/OpenAI/Gemini/Ollama/MCP/A2A), TypeScript-first.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|