tekivex-ui 2.5.16 → 2.6.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/dist/index.d.ts CHANGED
@@ -108,6 +108,8 @@ export * from './src/components/TkxAffix';
108
108
  export * from './src/components/TkxAnchor';
109
109
  export * from './src/components/TkxCascader';
110
110
  export * from './src/components/TkxList';
111
+ export { TkxOrgChart } from './src/components/TkxOrgChart';
112
+ export type { TkxOrgChartProps, OrgNode } from './src/components/TkxOrgChart';
111
113
  export { I18nProvider } from './src/i18n/I18nProvider';
112
114
  export { useI18n, useLocale, useDirection, isRTL, I18nContext } from './src/i18n';
113
115
  export type { LocaleStrings, LocaleCode, Direction, I18nContextValue } from './src/i18n';
@@ -116,7 +118,8 @@ export { SkipNav, LiveRegion, FocusTrap, VisuallyHidden } from './src/a11y';
116
118
  export type { SkipNavProps, LiveRegionProps, FocusTrapProps } from './src/a11y';
117
119
  export { useReducedMotion, useHighContrast, useFocusTrap, useAnnounce, useEscapeKey, useClickOutside, } from './src/hooks';
118
120
  export { Quantum, fnv1aHash, LRUCache, memoize, batchUpdate } from './src/engine/quantum';
119
- export { Shield, sanitizeString, sanitizeProps, validateProps, audit, getAuditLog, verifyAuditIntegrity } from './src/engine/security';
121
+ export { Shield, SecurityCore, sanitizeString, sanitizeHref, sanitizeHTML, sanitizeCSS, sanitizeJSON, sanitizeUnicode, sanitizeProps, validateProps, isSafeAttrName, buildTkxCSP, installTrustedTypes, isFramed, installFrameBuster, createRateLimiter, sniffMimeType, scrubPII, deepFreeze, audit, getAuditLog, verifyAuditIntegrity, } from './src/engine/security';
122
+ export type { TkxCSPOptions, RateLimiter } from './src/engine/security';
120
123
  export { WCAGEngine, contrastRatio, meetsAA, meetsAAA, getAccessibleForeground, createFocusTrap, prefersReducedMotion, prefersHighContrast } from './src/engine/wcag';
121
124
  export { TKX, css, fromObject, responsive, keyframes, cssVar, extractCSS, injectStyles } from './src/engine/css';
122
125
  export { tkx, tx, cx, extractAtomicCSS, resetAtomicCSS, tkxPlugin, tkxRemovePlugin, tkxListPlugins, resolvePluginUtility } from './src/engine/tkx';