najm-kit 2.6.2 → 2.6.4

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
@@ -1,6 +1,8 @@
1
1
  import * as react_jsx_runtime from 'react/jsx-runtime';
2
+ import { a as NajmThemeProviderProps, b as NajmAppearance, c as NajmMode, d as NajmDesignConfig, e as NajmThemeConfig, f as NajmAccent, g as NajmThemeTokens, h as NajmPreset, i as NajmComponentName, j as NajmComponentStyleConfig, k as NajmComponentThemeConfig, l as NajmTypographyConfig, m as NajmLayoutConfig, n as NajmVariantStyle, o as NTablePaginationVariant, p as NTablePaginationLabels, q as NTableCardPagination, r as NajmResponsiveBreakpoint, s as NajmResponsiveValue } from './NajmUIProvider-x4chK0io.js';
3
+ export { D as DEFAULT_PAGINATION_KEY_PREFIX, t as DEFAULT_TIME_ZONE, u as NAJM_COMPONENT_NAMES, v as NTableDefaults, w as NTableDefaultsProvider, x as NTableInfinitePagination, y as NTableLoadMorePagination, z as NajmComponentRadius, A as NajmDensity, B as NajmPreferencesContextValue, C as NajmPreferencesProvider, E as NajmPreferencesProviderProps, F as NajmSlotStyle, G as NajmTranslate, H as NajmUIProvider, N as NajmUIProviderProps, R as RADIUS_VALUE_MAP, I as buildPaginationLabels, J as resolveRadiusValue, K as useNTableDefaults, L as useNajmPreferencesContext, M as useNajmTheme, O as useNajmTimeZone } from './NajmUIProvider-x4chK0io.js';
2
4
  import * as React$1 from 'react';
3
- import React__default, { RefObject, ReactNode, ComponentType, InputHTMLAttributes, Ref, CSSProperties, MouseEvent, MouseEventHandler } from 'react';
5
+ import React__default, { RefObject, ReactNode, ComponentType, InputHTMLAttributes, Ref, ImgHTMLAttributes, CSSProperties, MouseEvent, MouseEventHandler } from 'react';
4
6
  import * as class_variance_authority_types from 'class-variance-authority/types';
5
7
  import { VariantProps } from 'class-variance-authority';
6
8
  import * as LabelPrimitive from '@radix-ui/react-label';
@@ -36,169 +38,11 @@ export { N as NTableJson } from './NTableJson-tXqgfZI1.js';
36
38
  import * as _tanstack_table_core from '@tanstack/table-core';
37
39
  import { ClassValue } from 'clsx';
38
40
 
39
- type NajmMode = 'light' | 'dark';
40
- type NajmAccent = 'neutral' | 'emerald' | 'green' | 'slate' | 'blue' | 'violet';
41
- type NajmPreset = 'light' | 'dark' | 'dark-emerald' | 'dark-green' | 'dark-slate' | 'dark-blue' | 'dark-violet';
42
- interface NajmAppearance {
43
- /** Global border thickness, e.g. `'0'`, `'1px'`, `'2px'`. `'0'` hides borders. */
44
- borderWidth?: string;
45
- }
46
- interface NajmThemeTokens {
47
- background?: string;
48
- foreground?: string;
49
- card?: string;
50
- 'card-foreground'?: string;
51
- popover?: string;
52
- 'popover-foreground'?: string;
53
- primary?: string;
54
- 'primary-foreground'?: string;
55
- secondary?: string;
56
- 'secondary-foreground'?: string;
57
- tertiary?: string;
58
- 'tertiary-foreground'?: string;
59
- muted?: string;
60
- 'muted-foreground'?: string;
61
- accent?: string;
62
- 'accent-foreground'?: string;
63
- destructive?: string;
64
- 'destructive-foreground'?: string;
65
- border?: string;
66
- input?: string;
67
- ring?: string;
68
- sidebar?: string;
69
- 'sidebar-foreground'?: string;
70
- 'sidebar-primary'?: string;
71
- 'sidebar-primary-foreground'?: string;
72
- 'sidebar-accent'?: string;
73
- 'sidebar-accent-foreground'?: string;
74
- 'sidebar-border'?: string;
75
- 'sidebar-ring'?: string;
76
- 'chart-1'?: string;
77
- 'chart-2'?: string;
78
- 'chart-3'?: string;
79
- 'chart-4'?: string;
80
- 'chart-5'?: string;
81
- radius?: string;
82
- }
83
- /** Serializable theme settings suitable for JSON files, APIs, or local storage. */
84
- interface NajmThemeConfig {
85
- preset?: NajmPreset;
86
- mode?: NajmMode;
87
- accent?: NajmAccent;
88
- tokens?: NajmThemeTokens;
89
- /**
90
- * Per-mode token overrides authored on top of the composed preset. Keeps
91
- * light and dark customizations independent: editing a token in one mode
92
- * records it here so it survives switching to the other mode and back.
93
- * Providers resolve this field on top of the composed mode/accent preset.
94
- */
95
- overrides?: Partial<Record<NajmMode, NajmThemeTokens>>;
96
- accentOnly?: boolean;
97
- appearance?: NajmAppearance;
98
- radius?: string;
99
- }
100
- interface NajmThemeProviderProps {
101
- /** Serializable theme settings. Explicit provider props override this config. */
102
- config?: NajmThemeConfig;
103
- preset?: NajmPreset;
104
- mode?: NajmMode;
105
- accent?: NajmAccent;
106
- tokens?: NajmThemeTokens;
107
- /** When true, only inject accent tokens (primary, ring, accent and their foregrounds).
108
- * Everything else (bg, card, fg…) is inherited from the parent cascade. */
109
- accentOnly?: boolean;
110
- /** App-wide UI preferences (currently global border width). */
111
- appearance?: NajmAppearance;
112
- /** Global base radius, for example `0`, `0.5rem`, or `0.75rem`. */
113
- radius?: string;
114
- className?: string;
115
- asChild?: boolean;
116
- children: React.ReactNode;
117
- }
118
-
119
41
  /** Returns the active mode inherited from the nearest Najm theme provider. */
120
42
  declare function useNajmThemeMode(): NajmMode | undefined;
121
43
  declare function useNajmAppearance(): NajmAppearance;
122
44
  declare function NajmThemeProvider({ config, preset, mode, accent, tokens, accentOnly, appearance, radius, className, asChild, children, }: NajmThemeProviderProps): react_jsx_runtime.JSX.Element;
123
45
 
