@tetrascience-npm/tetrascience-react-ui 0.5.0-beta.43.1 → 0.5.0-beta.44.1
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/composed/FormPatterns/FormSection.cjs +2 -0
- package/dist/components/composed/FormPatterns/FormSection.cjs.map +1 -0
- package/dist/components/composed/FormPatterns/FormSection.js +32 -0
- package/dist/components/composed/FormPatterns/FormSection.js.map +1 -0
- package/dist/index.cjs +1 -1
- package/dist/index.css +1 -1
- package/dist/index.d.ts +10 -2
- package/dist/index.js +587 -585
- package/dist/index.js.map +1 -1
- package/dist/index.tailwind.css +1 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1314,6 +1314,14 @@ export declare interface FilterCondition {
|
|
|
1314
1314
|
|
|
1315
1315
|
export declare type FilterOperator = "contains" | "equals" | "not_equals" | "starts_with" | "ends_with" | "is_empty" | "is_not_empty";
|
|
1316
1316
|
|
|
1317
|
+
export declare function FormSection({ heading, description, children, className, ...props }: FormSectionProps): JSX.Element;
|
|
1318
|
+
|
|
1319
|
+
export declare interface FormSectionProps extends React_2.ComponentProps<"div"> {
|
|
1320
|
+
heading: string;
|
|
1321
|
+
description?: string;
|
|
1322
|
+
children: React_2.ReactNode;
|
|
1323
|
+
}
|
|
1324
|
+
|
|
1317
1325
|
export declare const getAttachmentLabel: (data: AttachmentData) => string;
|
|
1318
1326
|
|
|
1319
1327
|
export declare const getMediaCategory: (data: AttachmentData) => AttachmentMediaCategory;
|
|
@@ -1533,7 +1541,7 @@ export declare function ItemHeader({ className, ...props }: React_2.ComponentPro
|
|
|
1533
1541
|
export declare function ItemMedia({ className, variant, ...props }: React_2.ComponentProps<"div"> & VariantProps<typeof itemMediaVariants>): JSX.Element;
|
|
1534
1542
|
|
|
1535
1543
|
declare const itemMediaVariants: (props?: ({
|
|
1536
|
-
variant?: "
|
|
1544
|
+
variant?: "image" | "default" | "icon" | null | undefined;
|
|
1537
1545
|
} & ClassProp) | undefined) => string;
|
|
1538
1546
|
|
|
1539
1547
|
export declare function ItemSeparator({ className, ...props }: React_2.ComponentProps<typeof Separator>): JSX.Element;
|
|
@@ -2803,7 +2811,7 @@ export declare function TabsContent({ className, ...props }: React_2.ComponentPr
|
|
|
2803
2811
|
export declare function TabsList({ className, variant, ...props }: React_2.ComponentProps<typeof Tabs_2.List> & VariantProps<typeof tabsListVariants>): JSX.Element;
|
|
2804
2812
|
|
|
2805
2813
|
export declare const tabsListVariants: (props?: ({
|
|
2806
|
-
variant?: "
|
|
2814
|
+
variant?: "line" | "default" | null | undefined;
|
|
2807
2815
|
} & ClassProp) | undefined) => string;
|
|
2808
2816
|
|
|
2809
2817
|
export declare function TabsTrigger({ className, ...props }: React_2.ComponentProps<typeof Tabs_2.Trigger>): JSX.Element;
|