kku-ui 0.9.983 → 0.9.985

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.
@@ -4,14 +4,32 @@ import { KButton, KInputProps } from '../../..';
4
4
  declare const inputGroupVariants: (props?: ({
5
5
  size?: "sm" | "md" | "lg" | null | undefined;
6
6
  } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
7
- declare const KInputGroup: ({ className, size, ...props }: ComponentProps<'div'> & VariantProps<typeof inputGroupVariants>) => import("react/jsx-runtime").JSX.Element;
7
+ declare const KInputGroup: {
8
+ ({ className, size, ...props }: ComponentProps<'div'> & VariantProps<typeof inputGroupVariants>): import("react/jsx-runtime").JSX.Element;
9
+ displayName: string;
10
+ };
8
11
  declare const inputGroupAddonVariants: (props?: ({
9
12
  align?: "inline-end" | "inline-start" | "block-end" | "block-start" | null | undefined;
10
13
  size?: "sm" | "md" | "lg" | null | undefined;
11
14
  } & import('class-variance-authority/dist/types').ClassProp) | undefined) => string;
12
- declare function InputGroupAddon({ className, align, ...props }: ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): import("react/jsx-runtime").JSX.Element;
13
- declare function InputGroupButton({ className, size, variant, ...props }: ComponentProps<typeof KButton>): import("react/jsx-runtime").JSX.Element;
14
- declare function InputGroupText({ className, ...props }: ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
15
- declare function InputGroupInput({ className, ...props }: KInputProps): import("react/jsx-runtime").JSX.Element;
16
- declare function InputGroupTextarea({ className, ...props }: ComponentProps<'textarea'>): import("react/jsx-runtime").JSX.Element;
17
- export { KInputGroup, InputGroupAddon, InputGroupText, InputGroupButton, InputGroupInput, InputGroupTextarea, };
15
+ declare function KInputGroupAddon({ className, align, ...props }: ComponentProps<'div'> & VariantProps<typeof inputGroupAddonVariants>): import("react/jsx-runtime").JSX.Element;
16
+ declare namespace KInputGroupAddon {
17
+ var displayName: string;
18
+ }
19
+ declare function KInputGroupButton({ className, size, variant, ...props }: ComponentProps<typeof KButton>): import("react/jsx-runtime").JSX.Element;
20
+ declare namespace KInputGroupButton {
21
+ var displayName: string;
22
+ }
23
+ declare function KInputGroupText({ className, ...props }: ComponentProps<'span'>): import("react/jsx-runtime").JSX.Element;
24
+ declare namespace KInputGroupText {
25
+ var displayName: string;
26
+ }
27
+ declare function KInputGroupInput({ className, ...props }: KInputProps): import("react/jsx-runtime").JSX.Element;
28
+ declare namespace KInputGroupInput {
29
+ var displayName: string;
30
+ }
31
+ declare function KInputGroupTextarea({ className, ...props }: ComponentProps<'textarea'>): import("react/jsx-runtime").JSX.Element;
32
+ declare namespace KInputGroupTextarea {
33
+ var displayName: string;
34
+ }
35
+ export { KInputGroup, KInputGroupAddon, KInputGroupText, KInputGroupButton, KInputGroupInput, KInputGroupTextarea, };
@@ -9,6 +9,8 @@ export interface KNumberStepperProps {
9
9
  className?: string;
10
10
  size?: 'sm' | 'md' | 'lg';
11
11
  style?: CSSProperties;
12
+ align?: 'left' | 'center' | 'right';
13
+ inputWidth?: number;
12
14
  }
13
- declare const KNumberStepper: ({ value: controlledValue, defaultValue, min, max, step, onChange, className, size, style }: KNumberStepperProps) => import("react/jsx-runtime").JSX.Element;
15
+ declare const KNumberStepper: (props: KNumberStepperProps) => import("react/jsx-runtime").JSX.Element;
14
16
  export { KNumberStepper };