Skip to content

Commit 7f7e370

Browse files
committed
v4.0.5 -improvements
1 parent 8979426 commit 7f7e370

4 files changed

Lines changed: 11 additions & 11 deletions

File tree

package.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "remix-development-tools",
33
"description": "Remix development tools - a set of tools for developing/debugging Remix.run apps",
44
"author": "Alem Tuzlak",
5-
"version": "4.0.4",
5+
"version": "4.0.5",
66
"license": "MIT",
77
"keywords": [
88
"remix",
@@ -61,11 +61,11 @@
6161
"node": "./dist/server.cjs",
6262
"default": "./dist/server.js"
6363
},
64-
"./index.css": {
65-
"import": "./dist/index.css",
66-
"require": "./dist/index.css",
67-
"node": "./dist/index.css",
68-
"default": "./dist/index.css"
64+
"./client.css": {
65+
"import": "./dist/client.css",
66+
"require": "./dist/client.css",
67+
"node": "./dist/client.css",
68+
"default": "./dist/client.css"
6969
}
7070
},
7171
"files": [

src/client/components/Input.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ export const Label = ({
1111
...props
1212
}: React.HTMLProps<HTMLLabelElement>) => {
1313
return (
14-
<label className={clsx("rdt-block rdt-text-sm", className)} {...props}>
14+
<label className={clsx("rdt-block rdt-text-white rdt-text-sm", className)} {...props}>
1515
{children}
1616
</label>
1717
);
@@ -29,7 +29,7 @@ const Input = ({ className, name, label, hint, ...props }: InputProps) => {
2929
name={name}
3030
id={name}
3131
className={clsx(
32-
"rdt-w-full rdt-rounded rdt-border rdt-border-gray-400 rdt-bg-[#121212] rdt-px-2 rdt-py-1 rdt-text-sm",
32+
"rdt-w-full rdt-rounded rdt-text-white rdt-border rdt-border-gray-400 rdt-bg-[#121212] rdt-px-2 rdt-py-1 rdt-text-sm",
3333
className
3434
)}
3535
{...props}

src/client/components/Select.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ const SelectWithOptions = <T extends string>({
130130
<Stack className={className} gap="sm">
131131
{label && <Label>{label}</Label>}
132132
<Select value={value} onValueChange={onSelect}>
133-
<SelectTrigger className="rdt-w-full">
133+
<SelectTrigger className="rdt-w-full rdt-text-white">
134134
<SelectValue placeholder={placeholder} />
135135
</SelectTrigger>
136136
<SelectContent>

src/vite/plugin.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -135,8 +135,8 @@ export const remixDevTools: (args?:RemixViteConfig) => Plugin[] = (args) => {
135135

136136
const imports = [
137137
'import { withViteDevTools } from "remix-development-tools/client";',
138-
'import rdtStylesheet from "remix-development-tools/index.css?url";',
139-
'import "remix-development-tools/index.css?inline";',
138+
'import rdtStylesheet from "remix-development-tools/client.css?url";',
139+
'import "remix-development-tools/client.css?inline";',
140140
// plugins.map((plugin) => `import { ${plugin.name} } from "${plugin.path}";`).join("\n"),
141141
];
142142

0 commit comments

Comments
 (0)