@clickhouse/click-ui 0.0.251-test.71 → 0.0.251-test.72
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 +36 -2
- package/dist/cjs/components/Logos/AlloyDB.cjs +18 -0
- package/dist/cjs/components/Logos/AlloyDB.cjs.map +1 -0
- package/dist/cjs/components/Logos/LogosDark.cjs +2 -0
- package/dist/cjs/components/Logos/LogosDark.cjs.map +1 -1
- package/dist/cjs/components/Logos/LogosLight.cjs +2 -0
- package/dist/cjs/components/Logos/LogosLight.cjs.map +1 -1
- package/dist/esm/components/Logos/AlloyDB.js +14 -0
- package/dist/esm/components/Logos/AlloyDB.js.map +1 -0
- package/dist/esm/components/Logos/LogosDark.js +2 -0
- package/dist/esm/components/Logos/LogosDark.js.map +1 -1
- package/dist/esm/components/Logos/LogosLight.js +2 -0
- package/dist/esm/components/Logos/LogosLight.js.map +1 -1
- package/dist/types/components/Logos/AlloyDB.d.ts +3 -0
- package/dist/types/components/Logos/types.d.ts +1 -1
- package/package.json +10 -9
package/README.md
CHANGED
|
@@ -36,6 +36,8 @@ You can find the official docs for the Click UI design system and component libr
|
|
|
36
36
|
* [Themes](#themes)
|
|
37
37
|
- [Prevent theme flash](#prevent-theme-flash)
|
|
38
38
|
- [Theme Persistence](#theme-persistence)
|
|
39
|
+
* [Assets Management](#assets-management)
|
|
40
|
+
- [Add a new SVG logo or icon](#add-new-svg-logo-or-icon)
|
|
39
41
|
* [Releases and Versions](#releases-and-versions)
|
|
40
42
|
|
|
41
43
|
## Requirements
|
|
@@ -87,7 +89,7 @@ It's expected to have theme tokens provided externally, e.g. Figma tokens-studio
|
|
|
87
89
|
Once [./tokens/themes] files are updated, we must regenerate the tokens:
|
|
88
90
|
|
|
89
91
|
```sh
|
|
90
|
-
yarn generate
|
|
92
|
+
yarn generate:tokens
|
|
91
93
|
```
|
|
92
94
|
|
|
93
95
|
Learn more about tokens-studio [here](https://documentation.tokens.studio/).
|
|
@@ -185,7 +187,7 @@ Once built, you can serve the static files by:
|
|
|
185
187
|
yarn storybook:serve
|
|
186
188
|
```
|
|
187
189
|
|
|
188
|
-
### Public
|
|
190
|
+
### Public Static Site
|
|
189
191
|
|
|
190
192
|
The latest static version's built and deployed automatically when contributing to `main` of [Click UI](https://github.com/ClickHouse/click-ui).
|
|
191
193
|
|
|
@@ -369,6 +371,38 @@ export const App = () => {
|
|
|
369
371
|
> [!TIP]
|
|
370
372
|
> An example of NextJS with Server Side Rendering (SSR) is available [here](/docs/examples/nextjs-app-router-with-ssr.md), where you can see how the root `data-cui-theme` is handled.
|
|
371
373
|
|
|
374
|
+
## Assets management
|
|
375
|
+
|
|
376
|
+
The Click UI has image asset files, such as icons or logos.
|
|
377
|
+
|
|
378
|
+
Files are originally curated in the context of the design system Figma project. Once exported/sourced from the Figma project file these have to be transformed into the Click UI desired format, e.g. an SVG as a React Component.
|
|
379
|
+
|
|
380
|
+
### Add new SVG logo or icon
|
|
381
|
+
|
|
382
|
+
Here are some steps, to help you transform the Figma asset into a React Component:
|
|
383
|
+
|
|
384
|
+
1) In Figma project, select and export the target image/icon, e.g. these are generally contained in a square container (64x64)
|
|
385
|
+
2) Store the file in your local file system in a memorable location
|
|
386
|
+
3) Use a tool to transform SVG to React JSX, e.g. [react-svgr](https://react-svgr.com/playground/)
|
|
387
|
+
4) Create a new file in `src/components/Logos`, e.g. name it by the company name
|
|
388
|
+
5) Modify the `<svg>` node, it should set the size to 64x64 as the original Figma container:
|
|
389
|
+
|
|
390
|
+
> [!NOTE]
|
|
391
|
+
> Notice the viewBox values, it should contain the same values from the sourced file 64x64, e.g. "0 0 64 64", if it hasn't make sure you are exporting it correctly, or the original file has the correct container width and height
|
|
392
|
+
```tsx
|
|
393
|
+
<svg
|
|
394
|
+
width="64"
|
|
395
|
+
height="64"
|
|
396
|
+
viewBox="0 0 64 64"
|
|
397
|
+
fill="none"
|
|
398
|
+
xmlns="http://www.w3.org/2000/svg"
|
|
399
|
+
{...props}
|
|
400
|
+
>
|
|
401
|
+
```
|
|
402
|
+
|
|
403
|
+
6) Declare the new logo/icon in the Logos dark and light exporte files, e.g. `src/components/Logos/LogosDark.ts` and `src/components/Logos/LogosLight.ts`
|
|
404
|
+
7) Finally, introduce the new icon/logo name in the types file located at `src/components/Logos/types.ts`
|
|
405
|
+
|
|
372
406
|
## Releases and Versions
|
|
373
407
|
|
|
374
408
|
New versions and release notes are available at [GitHub Releases](https://github.com/ClickHouse/click-ui/releases).
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
'use strict';
|
|
2
|
+
|
|
3
|
+
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
|
+
|
|
5
|
+
const jsxRuntime = require('react/jsx-runtime');
|
|
6
|
+
|
|
7
|
+
const AlloyDBIcon = (props) => /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: "64", height: "64", viewBox: "0 0 64 64", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
|
|
8
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M10.3248 44.0033V22.9234L5 20.2106V47.3054L31.624 60.5289L58.248 47.3054V20.208L52.9232 22.9206V44.0033L31.624 54.5854L10.3248 44.0033Z", fill: "#4285F4" }),
|
|
9
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M58.2467 17.2229L31.624 4L5 17.2236V17.2251L10.909 20.2354L31.624 9.94355L52.3365 20.2341L58.2467 17.2229Z", fill: "#4285F4" }),
|
|
10
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M18.2812 26.9842L12.9756 24.2822V42.4383L18.2812 45.018V26.9842Z", fill: "#669DF6" }),
|
|
11
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M44.9443 26.9842L50.2499 24.2822V42.4383L44.9443 45.018V26.9842Z", fill: "#669DF6" }),
|
|
12
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M43.9875 24.4594L49.4144 21.7066L31.6225 12.8984L13.7861 21.7066L19.2128 24.4594L31.6001 18.3329L43.9875 24.4594Z", fill: "#AECBFA" }),
|
|
13
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.9521 26.5447V31.3368L31.6226 36.7718L42.2634 31.3368V26.5891L31.6002 21.3003L20.9521 26.5447Z", fill: "#AECBFA" }),
|
|
14
|
+
/* @__PURE__ */ jsxRuntime.jsx("path", { d: "M20.9775 40.4356L31.6 45.6859L42.2632 40.4153V34.3403L31.6 39.7462L20.9775 34.431V40.4356Z", fill: "#669DF6" })
|
|
15
|
+
] });
|
|
16
|
+
|
|
17
|
+
exports.default = AlloyDBIcon;
|
|
18
|
+
//# sourceMappingURL=AlloyDB.cjs.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlloyDB.cjs","sources":["../../../../src/components/Logos/AlloyDB.tsx"],"sourcesContent":["import { SVGAttributes } from 'react';\n\nconst AlloyDBIcon = (props: SVGAttributes<SVGElement>) => (\n <svg\n width=\"64\"\n height=\"64\"\n viewBox=\"0 0 64 64\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n d=\"M10.3248 44.0033V22.9234L5 20.2106V47.3054L31.624 60.5289L58.248 47.3054V20.208L52.9232 22.9206V44.0033L31.624 54.5854L10.3248 44.0033Z\"\n fill=\"#4285F4\"\n />\n <path\n d=\"M58.2467 17.2229L31.624 4L5 17.2236V17.2251L10.909 20.2354L31.624 9.94355L52.3365 20.2341L58.2467 17.2229Z\"\n fill=\"#4285F4\"\n />\n <path\n d=\"M18.2812 26.9842L12.9756 24.2822V42.4383L18.2812 45.018V26.9842Z\"\n fill=\"#669DF6\"\n />\n <path\n d=\"M44.9443 26.9842L50.2499 24.2822V42.4383L44.9443 45.018V26.9842Z\"\n fill=\"#669DF6\"\n />\n <path\n d=\"M43.9875 24.4594L49.4144 21.7066L31.6225 12.8984L13.7861 21.7066L19.2128 24.4594L31.6001 18.3329L43.9875 24.4594Z\"\n fill=\"#AECBFA\"\n />\n <path\n d=\"M20.9521 26.5447V31.3368L31.6226 36.7718L42.2634 31.3368V26.5891L31.6002 21.3003L20.9521 26.5447Z\"\n fill=\"#AECBFA\"\n />\n <path\n d=\"M20.9775 40.4356L31.6 45.6859L42.2632 40.4153V34.3403L31.6 39.7462L20.9775 34.431V40.4356Z\"\n fill=\"#669DF6\"\n />\n </svg>\n);\n\nexport default AlloyDBIcon;\n"],"names":["AlloyDBIcon","props","jsxs","jsx"],"mappings":";;;;;;AAEA,MAAMA,cAAcA,CAACC,KAAAA,qBACnBC,eAAA,CAAC,KAAA,EAAA,EACC,OAAM,IAAA,EACN,MAAA,EAAO,IAAA,EACP,OAAA,EAAQ,aACR,IAAA,EAAK,MAAA,EACL,KAAA,EAAM,4BAAA,EACN,GAAID,KAAAA,EAEJ,QAAA,EAAA;AAAA,kBAAAE,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,yIAAA,EACF,IAAA,EAAK,SAAA,EAAS,CAAA;AAAA,kBAEhBA,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,4GAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhBA,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,kEAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhBA,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,kEAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhBA,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,mHAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhBA,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,mGAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhBA,cAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,4FAAA,EACF,MAAK,SAAA,EAAS;AAAA,CAAA,EAElB;;;;"}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
4
|
|
|
5
|
+
const AlloyDB = require('./AlloyDB.cjs');
|
|
5
6
|
const Airbyte = require('./Airbyte.cjs');
|
|
6
7
|
const AWSDark = require('./AWSDark.cjs');
|
|
7
8
|
const AWSGlue = require('./AWSGlue.cjs');
|
|
@@ -69,6 +70,7 @@ const WarpStream = require('./WarpStream.cjs');
|
|
|
69
70
|
|
|
70
71
|
const LogosDark = {
|
|
71
72
|
clickhouse: ClickhouseDark.default,
|
|
73
|
+
alloydb: AlloyDB.default,
|
|
72
74
|
airbyte: Airbyte.default,
|
|
73
75
|
aws: AWSDark.default,
|
|
74
76
|
"aws-athena": AWSAthena.default,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogosDark.cjs","sources":["../../../../src/components/Logos/LogosDark.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport Airbyte from './Airbyte';\nimport AWSDark from './AWSDark';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSS3 from './AWS_S3';\nimport AWSAthena from './AWSAthena';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseDark';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport Databricks from './Databricks';\nimport DataGrip from './DataGrip';\nimport dBeaver from './dBeaver';\nimport DigitalOcean from './DigitalOcean';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport FeatureDatabaseDark from './FeatureDatabaseDark';\nimport FeatureHexagonDark from './FeatureHexagonDark';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubDark';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaDark';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustDark';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauDark';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosDark: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n airbyte: Airbyte,\n aws: AWSDark,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseDark,\n feature_hexagon: FeatureHexagonDark,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosDark;\n"],"names":["LogosDark","clickhouse","Clickhouse","airbyte","Airbyte","aws","AWSDark","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseDark","feature_hexagon","FeatureHexagonDark","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"
|
|
1
|
+
{"version":3,"file":"LogosDark.cjs","sources":["../../../../src/components/Logos/LogosDark.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport AlloyDB from './AlloyDB';\nimport Airbyte from './Airbyte';\nimport AWSDark from './AWSDark';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSS3 from './AWS_S3';\nimport AWSAthena from './AWSAthena';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseDark';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport Databricks from './Databricks';\nimport DataGrip from './DataGrip';\nimport dBeaver from './dBeaver';\nimport DigitalOcean from './DigitalOcean';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport FeatureDatabaseDark from './FeatureDatabaseDark';\nimport FeatureHexagonDark from './FeatureHexagonDark';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubDark';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaDark';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustDark';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauDark';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosDark: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n alloydb: AlloyDB,\n airbyte: Airbyte,\n aws: AWSDark,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseDark,\n feature_hexagon: FeatureHexagonDark,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosDark;\n"],"names":["LogosDark","clickhouse","Clickhouse","alloydb","AlloyDB","airbyte","Airbyte","aws","AWSDark","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseDark","feature_hexagon","FeatureHexagonDark","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"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"}
|
|
@@ -2,6 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperties(exports, { __esModule: { value: true }, [Symbol.toStringTag]: { value: 'Module' } });
|
|
4
4
|
|
|
5
|
+
const AlloyDB = require('./AlloyDB.cjs');
|
|
5
6
|
const Airbyte = require('./Airbyte.cjs');
|
|
6
7
|
const AWSLight = require('./AWSLight.cjs');
|
|
7
8
|
const AWSAthena = require('./AWSAthena.cjs');
|
|
@@ -69,6 +70,7 @@ const WarpStream = require('./WarpStream.cjs');
|
|
|
69
70
|
|
|
70
71
|
const LogosLight = {
|
|
71
72
|
clickhouse: ClickhouseLight.default,
|
|
73
|
+
alloydb: AlloyDB.default,
|
|
72
74
|
airbyte: Airbyte.default,
|
|
73
75
|
aws: AWSLight.default,
|
|
74
76
|
"aws-athena": AWSAthena.default,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogosLight.cjs","sources":["../../../../src/components/Logos/LogosLight.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport Airbyte from './Airbyte';\nimport AWSLight from './AWSLight';\nimport AWSAthena from './AWSAthena';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport AWSS3 from './AWS_S3';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseLight';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport DataGrip from './DataGrip';\nimport Databricks from './Databricks';\nimport dBeaver from './dBeaver';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport DigitalOcean from './DigitalOcean';\nimport FeatureDatabaseLight from './FeatureDatabaseLight';\nimport FeatureHexagonLight from './FeatureHexagonLight';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubLight';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaLight';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustLight';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauLight';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosLight: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n airbyte: Airbyte,\n aws: AWSLight,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseLight,\n feature_hexagon: FeatureHexagonLight,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosLight;\n"],"names":["LogosLight","clickhouse","Clickhouse","airbyte","Airbyte","aws","AWSLight","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseLight","feature_hexagon","FeatureHexagonLight","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"
|
|
1
|
+
{"version":3,"file":"LogosLight.cjs","sources":["../../../../src/components/Logos/LogosLight.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport AlloyDB from './AlloyDB';\nimport Airbyte from './Airbyte';\nimport AWSLight from './AWSLight';\nimport AWSAthena from './AWSAthena';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport AWSS3 from './AWS_S3';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseLight';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport DataGrip from './DataGrip';\nimport Databricks from './Databricks';\nimport dBeaver from './dBeaver';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport DigitalOcean from './DigitalOcean';\nimport FeatureDatabaseLight from './FeatureDatabaseLight';\nimport FeatureHexagonLight from './FeatureHexagonLight';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubLight';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaLight';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustLight';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauLight';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosLight: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n alloydb: AlloyDB,\n airbyte: Airbyte,\n aws: AWSLight,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseLight,\n feature_hexagon: FeatureHexagonLight,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosLight;\n"],"names":["LogosLight","clickhouse","Clickhouse","alloydb","AlloyDB","airbyte","Airbyte","aws","AWSLight","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseLight","feature_hexagon","FeatureHexagonLight","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"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"}
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
import { jsxs, jsx } from 'react/jsx-runtime';
|
|
2
|
+
|
|
3
|
+
const AlloyDBIcon = (props) => /* @__PURE__ */ jsxs("svg", { width: "64", height: "64", viewBox: "0 0 64 64", fill: "none", xmlns: "http://www.w3.org/2000/svg", ...props, children: [
|
|
4
|
+
/* @__PURE__ */ jsx("path", { d: "M10.3248 44.0033V22.9234L5 20.2106V47.3054L31.624 60.5289L58.248 47.3054V20.208L52.9232 22.9206V44.0033L31.624 54.5854L10.3248 44.0033Z", fill: "#4285F4" }),
|
|
5
|
+
/* @__PURE__ */ jsx("path", { d: "M58.2467 17.2229L31.624 4L5 17.2236V17.2251L10.909 20.2354L31.624 9.94355L52.3365 20.2341L58.2467 17.2229Z", fill: "#4285F4" }),
|
|
6
|
+
/* @__PURE__ */ jsx("path", { d: "M18.2812 26.9842L12.9756 24.2822V42.4383L18.2812 45.018V26.9842Z", fill: "#669DF6" }),
|
|
7
|
+
/* @__PURE__ */ jsx("path", { d: "M44.9443 26.9842L50.2499 24.2822V42.4383L44.9443 45.018V26.9842Z", fill: "#669DF6" }),
|
|
8
|
+
/* @__PURE__ */ jsx("path", { d: "M43.9875 24.4594L49.4144 21.7066L31.6225 12.8984L13.7861 21.7066L19.2128 24.4594L31.6001 18.3329L43.9875 24.4594Z", fill: "#AECBFA" }),
|
|
9
|
+
/* @__PURE__ */ jsx("path", { d: "M20.9521 26.5447V31.3368L31.6226 36.7718L42.2634 31.3368V26.5891L31.6002 21.3003L20.9521 26.5447Z", fill: "#AECBFA" }),
|
|
10
|
+
/* @__PURE__ */ jsx("path", { d: "M20.9775 40.4356L31.6 45.6859L42.2632 40.4153V34.3403L31.6 39.7462L20.9775 34.431V40.4356Z", fill: "#669DF6" })
|
|
11
|
+
] });
|
|
12
|
+
|
|
13
|
+
export { AlloyDBIcon as default };
|
|
14
|
+
//# sourceMappingURL=AlloyDB.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"AlloyDB.js","sources":["../../../../src/components/Logos/AlloyDB.tsx"],"sourcesContent":["import { SVGAttributes } from 'react';\n\nconst AlloyDBIcon = (props: SVGAttributes<SVGElement>) => (\n <svg\n width=\"64\"\n height=\"64\"\n viewBox=\"0 0 64 64\"\n fill=\"none\"\n xmlns=\"http://www.w3.org/2000/svg\"\n {...props}\n >\n <path\n d=\"M10.3248 44.0033V22.9234L5 20.2106V47.3054L31.624 60.5289L58.248 47.3054V20.208L52.9232 22.9206V44.0033L31.624 54.5854L10.3248 44.0033Z\"\n fill=\"#4285F4\"\n />\n <path\n d=\"M58.2467 17.2229L31.624 4L5 17.2236V17.2251L10.909 20.2354L31.624 9.94355L52.3365 20.2341L58.2467 17.2229Z\"\n fill=\"#4285F4\"\n />\n <path\n d=\"M18.2812 26.9842L12.9756 24.2822V42.4383L18.2812 45.018V26.9842Z\"\n fill=\"#669DF6\"\n />\n <path\n d=\"M44.9443 26.9842L50.2499 24.2822V42.4383L44.9443 45.018V26.9842Z\"\n fill=\"#669DF6\"\n />\n <path\n d=\"M43.9875 24.4594L49.4144 21.7066L31.6225 12.8984L13.7861 21.7066L19.2128 24.4594L31.6001 18.3329L43.9875 24.4594Z\"\n fill=\"#AECBFA\"\n />\n <path\n d=\"M20.9521 26.5447V31.3368L31.6226 36.7718L42.2634 31.3368V26.5891L31.6002 21.3003L20.9521 26.5447Z\"\n fill=\"#AECBFA\"\n />\n <path\n d=\"M20.9775 40.4356L31.6 45.6859L42.2632 40.4153V34.3403L31.6 39.7462L20.9775 34.431V40.4356Z\"\n fill=\"#669DF6\"\n />\n </svg>\n);\n\nexport default AlloyDBIcon;\n"],"names":["AlloyDBIcon","props"],"mappings":";;AAEA,MAAMA,cAAcA,CAACC,KAAAA,qBACnB,IAAA,CAAC,KAAA,EAAA,EACC,OAAM,IAAA,EACN,MAAA,EAAO,IAAA,EACP,OAAA,EAAQ,aACR,IAAA,EAAK,MAAA,EACL,KAAA,EAAM,4BAAA,EACN,GAAIA,KAAAA,EAEJ,QAAA,EAAA;AAAA,kBAAA,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,yIAAA,EACF,IAAA,EAAK,SAAA,EAAS,CAAA;AAAA,kBAEhB,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,4GAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhB,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,kEAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhB,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,kEAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhB,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,mHAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhB,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,mGAAA,EACF,MAAK,SAAA,EAAS,CAAA;AAAA,kBAEhB,GAAA,CAAC,MAAA,EAAA,EACC,CAAA,EAAE,4FAAA,EACF,MAAK,SAAA,EAAS;AAAA,CAAA,EAElB;;;;"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import AlloyDBIcon from './AlloyDB.js';
|
|
1
2
|
import Airbyte from './Airbyte.js';
|
|
2
3
|
import AWSDark from './AWSDark.js';
|
|
3
4
|
import AWSGlue from './AWSGlue.js';
|
|
@@ -65,6 +66,7 @@ import WarpStream from './WarpStream.js';
|
|
|
65
66
|
|
|
66
67
|
const LogosDark = {
|
|
67
68
|
clickhouse: ClickhouseLight,
|
|
69
|
+
alloydb: AlloyDBIcon,
|
|
68
70
|
airbyte: Airbyte,
|
|
69
71
|
aws: AWSDark,
|
|
70
72
|
"aws-athena": AWSAthena,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogosDark.js","sources":["../../../../src/components/Logos/LogosDark.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport Airbyte from './Airbyte';\nimport AWSDark from './AWSDark';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSS3 from './AWS_S3';\nimport AWSAthena from './AWSAthena';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseDark';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport Databricks from './Databricks';\nimport DataGrip from './DataGrip';\nimport dBeaver from './dBeaver';\nimport DigitalOcean from './DigitalOcean';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport FeatureDatabaseDark from './FeatureDatabaseDark';\nimport FeatureHexagonDark from './FeatureHexagonDark';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubDark';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaDark';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustDark';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauDark';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosDark: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n airbyte: Airbyte,\n aws: AWSDark,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseDark,\n feature_hexagon: FeatureHexagonDark,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosDark;\n"],"names":["LogosDark","clickhouse","Clickhouse","airbyte","Airbyte","aws","AWSDark","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseDark","feature_hexagon","FeatureHexagonDark","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"
|
|
1
|
+
{"version":3,"file":"LogosDark.js","sources":["../../../../src/components/Logos/LogosDark.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport AlloyDB from './AlloyDB';\nimport Airbyte from './Airbyte';\nimport AWSDark from './AWSDark';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSS3 from './AWS_S3';\nimport AWSAthena from './AWSAthena';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseDark';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport Databricks from './Databricks';\nimport DataGrip from './DataGrip';\nimport dBeaver from './dBeaver';\nimport DigitalOcean from './DigitalOcean';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport FeatureDatabaseDark from './FeatureDatabaseDark';\nimport FeatureHexagonDark from './FeatureHexagonDark';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubDark';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaDark';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustDark';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauDark';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosDark: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n alloydb: AlloyDB,\n airbyte: Airbyte,\n aws: AWSDark,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseDark,\n feature_hexagon: FeatureHexagonDark,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosDark;\n"],"names":["LogosDark","clickhouse","Clickhouse","alloydb","AlloyDB","airbyte","Airbyte","aws","AWSDark","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseDark","feature_hexagon","FeatureHexagonDark","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"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"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import AlloyDBIcon from './AlloyDB.js';
|
|
1
2
|
import Airbyte from './Airbyte.js';
|
|
2
3
|
import AWSLight from './AWSLight.js';
|
|
3
4
|
import AWSAthena from './AWSAthena.js';
|
|
@@ -65,6 +66,7 @@ import WarpStream from './WarpStream.js';
|
|
|
65
66
|
|
|
66
67
|
const LogosLight = {
|
|
67
68
|
clickhouse: ClickhouseLight,
|
|
69
|
+
alloydb: AlloyDBIcon,
|
|
68
70
|
airbyte: Airbyte,
|
|
69
71
|
aws: AWSLight,
|
|
70
72
|
"aws-athena": AWSAthena,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"LogosLight.js","sources":["../../../../src/components/Logos/LogosLight.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport Airbyte from './Airbyte';\nimport AWSLight from './AWSLight';\nimport AWSAthena from './AWSAthena';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport AWSS3 from './AWS_S3';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseLight';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport DataGrip from './DataGrip';\nimport Databricks from './Databricks';\nimport dBeaver from './dBeaver';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport DigitalOcean from './DigitalOcean';\nimport FeatureDatabaseLight from './FeatureDatabaseLight';\nimport FeatureHexagonLight from './FeatureHexagonLight';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubLight';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaLight';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustLight';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauLight';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosLight: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n airbyte: Airbyte,\n aws: AWSLight,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseLight,\n feature_hexagon: FeatureHexagonLight,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosLight;\n"],"names":["LogosLight","clickhouse","Clickhouse","airbyte","Airbyte","aws","AWSLight","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseLight","feature_hexagon","FeatureHexagonLight","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"
|
|
1
|
+
{"version":3,"file":"LogosLight.js","sources":["../../../../src/components/Logos/LogosLight.ts"],"sourcesContent":["import { SVGAttributes } from 'react';\nimport AlloyDB from './AlloyDB';\nimport Airbyte from './Airbyte';\nimport AWSLight from './AWSLight';\nimport AWSAthena from './AWSAthena';\nimport AWSGlue from './AWSGlue';\nimport AWSKinesis from './AWSKinesis';\nimport AWSRedshift from './AWSRedshift';\nimport AWSMsk from './AWSMsk';\nimport AWSAurora from './AWSAurora';\nimport AWSRds from './AWSRds';\nimport AWSS3 from './AWS_S3';\nimport Azure from './Azure';\nimport AzureBlobStorage from './AzureBlobStorage';\nimport AzureEventHub from './AzureEventHub';\nimport BigQuery from './BigQuery';\nimport Chash from './Chash';\nimport Clickhouse from './ClickhouseLight';\nimport Cloudflare from './Cloudflare';\nimport Confluent from './Confluent';\nimport CrunchyBridge from './CrunchyBridge';\nimport DataGrip from './DataGrip';\nimport Databricks from './Databricks';\nimport dBeaver from './dBeaver';\nimport Dbt from './Dbt';\nimport Decodeable from './Decodeable';\nimport DeepNote from './DeepNote';\nimport DeltaLake from './DeltaLake';\nimport DigitalOcean from './DigitalOcean';\nimport FeatureDatabaseLight from './FeatureDatabaseLight';\nimport FeatureHexagonLight from './FeatureHexagonLight';\nimport Fivetran from './Fivetran';\nimport Gcp from './Gcp';\nimport Gcs from './GCS';\nimport Github from './GithubLight';\nimport GoLang from './GoLang';\nimport Google from './Google';\nimport Grafana from './Grafana';\nimport Hex from './Hex';\nimport Hudi from './Hudi';\nimport Iceberg from './Iceberg';\nimport Jdbc from './Jdbc';\nimport Kafka from './KafkaLight';\nimport Kubenetes from './Kubenetes';\nimport MariaDB from './MariaDB';\nimport Metabase from './Metabase';\nimport Microsoft from './Microsoft';\nimport MongoDb from './MongoDb';\nimport MySQL from './MySQL';\nimport NeonDB from './NeonDB';\nimport Nessie from './Nessie';\nimport NodeJs from './NodeJs';\nimport OneLake from './OneLake';\nimport Postgres from './Postgres';\nimport Prequel from './Prequel';\nimport Python from './Python';\nimport Redpanda from './Redpanda';\nimport Rust from './RustLight';\nimport Snowflake from './Snowflake';\nimport Supabase from './Supabase';\nimport Superset from './Superset';\nimport Tableau from './TableauLight';\nimport TigerData from './TigerData';\nimport Upstash from './Upstash';\nimport Vector from './Vector';\nimport WarpStream from './WarpStream';\nimport { LogoName } from './types';\n\nconst LogosLight: Record<\n LogoName,\n (props: SVGAttributes<SVGElement>) => React.JSX.Element\n> = {\n clickhouse: Clickhouse,\n alloydb: AlloyDB,\n airbyte: Airbyte,\n aws: AWSLight,\n 'aws-athena': AWSAthena,\n 'aws-glue': AWSGlue,\n 'aws-kinesis': AWSKinesis,\n 'aws-msk': AWSMsk,\n 'aws-aurora': AWSAurora,\n 'aws-rds': AWSRds,\n 'aws-redshift': AWSRedshift,\n 'aws-s3': AWSS3,\n azure: Azure,\n 'azure-blob-storage': AzureBlobStorage,\n 'azure-event-hub': AzureEventHub,\n bigquery: BigQuery,\n 'c#': Chash,\n cloudflare: Cloudflare,\n confluent: Confluent,\n 'crunchy-bridge': CrunchyBridge,\n databricks: Databricks,\n datagrip: DataGrip,\n dbeaver: dBeaver,\n dbt: Dbt,\n decodeable: Decodeable,\n deepnote: DeepNote,\n deltalake: DeltaLake,\n digital_ocean: DigitalOcean,\n feature_database: FeatureDatabaseLight,\n feature_hexagon: FeatureHexagonLight,\n fivetran: Fivetran,\n gcp: Gcp,\n gcs: Gcs,\n github: Github,\n golang: GoLang,\n google: Google,\n grafana: Grafana,\n hex: Hex,\n hudi: Hudi,\n iceberg: Iceberg,\n jdbc: Jdbc,\n kafka: Kafka,\n kubenetes: Kubenetes,\n mariadb: MariaDB,\n metabase: Metabase,\n microsoft: Microsoft,\n mongodb: MongoDb,\n mysql: MySQL,\n neondb: NeonDB,\n nessie: Nessie,\n nodejs: NodeJs,\n onelake: OneLake,\n postgres: Postgres,\n prequel: Prequel,\n python: Python,\n redpanda: Redpanda,\n rust: Rust,\n snowflake: Snowflake,\n supabase: Supabase,\n superset: Superset,\n tableau: Tableau,\n tigerdata: TigerData,\n upstash: Upstash,\n vector: Vector,\n warpstream: WarpStream,\n};\n\nexport default LogosLight;\n"],"names":["LogosLight","clickhouse","Clickhouse","alloydb","AlloyDB","airbyte","Airbyte","aws","AWSLight","AWSAthena","AWSGlue","AWSKinesis","AWSMsk","AWSAurora","AWSRds","AWSRedshift","AWSS3","azure","Azure","AzureBlobStorage","AzureEventHub","bigquery","BigQuery","Chash","cloudflare","Cloudflare","confluent","Confluent","CrunchyBridge","databricks","Databricks","datagrip","DataGrip","dbeaver","dBeaver","dbt","Dbt","decodeable","Decodeable","deepnote","DeepNote","deltalake","DeltaLake","digital_ocean","DigitalOcean","feature_database","FeatureDatabaseLight","feature_hexagon","FeatureHexagonLight","fivetran","Fivetran","gcp","Gcp","gcs","Gcs","github","Github","golang","GoLang","google","Google","grafana","Grafana","hex","Hex","hudi","Hudi","iceberg","Iceberg","jdbc","Jdbc","kafka","Kafka","kubenetes","Kubenetes","mariadb","MariaDB","metabase","Metabase","microsoft","Microsoft","mongodb","MongoDb","mysql","MySQL","neondb","NeonDB","nessie","Nessie","nodejs","NodeJs","onelake","OneLake","postgres","Postgres","prequel","Prequel","python","Python","redpanda","Redpanda","rust","Rust","snowflake","Snowflake","supabase","Supabase","superset","Superset","tableau","Tableau","tigerdata","TigerData","upstash","Upstash","vector","Vector","warpstream","WarpStream"],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export type LogoName = 'clickhouse' | 'airbyte' | 'aws-s3' | 'aws-athena' | 'aws-glue' | 'aws-kinesis' | 'aws-redshift' | 'aws-msk' | 'aws-aurora' | 'aws-rds' | 'kafka' | 'digital_ocean' | 'feature_database' | 'feature_hexagon' | 'fivetran' | 'confluent' | 'crunchy-bridge' | 'hex' | 'tableau' | 'grafana' | 'superset' | 'metabase' | 'microsoft' | 'aws' | 'gcp' | 'gcs' | 'azure' | 'azure-blob-storage' | 'azure-event-hub' | 'dbeaver' | 'dbt' | 'jdbc' | 'mysql' | 'neondb' | 'postgres' | 'google' | 'github' | 'decodeable' | 'golang' | 'prequel' | 'python' | 'deepnote' | 'nodejs' | 'datagrip' | 'vector' | 'kubenetes' | 'c#' | 'redpanda' | 'rust' | 'hudi' | 'deltalake' | 'snowflake' | 'supabase' | 'mongodb' | 'bigquery' | 'iceberg' | 'upstash' | 'warpstream' | 'cloudflare' | 'databricks' | 'mariadb' | 'onelake' | 'nessie' | 'tigerdata';
|
|
1
|
+
export type LogoName = 'clickhouse' | 'alloydb' | 'airbyte' | 'aws-s3' | 'aws-athena' | 'aws-glue' | 'aws-kinesis' | 'aws-redshift' | 'aws-msk' | 'aws-aurora' | 'aws-rds' | 'kafka' | 'digital_ocean' | 'feature_database' | 'feature_hexagon' | 'fivetran' | 'confluent' | 'crunchy-bridge' | 'hex' | 'tableau' | 'grafana' | 'superset' | 'metabase' | 'microsoft' | 'aws' | 'gcp' | 'gcs' | 'azure' | 'azure-blob-storage' | 'azure-event-hub' | 'dbeaver' | 'dbt' | 'jdbc' | 'mysql' | 'neondb' | 'postgres' | 'google' | 'github' | 'decodeable' | 'golang' | 'prequel' | 'python' | 'deepnote' | 'nodejs' | 'datagrip' | 'vector' | 'kubenetes' | 'c#' | 'redpanda' | 'rust' | 'hudi' | 'deltalake' | 'snowflake' | 'supabase' | 'mongodb' | 'bigquery' | 'iceberg' | 'upstash' | 'warpstream' | 'cloudflare' | 'databricks' | 'mariadb' | 'onelake' | 'nessie' | 'tigerdata';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@clickhouse/click-ui",
|
|
3
|
-
"version": "0.0.251-test.
|
|
3
|
+
"version": "0.0.251-test.72",
|
|
4
4
|
"description": "Official ClickHouse design system react library",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -40,14 +40,16 @@
|
|
|
40
40
|
"build:watch": "watch 'yarn build' ./src",
|
|
41
41
|
"changeset:add": "yarn changeset",
|
|
42
42
|
"changeset:status": "yarn changeset status",
|
|
43
|
-
"changeset:version": "yarn changeset version",
|
|
44
43
|
"changeset:verify": ".scripts/changeset-verification",
|
|
44
|
+
"changeset:version": "yarn changeset version",
|
|
45
45
|
"dev": "yarn storybook",
|
|
46
|
-
"generate-tokens": "node build-tokens.js && prettier --write \"src/theme/tokens/*.ts\" --config .prettierrc",
|
|
47
|
-
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
|
|
48
|
-
"lint:fix": "eslint src --report-unused-disable-directives --max-warnings 0 --fix",
|
|
49
46
|
"format": "prettier --check \"src/**/*.{js,jsx,ts,tsx}\" --config .prettierrc",
|
|
50
47
|
"format:fix": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\" --config .prettierrc",
|
|
48
|
+
"generate:tokens": "node build-tokens.js && prettier --write \"src/theme/tokens/*.ts\" --config .prettierrc",
|
|
49
|
+
"lint": "eslint src --report-unused-disable-directives --max-warnings 0",
|
|
50
|
+
"lint:fix": "eslint src --report-unused-disable-directives --max-warnings 0 --fix",
|
|
51
|
+
"prepare": "husky",
|
|
52
|
+
"prettify": "yarn format:fix",
|
|
51
53
|
"preview": "vite preview",
|
|
52
54
|
"publish:click-ui": "yarn test && yarn build && yarn npm publish",
|
|
53
55
|
"storybook": "storybook dev -p 6006",
|
|
@@ -56,12 +58,11 @@
|
|
|
56
58
|
"test": "vitest",
|
|
57
59
|
"test:chromatic": "yarn dlx chromatic",
|
|
58
60
|
"test:visual": "playwright test",
|
|
61
|
+
"test:visual:report": "playwright show-report",
|
|
59
62
|
"test:visual:ui": "playwright test --ui",
|
|
60
63
|
"test:visual:update": "playwright test --update-snapshots",
|
|
61
|
-
"test:
|
|
62
|
-
"typecheck": "tsc --noEmit"
|
|
63
|
-
"watch": "vitest --watch",
|
|
64
|
-
"prepare": "husky"
|
|
64
|
+
"test:watch": "DEBUG_PRINT_LIMIT=100000 vitest --watch",
|
|
65
|
+
"typecheck": "tsc --noEmit"
|
|
65
66
|
},
|
|
66
67
|
"dependencies": {
|
|
67
68
|
"@h6s/calendar": "2.0.1",
|