Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/connect-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pipedream/connect-react",
"version": "1.0.0-preview.16",
"version": "1.0.0-preview.17",
"description": "Pipedream Connect library for React",
"files": [
"dist"
Expand Down
6 changes: 4 additions & 2 deletions packages/connect-react/src/components/Label.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
import type { CSSProperties } from "react";
import type { ConfigurableProp, ConfigurableProps } from "@pipedream/sdk";
import type {
ConfigurableProp, ConfigurableProps,
} from "@pipedream/sdk";
import { useCustomize } from "../hooks/customization-context";
import type { FormFieldContext } from "../hooks/form-field-context";
import { FormContext } from "../hooks/form-context";
Expand All @@ -23,12 +25,12 @@ export function Label<T extends ConfigurableProps, U extends ConfigurableProp>(p
color: theme.colors.neutral90,
fontWeight: 450,
gridArea: "label",
textTransform: "capitalize",
lineHeight: "1.5",
};

// XXX have to fix typing in customization (and elsewere really)
return (
// eslint-disable-next-line @typescript-eslint/no-explicit-any
<label htmlFor={id} {...getProps("label", baseStyles, props as any)}>{text}</label>
);
}
17 changes: 7 additions & 10 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading