Skip to content

Commit 54c8330

Browse files
feat(combobox): beta! This component can be used in production
1 parent e895a61 commit 54c8330

File tree

19 files changed

+1575
-373
lines changed

19 files changed

+1575
-373
lines changed

apps/website/src/routes/docs.css

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
}
1515

1616
h1 {
17-
@apply text-3xl md:text-5xl md:mb-12 font-extrabold tracking-wide;
17+
@apply text-3xl md:text-5xl md:mb-12 font-extrabold;
1818
}
1919

2020
h2 {
@@ -26,7 +26,7 @@
2626
}
2727

2828
h4 {
29-
@apply text-lg font-medium mt-6 mb-4 font-bold;
29+
@apply text-lg font-medium mt-6 mb-4 font-[600];
3030
}
3131

3232
h5 {

apps/website/src/routes/docs/_components/anatomy-table/anatomy-table.tsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ type AnatomyTableProps = {
1111

1212
export const AnatomyTable = component$(({ propDescriptors }: AnatomyTableProps) => {
1313
return (
14-
<div class="overflow-auto rounded-xl">
14+
<div class="overflow-auto">
1515
<table class="w-full max-w-full text-left">
1616
<tbody class="divide-y divide-slate-300 dark:divide-slate-600">
1717
<tr class="text-slate-950 dark:text-white">
@@ -23,8 +23,10 @@ export const AnatomyTable = component$(({ propDescriptors }: AnatomyTableProps)
2323
{propDescriptors?.map((propDescriptor) => {
2424
return (
2525
<tr key={propDescriptor.name}>
26-
<td class="prose prose-sm py-3 pl-2 pr-2 align-center sm:pl-0 md:align-baseline">
27-
<code>{propDescriptor.name}</code>
26+
<td class="py-3 pl-2 pr-2 align-center sm:pl-0 md:align-baseline">
27+
<code class="px-2 py-[2px] rounded-md border-[1px] border-b-[2px] border-qwikui-blue-500 bg-qwikui-blue-50 dark:bg-qwikui-purple-100 dark:border-qwikui-purple-500 text-slate-950 rounded-md mr-6 font-[400]">
28+
{propDescriptor.name}
29+
</code>
2830
</td>
2931
<td class="py-3 align-baseline">
3032
<div class="prose prose-sm prose-docs-table">

apps/website/src/routes/docs/_components/api-table/api-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ export const APITable = component$(({ propDescriptors }: APITableProps) => {
4141
{propDescriptor.info && (
4242
<Popover placement="top">
4343
<PopoverContent>
44-
<div class="shadow-light-high bg-qwikui-blue-50 text-slate-950 dark:shadow-dark-high max-w-xs mb-2 text-md py-2 px-3 rounded-lg sm:w-max border-[1px] border-b-2 border-qwikui-blue-500 dark:border-qwikui-purple-500 dark:bg-qwikui-purple-100 font-[500]">
44+
<div class="shadow-light-medium bg-qwikui-blue-50 text-slate-950 dark:shadow-dark-high max-w-xs mb-2 text-md py-2 px-3 rounded-lg sm:w-max border-[1px] border-b-2 border-qwikui-blue-500 dark:border-qwikui-purple-500 dark:bg-qwikui-purple-100 font-[500]">
4545
{propDescriptor?.info}
4646
</div>
4747
</PopoverContent>

apps/website/src/routes/docs/_components/keyboard-interaction-table/keyboard-interaction-table.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export const KBInteractionTableRow = component$(
4646
return (
4747
<tr class="border-b-[1px] border-slate-300 dark:border-slate-600">
4848
<td class="py-4">
49-
<kbd class="border w-max shadow-light-medium dark:shadow-dark-medium rounded-md px-2 capitalize text-base inline-block border-b-[2px] border-qwikui-blue-500 bg-qwikui-blue-50 dark:bg-qwikui-purple-100 text-slate-700 dark:text-slate-950 dark:border-qwikui-purple-400 font-[600]">
49+
<kbd class="border w-max shadow-light-medium dark:shadow-dark-medium rounded-md px-2 capitalize text-base inline-block border-b-[2px] border-qwikui-blue-500 bg-qwikui-blue-50 dark:bg-qwikui-purple-100 text-slate-700 dark:text-slate-950 dark:border-qwikui-purple-400">
5050
{keyTitle}
5151
</kbd>
5252
</td>

apps/website/src/routes/docs/headless/(components)/accordion/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ import {statusByComponent} from '../../../../../_state/component-statuses';
3333

3434
# Accordion
3535

36-
#### A stacked set of interactive headings which reveal or hide their associated content.
36+
A stacked set of interactive headings which reveal or hide their associated content.
3737

3838
{' '}
3939

0 commit comments

Comments
 (0)