@galaxy-io/dls 1.2.7 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (305) hide show
  1. package/README.md +2 -0
  2. package/dist/avatar/Avatar.d.ts +2 -1
  3. package/dist/avatar/Avatar.js +103 -14
  4. package/dist/buttons/Button.d.ts +6 -1
  5. package/dist/buttons/Button.js +8 -4
  6. package/dist/charts/BarChart.d.ts +30 -20
  7. package/dist/charts/BarChart.js +183 -253
  8. package/dist/charts/ChartAxis.d.ts +47 -22
  9. package/dist/charts/ChartAxis.js +81 -60
  10. package/dist/charts/ChartCategoryTargets.d.ts +27 -0
  11. package/dist/charts/ChartCategoryTargets.js +75 -0
  12. package/dist/charts/ChartEmptyState.d.ts +17 -0
  13. package/dist/charts/ChartEmptyState.js +29 -0
  14. package/dist/charts/ChartFrame.d.ts +110 -0
  15. package/dist/charts/ChartFrame.js +143 -0
  16. package/dist/charts/ChartLegend.d.ts +27 -4
  17. package/dist/charts/ChartLegend.js +46 -23
  18. package/dist/charts/ChartPrimitives.d.ts +230 -0
  19. package/dist/charts/ChartPrimitives.js +305 -0
  20. package/dist/charts/ChartTooltip.d.ts +25 -4
  21. package/dist/charts/ChartTooltip.js +55 -49
  22. package/dist/charts/LineChart.d.ts +42 -20
  23. package/dist/charts/LineChart.js +175 -241
  24. package/dist/charts/PieChart.d.ts +48 -32
  25. package/dist/charts/PieChart.js +180 -170
  26. package/dist/charts/barChartGeometry.d.ts +120 -0
  27. package/dist/charts/barChartGeometry.js +210 -0
  28. package/dist/charts/barChartLegend.d.ts +25 -0
  29. package/dist/charts/barChartLegend.js +23 -0
  30. package/dist/charts/chartFormat.d.ts +27 -0
  31. package/dist/charts/chartFormat.js +71 -0
  32. package/dist/charts/chartScales.d.ts +120 -0
  33. package/dist/charts/chartScales.js +165 -0
  34. package/dist/charts/chartTheme.d.ts +18 -0
  35. package/dist/charts/chartTheme.js +26 -0
  36. package/dist/charts/constants.d.ts +241 -18
  37. package/dist/charts/constants.js +261 -32
  38. package/dist/charts/lineChartGeometry.d.ts +92 -0
  39. package/dist/charts/lineChartGeometry.js +134 -0
  40. package/dist/charts/pieChartGeometry.d.ts +60 -0
  41. package/dist/charts/pieChartGeometry.js +79 -0
  42. package/dist/charts/types.d.ts +428 -54
  43. package/dist/charts/types.js +155 -0
  44. package/dist/charts/useCartesianChartLayout.d.ts +70 -0
  45. package/dist/charts/useCartesianChartLayout.js +56 -0
  46. package/dist/charts/useChartDimensions.d.ts +47 -0
  47. package/dist/charts/useChartDimensions.js +63 -0
  48. package/dist/charts/useChartFormatters.d.ts +19 -0
  49. package/dist/charts/useChartFormatters.js +20 -0
  50. package/dist/charts/useChartInteraction.d.ts +76 -0
  51. package/dist/charts/useChartInteraction.js +126 -0
  52. package/dist/charts/useChartTooltipPosition.d.ts +53 -0
  53. package/dist/charts/useChartTooltipPosition.js +39 -0
  54. package/dist/charts/useSeriesColorResolver.d.ts +37 -0
  55. package/dist/charts/useSeriesColorResolver.js +27 -0
  56. package/dist/hooks/useElementClientSize.d.ts +20 -0
  57. package/dist/hooks/useElementClientSize.js +43 -0
  58. package/dist/inputs/CheckboxInput.d.ts +7 -2
  59. package/dist/inputs/CheckboxInput.js +30 -14
  60. package/dist/inputs/Input.d.ts +1 -1
  61. package/dist/inputs/Input.js +6 -2
  62. package/dist/inputs/MultiSelectInput.js +1 -1
  63. package/dist/inputs/RadioInput.js +7 -2
  64. package/dist/styles.css +69 -74
  65. package/dist/table/InfiniteSpreadsheet.d.ts +6 -0
  66. package/dist/table/InfiniteSpreadsheet.js +235 -0
  67. package/dist/table/InfiniteTable.d.ts +7 -88
  68. package/dist/table/InfiniteTable.js +366 -577
  69. package/dist/{spreadsheet → table}/SpreadsheetCell.d.ts +6 -4
  70. package/dist/table/SpreadsheetCell.js +71 -0
  71. package/dist/{spreadsheet → table}/SpreadsheetCellEditor.js +27 -21
  72. package/dist/table/SpreadsheetHeaderCell.d.ts +23 -0
  73. package/dist/table/SpreadsheetHeaderCell.js +91 -0
  74. package/dist/table/SpreadsheetMenuItem.d.ts +14 -0
  75. package/dist/table/SpreadsheetMenuItem.js +33 -0
  76. package/dist/table/SpreadsheetPrimitives.d.ts +172 -0
  77. package/dist/table/SpreadsheetPrimitives.js +105 -0
  78. package/dist/table/SpreadsheetRow.d.ts +33 -0
  79. package/dist/table/SpreadsheetRow.js +73 -0
  80. package/dist/{spreadsheet → table}/SpreadsheetRowActionCell.d.ts +5 -7
  81. package/dist/table/SpreadsheetRowActionCell.js +51 -0
  82. package/dist/table/TableExpandCell.d.ts +11 -0
  83. package/dist/table/TableExpandCell.js +24 -0
  84. package/dist/table/TableExpandedRow.d.ts +16 -0
  85. package/dist/table/TableExpandedRow.js +77 -0
  86. package/dist/table/TableHeaderCellContent.d.ts +30 -0
  87. package/dist/table/TableHeaderCellContent.js +48 -0
  88. package/dist/table/TablePrimitives.d.ts +307 -0
  89. package/dist/table/TablePrimitives.js +298 -0
  90. package/dist/table/TableSelectCell.d.ts +18 -0
  91. package/dist/table/TableSelectCell.js +26 -0
  92. package/dist/table/TableStatusRow.d.ts +18 -0
  93. package/dist/table/TableStatusRow.js +50 -0
  94. package/dist/table/VirtualizedInfiniteTable.d.ts +11 -27
  95. package/dist/table/VirtualizedInfiniteTable.js +182 -317
  96. package/dist/table/types.d.ts +249 -0
  97. package/dist/table/types.js +51 -0
  98. package/dist/table/useInfiniteScrollSentinel.d.ts +24 -0
  99. package/dist/table/useInfiniteScrollSentinel.js +53 -0
  100. package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.d.ts +1 -1
  101. package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.js +1 -1
  102. package/dist/table/useTableColumnLayout.d.ts +28 -0
  103. package/dist/table/useTableColumnLayout.js +63 -0
  104. package/dist/table/useTableColumnResize.d.ts +38 -0
  105. package/dist/table/useTableColumnResize.js +155 -0
  106. package/dist/table/useTableKeyboardNavigation.d.ts +25 -0
  107. package/dist/table/useTableKeyboardNavigation.js +83 -0
  108. package/dist/table/useTableRowExpansion.d.ts +24 -0
  109. package/dist/table/useTableRowExpansion.js +62 -0
  110. package/dist/table/useTableRowSelection.d.ts +27 -0
  111. package/dist/table/useTableRowSelection.js +94 -0
  112. package/dist/table/utils.d.ts +50 -0
  113. package/dist/table/utils.js +78 -0
  114. package/dist/text/MarkdownText.js +45 -27
  115. package/dist/theme/variants/dark.js +1 -1
  116. package/dist/widget/Widget.d.ts +2 -0
  117. package/dist/widget/Widget.js +14 -7
  118. package/package.json +1 -5
  119. package/dist/assets/components/enrichment/PerplexityIcon.d.ts +0 -3
  120. package/dist/assets/components/enrichment/PerplexityIcon.js +0 -35
  121. package/dist/assets/components/enrichment/TavilyIcon.d.ts +0 -3
  122. package/dist/assets/components/enrichment/TavilyIcon.js +0 -15
  123. package/dist/assets/components/onboarding/TenantSetupDark.d.ts +0 -3
  124. package/dist/assets/components/onboarding/TenantSetupDark.js +0 -498
  125. package/dist/assets/components/onboarding/TenantSetupLight.d.ts +0 -3
  126. package/dist/assets/components/onboarding/TenantSetupLight.js +0 -482
  127. package/dist/assets/components/onboarding/UserSetupDark.d.ts +0 -3
  128. package/dist/assets/components/onboarding/UserSetupDark.js +0 -1086
  129. package/dist/assets/components/onboarding/UserSetupLight.d.ts +0 -3
  130. package/dist/assets/components/onboarding/UserSetupLight.js +0 -1024
  131. package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.d.ts +0 -3
  132. package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.js +0 -466
  133. package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.d.ts +0 -3
  134. package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.js +0 -460
  135. package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.d.ts +0 -3
  136. package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.js +0 -336
  137. package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.d.ts +0 -3
  138. package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.js +0 -336
  139. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.d.ts +0 -3
  140. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.js +0 -153
  141. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.d.ts +0 -3
  142. package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.js +0 -153
  143. package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.d.ts +0 -3
  144. package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.js +0 -117
  145. package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.d.ts +0 -3
  146. package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.js +0 -117
  147. package/dist/assets/components/projects/MappingMethodBlankDark.d.ts +0 -3
  148. package/dist/assets/components/projects/MappingMethodBlankDark.js +0 -150
  149. package/dist/assets/components/projects/MappingMethodBlankDarkHovered.d.ts +0 -3
  150. package/dist/assets/components/projects/MappingMethodBlankDarkHovered.js +0 -150
  151. package/dist/assets/components/projects/MappingMethodBlankLight.d.ts +0 -3
  152. package/dist/assets/components/projects/MappingMethodBlankLight.js +0 -150
  153. package/dist/assets/components/projects/MappingMethodBlankLightHovered.d.ts +0 -3
  154. package/dist/assets/components/projects/MappingMethodBlankLightHovered.js +0 -150
  155. package/dist/assets/components/projects/MappingMethodJsonDark.d.ts +0 -3
  156. package/dist/assets/components/projects/MappingMethodJsonDark.js +0 -90
  157. package/dist/assets/components/projects/MappingMethodJsonDarkHovered.d.ts +0 -3
  158. package/dist/assets/components/projects/MappingMethodJsonDarkHovered.js +0 -90
  159. package/dist/assets/components/projects/MappingMethodJsonLight.d.ts +0 -3
  160. package/dist/assets/components/projects/MappingMethodJsonLight.js +0 -90
  161. package/dist/assets/components/projects/MappingMethodJsonLightHovered.d.ts +0 -3
  162. package/dist/assets/components/projects/MappingMethodJsonLightHovered.js +0 -90
  163. package/dist/assets/components/projects/ProjectsEmptyStateDark.d.ts +0 -3
  164. package/dist/assets/components/projects/ProjectsEmptyStateDark.js +0 -454
  165. package/dist/assets/components/projects/ProjectsEmptyStateLight.d.ts +0 -3
  166. package/dist/assets/components/projects/ProjectsEmptyStateLight.js +0 -456
  167. package/dist/assets/components/root/CreateProjectActionCardDark.d.ts +0 -3
  168. package/dist/assets/components/root/CreateProjectActionCardDark.js +0 -1796
  169. package/dist/assets/components/root/CreateProjectActionCardDarkHovered.d.ts +0 -3
  170. package/dist/assets/components/root/CreateProjectActionCardDarkHovered.js +0 -1796
  171. package/dist/assets/components/root/CreateProjectActionCardLight.d.ts +0 -3
  172. package/dist/assets/components/root/CreateProjectActionCardLight.js +0 -1786
  173. package/dist/assets/components/root/CreateProjectActionCardLightHovered.d.ts +0 -3
  174. package/dist/assets/components/root/CreateProjectActionCardLightHovered.js +0 -1786
  175. package/dist/assets/components/root/CreateSourceActionCardDark.d.ts +0 -3
  176. package/dist/assets/components/root/CreateSourceActionCardDark.js +0 -879
  177. package/dist/assets/components/root/CreateSourceActionCardDarkHovered.d.ts +0 -3
  178. package/dist/assets/components/root/CreateSourceActionCardDarkHovered.js +0 -879
  179. package/dist/assets/components/root/CreateSourceActionCardLight.d.ts +0 -3
  180. package/dist/assets/components/root/CreateSourceActionCardLight.js +0 -889
  181. package/dist/assets/components/root/CreateSourceActionCardLightHovered.d.ts +0 -3
  182. package/dist/assets/components/root/CreateSourceActionCardLightHovered.js +0 -889
  183. package/dist/assets/components/sources/AttioIcon.d.ts +0 -3
  184. package/dist/assets/components/sources/AttioIcon.js +0 -11
  185. package/dist/assets/components/sources/BigquerySourceIcon.d.ts +0 -3
  186. package/dist/assets/components/sources/BigquerySourceIcon.js +0 -39
  187. package/dist/assets/components/sources/BrowserbaseSourceIcon.d.ts +0 -3
  188. package/dist/assets/components/sources/BrowserbaseSourceIcon.js +0 -35
  189. package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.d.ts +0 -3
  190. package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.js +0 -13
  191. package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.d.ts +0 -3
  192. package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.js +0 -13
  193. package/dist/assets/components/sources/ConfluenceSourceIcon.d.ts +0 -3
  194. package/dist/assets/components/sources/ConfluenceSourceIcon.js +0 -30
  195. package/dist/assets/components/sources/GithubSourceIcon.d.ts +0 -3
  196. package/dist/assets/components/sources/GithubSourceIcon.js +0 -27
  197. package/dist/assets/components/sources/GoogleDriveIcon.d.ts +0 -3
  198. package/dist/assets/components/sources/GoogleDriveIcon.js +0 -45
  199. package/dist/assets/components/sources/HubspotSourceIcon.d.ts +0 -3
  200. package/dist/assets/components/sources/HubspotSourceIcon.js +0 -14
  201. package/dist/assets/components/sources/JiraSourceIcon.d.ts +0 -3
  202. package/dist/assets/components/sources/JiraSourceIcon.js +0 -54
  203. package/dist/assets/components/sources/LinearSourceIcon.d.ts +0 -3
  204. package/dist/assets/components/sources/LinearSourceIcon.js +0 -14
  205. package/dist/assets/components/sources/MysqlLogoSourceIconDark.d.ts +0 -3
  206. package/dist/assets/components/sources/MysqlLogoSourceIconDark.js +0 -17
  207. package/dist/assets/components/sources/NetsuiteSourceIcon.d.ts +0 -3
  208. package/dist/assets/components/sources/NetsuiteSourceIcon.js +0 -32
  209. package/dist/assets/components/sources/NotionIcon.d.ts +0 -3
  210. package/dist/assets/components/sources/NotionIcon.js +0 -20
  211. package/dist/assets/components/sources/PostgresqlIcon.d.ts +0 -3
  212. package/dist/assets/components/sources/PostgresqlIcon.js +0 -61
  213. package/dist/assets/components/sources/S3Icon.d.ts +0 -3
  214. package/dist/assets/components/sources/S3Icon.js +0 -76
  215. package/dist/assets/components/sources/SalesforceSourceIcon.d.ts +0 -3
  216. package/dist/assets/components/sources/SalesforceSourceIcon.js +0 -23
  217. package/dist/assets/components/sources/SlackIcon.d.ts +0 -3
  218. package/dist/assets/components/sources/SlackIcon.js +0 -32
  219. package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.d.ts +0 -3
  220. package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.js +0 -14
  221. package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.d.ts +0 -3
  222. package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.js +0 -14
  223. package/dist/assets/components/sources/WikipediaSourceIcon.d.ts +0 -3
  224. package/dist/assets/components/sources/WikipediaSourceIcon.js +0 -1490
  225. package/dist/avatar/AvatarEmpty.d.ts +0 -7
  226. package/dist/avatar/AvatarEmpty.js +0 -99
  227. package/dist/avatar/types.d.ts +0 -5
  228. package/dist/avatar/types.js +0 -9
  229. package/dist/charts/utils.d.ts +0 -29
  230. package/dist/charts/utils.js +0 -62
  231. package/dist/icons/BackIcon.d.ts +0 -3
  232. package/dist/icons/BackIcon.js +0 -13
  233. package/dist/icons/CloseIcon.d.ts +0 -3
  234. package/dist/icons/CloseIcon.js +0 -13
  235. package/dist/icons/CreateIcon.d.ts +0 -3
  236. package/dist/icons/CreateIcon.js +0 -13
  237. package/dist/icons/ForwardIcon.d.ts +0 -3
  238. package/dist/icons/ForwardIcon.js +0 -13
  239. package/dist/icons/HelpIcon.d.ts +0 -3
  240. package/dist/icons/HelpIcon.js +0 -14
  241. package/dist/icons/ProjectsIcon.d.ts +0 -3
  242. package/dist/icons/ProjectsIcon.js +0 -12
  243. package/dist/icons/SearchIcon.d.ts +0 -3
  244. package/dist/icons/SearchIcon.js +0 -12
  245. package/dist/icons/SourcesIcon.d.ts +0 -3
  246. package/dist/icons/SourcesIcon.js +0 -12
  247. package/dist/icons/TextIcon.d.ts +0 -4
  248. package/dist/icons/TextIcon.js +0 -22
  249. package/dist/icons/WebScrapeIcon.d.ts +0 -4
  250. package/dist/icons/WebScrapeIcon.js +0 -22
  251. package/dist/icons/WebhookIcon.d.ts +0 -4
  252. package/dist/icons/WebhookIcon.js +0 -22
  253. package/dist/icons/sources/AttioLogomark.d.ts +0 -4
  254. package/dist/icons/sources/AttioLogomark.js +0 -8
  255. package/dist/icons/sources/BrowserbaseLogomark.d.ts +0 -4
  256. package/dist/icons/sources/BrowserbaseLogomark.js +0 -8
  257. package/dist/icons/sources/ClickhouseLogomark.d.ts +0 -4
  258. package/dist/icons/sources/ClickhouseLogomark.js +0 -16
  259. package/dist/icons/sources/ConfluenceLogomark.d.ts +0 -4
  260. package/dist/icons/sources/ConfluenceLogomark.js +0 -8
  261. package/dist/icons/sources/GithubLogomark.d.ts +0 -4
  262. package/dist/icons/sources/GithubLogomark.js +0 -8
  263. package/dist/icons/sources/GoogleBigqueryLogomark.d.ts +0 -4
  264. package/dist/icons/sources/GoogleBigqueryLogomark.js +0 -8
  265. package/dist/icons/sources/GoogleDriveLogomark.d.ts +0 -4
  266. package/dist/icons/sources/GoogleDriveLogomark.js +0 -8
  267. package/dist/icons/sources/HubspotLogomark.d.ts +0 -4
  268. package/dist/icons/sources/HubspotLogomark.js +0 -8
  269. package/dist/icons/sources/JiraLogomark.d.ts +0 -4
  270. package/dist/icons/sources/JiraLogomark.js +0 -8
  271. package/dist/icons/sources/LinearLogomark.d.ts +0 -4
  272. package/dist/icons/sources/LinearLogomark.js +0 -8
  273. package/dist/icons/sources/MySQLLogomark.d.ts +0 -4
  274. package/dist/icons/sources/MySQLLogomark.js +0 -8
  275. package/dist/icons/sources/NetsuiteLogomark.d.ts +0 -4
  276. package/dist/icons/sources/NetsuiteLogomark.js +0 -8
  277. package/dist/icons/sources/NotionLogomark.d.ts +0 -4
  278. package/dist/icons/sources/NotionLogomark.js +0 -8
  279. package/dist/icons/sources/PostgresLogomark.d.ts +0 -4
  280. package/dist/icons/sources/PostgresLogomark.js +0 -8
  281. package/dist/icons/sources/S3Logomark.d.ts +0 -4
  282. package/dist/icons/sources/S3Logomark.js +0 -8
  283. package/dist/icons/sources/SalesforceLogomark.d.ts +0 -4
  284. package/dist/icons/sources/SalesforceLogomark.js +0 -8
  285. package/dist/icons/sources/SlackLogoIconmark.d.ts +0 -4
  286. package/dist/icons/sources/SlackLogoIconmark.js +0 -8
  287. package/dist/icons/sources/SnowflakeLogomark.d.ts +0 -4
  288. package/dist/icons/sources/SnowflakeLogomark.js +0 -16
  289. package/dist/icons/sources/WikipediaLogomark.d.ts +0 -4
  290. package/dist/icons/sources/WikipediaLogomark.js +0 -8
  291. package/dist/spreadsheet/InfiniteSpreadsheet.d.ts +0 -3
  292. package/dist/spreadsheet/InfiniteSpreadsheet.js +0 -265
  293. package/dist/spreadsheet/SpreadsheetAddColumnButton.d.ts +0 -6
  294. package/dist/spreadsheet/SpreadsheetAddColumnButton.js +0 -32
  295. package/dist/spreadsheet/SpreadsheetCell.js +0 -115
  296. package/dist/spreadsheet/SpreadsheetHeaderCell.d.ts +0 -18
  297. package/dist/spreadsheet/SpreadsheetHeaderCell.js +0 -141
  298. package/dist/spreadsheet/SpreadsheetRow.d.ts +0 -21
  299. package/dist/spreadsheet/SpreadsheetRow.js +0 -68
  300. package/dist/spreadsheet/SpreadsheetRowActionCell.js +0 -78
  301. package/dist/spreadsheet/hooks/useColumnResize.d.ts +0 -6
  302. package/dist/spreadsheet/hooks/useColumnResize.js +0 -46
  303. package/dist/spreadsheet/types.d.ts +0 -92
  304. package/dist/spreadsheet/types.js +0 -21
  305. /package/dist/{spreadsheet → table}/SpreadsheetCellEditor.d.ts +0 -0
