+>(({ className, ...props }, ref) => (
+ [role=checkbox]]:translate-y-[2px]',
+ className
+ )}
+ {...props}
+ />
+));
+TableCell.displayName = 'TableCell';
+
+const TableCaption = React.forwardRef<
+ HTMLTableCaptionElement,
+ React.HTMLAttributes
+>(({ className, ...props }, ref) => (
+
+));
+TableCaption.displayName = 'TableCaption';
+
+export {
+ Table,
+ TableBody,
+ TableCaption,
+ TableCell,
+ TableFooter,
+ TableHead,
+ TableHeader,
+ TableRow,
+};
diff --git a/docs/src/css/custom.css b/docs/src/css/custom.css
index 662cc53e4f..503b6e1cbd 100644
--- a/docs/src/css/custom.css
+++ b/docs/src/css/custom.css
@@ -84,6 +84,10 @@ this is the class for the sidebar categories that section headers
@apply flex flex-col text-left font-bold text-3xl;
}
+ .transformer-page-header {
+ @apply flex flex-row gap-4 font-bold text-3xl items-center;
+ }
+
.heroImage {
@apply py-10;
}
diff --git a/docs/src/theme/DocSidebarItem/Link/index.js b/docs/src/theme/DocSidebarItem/Link/index.js
index 8d867a6f84..8787c9753a 100644
--- a/docs/src/theme/DocSidebarItem/Link/index.js
+++ b/docs/src/theme/DocSidebarItem/Link/index.js
@@ -102,7 +102,7 @@ export const RenderIcon = (name) => {
return ;
case 'Custom':
return ;
- case 'Pre-built':
+ case 'System':
return ;
case 'Use cases':
return ;
diff --git a/docs/src/utils.ts b/docs/src/utils.ts
new file mode 100644
index 0000000000..2819a830d2
--- /dev/null
+++ b/docs/src/utils.ts
@@ -0,0 +1,6 @@
+import { clsx, type ClassValue } from 'clsx';
+import { twMerge } from 'tailwind-merge';
+
+export function cn(...inputs: ClassValue[]) {
+ return twMerge(clsx(inputs));
+}
diff --git a/frontend/app/new/transformer/CustomTransformerForms/CustomEmailTransformerForm.tsx b/frontend/app/new/transformer/CustomTransformerForms/CustomEmailTransformerForm.tsx
index 8810c6eb5e..c6e50767db 100644
--- a/frontend/app/new/transformer/CustomTransformerForms/CustomEmailTransformerForm.tsx
+++ b/frontend/app/new/transformer/CustomTransformerForms/CustomEmailTransformerForm.tsx
@@ -50,7 +50,8 @@ export default function CustomEmailTransformerForm(props: Props): ReactElement {
Preserve Domain
- Set the length of the output email to be the same as the input
+ Preserve the input domain including top level domain to the
+ output value
diff --git a/frontend/app/transformers/Sheetforms/EmailTransformerForm.tsx b/frontend/app/transformers/Sheetforms/EmailTransformerForm.tsx
index 774c4be244..36582cb3d3 100644
--- a/frontend/app/transformers/Sheetforms/EmailTransformerForm.tsx
+++ b/frontend/app/transformers/Sheetforms/EmailTransformerForm.tsx
@@ -82,7 +82,8 @@ export default function EmailTransformerForm(props: Props): ReactElement {
Preserve Domain
- Set the length of the output email to be the same as the input
+ Preserve the input domain including top level domain to the
+ output value
diff --git a/frontend/package.json b/frontend/package.json
index ea35d4afdd..250b0ee4d6 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -4,7 +4,7 @@
"private": true,
"type": "module",
"scripts": {
- "dev": "next dev",
+ "dev": "next dev -p 3001",
"build": "next build",
"start": "next start",
"lint": "next lint",
|