@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.
- package/README.md +2 -0
- package/dist/avatar/Avatar.d.ts +2 -1
- package/dist/avatar/Avatar.js +103 -14
- package/dist/buttons/Button.d.ts +6 -1
- package/dist/buttons/Button.js +8 -4
- package/dist/charts/BarChart.d.ts +30 -20
- package/dist/charts/BarChart.js +183 -253
- package/dist/charts/ChartAxis.d.ts +47 -22
- package/dist/charts/ChartAxis.js +81 -60
- package/dist/charts/ChartCategoryTargets.d.ts +27 -0
- package/dist/charts/ChartCategoryTargets.js +75 -0
- package/dist/charts/ChartEmptyState.d.ts +17 -0
- package/dist/charts/ChartEmptyState.js +29 -0
- package/dist/charts/ChartFrame.d.ts +110 -0
- package/dist/charts/ChartFrame.js +143 -0
- package/dist/charts/ChartLegend.d.ts +27 -4
- package/dist/charts/ChartLegend.js +46 -23
- package/dist/charts/ChartPrimitives.d.ts +230 -0
- package/dist/charts/ChartPrimitives.js +305 -0
- package/dist/charts/ChartTooltip.d.ts +25 -4
- package/dist/charts/ChartTooltip.js +55 -49
- package/dist/charts/LineChart.d.ts +42 -20
- package/dist/charts/LineChart.js +175 -241
- package/dist/charts/PieChart.d.ts +48 -32
- package/dist/charts/PieChart.js +180 -170
- package/dist/charts/barChartGeometry.d.ts +120 -0
- package/dist/charts/barChartGeometry.js +210 -0
- package/dist/charts/barChartLegend.d.ts +25 -0
- package/dist/charts/barChartLegend.js +23 -0
- package/dist/charts/chartFormat.d.ts +27 -0
- package/dist/charts/chartFormat.js +71 -0
- package/dist/charts/chartScales.d.ts +120 -0
- package/dist/charts/chartScales.js +165 -0
- package/dist/charts/chartTheme.d.ts +18 -0
- package/dist/charts/chartTheme.js +26 -0
- package/dist/charts/constants.d.ts +241 -18
- package/dist/charts/constants.js +261 -32
- package/dist/charts/lineChartGeometry.d.ts +92 -0
- package/dist/charts/lineChartGeometry.js +134 -0
- package/dist/charts/pieChartGeometry.d.ts +60 -0
- package/dist/charts/pieChartGeometry.js +79 -0
- package/dist/charts/types.d.ts +428 -54
- package/dist/charts/types.js +155 -0
- package/dist/charts/useCartesianChartLayout.d.ts +70 -0
- package/dist/charts/useCartesianChartLayout.js +56 -0
- package/dist/charts/useChartDimensions.d.ts +47 -0
- package/dist/charts/useChartDimensions.js +63 -0
- package/dist/charts/useChartFormatters.d.ts +19 -0
- package/dist/charts/useChartFormatters.js +20 -0
- package/dist/charts/useChartInteraction.d.ts +76 -0
- package/dist/charts/useChartInteraction.js +126 -0
- package/dist/charts/useChartTooltipPosition.d.ts +53 -0
- package/dist/charts/useChartTooltipPosition.js +39 -0
- package/dist/charts/useSeriesColorResolver.d.ts +37 -0
- package/dist/charts/useSeriesColorResolver.js +27 -0
- package/dist/hooks/useElementClientSize.d.ts +20 -0
- package/dist/hooks/useElementClientSize.js +43 -0
- package/dist/inputs/CheckboxInput.d.ts +7 -2
- package/dist/inputs/CheckboxInput.js +30 -14
- package/dist/inputs/Input.d.ts +1 -1
- package/dist/inputs/Input.js +6 -2
- package/dist/inputs/MultiSelectInput.js +1 -1
- package/dist/inputs/RadioInput.js +7 -2
- package/dist/styles.css +69 -74
- package/dist/table/InfiniteSpreadsheet.d.ts +6 -0
- package/dist/table/InfiniteSpreadsheet.js +235 -0
- package/dist/table/InfiniteTable.d.ts +7 -88
- package/dist/table/InfiniteTable.js +366 -577
- package/dist/{spreadsheet → table}/SpreadsheetCell.d.ts +6 -4
- package/dist/table/SpreadsheetCell.js +71 -0
- package/dist/{spreadsheet → table}/SpreadsheetCellEditor.js +27 -21
- package/dist/table/SpreadsheetHeaderCell.d.ts +23 -0
- package/dist/table/SpreadsheetHeaderCell.js +91 -0
- package/dist/table/SpreadsheetMenuItem.d.ts +14 -0
- package/dist/table/SpreadsheetMenuItem.js +33 -0
- package/dist/table/SpreadsheetPrimitives.d.ts +172 -0
- package/dist/table/SpreadsheetPrimitives.js +105 -0
- package/dist/table/SpreadsheetRow.d.ts +33 -0
- package/dist/table/SpreadsheetRow.js +73 -0
- package/dist/{spreadsheet → table}/SpreadsheetRowActionCell.d.ts +5 -7
- package/dist/table/SpreadsheetRowActionCell.js +51 -0
- package/dist/table/TableExpandCell.d.ts +11 -0
- package/dist/table/TableExpandCell.js +24 -0
- package/dist/table/TableExpandedRow.d.ts +16 -0
- package/dist/table/TableExpandedRow.js +77 -0
- package/dist/table/TableHeaderCellContent.d.ts +30 -0
- package/dist/table/TableHeaderCellContent.js +48 -0
- package/dist/table/TablePrimitives.d.ts +307 -0
- package/dist/table/TablePrimitives.js +298 -0
- package/dist/table/TableSelectCell.d.ts +18 -0
- package/dist/table/TableSelectCell.js +26 -0
- package/dist/table/TableStatusRow.d.ts +18 -0
- package/dist/table/TableStatusRow.js +50 -0
- package/dist/table/VirtualizedInfiniteTable.d.ts +11 -27
- package/dist/table/VirtualizedInfiniteTable.js +182 -317
- package/dist/table/types.d.ts +249 -0
- package/dist/table/types.js +51 -0
- package/dist/table/useInfiniteScrollSentinel.d.ts +24 -0
- package/dist/table/useInfiniteScrollSentinel.js +53 -0
- package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.d.ts +1 -1
- package/dist/{spreadsheet/hooks → table}/useSpreadsheetEditing.js +1 -1
- package/dist/table/useTableColumnLayout.d.ts +28 -0
- package/dist/table/useTableColumnLayout.js +63 -0
- package/dist/table/useTableColumnResize.d.ts +38 -0
- package/dist/table/useTableColumnResize.js +155 -0
- package/dist/table/useTableKeyboardNavigation.d.ts +25 -0
- package/dist/table/useTableKeyboardNavigation.js +83 -0
- package/dist/table/useTableRowExpansion.d.ts +24 -0
- package/dist/table/useTableRowExpansion.js +62 -0
- package/dist/table/useTableRowSelection.d.ts +27 -0
- package/dist/table/useTableRowSelection.js +94 -0
- package/dist/table/utils.d.ts +50 -0
- package/dist/table/utils.js +78 -0
- package/dist/text/MarkdownText.js +45 -27
- package/dist/theme/variants/dark.js +1 -1
- package/dist/widget/Widget.d.ts +2 -0
- package/dist/widget/Widget.js +14 -7
- package/package.json +1 -5
- package/dist/assets/components/enrichment/PerplexityIcon.d.ts +0 -3
- package/dist/assets/components/enrichment/PerplexityIcon.js +0 -35
- package/dist/assets/components/enrichment/TavilyIcon.d.ts +0 -3
- package/dist/assets/components/enrichment/TavilyIcon.js +0 -15
- package/dist/assets/components/onboarding/TenantSetupDark.d.ts +0 -3
- package/dist/assets/components/onboarding/TenantSetupDark.js +0 -498
- package/dist/assets/components/onboarding/TenantSetupLight.d.ts +0 -3
- package/dist/assets/components/onboarding/TenantSetupLight.js +0 -482
- package/dist/assets/components/onboarding/UserSetupDark.d.ts +0 -3
- package/dist/assets/components/onboarding/UserSetupDark.js +0 -1086
- package/dist/assets/components/onboarding/UserSetupLight.d.ts +0 -3
- package/dist/assets/components/onboarding/UserSetupLight.js +0 -1024
- package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupBuildDark.js +0 -466
- package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupBuildLight.js +0 -460
- package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupConnectDark.js +0 -336
- package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupConnectLight.js +0 -336
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateDark.js +0 -153
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.d.ts +0 -3
- package/dist/assets/components/onboarding/WorkspaceSetupIntegrateLight.js +0 -153
- package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodAutoIntrospectDark.js +0 -117
- package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodAutoIntrospectLight.js +0 -117
- package/dist/assets/components/projects/MappingMethodBlankDark.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankDark.js +0 -150
- package/dist/assets/components/projects/MappingMethodBlankDarkHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankDarkHovered.js +0 -150
- package/dist/assets/components/projects/MappingMethodBlankLight.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankLight.js +0 -150
- package/dist/assets/components/projects/MappingMethodBlankLightHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodBlankLightHovered.js +0 -150
- package/dist/assets/components/projects/MappingMethodJsonDark.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonDark.js +0 -90
- package/dist/assets/components/projects/MappingMethodJsonDarkHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonDarkHovered.js +0 -90
- package/dist/assets/components/projects/MappingMethodJsonLight.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonLight.js +0 -90
- package/dist/assets/components/projects/MappingMethodJsonLightHovered.d.ts +0 -3
- package/dist/assets/components/projects/MappingMethodJsonLightHovered.js +0 -90
- package/dist/assets/components/projects/ProjectsEmptyStateDark.d.ts +0 -3
- package/dist/assets/components/projects/ProjectsEmptyStateDark.js +0 -454
- package/dist/assets/components/projects/ProjectsEmptyStateLight.d.ts +0 -3
- package/dist/assets/components/projects/ProjectsEmptyStateLight.js +0 -456
- package/dist/assets/components/root/CreateProjectActionCardDark.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardDark.js +0 -1796
- package/dist/assets/components/root/CreateProjectActionCardDarkHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardDarkHovered.js +0 -1796
- package/dist/assets/components/root/CreateProjectActionCardLight.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardLight.js +0 -1786
- package/dist/assets/components/root/CreateProjectActionCardLightHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateProjectActionCardLightHovered.js +0 -1786
- package/dist/assets/components/root/CreateSourceActionCardDark.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardDark.js +0 -879
- package/dist/assets/components/root/CreateSourceActionCardDarkHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardDarkHovered.js +0 -879
- package/dist/assets/components/root/CreateSourceActionCardLight.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardLight.js +0 -889
- package/dist/assets/components/root/CreateSourceActionCardLightHovered.d.ts +0 -3
- package/dist/assets/components/root/CreateSourceActionCardLightHovered.js +0 -889
- package/dist/assets/components/sources/AttioIcon.d.ts +0 -3
- package/dist/assets/components/sources/AttioIcon.js +0 -11
- package/dist/assets/components/sources/BigquerySourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/BigquerySourceIcon.js +0 -39
- package/dist/assets/components/sources/BrowserbaseSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/BrowserbaseSourceIcon.js +0 -35
- package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/ClickhouseLogoSourceIconDark.js +0 -13
- package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/ClickhouseLogoSourceIconLight.js +0 -13
- package/dist/assets/components/sources/ConfluenceSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/ConfluenceSourceIcon.js +0 -30
- package/dist/assets/components/sources/GithubSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/GithubSourceIcon.js +0 -27
- package/dist/assets/components/sources/GoogleDriveIcon.d.ts +0 -3
- package/dist/assets/components/sources/GoogleDriveIcon.js +0 -45
- package/dist/assets/components/sources/HubspotSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/HubspotSourceIcon.js +0 -14
- package/dist/assets/components/sources/JiraSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/JiraSourceIcon.js +0 -54
- package/dist/assets/components/sources/LinearSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/LinearSourceIcon.js +0 -14
- package/dist/assets/components/sources/MysqlLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/MysqlLogoSourceIconDark.js +0 -17
- package/dist/assets/components/sources/NetsuiteSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/NetsuiteSourceIcon.js +0 -32
- package/dist/assets/components/sources/NotionIcon.d.ts +0 -3
- package/dist/assets/components/sources/NotionIcon.js +0 -20
- package/dist/assets/components/sources/PostgresqlIcon.d.ts +0 -3
- package/dist/assets/components/sources/PostgresqlIcon.js +0 -61
- package/dist/assets/components/sources/S3Icon.d.ts +0 -3
- package/dist/assets/components/sources/S3Icon.js +0 -76
- package/dist/assets/components/sources/SalesforceSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/SalesforceSourceIcon.js +0 -23
- package/dist/assets/components/sources/SlackIcon.d.ts +0 -3
- package/dist/assets/components/sources/SlackIcon.js +0 -32
- package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.d.ts +0 -3
- package/dist/assets/components/sources/SnowflakeLogoSourceIconDark.js +0 -14
- package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.d.ts +0 -3
- package/dist/assets/components/sources/SnowflakeLogoSourceIconLight.js +0 -14
- package/dist/assets/components/sources/WikipediaSourceIcon.d.ts +0 -3
- package/dist/assets/components/sources/WikipediaSourceIcon.js +0 -1490
- package/dist/avatar/AvatarEmpty.d.ts +0 -7
- package/dist/avatar/AvatarEmpty.js +0 -99
- package/dist/avatar/types.d.ts +0 -5
- package/dist/avatar/types.js +0 -9
- package/dist/charts/utils.d.ts +0 -29
- package/dist/charts/utils.js +0 -62
- package/dist/icons/BackIcon.d.ts +0 -3
- package/dist/icons/BackIcon.js +0 -13
- package/dist/icons/CloseIcon.d.ts +0 -3
- package/dist/icons/CloseIcon.js +0 -13
- package/dist/icons/CreateIcon.d.ts +0 -3
- package/dist/icons/CreateIcon.js +0 -13
- package/dist/icons/ForwardIcon.d.ts +0 -3
- package/dist/icons/ForwardIcon.js +0 -13
- package/dist/icons/HelpIcon.d.ts +0 -3
- package/dist/icons/HelpIcon.js +0 -14
- package/dist/icons/ProjectsIcon.d.ts +0 -3
- package/dist/icons/ProjectsIcon.js +0 -12
- package/dist/icons/SearchIcon.d.ts +0 -3
- package/dist/icons/SearchIcon.js +0 -12
- package/dist/icons/SourcesIcon.d.ts +0 -3
- package/dist/icons/SourcesIcon.js +0 -12
- package/dist/icons/TextIcon.d.ts +0 -4
- package/dist/icons/TextIcon.js +0 -22
- package/dist/icons/WebScrapeIcon.d.ts +0 -4
- package/dist/icons/WebScrapeIcon.js +0 -22
- package/dist/icons/WebhookIcon.d.ts +0 -4
- package/dist/icons/WebhookIcon.js +0 -22
- package/dist/icons/sources/AttioLogomark.d.ts +0 -4
- package/dist/icons/sources/AttioLogomark.js +0 -8
- package/dist/icons/sources/BrowserbaseLogomark.d.ts +0 -4
- package/dist/icons/sources/BrowserbaseLogomark.js +0 -8
- package/dist/icons/sources/ClickhouseLogomark.d.ts +0 -4
- package/dist/icons/sources/ClickhouseLogomark.js +0 -16
- package/dist/icons/sources/ConfluenceLogomark.d.ts +0 -4
- package/dist/icons/sources/ConfluenceLogomark.js +0 -8
- package/dist/icons/sources/GithubLogomark.d.ts +0 -4
- package/dist/icons/sources/GithubLogomark.js +0 -8
- package/dist/icons/sources/GoogleBigqueryLogomark.d.ts +0 -4
- package/dist/icons/sources/GoogleBigqueryLogomark.js +0 -8
- package/dist/icons/sources/GoogleDriveLogomark.d.ts +0 -4
- package/dist/icons/sources/GoogleDriveLogomark.js +0 -8
- package/dist/icons/sources/HubspotLogomark.d.ts +0 -4
- package/dist/icons/sources/HubspotLogomark.js +0 -8
- package/dist/icons/sources/JiraLogomark.d.ts +0 -4
- package/dist/icons/sources/JiraLogomark.js +0 -8
- package/dist/icons/sources/LinearLogomark.d.ts +0 -4
- package/dist/icons/sources/LinearLogomark.js +0 -8
- package/dist/icons/sources/MySQLLogomark.d.ts +0 -4
- package/dist/icons/sources/MySQLLogomark.js +0 -8
- package/dist/icons/sources/NetsuiteLogomark.d.ts +0 -4
- package/dist/icons/sources/NetsuiteLogomark.js +0 -8
- package/dist/icons/sources/NotionLogomark.d.ts +0 -4
- package/dist/icons/sources/NotionLogomark.js +0 -8
- package/dist/icons/sources/PostgresLogomark.d.ts +0 -4
- package/dist/icons/sources/PostgresLogomark.js +0 -8
- package/dist/icons/sources/S3Logomark.d.ts +0 -4
- package/dist/icons/sources/S3Logomark.js +0 -8
- package/dist/icons/sources/SalesforceLogomark.d.ts +0 -4
- package/dist/icons/sources/SalesforceLogomark.js +0 -8
- package/dist/icons/sources/SlackLogoIconmark.d.ts +0 -4
- package/dist/icons/sources/SlackLogoIconmark.js +0 -8
- package/dist/icons/sources/SnowflakeLogomark.d.ts +0 -4
- package/dist/icons/sources/SnowflakeLogomark.js +0 -16
- package/dist/icons/sources/WikipediaLogomark.d.ts +0 -4
- package/dist/icons/sources/WikipediaLogomark.js +0 -8
- package/dist/spreadsheet/InfiniteSpreadsheet.d.ts +0 -3
- package/dist/spreadsheet/InfiniteSpreadsheet.js +0 -265
- package/dist/spreadsheet/SpreadsheetAddColumnButton.d.ts +0 -6
- package/dist/spreadsheet/SpreadsheetAddColumnButton.js +0 -32
- package/dist/spreadsheet/SpreadsheetCell.js +0 -115
- package/dist/spreadsheet/SpreadsheetHeaderCell.d.ts +0 -18
- package/dist/spreadsheet/SpreadsheetHeaderCell.js +0 -141
- package/dist/spreadsheet/SpreadsheetRow.d.ts +0 -21
- package/dist/spreadsheet/SpreadsheetRow.js +0 -68
- package/dist/spreadsheet/SpreadsheetRowActionCell.js +0 -78
- package/dist/spreadsheet/hooks/useColumnResize.d.ts +0 -6
- package/dist/spreadsheet/hooks/useColumnResize.js +0 -46
- package/dist/spreadsheet/types.d.ts +0 -92
- package/dist/spreadsheet/types.js +0 -21
- /package/dist/{spreadsheet → table}/SpreadsheetCellEditor.d.ts +0 -0
|
@@ -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 };
|
package/dist/avatar/types.d.ts
DELETED
package/dist/avatar/types.js
DELETED
|
@@ -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 };
|
package/dist/charts/utils.d.ts
DELETED
|
@@ -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;
|
package/dist/charts/utils.js
DELETED
|
@@ -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 };
|
package/dist/icons/BackIcon.d.ts
DELETED
package/dist/icons/BackIcon.js
DELETED
|
@@ -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 };
|
package/dist/icons/CloseIcon.js
DELETED
|
@@ -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 };
|
package/dist/icons/CreateIcon.js
DELETED
|
@@ -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,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 };
|
package/dist/icons/HelpIcon.d.ts
DELETED
package/dist/icons/HelpIcon.js
DELETED
|
@@ -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,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 };
|
package/dist/icons/SearchIcon.js
DELETED
|
@@ -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,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 };
|
package/dist/icons/TextIcon.d.ts
DELETED
package/dist/icons/TextIcon.js
DELETED
|
@@ -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,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,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,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,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,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,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,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,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,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,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,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,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 };
|