124
- type NajmDensity = "compact" | "default" | "comfortable";
125
- /** Tailwind's mobile-first viewport breakpoints, plus the default value. */
126
- type NajmResponsiveBreakpoint = "base" | "sm" | "md" | "lg" | "xl" | "2xl";
127
- /**
128
- * A scalar value for every viewport, or mobile-first breakpoint overrides.
129
- * For example: `{ base: 164, lg: 200, xl: 240 }`.
130
- */
131
- type NajmResponsiveValue<T> = T | Partial<Record<NajmResponsiveBreakpoint, T>>;
132
- type NajmComponentRadius = "inherit" | "none" | "xs" | "sm" | "md" | "lg" | "xl" | "full" | string;
133
- interface NajmSlotStyle {
134
- className?: string;
135
- radius?: NajmComponentRadius;
136
- borderWidth?: string;
137
- padding?: string;
138
- paddingTop?: string;
139
- }
140
- interface NajmVariantStyle {
141
- /** Reuse another variant's recipe. Example: primary badge uses secondary. */
142
- use?: string;
143
- className?: string;
144
- tokens?: Record<string, string>;
145
- }
146
- interface NajmComponentStyleConfig {
147
- /** Render components that support it as a card-like surface. */
148
- card?: boolean;
149
- /** Sidebar-only: render section titles above grouped nav items. */
150
- showSectionLabels?: boolean;
151
- /** Sidebar-only: render separator lines between nav item sections. */
152
- showSectionSeparators?: boolean;
153
- /** Sidebar-only: expanded width in px (default 240). Supports responsive overrides. */
154
- expandedWidth?: NajmResponsiveValue<number>;
155
- /** Sidebar-only: collapsed width in px (default 64). Supports responsive overrides. */
156
- collapsedWidth?: NajmResponsiveValue<number>;
157
- /** Sidebar-only: mobile drawer width in px. Defaults to the expanded width. */
158
- mobileWidth?: NajmResponsiveValue<number>;
159
- defaultVariant?: string;
160
- defaultSize?: string;
161
- density?: NajmDensity;
162
- /** NTable-only: CSS color used for the table header and add button. */
163
- headerColor?: string;
164
- /** NTable-only: CSS color used for table header text and add button text. */
165
- headerTextColor?: string;
166
- /** NTable-only: CSS color used for table container and row borders. */
167
- borderColor?: string;
168
- radius?: NajmComponentRadius;
169
- borderWidth?: string;
170
- slots?: Record<string, NajmSlotStyle>;
171
- variants?: Record<string, NajmVariantStyle>;
172
- }
173
- type NajmComponentName = "button" | "badge" | "card" | "table" | "tabs" | "dialog" | "alert" | "sidebar" | "pageHeader" | "input" | "select" | "dropdown" | "sheet" | "popover" | "tooltip" | "progress" | "avatar";
174
- type NajmComponentThemeConfig = Partial<Record<NajmComponentName, NajmComponentStyleConfig>>;
175
- interface NajmTypographyConfig {
176
- fontSans?: string;
177
- fontHeading?: string;
178
- fontMono?: string;
179
- baseSize?: string;
180
- scale?: "compact" | "default" | "comfortable";
181
- lineHeight?: string;
182
- letterSpacing?: string;
183
- }
184
- interface NajmLayoutConfig {
185
- /** Page inline padding, usually used by NPageLayout. */
186
- pageGutter?: string;
187
- /** Vertical page padding and stacked section gap, usually used by NPageLayout. */
188
- sectionGap?: string;
189
- }
190
- interface NajmDesignConfig {
191
- version: 1;
192
- theme: NajmThemeConfig;
193
- typography?: NajmTypographyConfig;
194
- components?: NajmComponentThemeConfig;
195
- layout?: NajmLayoutConfig;
196
- }
197
- declare const NAJM_COMPONENT_NAMES: readonly NajmComponentName[];
198
- /** Maps a NajmComponentRadius keyword to a CSS value (or var). */
199
- declare const RADIUS_VALUE_MAP: Record<string, string>;
200
- declare function resolveRadiusValue(radius: NajmComponentRadius | undefined): string | undefined;
201
-
202
46
  declare const THEME_TOKEN_KEYS: readonly ["background", "foreground", "card", "card-foreground", "popover", "popover-foreground", "primary", "primary-foreground", "secondary", "secondary-foreground", "tertiary", "tertiary-foreground", "muted", "muted-foreground", "accent", "accent-foreground", "destructive", "destructive-foreground", "border", "input", "ring", "sidebar", "sidebar-foreground", "sidebar-primary", "sidebar-primary-foreground", "sidebar-accent", "sidebar-accent-foreground", "sidebar-border", "sidebar-ring", "chart-1", "chart-2", "chart-3", "chart-4", "chart-5"];
203
47
  type ThemeCustomizerTokenKey = (typeof THEME_TOKEN_KEYS)[number];
204
48
 
@@ -1227,6 +1071,43 @@ interface NajmScrollProps extends Omit<OverlayScrollbarsComponentProps, "options
1227
1071
  */
1228
1072
  declare function NajmScroll({ className, axis, autoHide, viewportRef, events, options, element, children, style, ...props }: NajmScrollProps): react_jsx_runtime.JSX.Element;
1229
1073
 
1074
+ interface NImageProps extends Omit<ImgHTMLAttributes<HTMLImageElement>, "src" | "onError"> {
1075
+ src: string;
1076
+ /** Swapped in when `src` fails to load. */
1077
+ fallback?: string;
1078
+ }
1079
+ /**
1080
+ * Display-only image with error recovery. Deliberately a plain `<img>`: the
1081
+ * caller's CSS box owns the size, so there is nothing for a framework image
1082
+ * component to reserve or downscale.
1083
+ */
1084
+ declare function NImage({ src, fallback, alt, ...rest }: NImageProps): react_jsx_runtime.JSX.Element;
1085
+
1086
+ interface NBrandingValue {
1087
+ /** Used as the logo's `alt` when the logo does not set one. */
1088
+ appName?: string;
1089
+ logoExpanded?: ReactNode | string;
1090
+ /** Falls back to `logoExpanded`. */
1091
+ logoCollapsed?: ReactNode | string;
1092
+ /** Swapped in when a `string` logo fails to load. */
1093
+ logoFallback?: string;
1094
+ logoHref?: string;
1095
+ }
1096
+ /** Returns `null` outside a provider, so every consumer stays optional. */
1097
+ declare function useNBranding(): NBrandingValue | null;
1098
+ /**
1099
+ * Publishes the app's marks once, so shells stop threading a `logo` through
1100
+ * every surface that shows one. `NSidebar` reads this when no `logo` prop is
1101
+ * given; an explicit `logo` always wins.
1102
+ *
1103
+ * Unlike `NSidebarProvider` this owns no state — the values are resolved by the
1104
+ * app (usually server-side) and only forwarded, so memoizing on the fields is
1105
+ * correct here.
1106
+ */
1107
+ declare function NBrandingProvider({ children, appName, logoExpanded, logoCollapsed, logoFallback, logoHref, }: Readonly<NBrandingValue & {
1108
+ children: ReactNode;
1109
+ }>): react_jsx_runtime.JSX.Element;
1110
+
1230
1111
  type AvatarSize = "xs" | "sm" | "md" | "lg" | "xl" | "2xl";
1231
1112
  type AvatarShape$1 = "circle" | "rounded" | "square";
1232
1113
  type AvatarStatusType = "online" | "offline" | "busy" | "away";
@@ -2845,121 +2726,6 @@ type StepSubmitResult = {
2845
2726
  };