@@ -1,7 +0,0 @@
1
- export interface AvatarEmptyProps {
2
- size: number;
3
- hex?: string;
4
- seed?: string;
5
- }
6
- declare const AvatarEmpty: ({ size, hex, seed }: AvatarEmptyProps) => import("react").JSX.Element;
7
- export default AvatarEmpty;
@@ -1,99 +0,0 @@
1
- import { withTheme } from "../theme/GalaxyTheme.js";
2
- import { getDarkerHexColor, getLighterHexColor, getOpaqueHexColor } from "../utils/colors.js";
3
- /* empty css */
4
- import { styled } from "@linaria/react";
5
- import { useMemo } from "react";
6
- import { jsx } from "react/jsx-runtime";
7
- //#region src/avatar/AvatarEmpty.tsx
8
- var _exp2 = () => ({ $size }) => $size;
9
- var _exp3 = () => ({ theme }) => theme.color.background.secondary;
10
- var Container = withTheme(/*#__PURE__*/ styled("div")({
11
- name: "Container",
12
- class: "c3y5dk3",
13
- propsAsIs: false,
14
- vars: {
15
- "c3y5dk3-0": [_exp2(), "px"],
16
- "c3y5dk3-1": [_exp3()]
17
- }
18
- }));
19
- var _exp5 = () => ({ $dotSize }) => $dotSize;
20
- var _exp6 = () => ({ $color }) => $color;
21
- var _exp7 = () => ({ $x }) => $x;
22
- var _exp8 = () => ({ $y }) => $y;
23
- var Dot = /*#__PURE__*/ styled("div")({
24
- name: "Dot",
25
- class: "d1vohupz",
26
- propsAsIs: false,
27
- vars: {
28
- "d1vohupz-0": [_exp5(), "px"],
29
- "d1vohupz-1": [_exp6()],
30
- "d1vohupz-2": [_exp7(), "px"],
31
- "d1vohupz-3": [_exp8(), "px"]
32
- }
33
- });
34
- var seededRandom = (seed) => {
35
- let hash = 0;
36
- for (let i = 0; i < seed.length; i++) {
37
- const char = seed.charCodeAt(i);
38
- hash = (hash << 5) - hash + char;
39
- hash = hash & hash;
40
- }
41
- return () => {
42
- hash = hash * 1103515245 + 12345 & 2147483647;
43
- return hash / 2147483647;
44
- };
45
- };
46
- var DEFAULT_HEX = "#6B7280";
47
- var AvatarEmpty = ({ size = 16, hex, seed }) => {
48
- const dots = useMemo(() => {
49
- const baseHex = hex ?? DEFAULT_HEX;
50
- const colors = [
51
- baseHex,
52
- getLighterHexColor(baseHex, 30),
53
- getDarkerHexColor(baseHex, 25),
54
- getOpaqueHexColor(baseHex, .3),
55
- getOpaqueHexColor(baseHex, .15)
56
- ];
57
- const gridSize = size <= 24 ? 5 : size <= 48 ? 7 : 9;
58
- const step = size / gridSize;
59
- const dotSize = Math.round(step * .6);
60
- const random = seededRandom(seed ?? hex ?? "default");
61
- const halfCols = Math.ceil(gridSize / 2);
62
- const pattern = [];
63
- for (let row = 0; row < gridSize; row++) {
64
- pattern[row] = [];
65
- for (let col = 0; col < halfCols; col++) pattern[row][col] = { colorIndex: Math.floor(random() * colors.length) };
66
- for (let col = halfCols; col < gridSize; col++) pattern[row][col] = pattern[row][gridSize - 1 - col];
67
- }
68
- const dotPositions = [];
69
- for (let row = 0; row < gridSize; row++) for (let col = 0; col < gridSize; col++) {
70
- const x = col * step + (step - dotSize) / 2;
71
- const y = row * step + (step - dotSize) / 2;
72
- dotPositions.push({
73
- x,
74
- y,
75
- color: colors[pattern[row][col].colorIndex],
76
- key: `${row}-${col}`
77
- });
78
- }
79
- return {
80
- dotSize,
81
- dotPositions
82
- };
83
- }, [
84
- size,
85
- hex,
86
- seed
87
- ]);
88
- return /* @__PURE__ */ jsx(Container, {
89
- $size: size,
90
- children: dots.dotPositions.map(({ x, y, color, key }) => /* @__PURE__ */ jsx(Dot, {
91
- $dotSize: dots.dotSize,
92
- $x: x,
93
- $y: y,
94
- $color: color
95
- }, key))
96
- });
97
- };
98
- //#endregion
99
- export { AvatarEmpty as default };
@@ -1,5 +0,0 @@
1
- export declare enum AvatarSize {
2
- SMALL = "h-[16px] w-[16px]",
3
- MEDIUM = "h-[24px] w-[24px]",
4
- LARGE = "h-[32px] w-[32px]"
5
- }
@@ -1,9 +0,0 @@
1
- //#region src/avatar/types.ts
2
- var AvatarSize = /* @__PURE__ */ function(AvatarSize) {
3
- AvatarSize["SMALL"] = "h-[16px] w-[16px]";
4
- AvatarSize["MEDIUM"] = "h-[24px] w-[24px]";
5
- AvatarSize["LARGE"] = "h-[32px] w-[32px]";
6
- return AvatarSize;
7
- }({});
8
- //#endregion
9
- export { AvatarSize };
@@ -1,29 +0,0 @@
1
- import type { ChartDatum, ChartMargin, ChartSeriesConfig } from "./types";
2
- /** Resolve partial margin with defaults */
3
- export declare const resolveMargin: (partial?: Partial<ChartMargin>) => ChartMargin;
4
- /** Compute the inner plot dimensions */
5
- export declare const getPlotDimensions: (width: number, height: number, margin: ChartMargin) => {
6
- plotWidth: number;
7
- plotHeight: number;
8
- };
9
- /** Build a band scale for categories */
10
- export declare const buildBandScale: (labels: string[], range: [number, number], paddingInner: number, paddingOuter: number) => import("d3-scale").ScaleBand<string>;
11
- /** Build a point scale for categorical labels (line charts) */
12
- export declare const buildPointScale: (labels: string[], range: [number, number], padding?: number) => import("d3-scale").ScalePoint<string>;
13
- /** Build a linear scale for values */
14
- export declare const buildLinearScale: (domainMax: number, range: [number, number]) => import("d3-scale").ScaleLinear<number, number, never>;
15
- /** Compute the max stacked total across all data points */
16
- export declare const getStackedMax: (data: ChartDatum[], seriesKeys: string[]) => number;
17
- /** Compute the max single-series value across all data points */
18
- export declare const getGroupedMax: (data: ChartDatum[], seriesKeys: string[]) => number;
19
- /** Default value formatter */
20
- export declare const defaultValueFormatter: (value: number) => string;
21
- /** Default label formatter (identity) */
22
- export declare const defaultLabelFormatter: (label: string) => string;
23
- /** Resolve series color from explicit color or palette index */
24
- export declare const resolveSeriesColor: (config: ChartSeriesConfig, index: number, palette: string[]) => string;
25
- /**
26
- * Build an SVG path for a rectangle with only top corners rounded.
27
- * Used for the topmost bar segment in a stack.
28
- */
29
- export declare const roundedTopRectPath: (x: number, y: number, width: number, height: number, radius: number) => string;
@@ -1,62 +0,0 @@
1
- import { DEFAULT_CHART_MARGIN } from "./constants.js";
2
- import { scaleBand, scaleLinear, scalePoint } from "d3-scale";
3
- //#region src/charts/utils.ts
4
- /** Resolve partial margin with defaults */
5
- var resolveMargin = (partial) => ({
6
- ...DEFAULT_CHART_MARGIN,
7
- ...partial
8
- });
9
- /** Compute the inner plot dimensions */
10
- var getPlotDimensions = (width, height, margin) => ({
11
- plotWidth: Math.max(0, width - margin.left - margin.right),
12
- plotHeight: Math.max(0, height - margin.top - margin.bottom)
13
- });
14
- /** Build a band scale for categories */
15
- var buildBandScale = (labels, range, paddingInner, paddingOuter) => scaleBand().domain(labels).range(range).paddingInner(paddingInner).paddingOuter(paddingOuter);
16
- /** Build a point scale for categorical labels (line charts) */
17
- var buildPointScale = (labels, range, padding = 0) => scalePoint().domain(labels).range(range).padding(padding);
18
- /** Build a linear scale for values */
19
- var buildLinearScale = (domainMax, range) => scaleLinear().domain([0, domainMax]).nice().range(range);
20
- /** Compute the max stacked total across all data points */
21
- var getStackedMax = (data, seriesKeys) => {
22
- let m = 0;
23
- for (const d of data) {
24
- let total = 0;
25
- for (const key of seriesKeys) total += d.values[key] ?? 0;
26
- if (total > m) m = total;
27
- }
28
- return m;
29
- };
30
- /** Compute the max single-series value across all data points */
31
- var getGroupedMax = (data, seriesKeys) => {
32
- let m = 0;
33
- for (const d of data) for (const key of seriesKeys) {
34
- const v = d.values[key] ?? 0;
35
- if (v > m) m = v;
36
- }
37
- return m;
38
- };
39
- /** Default value formatter */
40
- var defaultValueFormatter = (value) => value.toLocaleString();
41
- /** Default label formatter (identity) */
42
- var defaultLabelFormatter = (label) => label;
43
- /** Resolve series color from explicit color or palette index */
44
- var resolveSeriesColor = (config, index, palette) => config.color ?? palette[index % palette.length];
45
- /**
46
- * Build an SVG path for a rectangle with only top corners rounded.
47
- * Used for the topmost bar segment in a stack.
48
- */
49
- var roundedTopRectPath = (x, y, width, height, radius) => {
50
- const r = Math.min(radius, width / 2, height);
51
- return [
52
- `M${x},${y + r}`,
53
- `a${r},${r} 0 0 1 ${r},${-r}`,
54
- `h${width - 2 * r}`,
55
- `a${r},${r} 0 0 1 ${r},${r}`,
56
- `v${height - r}`,
57
- `h${-width}`,
58
- `z`
59
- ].join(" ");
60
- };
61
- //#endregion
62
- export { buildBandScale, buildLinearScale, buildPointScale, defaultLabelFormatter, defaultValueFormatter, getGroupedMax, getPlotDimensions, getStackedMax, resolveMargin, resolveSeriesColor, roundedTopRectPath };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const BackIcon: ({ size, ...props }: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default BackIcon;
@@ -1,13 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { ArrowLeftIcon } from "@phosphor-icons/react";
4
- //#region src/icons/BackIcon.tsx
5
- var BackIcon = ({ size = 12, ...props }) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: ArrowLeftIcon,
8
- size,
9
- ...props
10
- });
11
- };
12
- //#endregion
13
- export { BackIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const CloseIcon: ({ size, ...props }: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default CloseIcon;
@@ -1,13 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { XIcon } from "@phosphor-icons/react";
4
- //#region src/icons/CloseIcon.tsx
5
- var CloseIcon = ({ size = 12, ...props }) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: XIcon,
8
- size,
9
- ...props
10
- });
11
- };
12
- //#endregion
13
- export { CloseIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const CreateIcon: ({ size, ...props }: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default CreateIcon;
@@ -1,13 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { PlusIcon } from "@phosphor-icons/react";
4
- //#region src/icons/CreateIcon.tsx
5
- var CreateIcon = ({ size = 12, ...props }) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: PlusIcon,
8
- size,
9
- ...props
10
- });
11
- };
12
- //#endregion
13
- export { CreateIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const ForwardIcon: ({ size, ...props }: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default ForwardIcon;
@@ -1,13 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { ArrowRightIcon } from "@phosphor-icons/react";
4
- //#region src/icons/ForwardIcon.tsx
5
- var ForwardIcon = ({ size = 12, ...props }) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: ArrowRightIcon,
8
- size,
9
- ...props
10
- });
11
- };
12
- //#endregion
13
- export { ForwardIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const HelpIcon: ({ size, variant, ...props }: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default HelpIcon;
@@ -1,14 +0,0 @@
1
- import Icon, { IconVariant } from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { InfoIcon } from "@phosphor-icons/react";
4
- //#region src/icons/HelpIcon.tsx
5
- var HelpIcon = ({ size = 12, variant = IconVariant.TERTIARY, ...props }) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: InfoIcon,
8
- variant,
9
- size,
10
- ...props
11
- });
12
- };
13
- //#endregion
14
- export { HelpIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const ProjectsIcon: (props: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default ProjectsIcon;
@@ -1,12 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { SphereIcon } from "@phosphor-icons/react";
4
- //#region src/icons/ProjectsIcon.tsx
5
- var ProjectsIcon = (props) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: SphereIcon,
8
- ...props
9
- });
10
- };
11
- //#endregion
12
- export { ProjectsIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const SearchIcon: (props: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default SearchIcon;
@@ -1,12 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { MagnifyingGlassIcon } from "@phosphor-icons/react";
4
- //#region src/icons/SearchIcon.tsx
5
- var SearchIcon = (props) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: MagnifyingGlassIcon,
8
- ...props
9
- });
10
- };
11
- //#endregion
12
- export { SearchIcon as default };
@@ -1,3 +0,0 @@
1
- import { type IconProps } from "./Icon";
2
- declare const SourcesIcon: (props: Omit<IconProps, "component">) => import("react").JSX.Element;
3
- export default SourcesIcon;
@@ -1,12 +0,0 @@
1
- import Icon from "./Icon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- import { CirclesFourIcon } from "@phosphor-icons/react";
4
- //#region src/icons/SourcesIcon.tsx
5
- var SourcesIcon = (props) => {
6
- return /* @__PURE__ */ jsx(Icon, {
7
- component: CirclesFourIcon,
8
- ...props
9
- });
10
- };
11
- //#endregion
12
- export { SourcesIcon as default };
@@ -1,4 +0,0 @@
1
- declare const TextIcon: ({ size }: {
2
- size?: number;
3
- }) => import("react").JSX.Element;
4
- export default TextIcon;
@@ -1,22 +0,0 @@
1
- import { GalaxyTheme } from "../theme/constants.js";
2
- import { useGalaxyTheme } from "../theme/GalaxyTheme.js";
3
- import Icon, { IconVariant, IconWeight } from "./Icon.js";
4
- import { match } from "ts-pattern";
5
- import { useMemo } from "react";
6
- import { jsx } from "react/jsx-runtime";
7
- import { TextTIcon } from "@phosphor-icons/react";
8
- //#region src/icons/TextIcon.tsx
9
- var TextIcon = ({ size = 16 }) => {
10
- const { activeTheme } = useGalaxyTheme();
11
- const variant = useMemo(() => {
12
- return match(activeTheme).with(GalaxyTheme.DARK, () => IconVariant.PRIMARY_ALT).with(GalaxyTheme.LIGHT, () => IconVariant.PRIMARY).exhaustive();
13
- }, [activeTheme]);
14
- return /* @__PURE__ */ jsx(Icon, {
15
- component: TextTIcon,
16
- weight: IconWeight.FILL,
17
- variant,
18
- size
19
- });
20
- };
21
- //#endregion
22
- export { TextIcon as default };
@@ -1,4 +0,0 @@
1
- declare const WebScrapeIcon: ({ size }: {
2
- size?: number;
3
- }) => import("react").JSX.Element;
4
- export default WebScrapeIcon;
@@ -1,22 +0,0 @@
1
- import { GalaxyTheme } from "../theme/constants.js";
2
- import { useGalaxyTheme } from "../theme/GalaxyTheme.js";
3
- import Icon, { IconVariant, IconWeight } from "./Icon.js";
4
- import { match } from "ts-pattern";
5
- import { useMemo } from "react";
6
- import { jsx } from "react/jsx-runtime";
7
- import { GlobeIcon } from "@phosphor-icons/react";
8
- //#region src/icons/WebScrapeIcon.tsx
9
- var WebScrapeIcon = ({ size = 16 }) => {
10
- const { activeTheme } = useGalaxyTheme();
11
- const variant = useMemo(() => {
12
- return match(activeTheme).with(GalaxyTheme.DARK, () => IconVariant.PRIMARY_ALT).with(GalaxyTheme.LIGHT, () => IconVariant.PRIMARY).exhaustive();
13
- }, [activeTheme]);
14
- return /* @__PURE__ */ jsx(Icon, {
15
- component: GlobeIcon,
16
- weight: IconWeight.FILL,
17
- variant,
18
- size
19
- });
20
- };
21
- //#endregion
22
- export { WebScrapeIcon as default };
@@ -1,4 +0,0 @@
1
- declare const WebhookIcon: ({ size }: {
2
- size?: number;
3
- }) => import("react").JSX.Element;
4
- export default WebhookIcon;
@@ -1,22 +0,0 @@
1
- import { GalaxyTheme } from "../theme/constants.js";
2
- import { useGalaxyTheme } from "../theme/GalaxyTheme.js";
3
- import Icon, { IconVariant, IconWeight } from "./Icon.js";
4
- import { match } from "ts-pattern";
5
- import { useMemo } from "react";
6
- import { jsx } from "react/jsx-runtime";
7
- import { WebhooksLogoIcon } from "@phosphor-icons/react";
8
- //#region src/icons/WebhookIcon.tsx
9
- var WebhookIcon = ({ size = 16 }) => {
10
- const { activeTheme } = useGalaxyTheme();
11
- const variant = useMemo(() => {
12
- return match(activeTheme).with(GalaxyTheme.DARK, () => IconVariant.PRIMARY_ALT).with(GalaxyTheme.LIGHT, () => IconVariant.PRIMARY).exhaustive();
13
- }, [activeTheme]);
14
- return /* @__PURE__ */ jsx(Icon, {
15
- component: WebhooksLogoIcon,
16
- weight: IconWeight.FILL,
17
- variant,
18
- size
19
- });
20
- };
21
- //#endregion
22
- export { WebhookIcon as default };
@@ -1,4 +0,0 @@
1
- declare const AttioLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default AttioLogomark;
@@ -1,8 +0,0 @@
1
- import SvgAttioIcon from "../../assets/components/sources/AttioIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/AttioLogomark.tsx
4
- var AttioLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgAttioIcon, { height });
6
- };
7
- //#endregion
8
- export { AttioLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const BrowserbaseLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default BrowserbaseLogomark;
@@ -1,8 +0,0 @@
1
- import SvgBrowserbaseSourceIcon from "../../assets/components/sources/BrowserbaseSourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/BrowserbaseLogomark.tsx
4
- var BrowserbaseLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgBrowserbaseSourceIcon, { height });
6
- };
7
- //#endregion
8
- export { BrowserbaseLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const ClickhouseLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default ClickhouseLogomark;
@@ -1,16 +0,0 @@
1
- import { GalaxyTheme } from "../../theme/constants.js";
2
- import { useGalaxyTheme } from "../../theme/GalaxyTheme.js";
3
- import SvgClickhouseLogoSourceIconDark from "../../assets/components/sources/ClickhouseLogoSourceIconDark.js";
4
- import SvgClickhouseLogoSourceIconLight from "../../assets/components/sources/ClickhouseLogoSourceIconLight.js";
5
- import { match } from "ts-pattern";
6
- import { useMemo } from "react";
7
- import { jsx } from "react/jsx-runtime";
8
- //#region src/icons/sources/ClickhouseLogomark.tsx
9
- var ClickhouseLogomark = ({ height }) => {
10
- const { activeTheme } = useGalaxyTheme();
11
- return useMemo(() => {
12
- return match(activeTheme).with(GalaxyTheme.DARK, () => /* @__PURE__ */ jsx(SvgClickhouseLogoSourceIconLight, { height })).with(GalaxyTheme.LIGHT, () => /* @__PURE__ */ jsx(SvgClickhouseLogoSourceIconDark, { height })).exhaustive();
13
- }, [activeTheme, height]);
14
- };
15
- //#endregion
16
- export { ClickhouseLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const ConfluenceLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default ConfluenceLogomark;
@@ -1,8 +0,0 @@
1
- import SvgConfluenceSourceIcon from "../../assets/components/sources/ConfluenceSourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/ConfluenceLogomark.tsx
4
- var ConfluenceLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgConfluenceSourceIcon, { height });
6
- };
7
- //#endregion
8
- export { ConfluenceLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const GithubLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default GithubLogomark;
@@ -1,8 +0,0 @@
1
- import SvgGithubSourceIcon from "../../assets/components/sources/GithubSourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/GithubLogomark.tsx
4
- var GithubLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgGithubSourceIcon, { height });
6
- };
7
- //#endregion
8
- export { GithubLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const GoogleBigqueryLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default GoogleBigqueryLogomark;
@@ -1,8 +0,0 @@
1
- import SvgBigquerySourceIcon from "../../assets/components/sources/BigquerySourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/GoogleBigqueryLogomark.tsx
4
- var GoogleBigqueryLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgBigquerySourceIcon, { height });
6
- };
7
- //#endregion
8
- export { GoogleBigqueryLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const GoogleDriveLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default GoogleDriveLogomark;
@@ -1,8 +0,0 @@
1
- import SvgGoogleDriveIcon from "../../assets/components/sources/GoogleDriveIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/GoogleDriveLogomark.tsx
4
- var GoogleDriveLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgGoogleDriveIcon, { height });
6
- };
7
- //#endregion
8
- export { GoogleDriveLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const HubspotLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default HubspotLogomark;
@@ -1,8 +0,0 @@
1
- import SvgHubspotSourceIcon from "../../assets/components/sources/HubspotSourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/HubspotLogomark.tsx
4
- var HubspotLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgHubspotSourceIcon, { height });
6
- };
7
- //#endregion
8
- export { HubspotLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const JiraLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default JiraLogomark;
@@ -1,8 +0,0 @@
1
- import SvgJiraSourceIcon from "../../assets/components/sources/JiraSourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/JiraLogomark.tsx
4
- var JiraLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgJiraSourceIcon, { height });
6
- };
7
- //#endregion
8
- export { JiraLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const LinearLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default LinearLogomark;
@@ -1,8 +0,0 @@
1
- import SvgLinearSourceIcon from "../../assets/components/sources/LinearSourceIcon.js";
2
- import { jsx } from "react/jsx-runtime";
3
- //#region src/icons/sources/LinearLogomark.tsx
4
- var LinearLogomark = ({ height }) => {
5
- return /* @__PURE__ */ jsx(SvgLinearSourceIcon, { height });
6
- };
7
- //#endregion
8
- export { LinearLogomark as default };
@@ -1,4 +0,0 @@
1
- declare const MySQLLogomark: ({ height }: {
2
- height: number;
3
- }) => import("react").JSX.Element;
4
- export default MySQLLogomark;