impact-nova 2.1.0-alpha.1 → 2.1.0-alpha.2

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.
@@ -1,4 +1,6 @@
1
1
  import { AgGridWrapperProps } from './ag-grid.types';
2
+ import { subscribeGridApiEvent, subscribeGridApiEvents } from './grid-api-event-subscription';
3
+ export { subscribeGridApiEvent, subscribeGridApiEvents };
2
4
  export declare function AgGridWrapper<TData>({ children, defaultColDef, defaultColGroupDef, columnDefs, valueFormatters, onGridReady: userOnGridReady, onGridPreDestroyed: userOnGridPreDestroyed, onFilterChanged: userOnFilterChanged, onSelectionChanged: userOnSelectionChanged, onModelUpdated: userOnModelUpdated, ensureDomOrder, autoSizeStrategy, ...restProps }: AgGridWrapperProps<TData> & {
3
5
  className?: string;
4
6
  }): import("react/jsx-runtime").JSX.Element;
@@ -12,6 +12,7 @@ import { convertToAgGridFilterModel as Re, getMultiFilterIndices as Ge, convertF
12
12
  import { ColumnSettingsMenu as je } from "./headers/column-menu/column-settings-menu.js";
13
13
  import { AG_GRID_VALUE_FORMATTERS as we } from "./value-formatters.js";
14
14
  import { useGridAutoSizeStrategyOnResize as Ie } from "./useGridAutoSizeStrategyOnResize.js";
15
+ import { subscribeGridApiEvent as et, subscribeGridApiEvents as tt } from "./grid-api-event-subscription.js";
15
16
  /* empty css */
16
17
  const Te = me(
17
18
  () => import("./headers/advanced-filter/advanced-filter-dialog.js").then((l) => ({
@@ -403,5 +404,7 @@ function Pe({
403
404
  );
404
405
  }
405
406
  export {
406
- Qe as AgGridWrapper
407
+ Qe as AgGridWrapper,
408
+ et as subscribeGridApiEvent,
409
+ tt as subscribeGridApiEvents
407
410
  };
@@ -1,5 +1,6 @@
1
1
  import { VariantProps } from 'class-variance-authority';
2
2
  import { TooltipContent } from '../../feedback/tooltip';
3
+ import { useSidebar } from './sidebar-context';
3
4
  import * as React from "react";
4
5
  import * as CollapsiblePrimitive from "@radix-ui/react-collapsible";
5
6
  declare const SidebarProvider: React.ForwardRefExoticComponent<Omit<React.ClassAttributes<HTMLDivElement> & React.HTMLAttributes<HTMLDivElement> & {
@@ -87,4 +88,5 @@ declare const SidebarMenuSubButton: React.ForwardRefExoticComponent<Omit<React.C
87
88
  size?: "sm" | "md";
88
89
  isActive?: boolean;
89
90
  }, "ref"> & React.RefAttributes<HTMLAnchorElement>>;
90
- export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuCollapsible, SidebarMenuLabel, SidebarLogout, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, };
91
+ export { Sidebar, SidebarContent, SidebarFooter, SidebarGroup, SidebarGroupAction, SidebarGroupContent, SidebarGroupLabel, SidebarHeader, SidebarInput, SidebarInset, SidebarMenu, SidebarMenuAction, SidebarMenuBadge, SidebarMenuButton, SidebarMenuCollapsible, SidebarMenuLabel, SidebarLogout, SidebarMenuItem, SidebarMenuSkeleton, SidebarMenuSub, SidebarMenuSubButton, SidebarMenuSubItem, SidebarProvider, SidebarRail, SidebarSeparator, SidebarTrigger, useSidebar, };
92
+ export type { SidebarContextValue } from './sidebar-context';
@@ -715,5 +715,6 @@ export {
715
715
  Z as SidebarProvider,
716
716
  te as SidebarRail,
717
717
  se as SidebarSeparator,
718
- ae as SidebarTrigger
718
+ ae as SidebarTrigger,
719
+ w as useSidebar
719
720
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "impact-nova",
3
- "version": "2.1.0-alpha.1",
3
+ "version": "2.1.0-alpha.2",
4
4
  "description": "Enterprise-grade React design system built with React 19, Vite, Tailwind CSS, and Radix UI. Built-in internationalization (i18n) and comprehensive UI component library for scalable, accessible, and performant applications.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",