@harnessio/ui 1.2.1 → 1.2.2
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/dist/components.d.ts +44 -0
- package/dist/components.js +2 -2
- package/dist/context.js +2 -2
- package/dist/index-Bmj1KvsW.js +1711 -0
- package/dist/index-Bmj1KvsW.js.map +1 -0
- package/dist/{index-DcxKidkT.js → index-CFJXZQvL.js} +9942 -9920
- package/dist/{index-DcxKidkT.js.map → index-CFJXZQvL.js.map} +1 -1
- package/dist/{index-B_QJKkYF.js → index-DyWaEvn_.js} +2 -2
- package/dist/{index-B_QJKkYF.js.map → index-DyWaEvn_.js.map} +1 -1
- package/dist/index.d.ts +44 -0
- package/dist/index.js +2 -2
- package/package.json +3 -3
- package/dist/index-Cy8hoV6V.js +0 -1689
- package/dist/index-Cy8hoV6V.js.map +0 -1
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { G as c, H as v, u as g, a as P } from "./button-D7Vweq01.js";
|
|
2
2
|
import { R as T, u as w } from "./use-resize-observer-DNQ1lBLF.js";
|
|
3
|
-
import { E, e as b, v as h, w as y, f as D, x as S, q as _, d as j, u as M } from "./index-
|
|
3
|
+
import { E, e as b, v as h, w as y, f as D, x as S, q as _, d as j, u as M } from "./index-Bmj1KvsW.js";
|
|
4
4
|
import { jsx as i, jsxs as O } from "react/jsx-runtime";
|
|
5
5
|
import { createContext as u, useContext as C, useState as a, useCallback as R, useMemo as k } from "react";
|
|
6
6
|
import { a as q, C as z, M as B, l as G, k as H } from "./types-DuzuERyI.js";
|
|
@@ -78,4 +78,4 @@ export {
|
|
|
78
78
|
L as m,
|
|
79
79
|
W as u
|
|
80
80
|
};
|
|
81
|
-
//# sourceMappingURL=index-
|
|
81
|
+
//# sourceMappingURL=index-DyWaEvn_.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index-
|
|
1
|
+
{"version":3,"file":"index-DyWaEvn_.js","sources":["../src/context/theme/migrate-persisted-theme.ts","../src/context/component-context.tsx","../src/context/exit-confirm-context.tsx"],"sourcesContent":["import { FullTheme } from './types'\n\n/** Rewrite deprecated dimmer/low contrast themes to standard contrast. */\nexport function migrateLowContrastTheme(theme?: FullTheme): FullTheme | undefined {\n if (theme?.endsWith('-low')) {\n return theme.replace(/-low$/, '-std') as FullTheme\n }\n\n return theme\n}\n","// ComponentContext.tsx\n\nimport React, { createContext, ReactNode, RefAttributes, useContext } from 'react'\n\nimport { RbacButtonProps, RbacMoreActionsTooltipProps, RbacSplitButtonProps } from '@components/rbac'\n\ninterface ComponentContextValue {\n RbacButton: React.ComponentType<RbacButtonProps & RefAttributes<HTMLButtonElement>>\n RbacSplitButton: <T extends string>(props: RbacSplitButtonProps<T>) => JSX.Element\n RbacMoreActionsTooltip: React.ForwardRefExoticComponent<\n RbacMoreActionsTooltipProps & RefAttributes<HTMLButtonElement>\n >\n}\n\nconst ComponentContext = createContext<ComponentContextValue | undefined>(undefined)\n\nexport const ComponentProvider = ({\n components,\n children\n}: {\n components: ComponentContextValue\n children: ReactNode\n}) => {\n return <ComponentContext.Provider value={components}>{children}</ComponentContext.Provider>\n}\n\nexport const useComponents = () => {\n const ctx = useContext(ComponentContext)\n if (!ctx) throw new Error('useComponents must be used within ComponentProvider')\n return ctx\n}\n","import { createContext, useCallback, useContext, useMemo, useState } from 'react'\n\nimport { ExitConfirmDialog, ExitConfirmOptions } from '../components/dialogs/exit-confirm-dialog'\n\nexport interface ExitConfirmContextType {\n show: (options: ExitConfirmOptions) => void\n}\n\nexport const ExitConfirmContext = createContext<ExitConfirmContextType>({\n show: (_options: ExitConfirmOptions) => undefined\n})\n\nexport function ExitConfirmProvider({ children }: { children: React.ReactNode }) {\n const [confirm, setConfirm] = useState<ExitConfirmOptions>()\n const [open, setOpen] = useState(false)\n\n const show = useCallback(\n (confirmOptions?: ExitConfirmOptions) => {\n setConfirm(confirmOptions)\n setOpen(true)\n },\n [setOpen]\n )\n\n const onConfirm = () => {\n confirm?.onConfirm?.()\n setOpen(false)\n }\n\n const onCancel = () => {\n confirm?.onCancel?.()\n setOpen(false)\n }\n\n const value = useMemo(() => ({ show }), [show])\n\n return (\n <ExitConfirmContext.Provider value={value}>\n {children}\n <ExitConfirmDialog {...confirm} onCancel={onCancel} onConfirm={onConfirm} open={open} />\n </ExitConfirmContext.Provider>\n )\n}\n\nexport const useExitConfirm = () => {\n const context = useContext(ExitConfirmContext)\n if (!context) {\n throw new Error('useExitConfirm must be used within a ExitConfirmProvider')\n }\n return context\n}\n"],"names":["migrateLowContrastTheme","theme","ComponentContext","createContext","ComponentProvider","components","children","useComponents","ctx","useContext","ExitConfirmContext","_options","ExitConfirmProvider","confirm","setConfirm","useState","open","setOpen","show","useCallback","confirmOptions","onConfirm","_a","onCancel","value","useMemo","jsxs","ExitConfirmDialog","useExitConfirm","context"],"mappings":";;;;;;AAGO,SAASA,EAAwBC,GAA0C;AAC5E,SAAAA,KAAA,QAAAA,EAAO,SAAS,UACXA,EAAM,QAAQ,SAAS,MAAM,IAG/BA;AACT;ACKA,MAAMC,IAAmBC,EAAiD,MAAS,GAEtEC,IAAoB,CAAC;AAAA,EAChC,YAAAC;AAAA,EACA,UAAAC;AACF,wBAIUJ,EAAiB,UAAjB,EAA0B,OAAOG,GAAa,UAAAC,GAAS,GAGpDC,IAAgB,MAAM;AAC3B,QAAAC,IAAMC,EAAWP,CAAgB;AACvC,MAAI,CAACM,EAAW,OAAA,IAAI,MAAM,qDAAqD;AACxE,SAAAA;AACT,GCtBaE,IAAqBP,EAAsC;AAAA,EACtE,MAAM,CAACQ,MAAiC;AAAA;AAC1C,CAAC;AAEe,SAAAC,EAAoB,EAAE,UAAAN,KAA2C;AAC/E,QAAM,CAACO,GAASC,CAAU,IAAIC,EAA6B,GACrD,CAACC,GAAMC,CAAO,IAAIF,EAAS,EAAK,GAEhCG,IAAOC;AAAA,IACX,CAACC,MAAwC;AACvC,MAAAN,EAAWM,CAAc,GACzBH,EAAQ,EAAI;AAAA,IACd;AAAA,IACA,CAACA,CAAO;AAAA,EACV,GAEMI,IAAY,MAAM;;AACtB,KAAAC,IAAAT,KAAA,gBAAAA,EAAS,cAAT,QAAAS,EAAA,KAAAT,IACAI,EAAQ,EAAK;AAAA,EACf,GAEMM,IAAW,MAAM;;AACrB,KAAAD,IAAAT,KAAA,gBAAAA,EAAS,aAAT,QAAAS,EAAA,KAAAT,IACAI,EAAQ,EAAK;AAAA,EACf,GAEMO,IAAQC,EAAQ,OAAO,EAAE,MAAAP,MAAS,CAACA,CAAI,CAAC;AAE9C,SACG,gBAAAQ,EAAAhB,EAAmB,UAAnB,EAA4B,OAAAc,GAC1B,UAAA;AAAA,IAAAlB;AAAA,sBACAqB,GAAmB,EAAA,GAAGd,GAAS,UAAAU,GAAoB,WAAAF,GAAsB,MAAAL,EAAY,CAAA;AAAA,EAAA,GACxF;AAEJ;AAEO,MAAMY,IAAiB,MAAM;AAC5B,QAAAC,IAAUpB,EAAWC,CAAkB;AAC7C,MAAI,CAACmB;AACG,UAAA,IAAI,MAAM,0DAA0D;AAErE,SAAAA;AACT;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/index.d.ts
CHANGED
|
@@ -4368,6 +4368,7 @@ declare interface LogoFallbackPropsV2 extends BaseLogoPropsV2 {
|
|
|
4368
4368
|
*/
|
|
4369
4369
|
declare const LogoNameMapV2: {
|
|
4370
4370
|
'ai-verify': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4371
|
+
alpine: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4371
4372
|
anchore: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4372
4373
|
android: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4373
4374
|
'app-dynamics': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4378,6 +4379,9 @@ declare const LogoNameMapV2: {
|
|
|
4378
4379
|
'armore-code': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4379
4380
|
artifactory: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4380
4381
|
'auto-scaler': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4382
|
+
'aws-ec2': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4383
|
+
'aws-elasticache': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4384
|
+
'aws-rds': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4381
4385
|
aws: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4382
4386
|
azure: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4383
4387
|
background: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4389,22 +4393,30 @@ declare const LogoNameMapV2: {
|
|
|
4389
4393
|
brakeman: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4390
4394
|
'build-kite': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4391
4395
|
burb: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4396
|
+
chainguard: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4392
4397
|
'chat-gpt': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4393
4398
|
checkmarx: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4394
4399
|
checkov: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4395
4400
|
claude: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4396
4401
|
codecov: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4402
|
+
composer: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4403
|
+
conan: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4404
|
+
conda: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4397
4405
|
confluence: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4398
4406
|
connector: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4407
|
+
cran: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4399
4408
|
cursor: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4400
4409
|
'custom-deployment': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4401
4410
|
'custom-ingest': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4402
4411
|
'custom-scan': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4403
4412
|
'custom-secret-manager': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4413
|
+
dart: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4404
4414
|
'data-dog': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4405
4415
|
'database-apply-schema': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4406
4416
|
'database-check': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4407
4417
|
'database-rollback': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4418
|
+
databricks: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4419
|
+
debian: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4408
4420
|
'default-secret-manager': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4409
4421
|
docker: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4410
4422
|
dynatrace: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4431,6 +4443,7 @@ declare const LogoNameMapV2: {
|
|
|
4431
4443
|
hashicorp: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4432
4444
|
helm: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4433
4445
|
hubspot: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4446
|
+
huggingface: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4434
4447
|
java: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4435
4448
|
'jenkins-x': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4436
4449
|
jenkins: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4442,12 +4455,14 @@ declare const LogoNameMapV2: {
|
|
|
4442
4455
|
linux: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4443
4456
|
liquibase: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4444
4457
|
local: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4458
|
+
maven: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4445
4459
|
'mcp-connector': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4446
4460
|
mcp: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4447
4461
|
mend: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4448
4462
|
metasploit: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4449
4463
|
microsoft: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4450
4464
|
modelscan: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4465
|
+
mongodb: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4451
4466
|
'ms-teams': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4452
4467
|
'new-relic': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4453
4468
|
nexus: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4455,6 +4470,7 @@ declare const LogoNameMapV2: {
|
|
|
4455
4470
|
nmap: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4456
4471
|
'node-js': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4457
4472
|
npm: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4473
|
+
nuget: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4458
4474
|
oci: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4459
4475
|
'open-shift': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4460
4476
|
'open-tofu': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4467,14 +4483,18 @@ declare const LogoNameMapV2: {
|
|
|
4467
4483
|
'prisma-cloud': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4468
4484
|
prometheus: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4469
4485
|
prowler: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4486
|
+
puppet: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4470
4487
|
python: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4471
4488
|
qtest: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4472
4489
|
qualys: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4473
4490
|
queue: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4474
4491
|
qwiet: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4475
4492
|
rancher: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4493
|
+
redhat: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4494
|
+
ruby: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4476
4495
|
'run-test': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4477
4496
|
run: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4497
|
+
rust: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4478
4498
|
salesforce: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4479
4499
|
'secret-ssh': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4480
4500
|
'secure-shell': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4483,6 +4503,7 @@ declare const LogoNameMapV2: {
|
|
|
4483
4503
|
servicenow: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4484
4504
|
sfx: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4485
4505
|
slack: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4506
|
+
snowflake: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4486
4507
|
snyk: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4487
4508
|
sonarqube: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4488
4509
|
splunk: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -4491,6 +4512,7 @@ declare const LogoNameMapV2: {
|
|
|
4491
4512
|
sql: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4492
4513
|
'ssca-orchestrate': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4493
4514
|
'sumo-logic': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4515
|
+
swift: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4494
4516
|
sysdig: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4495
4517
|
tanzu: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
4496
4518
|
'tas-vars': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7244,6 +7266,7 @@ declare interface SymbolFallbackProps extends BaseSymbolProps {
|
|
|
7244
7266
|
*/
|
|
7245
7267
|
declare const SymbolNameMap: {
|
|
7246
7268
|
'ai-verify': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7269
|
+
alpine: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7247
7270
|
anchore: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7248
7271
|
android: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7249
7272
|
'app-dynamics': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7254,6 +7277,9 @@ declare const SymbolNameMap: {
|
|
|
7254
7277
|
'armore-code': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7255
7278
|
artifactory: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7256
7279
|
'auto-scaler': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7280
|
+
'aws-ec2': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7281
|
+
'aws-elasticache': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7282
|
+
'aws-rds': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7257
7283
|
aws: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7258
7284
|
azure: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7259
7285
|
background: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7265,22 +7291,30 @@ declare const SymbolNameMap: {
|
|
|
7265
7291
|
brakeman: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7266
7292
|
'build-kite': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7267
7293
|
burb: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7294
|
+
chainguard: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7268
7295
|
'chat-gpt': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7269
7296
|
checkmarx: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7270
7297
|
checkov: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7271
7298
|
claude: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7272
7299
|
codecov: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7300
|
+
composer: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7301
|
+
conan: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7302
|
+
conda: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7273
7303
|
confluence: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7274
7304
|
connector: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7305
|
+
cran: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7275
7306
|
cursor: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7276
7307
|
'custom-deployment': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7277
7308
|
'custom-ingest': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7278
7309
|
'custom-scan': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7279
7310
|
'custom-secret-manager': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7311
|
+
dart: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7280
7312
|
'data-dog': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7281
7313
|
'database-apply-schema': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7282
7314
|
'database-check': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7283
7315
|
'database-rollback': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7316
|
+
databricks: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7317
|
+
debian: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7284
7318
|
'default-secret-manager': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7285
7319
|
docker: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7286
7320
|
dynatrace: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7307,6 +7341,7 @@ declare const SymbolNameMap: {
|
|
|
7307
7341
|
hashicorp: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7308
7342
|
helm: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7309
7343
|
hubspot: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7344
|
+
huggingface: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7310
7345
|
java: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7311
7346
|
'jenkins-x': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7312
7347
|
jenkins: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7318,12 +7353,14 @@ declare const SymbolNameMap: {
|
|
|
7318
7353
|
linux: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7319
7354
|
liquibase: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7320
7355
|
local: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7356
|
+
maven: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7321
7357
|
'mcp-connector': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7322
7358
|
mcp: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7323
7359
|
mend: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7324
7360
|
metasploit: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7325
7361
|
microsoft: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7326
7362
|
modelscan: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7363
|
+
mongodb: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7327
7364
|
'ms-teams': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7328
7365
|
'new-relic': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7329
7366
|
nexus: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7331,6 +7368,7 @@ declare const SymbolNameMap: {
|
|
|
7331
7368
|
nmap: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7332
7369
|
'node-js': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7333
7370
|
npm: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7371
|
+
nuget: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7334
7372
|
oci: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7335
7373
|
'open-shift': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7336
7374
|
'open-tofu': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7343,14 +7381,18 @@ declare const SymbolNameMap: {
|
|
|
7343
7381
|
'prisma-cloud': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7344
7382
|
prometheus: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7345
7383
|
prowler: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7384
|
+
puppet: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7346
7385
|
python: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7347
7386
|
qtest: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7348
7387
|
qualys: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7349
7388
|
queue: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7350
7389
|
qwiet: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7351
7390
|
rancher: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7391
|
+
redhat: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7392
|
+
ruby: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7352
7393
|
'run-test': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7353
7394
|
run: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7395
|
+
rust: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7354
7396
|
salesforce: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7355
7397
|
'secret-ssh': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7356
7398
|
'secure-shell': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7359,6 +7401,7 @@ declare const SymbolNameMap: {
|
|
|
7359
7401
|
servicenow: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7360
7402
|
sfx: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7361
7403
|
slack: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7404
|
+
snowflake: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7362
7405
|
snyk: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7363
7406
|
sonarqube: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7364
7407
|
splunk: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
@@ -7367,6 +7410,7 @@ declare const SymbolNameMap: {
|
|
|
7367
7410
|
sql: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7368
7411
|
'ssca-orchestrate': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7369
7412
|
'sumo-logic': FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7413
|
+
swift: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7370
7414
|
sysdig: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7371
7415
|
tanzu: FunctionComponent<SVGProps<SVGSVGElement>>;
|
|
7372
7416
|
'tas-vars': FunctionComponent<SVGProps<SVGSVGElement>>;
|
package/dist/index.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { i as s } from "./index-CdF49wK7.js";
|
|
2
|
-
import { i as e } from "./index-
|
|
3
|
-
import { i as a } from "./index-
|
|
2
|
+
import { i as e } from "./index-CFJXZQvL.js";
|
|
3
|
+
import { i as a } from "./index-DyWaEvn_.js";
|
|
4
4
|
import { i as m } from "./index-C4bDY5-3.js";
|
|
5
5
|
import { i as f } from "./index-DchZrYRY.js";
|
|
6
6
|
import { i as l } from "./index-Bvis3lzj.js";
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@harnessio/ui",
|
|
3
3
|
"description": "Harness Canary UI component library",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.2",
|
|
5
5
|
"private": false,
|
|
6
6
|
"type": "module",
|
|
7
7
|
"main": "./dist/index.js",
|
|
@@ -122,9 +122,9 @@
|
|
|
122
122
|
"vaul": "^1.1.2",
|
|
123
123
|
"yaml": "^2.7.0",
|
|
124
124
|
"zod": "^4.0.0",
|
|
125
|
-
"@harnessio/core-design-system": "0.0.1",
|
|
126
125
|
"@harnessio/pipeline-graph": "1.9.7",
|
|
127
|
-
"@harnessio/yaml-editor": "0.26.1"
|
|
126
|
+
"@harnessio/yaml-editor": "0.26.1",
|
|
127
|
+
"@harnessio/core-design-system": "0.0.1"
|
|
128
128
|
},
|
|
129
129
|
"peerDependencies": {
|
|
130
130
|
"react": "^17.0.2",
|