2846
2727
  declare function useFormSubmission({ steps, schema, defaultValues, onSubmit, currentStep, isLastStep, handleNext, markStepCompleted, reset, }: UseFormSubmissionOptions): FormSubmissionState;
2847
2728
 
2848
- /**
2849
- * How the page controls present position within the result.
2850
- *
2851
- * `numbered` renders a windowed list of page buttons. `compact` renders the
2852
- * `Page X of Y` text with first/previous/next/last controls.
2853
- *
2854
- * `numbered` needs a trustworthy page count. Under `manualPagination` that
2855
- * means the application must pass a `pageCount` derived from a real result
2856
- * total, or — when its endpoint reports no total — pass `hasNextPage` and no
2857
- * `pageCount` at all, which renders the unbounded bar described on the NTable
2858
- * prop. With neither, the bar falls back to `compact` on its own rather than
2859
- * inviting clicks on pages that may not exist.
2860
- *
2861
- * What it must never be handed is a `pageCount` that is really a lower bound,
2862
- * such as `pageIndex + 2`. That reads as a two-page result on page one and a
2863
- * three-page result on page two, so the bar grows a number per click with
2864
- * nothing to say why. NTable warns in development when it catches a count
2865
- * moving in lockstep with the page index.
2866
- */
2867
- type NTablePaginationVariant = "numbered" | "compact";
2868
- /**
2869
- * Accessible names and visible copy for the page controls.
2870
- *
2871
- * Every field is optional and falls back to English. Supply them to localize —
2872
- * the numbered variant is mostly digits, but its controls still need names.
2873
- */
2874
- interface NTablePaginationLabels {
2875
- /** Labels the rows-per-page select. Defaults to `"Rows/page"`. */
2876
- rowsPerPage?: string;
2877
- /** Accessible name of the whole page control group. Defaults to `"Pagination"`. */
2878
- pagination?: string;
2879
- /** Accessible name for one page button, given a 1-based page. */
2880
- goToPage?: (page: number) => string;
2881
- /** Accessible name of the current page button, given a 1-based page. */
2882
- currentPage?: (page: number) => string;
2883
- firstPage?: string;
2884
- previousPage?: string;
2885
- nextPage?: string;
2886
- lastPage?: string;
2887
- /** The `compact` variant's position text, given 1-based values. */
2888
- pageOf?: (page: number, pageCount: number) => string;
2889
- /**
2890
- * The position text when the result has no known total, given the 1-based
2891
- * page. Defaults to `"Page X"` — there is no `of Y` to state, and repeating
2892
- * the moving lower bound there would be the same lie the numbered bar avoids.
2893
- */
2894
- pageOfUnknown?: (page: number) => string;
2895
- /** The selection summary, given selected and total row counts. */
2896
- rowsSelected?: (selected: number, total: number) => string;
2897
- }
2898
- interface NTableLoadMorePagination {
2899
- /** Render the supplied rows as one card list with an explicit continuation control. */
2900
- mode: "load-more";
2901
- /** Whether the owning application has another server page available. */
2902
- hasNextPage: boolean;
2903
- /** True while the owning application is appending the next page. */
2904
- loadingMore?: boolean;
2905
- /** A controlled append error. Existing rows remain rendered and the control becomes Retry. */
2906
- loadMoreError?: ReactNode;
2907
- /** Fetch exactly one additional page. Najm Kit never constructs or owns the request. */
2908
- onLoadMore: () => unknown | Promise<unknown>;
2909
- loadMoreLabel?: string;
2910
- loadingMoreLabel?: string;
2911
- retryLabel?: string;
2912
- endLabel?: string;
2913
- loadMoreErrorLabel?: string;
2914
- /** Localize the polite announcement made after appended rows arrive. */
2915
- itemsLoadedLabel?: (count: number) => string;
2916
- }
2917
- interface NTableInfinitePagination {
2918
- /**
2919
- * Render the supplied rows as one card list that continues automatically when
2920
- * the end of the list scrolls into view. No control and no end-of-list
2921
- * element are rendered while the list is healthy; the continuation button
2922
- * appears only after an append failure, as the retry target.
2923
- */
2924
- mode: "infinite";
2925
- /** Whether the owning application has another server page available. */
2926
- hasNextPage: boolean;
2927
- /** True while the owning application is appending the next page. */
2928
- loadingMore?: boolean;
2929
- /** A controlled append error. Existing rows remain rendered and Retry appears. */
2930
- loadMoreError?: ReactNode;
2931
- /** Fetch exactly one additional page. Najm Kit never constructs or owns the request. */
2932
- onLoadMore: () => unknown | Promise<unknown>;
2933
- /**
2934
- * Distance ahead of the list end at which the next page is requested.
2935
- * Defaults to `"80px"`.
2936
- */
2937
- rootMargin?: string;
2938
- loadingMoreLabel?: string;
2939
- retryLabel?: string;
2940
- loadMoreErrorLabel?: string;
2941
- /** Localize the polite announcement made after appended rows arrive. */
2942
- itemsLoadedLabel?: (count: number) => string;
2943
- }
2944
- /**
2945
- * Presentation policy used while NTable is actually rendering cards.
2946
- *
2947
- * `paged` preserves the existing page controls. `all` renders every supplied
2948
- * row without a footer, in card and table modes alike. `load-more` renders
2949
- * every supplied row and adds a guarded, accessible continuation control.
2950
- * `infinite` renders every supplied row and continues on scroll instead.
2951
- *
2952
- * Applications remain responsible for fetching, accumulating, filtering,
2953
- * sorting, authorization, and privacy. `all` renders exactly the rows it is
2954
- * given and never fetches, so a caller that has not loaded the whole set must
2955
- * not select it.
2956
- */
2957
- type NTableCardPagination = {
2958
- mode?: "paged";
2959
- } | {
2960
- mode: "all";
2961
- } | NTableLoadMorePagination | NTableInfinitePagination;
2962
-
2963
2729
  interface NTableClassNames {
2964
2730
  root?: string;
2965
2731
  header?: string;
@@ -3500,30 +3266,6 @@ type NTablePageItem = {
3500
3266
  */
3501
3267
  declare function buildPageItems(pageIndex: number, pageCount: number, siblingCount?: number, unbounded?: boolean): NTablePageItem[];
3502
3268
 
3503
- /**
3504
- * Defaults every `NTable` beneath the provider inherits.
3505
- *
3506
- * Localized copy is the motivating case: an application with more than a couple
3507
- * of tables should not repeat the same label bundle at every render site, and
3508
- * an application with more than one locale should not have to remember to.
3509
- */
3510
- interface NTableDefaults {
3511
- paginationLabels?: NTablePaginationLabels;
3512
- }
3513
- /**
3514
- * Supply table defaults to everything below.
3515
- *
3516
- * `value` is passed straight through, so memoize it in the caller — an inline
3517
- * object literal rebuilds on every render of the shell and re-renders every
3518
- * table beneath it. Most label fields are functions, so `useMemo` on the
3519
- * translator is usually the whole job.
3520
- */
3521
- declare function NTableDefaultsProvider({ children, value, }: {
3522
- children: React__default.ReactNode;
3523
- value: NTableDefaults;
3524
- }): react_jsx_runtime.JSX.Element;
3525
- declare function useNTableDefaults(): NTableDefaults;
3526
-
3527
3269
  declare function NTableContent({ effectiveMode }: {
3528
3270
  effectiveMode?: string;
3529
3271
  }): react_jsx_runtime.JSX.Element;
@@ -3994,6 +3736,7 @@ interface NAppShellClassNames {
3994
3736
  sidebar?: string;
3995
3737
  sidebarItem?: string;
3996
3738
  sidebarHeader?: string;
3739
+ sidebarLogo?: string;
3997
3740
  sidebarFooter?: string;
3998
3741
  navbar?: string;
3999
3742
  content?: string;
@@ -4014,8 +3757,32 @@ type SidebarLogoRender = (state: {
4014
3757
  collapsed: boolean;
4015
3758
  isMobile: boolean;
4016
3759
  }) => ReactNode;
3760
+ /**
3761
+ * Declarative form of `logo`. The sidebar owns the box, the fit and the
3762
+ * collapsed/expanded switch so every app renders the mark identically; the
3763
+ * consumer only says which asset. A `string` slot renders through `NImage`,
3764
+ * a `ReactNode` slot is placed in the same box untouched.
3765
+ */
3766
+ interface SidebarLogo {
3767
+ /**
3768
+ * `mark` (default) frames logo artwork in a fixed box. `chip` is the icon
3769
+ * treatment: a square, tinted pill sized for a lucide-style glyph.
3770
+ */
3771
+ variant?: "mark" | "chip";
3772
+ expanded?: ReactNode | string;
3773
+ /** Falls back to `expanded`, rendered in the collapsed box. */
3774
+ collapsed?: ReactNode | string;
3775
+ /** Swapped in when a `string` slot fails to load. */
3776
+ fallback?: string;
3777
+ /** Defaults to the app name from `NBrandingProvider`. */
3778
+ alt?: string;
3779
+ href?: string;
3780
+ onClick?: () => void;
3781
+ title?: string;
3782
+ subtitle?: string;
3783
+ }
4017
3784
  interface SidebarProps {
4018
- logo?: ReactNode | SidebarLogoRender;
3785
+ logo?: ReactNode | SidebarLogoRender | SidebarLogo;
4019
3786
  navItems?: NavItem[];
4020
3787
  activePath?: string;
4021
3788
  isActive?: (item: NavItem, activePath: string) => boolean;
@@ -4062,12 +3829,6 @@ interface SidebarProps {
4062
3829
  * `mobileOpen` from an NPageHeader via its `onSidebarOpen` prop.
4063
3830
  */
4064
3831
  showHamburgerButton?: boolean;
4065
- logoIcon?: ComponentType<{
4066
- className?: string;
4067
- }> | ReactNode;
4068
- logoTitle?: string;
4069
- logoSubtitle?: string;
4070
- onLogoClick?: () => void;
4071
3832
  onSettings?: () => void;
4072
3833
  settingsLabel?: string;
4073
3834
  onLogout?: () => void;
@@ -4089,14 +3850,11 @@ interface NSidebarHeaderProps {
4089
3850
  className?: string;
4090
3851
  classNames?: NAppShellClassNames;
4091
3852
  }
4092
- interface NSidebarLogoProps {
4093
- icon?: ComponentType<{
4094
- className?: string;
4095
- }> | ReactNode;
4096
- title?: string;
4097
- subtitle?: string;
4098
- onClick?: () => void;
4099
- collapsed?: boolean;
3853
+ interface NSidebarBrandProps {
3854
+ logo: SidebarLogo;
3855
+ collapsed: boolean;
3856
+ linkComponent?: LinkComponentType;
3857
+ className?: string;
4100
3858
  }
4101
3859
  interface NSidebarContentProps {
4102
3860
  groups: NavItemGroup[];
@@ -4155,7 +3913,7 @@ interface NSidebarMobileProps {
4155
3913
 
4156
3914
  declare function NSidebarHeader({ children, collapsed, className, classNames }: NSidebarHeaderProps): react_jsx_runtime.JSX.Element;
4157
3915
 
4158
- declare function NSidebarLogo({ icon, title, subtitle, onClick, collapsed, }: NSidebarLogoProps): react_jsx_runtime.JSX.Element;
3916
+ declare function NSidebarBrand({ logo, collapsed, linkComponent: Link, className }: NSidebarBrandProps): react_jsx_runtime.JSX.Element;
4159
3917
 
4160
3918
  declare function NSidebarContent({ groups, activePath, isActive, onNavigate, linkComponent, collapsed, showSectionLabels, showSectionIcons, showSectionSeparators, contentStyle, classNames, }: NSidebarContentProps): react_jsx_runtime.JSX.Element;
4161
3919
 
@@ -4196,7 +3954,7 @@ declare function NSidebarProvider({ children, defaultCollapsed, mobileBreakpoint
4196
3954
  mobileBreakpoint?: "sm" | "md" | "lg";
4197
3955
  }>): react_jsx_runtime.JSX.Element;
4198
3956
 
4199
- declare function NSidebar({ logo, navItems, activePath, isActive, onNavigate, linkComponent, collapsed: collapsedProp, defaultCollapsed, onCollapsedChange, showCollapseButton, collapseButtonPosition, showSectionLabels, showSectionIcons, showSectionSeparators, bordered, footer, className, classNames, mobileBreakpoint: mobileBreakpointProp, autoCollapseAt, mobileOpen: mobileOpenProp, defaultMobileOpen, onMobileOpenChange, closeOnNavigate, hamburgerLabel, closeLabel, collapseLabel, expandLabel, hamburgerClassName, showHamburgerButton, logoIcon, logoTitle, logoSubtitle, onLogoClick, onSettings, settingsLabel, onLogout, logoutLabel, widths, }: SidebarProps): react_jsx_runtime.JSX.Element;
3957
+ declare function NSidebar({ logo, navItems, activePath, isActive, onNavigate, linkComponent, collapsed: collapsedProp, defaultCollapsed, onCollapsedChange, showCollapseButton, collapseButtonPosition, showSectionLabels, showSectionIcons, showSectionSeparators, bordered, footer, className, classNames, mobileBreakpoint: mobileBreakpointProp, autoCollapseAt, mobileOpen: mobileOpenProp, defaultMobileOpen, onMobileOpenChange, closeOnNavigate, hamburgerLabel, closeLabel, collapseLabel, expandLabel, hamburgerClassName, showHamburgerButton, onSettings, settingsLabel, onLogout, logoutLabel, widths, }: SidebarProps): react_jsx_runtime.JSX.Element;
4200
3958
 
4201
3959
  declare function NSidebarItem({ item, activePath, isActive, onNavigate, linkComponent: LinkComponent, collapsed, depth, classNames, }: SidebarItemProps): react_jsx_runtime.JSX.Element;
4202
3960
 
@@ -4338,4 +4096,4 @@ interface NGridItemProps extends Omit<React$1.AllHTMLAttributes<HTMLDivElement>,
4338
4096
  declare function NGrid({ as: Comp, children, cols, smCols, mdCols, lgCols, xlCols, gap, className, style, ...props }: NGridProps): react_jsx_runtime.JSX.Element;
4339
4097
  declare function NGridItem({ children, span, smSpan, mdSpan, lgSpan, xlSpan, className, ...props }: NGridItemProps): react_jsx_runtime.JSX.Element;
4340
4098
 
4341
- export { Alert, type AlertLook, type AlertOrientation, type AlertProps, type AlertSize, type AlertTone, type AlertVariant, NCard as AsyncCard, Avatar, AvatarFallback, AvatarFormInput, type AvatarFormInputProps, AvatarGroup, type AvatarGroupProps, AvatarImage, AvatarInput, type AvatarInputProps, type AvatarInputRadius, type AvatarProps$1 as AvatarProps, type AvatarShape$1 as AvatarShape, type AvatarSize, AvatarStatus, type AvatarStatusType, Badge, type BadgeColor, type BadgeIcon, type BadgeLook, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, BaseInput, type BuildDefaultFileColumnsOptions, Button, type ButtonConfig, type ButtonIcon, type ButtonLoaderPosition, type ButtonProps, type ButtonRounded, type ButtonSize, type ButtonVariant, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxGroupInput, type CheckboxGroupInputProps, CheckboxInput, type CheckboxInputProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArrayInput, type ColorArrayInputProps, type ColorFormat, ColorPickerInput, type ColorPickerInputProps, Combobox, ComboboxInput, type ComboboxInputProps, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ContextMenuItem, DEFAULT_THEME_FILE_NAME, DateInput, type DateInputProps, type DeleteDialogOptions, Dialog, type DialogActionMode, type DialogApi, DialogClose, type DialogConfig, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, type DialogHeight, DialogOverlay, type DialogPadding, DialogPortal, type DialogRenderContext, type DialogRenderer, type DialogSize, type DialogStore, DialogTitle, DialogTrigger, type DialogVariant, type DialogWidth, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DynamicArray, type DynamicArrayProps, EmojiInput, type EmojiInputProps, type FileBrowserMode, FileImportButton, FileInput, type FileInputProps, type FileNode, Form, FormControl, FormDescription, FormField, FormInput, type FormInputBackground, type FormInputProps, FormItem, FormLabel, FormMessage, type FormProps, type FormSlotClassNames, type FormVariant, IconButton, type IconButtonProps, type IconButtonSize, type IconButtonVariant, ImageInput, type ImageInputPreviewError, type ImageInputPreviewSource, type ImageInputProps, Indicator, type IndicatorHorizontal, type IndicatorOverlay, type IndicatorPosition, type IndicatorProps, type IndicatorResponsivePosition, type IndicatorSize, type IndicatorVertical, Input, type InputIcon, Label, LangInput, type LangInputProps, type LinkComponentType, MultiSelectInput, type MultiSelectInputProps, NAJM_COMPONENT_NAMES, NAJM_SAVED_THEME_VALUE, NAlert, type NAppCommandItem, NAppShell, type NAppShellAction, type NAppShellClassNames, type NAppShellProps, type NAppShellUser, NCard as NAsyncCard, type CardClassNames as NAsyncCardClassNames, type CardProps as NAsyncCardProps, NAvatar, type NAvatarClassNames, type NAvatarProps, type AvatarShape as NAvatarShape, NBadge, type NBadgeLook, type NBadgeProps, NBarChart, type NBarChartProps, type NBulkAction, type NBulkActionButton, type NBulkActionSelect, NBulkActionsBar, type NBulkActionsBarProps, NButton, type NButtonProps, NCard, NCardAction, type CardClassNames as NCardClassNames, type NCardDensity, NCardFooter, NCardInfo, type NCardInfoProps, NCardMedia, type NCardMediaAspect, type NCardMediaPlacement, type NCardMediaProps, type NCardMediaSize, type NCardMediaVariant, type CardProps as NCardProps, NCardSection, type NCardSectionProps, type NCardSectionSurface, type NCartesianChartProps, type NChartCardProps, type NChartDatum, type NChartItem, type NChartSeries, type NChartSize, NChartSkeleton, type NChartSkeletonProps, type NChartSkeletonVariant, NCommandPalette, type NCommandPaletteProps, NConfirmDialog, type NConfirmDialogProps, NContextMenu, type NContextMenuItem, type NContextMenuProps, NDataCardShell, type NDataCardShellActions, type NDataCardShellProps, NDeleteDialog, NDeleteDialogContent, type NDeleteDialogContentProps, type NDeleteDialogProps, NDetailCard, type NDetailCardClassNames, type NDetailCardProps, NDetailItem, type NDetailItemProps, NDetailList, type NDetailListItem, type NDetailListProps, NDialog, type NDialogActionProps, NDialogDescription, type NDialogDescriptionProps, type NDialogDirectProps, NDialogHeader, type NDialogHeaderProps, NDialogPrimaryButton, type NDialogProps, NDialogSecondaryButton, NDonutCard, type NDonutCardClassNames, type NDonutCardItem, type NDonutCardLayout, type NDonutCardLegendMarker, type NDonutCardProps, type NDonutCardVariant, type NEditorTab, NEditorTabs, type NEditorTabsProps, NEmptyState, type NEmptyStateProps, NErrorBoundary, NErrorState, type NErrorStateProps, NFileBrowser, type NFileBrowserCardProps, type NFileBrowserProps, type NFileBrowserRenderThumbProps, NFileTypeIcon, type NFileTypeIconProps, NFilterBar, NFolderIcon, type NFolderIconProps, NForm, NFormSectionHeader, type NFormSectionHeaderProps, NGrid, type NGridCols, NGridItem, type NGridItemProps, type NGridProps, type NGridSpan, NIcon, type NIconProps, type NIconSource, NIndicator, NInspectorSheet, NLineChart, type NLineChartProps, NLoadingState, type NLoadingStateProps, NMultiDialog, type NMultiDialogProps, NNavbar, NPageHeader, NPageHeaderActions, type NPageHeaderBreakpoint, NPageHeaderCompactActions, NPageHeaderFilters, type NPageHeaderProps, NPageHeaderTop, NPageLayout, type NPageLayoutProps, NPieChart, type NPieChartProps, NPortalScopeProvider, NProgress, type NProgressProps, NRowActions, NSection, NSectionHeader, type NSectionHeaderActionsProps, type NSectionHeaderContentProps, type NSectionHeaderProps, type NSectionHeaderSubtitleProps, type NSectionHeaderTitleProps, NSectionInfo, type NSectionInfoProps, type NSectionProps, NSectionWithInfo, type NSectionWithInfoItem, type NSectionWithInfoProps, NSheet, type NSheetClassNames, type NSheetProps, NSidebar, NSidebarContent, type NSidebarContentProps, type NSidebarContextValue, NSidebarFooter, type NSidebarFooterProps, NSidebarHeader, type NSidebarHeaderProps, NSidebarItem, NSidebarLogo, type NSidebarLogoProps, NSidebarMobile, type NSidebarMobileProps, NSidebarProvider, NSidebarSection, type NSidebarSectionProps, NSkeleton, NSkeletonCalendar, NSkeletonChart, NSkeletonDonut, NSkeletonEventList, NSkeletonWidget, NSkeletonWidgets, NSlider, type NSliderProps, NSmartPasteDialog, type NSmartPasteDialogProps, NSpinner, type NSpinnerProps, NStatCard, type NStatCardClassNames, type NStatCardProps, NStatCardSkeleton, type NStatCardVariant, NStatusBreakdown, type NStatusBreakdownProps, Swap as NSwap, type NSwapProps, NTable, type NTableCardPagination, NTableCardRoot, type NTableCardRootProps, NTableCards, type NTableClassNames, type NTableColumnBreakpoint, type NTableColumnDef, type NTableColumnMeta, NTableContent, type NTableDefaults, NTableDefaultsProvider, NTableHeader, type NTableInfinitePagination, type NTableLoadMorePagination, NTableLoadingSkeleton, type NTableMenu, type NTableMenuProp, type NTablePageItem, NTablePagination, type NTablePaginationLabels, type NTablePaginationVariant, type NTableProps, NTableRowSkeleton, NTableSkeleton, type NTableState, NTabs, type NTabsClassNames, type NTabsColor, type NTabsItem, type NTabsProps, type NTabsStyles, NThemeCustomizer, type NThemeCustomizerFontOption, type NThemeCustomizerLabels, type NThemeCustomizerProps, type NThemeCustomizerTab, type NThemePreset, NThemePresets, type NThemePresetsLabels, type NThemePresetsProps, type NThemePresetsStatus, NUploader, type NUploaderItem, type NUploaderItemStatus, type NUploaderProps, NViewBody, NViewToggle, type NajmAccent, type NajmAppearance, type NajmBorderSide, type NajmComponentName, type NajmComponentRadius, type NajmComponentStyleConfig, type NajmComponentThemeConfig, type NajmDensity, type NajmDesignConfig, NajmDesignProvider, type NajmDesignProviderProps, type NajmLayoutConfig, type NajmMode, type NajmPreset, type NajmResponsiveBreakpoint, type NajmResponsiveValue, NajmScroll, type NajmScrollProps, type NajmSlotStyle, type NajmThemeConfig, NajmThemeProvider, type NajmThemeProviderProps, type NajmThemeTokens, type NajmTypographyConfig, type NajmVariantStyle, NativeSelect, type NativeSelectOption, type NativeSelectProps, type NavItem, type NavItemGroup, NumberInput, type NumberInputProps, OtpInput, type OtpInputProps, PasswordInput, type PasswordInputProps, PhoneInput, type PhoneInputProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PrefixProvider, Progress, type ProgressColor, type ProgressLabelPosition, type ProgressProps, type ProgressSize, type PushDialogOptions, RADIUS_VALUE_MAP, RadioGroup, RadioGroupInput, type RadioGroupInputProps, RadioGroupItem, type RenderSlot, RepeatingFields, type RepeatingFieldsProps, ScrollArea, type ScrollAreaProps, SearchField, SearchField as SearchInput, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectInput, type SelectInputProps, SelectItem, type SelectItemType$1 as SelectItemDataType, type SelectItemType, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, type SidebarItemProps, type SidebarLogoRender, type SidebarProps, type SidebarWidth, type SidebarWidths, SimpleTooltip, type SimpleTooltipProps, NSkeleton as Skeleton, Slider, SliderInput, type SliderInputProps, type SliderOrientation, type SliderProps, type SliderSize, type SliderVariant, type SmartPastePreview, type SpinnerVariant, StarRatingInput, type StarRatingInputProps, StatusPill, type StatusPillProps, type StatusPillTone, type StepConfig, StepIndicator, type StepMeta, StepsHeader, StepsProgress, type StorageMenuAction, type StorageSortOption, type StorageTarget, Swap, type SwapEffect, SwapIndeterminate, SwapOff, SwapOn, type SwapProps, type SwapSize, type SwapState, Switch, type SwitchColor, SwitchInput, type SwitchInputProps, type SwitchSize, TAB_COLORS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderColor, TableRow, type TableState, type TableStore, TableStoreContext, Tabs, TabsContent, TabsList, type TabsListProps, type TabsOrientation, type TabsProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, TextAreaInput, type TextAreaInputProps, TextInput, type TextInputProps, Textarea, TimeInput, type TimeInputProps, TimeZoneInput, type TimeZoneInputProps, Toaster, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseContextMenuResult, type UseNFormOptions, type UseStorageContextMenuOptions, type UseStorageContextMenuResult, type UserMenuAction, VariantProvider, type WizardClassNames, WizardForm, type WizardFormProps, alertVariants, avatarVariants, badgeColorVariants, badgeVariants, buildDefaultFileColumns, buildPageItems, buttonVariants, cn, composePreset, createDialogStore, createTableStore, defineNajmDesignConfig, defineNajmThemeConfig, detectFormat, dialogVariants, filterResponsiveColumns, formatColor, formatFileBytes, formatFileRelative, getIconColorProps, getNChartColor, getNextEditorTabValue, hiddenBelowClasses, indicatorVariants, inputBorderClasses, normalizeThemeFileName, parseColor, parseNajmDesignConfig, parseNajmThemeConfig, parseThemeFile, resolveHiddenBelowClass, resolvePreset, resolveRadiusValue, resolveSlot, resolveVariantAlias, sidebarBorderClasses, sliderVariants, stringifyNajmDesignConfig, stringifyNajmThemeConfig, stringifyThemeFile, surfaceBorderClasses, swapVariants, toPickerHex, toggleVariants, tooltipContentVariants, truncateByCharacters, useClickOutside, useContextMenu, useDebouncedValue, useDelayedLoading, useDialog, useDialogStore, useDynamicPageSize, useFormField, useFormSubmission, useInfiniteScroll, useKeyboard, useLocalStorageState, useNForm, useNPortalScope, useNSidebar, useNTableDefaults, useNajmAppearance, useNajmComponentStyle, useNajmDesign, useNajmThemeMode, usePrefix, useSelection, useStepNavigation, useStorageContextMenu, useStoreSync, useTable, useTableKeyboard, useTableStore, useVariant, useVariantPreset };
4099
+ export { Alert, type AlertLook, type AlertOrientation, type AlertProps, type AlertSize, type AlertTone, type AlertVariant, NCard as AsyncCard, Avatar, AvatarFallback, AvatarFormInput, type AvatarFormInputProps, AvatarGroup, type AvatarGroupProps, AvatarImage, AvatarInput, type AvatarInputProps, type AvatarInputRadius, type AvatarProps$1 as AvatarProps, type AvatarShape$1 as AvatarShape, type AvatarSize, AvatarStatus, type AvatarStatusType, Badge, type BadgeColor, type BadgeIcon, type BadgeLook, type BadgeProps, type BadgeShape, type BadgeSize, type BadgeVariant, BaseInput, type BuildDefaultFileColumnsOptions, Button, type ButtonConfig, type ButtonIcon, type ButtonLoaderPosition, type ButtonProps, type ButtonRounded, type ButtonSize, type ButtonVariant, Calendar, Card, CardAction, CardContent, CardDescription, CardFooter, CardHeader, CardTitle, Checkbox, CheckboxGroupInput, type CheckboxGroupInputProps, CheckboxInput, type CheckboxInputProps, Collapsible, CollapsibleContent, CollapsibleTrigger, ColorArrayInput, type ColorArrayInputProps, type ColorFormat, ColorPickerInput, type ColorPickerInputProps, Combobox, ComboboxInput, type ComboboxInputProps, type ComboboxOption, type ComboboxProps, Command, CommandDialog, CommandEmpty, CommandGroup, CommandInput, CommandItem, CommandList, CommandSeparator, CommandShortcut, type ContextMenuItem, DEFAULT_THEME_FILE_NAME, DateInput, type DateInputProps, type DeleteDialogOptions, Dialog, type DialogActionMode, type DialogApi, DialogClose, type DialogConfig, DialogContent, type DialogContentProps, DialogDescription, DialogFooter, DialogHeader, type DialogHeight, DialogOverlay, type DialogPadding, DialogPortal, type DialogRenderContext, type DialogRenderer, type DialogSize, type DialogStore, DialogTitle, DialogTrigger, type DialogVariant, type DialogWidth, DropdownMenu, DropdownMenuCheckboxItem, DropdownMenuContent, DropdownMenuGroup, DropdownMenuItem, DropdownMenuLabel, DropdownMenuPortal, DropdownMenuRadioGroup, DropdownMenuRadioItem, DropdownMenuSeparator, DropdownMenuShortcut, DropdownMenuSub, DropdownMenuSubContent, DropdownMenuSubTrigger, DropdownMenuTrigger, DynamicArray, type DynamicArrayProps, EmojiInput, type EmojiInputProps, type FileBrowserMode, FileImportButton, FileInput, type FileInputProps, type FileNode, Form, FormControl, FormDescription, FormField, FormInput, type FormInputBackground, type FormInputProps, FormItem, FormLabel, FormMessage, type FormProps, type FormSlotClassNames, type FormVariant, IconButton, type IconButtonProps, type IconButtonSize, type IconButtonVariant, ImageInput, type ImageInputPreviewError, type ImageInputPreviewSource, type ImageInputProps, Indicator, type IndicatorHorizontal, type IndicatorOverlay, type IndicatorPosition, type IndicatorProps, type IndicatorResponsivePosition, type IndicatorSize, type IndicatorVertical, Input, type InputIcon, Label, LangInput, type LangInputProps, type LinkComponentType, MultiSelectInput, type MultiSelectInputProps, NAJM_SAVED_THEME_VALUE, NAlert, type NAppCommandItem, NAppShell, type NAppShellAction, type NAppShellClassNames, type NAppShellProps, type NAppShellUser, NCard as NAsyncCard, type CardClassNames as NAsyncCardClassNames, type CardProps as NAsyncCardProps, NAvatar, type NAvatarClassNames, type NAvatarProps, type AvatarShape as NAvatarShape, NBadge, type NBadgeLook, type NBadgeProps, NBarChart, type NBarChartProps, NBrandingProvider, type NBrandingValue, type NBulkAction, type NBulkActionButton, type NBulkActionSelect, NBulkActionsBar, type NBulkActionsBarProps, NButton, type NButtonProps, NCard, NCardAction, type CardClassNames as NCardClassNames, type NCardDensity, NCardFooter, NCardInfo, type NCardInfoProps, NCardMedia, type NCardMediaAspect, type NCardMediaPlacement, type NCardMediaProps, type NCardMediaSize, type NCardMediaVariant, type CardProps as NCardProps, NCardSection, type NCardSectionProps, type NCardSectionSurface, type NCartesianChartProps, type NChartCardProps, type NChartDatum, type NChartItem, type NChartSeries, type NChartSize, NChartSkeleton, type NChartSkeletonProps, type NChartSkeletonVariant, NCommandPalette, type NCommandPaletteProps, NConfirmDialog, type NConfirmDialogProps, NContextMenu, type NContextMenuItem, type NContextMenuProps, NDataCardShell, type NDataCardShellActions, type NDataCardShellProps, NDeleteDialog, NDeleteDialogContent, type NDeleteDialogContentProps, type NDeleteDialogProps, NDetailCard, type NDetailCardClassNames, type NDetailCardProps, NDetailItem, type NDetailItemProps, NDetailList, type NDetailListItem, type NDetailListProps, NDialog, type NDialogActionProps, NDialogDescription, type NDialogDescriptionProps, type NDialogDirectProps, NDialogHeader, type NDialogHeaderProps, NDialogPrimaryButton, type NDialogProps, NDialogSecondaryButton, NDonutCard, type NDonutCardClassNames, type NDonutCardItem, type NDonutCardLayout, type NDonutCardLegendMarker, type NDonutCardProps, type NDonutCardVariant, type NEditorTab, NEditorTabs, type NEditorTabsProps, NEmptyState, type NEmptyStateProps, NErrorBoundary, NErrorState, type NErrorStateProps, NFileBrowser, type NFileBrowserCardProps, type NFileBrowserProps, type NFileBrowserRenderThumbProps, NFileTypeIcon, type NFileTypeIconProps, NFilterBar, NFolderIcon, type NFolderIconProps, NForm, NFormSectionHeader, type NFormSectionHeaderProps, NGrid, type NGridCols, NGridItem, type NGridItemProps, type NGridProps, type NGridSpan, NIcon, type NIconProps, type NIconSource, NImage, type NImageProps, NIndicator, NInspectorSheet, NLineChart, type NLineChartProps, NLoadingState, type NLoadingStateProps, NMultiDialog, type NMultiDialogProps, NNavbar, NPageHeader, NPageHeaderActions, type NPageHeaderBreakpoint, NPageHeaderCompactActions, NPageHeaderFilters, type NPageHeaderProps, NPageHeaderTop, NPageLayout, type NPageLayoutProps, NPieChart, type NPieChartProps, NPortalScopeProvider, NProgress, type NProgressProps, NRowActions, NSection, NSectionHeader, type NSectionHeaderActionsProps, type NSectionHeaderContentProps, type NSectionHeaderProps, type NSectionHeaderSubtitleProps, type NSectionHeaderTitleProps, NSectionInfo, type NSectionInfoProps, type NSectionProps, NSectionWithInfo, type NSectionWithInfoItem, type NSectionWithInfoProps, NSheet, type NSheetClassNames, type NSheetProps, NSidebar, NSidebarBrand, type NSidebarBrandProps, NSidebarContent, type NSidebarContentProps, type NSidebarContextValue, NSidebarFooter, type NSidebarFooterProps, NSidebarHeader, type NSidebarHeaderProps, NSidebarItem, NSidebarMobile, type NSidebarMobileProps, NSidebarProvider, NSidebarSection, type NSidebarSectionProps, NSkeleton, NSkeletonCalendar, NSkeletonChart, NSkeletonDonut, NSkeletonEventList, NSkeletonWidget, NSkeletonWidgets, NSlider, type NSliderProps, NSmartPasteDialog, type NSmartPasteDialogProps, NSpinner, type NSpinnerProps, NStatCard, type NStatCardClassNames, type NStatCardProps, NStatCardSkeleton, type NStatCardVariant, NStatusBreakdown, type NStatusBreakdownProps, Swap as NSwap, type NSwapProps, NTable, NTableCardPagination, NTableCardRoot, type NTableCardRootProps, NTableCards, type NTableClassNames, type NTableColumnBreakpoint, type NTableColumnDef, type NTableColumnMeta, NTableContent, NTableHeader, NTableLoadingSkeleton, type NTableMenu, type NTableMenuProp, type NTablePageItem, NTablePagination, NTablePaginationLabels, NTablePaginationVariant, type NTableProps, NTableRowSkeleton, NTableSkeleton, type NTableState, NTabs, type NTabsClassNames, type NTabsColor, type NTabsItem, type NTabsProps, type NTabsStyles, NThemeCustomizer, type NThemeCustomizerFontOption, type NThemeCustomizerLabels, type NThemeCustomizerProps, type NThemeCustomizerTab, type NThemePreset, NThemePresets, type NThemePresetsLabels, type NThemePresetsProps, type NThemePresetsStatus, NUploader, type NUploaderItem, type NUploaderItemStatus, type NUploaderProps, NViewBody, NViewToggle, NajmAccent, NajmAppearance, type NajmBorderSide, NajmComponentName, NajmComponentStyleConfig, NajmComponentThemeConfig, NajmDesignConfig, NajmDesignProvider, type NajmDesignProviderProps, NajmLayoutConfig, NajmMode, NajmPreset, NajmResponsiveBreakpoint, NajmResponsiveValue, NajmScroll, type NajmScrollProps, NajmThemeConfig, NajmThemeProvider, NajmThemeProviderProps, NajmThemeTokens, NajmTypographyConfig, NajmVariantStyle, NativeSelect, type NativeSelectOption, type NativeSelectProps, type NavItem, type NavItemGroup, NumberInput, type NumberInputProps, OtpInput, type OtpInputProps, PasswordInput, type PasswordInputProps, PhoneInput, type PhoneInputProps, Popover, PopoverAnchor, PopoverContent, PopoverTrigger, PrefixProvider, Progress, type ProgressColor, type ProgressLabelPosition, type ProgressProps, type ProgressSize, type PushDialogOptions, RadioGroup, RadioGroupInput, type RadioGroupInputProps, RadioGroupItem, type RenderSlot, RepeatingFields, type RepeatingFieldsProps, ScrollArea, type ScrollAreaProps, SearchField, SearchField as SearchInput, SegmentedControl, type SegmentedControlOption, type SegmentedControlProps, Select, SelectContent, SelectGroup, SelectInput, type SelectInputProps, SelectItem, type SelectItemType$1 as SelectItemDataType, type SelectItemType, SelectLabel, SelectScrollDownButton, SelectScrollUpButton, SelectSeparator, SelectTrigger, SelectValue, Separator, Sheet, SheetClose, SheetContent, SheetDescription, SheetFooter, SheetHeader, SheetOverlay, SheetPortal, SheetTitle, SheetTrigger, type SidebarItemProps, type SidebarLogo, type SidebarLogoRender, type SidebarProps, type SidebarWidth, type SidebarWidths, SimpleTooltip, type SimpleTooltipProps, NSkeleton as Skeleton, Slider, SliderInput, type SliderInputProps, type SliderOrientation, type SliderProps, type SliderSize, type SliderVariant, type SmartPastePreview, type SpinnerVariant, StarRatingInput, type StarRatingInputProps, StatusPill, type StatusPillProps, type StatusPillTone, type StepConfig, StepIndicator, type StepMeta, StepsHeader, StepsProgress, type StorageMenuAction, type StorageSortOption, type StorageTarget, Swap, type SwapEffect, SwapIndeterminate, SwapOff, SwapOn, type SwapProps, type SwapSize, type SwapState, Switch, type SwitchColor, SwitchInput, type SwitchInputProps, type SwitchSize, TAB_COLORS, Table, TableBody, TableCaption, TableCell, TableFooter, TableHead, TableHeader, type TableHeaderColor, TableRow, type TableState, type TableStore, TableStoreContext, Tabs, TabsContent, TabsList, type TabsListProps, type TabsOrientation, type TabsProps, TabsTrigger, type TabsTriggerProps, type TabsVariant, TextAreaInput, type TextAreaInputProps, TextInput, type TextInputProps, Textarea, TimeInput, type TimeInputProps, TimeZoneInput, type TimeZoneInputProps, Toaster, Toggle, Tooltip, TooltipContent, TooltipProvider, TooltipTrigger, type UseContextMenuResult, type UseNFormOptions, type UseStorageContextMenuOptions, type UseStorageContextMenuResult, type UserMenuAction, VariantProvider, type WizardClassNames, WizardForm, type WizardFormProps, alertVariants, avatarVariants, badgeColorVariants, badgeVariants, buildDefaultFileColumns, buildPageItems, buttonVariants, cn, composePreset, createDialogStore, createTableStore, defineNajmDesignConfig, defineNajmThemeConfig, detectFormat, dialogVariants, filterResponsiveColumns, formatColor, formatFileBytes, formatFileRelative, getIconColorProps, getNChartColor, getNextEditorTabValue, hiddenBelowClasses, indicatorVariants, inputBorderClasses, normalizeThemeFileName, parseColor, parseNajmDesignConfig, parseNajmThemeConfig, parseThemeFile, resolveHiddenBelowClass, resolvePreset, resolveSlot, resolveVariantAlias, sidebarBorderClasses, sliderVariants, stringifyNajmDesignConfig, stringifyNajmThemeConfig, stringifyThemeFile, surfaceBorderClasses, swapVariants, toPickerHex, toggleVariants, tooltipContentVariants, truncateByCharacters, useClickOutside, useContextMenu, useDebouncedValue, useDelayedLoading, useDialog, useDialogStore, useDynamicPageSize, useFormField, useFormSubmission, useInfiniteScroll, useKeyboard, useLocalStorageState, useNBranding, useNForm, useNPortalScope, useNSidebar, useNajmAppearance, useNajmComponentStyle, useNajmDesign, useNajmThemeMode, usePrefix, useSelection, useStepNavigation, useStorageContextMenu, useStoreSync, useTable, useTableKeyboard, useTableStore, useVariant, useVariantPreset };