stp-ui-kit 0.0.102 → 0.0.104
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/components/feedback/AppLoader/AppLoader.d.ts +1 -0
- package/dist/components/feedback/Info/Info.d.ts +7 -0
- package/dist/components/feedback/index.d.ts +2 -0
- package/dist/components/form/Input/BaseInputWrapper.d.ts +2 -1
- package/dist/stp-ui-kit.es.js +1722 -1655
- package/dist/stp-ui-kit.es.js.map +1 -1
- package/dist/style.css +1 -1
- package/package.json +2 -1
- package/src/styles/main.scss +10 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const AppLoader: () => import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { HTMLAttributes, ReactNode } from 'react';
|
|
2
|
+
export interface InfoProps extends HTMLAttributes<HTMLDivElement> {
|
|
3
|
+
text: ReactNode;
|
|
4
|
+
tone?: "warning" | "information";
|
|
5
|
+
}
|
|
6
|
+
export declare const InfoIcons: Record<"warning" | "information", ReactNode>;
|
|
7
|
+
export declare const Info: ({ text, tone, className, ...rest }: InfoProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -8,6 +8,7 @@ interface BaseInputWrapperProps {
|
|
|
8
8
|
prefix?: React.ReactNode;
|
|
9
9
|
postfix?: React.ReactNode;
|
|
10
10
|
children: React.ReactNode;
|
|
11
|
+
className?: string;
|
|
11
12
|
}
|
|
12
|
-
export declare const BaseInputWrapper: ({ label, error, helperText, disabled, readOnly, prefix, postfix, children, }: BaseInputWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
|
+
export declare const BaseInputWrapper: ({ label, error, helperText, disabled, readOnly, prefix, postfix, children, className, }: BaseInputWrapperProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
14
|
export {};
|