@devopness/ui-react 2.175.0 → 2.177.0

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.
@@ -0,0 +1,26 @@
1
+ type FormTextProps = {
2
+ /** Main title */
3
+ title: string;
4
+ /** Optional subtitle, can be text or ReactNode */
5
+ subTitle?: React.ReactNode;
6
+ /** Optional custom color for subtitle */
7
+ subTitleColor?: string;
8
+ };
9
+ /**
10
+ * FormText Component
11
+ *
12
+ * Displays a section with a title, an optional subtitle,
13
+ * and a divider line.
14
+ *
15
+ * @example
16
+ * ```tsx
17
+ * <FormText
18
+ * title="Form Section"
19
+ * subTitle="This is an optional subtitle"
20
+ * subTitleColor="red"
21
+ * />
22
+ * ```
23
+ */
24
+ declare const FormText: ({ title, subTitle, subTitleColor }: FormTextProps) => import("react/jsx-runtime").JSX.Element;
25
+ export { FormText };
26
+ export type { FormTextProps };
@@ -0,0 +1,8 @@
1
+ declare const Wrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
+ declare const Line: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
3
+ declare const Title: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLHeadingElement>, HTMLHeadingElement>, never>> & string;
4
+ type ParagraphProps = {
5
+ subtitleColor?: string;
6
+ };
7
+ declare const Paragraph: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components/dist/types').Substitute<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLParagraphElement>, HTMLParagraphElement>, ParagraphProps>> & string;
8
+ export { Wrapper, Line, Title, Paragraph };
@@ -0,0 +1 @@
1
+ export * from './FormText';
@@ -0,0 +1,21 @@
1
+ import { default as React } from 'react';
2
+ /**
3
+ * Illustration Component
4
+ *
5
+ * A simple flex container to center content horizontally and vertically,
6
+ * with a fixed height and bottom border.
7
+ *
8
+ * @example
9
+ * ```tsx
10
+ * <Illustration>
11
+ * <img src="logo.png" alt="Logo" />
12
+ * </Illustration>
13
+ * ```
14
+ */
15
+ type IllustrationProps = {
16
+ /** React children to render inside */
17
+ children: React.ReactNode;
18
+ };
19
+ declare const Illustration: ({ children }: IllustrationProps) => import("react/jsx-runtime").JSX.Element;
20
+ export { Illustration };
21
+ export type { IllustrationProps };
@@ -0,0 +1,2 @@
1
+ declare const Wrapper: import('styled-components/dist/types').IStyledComponentBase<"web", import('styled-components').FastOmit<import('react').DetailedHTMLProps<import('react').HTMLAttributes<HTMLDivElement>, HTMLDivElement>, never>> & string;
2
+ export { Wrapper };
@@ -0,0 +1 @@
1
+ export * from './Illustration';
@@ -1,3 +1,5 @@
1
1
  export * from './Alert';
2
2
  export * from './Input';
3
3
  export * from './Container';
4
+ export * from './FormText';
5
+ export * from './Illustration';