stp-ui-kit 0.0.108 → 0.0.110

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,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  interface BaseInputWrapperProps {
3
3
  label?: string;
4
+ labelPlacement?: "block" | "inline";
4
5
  error?: string;
5
6
  helperText?: string;
6
7
  disabled?: boolean;
@@ -10,5 +11,5 @@ interface BaseInputWrapperProps {
10
11
  children: React.ReactNode;
11
12
  className?: string;
12
13
  }
13
- export declare const BaseInputWrapper: ({ label, error, helperText, disabled, readOnly, prefix, postfix, children, className, }: BaseInputWrapperProps) => import("react/jsx-runtime").JSX.Element;
14
+ export declare const BaseInputWrapper: ({ label, labelPlacement, error, helperText, disabled, readOnly, prefix, postfix, children, className, }: BaseInputWrapperProps) => import("react/jsx-runtime").JSX.Element;
14
15
  export {};
@@ -1,6 +1,7 @@
1
1
  import { default as React } from 'react';
2
2
  interface InputProps extends Omit<React.InputHTMLAttributes<HTMLInputElement>, "prefix" | "postfix"> {
3
3
  label?: string;
4
+ labelPlacement?: "block" | "inline";
4
5
  error?: string;
5
6
  helperText?: string;
6
7
  prefix?: React.ReactNode;
@@ -6,6 +6,7 @@ interface SelectOption {
6
6
  }
7
7
  interface SelectProps {
8
8
  label?: React.ReactNode;
9
+ labelPlacement?: "block" | "inline";
9
10
  error?: string;
10
11
  helperText?: string;
11
12
  disabled?: boolean;
@@ -0,0 +1,2 @@
1
+ import { HTMLAttributes, PropsWithChildren } from 'react';
2
+ export declare const BottomBar: ({ children, className, ...rest }: PropsWithChildren<HTMLAttributes<HTMLDivElement>>) => import("react/jsx-runtime").JSX.Element;
@@ -0,0 +1,2 @@
1
+ import { HTMLAttributes, PropsWithChildren } from 'react';
2
+ export declare const Content: ({ children, className, ...rest }: PropsWithChildren<HTMLAttributes<HTMLDivElement>>) => import("react/jsx-runtime").JSX.Element;
@@ -7,3 +7,5 @@ export * from './Page/Page';
7
7
  export * from './Section/Section';
8
8
  export * from './SectionWrapper/SectionWrapper';
9
9
  export * from './ButtonGroup/ButtonGroup';
10
+ export * from './Content/Content';
11
+ export * from './BottomBar/BottomBar';