buildgrid-ui 1.15.9 → 1.15.14

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.
@@ -5,6 +5,7 @@ export * from './help-carousel';
5
5
  export * from './html-text-editor';
6
6
  export * from './lazy-image-gallery';
7
7
  export * from './month-navigator';
8
+ export * from './number-stepper';
8
9
  export * from './paginated-items';
9
10
  export * from './pagination-controls';
10
11
  export * from './sidebar';
@@ -0,0 +1 @@
1
+ export * from './number-stepper';
@@ -1,4 +1,4 @@
1
- interface NumberInputProps {
1
+ interface NumberStepperProps {
2
2
  value?: number;
3
3
  defaultValue?: number;
4
4
  onChange?: (value: number) => void;
@@ -11,5 +11,5 @@ interface NumberInputProps {
11
11
  leftSymbol?: string;
12
12
  rightSymbol?: string;
13
13
  }
14
- export declare function NumberInput({ value, defaultValue, onChange, min, max, step, size, disabled, className, leftSymbol, rightSymbol, }: NumberInputProps): import("react/jsx-runtime").JSX.Element;
14
+ export declare function NumberStepper({ value, defaultValue, onChange, min, max, step, size, disabled, className, leftSymbol, rightSymbol, }: NumberStepperProps): import("react/jsx-runtime").JSX.Element;
15
15
  export {};
@@ -12,6 +12,9 @@ export declare const Sidebar: React.FC<SidebarProps>;
12
12
  export declare const SidebarHeader: ({ children, className, }: PropsWithChildren<{
13
13
  className?: string;
14
14
  }>) => import("react/jsx-runtime").JSX.Element;
15
+ export declare const SidebarBody: ({ children, className, }: PropsWithChildren<{
16
+ className?: string;
17
+ }>) => import("react/jsx-runtime").JSX.Element;
15
18
  export declare const SidebarNav: ({ children, className, }: PropsWithChildren<{
16
19
  className?: string;
17
20
  }>) => import("react/jsx-runtime").JSX.Element;