Skip to content

Commit 1f9ba6f

Browse files
authored
Bump all dev deps (#2292)
bump all dev deps
1 parent 84727c6 commit 1f9ba6f

File tree

14 files changed

+2030
-3897
lines changed

14 files changed

+2030
-3897
lines changed

app/forms/image-upload.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -637,7 +637,7 @@ export function CreateImageSideModalForm() {
637637
className={
638638
allDone
639639
? 'transition-colors bg-accent-secondary children:text-accent'
640-
: ' transition-colors'
640+
: 'transition-colors'
641641
}
642642
/>
643643
</div>

app/pages/project/instances/instance/tabs/MetricsTab.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ function DiskMetric({
124124

125125
return (
126126
<div className="flex w-1/2 grow flex-col">
127-
<h2 className="ml-3 flex items-center text-mono-xs text-secondary ">
127+
<h2 className="ml-3 flex items-center text-mono-xs text-secondary">
128128
{title} <div className="ml-1 normal-case text-quaternary">{label}</div>
129129
{isLoading && <Spinner className="ml-2" />}
130130
</h2>

app/ui/lib/Combobox.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -124,7 +124,7 @@ export const Combobox = ({
124124
modal={false}
125125
>
126126
{filteredItems.length === 0 && (
127-
<ComboboxOption disabled value="no-matches" className="relative ">
127+
<ComboboxOption disabled value="no-matches" className="relative">
128128
<div className="ox-menu-item !text-disabled">No items match</div>
129129
</ComboboxOption>
130130
)}

app/ui/lib/DateField.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,7 @@ function DateSegment({
129129
(segment.maxValue != null && String(segment.maxValue).length + 'ch') || undefined,
130130
}}
131131
className={cn(
132-
'group group box-content rounded px-[1px] text-right tabular-nums outline-none',
132+
'group box-content rounded px-[1px] text-right tabular-nums outline-none',
133133
!readOnly && 'focus:text-default focus:bg-accent-secondary-hover',
134134
segment.type === 'timeZoneName' ? 'ml-1 text-sans-sm' : 'text-sans-md'
135135
)}

app/ui/lib/DatePicker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function DatePicker(props: DatePickerProps) {
6262
type="button"
6363
className={cn(
6464
state.isOpen && 'z-10 ring-2',
65-
'relative flex h-10 items-center rounded-l rounded-r border text-sans-md border-default focus-within:ring-2 hover:border-raise focus:z-10',
65+
'relative flex h-10 items-center rounded-l rounded-r border text-sans-md border-default focus-within:ring-2 hover:border-raise focus:z-10',
6666
state.isInvalid
6767
? 'focus-error border-error ring-error-secondary'
6868
: 'border-default ring-accent-secondary'

app/ui/lib/DateRangePicker.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export function DateRangePicker(props: DateRangePickerProps) {
6262
type="button"
6363
className={cn(
6464
state.isOpen && 'z-10 ring-2',
65-
'relative flex h-10 items-center rounded-l rounded-r border text-sans-md border-default focus-within:ring-2 hover:border-raise focus:z-10',
65+
'relative flex h-10 items-center rounded-l rounded-r border text-sans-md border-default focus-within:ring-2 hover:border-raise focus:z-10',
6666
state.isInvalid
6767
? 'focus-error border-error ring-error-secondary'
6868
: 'border-default ring-accent-secondary'

app/ui/lib/Listbox.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,7 @@ export const Listbox = <Value extends string = string>({
8989
<ListboxButton
9090
name={name}
9191
className={cn(
92-
`flex h-10 w-full items-center justify-between
93-
rounded border text-sans-md`,
92+
`flex h-10 w-full items-center justify-between rounded border text-sans-md`,
9493
hasError
9594
? 'focus-error border-error-secondary hover:border-error'
9695
: 'border-default hover:border-hover',

app/ui/lib/NumberInput.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,7 @@ export const NumberInput = React.forwardRef<
4949
{...inputProps}
5050
ref={mergeRefs([forwardedRef, inputRef])}
5151
className={cn(
52-
`w-full rounded border-none px-3
53-
py-[0.6875rem] !outline-offset-1 text-sans-md
54-
text-default bg-default placeholder:text-quaternary
55-
focus:outline-none disabled:cursor-not-allowed disabled:text-tertiary disabled:bg-disabled`,
52+
`w-full rounded border-none px-3 py-[0.6875rem] !outline-offset-1 text-sans-md text-default bg-default placeholder:text-quaternary focus:outline-none disabled:cursor-not-allowed disabled:text-tertiary disabled:bg-disabled`,
5653
props.error && 'focus-error',
5754
props.isDisabled && 'text-disabled bg-disabled'
5855
)}

app/ui/lib/TextInput.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -73,10 +73,7 @@ export const TextInput = React.forwardRef<
7373
ref={ref}
7474
type={type}
7575
className={cn(
76-
`w-full rounded border-none px-3
77-
py-[0.6875rem] !outline-offset-1 text-sans-md
78-
text-default bg-default placeholder:text-quaternary
79-
focus:outline-none disabled:cursor-not-allowed disabled:text-tertiary disabled:bg-disabled`,
76+
`w-full rounded border-none px-3 py-[0.6875rem] !outline-offset-1 text-sans-md text-default bg-default placeholder:text-quaternary focus:outline-none disabled:cursor-not-allowed disabled:text-tertiary disabled:bg-disabled`,
8077
error && 'focus-error',
8178
fieldClassName,
8279
disabled && 'text-disabled bg-disabled'

app/ui/styles/components/Tabs.css

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@
3232
}
3333

3434
.ox-tab {
35-
@apply h-10 space-x-2 whitespace-nowrap border-b px-1.5 pb-1 pt-2
36-
uppercase !no-underline text-mono-sm text-tertiary border-secondary;
35+
@apply h-10 space-x-2 whitespace-nowrap border-b px-1.5 pb-1 pt-2 uppercase !no-underline text-mono-sm text-tertiary border-secondary;
3736
}
3837

3938
.ox-tab[data-state='active'],

0 commit comments

Comments
 (0)