Skip to content

Commit 12ada0c

Browse files
authored
v0.6.99: tables filter operators, copilot chat persistence consolidation, together AI, Baseten, Ollama Cloud, Linq integrations, kb doc ownership bindings
2 parents e32699d + c786ada commit 12ada0c

217 files changed

Lines changed: 31921 additions & 2058 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

apps/docs/components/icons.tsx

Lines changed: 50 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2439,6 +2439,21 @@ export function JiraIcon(props: SVGProps<SVGSVGElement>) {
24392439
)
24402440
}
24412441

2442+
export function LinqIcon(props: SVGProps<SVGSVGElement>) {
2443+
return (
2444+
<svg {...props} viewBox='0 0 113.4 116' fill='none' xmlns='http://www.w3.org/2000/svg'>
2445+
<polygon
2446+
fill='#FFFFFF'
2447+
points='34.3 116 39.2 114.3 97 91 105.1 63.9 41.5 90.5 15.4 27.4 8.8 55.1 34.2 116'
2448+
/>
2449+
<path
2450+
fill='#FFFFFF'
2451+
d='m18.5 24.1 25.3 60.9 60.9-25-25.4-60-60.8 24.1zm33.6-9.7 25-9.9 2.9 6.7-24.9 10.3-3-7.1zm33.7 7.6-4.2-7.3-25.1 10.4 5.8 13.9 25.3-10.1-1.8-4.5v-1.5-0.9zm-62.2 4.2 18-7.3 2.9 7.2 7.2-3 7.1 17.5-24.7 10.7-10.5-25.1zm40.3 16.6 25.2-10.5 7.5 18.1-3.6 1.4 1.4 3.7-3.6 1.4 1.5 3.5-17.9 7.2-10.5-24.8zm-28.4 11.9 14.4-5.8 1.5 3.6 3.3-1.5-1.4-3.6 6.9-3 10.6 24.7-14.2 5.8-1.5-3.6-3.6 1.5 1.4 3.6-7 3.1-10.4-24.8zm59 0.8 3.7-1.5 1.5 3.6-3.6 1.4-1.6-3.5z'
2452+
/>
2453+
</svg>
2454+
)
2455+
}
2456+
24422457
export function LinearIcon(props: React.SVGProps<SVGSVGElement>) {
24432458
return (
24442459
<svg
@@ -3998,6 +4013,41 @@ export function OpenRouterIcon(props: SVGProps<SVGSVGElement>) {
39984013
)
39994014
}
40004015

4016+
export function TogetherIcon(props: SVGProps<SVGSVGElement>) {
4017+
return (
4018+
<svg {...props} height='1em' width='1em' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'>
4019+
<path
4020+
d='M23.197 4.503A6 6 0 0015 2.307a5.973 5.973 0 00-2.995 4.933l5.996.008v.515h-5.996c.039.937.298 1.87.8 2.74a6 6 0 1010.39-6z'
4021+
fill='#EF2CC1'
4022+
/>
4023+
<path
4024+
d='M.805 4.5A6 6 0 003 12.697a5.972 5.972 0 005.77.127L5.779 7.627l.446-.257 2.997 5.192A6 6 0 10.804 4.5z'
4025+
fill='#CAAEF5'
4026+
/>
4027+
<path
4028+
d='M12 23.894a6 6 0 005.999-6c0-2.13-1.1-3.996-2.775-5.06l-3.005 5.189-.444-.258 2.997-5.192A6 6 0 1012 23.894z'
4029+
fill='#FC4C02'
4030+
/>
4031+
</svg>
4032+
)
4033+
}
4034+
4035+
export function BasetenIcon(props: SVGProps<SVGSVGElement>) {
4036+
return (
4037+
<svg
4038+
{...props}
4039+
fill='currentColor'
4040+
fillRule='evenodd'
4041+
height='1em'
4042+
width='1em'
4043+
viewBox='0 0 24 24'
4044+
xmlns='http://www.w3.org/2000/svg'
4045+
>
4046+
<path d='M2.316 4.8h14.682v4.8H7.31a.302.302 0 00-.308.3v4.2c0 .171.14.3.308.3h9.688v4.8h-4.686a.302.302 0 00-.308.3v4.2c0 .171.141.3.308.3h4.378a.297.297 0 00.308-.3v-4.5h4.694a.302.302 0 00.308-.3v-4.2c0-.171-.14-.3-.308-.3h-4.694V9.6h4.694A.302.302 0 0022 9.3V5.1c0-.171-.14-.3-.308-.3h-4.694V.3c0-.171-.14-.3-.308-.3H2.316A.31.31 0 002 .3v4.2c0 .171.14.3.316.3z' />
4047+
</svg>
4048+
)
4049+
}
4050+
40014051
export function MondayIcon(props: SVGProps<SVGSVGElement>) {
40024052
return (
40034053
<svg

apps/docs/components/ui/icon-mapping.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -112,6 +112,7 @@ import {
112112
LinearIcon,
113113
LinkedInIcon,
114114
LinkupIcon,
115+
LinqIcon,
115116
LoopsIcon,
116117
LumaIcon,
117118
MailchimpIcon,
@@ -340,6 +341,7 @@ export const blockTypeToIconMap: Record<string, IconComponent> = {
340341
linear_v2: LinearIcon,
341342
linkedin: LinkedInIcon,
342343
linkup: LinkupIcon,
344+
linq: LinqIcon,
343345
loops: LoopsIcon,
344346
luma: LumaIcon,
345347
mailchimp: MailchimpIcon,

0 commit comments

Comments
 (0)