Skip to content

Commit 6d47002

Browse files
authored
Merge pull request UiPath#66 from UiPath/style/typography-followup
style: typography followup - buttons, send/execute text, light theme colors
2 parents a59e996 + 36876b9 commit 6d47002

9 files changed

Lines changed: 13 additions & 13 deletions

File tree

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "uipath-dev"
3-
version = "0.0.46"
3+
version = "0.0.47"
44
description = "UiPath Developer Console"
55
readme = { file = "README.md", content-type = "text/markdown" }
66
requires-python = ">=3.11"

src/uipath/dev/server/frontend/src/components/chat/ChatInput.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ export default function ChatInput({ onSend, disabled, placeholder }: Props) {
4242
<button
4343
onClick={handleSubmit}
4444
disabled={!canSend}
45-
className="text-[10px] uppercase tracking-wider font-semibold px-2 py-1 rounded transition-colors cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed"
45+
className="text-[11px] uppercase tracking-wider font-semibold px-2 py-1 rounded transition-colors cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed"
4646
style={{
4747
color: canSend ? "var(--accent)" : "var(--text-muted)",
4848
background: "transparent",

src/uipath/dev/server/frontend/src/components/chat/ChatInterrupt.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ export default function ChatInterrupt({ interrupt, onRespond }: Props) {
158158
}
159159
}}
160160
disabled={!responseText.trim()}
161-
className="text-[10px] uppercase tracking-wider font-semibold px-2 py-1 rounded transition-colors cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed"
161+
className="text-[11px] uppercase tracking-wider font-semibold px-2 py-1 rounded transition-colors cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed"
162162
style={{
163163
color: responseText.trim() ? "var(--accent)" : "var(--text-muted)",
164164
background: "transparent",

src/uipath/dev/server/frontend/src/components/runs/SetupView.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,7 @@ export default function SetupView({ entrypoint, mode, ws, onRunCreated }: Props)
315315
<button
316316
onClick={handleExecute}
317317
disabled={loading || loadingSchema || !!schemaError}
318-
className="w-full py-2 text-xs font-semibold rounded-md border cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed transition-colors flex items-center justify-center gap-2"
318+
className="w-full py-2 text-sm font-semibold rounded-md border cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed transition-colors flex items-center justify-center gap-2"
319319
style={{
320320
background: "transparent",
321321
borderColor: modeColor,
@@ -372,7 +372,7 @@ export default function SetupView({ entrypoint, mode, ws, onRunCreated }: Props)
372372
<button
373373
onClick={handleChatSend}
374374
disabled={loading || loadingSchema || !chatText.trim()}
375-
className="text-[10px] uppercase tracking-wider font-semibold px-2 py-1 rounded transition-colors cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed"
375+
className="text-[11px] uppercase tracking-wider font-semibold px-2 py-1 rounded transition-colors cursor-pointer disabled:opacity-30 disabled:cursor-not-allowed"
376376
style={{
377377
color:
378378
!loading && chatText.trim()

src/uipath/dev/server/frontend/src/styles/global.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,9 @@
4242
--accent: #fa4616;
4343
--accent-hover: #e03d12;
4444
--accent-light: #ff6a3d;
45-
--success: #16a34a;
45+
--success: #22c55e;
4646
--warning: #ca8a04;
47-
--error: #dc2626;
47+
--error: #ef4444;
4848
--info: #2563eb;
4949
--sidebar-bg: #ffffff;
5050
--card-bg: #ffffff;

src/uipath/dev/server/static/assets/index-VWiU7WyX.css renamed to src/uipath/dev/server/static/assets/index-BDna691u.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uipath/dev/server/static/assets/index-BCpwNbOJ.js renamed to src/uipath/dev/server/static/assets/index-CpD0GUWw.js

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/uipath/dev/server/static/index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@
55
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
66
<title>UiPath Developer Console</title>
77
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
8-
<script type="module" crossorigin src="/assets/index-BCpwNbOJ.js"></script>
9-
<link rel="stylesheet" crossorigin href="/assets/index-VWiU7WyX.css">
8+
<script type="module" crossorigin src="/assets/index-CpD0GUWw.js"></script>
9+
<link rel="stylesheet" crossorigin href="/assets/index-BDna691u.css">
1010
</head>
1111
<body>
1212
<div id="root"></div>

uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)