@databricks/appkit-ui 0.40.0 → 0.41.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.
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.d.ts","names":[],"sources":["../../src/schemas/manifest.ts"],"mappings":";;;cAsPa,yBAAA,EAAyB,CAAA,CAAA,qBAAA,EAAA,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;cA8FzB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkQxB,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAoE5B,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
1
|
+
{"version":3,"file":"manifest.d.ts","names":[],"sources":["../../src/schemas/manifest.ts"],"mappings":";;;cAsPa,yBAAA,EAAyB,CAAA,CAAA,qBAAA,EAAA,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;cA8FzB,wBAAA,EAAwB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkQxB,4BAAA,EAA4B,CAAA,CAAA,SAAA;;;;;cAoE5B,oBAAA,EAAoB,CAAA,CAAA,SAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;KA+frB,mBAAA,GAAsB,CAAA,CAAE,KAAA,QAAa,yBAAA;AAAA,KACrC,kBAAA,GAAqB,CAAA,CAAE,KAAA,QAAa,wBAAA;AAAA,KAIpC,sBAAA,GAAyB,CAAA,CAAE,KAAA,QAC9B,4BAAA;AAAA,KAEG,cAAA,GAAiB,CAAA,CAAE,KAAA,QAAa,oBAAA"}
|
package/dist/schemas/manifest.js
CHANGED
|
@@ -497,7 +497,7 @@ const TEMPLATE_SCAFFOLDING = {
|
|
|
497
497
|
}
|
|
498
498
|
},
|
|
499
499
|
rules: {
|
|
500
|
-
must: ["Keep all secrets and credentials only in app.yaml, databricks.yml, and/or .env"],
|
|
500
|
+
must: ["Treat `databricks apps init` output as starter code, not requirements; adapt or replace it to match the requested app", "Keep all secrets and credentials only in app.yaml, databricks.yml, and/or .env"],
|
|
501
501
|
should: ["ask user when in doubt of resource to use for plugin"],
|
|
502
502
|
never: ["guess resources when multiple or no options are available", "embed secrets in files that will go to the client-bundle"]
|
|
503
503
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"manifest.js","names":[],"sources":["../../src/schemas/manifest.ts"],"sourcesContent":["/**\n * Zod-authoring module for AppKit plugin manifest schemas.\n *\n * Single source of truth for the plugin manifest contract. JSON Schema\n * artifacts published at the docs URL are emitted from these schemas via\n * `tools/generate-json-schema.ts` and live only in `docs/static/schemas/`\n * (no package-internal copies).\n *\n * - Cross-field constraints (cycle/dangling-reference checks, `<PROFILE>`\n * placeholder, post-scaffold instruction non-empty) are refinements\n * co-located with the shape they constrain. Validation is driven through\n * the Standard Schema interface from `validate-manifest.ts`.\n * - `templateFieldEntrySchema` is a transform that emits `origin` from\n * `localOnly`/`value`/`resolve`. The input slot is still allowed so\n * re-parsing previously-synced template manifests does not fail, but the\n * transform always overwrites it — drift-by-construction for hand-edits.\n * - `discoveryDescriptorSchema` is a discriminated union over a `type`\n * literal. The `kind` variant references one of the well-known\n * `resourceKind` values for which AppKit owns the CLI command map (see\n * `RESOURCE_KIND_COMMANDS` below). The `cli` variant is the escape hatch\n * carrying the existing free-form fields (with the `<PROFILE>`\n * refinement). Hierarchical context for volumes (catalog/schema parent\n * walk) is encoded via the kind's `parents` array, not via dependsOn.\n * - Scaffolding rule items carry a `maxLength` (120 chars) so\n * `rules.never[]` / `rules.must[]` / `rules.should[]` stay short\n * directives by contract, and the canonical `TEMPLATE_SCAFFOLDING`\n * constant lives co-located with the scaffolding schemas (sync.ts\n * imports it).\n */\n\nimport { z } from \"zod\";\n\n// ── Resource type + per-type permission enums ────────────────────────────\n\nexport const resourceTypeSchema = z\n .enum([\n \"secret\",\n \"job\",\n \"sql_warehouse\",\n \"serving_endpoint\",\n \"volume\",\n \"vector_search_index\",\n \"uc_function\",\n \"uc_connection\",\n \"database\",\n \"postgres\",\n \"genie_space\",\n \"experiment\",\n \"app\",\n ])\n .describe(\"Type of Databricks resource\");\n\nexport const secretPermissionSchema = z\n .enum([\"READ\", \"WRITE\", \"MANAGE\"])\n .describe(\"Permission for secret resources (order: weakest to strongest)\");\n\nexport const jobPermissionSchema = z\n .enum([\"CAN_VIEW\", \"CAN_MANAGE_RUN\", \"CAN_MANAGE\"])\n .describe(\"Permission for job resources (order: weakest to strongest)\");\n\nexport const sqlWarehousePermissionSchema = z\n .enum([\"CAN_USE\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for SQL warehouse resources (order: weakest to strongest)\",\n );\n\nexport const servingEndpointPermissionSchema = z\n .enum([\"CAN_VIEW\", \"CAN_QUERY\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for serving endpoint resources (order: weakest to strongest)\",\n );\n\nexport const volumePermissionSchema = z\n .enum([\"READ_VOLUME\", \"WRITE_VOLUME\"])\n .describe(\"Permission for Unity Catalog volume resources\");\n\nexport const vectorSearchIndexPermissionSchema = z\n .enum([\"SELECT\"])\n .describe(\"Permission for vector search index resources\");\n\nexport const ucFunctionPermissionSchema = z\n .enum([\"EXECUTE\"])\n .describe(\"Permission for Unity Catalog function resources\");\n\nexport const ucConnectionPermissionSchema = z\n .enum([\"USE_CONNECTION\"])\n .describe(\"Permission for Unity Catalog connection resources\");\n\nexport const databasePermissionSchema = z\n .enum([\"CAN_CONNECT_AND_CREATE\"])\n .describe(\"Permission for database resources\");\n\nexport const postgresPermissionSchema = z\n .enum([\"CAN_CONNECT_AND_CREATE\"])\n .describe(\"Permission for Postgres resources\");\n\nexport const genieSpacePermissionSchema = z\n .enum([\"CAN_VIEW\", \"CAN_RUN\", \"CAN_EDIT\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for Genie Space resources (order: weakest to strongest)\",\n );\n\nexport const experimentPermissionSchema = z\n .enum([\"CAN_READ\", \"CAN_EDIT\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for MLflow experiment resources (order: weakest to strongest)\",\n );\n\nexport const appPermissionSchema = z\n .enum([\"CAN_USE\"])\n .describe(\"Permission for Databricks App resources\");\n\n// ── Discovery descriptor (discriminated union) ───────────────────────────\n\n/**\n * Well-known Databricks resource kinds for which AppKit owns the CLI\n * command map. Plugins reference one of these via the `kind` variant of the\n * discovery descriptor; everything else falls back to the free-form `cli`\n * variant.\n *\n * Kept narrow on purpose: each entry costs an addition to\n * `RESOURCE_KIND_COMMANDS` below, which is the single source of truth for\n * how that kind is enumerated.\n */\nexport const resourceKindSchema = z\n .enum([\n \"warehouse\",\n \"genie_space\",\n \"postgres_project\",\n \"postgres_branch\",\n \"postgres_database\",\n \"volume\",\n ])\n .describe(\n \"Well-known Databricks resource kind whose listing command is owned by AppKit (see RESOURCE_KIND_COMMANDS).\",\n );\n\nexport const kindDiscoveryDescriptorSchema = z\n .object({\n type: z\n .literal(\"kind\")\n .describe(\n \"Discriminator: 'kind' uses the AppKit-owned command map for the named resourceKind.\",\n ),\n resourceKind: resourceKindSchema.describe(\n \"Reference to a well-known Databricks resource kind. AppKit owns the CLI command, response shape, and unwrap rules.\",\n ),\n select: z\n .string()\n .optional()\n .describe(\n \"Field name in the parsed CLI response used as the selected value (e.g., 'id'). Defaults to the kind's natural identifier when omitted.\",\n ),\n display: z\n .string()\n .optional()\n .describe(\n \"Field name in the parsed CLI response shown to the user in selection UI. Defaults to `select` if omitted.\",\n ),\n dependsOn: z\n .string()\n .optional()\n .describe(\n \"Name of a sibling field within the same resource that must be resolved first. Used to express ordering dependencies between resource fields.\",\n ),\n shortcut: z\n .string()\n .optional()\n .describe(\n \"Single-value fast-path command that returns exactly one value, skipping interactive selection.\",\n ),\n })\n .strict()\n .describe(\n \"Discovery via a well-known resource kind. AppKit owns the CLI command and unwrap rules for the named kind.\",\n );\n\n/**\n * Shell metacharacters rejected on free-form CLI command strings. Catches the\n * common foot-guns (statement separators, pipes, redirects via shell, command\n * substitution, newlines). Not a security boundary on its own — executors must\n * always pass these via argv, never shell-exec the string. Angle brackets are\n * permitted because `<PROFILE>` (and future `<…>` placeholders) are part of\n * the command-template convention.\n */\nconst SHELL_METACHAR_RE = /[;|&`$\\n\\r]/;\n\nexport const cliDiscoveryDescriptorSchema = z\n .object({\n type: z\n .literal(\"cli\")\n .describe(\n \"Discriminator: 'cli' uses a free-form Databricks CLI command supplied by the plugin.\",\n ),\n cliCommand: z\n .string()\n .describe(\n \"Databricks CLI command that lists resources. Must include <PROFILE>. Shell metacharacters (;|&`$ and newlines) are rejected; for first-party Databricks resources prefer the `kind` variant which uses AppKit's typed command map.\",\n ),\n selectField: z\n .string()\n .describe(\n \"jq-style path to the field used as the selected value (e.g., '.id', '.name').\",\n ),\n displayField: z\n .string()\n .optional()\n .describe(\n \"jq-style path to the field shown to the user in selection UI. Defaults to selectField if omitted.\",\n ),\n dependsOn: z\n .string()\n .optional()\n .describe(\n \"Name of a sibling field within the same resource that must be resolved first. Used to express ordering dependencies between resource fields.\",\n ),\n shortcut: z\n .string()\n .optional()\n .describe(\n \"Single-value fast-path command that returns exactly one value, skipping interactive selection. Shell metacharacters are rejected.\",\n ),\n })\n .strict()\n .refine((descriptor) => descriptor.cliCommand.includes(\"<PROFILE>\"), {\n message: \"must include <PROFILE> placeholder\",\n path: [\"cliCommand\"],\n })\n .refine((descriptor) => !SHELL_METACHAR_RE.test(descriptor.cliCommand), {\n message:\n \"must not contain shell metacharacters (;|&`$ or newlines); use the `kind` variant for typed Databricks resources\",\n path: [\"cliCommand\"],\n })\n .refine(\n (descriptor) =>\n descriptor.shortcut === undefined ||\n !SHELL_METACHAR_RE.test(descriptor.shortcut),\n {\n message: \"must not contain shell metacharacters (;|&`$ or newlines)\",\n path: [\"shortcut\"],\n },\n )\n .describe(\n \"Discovery via a free-form Databricks CLI command. Escape hatch — prefer the `kind` variant when a typed resourceKind covers the resource. This shape is intentionally minimal and may tighten further in future versions.\",\n );\n\nexport const discoveryDescriptorSchema = z\n .discriminatedUnion(\"type\", [\n kindDiscoveryDescriptorSchema,\n cliDiscoveryDescriptorSchema,\n ])\n .describe(\n \"Describes how the CLI discovers values for a resource field. 'kind' references a well-known Databricks resource kind whose command is owned by AppKit; 'cli' is the escape hatch carrying a free-form Databricks CLI command.\",\n );\n\n// ── Resource kind → CLI command map ──────────────────────────────────────\n\n/**\n * Descriptor for how a well-known resource kind is listed via the\n * Databricks CLI.\n *\n * - `command` is the CLI invocation template. It carries two kinds of\n * placeholders:\n * - `<PROFILE>` — substituted with the user's CLI profile by the runner.\n * - `{<fieldName>}` — substituted with the resolved value of the named\n * sibling field (used for `dependsOn` chains).\n * - `unwrap`, when set, is the JSON path into the response wrapper (e.g.,\n * `\"warehouses\"` for `{ warehouses: [...] }`). Omitted when the response\n * is already a flat array.\n * - `parents`, when set, lists transient query inputs the runner must\n * collect (as free-text prompts) before invoking the command. Each\n * `parents[i]` value substitutes the matching `{name}` placeholder in\n * the command string. Unlike `dependsOn` (which references a sibling\n * field on the same resource), `parents` covers inputs that aren't\n * persisted as fields on the resource.\n */\nexport type ResourceKindCommand = {\n command: string;\n unwrap?: string;\n parents?: readonly string[];\n};\n\n/**\n * Single source of truth for AppKit-owned discovery commands.\n *\n * To add a new resource kind: extend `resourceKindSchema` and add an entry\n * here. Plugins reference the kind via `discovery: { type: \"kind\",\n * resourceKind: \"...\" }` and inherit the command + response shape.\n *\n * `unwrap` defaults are unset: the existing core plugin manifests use simple\n * jq paths (`.id`, `.name`, `.full_name`), implying the listed CLI commands\n * return flat arrays. Refine in a follow-up if a kind's CLI returns wrapped\n * data.\n *\n * Volume's catalog/schema parent context is supplied via the `parents`\n * array, which the runner collects from the user as free-text prompts\n * before invoking the listing command.\n */\nexport const RESOURCE_KIND_COMMANDS: Record<\n z.infer<typeof resourceKindSchema>,\n { command: string; unwrap?: string; parents?: readonly string[] }\n> = {\n warehouse: {\n command: \"databricks warehouses list --profile <PROFILE> --output json\",\n },\n genie_space: {\n command: \"databricks genie list-spaces --profile <PROFILE> --output json\",\n },\n postgres_project: {\n command:\n \"databricks postgres list-projects --profile <PROFILE> --output json\",\n },\n postgres_branch: {\n // {project} is a placeholder for the resolved value of the `project`\n // sibling field (declared via `dependsOn: \"project\"` on the kind variant).\n // The Databricks CLI requires the parent project resource name (format\n // `projects/{project_id}`) as a positional argument.\n command:\n \"databricks postgres list-branches {project} --profile <PROFILE> --output json\",\n },\n postgres_database: {\n // {branch} is a placeholder for the resolved value of the `branch`\n // sibling field (declared via `dependsOn: \"branch\"` on the kind variant).\n command:\n \"databricks postgres list-databases {branch} --profile <PROFILE> --output json\",\n },\n volume: {\n // `parents` declares free-text user prompts the runner must collect before\n // invoking the discovery command. Each `parents[i]` value substitutes the\n // matching `{name}` placeholder in the command string above. Unlike\n // `dependsOn` (which references a sibling field on the same resource),\n // `parents` covers transient query inputs that aren't persisted as fields.\n command:\n \"databricks volumes list {catalog} {schema} --profile <PROFILE> --output json\",\n parents: [\"catalog\", \"schema\"] as const,\n },\n};\n\n// ── Resource field entry (plugin manifest variant) ───────────────────────\n\nexport const resourceFieldEntrySchema = z\n .object({\n env: z\n .string()\n .regex(/^[A-Z][A-Z0-9_]*$/)\n .optional()\n .describe(\"Environment variable name for this field\"),\n description: z\n .string()\n .optional()\n .describe(\"Human-readable description for this field\"),\n bundleIgnore: z\n .boolean()\n .optional()\n .describe(\n \"When true, this field is excluded from Databricks bundle configuration (databricks.yml) generation.\",\n ),\n examples: z\n .array(z.string())\n .optional()\n .describe(\"Example values showing the expected format for this field\"),\n localOnly: z\n .boolean()\n .optional()\n .describe(\n \"When true, this field is only generated for local .env files. The Databricks Apps platform auto-injects it at deploy time.\",\n ),\n value: z\n .string()\n .optional()\n .describe(\n \"Static value for this field. Used when no prompted or resolved value exists.\",\n ),\n resolve: z\n .string()\n .regex(/^[a-z_]+:[a-zA-Z]+$/)\n .optional()\n .describe(\n \"Named resolver prefixed by resource type (e.g., 'postgres:host'). The CLI resolves this value during the init prompt flow.\",\n ),\n discovery: discoveryDescriptorSchema.optional(),\n })\n .strict()\n .describe(\n \"Defines a single field for a resource. Each field has its own environment variable and optional description. Single-value types use one key (e.g. id); multi-value types (database, secret) use multiple (e.g. instance_name, database_name or scope, key).\",\n );\n\n// ── Resource requirement (per-type permission discriminator) ─────────────\n\n/**\n * Build a per-type variant. Each variant fixes `type` to a literal and constrains\n * `permission` to the matching enum, mirroring the existing JSON Schema's\n * `allOf + if/then` block. `fields` and the rest of the shape come from a\n * shared base.\n */\nconst resourceRequirementBaseShape = {\n alias: z\n .string()\n .min(1)\n .describe(\n \"Human-readable label for UI/display only. Deduplication uses resourceKey, not alias.\",\n ),\n resourceKey: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Stable key for machine use: deduplication, env naming, composite keys, app.yaml. Required for registry lookup.\",\n ),\n description: z\n .string()\n .min(1)\n .describe(\"Human-readable description of why this resource is needed\"),\n fields: z\n .record(z.string(), resourceFieldEntrySchema)\n .refine((obj) => Object.keys(obj).length >= 1, {\n message: \"fields must contain at least one entry\",\n })\n .optional()\n .describe(\n \"Map of field name to env and optional description. Single-value types use one key (e.g. id); multi-value (database, secret) use multiple (e.g. instance_name, database_name or scope, key).\",\n ),\n};\n\n/**\n * Adds the cycle/dangling-reference cross-field check to a resource variant.\n * Iterates the resource's `fields`, validates each `discovery.dependsOn` target\n * is a sibling field name, then runs DFS over the dependsOn graph to detect\n * cycles. Issue paths target either the offending field's `dependsOn` slot or\n * the resource itself for cycles.\n */\nfunction refineResourceDependsOn(\n resource: { fields?: Record<string, { discovery?: { dependsOn?: string } }> },\n ctx: z.core.$RefinementCtx,\n): void {\n if (!resource.fields) return;\n const fieldNames = new Set(Object.keys(resource.fields));\n\n // Pass 1: validate dependsOn references and build the dependency graph.\n const deps = new Map<string, string>();\n for (const [name, field] of Object.entries(resource.fields)) {\n const dep = field.discovery?.dependsOn;\n if (!dep) continue;\n if (!fieldNames.has(dep)) {\n ctx.addIssue({\n code: \"custom\",\n path: [\"fields\", name, \"discovery\", \"dependsOn\"],\n message: `references non-existent sibling field '${dep}'`,\n });\n }\n deps.set(name, dep);\n }\n\n // Pass 2: detect cycles via DFS. Emit one issue per cycle found.\n const visited = new Set<string>();\n const visiting = new Set<string>();\n\n function dfs(node: string, chain: string[]): string[] | null {\n if (visiting.has(node)) return [...chain, node];\n if (visited.has(node)) return null;\n visiting.add(node);\n const next = deps.get(node);\n if (next) {\n const cycle = dfs(next, [...chain, node]);\n if (cycle) return cycle;\n }\n visiting.delete(node);\n visited.add(node);\n return null;\n }\n\n for (const node of deps.keys()) {\n if (visited.has(node)) continue;\n const cycle = dfs(node, []);\n if (cycle) {\n ctx.addIssue({\n code: \"custom\",\n path: [],\n message: `discovery.dependsOn creates a cycle: ${cycle.join(\" → \")}`,\n });\n // One cycle error per resource is enough.\n break;\n }\n }\n}\n\nfunction makeResourceVariant<\n TType extends z.ZodLiteral<string>,\n TPerm extends z.ZodTypeAny,\n>(typeLiteral: TType, permission: TPerm) {\n return z\n .object({\n type: typeLiteral,\n ...resourceRequirementBaseShape,\n permission: permission.describe(\n \"Required permission level. Validated per resource type.\",\n ),\n })\n .strict()\n .superRefine(refineResourceDependsOn);\n}\n\nexport const resourceRequirementSchema = z\n .discriminatedUnion(\"type\", [\n makeResourceVariant(z.literal(\"secret\"), secretPermissionSchema),\n makeResourceVariant(z.literal(\"job\"), jobPermissionSchema),\n makeResourceVariant(\n z.literal(\"sql_warehouse\"),\n sqlWarehousePermissionSchema,\n ),\n makeResourceVariant(\n z.literal(\"serving_endpoint\"),\n servingEndpointPermissionSchema,\n ),\n makeResourceVariant(z.literal(\"volume\"), volumePermissionSchema),\n makeResourceVariant(\n z.literal(\"vector_search_index\"),\n vectorSearchIndexPermissionSchema,\n ),\n makeResourceVariant(z.literal(\"uc_function\"), ucFunctionPermissionSchema),\n makeResourceVariant(\n z.literal(\"uc_connection\"),\n ucConnectionPermissionSchema,\n ),\n makeResourceVariant(z.literal(\"database\"), databasePermissionSchema),\n makeResourceVariant(z.literal(\"postgres\"), postgresPermissionSchema),\n makeResourceVariant(z.literal(\"genie_space\"), genieSpacePermissionSchema),\n makeResourceVariant(z.literal(\"experiment\"), experimentPermissionSchema),\n makeResourceVariant(z.literal(\"app\"), appPermissionSchema),\n ])\n .describe(\n \"Declares a resource requirement for a plugin. Can be defined statically in a manifest or dynamically via getResourceRequirements().\",\n );\n\n// ── Config schema (recursive) ────────────────────────────────────────────\n\nexport const configSchemaPropertySchema: z.ZodType = z.lazy(() =>\n z\n .object({\n type: z.enum([\n \"object\",\n \"array\",\n \"string\",\n \"number\",\n \"boolean\",\n \"integer\",\n ]),\n description: z.string().optional(),\n default: z.unknown().optional(),\n enum: z.array(z.unknown()).optional(),\n properties: z.record(z.string(), configSchemaPropertySchema).optional(),\n items: configSchemaPropertySchema.optional(),\n minimum: z.number().optional(),\n maximum: z.number().optional(),\n minLength: z.number().int().min(0).optional(),\n maxLength: z.number().int().min(0).optional(),\n required: z.array(z.string()).optional(),\n // `additionalProperties` is a standard JSON Schema keyword used by core\n // plugin manifests (e.g., serving, vector-search, genie) to constrain\n // dictionary-shaped properties. Allowed on nested property entries as\n // either a boolean or a sub-schema, mirroring JSON Schema semantics.\n additionalProperties: z\n .union([z.boolean(), configSchemaPropertySchema])\n .optional(),\n })\n .strict(),\n);\n\nexport const configSchemaSchema: z.ZodType = z.lazy(() =>\n z\n .object({\n type: z.enum([\"object\", \"array\", \"string\", \"number\", \"boolean\"]),\n properties: z.record(z.string(), configSchemaPropertySchema).optional(),\n items: configSchemaSchema.optional(),\n required: z.array(z.string()).optional(),\n additionalProperties: z.boolean().optional(),\n })\n .strict(),\n);\n\n// ── Plugin-level scaffolding rules ───────────────────────────────────────\n\n/**\n * Per-item upper bound on plugin-level scaffolding rule strings. Matches the\n * template-level `SCAFFOLDING_RULE_MAX_LENGTH` defined below — rules at both\n * levels are short directives, not prose. The literal value lives here (and\n * not by reference to the template-side constant) because this declaration\n * is read in source order and the template constant is declared later.\n */\nconst PLUGIN_SCAFFOLDING_RULE_MAX_LENGTH = 120;\n\nconst pluginScaffoldingRuleItemSchema = z\n .string()\n .min(1)\n .max(\n PLUGIN_SCAFFOLDING_RULE_MAX_LENGTH,\n `rule entries must be ≤ ${PLUGIN_SCAFFOLDING_RULE_MAX_LENGTH} chars`,\n );\n\nexport const pluginScaffoldingRulesSchema = z\n .object({\n must: z\n .array(pluginScaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must always perform.\"),\n should: z\n .array(pluginScaffoldingRuleItemSchema)\n .optional()\n .describe(\"Recommended actions for the scaffolding agent.\"),\n never: z\n .array(pluginScaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must never perform.\"),\n })\n .strict()\n .superRefine((rules, ctx) => {\n // (a) Reject duplicate entries within any single array.\n const buckets: Array<[\"must\" | \"should\" | \"never\", string[] | undefined]> =\n [\n [\"must\", rules.must],\n [\"should\", rules.should],\n [\"never\", rules.never],\n ];\n for (const [bucketName, items] of buckets) {\n if (!items) continue;\n const seen = new Map<string, number>();\n items.forEach((item, idx) => {\n const prev = seen.get(item);\n if (prev === undefined) {\n seen.set(item, idx);\n return;\n }\n ctx.addIssue({\n code: \"custom\",\n path: [bucketName, idx],\n message: `duplicate rule entry: \"${item}\" already declared at index ${prev}`,\n });\n });\n }\n // (b) Reject a string that appears in more than one of must/should/never.\n type Bucket = \"must\" | \"should\" | \"never\";\n const owner = new Map<string, Bucket>();\n for (const [bucketName, items] of buckets) {\n if (!items) continue;\n for (let i = 0; i < items.length; i++) {\n const item = items[i];\n const existing = owner.get(item);\n if (existing === undefined) {\n owner.set(item, bucketName);\n continue;\n }\n if (existing !== bucketName) {\n ctx.addIssue({\n code: \"custom\",\n path: [bucketName, i],\n message: `rule entry \"${item}\" appears in both '${existing}' and '${bucketName}'; rules must belong to exactly one bucket`,\n });\n }\n }\n }\n })\n .describe(\n \"Structured rules for scaffolding agents declared at the plugin level. Each rule is a short directive (≤120 chars).\",\n );\n\n// ── Plugin manifest (root) ───────────────────────────────────────────────\n\nexport const pluginManifestSchema = z\n .object({\n $schema: z\n .string()\n .optional()\n .describe(\"Reference to the JSON Schema for validation\"),\n name: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Plugin identifier. Must be lowercase, start with a letter, and contain only letters, numbers, and hyphens.\",\n ),\n displayName: z\n .string()\n .min(1)\n .describe(\"Human-readable display name for UI and CLI\"),\n description: z\n .string()\n .min(1)\n .describe(\"Brief description of what the plugin does\"),\n resources: z\n .object({\n required: z\n .array(resourceRequirementSchema)\n .describe(\n \"Resources that must be available for the plugin to function\",\n ),\n optional: z\n .array(resourceRequirementSchema)\n .describe(\n \"Resources that enhance functionality but are not mandatory\",\n ),\n })\n .strict()\n .describe(\"Databricks resource requirements for this plugin\"),\n config: z\n .object({\n schema: configSchemaSchema.optional(),\n })\n .strict()\n .optional()\n .describe(\"Configuration schema for the plugin\"),\n author: z.string().optional().describe(\"Author name or organization\"),\n version: z\n .string()\n .regex(/^\\d+\\.\\d+\\.\\d+(-[a-zA-Z0-9.]+)?$/)\n .optional()\n .describe(\"Plugin version (semver format)\"),\n repository: z\n .url()\n .optional()\n .describe(\"URL to the plugin's source repository\"),\n keywords: z\n .array(z.string())\n .optional()\n .describe(\"Keywords for plugin discovery\"),\n license: z.string().optional().describe(\"SPDX license identifier\"),\n onSetupMessage: z\n .string()\n .optional()\n .describe(\n \"Message displayed to the user after project initialization. Use this to inform about manual setup steps (e.g. environment variables, resource provisioning).\",\n ),\n hidden: z\n .boolean()\n .optional()\n .describe(\n \"When true, this plugin is excluded from the template plugins manifest (appkit.plugins.json) during sync.\",\n ),\n stability: z\n .enum([\"beta\", \"ga\"])\n .optional()\n .describe(\n \"Plugin stability level. Beta plugins may have breaking API changes between minor releases but are on a path to GA. GA (general availability) plugins follow semver strictly.\",\n ),\n scaffolding: z\n .object({\n rules: pluginScaffoldingRulesSchema\n .optional()\n .describe(\n \"Structured rules for scaffolding agents declared at the plugin level.\",\n ),\n })\n .strict()\n .optional()\n .describe(\n \"Plugin-level scaffolding metadata consumed by scaffolding agents. Symmetric with template-level `scaffolding`.\",\n ),\n })\n .strict()\n .describe(\n \"Schema for Databricks AppKit plugin manifest files. Defines plugin metadata, resource requirements, and configuration options.\",\n );\n\n// ── Origin enum ──────────────────────────────────────────────────────────\n\nexport const originSchema = z\n .enum([\"user\", \"platform\", \"static\", \"cli\"])\n .describe(\n \"How the field value is determined. Computed during sync, not authored by plugin developers.\",\n );\n\n// ── Template field entry (origin computed by transform) ─────────────────\n\n/**\n * Derives the canonical origin of a resource field value from its shape.\n *\n * - `localOnly: true` → `\"platform\"` (auto-injected by the Databricks Apps\n * platform at deploy time; takes precedence over `value`/`resolve`).\n * - `value !== undefined` → `\"static\"` (hardcoded value).\n * - `resolve !== undefined` → `\"cli\"` (resolved by the CLI during init).\n * - else → `\"user\"` (user must provide the value at init time).\n *\n * Co-located with `templateFieldEntrySchema` because the transform is the\n * only consumer. Kept private so any other \"origin computation\" goes\n * through the schema rather than re-implementing the rules.\n */\nfunction computeOriginFromField(field: {\n localOnly?: boolean;\n value?: string;\n resolve?: string;\n}): z.infer<typeof originSchema> {\n if (field.localOnly) return \"platform\";\n if (field.value !== undefined) return \"static\";\n if (field.resolve !== undefined) return \"cli\";\n return \"user\";\n}\n\n/**\n * Template field entry: extends the plugin manifest field entry with an\n * optional `origin` input slot, then runs a `.transform()` that overwrites\n * `origin` with the computed value. Allowing `origin` on input means\n * re-parsing a previously-synced template manifest does not fail; emitting\n * `origin` always means hand-edits in synced JSON are silently corrected\n * on the next parse — drift-by-construction.\n */\nexport const templateFieldEntrySchema = resourceFieldEntrySchema\n .extend({ origin: originSchema.optional() })\n .transform((field) => ({\n ...field,\n origin: computeOriginFromField(field),\n }));\n\n// ── Template resource requirement (uses templateFieldEntrySchema) ────────\n\nconst templateResourceRequirementBaseShape = {\n alias: z\n .string()\n .min(1)\n .describe(\"Human-readable label for UI/display only.\"),\n resourceKey: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Stable key for machine use: deduplication, env naming, composite keys.\",\n ),\n description: z\n .string()\n .min(1)\n .describe(\"Human-readable description of why this resource is needed\"),\n fields: z\n .record(z.string(), templateFieldEntrySchema)\n .refine((obj) => Object.keys(obj).length >= 1, {\n message: \"fields must contain at least one entry\",\n })\n .optional()\n .describe(\"Map of field name to field entry with computed origin.\"),\n};\n\nfunction makeTemplateResourceVariant<\n TType extends z.ZodLiteral<string>,\n TPerm extends z.ZodTypeAny,\n>(typeLiteral: TType, permission: TPerm) {\n return z\n .object({\n type: typeLiteral,\n ...templateResourceRequirementBaseShape,\n permission: permission.describe(\n \"Required permission level. Validated per resource type.\",\n ),\n })\n .strict()\n .superRefine(refineResourceDependsOn);\n}\n\nexport const templateResourceRequirementSchema = z\n .discriminatedUnion(\"type\", [\n makeTemplateResourceVariant(z.literal(\"secret\"), secretPermissionSchema),\n makeTemplateResourceVariant(z.literal(\"job\"), jobPermissionSchema),\n makeTemplateResourceVariant(\n z.literal(\"sql_warehouse\"),\n sqlWarehousePermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"serving_endpoint\"),\n servingEndpointPermissionSchema,\n ),\n makeTemplateResourceVariant(z.literal(\"volume\"), volumePermissionSchema),\n makeTemplateResourceVariant(\n z.literal(\"vector_search_index\"),\n vectorSearchIndexPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"uc_function\"),\n ucFunctionPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"uc_connection\"),\n ucConnectionPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"database\"),\n databasePermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"postgres\"),\n postgresPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"genie_space\"),\n genieSpacePermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"experiment\"),\n experimentPermissionSchema,\n ),\n makeTemplateResourceVariant(z.literal(\"app\"), appPermissionSchema),\n ])\n .describe(\n \"Resource requirement with template-specific field entries (includes computed origin).\",\n );\n\n// ── Template plugin (extends plugin manifest) ────────────────────────────\n\nexport const templatePluginSchema = z\n .object({\n name: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Plugin identifier. Must be lowercase, start with a letter, and contain only letters, numbers, and hyphens.\",\n ),\n displayName: z\n .string()\n .min(1)\n .describe(\"Human-readable display name for UI and CLI\"),\n description: z\n .string()\n .min(1)\n .describe(\"Brief description of what the plugin does\"),\n package: z\n .string()\n .min(1)\n .describe(\"NPM package name that provides this plugin\"),\n requiredByTemplate: z\n .boolean()\n .optional()\n .describe(\n \"When true, this plugin is required by the template and cannot be deselected during CLI init. The user will only be prompted to configure its resources. When absent or false, the plugin is optional and the user can choose whether to include it.\",\n ),\n onSetupMessage: z\n .string()\n .optional()\n .describe(\n \"Message displayed to the user after project initialization. Use this to inform about manual setup steps (e.g. environment variables, resource provisioning).\",\n ),\n stability: z\n .enum([\"beta\", \"ga\"])\n .optional()\n .describe(\n \"Plugin stability level. Beta is heading to GA; APIs may change between minor releases. GA (general availability) follows semver.\",\n ),\n scaffolding: z\n .object({\n rules: pluginScaffoldingRulesSchema\n .optional()\n .describe(\n \"Structured rules for scaffolding agents propagated from the plugin manifest.\",\n ),\n })\n .strict()\n .optional()\n .describe(\n \"Plugin-level scaffolding metadata propagated from the plugin manifest.\",\n ),\n resources: z\n .object({\n required: z\n .array(templateResourceRequirementSchema)\n .describe(\n \"Resources that must be available for the plugin to function\",\n ),\n optional: z\n .array(templateResourceRequirementSchema)\n .describe(\n \"Resources that enhance functionality but are not mandatory\",\n ),\n })\n .strict()\n .describe(\"Databricks resource requirements for this plugin\"),\n })\n .strict()\n .describe(\"Plugin manifest with package source information\");\n\n// ── Scaffolding descriptor ───────────────────────────────────────────────\n\nexport const scaffoldingFlagSchema = z\n .object({\n description: z.string().describe(\"Human-readable description of the flag.\"),\n required: z.boolean().optional().describe(\"Whether this flag is required.\"),\n pattern: z\n .string()\n .optional()\n .describe(\"Regex pattern for validating the flag value.\"),\n default: z.string().optional().describe(\"Default value for this flag.\"),\n })\n .strict()\n .describe(\"A flag for the scaffolding command.\");\n\n/**\n * Per-item upper bound on scaffolding rule strings. The intent is to enforce\n * \"short directive\" by contract — long paragraphs fail validation and force\n * authors to split prose into discrete actionable items.\n */\nconst SCAFFOLDING_RULE_MAX_LENGTH = 120;\n\nconst scaffoldingRuleItemSchema = z\n .string()\n .max(\n SCAFFOLDING_RULE_MAX_LENGTH,\n `rule item must be ≤ ${SCAFFOLDING_RULE_MAX_LENGTH} chars`,\n );\n\nexport const scaffoldingRulesSchema = z\n .object({\n never: z\n .array(scaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must never perform.\"),\n must: z\n .array(scaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must always perform.\"),\n should: z\n .array(scaffoldingRuleItemSchema)\n .optional()\n .describe(\n \"Recommended actions for the scaffolding agent (parity with plugin-level rules).\",\n ),\n })\n .strict()\n .describe(\"Structured rules for scaffolding agents.\");\n\nexport const scaffoldingDescriptorSchema = z\n .object({\n command: z\n .string()\n .describe(\"The scaffolding command (e.g., 'databricks apps init').\"),\n flags: z\n .record(z.string(), scaffoldingFlagSchema)\n .optional()\n .describe(\"Map of flag name to flag descriptor.\"),\n rules: scaffoldingRulesSchema\n .optional()\n .describe(\"Structured rules for scaffolding agents.\"),\n })\n .strict()\n .describe(\n \"Describes the scaffolding command, flags, and rules for project initialization.\",\n );\n\n/**\n * Canonical scaffolding descriptor for the `databricks apps init` command,\n * embedded in v2.0 template manifests to guide scaffolding agents.\n *\n * Co-located with `scaffoldingDescriptorSchema` so any change to the rule set\n * (or the schema's `maxLength` ceiling) shows up next to its consumer. The\n * `satisfies` annotation gives compile-time validation that the literal\n * matches the schema's input shape; if a `must`/`never` entry exceeds the\n * `maxLength` ceiling at runtime, `scaffoldingDescriptorSchema.parse` would\n * surface the breach in tests.\n */\nexport const TEMPLATE_SCAFFOLDING = {\n command: \"databricks apps init\",\n flags: {\n \"--name\": {\n description:\n \"Project name — sets {{.projectName}} in package.json, databricks.yml, and .env. Required for non-interactive scaffolding.\",\n required: true,\n pattern: \"^[a-z][a-z0-9-]*$\",\n },\n \"--template\": {\n description: \"Template path (local directory or GitHub URL)\",\n required: false,\n },\n \"--version\": {\n description: \"AppKit version to use; defaults to auto-detected\",\n required: false,\n },\n \"--features\": {\n description:\n \"Plugins to enable (comma-separated, no spaces; must match keys in this manifest's plugins map)\",\n required: false,\n pattern: \"^[a-zA-Z0-9_-]+(,[a-zA-Z0-9_-]+)*$\",\n },\n \"--set\": {\n description:\n \"Set resource values (format: plugin.resourceKey.field=value, repeatable)\",\n required: false,\n },\n \"--output-dir\": {\n description: \"Directory to write the project to\",\n required: false,\n },\n \"--description\": {\n description: \"App description\",\n required: false,\n },\n \"--run\": {\n description: \"Run the app after creation (none, dev, dev-remote)\",\n required: false,\n },\n \"--auto-approve\": {\n description:\n \"Pass as a bare flag (no value) to skip prompts for optional resources. Not recommended for agent-driven init — conflicts with the 'ask user when in doubt' rule.\",\n required: false,\n },\n \"--profile\": {\n description:\n \"Databricks CLI profile to use for authentication (global flag)\",\n required: false,\n },\n },\n rules: {\n must: [\n \"Keep all secrets and credentials only in app.yaml, databricks.yml, and/or .env\",\n ],\n should: [\"ask user when in doubt of resource to use for plugin\"],\n never: [\n \"guess resources when multiple or no options are available\",\n \"embed secrets in files that will go to the client-bundle\",\n ],\n },\n} satisfies z.infer<typeof scaffoldingDescriptorSchema>;\n\n// ── Template plugins manifest (root) ─────────────────────────────────────\n\nexport const templatePluginsManifestSchema = z\n .object({\n $schema: z\n .string()\n .optional()\n .describe(\"Reference to the JSON Schema for validation\"),\n version: z\n .enum([\"1.0\", \"1.1\", \"2.0\"])\n .describe(\"Schema version for the template plugins manifest\"),\n plugins: z\n .record(z.string(), templatePluginSchema)\n .describe(\"Map of plugin name to plugin manifest with package source\"),\n scaffolding: scaffoldingDescriptorSchema\n .optional()\n .describe(\n \"Describes the scaffolding command and its configuration for project initialization.\",\n ),\n })\n .strict()\n .superRefine((value, ctx) => {\n if (value.version === \"2.0\" && !value.scaffolding) {\n ctx.addIssue({\n code: \"custom\",\n path: [\"scaffolding\"],\n message: \"scaffolding is required when version is '2.0'\",\n });\n }\n })\n .describe(\n \"Aggregated plugin manifest for AppKit templates. Read by Databricks CLI during init to discover available plugins and their resource requirements.\",\n );\n\n// ── Inferred types ───────────────────────────────────────────────────────\n\nexport type ResourceType = z.infer<typeof resourceTypeSchema>;\nexport type SecretPermission = z.infer<typeof secretPermissionSchema>;\nexport type JobPermission = z.infer<typeof jobPermissionSchema>;\nexport type SqlWarehousePermission = z.infer<\n typeof sqlWarehousePermissionSchema\n>;\nexport type ServingEndpointPermission = z.infer<\n typeof servingEndpointPermissionSchema\n>;\nexport type VolumePermission = z.infer<typeof volumePermissionSchema>;\nexport type VectorSearchIndexPermission = z.infer<\n typeof vectorSearchIndexPermissionSchema\n>;\nexport type UcFunctionPermission = z.infer<typeof ucFunctionPermissionSchema>;\nexport type UcConnectionPermission = z.infer<\n typeof ucConnectionPermissionSchema\n>;\nexport type DatabasePermission = z.infer<typeof databasePermissionSchema>;\nexport type PostgresPermission = z.infer<typeof postgresPermissionSchema>;\nexport type GenieSpacePermission = z.infer<typeof genieSpacePermissionSchema>;\nexport type ExperimentPermission = z.infer<typeof experimentPermissionSchema>;\nexport type AppPermission = z.infer<typeof appPermissionSchema>;\nexport type ResourceKind = z.infer<typeof resourceKindSchema>;\nexport type KindDiscoveryDescriptor = z.infer<\n typeof kindDiscoveryDescriptorSchema\n>;\nexport type CliDiscoveryDescriptor = z.infer<\n typeof cliDiscoveryDescriptorSchema\n>;\nexport type DiscoveryDescriptor = z.infer<typeof discoveryDescriptorSchema>;\nexport type ResourceFieldEntry = z.infer<typeof resourceFieldEntrySchema>;\nexport type ResourceRequirement = z.infer<typeof resourceRequirementSchema>;\nexport type ConfigSchemaProperty = z.infer<typeof configSchemaPropertySchema>;\nexport type ConfigSchema = z.infer<typeof configSchemaSchema>;\nexport type PluginScaffoldingRules = z.infer<\n typeof pluginScaffoldingRulesSchema\n>;\nexport type PluginManifest = z.infer<typeof pluginManifestSchema>;\nexport type Origin = z.infer<typeof originSchema>;\n// Template-side types use `z.input` so callers can construct a TemplatePlugin\n// from a parsed PluginManifest before the field-level origin transform runs.\n// `writeManifest` parses every field through `templateFieldEntrySchema` at\n// write-time, so the on-disk shape always has origin populated. The runtime\n// invariant: origin is *always* present after sync writes; the type slot\n// stays optional so the in-memory pipeline does not need to fabricate origin\n// before assignment.\nexport type TemplateFieldEntry = z.input<typeof templateFieldEntrySchema>;\nexport type TemplateResourceRequirement = z.input<\n typeof templateResourceRequirementSchema\n>;\nexport type TemplatePlugin = z.input<typeof templatePluginSchema>;\nexport type ScaffoldingFlag = z.infer<typeof scaffoldingFlagSchema>;\nexport type ScaffoldingRules = z.infer<typeof scaffoldingRulesSchema>;\nexport type ScaffoldingDescriptor = z.infer<typeof scaffoldingDescriptorSchema>;\nexport type TemplatePluginsManifest = z.input<\n typeof templatePluginsManifestSchema\n>;\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"manifest.js","names":[],"sources":["../../src/schemas/manifest.ts"],"sourcesContent":["/**\n * Zod-authoring module for AppKit plugin manifest schemas.\n *\n * Single source of truth for the plugin manifest contract. JSON Schema\n * artifacts published at the docs URL are emitted from these schemas via\n * `tools/generate-json-schema.ts` and live only in `docs/static/schemas/`\n * (no package-internal copies).\n *\n * - Cross-field constraints (cycle/dangling-reference checks, `<PROFILE>`\n * placeholder, post-scaffold instruction non-empty) are refinements\n * co-located with the shape they constrain. Validation is driven through\n * the Standard Schema interface from `validate-manifest.ts`.\n * - `templateFieldEntrySchema` is a transform that emits `origin` from\n * `localOnly`/`value`/`resolve`. The input slot is still allowed so\n * re-parsing previously-synced template manifests does not fail, but the\n * transform always overwrites it — drift-by-construction for hand-edits.\n * - `discoveryDescriptorSchema` is a discriminated union over a `type`\n * literal. The `kind` variant references one of the well-known\n * `resourceKind` values for which AppKit owns the CLI command map (see\n * `RESOURCE_KIND_COMMANDS` below). The `cli` variant is the escape hatch\n * carrying the existing free-form fields (with the `<PROFILE>`\n * refinement). Hierarchical context for volumes (catalog/schema parent\n * walk) is encoded via the kind's `parents` array, not via dependsOn.\n * - Scaffolding rule items carry a `maxLength` (120 chars) so\n * `rules.never[]` / `rules.must[]` / `rules.should[]` stay short\n * directives by contract, and the canonical `TEMPLATE_SCAFFOLDING`\n * constant lives co-located with the scaffolding schemas (sync.ts\n * imports it).\n */\n\nimport { z } from \"zod\";\n\n// ── Resource type + per-type permission enums ────────────────────────────\n\nexport const resourceTypeSchema = z\n .enum([\n \"secret\",\n \"job\",\n \"sql_warehouse\",\n \"serving_endpoint\",\n \"volume\",\n \"vector_search_index\",\n \"uc_function\",\n \"uc_connection\",\n \"database\",\n \"postgres\",\n \"genie_space\",\n \"experiment\",\n \"app\",\n ])\n .describe(\"Type of Databricks resource\");\n\nexport const secretPermissionSchema = z\n .enum([\"READ\", \"WRITE\", \"MANAGE\"])\n .describe(\"Permission for secret resources (order: weakest to strongest)\");\n\nexport const jobPermissionSchema = z\n .enum([\"CAN_VIEW\", \"CAN_MANAGE_RUN\", \"CAN_MANAGE\"])\n .describe(\"Permission for job resources (order: weakest to strongest)\");\n\nexport const sqlWarehousePermissionSchema = z\n .enum([\"CAN_USE\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for SQL warehouse resources (order: weakest to strongest)\",\n );\n\nexport const servingEndpointPermissionSchema = z\n .enum([\"CAN_VIEW\", \"CAN_QUERY\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for serving endpoint resources (order: weakest to strongest)\",\n );\n\nexport const volumePermissionSchema = z\n .enum([\"READ_VOLUME\", \"WRITE_VOLUME\"])\n .describe(\"Permission for Unity Catalog volume resources\");\n\nexport const vectorSearchIndexPermissionSchema = z\n .enum([\"SELECT\"])\n .describe(\"Permission for vector search index resources\");\n\nexport const ucFunctionPermissionSchema = z\n .enum([\"EXECUTE\"])\n .describe(\"Permission for Unity Catalog function resources\");\n\nexport const ucConnectionPermissionSchema = z\n .enum([\"USE_CONNECTION\"])\n .describe(\"Permission for Unity Catalog connection resources\");\n\nexport const databasePermissionSchema = z\n .enum([\"CAN_CONNECT_AND_CREATE\"])\n .describe(\"Permission for database resources\");\n\nexport const postgresPermissionSchema = z\n .enum([\"CAN_CONNECT_AND_CREATE\"])\n .describe(\"Permission for Postgres resources\");\n\nexport const genieSpacePermissionSchema = z\n .enum([\"CAN_VIEW\", \"CAN_RUN\", \"CAN_EDIT\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for Genie Space resources (order: weakest to strongest)\",\n );\n\nexport const experimentPermissionSchema = z\n .enum([\"CAN_READ\", \"CAN_EDIT\", \"CAN_MANAGE\"])\n .describe(\n \"Permission for MLflow experiment resources (order: weakest to strongest)\",\n );\n\nexport const appPermissionSchema = z\n .enum([\"CAN_USE\"])\n .describe(\"Permission for Databricks App resources\");\n\n// ── Discovery descriptor (discriminated union) ───────────────────────────\n\n/**\n * Well-known Databricks resource kinds for which AppKit owns the CLI\n * command map. Plugins reference one of these via the `kind` variant of the\n * discovery descriptor; everything else falls back to the free-form `cli`\n * variant.\n *\n * Kept narrow on purpose: each entry costs an addition to\n * `RESOURCE_KIND_COMMANDS` below, which is the single source of truth for\n * how that kind is enumerated.\n */\nexport const resourceKindSchema = z\n .enum([\n \"warehouse\",\n \"genie_space\",\n \"postgres_project\",\n \"postgres_branch\",\n \"postgres_database\",\n \"volume\",\n ])\n .describe(\n \"Well-known Databricks resource kind whose listing command is owned by AppKit (see RESOURCE_KIND_COMMANDS).\",\n );\n\nexport const kindDiscoveryDescriptorSchema = z\n .object({\n type: z\n .literal(\"kind\")\n .describe(\n \"Discriminator: 'kind' uses the AppKit-owned command map for the named resourceKind.\",\n ),\n resourceKind: resourceKindSchema.describe(\n \"Reference to a well-known Databricks resource kind. AppKit owns the CLI command, response shape, and unwrap rules.\",\n ),\n select: z\n .string()\n .optional()\n .describe(\n \"Field name in the parsed CLI response used as the selected value (e.g., 'id'). Defaults to the kind's natural identifier when omitted.\",\n ),\n display: z\n .string()\n .optional()\n .describe(\n \"Field name in the parsed CLI response shown to the user in selection UI. Defaults to `select` if omitted.\",\n ),\n dependsOn: z\n .string()\n .optional()\n .describe(\n \"Name of a sibling field within the same resource that must be resolved first. Used to express ordering dependencies between resource fields.\",\n ),\n shortcut: z\n .string()\n .optional()\n .describe(\n \"Single-value fast-path command that returns exactly one value, skipping interactive selection.\",\n ),\n })\n .strict()\n .describe(\n \"Discovery via a well-known resource kind. AppKit owns the CLI command and unwrap rules for the named kind.\",\n );\n\n/**\n * Shell metacharacters rejected on free-form CLI command strings. Catches the\n * common foot-guns (statement separators, pipes, redirects via shell, command\n * substitution, newlines). Not a security boundary on its own — executors must\n * always pass these via argv, never shell-exec the string. Angle brackets are\n * permitted because `<PROFILE>` (and future `<…>` placeholders) are part of\n * the command-template convention.\n */\nconst SHELL_METACHAR_RE = /[;|&`$\\n\\r]/;\n\nexport const cliDiscoveryDescriptorSchema = z\n .object({\n type: z\n .literal(\"cli\")\n .describe(\n \"Discriminator: 'cli' uses a free-form Databricks CLI command supplied by the plugin.\",\n ),\n cliCommand: z\n .string()\n .describe(\n \"Databricks CLI command that lists resources. Must include <PROFILE>. Shell metacharacters (;|&`$ and newlines) are rejected; for first-party Databricks resources prefer the `kind` variant which uses AppKit's typed command map.\",\n ),\n selectField: z\n .string()\n .describe(\n \"jq-style path to the field used as the selected value (e.g., '.id', '.name').\",\n ),\n displayField: z\n .string()\n .optional()\n .describe(\n \"jq-style path to the field shown to the user in selection UI. Defaults to selectField if omitted.\",\n ),\n dependsOn: z\n .string()\n .optional()\n .describe(\n \"Name of a sibling field within the same resource that must be resolved first. Used to express ordering dependencies between resource fields.\",\n ),\n shortcut: z\n .string()\n .optional()\n .describe(\n \"Single-value fast-path command that returns exactly one value, skipping interactive selection. Shell metacharacters are rejected.\",\n ),\n })\n .strict()\n .refine((descriptor) => descriptor.cliCommand.includes(\"<PROFILE>\"), {\n message: \"must include <PROFILE> placeholder\",\n path: [\"cliCommand\"],\n })\n .refine((descriptor) => !SHELL_METACHAR_RE.test(descriptor.cliCommand), {\n message:\n \"must not contain shell metacharacters (;|&`$ or newlines); use the `kind` variant for typed Databricks resources\",\n path: [\"cliCommand\"],\n })\n .refine(\n (descriptor) =>\n descriptor.shortcut === undefined ||\n !SHELL_METACHAR_RE.test(descriptor.shortcut),\n {\n message: \"must not contain shell metacharacters (;|&`$ or newlines)\",\n path: [\"shortcut\"],\n },\n )\n .describe(\n \"Discovery via a free-form Databricks CLI command. Escape hatch — prefer the `kind` variant when a typed resourceKind covers the resource. This shape is intentionally minimal and may tighten further in future versions.\",\n );\n\nexport const discoveryDescriptorSchema = z\n .discriminatedUnion(\"type\", [\n kindDiscoveryDescriptorSchema,\n cliDiscoveryDescriptorSchema,\n ])\n .describe(\n \"Describes how the CLI discovers values for a resource field. 'kind' references a well-known Databricks resource kind whose command is owned by AppKit; 'cli' is the escape hatch carrying a free-form Databricks CLI command.\",\n );\n\n// ── Resource kind → CLI command map ──────────────────────────────────────\n\n/**\n * Descriptor for how a well-known resource kind is listed via the\n * Databricks CLI.\n *\n * - `command` is the CLI invocation template. It carries two kinds of\n * placeholders:\n * - `<PROFILE>` — substituted with the user's CLI profile by the runner.\n * - `{<fieldName>}` — substituted with the resolved value of the named\n * sibling field (used for `dependsOn` chains).\n * - `unwrap`, when set, is the JSON path into the response wrapper (e.g.,\n * `\"warehouses\"` for `{ warehouses: [...] }`). Omitted when the response\n * is already a flat array.\n * - `parents`, when set, lists transient query inputs the runner must\n * collect (as free-text prompts) before invoking the command. Each\n * `parents[i]` value substitutes the matching `{name}` placeholder in\n * the command string. Unlike `dependsOn` (which references a sibling\n * field on the same resource), `parents` covers inputs that aren't\n * persisted as fields on the resource.\n */\nexport type ResourceKindCommand = {\n command: string;\n unwrap?: string;\n parents?: readonly string[];\n};\n\n/**\n * Single source of truth for AppKit-owned discovery commands.\n *\n * To add a new resource kind: extend `resourceKindSchema` and add an entry\n * here. Plugins reference the kind via `discovery: { type: \"kind\",\n * resourceKind: \"...\" }` and inherit the command + response shape.\n *\n * `unwrap` defaults are unset: the existing core plugin manifests use simple\n * jq paths (`.id`, `.name`, `.full_name`), implying the listed CLI commands\n * return flat arrays. Refine in a follow-up if a kind's CLI returns wrapped\n * data.\n *\n * Volume's catalog/schema parent context is supplied via the `parents`\n * array, which the runner collects from the user as free-text prompts\n * before invoking the listing command.\n */\nexport const RESOURCE_KIND_COMMANDS: Record<\n z.infer<typeof resourceKindSchema>,\n { command: string; unwrap?: string; parents?: readonly string[] }\n> = {\n warehouse: {\n command: \"databricks warehouses list --profile <PROFILE> --output json\",\n },\n genie_space: {\n command: \"databricks genie list-spaces --profile <PROFILE> --output json\",\n },\n postgres_project: {\n command:\n \"databricks postgres list-projects --profile <PROFILE> --output json\",\n },\n postgres_branch: {\n // {project} is a placeholder for the resolved value of the `project`\n // sibling field (declared via `dependsOn: \"project\"` on the kind variant).\n // The Databricks CLI requires the parent project resource name (format\n // `projects/{project_id}`) as a positional argument.\n command:\n \"databricks postgres list-branches {project} --profile <PROFILE> --output json\",\n },\n postgres_database: {\n // {branch} is a placeholder for the resolved value of the `branch`\n // sibling field (declared via `dependsOn: \"branch\"` on the kind variant).\n command:\n \"databricks postgres list-databases {branch} --profile <PROFILE> --output json\",\n },\n volume: {\n // `parents` declares free-text user prompts the runner must collect before\n // invoking the discovery command. Each `parents[i]` value substitutes the\n // matching `{name}` placeholder in the command string above. Unlike\n // `dependsOn` (which references a sibling field on the same resource),\n // `parents` covers transient query inputs that aren't persisted as fields.\n command:\n \"databricks volumes list {catalog} {schema} --profile <PROFILE> --output json\",\n parents: [\"catalog\", \"schema\"] as const,\n },\n};\n\n// ── Resource field entry (plugin manifest variant) ───────────────────────\n\nexport const resourceFieldEntrySchema = z\n .object({\n env: z\n .string()\n .regex(/^[A-Z][A-Z0-9_]*$/)\n .optional()\n .describe(\"Environment variable name for this field\"),\n description: z\n .string()\n .optional()\n .describe(\"Human-readable description for this field\"),\n bundleIgnore: z\n .boolean()\n .optional()\n .describe(\n \"When true, this field is excluded from Databricks bundle configuration (databricks.yml) generation.\",\n ),\n examples: z\n .array(z.string())\n .optional()\n .describe(\"Example values showing the expected format for this field\"),\n localOnly: z\n .boolean()\n .optional()\n .describe(\n \"When true, this field is only generated for local .env files. The Databricks Apps platform auto-injects it at deploy time.\",\n ),\n value: z\n .string()\n .optional()\n .describe(\n \"Static value for this field. Used when no prompted or resolved value exists.\",\n ),\n resolve: z\n .string()\n .regex(/^[a-z_]+:[a-zA-Z]+$/)\n .optional()\n .describe(\n \"Named resolver prefixed by resource type (e.g., 'postgres:host'). The CLI resolves this value during the init prompt flow.\",\n ),\n discovery: discoveryDescriptorSchema.optional(),\n })\n .strict()\n .describe(\n \"Defines a single field for a resource. Each field has its own environment variable and optional description. Single-value types use one key (e.g. id); multi-value types (database, secret) use multiple (e.g. instance_name, database_name or scope, key).\",\n );\n\n// ── Resource requirement (per-type permission discriminator) ─────────────\n\n/**\n * Build a per-type variant. Each variant fixes `type` to a literal and constrains\n * `permission` to the matching enum, mirroring the existing JSON Schema's\n * `allOf + if/then` block. `fields` and the rest of the shape come from a\n * shared base.\n */\nconst resourceRequirementBaseShape = {\n alias: z\n .string()\n .min(1)\n .describe(\n \"Human-readable label for UI/display only. Deduplication uses resourceKey, not alias.\",\n ),\n resourceKey: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Stable key for machine use: deduplication, env naming, composite keys, app.yaml. Required for registry lookup.\",\n ),\n description: z\n .string()\n .min(1)\n .describe(\"Human-readable description of why this resource is needed\"),\n fields: z\n .record(z.string(), resourceFieldEntrySchema)\n .refine((obj) => Object.keys(obj).length >= 1, {\n message: \"fields must contain at least one entry\",\n })\n .optional()\n .describe(\n \"Map of field name to env and optional description. Single-value types use one key (e.g. id); multi-value (database, secret) use multiple (e.g. instance_name, database_name or scope, key).\",\n ),\n};\n\n/**\n * Adds the cycle/dangling-reference cross-field check to a resource variant.\n * Iterates the resource's `fields`, validates each `discovery.dependsOn` target\n * is a sibling field name, then runs DFS over the dependsOn graph to detect\n * cycles. Issue paths target either the offending field's `dependsOn` slot or\n * the resource itself for cycles.\n */\nfunction refineResourceDependsOn(\n resource: { fields?: Record<string, { discovery?: { dependsOn?: string } }> },\n ctx: z.core.$RefinementCtx,\n): void {\n if (!resource.fields) return;\n const fieldNames = new Set(Object.keys(resource.fields));\n\n // Pass 1: validate dependsOn references and build the dependency graph.\n const deps = new Map<string, string>();\n for (const [name, field] of Object.entries(resource.fields)) {\n const dep = field.discovery?.dependsOn;\n if (!dep) continue;\n if (!fieldNames.has(dep)) {\n ctx.addIssue({\n code: \"custom\",\n path: [\"fields\", name, \"discovery\", \"dependsOn\"],\n message: `references non-existent sibling field '${dep}'`,\n });\n }\n deps.set(name, dep);\n }\n\n // Pass 2: detect cycles via DFS. Emit one issue per cycle found.\n const visited = new Set<string>();\n const visiting = new Set<string>();\n\n function dfs(node: string, chain: string[]): string[] | null {\n if (visiting.has(node)) return [...chain, node];\n if (visited.has(node)) return null;\n visiting.add(node);\n const next = deps.get(node);\n if (next) {\n const cycle = dfs(next, [...chain, node]);\n if (cycle) return cycle;\n }\n visiting.delete(node);\n visited.add(node);\n return null;\n }\n\n for (const node of deps.keys()) {\n if (visited.has(node)) continue;\n const cycle = dfs(node, []);\n if (cycle) {\n ctx.addIssue({\n code: \"custom\",\n path: [],\n message: `discovery.dependsOn creates a cycle: ${cycle.join(\" → \")}`,\n });\n // One cycle error per resource is enough.\n break;\n }\n }\n}\n\nfunction makeResourceVariant<\n TType extends z.ZodLiteral<string>,\n TPerm extends z.ZodTypeAny,\n>(typeLiteral: TType, permission: TPerm) {\n return z\n .object({\n type: typeLiteral,\n ...resourceRequirementBaseShape,\n permission: permission.describe(\n \"Required permission level. Validated per resource type.\",\n ),\n })\n .strict()\n .superRefine(refineResourceDependsOn);\n}\n\nexport const resourceRequirementSchema = z\n .discriminatedUnion(\"type\", [\n makeResourceVariant(z.literal(\"secret\"), secretPermissionSchema),\n makeResourceVariant(z.literal(\"job\"), jobPermissionSchema),\n makeResourceVariant(\n z.literal(\"sql_warehouse\"),\n sqlWarehousePermissionSchema,\n ),\n makeResourceVariant(\n z.literal(\"serving_endpoint\"),\n servingEndpointPermissionSchema,\n ),\n makeResourceVariant(z.literal(\"volume\"), volumePermissionSchema),\n makeResourceVariant(\n z.literal(\"vector_search_index\"),\n vectorSearchIndexPermissionSchema,\n ),\n makeResourceVariant(z.literal(\"uc_function\"), ucFunctionPermissionSchema),\n makeResourceVariant(\n z.literal(\"uc_connection\"),\n ucConnectionPermissionSchema,\n ),\n makeResourceVariant(z.literal(\"database\"), databasePermissionSchema),\n makeResourceVariant(z.literal(\"postgres\"), postgresPermissionSchema),\n makeResourceVariant(z.literal(\"genie_space\"), genieSpacePermissionSchema),\n makeResourceVariant(z.literal(\"experiment\"), experimentPermissionSchema),\n makeResourceVariant(z.literal(\"app\"), appPermissionSchema),\n ])\n .describe(\n \"Declares a resource requirement for a plugin. Can be defined statically in a manifest or dynamically via getResourceRequirements().\",\n );\n\n// ── Config schema (recursive) ────────────────────────────────────────────\n\nexport const configSchemaPropertySchema: z.ZodType = z.lazy(() =>\n z\n .object({\n type: z.enum([\n \"object\",\n \"array\",\n \"string\",\n \"number\",\n \"boolean\",\n \"integer\",\n ]),\n description: z.string().optional(),\n default: z.unknown().optional(),\n enum: z.array(z.unknown()).optional(),\n properties: z.record(z.string(), configSchemaPropertySchema).optional(),\n items: configSchemaPropertySchema.optional(),\n minimum: z.number().optional(),\n maximum: z.number().optional(),\n minLength: z.number().int().min(0).optional(),\n maxLength: z.number().int().min(0).optional(),\n required: z.array(z.string()).optional(),\n // `additionalProperties` is a standard JSON Schema keyword used by core\n // plugin manifests (e.g., serving, vector-search, genie) to constrain\n // dictionary-shaped properties. Allowed on nested property entries as\n // either a boolean or a sub-schema, mirroring JSON Schema semantics.\n additionalProperties: z\n .union([z.boolean(), configSchemaPropertySchema])\n .optional(),\n })\n .strict(),\n);\n\nexport const configSchemaSchema: z.ZodType = z.lazy(() =>\n z\n .object({\n type: z.enum([\"object\", \"array\", \"string\", \"number\", \"boolean\"]),\n properties: z.record(z.string(), configSchemaPropertySchema).optional(),\n items: configSchemaSchema.optional(),\n required: z.array(z.string()).optional(),\n additionalProperties: z.boolean().optional(),\n })\n .strict(),\n);\n\n// ── Plugin-level scaffolding rules ───────────────────────────────────────\n\n/**\n * Per-item upper bound on plugin-level scaffolding rule strings. Matches the\n * template-level `SCAFFOLDING_RULE_MAX_LENGTH` defined below — rules at both\n * levels are short directives, not prose. The literal value lives here (and\n * not by reference to the template-side constant) because this declaration\n * is read in source order and the template constant is declared later.\n */\nconst PLUGIN_SCAFFOLDING_RULE_MAX_LENGTH = 120;\n\nconst pluginScaffoldingRuleItemSchema = z\n .string()\n .min(1)\n .max(\n PLUGIN_SCAFFOLDING_RULE_MAX_LENGTH,\n `rule entries must be ≤ ${PLUGIN_SCAFFOLDING_RULE_MAX_LENGTH} chars`,\n );\n\nexport const pluginScaffoldingRulesSchema = z\n .object({\n must: z\n .array(pluginScaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must always perform.\"),\n should: z\n .array(pluginScaffoldingRuleItemSchema)\n .optional()\n .describe(\"Recommended actions for the scaffolding agent.\"),\n never: z\n .array(pluginScaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must never perform.\"),\n })\n .strict()\n .superRefine((rules, ctx) => {\n // (a) Reject duplicate entries within any single array.\n const buckets: Array<[\"must\" | \"should\" | \"never\", string[] | undefined]> =\n [\n [\"must\", rules.must],\n [\"should\", rules.should],\n [\"never\", rules.never],\n ];\n for (const [bucketName, items] of buckets) {\n if (!items) continue;\n const seen = new Map<string, number>();\n items.forEach((item, idx) => {\n const prev = seen.get(item);\n if (prev === undefined) {\n seen.set(item, idx);\n return;\n }\n ctx.addIssue({\n code: \"custom\",\n path: [bucketName, idx],\n message: `duplicate rule entry: \"${item}\" already declared at index ${prev}`,\n });\n });\n }\n // (b) Reject a string that appears in more than one of must/should/never.\n type Bucket = \"must\" | \"should\" | \"never\";\n const owner = new Map<string, Bucket>();\n for (const [bucketName, items] of buckets) {\n if (!items) continue;\n for (let i = 0; i < items.length; i++) {\n const item = items[i];\n const existing = owner.get(item);\n if (existing === undefined) {\n owner.set(item, bucketName);\n continue;\n }\n if (existing !== bucketName) {\n ctx.addIssue({\n code: \"custom\",\n path: [bucketName, i],\n message: `rule entry \"${item}\" appears in both '${existing}' and '${bucketName}'; rules must belong to exactly one bucket`,\n });\n }\n }\n }\n })\n .describe(\n \"Structured rules for scaffolding agents declared at the plugin level. Each rule is a short directive (≤120 chars).\",\n );\n\n// ── Plugin manifest (root) ───────────────────────────────────────────────\n\nexport const pluginManifestSchema = z\n .object({\n $schema: z\n .string()\n .optional()\n .describe(\"Reference to the JSON Schema for validation\"),\n name: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Plugin identifier. Must be lowercase, start with a letter, and contain only letters, numbers, and hyphens.\",\n ),\n displayName: z\n .string()\n .min(1)\n .describe(\"Human-readable display name for UI and CLI\"),\n description: z\n .string()\n .min(1)\n .describe(\"Brief description of what the plugin does\"),\n resources: z\n .object({\n required: z\n .array(resourceRequirementSchema)\n .describe(\n \"Resources that must be available for the plugin to function\",\n ),\n optional: z\n .array(resourceRequirementSchema)\n .describe(\n \"Resources that enhance functionality but are not mandatory\",\n ),\n })\n .strict()\n .describe(\"Databricks resource requirements for this plugin\"),\n config: z\n .object({\n schema: configSchemaSchema.optional(),\n })\n .strict()\n .optional()\n .describe(\"Configuration schema for the plugin\"),\n author: z.string().optional().describe(\"Author name or organization\"),\n version: z\n .string()\n .regex(/^\\d+\\.\\d+\\.\\d+(-[a-zA-Z0-9.]+)?$/)\n .optional()\n .describe(\"Plugin version (semver format)\"),\n repository: z\n .url()\n .optional()\n .describe(\"URL to the plugin's source repository\"),\n keywords: z\n .array(z.string())\n .optional()\n .describe(\"Keywords for plugin discovery\"),\n license: z.string().optional().describe(\"SPDX license identifier\"),\n onSetupMessage: z\n .string()\n .optional()\n .describe(\n \"Message displayed to the user after project initialization. Use this to inform about manual setup steps (e.g. environment variables, resource provisioning).\",\n ),\n hidden: z\n .boolean()\n .optional()\n .describe(\n \"When true, this plugin is excluded from the template plugins manifest (appkit.plugins.json) during sync.\",\n ),\n stability: z\n .enum([\"beta\", \"ga\"])\n .optional()\n .describe(\n \"Plugin stability level. Beta plugins may have breaking API changes between minor releases but are on a path to GA. GA (general availability) plugins follow semver strictly.\",\n ),\n scaffolding: z\n .object({\n rules: pluginScaffoldingRulesSchema\n .optional()\n .describe(\n \"Structured rules for scaffolding agents declared at the plugin level.\",\n ),\n })\n .strict()\n .optional()\n .describe(\n \"Plugin-level scaffolding metadata consumed by scaffolding agents. Symmetric with template-level `scaffolding`.\",\n ),\n })\n .strict()\n .describe(\n \"Schema for Databricks AppKit plugin manifest files. Defines plugin metadata, resource requirements, and configuration options.\",\n );\n\n// ── Origin enum ──────────────────────────────────────────────────────────\n\nexport const originSchema = z\n .enum([\"user\", \"platform\", \"static\", \"cli\"])\n .describe(\n \"How the field value is determined. Computed during sync, not authored by plugin developers.\",\n );\n\n// ── Template field entry (origin computed by transform) ─────────────────\n\n/**\n * Derives the canonical origin of a resource field value from its shape.\n *\n * - `localOnly: true` → `\"platform\"` (auto-injected by the Databricks Apps\n * platform at deploy time; takes precedence over `value`/`resolve`).\n * - `value !== undefined` → `\"static\"` (hardcoded value).\n * - `resolve !== undefined` → `\"cli\"` (resolved by the CLI during init).\n * - else → `\"user\"` (user must provide the value at init time).\n *\n * Co-located with `templateFieldEntrySchema` because the transform is the\n * only consumer. Kept private so any other \"origin computation\" goes\n * through the schema rather than re-implementing the rules.\n */\nfunction computeOriginFromField(field: {\n localOnly?: boolean;\n value?: string;\n resolve?: string;\n}): z.infer<typeof originSchema> {\n if (field.localOnly) return \"platform\";\n if (field.value !== undefined) return \"static\";\n if (field.resolve !== undefined) return \"cli\";\n return \"user\";\n}\n\n/**\n * Template field entry: extends the plugin manifest field entry with an\n * optional `origin` input slot, then runs a `.transform()` that overwrites\n * `origin` with the computed value. Allowing `origin` on input means\n * re-parsing a previously-synced template manifest does not fail; emitting\n * `origin` always means hand-edits in synced JSON are silently corrected\n * on the next parse — drift-by-construction.\n */\nexport const templateFieldEntrySchema = resourceFieldEntrySchema\n .extend({ origin: originSchema.optional() })\n .transform((field) => ({\n ...field,\n origin: computeOriginFromField(field),\n }));\n\n// ── Template resource requirement (uses templateFieldEntrySchema) ────────\n\nconst templateResourceRequirementBaseShape = {\n alias: z\n .string()\n .min(1)\n .describe(\"Human-readable label for UI/display only.\"),\n resourceKey: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Stable key for machine use: deduplication, env naming, composite keys.\",\n ),\n description: z\n .string()\n .min(1)\n .describe(\"Human-readable description of why this resource is needed\"),\n fields: z\n .record(z.string(), templateFieldEntrySchema)\n .refine((obj) => Object.keys(obj).length >= 1, {\n message: \"fields must contain at least one entry\",\n })\n .optional()\n .describe(\"Map of field name to field entry with computed origin.\"),\n};\n\nfunction makeTemplateResourceVariant<\n TType extends z.ZodLiteral<string>,\n TPerm extends z.ZodTypeAny,\n>(typeLiteral: TType, permission: TPerm) {\n return z\n .object({\n type: typeLiteral,\n ...templateResourceRequirementBaseShape,\n permission: permission.describe(\n \"Required permission level. Validated per resource type.\",\n ),\n })\n .strict()\n .superRefine(refineResourceDependsOn);\n}\n\nexport const templateResourceRequirementSchema = z\n .discriminatedUnion(\"type\", [\n makeTemplateResourceVariant(z.literal(\"secret\"), secretPermissionSchema),\n makeTemplateResourceVariant(z.literal(\"job\"), jobPermissionSchema),\n makeTemplateResourceVariant(\n z.literal(\"sql_warehouse\"),\n sqlWarehousePermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"serving_endpoint\"),\n servingEndpointPermissionSchema,\n ),\n makeTemplateResourceVariant(z.literal(\"volume\"), volumePermissionSchema),\n makeTemplateResourceVariant(\n z.literal(\"vector_search_index\"),\n vectorSearchIndexPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"uc_function\"),\n ucFunctionPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"uc_connection\"),\n ucConnectionPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"database\"),\n databasePermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"postgres\"),\n postgresPermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"genie_space\"),\n genieSpacePermissionSchema,\n ),\n makeTemplateResourceVariant(\n z.literal(\"experiment\"),\n experimentPermissionSchema,\n ),\n makeTemplateResourceVariant(z.literal(\"app\"), appPermissionSchema),\n ])\n .describe(\n \"Resource requirement with template-specific field entries (includes computed origin).\",\n );\n\n// ── Template plugin (extends plugin manifest) ────────────────────────────\n\nexport const templatePluginSchema = z\n .object({\n name: z\n .string()\n .regex(/^[a-z][a-z0-9-]*$/)\n .describe(\n \"Plugin identifier. Must be lowercase, start with a letter, and contain only letters, numbers, and hyphens.\",\n ),\n displayName: z\n .string()\n .min(1)\n .describe(\"Human-readable display name for UI and CLI\"),\n description: z\n .string()\n .min(1)\n .describe(\"Brief description of what the plugin does\"),\n package: z\n .string()\n .min(1)\n .describe(\"NPM package name that provides this plugin\"),\n requiredByTemplate: z\n .boolean()\n .optional()\n .describe(\n \"When true, this plugin is required by the template and cannot be deselected during CLI init. The user will only be prompted to configure its resources. When absent or false, the plugin is optional and the user can choose whether to include it.\",\n ),\n onSetupMessage: z\n .string()\n .optional()\n .describe(\n \"Message displayed to the user after project initialization. Use this to inform about manual setup steps (e.g. environment variables, resource provisioning).\",\n ),\n stability: z\n .enum([\"beta\", \"ga\"])\n .optional()\n .describe(\n \"Plugin stability level. Beta is heading to GA; APIs may change between minor releases. GA (general availability) follows semver.\",\n ),\n scaffolding: z\n .object({\n rules: pluginScaffoldingRulesSchema\n .optional()\n .describe(\n \"Structured rules for scaffolding agents propagated from the plugin manifest.\",\n ),\n })\n .strict()\n .optional()\n .describe(\n \"Plugin-level scaffolding metadata propagated from the plugin manifest.\",\n ),\n resources: z\n .object({\n required: z\n .array(templateResourceRequirementSchema)\n .describe(\n \"Resources that must be available for the plugin to function\",\n ),\n optional: z\n .array(templateResourceRequirementSchema)\n .describe(\n \"Resources that enhance functionality but are not mandatory\",\n ),\n })\n .strict()\n .describe(\"Databricks resource requirements for this plugin\"),\n })\n .strict()\n .describe(\"Plugin manifest with package source information\");\n\n// ── Scaffolding descriptor ───────────────────────────────────────────────\n\nexport const scaffoldingFlagSchema = z\n .object({\n description: z.string().describe(\"Human-readable description of the flag.\"),\n required: z.boolean().optional().describe(\"Whether this flag is required.\"),\n pattern: z\n .string()\n .optional()\n .describe(\"Regex pattern for validating the flag value.\"),\n default: z.string().optional().describe(\"Default value for this flag.\"),\n })\n .strict()\n .describe(\"A flag for the scaffolding command.\");\n\n/**\n * Per-item upper bound on scaffolding rule strings. The intent is to enforce\n * \"short directive\" by contract — long paragraphs fail validation and force\n * authors to split prose into discrete actionable items.\n */\nconst SCAFFOLDING_RULE_MAX_LENGTH = 120;\n\nconst scaffoldingRuleItemSchema = z\n .string()\n .max(\n SCAFFOLDING_RULE_MAX_LENGTH,\n `rule item must be ≤ ${SCAFFOLDING_RULE_MAX_LENGTH} chars`,\n );\n\nexport const scaffoldingRulesSchema = z\n .object({\n never: z\n .array(scaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must never perform.\"),\n must: z\n .array(scaffoldingRuleItemSchema)\n .optional()\n .describe(\"Actions the scaffolding agent must always perform.\"),\n should: z\n .array(scaffoldingRuleItemSchema)\n .optional()\n .describe(\n \"Recommended actions for the scaffolding agent (parity with plugin-level rules).\",\n ),\n })\n .strict()\n .describe(\"Structured rules for scaffolding agents.\");\n\nexport const scaffoldingDescriptorSchema = z\n .object({\n command: z\n .string()\n .describe(\"The scaffolding command (e.g., 'databricks apps init').\"),\n flags: z\n .record(z.string(), scaffoldingFlagSchema)\n .optional()\n .describe(\"Map of flag name to flag descriptor.\"),\n rules: scaffoldingRulesSchema\n .optional()\n .describe(\"Structured rules for scaffolding agents.\"),\n })\n .strict()\n .describe(\n \"Describes the scaffolding command, flags, and rules for project initialization.\",\n );\n\n/**\n * Canonical scaffolding descriptor for the `databricks apps init` command,\n * embedded in v2.0 template manifests to guide scaffolding agents.\n *\n * Co-located with `scaffoldingDescriptorSchema` so any change to the rule set\n * (or the schema's `maxLength` ceiling) shows up next to its consumer. The\n * `satisfies` annotation gives compile-time validation that the literal\n * matches the schema's input shape; if a `must`/`never` entry exceeds the\n * `maxLength` ceiling at runtime, `scaffoldingDescriptorSchema.parse` would\n * surface the breach in tests.\n */\nexport const TEMPLATE_SCAFFOLDING = {\n command: \"databricks apps init\",\n flags: {\n \"--name\": {\n description:\n \"Project name — sets {{.projectName}} in package.json, databricks.yml, and .env. Required for non-interactive scaffolding.\",\n required: true,\n pattern: \"^[a-z][a-z0-9-]*$\",\n },\n \"--template\": {\n description: \"Template path (local directory or GitHub URL)\",\n required: false,\n },\n \"--version\": {\n description: \"AppKit version to use; defaults to auto-detected\",\n required: false,\n },\n \"--features\": {\n description:\n \"Plugins to enable (comma-separated, no spaces; must match keys in this manifest's plugins map)\",\n required: false,\n pattern: \"^[a-zA-Z0-9_-]+(,[a-zA-Z0-9_-]+)*$\",\n },\n \"--set\": {\n description:\n \"Set resource values (format: plugin.resourceKey.field=value, repeatable)\",\n required: false,\n },\n \"--output-dir\": {\n description: \"Directory to write the project to\",\n required: false,\n },\n \"--description\": {\n description: \"App description\",\n required: false,\n },\n \"--run\": {\n description: \"Run the app after creation (none, dev, dev-remote)\",\n required: false,\n },\n \"--auto-approve\": {\n description:\n \"Pass as a bare flag (no value) to skip prompts for optional resources. Not recommended for agent-driven init — conflicts with the 'ask user when in doubt' rule.\",\n required: false,\n },\n \"--profile\": {\n description:\n \"Databricks CLI profile to use for authentication (global flag)\",\n required: false,\n },\n },\n rules: {\n must: [\n \"Treat `databricks apps init` output as starter code, not requirements; adapt or replace it to match the requested app\",\n \"Keep all secrets and credentials only in app.yaml, databricks.yml, and/or .env\",\n ],\n should: [\"ask user when in doubt of resource to use for plugin\"],\n never: [\n \"guess resources when multiple or no options are available\",\n \"embed secrets in files that will go to the client-bundle\",\n ],\n },\n} satisfies z.infer<typeof scaffoldingDescriptorSchema>;\n\n// ── Template plugins manifest (root) ─────────────────────────────────────\n\nexport const templatePluginsManifestSchema = z\n .object({\n $schema: z\n .string()\n .optional()\n .describe(\"Reference to the JSON Schema for validation\"),\n version: z\n .enum([\"1.0\", \"1.1\", \"2.0\"])\n .describe(\"Schema version for the template plugins manifest\"),\n plugins: z\n .record(z.string(), templatePluginSchema)\n .describe(\"Map of plugin name to plugin manifest with package source\"),\n scaffolding: scaffoldingDescriptorSchema\n .optional()\n .describe(\n \"Describes the scaffolding command and its configuration for project initialization.\",\n ),\n })\n .strict()\n .superRefine((value, ctx) => {\n if (value.version === \"2.0\" && !value.scaffolding) {\n ctx.addIssue({\n code: \"custom\",\n path: [\"scaffolding\"],\n message: \"scaffolding is required when version is '2.0'\",\n });\n }\n })\n .describe(\n \"Aggregated plugin manifest for AppKit templates. Read by Databricks CLI during init to discover available plugins and their resource requirements.\",\n );\n\n// ── Inferred types ───────────────────────────────────────────────────────\n\nexport type ResourceType = z.infer<typeof resourceTypeSchema>;\nexport type SecretPermission = z.infer<typeof secretPermissionSchema>;\nexport type JobPermission = z.infer<typeof jobPermissionSchema>;\nexport type SqlWarehousePermission = z.infer<\n typeof sqlWarehousePermissionSchema\n>;\nexport type ServingEndpointPermission = z.infer<\n typeof servingEndpointPermissionSchema\n>;\nexport type VolumePermission = z.infer<typeof volumePermissionSchema>;\nexport type VectorSearchIndexPermission = z.infer<\n typeof vectorSearchIndexPermissionSchema\n>;\nexport type UcFunctionPermission = z.infer<typeof ucFunctionPermissionSchema>;\nexport type UcConnectionPermission = z.infer<\n typeof ucConnectionPermissionSchema\n>;\nexport type DatabasePermission = z.infer<typeof databasePermissionSchema>;\nexport type PostgresPermission = z.infer<typeof postgresPermissionSchema>;\nexport type GenieSpacePermission = z.infer<typeof genieSpacePermissionSchema>;\nexport type ExperimentPermission = z.infer<typeof experimentPermissionSchema>;\nexport type AppPermission = z.infer<typeof appPermissionSchema>;\nexport type ResourceKind = z.infer<typeof resourceKindSchema>;\nexport type KindDiscoveryDescriptor = z.infer<\n typeof kindDiscoveryDescriptorSchema\n>;\nexport type CliDiscoveryDescriptor = z.infer<\n typeof cliDiscoveryDescriptorSchema\n>;\nexport type DiscoveryDescriptor = z.infer<typeof discoveryDescriptorSchema>;\nexport type ResourceFieldEntry = z.infer<typeof resourceFieldEntrySchema>;\nexport type ResourceRequirement = z.infer<typeof resourceRequirementSchema>;\nexport type ConfigSchemaProperty = z.infer<typeof configSchemaPropertySchema>;\nexport type ConfigSchema = z.infer<typeof configSchemaSchema>;\nexport type PluginScaffoldingRules = z.infer<\n typeof pluginScaffoldingRulesSchema\n>;\nexport type PluginManifest = z.infer<typeof pluginManifestSchema>;\nexport type Origin = z.infer<typeof originSchema>;\n// Template-side types use `z.input` so callers can construct a TemplatePlugin\n// from a parsed PluginManifest before the field-level origin transform runs.\n// `writeManifest` parses every field through `templateFieldEntrySchema` at\n// write-time, so the on-disk shape always has origin populated. The runtime\n// invariant: origin is *always* present after sync writes; the type slot\n// stays optional so the in-memory pipeline does not need to fabricate origin\n// before assignment.\nexport type TemplateFieldEntry = z.input<typeof templateFieldEntrySchema>;\nexport type TemplateResourceRequirement = z.input<\n typeof templateResourceRequirementSchema\n>;\nexport type TemplatePlugin = z.input<typeof templatePluginSchema>;\nexport type ScaffoldingFlag = z.infer<typeof scaffoldingFlagSchema>;\nexport type ScaffoldingRules = z.infer<typeof scaffoldingRulesSchema>;\nexport type ScaffoldingDescriptor = z.infer<typeof scaffoldingDescriptorSchema>;\nexport type TemplatePluginsManifest = z.input<\n typeof templatePluginsManifestSchema\n>;\n"],"mappings":"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"}
|
package/package.json
CHANGED
package/sbom.cdx.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"bomFormat":"CycloneDX","specVersion":"1.6","serialNumber":"urn:uuid:af60e1be-e7eb-4e46-b6c4-ecd6614a9a07","version":1,"metadata":{"timestamp":"2026-06-05T19:10:26Z","tools":{"components":[{"group":"@cyclonedx","name":"cdxgen","version":"12.1.2","purl":"pkg:npm/%40cyclonedx/cdxgen@12.1.2","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@12.1.2","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}]},"authors":[{"name":"OWASP Foundation"}],"lifecycles":[{"phase":"build"}],"component":{"name":"appkit-ui","group":"@databricks","version":"0.40.0","purl":"pkg:npm/%40databricks/appkit-ui@0.40.0","bom-ref":"pkg:npm/@databricks/appkit-ui@0.40.0","type":"application","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"externalReferences":[{"type":"vcs","url":"git+https://github.com/databricks/appkit.git"}]},"properties":[{"name":"cdx:bom:componentTypes","value":"npm"},{"name":"cdx:bom:componentNamespaces","value":"@radix-ui\\n@tanstack"},{"name":"cdx:bom:componentSrcFiles","value":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-label/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-popover/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-progress/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-select/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-separator/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-slider/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-slot/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-switch/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json\\npackages/appkit-ui/node_modules/@tanstack/react-table/package.json\\npackages/appkit-ui/node_modules/apache-arrow/package.json\\npackages/appkit-ui/node_modules/class-variance-authority/package.json\\npackages/appkit-ui/node_modules/clsx/package.json\\npackages/appkit-ui/node_modules/cmdk/package.json\\npackages/appkit-ui/node_modules/dompurify/package.json\\npackages/appkit-ui/node_modules/echarts-for-react/package.json\\npackages/appkit-ui/node_modules/echarts/package.json\\npackages/appkit-ui/node_modules/embla-carousel-react/package.json\\npackages/appkit-ui/node_modules/input-otp/package.json\\npackages/appkit-ui/node_modules/lucide-react/package.json\\npackages/appkit-ui/node_modules/marked/package.json\\npackages/appkit-ui/node_modules/next-themes/package.json\\npackages/appkit-ui/node_modules/react-day-picker/package.json\\npackages/appkit-ui/node_modules/react-hook-form/package.json\\npackages/appkit-ui/node_modules/react-resizable-panels/package.json\\npackages/appkit-ui/node_modules/react/package.json\\npackages/appkit-ui/node_modules/recharts/package.json\\npackages/appkit-ui/node_modules/shared/package.json\\npackages/appkit-ui/node_modules/sonner/package.json\\npackages/appkit-ui/node_modules/tailwind-merge/package.json\\npackages/appkit-ui/node_modules/vaul/package.json"}]},"components":[{"group":"@radix-ui","name":"react-accordion","version":"1.2.12","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-accordion@1.2.12","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-accordion@1.2.12","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-accordion"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json"}],"occurrences":[{"location":"dist/react/ui/accordion.js#4"},{"location":"tmp/dist/react/ui/accordion.js#4"},{"location":"src/react/ui/accordion.tsx#2"}]}},{"group":"@radix-ui","name":"react-alert-dialog","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-alert-dialog@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-alert-dialog@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-alert-dialog"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json"}],"occurrences":[{"location":"dist/react/ui/alert-dialog.js#5"},{"location":"tmp/dist/react/ui/alert-dialog.js#5"},{"location":"src/react/ui/alert-dialog.tsx#2"}]}},{"group":"@radix-ui","name":"react-aspect-ratio","version":"1.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-aspect-ratio@1.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-aspect-ratio@1.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-aspect-ratio"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json"}],"occurrences":[{"location":"dist/react/ui/aspect-ratio.js#4"},{"location":"tmp/dist/react/ui/aspect-ratio.js#4"},{"location":"src/react/ui/aspect-ratio.tsx#3"}]}},{"group":"@radix-ui","name":"react-avatar","version":"1.1.11","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-avatar@1.1.11","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-avatar@1.1.11","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-avatar"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json"}],"occurrences":[{"location":"dist/react/ui/avatar.js#3"},{"location":"tmp/dist/react/ui/avatar.js#3"},{"location":"src/react/ui/avatar.tsx#2"}]}},{"group":"@radix-ui","name":"react-checkbox","version":"1.3.3","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-checkbox@1.3.3","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-checkbox@1.3.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-checkbox"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json"}],"occurrences":[{"location":"dist/react/ui/checkbox.js#6"},{"location":"tmp/dist/react/ui/checkbox.js#6"},{"location":"src/react/ui/checkbox.tsx#4"}]}},{"group":"@radix-ui","name":"react-collapsible","version":"1.1.12","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-collapsible@1.1.12","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-collapsible@1.1.12","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-collapsible"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json"}],"occurrences":[{"location":"dist/react/ui/collapsible.js#2"},{"location":"tmp/dist/react/ui/collapsible.js#2"},{"location":"src/react/ui/collapsible.tsx#1"}]}},{"group":"@radix-ui","name":"react-context-menu","version":"2.2.16","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-context-menu@2.2.16","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-context-menu@2.2.16","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-context-menu"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json"}],"occurrences":[{"location":"dist/react/ui/context-menu.js#7"},{"location":"tmp/dist/react/ui/context-menu.js#7"},{"location":"src/react/ui/context-menu.tsx#4"}]}},{"group":"@radix-ui","name":"react-dialog","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-dialog@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-dialog@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-dialog"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json"}],"occurrences":[{"location":"dist/react/ui/dialog.js#5"},{"location":"dist/react/ui/sheet.js#5"},{"location":"tmp/dist/react/ui/dialog.js#5"},{"location":"tmp/dist/react/ui/sheet.js#5"},{"location":"src/react/ui/dialog.tsx#2"},{"location":"src/react/ui/sheet.tsx#2"}]}},{"group":"@radix-ui","name":"react-dropdown-menu","version":"2.1.16","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-dropdown-menu@2.1.16","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-dropdown-menu@2.1.16","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-dropdown-menu"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json"}],"occurrences":[{"location":"dist/react/ui/dropdown-menu.js#5"},{"location":"tmp/dist/react/ui/dropdown-menu.js#5"},{"location":"src/react/ui/dropdown-menu.tsx#2"}]}},{"group":"@radix-ui","name":"react-hover-card","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-hover-card@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-hover-card@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-hover-card"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json"}],"occurrences":[{"location":"dist/react/ui/hover-card.js#6"},{"location":"tmp/dist/react/ui/hover-card.js#6"},{"location":"src/react/ui/hover-card.tsx#4"}]}},{"group":"@radix-ui","name":"react-label","version":"2.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-label@2.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-label@2.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-label/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-label"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-label/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-label/package.json"}],"occurrences":[{"location":"dist/react/ui/label.js#5"},{"location":"tmp/dist/react/ui/label.js#5"},{"location":"src/react/ui/form.tsx#4"},{"location":"src/react/ui/label.tsx#4"}]}},{"group":"@radix-ui","name":"react-menubar","version":"1.1.16","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-menubar@1.1.16","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-menubar@1.1.16","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-menubar"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json"}],"occurrences":[{"location":"dist/react/ui/menubar.js#5"},{"location":"tmp/dist/react/ui/menubar.js#5"},{"location":"src/react/ui/menubar.tsx#2"}]}},{"group":"@radix-ui","name":"react-navigation-menu","version":"1.2.14","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-navigation-menu@1.2.14","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-navigation-menu@1.2.14","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-navigation-menu"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json"}],"occurrences":[{"location":"dist/react/ui/navigation-menu.js#5"},{"location":"tmp/dist/react/ui/navigation-menu.js#5"},{"location":"src/react/ui/navigation-menu.tsx#2"}]}},{"group":"@radix-ui","name":"react-popover","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-popover@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-popover@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-popover/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-popover"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-popover/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-popover/package.json"}],"occurrences":[{"location":"dist/react/ui/popover.js#6"},{"location":"tmp/dist/react/ui/popover.js#6"},{"location":"src/react/ui/popover.tsx#4"}]}},{"group":"@radix-ui","name":"react-progress","version":"1.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-progress@1.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-progress@1.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-progress/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-progress"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-progress/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-progress/package.json"}],"occurrences":[{"location":"dist/react/ui/progress.js#3"},{"location":"tmp/dist/react/ui/progress.js#3"},{"location":"src/react/ui/progress.tsx#2"}]}},{"group":"@radix-ui","name":"react-radio-group","version":"1.3.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-radio-group@1.3.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-radio-group@1.3.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-radio-group"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json"}],"occurrences":[{"location":"dist/react/ui/radio-group.js#6"},{"location":"tmp/dist/react/ui/radio-group.js#6"},{"location":"src/react/ui/radio-group.tsx#4"}]}},{"group":"@radix-ui","name":"react-scroll-area","version":"1.2.10","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-scroll-area@1.2.10","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-scroll-area@1.2.10","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-scroll-area"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json"}],"occurrences":[{"location":"dist/react/ui/scroll-area.js#5"},{"location":"tmp/dist/react/ui/scroll-area.js#5"},{"location":"src/react/ui/scroll-area.tsx#4"}]}},{"group":"@radix-ui","name":"react-select","version":"2.2.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-select@2.2.6","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-select@2.2.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-select/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-select"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-select/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-select/package.json"}],"occurrences":[{"location":"dist/react/ui/select.js#5"},{"location":"tmp/dist/react/ui/select.js#5"},{"location":"src/react/ui/select.tsx#2"}]}},{"group":"@radix-ui","name":"react-separator","version":"1.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-separator@1.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-separator@1.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-separator/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-separator"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-separator/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-separator/package.json"}],"occurrences":[{"location":"dist/react/ui/separator.js#5"},{"location":"tmp/dist/react/ui/separator.js#5"},{"location":"src/react/ui/separator.tsx#4"}]}},{"group":"@radix-ui","name":"react-slider","version":"1.3.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-slider@1.3.6","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-slider@1.3.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-slider/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-slider"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-slider/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-slider/package.json"}],"occurrences":[{"location":"dist/react/ui/slider.js#6"},{"location":"tmp/dist/react/ui/slider.js#6"},{"location":"src/react/ui/slider.tsx#4"}]}},{"group":"@radix-ui","name":"react-slot","version":"1.2.4","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-slot@1.2.4","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-slot@1.2.4","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-slot/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-slot,Slot,@radix-ui/react-slot/Slot"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-slot/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-slot/package.json"}],"occurrences":[{"location":"dist/react/ui/badge.js#3"},{"location":"dist/react/ui/breadcrumb.js#4"},{"location":"dist/react/ui/button-group.js#4"},{"location":"dist/react/ui/button.js#3"},{"location":"dist/react/ui/form.js#7"},{"location":"dist/react/ui/item.js#4"},{"location":"dist/react/ui/sidebar.js#14"},{"location":"tmp/dist/react/ui/badge.js#3"},{"location":"tmp/dist/react/ui/breadcrumb.js#4"},{"location":"tmp/dist/react/ui/button-group.js#4"},{"location":"tmp/dist/react/ui/button.js#3"},{"location":"tmp/dist/react/ui/form.js#7"},{"location":"tmp/dist/react/ui/item.js#4"},{"location":"tmp/dist/react/ui/sidebar.js#14"},{"location":"src/react/ui/badge.tsx#2"},{"location":"src/react/ui/breadcrumb.tsx#2"},{"location":"src/react/ui/button-group.tsx#1"},{"location":"src/react/ui/button.tsx#2"},{"location":"src/react/ui/form.tsx#5"},{"location":"src/react/ui/item.tsx#2"},{"location":"src/react/ui/sidebar.tsx#4"}]}},{"group":"@radix-ui","name":"react-switch","version":"1.2.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-switch@1.2.6","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-switch@1.2.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-switch/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-switch"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-switch/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-switch/package.json"}],"occurrences":[{"location":"dist/react/ui/switch.js#5"},{"location":"tmp/dist/react/ui/switch.js#5"},{"location":"src/react/ui/switch.tsx#4"}]}},{"group":"@radix-ui","name":"react-tabs","version":"1.1.13","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-tabs@1.1.13","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-tabs@1.1.13","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-tabs"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json"}],"occurrences":[{"location":"dist/react/ui/tabs.js#5"},{"location":"tmp/dist/react/ui/tabs.js#5"},{"location":"src/react/ui/tabs.tsx#4"}]}},{"group":"@radix-ui","name":"react-toggle-group","version":"1.1.11","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-toggle-group@1.1.11","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-toggle-group@1.1.11","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-toggle-group"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json"}],"occurrences":[{"location":"dist/react/ui/toggle-group.js#5"},{"location":"tmp/dist/react/ui/toggle-group.js#5"},{"location":"src/react/ui/toggle-group.tsx#2"}]}},{"group":"@radix-ui","name":"react-toggle","version":"1.1.10","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-toggle@1.1.10","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-toggle@1.1.10","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-toggle"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json"}],"occurrences":[{"location":"dist/react/ui/toggle.js#4"},{"location":"tmp/dist/react/ui/toggle.js#4"},{"location":"src/react/ui/toggle.tsx#2"}]}},{"group":"@radix-ui","name":"react-tooltip","version":"1.2.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-tooltip@1.2.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-tooltip@1.2.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-tooltip"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json"}],"occurrences":[{"location":"dist/react/ui/tooltip.js#6"},{"location":"tmp/dist/react/ui/tooltip.js#6"},{"location":"src/react/ui/tooltip.tsx#4"}]}},{"authors":[{"name":"Tanner Linsley"}],"group":"@tanstack","name":"react-table","version":"8.21.3","description":"Headless UI for building powerful tables & datagrids for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40tanstack/react-table@8.21.3","externalReferences":[{"type":"website","url":"https://tanstack.com/table"},{"type":"vcs","url":"https://github.com/TanStack/table.git"}],"type":"library","bom-ref":"pkg:npm/@tanstack/react-table@8.21.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@tanstack/react-table/package.json"},{"name":"ImportedModules","value":"@tanstack/react-table,flexRender,@tanstack/react-table/flexRender,getCoreRowModel,@tanstack/react-table/getCoreRowModel,getFilteredRowModel,@tanstack/react-table/getFilteredRowModel,getPaginationRowModel,@tanstack/react-table/getPaginationRowModel,getSortedRowModel,@tanstack/react-table/getSortedRowModel,useReactTable,@tanstack/react-table/useReactTable,RowSelectionState,@tanstack/react-table/RowSelectionState,Table,@tanstack/react-table/Table,Column,@tanstack/react-table/Column,ColumnFiltersState,@tanstack/react-table/ColumnFiltersState,@tanstack/react-table/Row,SortingState,@tanstack/react-table/SortingState,VisibilityState,@tanstack/react-table/VisibilityState"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@tanstack/react-table/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@tanstack/react-table/package.json"}],"occurrences":[{"location":"dist/react/table/data-table.js#10"},{"location":"dist/react/table/table-wrapper.js#12"},{"location":"tmp/dist/react/table/data-table.js#10"},{"location":"tmp/dist/react/table/table-wrapper.js#12"},{"location":"src/react/table/types.ts#1"},{"location":"src/react/table/data-table.tsx#1"},{"location":"src/react/table/table-wrapper.tsx#14"}]}},{"authors":[{"name":"Apache Software Foundation"}],"group":"","name":"apache-arrow","version":"21.1.0","description":"Apache Arrow columnar in-memory format","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/apache-arrow@21.1.0","externalReferences":[{"type":"website","url":"https://arrow.apache.org/js/"},{"type":"vcs","url":"git+https://github.com/apache/arrow-js.git"}],"type":"library","bom-ref":"pkg:npm/apache-arrow@21.1.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/apache-arrow/package.json"},{"name":"ImportedModules","value":"apache-arrow,Field,apache-arrow/Field,Table,apache-arrow/Table"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/apache-arrow/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/apache-arrow/package.json"}],"occurrences":[{"location":"src/js/arrow/arrow-client.ts#1"},{"location":"src/react/charts/normalize.ts#1"},{"location":"src/react/charts/types.ts#1"},{"location":"src/react/hooks/types.ts#1"},{"location":"src/react/hooks/use-chart-data.ts#1"}]}},{"authors":[{"name":"Joe Bell (https://joebell.co.uk)"}],"group":"","name":"class-variance-authority","version":"0.7.1","description":"Class Variance Authority 🧬","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/class-variance-authority@0.7.1","externalReferences":[{"type":"vcs","url":"https://github.com/joe-bell/cva#readme"}],"type":"library","bom-ref":"pkg:npm/class-variance-authority@0.7.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/class-variance-authority/package.json"},{"name":"ImportedModules","value":"class-variance-authority,class-variance-authority/cva,VariantProps,class-variance-authority/VariantProps"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/class-variance-authority/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/class-variance-authority/package.json"}],"occurrences":[{"location":"dist/react/ui/alert.js#3"},{"location":"dist/react/ui/badge.js#4"},{"location":"dist/react/ui/button-group.js#5"},{"location":"dist/react/ui/button.js#4"},{"location":"dist/react/ui/empty.js#3"},{"location":"dist/react/ui/field.js#6"},{"location":"dist/react/ui/input-group.js#8"},{"location":"dist/react/ui/item.js#5"},{"location":"dist/react/ui/navigation-menu.js#4"},{"location":"dist/react/ui/sidebar.js#15"},{"location":"dist/react/ui/toggle.js#3"},{"location":"tmp/dist/react/ui/alert.js#3"},{"location":"tmp/dist/react/ui/badge.js#4"},{"location":"tmp/dist/react/ui/button-group.js#5"},{"location":"tmp/dist/react/ui/button.js#4"},{"location":"tmp/dist/react/ui/empty.js#3"},{"location":"tmp/dist/react/ui/field.js#6"},{"location":"tmp/dist/react/ui/input-group.js#8"},{"location":"tmp/dist/react/ui/item.js#5"},{"location":"tmp/dist/react/ui/navigation-menu.js#4"},{"location":"tmp/dist/react/ui/sidebar.js#15"},{"location":"tmp/dist/react/ui/toggle.js#3"},{"location":"src/react/ui/alert.tsx#2"},{"location":"src/react/ui/badge.tsx#3"},{"location":"src/react/ui/button-group.tsx#2"},{"location":"src/react/ui/button.tsx#3"},{"location":"src/react/ui/empty.tsx#1"},{"location":"src/react/ui/field.tsx#2"},{"location":"src/react/ui/input-group.tsx#4"},{"location":"src/react/ui/item.tsx#3"},{"location":"src/react/ui/navigation-menu.tsx#3"},{"location":"src/react/ui/sidebar.tsx#5"},{"location":"src/react/ui/toggle-group.tsx#3"},{"location":"src/react/ui/toggle.tsx#3"}]}},{"authors":[{"name":"Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)"}],"group":"","name":"clsx","version":"2.1.1","description":"A tiny (239B) utility for constructing className strings conditionally.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/clsx@2.1.1","type":"library","bom-ref":"pkg:npm/clsx@2.1.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/clsx/package.json"},{"name":"ImportedModules","value":"clsx,clsx/clsx,ClassValue,clsx/ClassValue"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/clsx/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/clsx/package.json"}],"occurrences":[{"location":"dist/react/lib/utils.js#1"},{"location":"tmp/dist/react/lib/utils.js#1"},{"location":"src/react/lib/utils.ts#1"}]}},{"authors":[{"name":"Paco (https://github.com/pacocoursey)"}],"group":"","name":"cmdk","version":"1.1.1","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/cmdk@1.1.1","externalReferences":[{"type":"vcs","url":"https://github.com/pacocoursey/cmdk#readme"},{"type":"vcs","url":"git+https://github.com/pacocoursey/cmdk.git"}],"type":"library","bom-ref":"pkg:npm/cmdk@1.1.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/cmdk/package.json"},{"name":"ImportedModules","value":"cmdk,Command,cmdk/Command"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/cmdk/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/cmdk/package.json"}],"occurrences":[{"location":"dist/react/ui/command.js#5"},{"location":"tmp/dist/react/ui/command.js#5"},{"location":"src/react/ui/command.tsx#2"}]}},{"authors":[{"name":"Dr.-Ing. Mario Heiderich"},{"name":" Cure53 <mario@cure53.de> (https://cure53.de/)"}],"group":"","name":"dompurify","version":"3.3.3","description":"DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not.","scope":"required","licenses":[{"expression":"(MPL-2.0 OR Apache-2.0)"}],"purl":"pkg:npm/dompurify@3.3.3","externalReferences":[{"type":"vcs","url":"https://github.com/cure53/DOMPurify"},{"type":"vcs","url":"git://github.com/cure53/DOMPurify.git"}],"type":"library","bom-ref":"pkg:npm/dompurify@3.3.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/dompurify/package.json"},{"name":"ImportedModules","value":"dompurify"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/dompurify/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/dompurify/package.json"}],"occurrences":[{"location":"dist/react/genie/genie-chat-message.js#7"},{"location":"tmp/dist/react/genie/genie-chat-message.js#7"},{"location":"src/react/genie/genie-chat-message.tsx#1"}]},"tags":["security","web"]},{"authors":[{"name":"hustcc (http://github.com/hustcc)"}],"group":"","name":"echarts-for-react","version":"3.0.5","description":" Apache Echarts components for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/echarts-for-react@3.0.5","externalReferences":[{"type":"vcs","url":"https://github.com/hustcc/echarts-for-react"},{"type":"vcs","url":"https://github.com/hustcc/echarts-for-react.git"}],"type":"library","bom-ref":"pkg:npm/echarts-for-react@3.0.5","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/echarts-for-react/package.json"},{"name":"ImportedModules","value":"echarts-for-react"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/echarts-for-react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/echarts-for-react/package.json"}],"occurrences":[{"location":"dist/react/charts/base.js#4"},{"location":"tmp/dist/react/charts/base.js#4"},{"location":"src/react/charts/base.tsx#2"}]}},{"group":"","name":"echarts","version":"6.0.0","description":"Apache ECharts is a powerful, interactive charting and data visualization library for browser","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/echarts@6.0.0","externalReferences":[{"type":"website","url":"https://echarts.apache.org"},{"type":"vcs","url":"git+https://github.com/apache/echarts.git"}],"type":"library","bom-ref":"pkg:npm/echarts@6.0.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/echarts/package.json"},{"name":"ImportedModules","value":"echarts,ECharts,echarts/ECharts"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/echarts/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/echarts/package.json"}],"occurrences":[{"location":"src/react/charts/base.tsx#1"}]}},{"authors":[{"name":"David Jerleke"}],"group":"","name":"embla-carousel-react","version":"8.6.0","description":"A lightweight carousel library with fluid motion and great swipe precision","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/embla-carousel-react@8.6.0","externalReferences":[{"type":"website","url":"https://www.embla-carousel.com"},{"type":"vcs","url":"git+https://github.com/davidjerleke/embla-carousel"}],"type":"library","bom-ref":"pkg:npm/embla-carousel-react@8.6.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/embla-carousel-react/package.json"},{"name":"ImportedModules","value":"embla-carousel-react,UseEmblaCarouselType,embla-carousel-react/UseEmblaCarouselType"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/embla-carousel-react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/embla-carousel-react/package.json"}],"occurrences":[{"location":"dist/react/ui/carousel.js#6"},{"location":"tmp/dist/react/ui/carousel.js#6"},{"location":"src/react/ui/carousel.tsx#4"}]}},{"authors":[{"name":"Guilherme Rodz <g@rodz.dev>"}],"group":"","name":"input-otp","version":"1.4.2","description":"One-time password input component for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/input-otp@1.4.2","externalReferences":[{"type":"website","url":"https://input-otp.rodz.dev/"},{"type":"vcs","url":"git+https://github.com/guilhermerodz/input-otp.git"}],"type":"library","bom-ref":"pkg:npm/input-otp@1.4.2","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/input-otp/package.json"},{"name":"ImportedModules","value":"input-otp,OTPInput,input-otp/OTPInput,OTPInputContext,input-otp/OTPInputContext"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/input-otp/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/input-otp/package.json"}],"occurrences":[{"location":"dist/react/ui/input-otp.js#5"},{"location":"tmp/dist/react/ui/input-otp.js#5"},{"location":"src/react/ui/input-otp.tsx#2"}]}},{"authors":[{"name":"Eric Fennis"}],"group":"","name":"lucide-react","version":"0.554.0","description":"A Lucide icon library package for React applications.","scope":"required","licenses":[{"license":{"id":"ISC","url":"https://opensource.org/licenses/ISC"}}],"purl":"pkg:npm/lucide-react@0.554.0","externalReferences":[{"type":"website","url":"https://lucide.dev"},{"type":"vcs","url":"https://github.com/lucide-icons/lucide.git"}],"type":"library","bom-ref":"pkg:npm/lucide-react@0.554.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/lucide-react/package.json"},{"name":"ImportedModules","value":"lucide-react,Loader2Icon,lucide-react/Loader2Icon,AlertCircle,lucide-react/AlertCircle,ArrowLeft,lucide-react/ArrowLeft,FileIcon,lucide-react/FileIcon,ChevronRight,lucide-react/ChevronRight,FolderIcon,lucide-react/FolderIcon,Download,lucide-react/Download,Loader2,lucide-react/Loader2,Trash2,lucide-react/Trash2,FolderPlus,lucide-react/FolderPlus,lucide-react/X,BarChart3Icon,lucide-react/BarChart3Icon,ChevronDownIcon,lucide-react/ChevronDownIcon,ChevronDown,lucide-react/ChevronDown,ArrowUpDown,lucide-react/ArrowUpDown,MoreHorizontal,lucide-react/MoreHorizontal,ChevronLeftIcon,lucide-react/ChevronLeftIcon,ChevronRightIcon,lucide-react/ChevronRightIcon,ArrowRight,lucide-react/ArrowRight,CheckIcon,lucide-react/CheckIcon,SearchIcon,lucide-react/SearchIcon,CircleIcon,lucide-react/CircleIcon,XIcon,lucide-react/XIcon,MinusIcon,lucide-react/MinusIcon,MoreHorizontalIcon,lucide-react/MoreHorizontalIcon,GripVerticalIcon,lucide-react/GripVerticalIcon,ChevronUpIcon,lucide-react/ChevronUpIcon,PanelLeftIcon,lucide-react/PanelLeftIcon,CircleCheckIcon,lucide-react/CircleCheckIcon,InfoIcon,lucide-react/InfoIcon,OctagonXIcon,lucide-react/OctagonXIcon,TriangleAlertIcon,lucide-react/TriangleAlertIcon,LucideIcon,lucide-react/LucideIcon"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/lucide-react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/lucide-react/package.json"}],"occurrences":[{"location":"dist/react/charts/loading.js#2"},{"location":"dist/react/file-browser/directory-list.js#6"},{"location":"dist/react/file-browser/file-entry.js#4"},{"location":"dist/react/file-browser/file-preview-panel.js#6"},{"location":"dist/react/file-browser/new-folder-input.js#5"},{"location":"dist/react/genie/genie-query-visualization.js#12"},{"location":"dist/react/table/data-table.js#9"},{"location":"dist/react/table/table-wrapper.js#11"},{"location":"dist/react/ui/accordion.js#3"},{"location":"dist/react/ui/breadcrumb.js#3"},{"location":"dist/react/ui/calendar.js#7"},{"location":"dist/react/ui/carousel.js#5"},{"location":"dist/react/ui/checkbox.js#5"},{"location":"dist/react/ui/command.js#4"},{"location":"dist/react/ui/context-menu.js#6"},{"location":"dist/react/ui/dialog.js#4"},{"location":"dist/react/ui/dropdown-menu.js#4"},{"location":"dist/react/ui/input-otp.js#4"},{"location":"dist/react/ui/menubar.js#4"},{"location":"dist/react/ui/navigation-menu.js#3"},{"location":"dist/react/ui/pagination.js#4"},{"location":"dist/react/ui/radio-group.js#5"},{"location":"dist/react/ui/resizable.js#3"},{"location":"dist/react/ui/select.js#4"},{"location":"dist/react/ui/sheet.js#4"},{"location":"dist/react/ui/sidebar.js#13"},{"location":"dist/react/ui/sonner.js#2"},{"location":"dist/react/ui/spinner.js#3"},{"location":"tmp/dist/react/charts/loading.js#2"},{"location":"tmp/dist/react/file-browser/directory-list.js#6"},{"location":"tmp/dist/react/file-browser/file-entry.js#4"},{"location":"tmp/dist/react/file-browser/file-preview-panel.js#6"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#5"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#12"},{"location":"tmp/dist/react/table/data-table.js#9"},{"location":"tmp/dist/react/table/table-wrapper.js#11"},{"location":"tmp/dist/react/ui/accordion.js#3"},{"location":"tmp/dist/react/ui/breadcrumb.js#3"},{"location":"tmp/dist/react/ui/calendar.js#7"},{"location":"tmp/dist/react/ui/carousel.js#5"},{"location":"tmp/dist/react/ui/checkbox.js#5"},{"location":"tmp/dist/react/ui/command.js#4"},{"location":"tmp/dist/react/ui/context-menu.js#6"},{"location":"tmp/dist/react/ui/dialog.js#4"},{"location":"tmp/dist/react/ui/dropdown-menu.js#4"},{"location":"tmp/dist/react/ui/input-otp.js#4"},{"location":"tmp/dist/react/ui/menubar.js#4"},{"location":"tmp/dist/react/ui/navigation-menu.js#3"},{"location":"tmp/dist/react/ui/pagination.js#4"},{"location":"tmp/dist/react/ui/radio-group.js#5"},{"location":"tmp/dist/react/ui/resizable.js#3"},{"location":"tmp/dist/react/ui/select.js#4"},{"location":"tmp/dist/react/ui/sheet.js#4"},{"location":"tmp/dist/react/ui/sidebar.js#13"},{"location":"tmp/dist/react/ui/sonner.js#2"},{"location":"tmp/dist/react/ui/spinner.js#3"},{"location":"src/react/charts/loading.tsx#1"},{"location":"src/react/file-browser/directory-list.tsx#1"},{"location":"src/react/file-browser/file-entry.tsx#1"},{"location":"src/react/file-browser/file-preview-panel.tsx#1"},{"location":"src/react/file-browser/new-folder-input.tsx#1"},{"location":"src/react/genie/genie-query-visualization.tsx#1"},{"location":"src/react/resource-status-indicator.tsx#1"},{"location":"src/react/table/data-table.tsx#2"},{"location":"src/react/table/table-wrapper.tsx#15"},{"location":"src/react/ui/accordion.tsx#3"},{"location":"src/react/ui/breadcrumb.tsx#3"},{"location":"src/react/ui/calendar.tsx#9"},{"location":"src/react/ui/carousel.tsx#5"},{"location":"src/react/ui/checkbox.tsx#5"},{"location":"src/react/ui/command.tsx#3"},{"location":"src/react/ui/context-menu.tsx#5"},{"location":"src/react/ui/dialog.tsx#3"},{"location":"src/react/ui/dropdown-menu.tsx#3"},{"location":"src/react/ui/input-otp.tsx#3"},{"location":"src/react/ui/menubar.tsx#3"},{"location":"src/react/ui/navigation-menu.tsx#4"},{"location":"src/react/ui/pagination.tsx#6"},{"location":"src/react/ui/radio-group.tsx#5"},{"location":"src/react/ui/resizable.tsx#2"},{"location":"src/react/ui/select.tsx#3"},{"location":"src/react/ui/sheet.tsx#3"},{"location":"src/react/ui/sidebar.tsx#6"},{"location":"src/react/ui/sonner.tsx#8"},{"location":"src/react/ui/spinner.tsx#2"}]}},{"authors":[{"name":"Christopher Jeffrey"}],"group":"","name":"marked","version":"17.0.3","description":"A markdown parser built for speed","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/marked@17.0.3","externalReferences":[{"type":"website","url":"https://marked.js.org"},{"type":"vcs","url":"git://github.com/markedjs/marked.git"}],"type":"library","bom-ref":"pkg:npm/marked@17.0.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/marked/package.json"},{"name":"ImportedModules","value":"marked,marked/marked"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/marked/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/marked/package.json"}],"occurrences":[{"location":"dist/react/genie/genie-chat-message.js#8"},{"location":"tmp/dist/react/genie/genie-chat-message.js#8"},{"location":"src/react/genie/genie-chat-message.tsx#2"}]}},{"group":"","name":"next-themes","version":"0.4.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/next-themes@0.4.6","externalReferences":[{"type":"vcs","url":"https://github.com/pacocoursey/next-themes.git"}],"type":"framework","bom-ref":"pkg:npm/next-themes@0.4.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/next-themes/package.json"},{"name":"ImportedModules","value":"next-themes,useTheme,next-themes/useTheme"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/next-themes/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/next-themes/package.json"}],"occurrences":[{"location":"dist/react/ui/sonner.js#4"},{"location":"tmp/dist/react/ui/sonner.js#4"},{"location":"src/react/ui/sonner.tsx#9"}]},"tags":["framework"]},{"authors":[{"name":"Giampaolo Bellavite <io@gpbl.dev>"}],"group":"","name":"react-day-picker","version":"9.12.0","description":"Customizable Date Picker for React","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react-day-picker@9.12.0","externalReferences":[{"type":"website","url":"https://daypicker.dev"},{"type":"vcs","url":"https://github.com/gpbl/react-day-picker"}],"type":"framework","bom-ref":"pkg:npm/react-day-picker@9.12.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react-day-picker/package.json"},{"name":"ImportedModules","value":"react-day-picker,DayPicker,react-day-picker/DayPicker,getDefaultClassNames,react-day-picker/getDefaultClassNames,DayButton,react-day-picker/DayButton"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react-day-picker/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react-day-picker/package.json"}],"occurrences":[{"location":"dist/react/ui/calendar.js#8"},{"location":"tmp/dist/react/ui/calendar.js#8"},{"location":"src/react/ui/calendar.tsx#10"}]},"tags":["framework"]},{"authors":[{"name":"Beier(Bill) Luo <bluebill1049@hotmail.com>"}],"group":"","name":"react-hook-form","version":"7.68.0","description":"Performant, flexible and extensible forms library for React Hooks","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react-hook-form@7.68.0","externalReferences":[{"type":"website","url":"https://react-hook-form.com"},{"type":"vcs","url":"https://github.com/react-hook-form/react-hook-form"}],"type":"framework","bom-ref":"pkg:npm/react-hook-form@7.68.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react-hook-form/package.json"},{"name":"ImportedModules","value":"react-hook-form,Controller,react-hook-form/Controller,FormProvider,react-hook-form/FormProvider,useFormContext,react-hook-form/useFormContext,useFormState,react-hook-form/useFormState,ControllerProps,react-hook-form/ControllerProps,FieldPath,react-hook-form/FieldPath,FieldValues,react-hook-form/FieldValues"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react-hook-form/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react-hook-form/package.json"}],"occurrences":[{"location":"dist/react/ui/form.js#8"},{"location":"tmp/dist/react/ui/form.js#8"},{"location":"src/react/ui/form.tsx#14"}]},"tags":["framework"]},{"authors":[{"name":"Brian Vaughn <brian.david.vaughn@gmail.com>"}],"group":"","name":"react-resizable-panels","version":"3.0.6","description":"React components for resizable panel groups/layouts","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react-resizable-panels@3.0.6","externalReferences":[{"type":"vcs","url":"git+https://github.com/bvaughn/react-resizable-panels.git"}],"type":"framework","bom-ref":"pkg:npm/react-resizable-panels@3.0.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react-resizable-panels/package.json"},{"name":"ImportedModules","value":"react-resizable-panels"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react-resizable-panels/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react-resizable-panels/package.json"}],"occurrences":[{"location":"dist/react/ui/resizable.js#4"},{"location":"tmp/dist/react/ui/resizable.js#4"},{"location":"src/react/ui/resizable.tsx#3"}]},"tags":["framework"]},{"group":"","name":"react","version":"19.2.0","description":"React is a JavaScript library for building user interfaces.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react@19.2.0","externalReferences":[{"type":"website","url":"https://react.dev/"},{"type":"vcs","url":"https://github.com/facebook/react.git"}],"type":"framework","bom-ref":"pkg:npm/react@19.2.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react/package.json"},{"name":"ExportedModules","value":"react/charts/area,react/charts/bar,react/charts/heatmap,react/charts/line,react/charts/pie,react/charts/radar,react/charts/scatter,react/hooks/use-chart-data,react/charts/base,react/charts/create-chart,react/charts/loading,react/charts/wrapper,react/charts/normalize,react/charts/constants,react/charts/theme,react/charts/utils,react/charts/options,react/charts/types,react/lib/format,react/genie/genie-chart-inference,react/genie/genie-chat,react/genie/genie-chat-input,react/genie/genie-chat-message,react/genie/genie-chat-message-list,react/genie/genie-query-transform,react/genie/genie-query-visualization,react/genie/use-genie-chat,react/resource-status-indicator,react/hooks/types,react/hooks/use-agent-chat,react/hooks/use-analytics-query,react/hooks/use-mobile,react/hooks/use-plugin-config,react/hooks/use-resource-status,react/hooks/use-serving-invoke,react/hooks/use-serving-stream,DonutChart,pie/DonutChart,PieChart,pie/PieChart,UseChartDataOptions,.hooks/use-chart-data/UseChartDataOptions,UseChartDataResult,.hooks/use-chart-data/UseChartDataResult,useChartData,.hooks/use-chart-data/useChartData,use-chart-data/UseChartDataOptions,use-chart-data/UseChartDataResult,use-chart-data/useChartData,BaseChart,base/BaseChart,BaseChartProps,base/BaseChartProps,LoadingSkeleton,loading/LoadingSkeleton,ResourceWaitingPlaceholder,loading/ResourceWaitingPlaceholder,ChartWrapper,wrapper/ChartWrapper,ChartWrapperProps,wrapper/ChartWrapperProps,NormalizedHeatmapData,normalize/NormalizedHeatmapData,normalizeChartData,normalize/normalizeChartData,normalizeHeatmapData,normalize/normalizeHeatmapData,CHART_COLOR_VARS,constants/CHART_COLOR_VARS,CHART_COLOR_VARS_CATEGORICAL,constants/CHART_COLOR_VARS_CATEGORICAL,CHART_COLOR_VARS_DIVERGING,constants/CHART_COLOR_VARS_DIVERGING,CHART_COLOR_VARS_SEQUENTIAL,constants/CHART_COLOR_VARS_SEQUENTIAL,DATE_FIELD_PATTERNS,constants/DATE_FIELD_PATTERNS,FALLBACK_COLORS_CATEGORICAL,constants/FALLBACK_COLORS_CATEGORICAL,FALLBACK_COLORS_DIVERGING,constants/FALLBACK_COLORS_DIVERGING,FALLBACK_COLORS_SEQUENTIAL,constants/FALLBACK_COLORS_SEQUENTIAL,METADATA_DATE_PATTERNS,constants/METADATA_DATE_PATTERNS,NAME_FIELD_PATTERNS,constants/NAME_FIELD_PATTERNS,useAllThemeColors,theme/useAllThemeColors,useThemeColors,theme/useThemeColors,createTimeSeriesData,utils/createTimeSeriesData,formatLabel,utils/formatLabel,sortTimeSeriesAscending,utils/sortTimeSeriesAscending,toChartArray,utils/toChartArray,toChartValue,utils/toChartValue,truncateLabel,utils/truncateLabel,buildCartesianOption,options/buildCartesianOption,buildHeatmapOption,options/buildHeatmapOption,buildHorizontalBarOption,options/buildHorizontalBarOption,buildPieOption,options/buildPieOption,buildRadarOption,options/buildRadarOption,CartesianContext,options/CartesianContext,HeatmapContext,options/HeatmapContext,OptionBuilderContext,options/OptionBuilderContext,AreaChartProps,types/AreaChartProps,AreaChartSpecificProps,types/AreaChartSpecificProps,BarChartProps,types/BarChartProps,BarChartSpecificProps,types/BarChartSpecificProps,ChartBaseProps,types/ChartBaseProps,ChartColorPalette,types/ChartColorPalette,ChartData,types/ChartData,ChartType,types/ChartType,DataFormat,types/DataFormat,DataProps,types/DataProps,DonutChartProps,types/DonutChartProps,HeatmapChartProps,types/HeatmapChartProps,HeatmapChartSpecificProps,types/HeatmapChartSpecificProps,LineChartProps,types/LineChartProps,LineChartSpecificProps,types/LineChartSpecificProps,NormalizedChartData,types/NormalizedChartData,NormalizedChartDataBase,types/NormalizedChartDataBase,Orientation,types/Orientation,PieChartProps,types/PieChartProps,PieChartSpecificProps,types/PieChartSpecificProps,QueryProps,types/QueryProps,RadarChartProps,types/RadarChartProps,RadarChartSpecificProps,types/RadarChartSpecificProps,ScatterChartProps,types/ScatterChartProps,ScatterChartSpecificProps,types/ScatterChartSpecificProps,UnifiedChartProps,types/UnifiedChartProps,isArrowTable,types/isArrowTable,isDataProps,types/isDataProps,isQueryProps,types/isQueryProps,ChartInference,genie-chart-inference/ChartInference,getCompatibleChartTypes,genie-chart-inference/getCompatibleChartTypes,inferChartType,genie-chart-inference/inferChartType,ColumnCategory,genie-query-transform/ColumnCategory,GenieColumnMeta,genie-query-transform/GenieColumnMeta,TransformedGenieData,genie-query-transform/TransformedGenieData,transformGenieData,genie-query-transform/transformGenieData,ResourceKindRenderer,.resource-status-indicator/ResourceKindRenderer,ResourceStatusIndicator,.resource-status-indicator/ResourceStatusIndicator,ResourceStatusIndicatorProps,.resource-status-indicator/ResourceStatusIndicatorProps,ResourceStatusToasterOptions,.resource-status-indicator/ResourceStatusToasterOptions,useResourceStatusToaster,.resource-status-indicator/useResourceStatusToaster,AnalyticsFormat,types/AnalyticsFormat,InferResultByFormat,types/InferResultByFormat,InferRowType,types/InferRowType,InferServingChunk,types/InferServingChunk,InferServingRequest,types/InferServingRequest,InferServingResponse,types/InferServingResponse,PluginRegistry,types/PluginRegistry,QueryRegistry,types/QueryRegistry,ServingAlias,types/ServingAlias,ServingEndpointRegistry,types/ServingEndpointRegistry,TypedArrowTable,types/TypedArrowTable,UseAnalyticsQueryOptions,types/UseAnalyticsQueryOptions,UseAnalyticsQueryResult,types/UseAnalyticsQueryResult,WarehouseState,types/WarehouseState,WarehouseStatus,types/WarehouseStatus,AgentChatEvent,use-agent-chat/AgentChatEvent,UseAgentChatOptions,use-agent-chat/UseAgentChatOptions,UseAgentChatResult,use-agent-chat/UseAgentChatResult,useAgentChat,use-agent-chat/useAgentChat,AggregatedResourceStatus,use-resource-status/AggregatedResourceStatus,ResourceSeverity,use-resource-status/ResourceSeverity,ResourceStatus,use-resource-status/ResourceStatus,ResourceStatusFilter,use-resource-status/ResourceStatusFilter,ResourceStatusProvider,use-resource-status/ResourceStatusProvider,ResourceStatusProviderProps,use-resource-status/ResourceStatusProviderProps,useResourceStatus,use-resource-status/useResourceStatus,useResourceStatusPublisher,use-resource-status/useResourceStatusPublisher,UseServingInvokeOptions,use-serving-invoke/UseServingInvokeOptions,UseServingInvokeResult,use-serving-invoke/UseServingInvokeResult,useServingInvoke,use-serving-invoke/useServingInvoke,UseServingStreamOptions,use-serving-stream/UseServingStreamOptions,UseServingStreamResult,use-serving-stream/UseServingStreamResult,useServingStream,use-serving-stream/useServingStream"},{"name":"ImportedModules","value":"react,useCallback,react/useCallback,useMemo,react/useMemo,useRef,react/useRef,react/jsx-runtime,react/jsx-runtime/jsx,Component,react/Component,jsxs,react/jsx-runtime/jsxs,useEffect,react/useEffect,useState,react/useState,useLayoutEffect,react/useLayoutEffect,useId,react/useId,createContext,react/createContext,useContext,react/useContext,useSyncExternalStore,react/useSyncExternalStore,Fragment,react/jsx-runtime/Fragment,react/JSX,ReactNode,react/ReactNode,KeyboardEvent,react/KeyboardEvent"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react/package.json"}],"occurrences":[{"location":"dist/react/charts/base.js#5"},{"location":"dist/react/charts/base.js#6"},{"location":"dist/react/charts/chart-error-boundary.js#1"},{"location":"dist/react/charts/chart-error-boundary.js#2"},{"location":"dist/react/charts/create-chart.js#3"},{"location":"dist/react/charts/empty.js#1"},{"location":"dist/react/charts/error.js#1"},{"location":"dist/react/charts/loading.js#1"},{"location":"dist/react/charts/theme.js#2"},{"location":"dist/react/charts/wrapper.js#7"},{"location":"dist/react/file-browser/directory-list.js#5"},{"location":"dist/react/file-browser/file-breadcrumb.js#2"},{"location":"dist/react/file-browser/file-entry.js#3"},{"location":"dist/react/file-browser/file-preview-panel.js#5"},{"location":"dist/react/file-browser/new-folder-input.js#3"},{"location":"dist/react/file-browser/new-folder-input.js#4"},{"location":"dist/react/genie/genie-chat-input.js#3"},{"location":"dist/react/genie/genie-chat-input.js#4"},{"location":"dist/react/genie/genie-chat-message-list.js#7"},{"location":"dist/react/genie/genie-chat-message-list.js#8"},{"location":"dist/react/genie/genie-chat-message.js#5"},{"location":"dist/react/genie/genie-chat-message.js#6"},{"location":"dist/react/genie/genie-chat.js#6"},{"location":"dist/react/genie/genie-query-visualization.js#10"},{"location":"dist/react/genie/genie-query-visualization.js#11"},{"location":"dist/react/genie/use-genie-chat.js#4"},{"location":"dist/react/hooks/use-agent-chat.js#3"},{"location":"dist/react/hooks/use-analytics-query.js#6"},{"location":"dist/react/hooks/use-analytics-warehouse-status.js#2"},{"location":"dist/react/hooks/use-chart-data.js#2"},{"location":"dist/react/hooks/use-mobile.js#1"},{"location":"dist/react/hooks/use-query-hmr.js#1"},{"location":"dist/react/hooks/use-resource-status.js#1"},{"location":"dist/react/hooks/use-resource-status.js#2"},{"location":"dist/react/hooks/use-serving-invoke.js#2"},{"location":"dist/react/hooks/use-serving-stream.js#4"},{"location":"dist/react/portal-container-context.js#1"},{"location":"dist/react/portal-container-context.js#2"},{"location":"dist/react/resource-status-indicator.js#3"},{"location":"dist/react/resource-status-indicator.js#4"},{"location":"dist/react/table/data-table.js#8"},{"location":"dist/react/table/empty.js#1"},{"location":"dist/react/table/error.js#1"},{"location":"dist/react/table/loading.js#1"},{"location":"dist/react/table/table-wrapper.js#9"},{"location":"dist/react/table/table-wrapper.js#10"},{"location":"dist/react/ui/accordion.js#2"},{"location":"dist/react/ui/alert-dialog.js#4"},{"location":"dist/react/ui/alert.js#2"},{"location":"dist/react/ui/aspect-ratio.js#3"},{"location":"dist/react/ui/avatar.js#2"},{"location":"dist/react/ui/badge.js#2"},{"location":"dist/react/ui/breadcrumb.js#2"},{"location":"dist/react/ui/button-group.js#3"},{"location":"dist/react/ui/button.js#2"},{"location":"dist/react/ui/calendar.js#5"},{"location":"dist/react/ui/calendar.js#6"},{"location":"dist/react/ui/card.js#2"},{"location":"dist/react/ui/carousel.js#3"},{"location":"dist/react/ui/carousel.js#4"},{"location":"dist/react/ui/chart.js#4"},{"location":"dist/react/ui/chart.js#5"},{"location":"dist/react/ui/checkbox.js#4"},{"location":"dist/react/ui/collapsible.js#1"},{"location":"dist/react/ui/command.js#3"},{"location":"dist/react/ui/context-menu.js#5"},{"location":"dist/react/ui/dialog.js#3"},{"location":"dist/react/ui/drawer.js#5"},{"location":"dist/react/ui/dropdown-menu.js#3"},{"location":"dist/react/ui/empty.js#2"},{"location":"dist/react/ui/field.js#4"},{"location":"dist/react/ui/field.js#5"},{"location":"dist/react/ui/form.js#5"},{"location":"dist/react/ui/form.js#6"},{"location":"dist/react/ui/hover-card.js#5"},{"location":"dist/react/ui/input-group.js#7"},{"location":"dist/react/ui/input-otp.js#2"},{"location":"dist/react/ui/input-otp.js#3"},{"location":"dist/react/ui/input.js#2"},{"location":"dist/react/ui/item.js#3"},{"location":"dist/react/ui/kbd.js#2"},{"location":"dist/react/ui/label.js#4"},{"location":"dist/react/ui/menubar.js#3"},{"location":"dist/react/ui/navigation-menu.js#2"},{"location":"dist/react/ui/pagination.js#3"},{"location":"dist/react/ui/popover.js#5"},{"location":"dist/react/ui/progress.js#2"},{"location":"dist/react/ui/radio-group.js#4"},{"location":"dist/react/ui/resizable.js#2"},{"location":"dist/react/ui/scroll-area.js#4"},{"location":"dist/react/ui/select.js#3"},{"location":"dist/react/ui/separator.js#4"},{"location":"dist/react/ui/sheet.js#3"},{"location":"dist/react/ui/sidebar.js#11"},{"location":"dist/react/ui/sidebar.js#12"},{"location":"dist/react/ui/skeleton.js#2"},{"location":"dist/react/ui/slider.js#4"},{"location":"dist/react/ui/slider.js#5"},{"location":"dist/react/ui/sonner.js#1"},{"location":"dist/react/ui/spinner.js#2"},{"location":"dist/react/ui/switch.js#4"},{"location":"dist/react/ui/table.js#2"},{"location":"dist/react/ui/tabs.js#4"},{"location":"dist/react/ui/textarea.js#2"},{"location":"dist/react/ui/toggle-group.js#3"},{"location":"dist/react/ui/toggle-group.js#4"},{"location":"dist/react/ui/toggle.js#2"},{"location":"dist/react/ui/tooltip.js#5"},{"location":"tmp/dist/react/charts/base.js#5"},{"location":"tmp/dist/react/charts/base.js#6"},{"location":"tmp/dist/react/charts/chart-error-boundary.js#1"},{"location":"tmp/dist/react/charts/chart-error-boundary.js#2"},{"location":"tmp/dist/react/charts/create-chart.js#3"},{"location":"tmp/dist/react/charts/empty.js#1"},{"location":"tmp/dist/react/charts/error.js#1"},{"location":"tmp/dist/react/charts/loading.js#1"},{"location":"tmp/dist/react/charts/theme.js#2"},{"location":"tmp/dist/react/charts/wrapper.js#7"},{"location":"tmp/dist/react/file-browser/directory-list.js#5"},{"location":"tmp/dist/react/file-browser/file-breadcrumb.js#2"},{"location":"tmp/dist/react/file-browser/file-entry.js#3"},{"location":"tmp/dist/react/file-browser/file-preview-panel.js#5"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#3"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-input.js#3"},{"location":"tmp/dist/react/genie/genie-chat-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-message-list.js#7"},{"location":"tmp/dist/react/genie/genie-chat-message-list.js#8"},{"location":"tmp/dist/react/genie/genie-chat-message.js#5"},{"location":"tmp/dist/react/genie/genie-chat-message.js#6"},{"location":"tmp/dist/react/genie/genie-chat.js#6"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#10"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#11"},{"location":"tmp/dist/react/genie/use-genie-chat.js#4"},{"location":"tmp/dist/react/hooks/use-agent-chat.js#3"},{"location":"tmp/dist/react/hooks/use-analytics-query.js#6"},{"location":"tmp/dist/react/hooks/use-analytics-warehouse-status.js#2"},{"location":"tmp/dist/react/hooks/use-chart-data.js#2"},{"location":"tmp/dist/react/hooks/use-mobile.js#1"},{"location":"tmp/dist/react/hooks/use-query-hmr.js#1"},{"location":"tmp/dist/react/hooks/use-resource-status.js#1"},{"location":"tmp/dist/react/hooks/use-resource-status.js#2"},{"location":"tmp/dist/react/hooks/use-serving-invoke.js#2"},{"location":"tmp/dist/react/hooks/use-serving-stream.js#4"},{"location":"tmp/dist/react/portal-container-context.js#1"},{"location":"tmp/dist/react/portal-container-context.js#2"},{"location":"tmp/dist/react/resource-status-indicator.js#3"},{"location":"tmp/dist/react/resource-status-indicator.js#4"},{"location":"tmp/dist/react/table/data-table.js#8"},{"location":"tmp/dist/react/table/empty.js#1"},{"location":"tmp/dist/react/table/error.js#1"},{"location":"tmp/dist/react/table/loading.js#1"},{"location":"tmp/dist/react/table/table-wrapper.js#9"},{"location":"tmp/dist/react/table/table-wrapper.js#10"},{"location":"tmp/dist/react/ui/accordion.js#2"},{"location":"tmp/dist/react/ui/alert-dialog.js#4"},{"location":"tmp/dist/react/ui/alert.js#2"},{"location":"tmp/dist/react/ui/aspect-ratio.js#3"},{"location":"tmp/dist/react/ui/avatar.js#2"},{"location":"tmp/dist/react/ui/badge.js#2"},{"location":"tmp/dist/react/ui/breadcrumb.js#2"},{"location":"tmp/dist/react/ui/button-group.js#3"},{"location":"tmp/dist/react/ui/button.js#2"},{"location":"tmp/dist/react/ui/calendar.js#5"},{"location":"tmp/dist/react/ui/calendar.js#6"},{"location":"tmp/dist/react/ui/card.js#2"},{"location":"tmp/dist/react/ui/carousel.js#3"},{"location":"tmp/dist/react/ui/carousel.js#4"},{"location":"tmp/dist/react/ui/chart.js#4"},{"location":"tmp/dist/react/ui/chart.js#5"},{"location":"tmp/dist/react/ui/checkbox.js#4"},{"location":"tmp/dist/react/ui/collapsible.js#1"},{"location":"tmp/dist/react/ui/command.js#3"},{"location":"tmp/dist/react/ui/context-menu.js#5"},{"location":"tmp/dist/react/ui/dialog.js#3"},{"location":"tmp/dist/react/ui/drawer.js#5"},{"location":"tmp/dist/react/ui/dropdown-menu.js#3"},{"location":"tmp/dist/react/ui/empty.js#2"},{"location":"tmp/dist/react/ui/field.js#4"},{"location":"tmp/dist/react/ui/field.js#5"},{"location":"tmp/dist/react/ui/form.js#5"},{"location":"tmp/dist/react/ui/form.js#6"},{"location":"tmp/dist/react/ui/hover-card.js#5"},{"location":"tmp/dist/react/ui/input-group.js#7"},{"location":"tmp/dist/react/ui/input-otp.js#2"},{"location":"tmp/dist/react/ui/input-otp.js#3"},{"location":"tmp/dist/react/ui/input.js#2"},{"location":"tmp/dist/react/ui/item.js#3"},{"location":"tmp/dist/react/ui/kbd.js#2"},{"location":"tmp/dist/react/ui/label.js#4"},{"location":"tmp/dist/react/ui/menubar.js#3"},{"location":"tmp/dist/react/ui/navigation-menu.js#2"},{"location":"tmp/dist/react/ui/pagination.js#3"},{"location":"tmp/dist/react/ui/popover.js#5"},{"location":"tmp/dist/react/ui/progress.js#2"},{"location":"tmp/dist/react/ui/radio-group.js#4"},{"location":"tmp/dist/react/ui/resizable.js#2"},{"location":"tmp/dist/react/ui/scroll-area.js#4"},{"location":"tmp/dist/react/ui/select.js#3"},{"location":"tmp/dist/react/ui/separator.js#4"},{"location":"tmp/dist/react/ui/sheet.js#3"},{"location":"tmp/dist/react/ui/sidebar.js#11"},{"location":"tmp/dist/react/ui/sidebar.js#12"},{"location":"tmp/dist/react/ui/skeleton.js#2"},{"location":"tmp/dist/react/ui/slider.js#4"},{"location":"tmp/dist/react/ui/slider.js#5"},{"location":"tmp/dist/react/ui/sonner.js#1"},{"location":"tmp/dist/react/ui/spinner.js#2"},{"location":"tmp/dist/react/ui/switch.js#4"},{"location":"tmp/dist/react/ui/table.js#2"},{"location":"tmp/dist/react/ui/tabs.js#4"},{"location":"tmp/dist/react/ui/textarea.js#2"},{"location":"tmp/dist/react/ui/toggle-group.js#3"},{"location":"tmp/dist/react/ui/toggle-group.js#4"},{"location":"tmp/dist/react/ui/toggle.js#2"},{"location":"tmp/dist/react/ui/tooltip.js#5"},{"location":"src/react/charts/theme.ts#1"},{"location":"src/react/genie/use-genie-chat.ts#1"},{"location":"src/react/hooks/use-agent-chat.ts#1"},{"location":"src/react/hooks/use-analytics-query.ts#8"},{"location":"src/react/hooks/use-analytics-warehouse-status.ts#1"},{"location":"src/react/hooks/use-chart-data.ts#2"},{"location":"src/react/hooks/use-mobile.ts#1"},{"location":"src/react/hooks/use-query-hmr.ts#1"},{"location":"src/react/hooks/use-serving-invoke.ts#1"},{"location":"src/react/hooks/use-serving-stream.ts#1"},{"location":"src/react/charts/area/index.tsx#1"},{"location":"src/react/charts/bar/index.tsx#1"},{"location":"src/react/charts/base.tsx#3"},{"location":"src/react/charts/chart-error-boundary.tsx#1"},{"location":"src/react/charts/heatmap/index.tsx#1"},{"location":"src/react/charts/line/index.tsx#1"},{"location":"src/react/charts/pie/index.tsx#1"},{"location":"src/react/charts/radar/index.tsx#1"},{"location":"src/react/charts/scatter/index.tsx#1"},{"location":"src/react/charts/wrapper.tsx#1"},{"location":"src/react/file-browser/new-folder-input.tsx#2"},{"location":"src/react/genie/genie-chat-input.tsx#1"},{"location":"src/react/genie/genie-chat-message-list.tsx#1"},{"location":"src/react/genie/genie-chat-message.tsx#3"},{"location":"src/react/genie/genie-query-visualization.tsx#2"},{"location":"src/react/hooks/use-resource-status.tsx#9"},{"location":"src/react/portal-container-context.tsx#1"},{"location":"src/react/portal-container-context.tsx#2"},{"location":"src/react/resource-status-indicator.tsx#2"},{"location":"src/react/table/table-wrapper.tsx#16"},{"location":"src/react/ui/accordion.tsx#1"},{"location":"src/react/ui/alert-dialog.tsx#1"},{"location":"src/react/ui/alert.tsx#1"},{"location":"src/react/ui/avatar.tsx#1"},{"location":"src/react/ui/badge.tsx#1"},{"location":"src/react/ui/breadcrumb.tsx#1"},{"location":"src/react/ui/button.tsx#1"},{"location":"src/react/ui/calendar.tsx#4"},{"location":"src/react/ui/card.tsx#1"},{"location":"src/react/ui/carousel.tsx#1"},{"location":"src/react/ui/chart.tsx#3"},{"location":"src/react/ui/checkbox.tsx#3"},{"location":"src/react/ui/command.tsx#1"},{"location":"src/react/ui/context-menu.tsx#3"},{"location":"src/react/ui/dialog.tsx#1"},{"location":"src/react/ui/drawer.tsx#3"},{"location":"src/react/ui/dropdown-menu.tsx#1"},{"location":"src/react/ui/field.tsx#1"},{"location":"src/react/ui/form.tsx#3"},{"location":"src/react/ui/hover-card.tsx#3"},{"location":"src/react/ui/input-group.tsx#3"},{"location":"src/react/ui/input-otp.tsx#1"},{"location":"src/react/ui/input.tsx#1"},{"location":"src/react/ui/item.tsx#1"},{"location":"src/react/ui/label.tsx#3"},{"location":"src/react/ui/menubar.tsx#1"},{"location":"src/react/ui/navigation-menu.tsx#1"},{"location":"src/react/ui/pagination.tsx#1"},{"location":"src/react/ui/popover.tsx#3"},{"location":"src/react/ui/progress.tsx#1"},{"location":"src/react/ui/radio-group.tsx#3"},{"location":"src/react/ui/resizable.tsx#1"},{"location":"src/react/ui/scroll-area.tsx#3"},{"location":"src/react/ui/select.tsx#1"},{"location":"src/react/ui/separator.tsx#3"},{"location":"src/react/ui/sheet.tsx#1"},{"location":"src/react/ui/sidebar.tsx#3"},{"location":"src/react/ui/slider.tsx#3"},{"location":"src/react/ui/switch.tsx#3"},{"location":"src/react/ui/table.tsx#1"},{"location":"src/react/ui/tabs.tsx#3"},{"location":"src/react/ui/textarea.tsx#1"},{"location":"src/react/ui/toggle-group.tsx#1"},{"location":"src/react/ui/toggle.tsx#1"},{"location":"src/react/ui/tooltip.tsx#3"},{"location":"dist/react/charts/base.js#6"},{"location":"dist/react/charts/chart-error-boundary.js#2"},{"location":"dist/react/charts/create-chart.js#3"},{"location":"dist/react/charts/empty.js#1"},{"location":"dist/react/charts/error.js#1"},{"location":"dist/react/charts/loading.js#1"},{"location":"dist/react/charts/wrapper.js#7"},{"location":"dist/react/file-browser/directory-list.js#5"},{"location":"dist/react/file-browser/file-breadcrumb.js#2"},{"location":"dist/react/file-browser/file-entry.js#3"},{"location":"dist/react/file-browser/file-preview-panel.js#5"},{"location":"dist/react/file-browser/new-folder-input.js#4"},{"location":"dist/react/genie/genie-chat-input.js#4"},{"location":"dist/react/genie/genie-chat-message-list.js#8"},{"location":"dist/react/genie/genie-chat-message.js#6"},{"location":"dist/react/genie/genie-chat.js#6"},{"location":"dist/react/genie/genie-query-visualization.js#11"},{"location":"dist/react/hooks/use-resource-status.js#2"},{"location":"dist/react/portal-container-context.js#2"},{"location":"dist/react/resource-status-indicator.js#4"},{"location":"dist/react/table/data-table.js#8"},{"location":"dist/react/table/empty.js#1"},{"location":"dist/react/table/error.js#1"},{"location":"dist/react/table/loading.js#1"},{"location":"dist/react/table/table-wrapper.js#10"},{"location":"dist/react/ui/accordion.js#2"},{"location":"dist/react/ui/alert-dialog.js#4"},{"location":"dist/react/ui/alert.js#2"},{"location":"dist/react/ui/aspect-ratio.js#3"},{"location":"dist/react/ui/avatar.js#2"},{"location":"dist/react/ui/badge.js#2"},{"location":"dist/react/ui/breadcrumb.js#2"},{"location":"dist/react/ui/button-group.js#3"},{"location":"dist/react/ui/button.js#2"},{"location":"dist/react/ui/calendar.js#6"},{"location":"dist/react/ui/card.js#2"},{"location":"dist/react/ui/carousel.js#4"},{"location":"dist/react/ui/chart.js#5"},{"location":"dist/react/ui/checkbox.js#4"},{"location":"dist/react/ui/collapsible.js#1"},{"location":"dist/react/ui/command.js#3"},{"location":"dist/react/ui/context-menu.js#5"},{"location":"dist/react/ui/dialog.js#3"},{"location":"dist/react/ui/drawer.js#5"},{"location":"dist/react/ui/dropdown-menu.js#3"},{"location":"dist/react/ui/empty.js#2"},{"location":"dist/react/ui/field.js#5"},{"location":"dist/react/ui/form.js#6"},{"location":"dist/react/ui/hover-card.js#5"},{"location":"dist/react/ui/input-group.js#7"},{"location":"dist/react/ui/input-otp.js#3"},{"location":"dist/react/ui/input.js#2"},{"location":"dist/react/ui/item.js#3"},{"location":"dist/react/ui/kbd.js#2"},{"location":"dist/react/ui/label.js#4"},{"location":"dist/react/ui/menubar.js#3"},{"location":"dist/react/ui/navigation-menu.js#2"},{"location":"dist/react/ui/pagination.js#3"},{"location":"dist/react/ui/popover.js#5"},{"location":"dist/react/ui/progress.js#2"},{"location":"dist/react/ui/radio-group.js#4"},{"location":"dist/react/ui/resizable.js#2"},{"location":"dist/react/ui/scroll-area.js#4"},{"location":"dist/react/ui/select.js#3"},{"location":"dist/react/ui/separator.js#4"},{"location":"dist/react/ui/sheet.js#3"},{"location":"dist/react/ui/sidebar.js#12"},{"location":"dist/react/ui/skeleton.js#2"},{"location":"dist/react/ui/slider.js#5"},{"location":"dist/react/ui/sonner.js#1"},{"location":"dist/react/ui/spinner.js#2"},{"location":"dist/react/ui/switch.js#4"},{"location":"dist/react/ui/table.js#2"},{"location":"dist/react/ui/tabs.js#4"},{"location":"dist/react/ui/textarea.js#2"},{"location":"dist/react/ui/toggle-group.js#4"},{"location":"dist/react/ui/toggle.js#2"},{"location":"dist/react/ui/tooltip.js#5"},{"location":"tmp/dist/react/charts/base.js#6"},{"location":"tmp/dist/react/charts/chart-error-boundary.js#2"},{"location":"tmp/dist/react/charts/create-chart.js#3"},{"location":"tmp/dist/react/charts/empty.js#1"},{"location":"tmp/dist/react/charts/error.js#1"},{"location":"tmp/dist/react/charts/loading.js#1"},{"location":"tmp/dist/react/charts/wrapper.js#7"},{"location":"tmp/dist/react/file-browser/directory-list.js#5"},{"location":"tmp/dist/react/file-browser/file-breadcrumb.js#2"},{"location":"tmp/dist/react/file-browser/file-entry.js#3"},{"location":"tmp/dist/react/file-browser/file-preview-panel.js#5"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-message-list.js#8"},{"location":"tmp/dist/react/genie/genie-chat-message.js#6"},{"location":"tmp/dist/react/genie/genie-chat.js#6"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#11"},{"location":"tmp/dist/react/hooks/use-resource-status.js#2"},{"location":"tmp/dist/react/portal-container-context.js#2"},{"location":"tmp/dist/react/resource-status-indicator.js#4"},{"location":"tmp/dist/react/table/data-table.js#8"},{"location":"tmp/dist/react/table/empty.js#1"},{"location":"tmp/dist/react/table/error.js#1"},{"location":"tmp/dist/react/table/loading.js#1"},{"location":"tmp/dist/react/table/table-wrapper.js#10"},{"location":"tmp/dist/react/ui/accordion.js#2"},{"location":"tmp/dist/react/ui/alert-dialog.js#4"},{"location":"tmp/dist/react/ui/alert.js#2"},{"location":"tmp/dist/react/ui/aspect-ratio.js#3"},{"location":"tmp/dist/react/ui/avatar.js#2"},{"location":"tmp/dist/react/ui/badge.js#2"},{"location":"tmp/dist/react/ui/breadcrumb.js#2"},{"location":"tmp/dist/react/ui/button-group.js#3"},{"location":"tmp/dist/react/ui/button.js#2"},{"location":"tmp/dist/react/ui/calendar.js#6"},{"location":"tmp/dist/react/ui/card.js#2"},{"location":"tmp/dist/react/ui/carousel.js#4"},{"location":"tmp/dist/react/ui/chart.js#5"},{"location":"tmp/dist/react/ui/checkbox.js#4"},{"location":"tmp/dist/react/ui/collapsible.js#1"},{"location":"tmp/dist/react/ui/command.js#3"},{"location":"tmp/dist/react/ui/context-menu.js#5"},{"location":"tmp/dist/react/ui/dialog.js#3"},{"location":"tmp/dist/react/ui/drawer.js#5"},{"location":"tmp/dist/react/ui/dropdown-menu.js#3"},{"location":"tmp/dist/react/ui/empty.js#2"},{"location":"tmp/dist/react/ui/field.js#5"},{"location":"tmp/dist/react/ui/form.js#6"},{"location":"tmp/dist/react/ui/hover-card.js#5"},{"location":"tmp/dist/react/ui/input-group.js#7"},{"location":"tmp/dist/react/ui/input-otp.js#3"},{"location":"tmp/dist/react/ui/input.js#2"},{"location":"tmp/dist/react/ui/item.js#3"},{"location":"tmp/dist/react/ui/kbd.js#2"},{"location":"tmp/dist/react/ui/label.js#4"},{"location":"tmp/dist/react/ui/menubar.js#3"},{"location":"tmp/dist/react/ui/navigation-menu.js#2"},{"location":"tmp/dist/react/ui/pagination.js#3"},{"location":"tmp/dist/react/ui/popover.js#5"},{"location":"tmp/dist/react/ui/progress.js#2"},{"location":"tmp/dist/react/ui/radio-group.js#4"},{"location":"tmp/dist/react/ui/resizable.js#2"},{"location":"tmp/dist/react/ui/scroll-area.js#4"},{"location":"tmp/dist/react/ui/select.js#3"},{"location":"tmp/dist/react/ui/separator.js#4"},{"location":"tmp/dist/react/ui/sheet.js#3"},{"location":"tmp/dist/react/ui/sidebar.js#12"},{"location":"tmp/dist/react/ui/skeleton.js#2"},{"location":"tmp/dist/react/ui/slider.js#5"},{"location":"tmp/dist/react/ui/sonner.js#1"},{"location":"tmp/dist/react/ui/spinner.js#2"},{"location":"tmp/dist/react/ui/switch.js#4"},{"location":"tmp/dist/react/ui/table.js#2"},{"location":"tmp/dist/react/ui/tabs.js#4"},{"location":"tmp/dist/react/ui/textarea.js#2"},{"location":"tmp/dist/react/ui/toggle-group.js#4"},{"location":"tmp/dist/react/ui/toggle.js#2"},{"location":"tmp/dist/react/ui/tooltip.js#5"}]},"tags":["framework"]},{"authors":[{"name":"recharts group"}],"group":"","name":"recharts","version":"2.15.4","description":"React charts","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/recharts@2.15.4","externalReferences":[{"type":"vcs","url":"https://github.com/recharts/recharts"},{"type":"vcs","url":"git+https://github.com/recharts/recharts.git"}],"type":"library","bom-ref":"pkg:npm/recharts@2.15.4","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/recharts/package.json"},{"name":"ImportedModules","value":"recharts"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/recharts/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/recharts/package.json"}],"occurrences":[{"location":"dist/react/ui/chart.js#6"},{"location":"tmp/dist/react/ui/chart.js#6"},{"location":"src/react/ui/chart.tsx#4"}]}},{"group":"","name":"shared","version":"0.0.1","scope":"required","purl":"pkg:npm/shared@0.0.1","type":"library","bom-ref":"pkg:npm/shared@0.0.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/shared/package.json"},{"name":"ExportedModules","value":"shared,isSQLTypeMarker,shared/isSQLTypeMarker,SQLBinaryMarker,shared/SQLBinaryMarker,SQLBooleanMarker,shared/SQLBooleanMarker,SQLDateMarker,shared/SQLDateMarker,SQLNumberMarker,shared/SQLNumberMarker,SQLStringMarker,shared/SQLStringMarker,SQLTimestampMarker,shared/SQLTimestampMarker,SQLTypeMarker,shared/SQLTypeMarker,shared/sql,GenieAttachmentResponse,shared/GenieAttachmentResponse,GenieMessageResponse,shared/GenieMessageResponse,GenieStatementResponse,shared/GenieStatementResponse,GenieStreamEvent,shared/GenieStreamEvent"},{"name":"ImportedModules","value":"shared,GenieStatementResponse,shared/GenieStatementResponse,GenieAttachmentResponse,shared/GenieAttachmentResponse"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/shared/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/shared/package.json"}],"occurrences":[{"location":"src/js/index.ts#11"},{"location":"src/react/genie/genie-query-transform.ts#11"},{"location":"src/react/genie/types.ts#1"},{"location":"src/react/genie/types.ts#8"},{"location":"src/react/genie/genie-query-visualization.tsx#3"}]},"tags":["sql"]},{"authors":[{"name":"Emil Kowalski <e@emilkowal.ski>"}],"group":"","name":"sonner","version":"2.0.7","description":"An opinionated toast component for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/sonner@2.0.7","externalReferences":[{"type":"website","url":"https://sonner.emilkowal.ski/"},{"type":"vcs","url":"git+https://github.com/emilkowalski/sonner.git"}],"type":"library","bom-ref":"pkg:npm/sonner@2.0.7","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/sonner/package.json"},{"name":"ImportedModules","value":"sonner,toast,sonner/toast,Toaster,sonner/Toaster,ToasterProps,sonner/ToasterProps"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/sonner/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/sonner/package.json"}],"occurrences":[{"location":"dist/react/resource-status-indicator.js#5"},{"location":"dist/react/ui/sonner.js#3"},{"location":"tmp/dist/react/resource-status-indicator.js#5"},{"location":"tmp/dist/react/ui/sonner.js#3"},{"location":"src/react/resource-status-indicator.tsx#3"},{"location":"src/react/ui/sonner.tsx#10"}]}},{"authors":[{"name":"Dany Castillo"}],"group":"","name":"tailwind-merge","version":"3.4.0","description":"Merge Tailwind CSS classes without style conflicts","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/tailwind-merge@3.4.0","externalReferences":[{"type":"vcs","url":"https://github.com/dcastil/tailwind-merge"},{"type":"vcs","url":"https://github.com/dcastil/tailwind-merge.git"}],"type":"library","bom-ref":"pkg:npm/tailwind-merge@3.4.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/tailwind-merge/package.json"},{"name":"ImportedModules","value":"tailwind-merge,twMerge,tailwind-merge/twMerge"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/tailwind-merge/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/tailwind-merge/package.json"}],"occurrences":[{"location":"dist/react/lib/utils.js#2"},{"location":"tmp/dist/react/lib/utils.js#2"},{"location":"src/react/lib/utils.ts#2"}]}},{"authors":[{"name":"Emil Kowalski <e@emilkowal.ski>"}],"group":"","name":"vaul","version":"1.1.2","description":"Drawer component for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/vaul@1.1.2","externalReferences":[{"type":"website","url":"https://vaul.emilkowal.ski/"},{"type":"vcs","url":"https://github.com/emilkowalski/vaul.git"}],"type":"library","bom-ref":"pkg:npm/vaul@1.1.2","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/vaul/package.json"},{"name":"ImportedModules","value":"vaul,Drawer,vaul/Drawer"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/vaul/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/vaul/package.json"}],"occurrences":[{"location":"dist/react/ui/drawer.js#6"},{"location":"tmp/dist/react/ui/drawer.js#6"},{"location":"src/react/ui/drawer.tsx#4"}]}}],"dependencies":[],"compositions":[{"bom-ref":"pkg:npm/@databricks/appkit-ui@0.40.0","aggregate":"incomplete"}],"annotations":[{"bom-ref":"metadata-annotations","subjects":["pkg:npm/@databricks/appkit-ui@0.40.0"],"annotator":{"component":{"group":"@cyclonedx","name":"cdxgen","version":"12.1.2","purl":"pkg:npm/%40cyclonedx/cdxgen@12.1.2","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@12.1.2","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}},"timestamp":"2026-06-05T19:10:26Z","text":"This Software Bill-of-Materials (SBOM) document was created on Friday, June 5, 2026 with cdxgen. The data was captured during the build lifecycle phase. The document describes an application named 'appkit-ui' with version '0.40.0'. There are 48 components. The package type in this SBOM is npm with 2 purl namespaces described under components. The components were identified from 48 source files."}]}
|
|
1
|
+
{"bomFormat":"CycloneDX","specVersion":"1.6","serialNumber":"urn:uuid:eeb4328c-80e1-40fd-8e04-5bbbad7567a9","version":1,"metadata":{"timestamp":"2026-06-09T12:22:59Z","tools":{"components":[{"group":"@cyclonedx","name":"cdxgen","version":"12.1.2","purl":"pkg:npm/%40cyclonedx/cdxgen@12.1.2","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@12.1.2","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}]},"authors":[{"name":"OWASP Foundation"}],"lifecycles":[{"phase":"build"}],"component":{"name":"appkit-ui","group":"@databricks","version":"0.41.1","purl":"pkg:npm/%40databricks/appkit-ui@0.41.1","bom-ref":"pkg:npm/@databricks/appkit-ui@0.41.1","type":"application","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"externalReferences":[{"type":"vcs","url":"git+https://github.com/databricks/appkit.git"}]},"properties":[{"name":"cdx:bom:componentTypes","value":"npm"},{"name":"cdx:bom:componentNamespaces","value":"@radix-ui\\n@tanstack"},{"name":"cdx:bom:componentSrcFiles","value":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-label/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-popover/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-progress/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-select/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-separator/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-slider/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-slot/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-switch/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json\\npackages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json\\npackages/appkit-ui/node_modules/@tanstack/react-table/package.json\\npackages/appkit-ui/node_modules/apache-arrow/package.json\\npackages/appkit-ui/node_modules/class-variance-authority/package.json\\npackages/appkit-ui/node_modules/clsx/package.json\\npackages/appkit-ui/node_modules/cmdk/package.json\\npackages/appkit-ui/node_modules/dompurify/package.json\\npackages/appkit-ui/node_modules/echarts-for-react/package.json\\npackages/appkit-ui/node_modules/echarts/package.json\\npackages/appkit-ui/node_modules/embla-carousel-react/package.json\\npackages/appkit-ui/node_modules/input-otp/package.json\\npackages/appkit-ui/node_modules/lucide-react/package.json\\npackages/appkit-ui/node_modules/marked/package.json\\npackages/appkit-ui/node_modules/next-themes/package.json\\npackages/appkit-ui/node_modules/react-day-picker/package.json\\npackages/appkit-ui/node_modules/react-hook-form/package.json\\npackages/appkit-ui/node_modules/react-resizable-panels/package.json\\npackages/appkit-ui/node_modules/react/package.json\\npackages/appkit-ui/node_modules/recharts/package.json\\npackages/appkit-ui/node_modules/shared/package.json\\npackages/appkit-ui/node_modules/sonner/package.json\\npackages/appkit-ui/node_modules/tailwind-merge/package.json\\npackages/appkit-ui/node_modules/vaul/package.json"}]},"components":[{"group":"@radix-ui","name":"react-accordion","version":"1.2.12","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-accordion@1.2.12","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-accordion@1.2.12","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-accordion"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-accordion/package.json"}],"occurrences":[{"location":"dist/react/ui/accordion.js#4"},{"location":"tmp/dist/react/ui/accordion.js#4"},{"location":"src/react/ui/accordion.tsx#2"}]}},{"group":"@radix-ui","name":"react-alert-dialog","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-alert-dialog@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-alert-dialog@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-alert-dialog"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-alert-dialog/package.json"}],"occurrences":[{"location":"dist/react/ui/alert-dialog.js#5"},{"location":"tmp/dist/react/ui/alert-dialog.js#5"},{"location":"src/react/ui/alert-dialog.tsx#2"}]}},{"group":"@radix-ui","name":"react-aspect-ratio","version":"1.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-aspect-ratio@1.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-aspect-ratio@1.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-aspect-ratio"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-aspect-ratio/package.json"}],"occurrences":[{"location":"dist/react/ui/aspect-ratio.js#4"},{"location":"tmp/dist/react/ui/aspect-ratio.js#4"},{"location":"src/react/ui/aspect-ratio.tsx#3"}]}},{"group":"@radix-ui","name":"react-avatar","version":"1.1.11","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-avatar@1.1.11","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-avatar@1.1.11","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-avatar"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-avatar/package.json"}],"occurrences":[{"location":"dist/react/ui/avatar.js#3"},{"location":"tmp/dist/react/ui/avatar.js#3"},{"location":"src/react/ui/avatar.tsx#2"}]}},{"group":"@radix-ui","name":"react-checkbox","version":"1.3.3","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-checkbox@1.3.3","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-checkbox@1.3.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-checkbox"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-checkbox/package.json"}],"occurrences":[{"location":"dist/react/ui/checkbox.js#6"},{"location":"tmp/dist/react/ui/checkbox.js#6"},{"location":"src/react/ui/checkbox.tsx#4"}]}},{"group":"@radix-ui","name":"react-collapsible","version":"1.1.12","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-collapsible@1.1.12","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-collapsible@1.1.12","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-collapsible"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-collapsible/package.json"}],"occurrences":[{"location":"dist/react/ui/collapsible.js#2"},{"location":"tmp/dist/react/ui/collapsible.js#2"},{"location":"src/react/ui/collapsible.tsx#1"}]}},{"group":"@radix-ui","name":"react-context-menu","version":"2.2.16","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-context-menu@2.2.16","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-context-menu@2.2.16","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-context-menu"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-context-menu/package.json"}],"occurrences":[{"location":"dist/react/ui/context-menu.js#7"},{"location":"tmp/dist/react/ui/context-menu.js#7"},{"location":"src/react/ui/context-menu.tsx#4"}]}},{"group":"@radix-ui","name":"react-dialog","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-dialog@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-dialog@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-dialog"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-dialog/package.json"}],"occurrences":[{"location":"dist/react/ui/dialog.js#5"},{"location":"dist/react/ui/sheet.js#5"},{"location":"tmp/dist/react/ui/dialog.js#5"},{"location":"tmp/dist/react/ui/sheet.js#5"},{"location":"src/react/ui/dialog.tsx#2"},{"location":"src/react/ui/sheet.tsx#2"}]}},{"group":"@radix-ui","name":"react-dropdown-menu","version":"2.1.16","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-dropdown-menu@2.1.16","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-dropdown-menu@2.1.16","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-dropdown-menu"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-dropdown-menu/package.json"}],"occurrences":[{"location":"dist/react/ui/dropdown-menu.js#5"},{"location":"tmp/dist/react/ui/dropdown-menu.js#5"},{"location":"src/react/ui/dropdown-menu.tsx#2"}]}},{"group":"@radix-ui","name":"react-hover-card","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-hover-card@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-hover-card@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-hover-card"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-hover-card/package.json"}],"occurrences":[{"location":"dist/react/ui/hover-card.js#6"},{"location":"tmp/dist/react/ui/hover-card.js#6"},{"location":"src/react/ui/hover-card.tsx#4"}]}},{"group":"@radix-ui","name":"react-label","version":"2.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-label@2.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-label@2.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-label/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-label"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-label/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-label/package.json"}],"occurrences":[{"location":"dist/react/ui/label.js#5"},{"location":"tmp/dist/react/ui/label.js#5"},{"location":"src/react/ui/form.tsx#4"},{"location":"src/react/ui/label.tsx#4"}]}},{"group":"@radix-ui","name":"react-menubar","version":"1.1.16","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-menubar@1.1.16","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-menubar@1.1.16","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-menubar"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-menubar/package.json"}],"occurrences":[{"location":"dist/react/ui/menubar.js#5"},{"location":"tmp/dist/react/ui/menubar.js#5"},{"location":"src/react/ui/menubar.tsx#2"}]}},{"group":"@radix-ui","name":"react-navigation-menu","version":"1.2.14","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-navigation-menu@1.2.14","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-navigation-menu@1.2.14","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-navigation-menu"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-navigation-menu/package.json"}],"occurrences":[{"location":"dist/react/ui/navigation-menu.js#5"},{"location":"tmp/dist/react/ui/navigation-menu.js#5"},{"location":"src/react/ui/navigation-menu.tsx#2"}]}},{"group":"@radix-ui","name":"react-popover","version":"1.1.15","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-popover@1.1.15","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-popover@1.1.15","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-popover/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-popover"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-popover/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-popover/package.json"}],"occurrences":[{"location":"dist/react/ui/popover.js#6"},{"location":"tmp/dist/react/ui/popover.js#6"},{"location":"src/react/ui/popover.tsx#4"}]}},{"group":"@radix-ui","name":"react-progress","version":"1.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-progress@1.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-progress@1.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-progress/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-progress"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-progress/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-progress/package.json"}],"occurrences":[{"location":"dist/react/ui/progress.js#3"},{"location":"tmp/dist/react/ui/progress.js#3"},{"location":"src/react/ui/progress.tsx#2"}]}},{"group":"@radix-ui","name":"react-radio-group","version":"1.3.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-radio-group@1.3.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-radio-group@1.3.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-radio-group"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-radio-group/package.json"}],"occurrences":[{"location":"dist/react/ui/radio-group.js#6"},{"location":"tmp/dist/react/ui/radio-group.js#6"},{"location":"src/react/ui/radio-group.tsx#4"}]}},{"group":"@radix-ui","name":"react-scroll-area","version":"1.2.10","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-scroll-area@1.2.10","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-scroll-area@1.2.10","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-scroll-area"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-scroll-area/package.json"}],"occurrences":[{"location":"dist/react/ui/scroll-area.js#5"},{"location":"tmp/dist/react/ui/scroll-area.js#5"},{"location":"src/react/ui/scroll-area.tsx#4"}]}},{"group":"@radix-ui","name":"react-select","version":"2.2.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-select@2.2.6","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-select@2.2.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-select/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-select"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-select/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-select/package.json"}],"occurrences":[{"location":"dist/react/ui/select.js#5"},{"location":"tmp/dist/react/ui/select.js#5"},{"location":"src/react/ui/select.tsx#2"}]}},{"group":"@radix-ui","name":"react-separator","version":"1.1.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-separator@1.1.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-separator@1.1.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-separator/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-separator"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-separator/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-separator/package.json"}],"occurrences":[{"location":"dist/react/ui/separator.js#5"},{"location":"tmp/dist/react/ui/separator.js#5"},{"location":"src/react/ui/separator.tsx#4"}]}},{"group":"@radix-ui","name":"react-slider","version":"1.3.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-slider@1.3.6","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-slider@1.3.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-slider/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-slider"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-slider/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-slider/package.json"}],"occurrences":[{"location":"dist/react/ui/slider.js#6"},{"location":"tmp/dist/react/ui/slider.js#6"},{"location":"src/react/ui/slider.tsx#4"}]}},{"group":"@radix-ui","name":"react-slot","version":"1.2.4","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-slot@1.2.4","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-slot@1.2.4","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-slot/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-slot,Slot,@radix-ui/react-slot/Slot"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-slot/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-slot/package.json"}],"occurrences":[{"location":"dist/react/ui/badge.js#3"},{"location":"dist/react/ui/breadcrumb.js#4"},{"location":"dist/react/ui/button-group.js#4"},{"location":"dist/react/ui/button.js#3"},{"location":"dist/react/ui/form.js#7"},{"location":"dist/react/ui/item.js#4"},{"location":"dist/react/ui/sidebar.js#14"},{"location":"tmp/dist/react/ui/badge.js#3"},{"location":"tmp/dist/react/ui/breadcrumb.js#4"},{"location":"tmp/dist/react/ui/button-group.js#4"},{"location":"tmp/dist/react/ui/button.js#3"},{"location":"tmp/dist/react/ui/form.js#7"},{"location":"tmp/dist/react/ui/item.js#4"},{"location":"tmp/dist/react/ui/sidebar.js#14"},{"location":"src/react/ui/badge.tsx#2"},{"location":"src/react/ui/breadcrumb.tsx#2"},{"location":"src/react/ui/button-group.tsx#1"},{"location":"src/react/ui/button.tsx#2"},{"location":"src/react/ui/form.tsx#5"},{"location":"src/react/ui/item.tsx#2"},{"location":"src/react/ui/sidebar.tsx#4"}]}},{"group":"@radix-ui","name":"react-switch","version":"1.2.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-switch@1.2.6","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-switch@1.2.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-switch/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-switch"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-switch/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-switch/package.json"}],"occurrences":[{"location":"dist/react/ui/switch.js#5"},{"location":"tmp/dist/react/ui/switch.js#5"},{"location":"src/react/ui/switch.tsx#4"}]}},{"group":"@radix-ui","name":"react-tabs","version":"1.1.13","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-tabs@1.1.13","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-tabs@1.1.13","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-tabs"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-tabs/package.json"}],"occurrences":[{"location":"dist/react/ui/tabs.js#5"},{"location":"tmp/dist/react/ui/tabs.js#5"},{"location":"src/react/ui/tabs.tsx#4"}]}},{"group":"@radix-ui","name":"react-toggle-group","version":"1.1.11","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-toggle-group@1.1.11","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-toggle-group@1.1.11","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-toggle-group"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-toggle-group/package.json"}],"occurrences":[{"location":"dist/react/ui/toggle-group.js#5"},{"location":"tmp/dist/react/ui/toggle-group.js#5"},{"location":"src/react/ui/toggle-group.tsx#2"}]}},{"group":"@radix-ui","name":"react-toggle","version":"1.1.10","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-toggle@1.1.10","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-toggle@1.1.10","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-toggle"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-toggle/package.json"}],"occurrences":[{"location":"dist/react/ui/toggle.js#4"},{"location":"tmp/dist/react/ui/toggle.js#4"},{"location":"src/react/ui/toggle.tsx#2"}]}},{"group":"@radix-ui","name":"react-tooltip","version":"1.2.8","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40radix-ui/react-tooltip@1.2.8","externalReferences":[{"type":"website","url":"https://radix-ui.com/primitives"},{"type":"vcs","url":"git+https://github.com/radix-ui/primitives.git"}],"type":"library","bom-ref":"pkg:npm/@radix-ui/react-tooltip@1.2.8","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json"},{"name":"ImportedModules","value":"@radix-ui/react-tooltip"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@radix-ui/react-tooltip/package.json"}],"occurrences":[{"location":"dist/react/ui/tooltip.js#6"},{"location":"tmp/dist/react/ui/tooltip.js#6"},{"location":"src/react/ui/tooltip.tsx#4"}]}},{"authors":[{"name":"Tanner Linsley"}],"group":"@tanstack","name":"react-table","version":"8.21.3","description":"Headless UI for building powerful tables & datagrids for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/%40tanstack/react-table@8.21.3","externalReferences":[{"type":"website","url":"https://tanstack.com/table"},{"type":"vcs","url":"https://github.com/TanStack/table.git"}],"type":"library","bom-ref":"pkg:npm/@tanstack/react-table@8.21.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/@tanstack/react-table/package.json"},{"name":"ImportedModules","value":"@tanstack/react-table,flexRender,@tanstack/react-table/flexRender,getCoreRowModel,@tanstack/react-table/getCoreRowModel,getFilteredRowModel,@tanstack/react-table/getFilteredRowModel,getPaginationRowModel,@tanstack/react-table/getPaginationRowModel,getSortedRowModel,@tanstack/react-table/getSortedRowModel,useReactTable,@tanstack/react-table/useReactTable,RowSelectionState,@tanstack/react-table/RowSelectionState,Table,@tanstack/react-table/Table,Column,@tanstack/react-table/Column,ColumnFiltersState,@tanstack/react-table/ColumnFiltersState,@tanstack/react-table/Row,SortingState,@tanstack/react-table/SortingState,VisibilityState,@tanstack/react-table/VisibilityState"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/@tanstack/react-table/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/@tanstack/react-table/package.json"}],"occurrences":[{"location":"dist/react/table/data-table.js#10"},{"location":"dist/react/table/table-wrapper.js#12"},{"location":"tmp/dist/react/table/data-table.js#10"},{"location":"tmp/dist/react/table/table-wrapper.js#12"},{"location":"src/react/table/types.ts#1"},{"location":"src/react/table/data-table.tsx#1"},{"location":"src/react/table/table-wrapper.tsx#14"}]}},{"authors":[{"name":"Apache Software Foundation"}],"group":"","name":"apache-arrow","version":"21.1.0","description":"Apache Arrow columnar in-memory format","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/apache-arrow@21.1.0","externalReferences":[{"type":"website","url":"https://arrow.apache.org/js/"},{"type":"vcs","url":"git+https://github.com/apache/arrow-js.git"}],"type":"library","bom-ref":"pkg:npm/apache-arrow@21.1.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/apache-arrow/package.json"},{"name":"ImportedModules","value":"apache-arrow,Field,apache-arrow/Field,Table,apache-arrow/Table"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/apache-arrow/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/apache-arrow/package.json"}],"occurrences":[{"location":"src/js/arrow/arrow-client.ts#1"},{"location":"src/react/charts/normalize.ts#1"},{"location":"src/react/charts/types.ts#1"},{"location":"src/react/hooks/types.ts#1"},{"location":"src/react/hooks/use-chart-data.ts#1"}]}},{"authors":[{"name":"Joe Bell (https://joebell.co.uk)"}],"group":"","name":"class-variance-authority","version":"0.7.1","description":"Class Variance Authority 🧬","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/class-variance-authority@0.7.1","externalReferences":[{"type":"vcs","url":"https://github.com/joe-bell/cva#readme"}],"type":"library","bom-ref":"pkg:npm/class-variance-authority@0.7.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/class-variance-authority/package.json"},{"name":"ImportedModules","value":"class-variance-authority,class-variance-authority/cva,VariantProps,class-variance-authority/VariantProps"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/class-variance-authority/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/class-variance-authority/package.json"}],"occurrences":[{"location":"dist/react/ui/alert.js#3"},{"location":"dist/react/ui/badge.js#4"},{"location":"dist/react/ui/button-group.js#5"},{"location":"dist/react/ui/button.js#4"},{"location":"dist/react/ui/empty.js#3"},{"location":"dist/react/ui/field.js#6"},{"location":"dist/react/ui/input-group.js#8"},{"location":"dist/react/ui/item.js#5"},{"location":"dist/react/ui/navigation-menu.js#4"},{"location":"dist/react/ui/sidebar.js#15"},{"location":"dist/react/ui/toggle.js#3"},{"location":"tmp/dist/react/ui/alert.js#3"},{"location":"tmp/dist/react/ui/badge.js#4"},{"location":"tmp/dist/react/ui/button-group.js#5"},{"location":"tmp/dist/react/ui/button.js#4"},{"location":"tmp/dist/react/ui/empty.js#3"},{"location":"tmp/dist/react/ui/field.js#6"},{"location":"tmp/dist/react/ui/input-group.js#8"},{"location":"tmp/dist/react/ui/item.js#5"},{"location":"tmp/dist/react/ui/navigation-menu.js#4"},{"location":"tmp/dist/react/ui/sidebar.js#15"},{"location":"tmp/dist/react/ui/toggle.js#3"},{"location":"src/react/ui/alert.tsx#2"},{"location":"src/react/ui/badge.tsx#3"},{"location":"src/react/ui/button-group.tsx#2"},{"location":"src/react/ui/button.tsx#3"},{"location":"src/react/ui/empty.tsx#1"},{"location":"src/react/ui/field.tsx#2"},{"location":"src/react/ui/input-group.tsx#4"},{"location":"src/react/ui/item.tsx#3"},{"location":"src/react/ui/navigation-menu.tsx#3"},{"location":"src/react/ui/sidebar.tsx#5"},{"location":"src/react/ui/toggle-group.tsx#3"},{"location":"src/react/ui/toggle.tsx#3"}]}},{"authors":[{"name":"Luke Edwards <luke.edwards05@gmail.com> (https://lukeed.com)"}],"group":"","name":"clsx","version":"2.1.1","description":"A tiny (239B) utility for constructing className strings conditionally.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/clsx@2.1.1","type":"library","bom-ref":"pkg:npm/clsx@2.1.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/clsx/package.json"},{"name":"ImportedModules","value":"clsx,clsx/clsx,ClassValue,clsx/ClassValue"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/clsx/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/clsx/package.json"}],"occurrences":[{"location":"dist/react/lib/utils.js#1"},{"location":"tmp/dist/react/lib/utils.js#1"},{"location":"src/react/lib/utils.ts#1"}]}},{"authors":[{"name":"Paco (https://github.com/pacocoursey)"}],"group":"","name":"cmdk","version":"1.1.1","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/cmdk@1.1.1","externalReferences":[{"type":"vcs","url":"https://github.com/pacocoursey/cmdk#readme"},{"type":"vcs","url":"git+https://github.com/pacocoursey/cmdk.git"}],"type":"library","bom-ref":"pkg:npm/cmdk@1.1.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/cmdk/package.json"},{"name":"ImportedModules","value":"cmdk,Command,cmdk/Command"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/cmdk/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/cmdk/package.json"}],"occurrences":[{"location":"dist/react/ui/command.js#5"},{"location":"tmp/dist/react/ui/command.js#5"},{"location":"src/react/ui/command.tsx#2"}]}},{"authors":[{"name":"Dr.-Ing. Mario Heiderich"},{"name":" Cure53 <mario@cure53.de> (https://cure53.de/)"}],"group":"","name":"dompurify","version":"3.3.3","description":"DOMPurify is a DOM-only, super-fast, uber-tolerant XSS sanitizer for HTML, MathML and SVG. It's written in JavaScript and works in all modern browsers (Safari, Opera (15+), Internet Explorer (10+), Firefox and Chrome - as well as almost anything else using Blink or WebKit). DOMPurify is written by security people who have vast background in web attacks and XSS. Fear not.","scope":"required","licenses":[{"expression":"(MPL-2.0 OR Apache-2.0)"}],"purl":"pkg:npm/dompurify@3.3.3","externalReferences":[{"type":"vcs","url":"https://github.com/cure53/DOMPurify"},{"type":"vcs","url":"git://github.com/cure53/DOMPurify.git"}],"type":"library","bom-ref":"pkg:npm/dompurify@3.3.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/dompurify/package.json"},{"name":"ImportedModules","value":"dompurify"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/dompurify/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/dompurify/package.json"}],"occurrences":[{"location":"dist/react/genie/genie-chat-message.js#7"},{"location":"tmp/dist/react/genie/genie-chat-message.js#7"},{"location":"src/react/genie/genie-chat-message.tsx#1"}]},"tags":["security","web"]},{"authors":[{"name":"hustcc (http://github.com/hustcc)"}],"group":"","name":"echarts-for-react","version":"3.0.5","description":" Apache Echarts components for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/echarts-for-react@3.0.5","externalReferences":[{"type":"vcs","url":"https://github.com/hustcc/echarts-for-react"},{"type":"vcs","url":"https://github.com/hustcc/echarts-for-react.git"}],"type":"library","bom-ref":"pkg:npm/echarts-for-react@3.0.5","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/echarts-for-react/package.json"},{"name":"ImportedModules","value":"echarts-for-react"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/echarts-for-react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/echarts-for-react/package.json"}],"occurrences":[{"location":"dist/react/charts/base.js#4"},{"location":"tmp/dist/react/charts/base.js#4"},{"location":"src/react/charts/base.tsx#2"}]}},{"group":"","name":"echarts","version":"6.0.0","description":"Apache ECharts is a powerful, interactive charting and data visualization library for browser","scope":"required","licenses":[{"license":{"id":"Apache-2.0","url":"https://opensource.org/licenses/Apache-2.0"}}],"purl":"pkg:npm/echarts@6.0.0","externalReferences":[{"type":"website","url":"https://echarts.apache.org"},{"type":"vcs","url":"git+https://github.com/apache/echarts.git"}],"type":"library","bom-ref":"pkg:npm/echarts@6.0.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/echarts/package.json"},{"name":"ImportedModules","value":"echarts,ECharts,echarts/ECharts"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/echarts/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/echarts/package.json"}],"occurrences":[{"location":"src/react/charts/base.tsx#1"}]}},{"authors":[{"name":"David Jerleke"}],"group":"","name":"embla-carousel-react","version":"8.6.0","description":"A lightweight carousel library with fluid motion and great swipe precision","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/embla-carousel-react@8.6.0","externalReferences":[{"type":"website","url":"https://www.embla-carousel.com"},{"type":"vcs","url":"git+https://github.com/davidjerleke/embla-carousel"}],"type":"library","bom-ref":"pkg:npm/embla-carousel-react@8.6.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/embla-carousel-react/package.json"},{"name":"ImportedModules","value":"embla-carousel-react,UseEmblaCarouselType,embla-carousel-react/UseEmblaCarouselType"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/embla-carousel-react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/embla-carousel-react/package.json"}],"occurrences":[{"location":"dist/react/ui/carousel.js#6"},{"location":"tmp/dist/react/ui/carousel.js#6"},{"location":"src/react/ui/carousel.tsx#4"}]}},{"authors":[{"name":"Guilherme Rodz <g@rodz.dev>"}],"group":"","name":"input-otp","version":"1.4.2","description":"One-time password input component for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/input-otp@1.4.2","externalReferences":[{"type":"website","url":"https://input-otp.rodz.dev/"},{"type":"vcs","url":"git+https://github.com/guilhermerodz/input-otp.git"}],"type":"library","bom-ref":"pkg:npm/input-otp@1.4.2","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/input-otp/package.json"},{"name":"ImportedModules","value":"input-otp,OTPInput,input-otp/OTPInput,OTPInputContext,input-otp/OTPInputContext"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/input-otp/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/input-otp/package.json"}],"occurrences":[{"location":"dist/react/ui/input-otp.js#5"},{"location":"tmp/dist/react/ui/input-otp.js#5"},{"location":"src/react/ui/input-otp.tsx#2"}]}},{"authors":[{"name":"Eric Fennis"}],"group":"","name":"lucide-react","version":"0.554.0","description":"A Lucide icon library package for React applications.","scope":"required","licenses":[{"license":{"id":"ISC","url":"https://opensource.org/licenses/ISC"}}],"purl":"pkg:npm/lucide-react@0.554.0","externalReferences":[{"type":"website","url":"https://lucide.dev"},{"type":"vcs","url":"https://github.com/lucide-icons/lucide.git"}],"type":"library","bom-ref":"pkg:npm/lucide-react@0.554.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/lucide-react/package.json"},{"name":"ImportedModules","value":"lucide-react,Loader2Icon,lucide-react/Loader2Icon,AlertCircle,lucide-react/AlertCircle,ArrowLeft,lucide-react/ArrowLeft,FileIcon,lucide-react/FileIcon,ChevronRight,lucide-react/ChevronRight,FolderIcon,lucide-react/FolderIcon,Download,lucide-react/Download,Loader2,lucide-react/Loader2,Trash2,lucide-react/Trash2,FolderPlus,lucide-react/FolderPlus,lucide-react/X,BarChart3Icon,lucide-react/BarChart3Icon,ChevronDownIcon,lucide-react/ChevronDownIcon,ChevronDown,lucide-react/ChevronDown,ArrowUpDown,lucide-react/ArrowUpDown,MoreHorizontal,lucide-react/MoreHorizontal,ChevronLeftIcon,lucide-react/ChevronLeftIcon,ChevronRightIcon,lucide-react/ChevronRightIcon,ArrowRight,lucide-react/ArrowRight,CheckIcon,lucide-react/CheckIcon,SearchIcon,lucide-react/SearchIcon,CircleIcon,lucide-react/CircleIcon,XIcon,lucide-react/XIcon,MinusIcon,lucide-react/MinusIcon,MoreHorizontalIcon,lucide-react/MoreHorizontalIcon,GripVerticalIcon,lucide-react/GripVerticalIcon,ChevronUpIcon,lucide-react/ChevronUpIcon,PanelLeftIcon,lucide-react/PanelLeftIcon,CircleCheckIcon,lucide-react/CircleCheckIcon,InfoIcon,lucide-react/InfoIcon,OctagonXIcon,lucide-react/OctagonXIcon,TriangleAlertIcon,lucide-react/TriangleAlertIcon,LucideIcon,lucide-react/LucideIcon"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/lucide-react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/lucide-react/package.json"}],"occurrences":[{"location":"dist/react/charts/loading.js#2"},{"location":"dist/react/file-browser/directory-list.js#6"},{"location":"dist/react/file-browser/file-entry.js#4"},{"location":"dist/react/file-browser/file-preview-panel.js#6"},{"location":"dist/react/file-browser/new-folder-input.js#5"},{"location":"dist/react/genie/genie-query-visualization.js#12"},{"location":"dist/react/table/data-table.js#9"},{"location":"dist/react/table/table-wrapper.js#11"},{"location":"dist/react/ui/accordion.js#3"},{"location":"dist/react/ui/breadcrumb.js#3"},{"location":"dist/react/ui/calendar.js#7"},{"location":"dist/react/ui/carousel.js#5"},{"location":"dist/react/ui/checkbox.js#5"},{"location":"dist/react/ui/command.js#4"},{"location":"dist/react/ui/context-menu.js#6"},{"location":"dist/react/ui/dialog.js#4"},{"location":"dist/react/ui/dropdown-menu.js#4"},{"location":"dist/react/ui/input-otp.js#4"},{"location":"dist/react/ui/menubar.js#4"},{"location":"dist/react/ui/navigation-menu.js#3"},{"location":"dist/react/ui/pagination.js#4"},{"location":"dist/react/ui/radio-group.js#5"},{"location":"dist/react/ui/resizable.js#3"},{"location":"dist/react/ui/select.js#4"},{"location":"dist/react/ui/sheet.js#4"},{"location":"dist/react/ui/sidebar.js#13"},{"location":"dist/react/ui/sonner.js#2"},{"location":"dist/react/ui/spinner.js#3"},{"location":"tmp/dist/react/charts/loading.js#2"},{"location":"tmp/dist/react/file-browser/directory-list.js#6"},{"location":"tmp/dist/react/file-browser/file-entry.js#4"},{"location":"tmp/dist/react/file-browser/file-preview-panel.js#6"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#5"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#12"},{"location":"tmp/dist/react/table/data-table.js#9"},{"location":"tmp/dist/react/table/table-wrapper.js#11"},{"location":"tmp/dist/react/ui/accordion.js#3"},{"location":"tmp/dist/react/ui/breadcrumb.js#3"},{"location":"tmp/dist/react/ui/calendar.js#7"},{"location":"tmp/dist/react/ui/carousel.js#5"},{"location":"tmp/dist/react/ui/checkbox.js#5"},{"location":"tmp/dist/react/ui/command.js#4"},{"location":"tmp/dist/react/ui/context-menu.js#6"},{"location":"tmp/dist/react/ui/dialog.js#4"},{"location":"tmp/dist/react/ui/dropdown-menu.js#4"},{"location":"tmp/dist/react/ui/input-otp.js#4"},{"location":"tmp/dist/react/ui/menubar.js#4"},{"location":"tmp/dist/react/ui/navigation-menu.js#3"},{"location":"tmp/dist/react/ui/pagination.js#4"},{"location":"tmp/dist/react/ui/radio-group.js#5"},{"location":"tmp/dist/react/ui/resizable.js#3"},{"location":"tmp/dist/react/ui/select.js#4"},{"location":"tmp/dist/react/ui/sheet.js#4"},{"location":"tmp/dist/react/ui/sidebar.js#13"},{"location":"tmp/dist/react/ui/sonner.js#2"},{"location":"tmp/dist/react/ui/spinner.js#3"},{"location":"src/react/charts/loading.tsx#1"},{"location":"src/react/file-browser/directory-list.tsx#1"},{"location":"src/react/file-browser/file-entry.tsx#1"},{"location":"src/react/file-browser/file-preview-panel.tsx#1"},{"location":"src/react/file-browser/new-folder-input.tsx#1"},{"location":"src/react/genie/genie-query-visualization.tsx#1"},{"location":"src/react/resource-status-indicator.tsx#1"},{"location":"src/react/table/data-table.tsx#2"},{"location":"src/react/table/table-wrapper.tsx#15"},{"location":"src/react/ui/accordion.tsx#3"},{"location":"src/react/ui/breadcrumb.tsx#3"},{"location":"src/react/ui/calendar.tsx#9"},{"location":"src/react/ui/carousel.tsx#5"},{"location":"src/react/ui/checkbox.tsx#5"},{"location":"src/react/ui/command.tsx#3"},{"location":"src/react/ui/context-menu.tsx#5"},{"location":"src/react/ui/dialog.tsx#3"},{"location":"src/react/ui/dropdown-menu.tsx#3"},{"location":"src/react/ui/input-otp.tsx#3"},{"location":"src/react/ui/menubar.tsx#3"},{"location":"src/react/ui/navigation-menu.tsx#4"},{"location":"src/react/ui/pagination.tsx#6"},{"location":"src/react/ui/radio-group.tsx#5"},{"location":"src/react/ui/resizable.tsx#2"},{"location":"src/react/ui/select.tsx#3"},{"location":"src/react/ui/sheet.tsx#3"},{"location":"src/react/ui/sidebar.tsx#6"},{"location":"src/react/ui/sonner.tsx#8"},{"location":"src/react/ui/spinner.tsx#2"}]}},{"authors":[{"name":"Christopher Jeffrey"}],"group":"","name":"marked","version":"17.0.3","description":"A markdown parser built for speed","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/marked@17.0.3","externalReferences":[{"type":"website","url":"https://marked.js.org"},{"type":"vcs","url":"git://github.com/markedjs/marked.git"}],"type":"library","bom-ref":"pkg:npm/marked@17.0.3","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/marked/package.json"},{"name":"ImportedModules","value":"marked,marked/marked"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/marked/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/marked/package.json"}],"occurrences":[{"location":"dist/react/genie/genie-chat-message.js#8"},{"location":"tmp/dist/react/genie/genie-chat-message.js#8"},{"location":"src/react/genie/genie-chat-message.tsx#2"}]}},{"group":"","name":"next-themes","version":"0.4.6","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/next-themes@0.4.6","externalReferences":[{"type":"vcs","url":"https://github.com/pacocoursey/next-themes.git"}],"type":"framework","bom-ref":"pkg:npm/next-themes@0.4.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/next-themes/package.json"},{"name":"ImportedModules","value":"next-themes,useTheme,next-themes/useTheme"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/next-themes/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/next-themes/package.json"}],"occurrences":[{"location":"dist/react/ui/sonner.js#4"},{"location":"tmp/dist/react/ui/sonner.js#4"},{"location":"src/react/ui/sonner.tsx#9"}]},"tags":["framework"]},{"authors":[{"name":"Giampaolo Bellavite <io@gpbl.dev>"}],"group":"","name":"react-day-picker","version":"9.12.0","description":"Customizable Date Picker for React","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react-day-picker@9.12.0","externalReferences":[{"type":"website","url":"https://daypicker.dev"},{"type":"vcs","url":"https://github.com/gpbl/react-day-picker"}],"type":"framework","bom-ref":"pkg:npm/react-day-picker@9.12.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react-day-picker/package.json"},{"name":"ImportedModules","value":"react-day-picker,DayPicker,react-day-picker/DayPicker,getDefaultClassNames,react-day-picker/getDefaultClassNames,DayButton,react-day-picker/DayButton"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react-day-picker/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react-day-picker/package.json"}],"occurrences":[{"location":"dist/react/ui/calendar.js#8"},{"location":"tmp/dist/react/ui/calendar.js#8"},{"location":"src/react/ui/calendar.tsx#10"}]},"tags":["framework"]},{"authors":[{"name":"Beier(Bill) Luo <bluebill1049@hotmail.com>"}],"group":"","name":"react-hook-form","version":"7.68.0","description":"Performant, flexible and extensible forms library for React Hooks","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react-hook-form@7.68.0","externalReferences":[{"type":"website","url":"https://react-hook-form.com"},{"type":"vcs","url":"https://github.com/react-hook-form/react-hook-form"}],"type":"framework","bom-ref":"pkg:npm/react-hook-form@7.68.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react-hook-form/package.json"},{"name":"ImportedModules","value":"react-hook-form,Controller,react-hook-form/Controller,FormProvider,react-hook-form/FormProvider,useFormContext,react-hook-form/useFormContext,useFormState,react-hook-form/useFormState,ControllerProps,react-hook-form/ControllerProps,FieldPath,react-hook-form/FieldPath,FieldValues,react-hook-form/FieldValues"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react-hook-form/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react-hook-form/package.json"}],"occurrences":[{"location":"dist/react/ui/form.js#8"},{"location":"tmp/dist/react/ui/form.js#8"},{"location":"src/react/ui/form.tsx#14"}]},"tags":["framework"]},{"authors":[{"name":"Brian Vaughn <brian.david.vaughn@gmail.com>"}],"group":"","name":"react-resizable-panels","version":"3.0.6","description":"React components for resizable panel groups/layouts","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react-resizable-panels@3.0.6","externalReferences":[{"type":"vcs","url":"git+https://github.com/bvaughn/react-resizable-panels.git"}],"type":"framework","bom-ref":"pkg:npm/react-resizable-panels@3.0.6","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react-resizable-panels/package.json"},{"name":"ImportedModules","value":"react-resizable-panels"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react-resizable-panels/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react-resizable-panels/package.json"}],"occurrences":[{"location":"dist/react/ui/resizable.js#4"},{"location":"tmp/dist/react/ui/resizable.js#4"},{"location":"src/react/ui/resizable.tsx#3"}]},"tags":["framework"]},{"group":"","name":"react","version":"19.2.0","description":"React is a JavaScript library for building user interfaces.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/react@19.2.0","externalReferences":[{"type":"website","url":"https://react.dev/"},{"type":"vcs","url":"https://github.com/facebook/react.git"}],"type":"framework","bom-ref":"pkg:npm/react@19.2.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/react/package.json"},{"name":"ExportedModules","value":"react/charts/area,react/charts/bar,react/charts/heatmap,react/charts/line,react/charts/pie,react/charts/radar,react/charts/scatter,react/hooks/use-chart-data,react/charts/base,react/charts/create-chart,react/charts/loading,react/charts/wrapper,react/charts/normalize,react/charts/constants,react/charts/theme,react/charts/utils,react/charts/options,react/charts/types,react/lib/format,react/genie/genie-chart-inference,react/genie/genie-chat,react/genie/genie-chat-input,react/genie/genie-chat-message,react/genie/genie-chat-message-list,react/genie/genie-query-transform,react/genie/genie-query-visualization,react/genie/use-genie-chat,react/resource-status-indicator,react/hooks/types,react/hooks/use-agent-chat,react/hooks/use-analytics-query,react/hooks/use-mobile,react/hooks/use-plugin-config,react/hooks/use-resource-status,react/hooks/use-serving-invoke,react/hooks/use-serving-stream,DonutChart,pie/DonutChart,PieChart,pie/PieChart,UseChartDataOptions,.hooks/use-chart-data/UseChartDataOptions,UseChartDataResult,.hooks/use-chart-data/UseChartDataResult,useChartData,.hooks/use-chart-data/useChartData,use-chart-data/UseChartDataOptions,use-chart-data/UseChartDataResult,use-chart-data/useChartData,BaseChart,base/BaseChart,BaseChartProps,base/BaseChartProps,LoadingSkeleton,loading/LoadingSkeleton,ResourceWaitingPlaceholder,loading/ResourceWaitingPlaceholder,ChartWrapper,wrapper/ChartWrapper,ChartWrapperProps,wrapper/ChartWrapperProps,NormalizedHeatmapData,normalize/NormalizedHeatmapData,normalizeChartData,normalize/normalizeChartData,normalizeHeatmapData,normalize/normalizeHeatmapData,CHART_COLOR_VARS,constants/CHART_COLOR_VARS,CHART_COLOR_VARS_CATEGORICAL,constants/CHART_COLOR_VARS_CATEGORICAL,CHART_COLOR_VARS_DIVERGING,constants/CHART_COLOR_VARS_DIVERGING,CHART_COLOR_VARS_SEQUENTIAL,constants/CHART_COLOR_VARS_SEQUENTIAL,DATE_FIELD_PATTERNS,constants/DATE_FIELD_PATTERNS,FALLBACK_COLORS_CATEGORICAL,constants/FALLBACK_COLORS_CATEGORICAL,FALLBACK_COLORS_DIVERGING,constants/FALLBACK_COLORS_DIVERGING,FALLBACK_COLORS_SEQUENTIAL,constants/FALLBACK_COLORS_SEQUENTIAL,METADATA_DATE_PATTERNS,constants/METADATA_DATE_PATTERNS,NAME_FIELD_PATTERNS,constants/NAME_FIELD_PATTERNS,useAllThemeColors,theme/useAllThemeColors,useThemeColors,theme/useThemeColors,createTimeSeriesData,utils/createTimeSeriesData,formatLabel,utils/formatLabel,sortTimeSeriesAscending,utils/sortTimeSeriesAscending,toChartArray,utils/toChartArray,toChartValue,utils/toChartValue,truncateLabel,utils/truncateLabel,buildCartesianOption,options/buildCartesianOption,buildHeatmapOption,options/buildHeatmapOption,buildHorizontalBarOption,options/buildHorizontalBarOption,buildPieOption,options/buildPieOption,buildRadarOption,options/buildRadarOption,CartesianContext,options/CartesianContext,HeatmapContext,options/HeatmapContext,OptionBuilderContext,options/OptionBuilderContext,AreaChartProps,types/AreaChartProps,AreaChartSpecificProps,types/AreaChartSpecificProps,BarChartProps,types/BarChartProps,BarChartSpecificProps,types/BarChartSpecificProps,ChartBaseProps,types/ChartBaseProps,ChartColorPalette,types/ChartColorPalette,ChartData,types/ChartData,ChartType,types/ChartType,DataFormat,types/DataFormat,DataProps,types/DataProps,DonutChartProps,types/DonutChartProps,HeatmapChartProps,types/HeatmapChartProps,HeatmapChartSpecificProps,types/HeatmapChartSpecificProps,LineChartProps,types/LineChartProps,LineChartSpecificProps,types/LineChartSpecificProps,NormalizedChartData,types/NormalizedChartData,NormalizedChartDataBase,types/NormalizedChartDataBase,Orientation,types/Orientation,PieChartProps,types/PieChartProps,PieChartSpecificProps,types/PieChartSpecificProps,QueryProps,types/QueryProps,RadarChartProps,types/RadarChartProps,RadarChartSpecificProps,types/RadarChartSpecificProps,ScatterChartProps,types/ScatterChartProps,ScatterChartSpecificProps,types/ScatterChartSpecificProps,UnifiedChartProps,types/UnifiedChartProps,isArrowTable,types/isArrowTable,isDataProps,types/isDataProps,isQueryProps,types/isQueryProps,ChartInference,genie-chart-inference/ChartInference,getCompatibleChartTypes,genie-chart-inference/getCompatibleChartTypes,inferChartType,genie-chart-inference/inferChartType,ColumnCategory,genie-query-transform/ColumnCategory,GenieColumnMeta,genie-query-transform/GenieColumnMeta,TransformedGenieData,genie-query-transform/TransformedGenieData,transformGenieData,genie-query-transform/transformGenieData,ResourceKindRenderer,.resource-status-indicator/ResourceKindRenderer,ResourceStatusIndicator,.resource-status-indicator/ResourceStatusIndicator,ResourceStatusIndicatorProps,.resource-status-indicator/ResourceStatusIndicatorProps,ResourceStatusToasterOptions,.resource-status-indicator/ResourceStatusToasterOptions,useResourceStatusToaster,.resource-status-indicator/useResourceStatusToaster,AnalyticsFormat,types/AnalyticsFormat,InferResultByFormat,types/InferResultByFormat,InferRowType,types/InferRowType,InferServingChunk,types/InferServingChunk,InferServingRequest,types/InferServingRequest,InferServingResponse,types/InferServingResponse,PluginRegistry,types/PluginRegistry,QueryRegistry,types/QueryRegistry,ServingAlias,types/ServingAlias,ServingEndpointRegistry,types/ServingEndpointRegistry,TypedArrowTable,types/TypedArrowTable,UseAnalyticsQueryOptions,types/UseAnalyticsQueryOptions,UseAnalyticsQueryResult,types/UseAnalyticsQueryResult,WarehouseState,types/WarehouseState,WarehouseStatus,types/WarehouseStatus,AgentChatEvent,use-agent-chat/AgentChatEvent,UseAgentChatOptions,use-agent-chat/UseAgentChatOptions,UseAgentChatResult,use-agent-chat/UseAgentChatResult,useAgentChat,use-agent-chat/useAgentChat,AggregatedResourceStatus,use-resource-status/AggregatedResourceStatus,ResourceSeverity,use-resource-status/ResourceSeverity,ResourceStatus,use-resource-status/ResourceStatus,ResourceStatusFilter,use-resource-status/ResourceStatusFilter,ResourceStatusProvider,use-resource-status/ResourceStatusProvider,ResourceStatusProviderProps,use-resource-status/ResourceStatusProviderProps,useResourceStatus,use-resource-status/useResourceStatus,useResourceStatusPublisher,use-resource-status/useResourceStatusPublisher,UseServingInvokeOptions,use-serving-invoke/UseServingInvokeOptions,UseServingInvokeResult,use-serving-invoke/UseServingInvokeResult,useServingInvoke,use-serving-invoke/useServingInvoke,UseServingStreamOptions,use-serving-stream/UseServingStreamOptions,UseServingStreamResult,use-serving-stream/UseServingStreamResult,useServingStream,use-serving-stream/useServingStream"},{"name":"ImportedModules","value":"react,useCallback,react/useCallback,useMemo,react/useMemo,useRef,react/useRef,react/jsx-runtime,react/jsx-runtime/jsx,Component,react/Component,jsxs,react/jsx-runtime/jsxs,useEffect,react/useEffect,useState,react/useState,useLayoutEffect,react/useLayoutEffect,useId,react/useId,createContext,react/createContext,useContext,react/useContext,useSyncExternalStore,react/useSyncExternalStore,Fragment,react/jsx-runtime/Fragment,react/JSX,ReactNode,react/ReactNode,KeyboardEvent,react/KeyboardEvent"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/react/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/react/package.json"}],"occurrences":[{"location":"dist/react/charts/base.js#5"},{"location":"dist/react/charts/base.js#6"},{"location":"dist/react/charts/chart-error-boundary.js#1"},{"location":"dist/react/charts/chart-error-boundary.js#2"},{"location":"dist/react/charts/create-chart.js#3"},{"location":"dist/react/charts/empty.js#1"},{"location":"dist/react/charts/error.js#1"},{"location":"dist/react/charts/loading.js#1"},{"location":"dist/react/charts/theme.js#2"},{"location":"dist/react/charts/wrapper.js#7"},{"location":"dist/react/file-browser/directory-list.js#5"},{"location":"dist/react/file-browser/file-breadcrumb.js#2"},{"location":"dist/react/file-browser/file-entry.js#3"},{"location":"dist/react/file-browser/file-preview-panel.js#5"},{"location":"dist/react/file-browser/new-folder-input.js#3"},{"location":"dist/react/file-browser/new-folder-input.js#4"},{"location":"dist/react/genie/genie-chat-input.js#3"},{"location":"dist/react/genie/genie-chat-input.js#4"},{"location":"dist/react/genie/genie-chat-message-list.js#7"},{"location":"dist/react/genie/genie-chat-message-list.js#8"},{"location":"dist/react/genie/genie-chat-message.js#5"},{"location":"dist/react/genie/genie-chat-message.js#6"},{"location":"dist/react/genie/genie-chat.js#6"},{"location":"dist/react/genie/genie-query-visualization.js#10"},{"location":"dist/react/genie/genie-query-visualization.js#11"},{"location":"dist/react/genie/use-genie-chat.js#4"},{"location":"dist/react/hooks/use-agent-chat.js#3"},{"location":"dist/react/hooks/use-analytics-query.js#6"},{"location":"dist/react/hooks/use-analytics-warehouse-status.js#2"},{"location":"dist/react/hooks/use-chart-data.js#2"},{"location":"dist/react/hooks/use-mobile.js#1"},{"location":"dist/react/hooks/use-query-hmr.js#1"},{"location":"dist/react/hooks/use-resource-status.js#1"},{"location":"dist/react/hooks/use-resource-status.js#2"},{"location":"dist/react/hooks/use-serving-invoke.js#2"},{"location":"dist/react/hooks/use-serving-stream.js#4"},{"location":"dist/react/portal-container-context.js#1"},{"location":"dist/react/portal-container-context.js#2"},{"location":"dist/react/resource-status-indicator.js#3"},{"location":"dist/react/resource-status-indicator.js#4"},{"location":"dist/react/table/data-table.js#8"},{"location":"dist/react/table/empty.js#1"},{"location":"dist/react/table/error.js#1"},{"location":"dist/react/table/loading.js#1"},{"location":"dist/react/table/table-wrapper.js#9"},{"location":"dist/react/table/table-wrapper.js#10"},{"location":"dist/react/ui/accordion.js#2"},{"location":"dist/react/ui/alert-dialog.js#4"},{"location":"dist/react/ui/alert.js#2"},{"location":"dist/react/ui/aspect-ratio.js#3"},{"location":"dist/react/ui/avatar.js#2"},{"location":"dist/react/ui/badge.js#2"},{"location":"dist/react/ui/breadcrumb.js#2"},{"location":"dist/react/ui/button-group.js#3"},{"location":"dist/react/ui/button.js#2"},{"location":"dist/react/ui/calendar.js#5"},{"location":"dist/react/ui/calendar.js#6"},{"location":"dist/react/ui/card.js#2"},{"location":"dist/react/ui/carousel.js#3"},{"location":"dist/react/ui/carousel.js#4"},{"location":"dist/react/ui/chart.js#4"},{"location":"dist/react/ui/chart.js#5"},{"location":"dist/react/ui/checkbox.js#4"},{"location":"dist/react/ui/collapsible.js#1"},{"location":"dist/react/ui/command.js#3"},{"location":"dist/react/ui/context-menu.js#5"},{"location":"dist/react/ui/dialog.js#3"},{"location":"dist/react/ui/drawer.js#5"},{"location":"dist/react/ui/dropdown-menu.js#3"},{"location":"dist/react/ui/empty.js#2"},{"location":"dist/react/ui/field.js#4"},{"location":"dist/react/ui/field.js#5"},{"location":"dist/react/ui/form.js#5"},{"location":"dist/react/ui/form.js#6"},{"location":"dist/react/ui/hover-card.js#5"},{"location":"dist/react/ui/input-group.js#7"},{"location":"dist/react/ui/input-otp.js#2"},{"location":"dist/react/ui/input-otp.js#3"},{"location":"dist/react/ui/input.js#2"},{"location":"dist/react/ui/item.js#3"},{"location":"dist/react/ui/kbd.js#2"},{"location":"dist/react/ui/label.js#4"},{"location":"dist/react/ui/menubar.js#3"},{"location":"dist/react/ui/navigation-menu.js#2"},{"location":"dist/react/ui/pagination.js#3"},{"location":"dist/react/ui/popover.js#5"},{"location":"dist/react/ui/progress.js#2"},{"location":"dist/react/ui/radio-group.js#4"},{"location":"dist/react/ui/resizable.js#2"},{"location":"dist/react/ui/scroll-area.js#4"},{"location":"dist/react/ui/select.js#3"},{"location":"dist/react/ui/separator.js#4"},{"location":"dist/react/ui/sheet.js#3"},{"location":"dist/react/ui/sidebar.js#11"},{"location":"dist/react/ui/sidebar.js#12"},{"location":"dist/react/ui/skeleton.js#2"},{"location":"dist/react/ui/slider.js#4"},{"location":"dist/react/ui/slider.js#5"},{"location":"dist/react/ui/sonner.js#1"},{"location":"dist/react/ui/spinner.js#2"},{"location":"dist/react/ui/switch.js#4"},{"location":"dist/react/ui/table.js#2"},{"location":"dist/react/ui/tabs.js#4"},{"location":"dist/react/ui/textarea.js#2"},{"location":"dist/react/ui/toggle-group.js#3"},{"location":"dist/react/ui/toggle-group.js#4"},{"location":"dist/react/ui/toggle.js#2"},{"location":"dist/react/ui/tooltip.js#5"},{"location":"tmp/dist/react/charts/base.js#5"},{"location":"tmp/dist/react/charts/base.js#6"},{"location":"tmp/dist/react/charts/chart-error-boundary.js#1"},{"location":"tmp/dist/react/charts/chart-error-boundary.js#2"},{"location":"tmp/dist/react/charts/create-chart.js#3"},{"location":"tmp/dist/react/charts/empty.js#1"},{"location":"tmp/dist/react/charts/error.js#1"},{"location":"tmp/dist/react/charts/loading.js#1"},{"location":"tmp/dist/react/charts/theme.js#2"},{"location":"tmp/dist/react/charts/wrapper.js#7"},{"location":"tmp/dist/react/file-browser/directory-list.js#5"},{"location":"tmp/dist/react/file-browser/file-breadcrumb.js#2"},{"location":"tmp/dist/react/file-browser/file-entry.js#3"},{"location":"tmp/dist/react/file-browser/file-preview-panel.js#5"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#3"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-input.js#3"},{"location":"tmp/dist/react/genie/genie-chat-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-message-list.js#7"},{"location":"tmp/dist/react/genie/genie-chat-message-list.js#8"},{"location":"tmp/dist/react/genie/genie-chat-message.js#5"},{"location":"tmp/dist/react/genie/genie-chat-message.js#6"},{"location":"tmp/dist/react/genie/genie-chat.js#6"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#10"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#11"},{"location":"tmp/dist/react/genie/use-genie-chat.js#4"},{"location":"tmp/dist/react/hooks/use-agent-chat.js#3"},{"location":"tmp/dist/react/hooks/use-analytics-query.js#6"},{"location":"tmp/dist/react/hooks/use-analytics-warehouse-status.js#2"},{"location":"tmp/dist/react/hooks/use-chart-data.js#2"},{"location":"tmp/dist/react/hooks/use-mobile.js#1"},{"location":"tmp/dist/react/hooks/use-query-hmr.js#1"},{"location":"tmp/dist/react/hooks/use-resource-status.js#1"},{"location":"tmp/dist/react/hooks/use-resource-status.js#2"},{"location":"tmp/dist/react/hooks/use-serving-invoke.js#2"},{"location":"tmp/dist/react/hooks/use-serving-stream.js#4"},{"location":"tmp/dist/react/portal-container-context.js#1"},{"location":"tmp/dist/react/portal-container-context.js#2"},{"location":"tmp/dist/react/resource-status-indicator.js#3"},{"location":"tmp/dist/react/resource-status-indicator.js#4"},{"location":"tmp/dist/react/table/data-table.js#8"},{"location":"tmp/dist/react/table/empty.js#1"},{"location":"tmp/dist/react/table/error.js#1"},{"location":"tmp/dist/react/table/loading.js#1"},{"location":"tmp/dist/react/table/table-wrapper.js#9"},{"location":"tmp/dist/react/table/table-wrapper.js#10"},{"location":"tmp/dist/react/ui/accordion.js#2"},{"location":"tmp/dist/react/ui/alert-dialog.js#4"},{"location":"tmp/dist/react/ui/alert.js#2"},{"location":"tmp/dist/react/ui/aspect-ratio.js#3"},{"location":"tmp/dist/react/ui/avatar.js#2"},{"location":"tmp/dist/react/ui/badge.js#2"},{"location":"tmp/dist/react/ui/breadcrumb.js#2"},{"location":"tmp/dist/react/ui/button-group.js#3"},{"location":"tmp/dist/react/ui/button.js#2"},{"location":"tmp/dist/react/ui/calendar.js#5"},{"location":"tmp/dist/react/ui/calendar.js#6"},{"location":"tmp/dist/react/ui/card.js#2"},{"location":"tmp/dist/react/ui/carousel.js#3"},{"location":"tmp/dist/react/ui/carousel.js#4"},{"location":"tmp/dist/react/ui/chart.js#4"},{"location":"tmp/dist/react/ui/chart.js#5"},{"location":"tmp/dist/react/ui/checkbox.js#4"},{"location":"tmp/dist/react/ui/collapsible.js#1"},{"location":"tmp/dist/react/ui/command.js#3"},{"location":"tmp/dist/react/ui/context-menu.js#5"},{"location":"tmp/dist/react/ui/dialog.js#3"},{"location":"tmp/dist/react/ui/drawer.js#5"},{"location":"tmp/dist/react/ui/dropdown-menu.js#3"},{"location":"tmp/dist/react/ui/empty.js#2"},{"location":"tmp/dist/react/ui/field.js#4"},{"location":"tmp/dist/react/ui/field.js#5"},{"location":"tmp/dist/react/ui/form.js#5"},{"location":"tmp/dist/react/ui/form.js#6"},{"location":"tmp/dist/react/ui/hover-card.js#5"},{"location":"tmp/dist/react/ui/input-group.js#7"},{"location":"tmp/dist/react/ui/input-otp.js#2"},{"location":"tmp/dist/react/ui/input-otp.js#3"},{"location":"tmp/dist/react/ui/input.js#2"},{"location":"tmp/dist/react/ui/item.js#3"},{"location":"tmp/dist/react/ui/kbd.js#2"},{"location":"tmp/dist/react/ui/label.js#4"},{"location":"tmp/dist/react/ui/menubar.js#3"},{"location":"tmp/dist/react/ui/navigation-menu.js#2"},{"location":"tmp/dist/react/ui/pagination.js#3"},{"location":"tmp/dist/react/ui/popover.js#5"},{"location":"tmp/dist/react/ui/progress.js#2"},{"location":"tmp/dist/react/ui/radio-group.js#4"},{"location":"tmp/dist/react/ui/resizable.js#2"},{"location":"tmp/dist/react/ui/scroll-area.js#4"},{"location":"tmp/dist/react/ui/select.js#3"},{"location":"tmp/dist/react/ui/separator.js#4"},{"location":"tmp/dist/react/ui/sheet.js#3"},{"location":"tmp/dist/react/ui/sidebar.js#11"},{"location":"tmp/dist/react/ui/sidebar.js#12"},{"location":"tmp/dist/react/ui/skeleton.js#2"},{"location":"tmp/dist/react/ui/slider.js#4"},{"location":"tmp/dist/react/ui/slider.js#5"},{"location":"tmp/dist/react/ui/sonner.js#1"},{"location":"tmp/dist/react/ui/spinner.js#2"},{"location":"tmp/dist/react/ui/switch.js#4"},{"location":"tmp/dist/react/ui/table.js#2"},{"location":"tmp/dist/react/ui/tabs.js#4"},{"location":"tmp/dist/react/ui/textarea.js#2"},{"location":"tmp/dist/react/ui/toggle-group.js#3"},{"location":"tmp/dist/react/ui/toggle-group.js#4"},{"location":"tmp/dist/react/ui/toggle.js#2"},{"location":"tmp/dist/react/ui/tooltip.js#5"},{"location":"src/react/charts/theme.ts#1"},{"location":"src/react/genie/use-genie-chat.ts#1"},{"location":"src/react/hooks/use-agent-chat.ts#1"},{"location":"src/react/hooks/use-analytics-query.ts#8"},{"location":"src/react/hooks/use-analytics-warehouse-status.ts#1"},{"location":"src/react/hooks/use-chart-data.ts#2"},{"location":"src/react/hooks/use-mobile.ts#1"},{"location":"src/react/hooks/use-query-hmr.ts#1"},{"location":"src/react/hooks/use-serving-invoke.ts#1"},{"location":"src/react/hooks/use-serving-stream.ts#1"},{"location":"src/react/charts/area/index.tsx#1"},{"location":"src/react/charts/bar/index.tsx#1"},{"location":"src/react/charts/base.tsx#3"},{"location":"src/react/charts/chart-error-boundary.tsx#1"},{"location":"src/react/charts/heatmap/index.tsx#1"},{"location":"src/react/charts/line/index.tsx#1"},{"location":"src/react/charts/pie/index.tsx#1"},{"location":"src/react/charts/radar/index.tsx#1"},{"location":"src/react/charts/scatter/index.tsx#1"},{"location":"src/react/charts/wrapper.tsx#1"},{"location":"src/react/file-browser/new-folder-input.tsx#2"},{"location":"src/react/genie/genie-chat-input.tsx#1"},{"location":"src/react/genie/genie-chat-message-list.tsx#1"},{"location":"src/react/genie/genie-chat-message.tsx#3"},{"location":"src/react/genie/genie-query-visualization.tsx#2"},{"location":"src/react/hooks/use-resource-status.tsx#9"},{"location":"src/react/portal-container-context.tsx#1"},{"location":"src/react/portal-container-context.tsx#2"},{"location":"src/react/resource-status-indicator.tsx#2"},{"location":"src/react/table/table-wrapper.tsx#16"},{"location":"src/react/ui/accordion.tsx#1"},{"location":"src/react/ui/alert-dialog.tsx#1"},{"location":"src/react/ui/alert.tsx#1"},{"location":"src/react/ui/avatar.tsx#1"},{"location":"src/react/ui/badge.tsx#1"},{"location":"src/react/ui/breadcrumb.tsx#1"},{"location":"src/react/ui/button.tsx#1"},{"location":"src/react/ui/calendar.tsx#4"},{"location":"src/react/ui/card.tsx#1"},{"location":"src/react/ui/carousel.tsx#1"},{"location":"src/react/ui/chart.tsx#3"},{"location":"src/react/ui/checkbox.tsx#3"},{"location":"src/react/ui/command.tsx#1"},{"location":"src/react/ui/context-menu.tsx#3"},{"location":"src/react/ui/dialog.tsx#1"},{"location":"src/react/ui/drawer.tsx#3"},{"location":"src/react/ui/dropdown-menu.tsx#1"},{"location":"src/react/ui/field.tsx#1"},{"location":"src/react/ui/form.tsx#3"},{"location":"src/react/ui/hover-card.tsx#3"},{"location":"src/react/ui/input-group.tsx#3"},{"location":"src/react/ui/input-otp.tsx#1"},{"location":"src/react/ui/input.tsx#1"},{"location":"src/react/ui/item.tsx#1"},{"location":"src/react/ui/label.tsx#3"},{"location":"src/react/ui/menubar.tsx#1"},{"location":"src/react/ui/navigation-menu.tsx#1"},{"location":"src/react/ui/pagination.tsx#1"},{"location":"src/react/ui/popover.tsx#3"},{"location":"src/react/ui/progress.tsx#1"},{"location":"src/react/ui/radio-group.tsx#3"},{"location":"src/react/ui/resizable.tsx#1"},{"location":"src/react/ui/scroll-area.tsx#3"},{"location":"src/react/ui/select.tsx#1"},{"location":"src/react/ui/separator.tsx#3"},{"location":"src/react/ui/sheet.tsx#1"},{"location":"src/react/ui/sidebar.tsx#3"},{"location":"src/react/ui/slider.tsx#3"},{"location":"src/react/ui/switch.tsx#3"},{"location":"src/react/ui/table.tsx#1"},{"location":"src/react/ui/tabs.tsx#3"},{"location":"src/react/ui/textarea.tsx#1"},{"location":"src/react/ui/toggle-group.tsx#1"},{"location":"src/react/ui/toggle.tsx#1"},{"location":"src/react/ui/tooltip.tsx#3"},{"location":"dist/react/charts/base.js#6"},{"location":"dist/react/charts/chart-error-boundary.js#2"},{"location":"dist/react/charts/create-chart.js#3"},{"location":"dist/react/charts/empty.js#1"},{"location":"dist/react/charts/error.js#1"},{"location":"dist/react/charts/loading.js#1"},{"location":"dist/react/charts/wrapper.js#7"},{"location":"dist/react/file-browser/directory-list.js#5"},{"location":"dist/react/file-browser/file-breadcrumb.js#2"},{"location":"dist/react/file-browser/file-entry.js#3"},{"location":"dist/react/file-browser/file-preview-panel.js#5"},{"location":"dist/react/file-browser/new-folder-input.js#4"},{"location":"dist/react/genie/genie-chat-input.js#4"},{"location":"dist/react/genie/genie-chat-message-list.js#8"},{"location":"dist/react/genie/genie-chat-message.js#6"},{"location":"dist/react/genie/genie-chat.js#6"},{"location":"dist/react/genie/genie-query-visualization.js#11"},{"location":"dist/react/hooks/use-resource-status.js#2"},{"location":"dist/react/portal-container-context.js#2"},{"location":"dist/react/resource-status-indicator.js#4"},{"location":"dist/react/table/data-table.js#8"},{"location":"dist/react/table/empty.js#1"},{"location":"dist/react/table/error.js#1"},{"location":"dist/react/table/loading.js#1"},{"location":"dist/react/table/table-wrapper.js#10"},{"location":"dist/react/ui/accordion.js#2"},{"location":"dist/react/ui/alert-dialog.js#4"},{"location":"dist/react/ui/alert.js#2"},{"location":"dist/react/ui/aspect-ratio.js#3"},{"location":"dist/react/ui/avatar.js#2"},{"location":"dist/react/ui/badge.js#2"},{"location":"dist/react/ui/breadcrumb.js#2"},{"location":"dist/react/ui/button-group.js#3"},{"location":"dist/react/ui/button.js#2"},{"location":"dist/react/ui/calendar.js#6"},{"location":"dist/react/ui/card.js#2"},{"location":"dist/react/ui/carousel.js#4"},{"location":"dist/react/ui/chart.js#5"},{"location":"dist/react/ui/checkbox.js#4"},{"location":"dist/react/ui/collapsible.js#1"},{"location":"dist/react/ui/command.js#3"},{"location":"dist/react/ui/context-menu.js#5"},{"location":"dist/react/ui/dialog.js#3"},{"location":"dist/react/ui/drawer.js#5"},{"location":"dist/react/ui/dropdown-menu.js#3"},{"location":"dist/react/ui/empty.js#2"},{"location":"dist/react/ui/field.js#5"},{"location":"dist/react/ui/form.js#6"},{"location":"dist/react/ui/hover-card.js#5"},{"location":"dist/react/ui/input-group.js#7"},{"location":"dist/react/ui/input-otp.js#3"},{"location":"dist/react/ui/input.js#2"},{"location":"dist/react/ui/item.js#3"},{"location":"dist/react/ui/kbd.js#2"},{"location":"dist/react/ui/label.js#4"},{"location":"dist/react/ui/menubar.js#3"},{"location":"dist/react/ui/navigation-menu.js#2"},{"location":"dist/react/ui/pagination.js#3"},{"location":"dist/react/ui/popover.js#5"},{"location":"dist/react/ui/progress.js#2"},{"location":"dist/react/ui/radio-group.js#4"},{"location":"dist/react/ui/resizable.js#2"},{"location":"dist/react/ui/scroll-area.js#4"},{"location":"dist/react/ui/select.js#3"},{"location":"dist/react/ui/separator.js#4"},{"location":"dist/react/ui/sheet.js#3"},{"location":"dist/react/ui/sidebar.js#12"},{"location":"dist/react/ui/skeleton.js#2"},{"location":"dist/react/ui/slider.js#5"},{"location":"dist/react/ui/sonner.js#1"},{"location":"dist/react/ui/spinner.js#2"},{"location":"dist/react/ui/switch.js#4"},{"location":"dist/react/ui/table.js#2"},{"location":"dist/react/ui/tabs.js#4"},{"location":"dist/react/ui/textarea.js#2"},{"location":"dist/react/ui/toggle-group.js#4"},{"location":"dist/react/ui/toggle.js#2"},{"location":"dist/react/ui/tooltip.js#5"},{"location":"tmp/dist/react/charts/base.js#6"},{"location":"tmp/dist/react/charts/chart-error-boundary.js#2"},{"location":"tmp/dist/react/charts/create-chart.js#3"},{"location":"tmp/dist/react/charts/empty.js#1"},{"location":"tmp/dist/react/charts/error.js#1"},{"location":"tmp/dist/react/charts/loading.js#1"},{"location":"tmp/dist/react/charts/wrapper.js#7"},{"location":"tmp/dist/react/file-browser/directory-list.js#5"},{"location":"tmp/dist/react/file-browser/file-breadcrumb.js#2"},{"location":"tmp/dist/react/file-browser/file-entry.js#3"},{"location":"tmp/dist/react/file-browser/file-preview-panel.js#5"},{"location":"tmp/dist/react/file-browser/new-folder-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-input.js#4"},{"location":"tmp/dist/react/genie/genie-chat-message-list.js#8"},{"location":"tmp/dist/react/genie/genie-chat-message.js#6"},{"location":"tmp/dist/react/genie/genie-chat.js#6"},{"location":"tmp/dist/react/genie/genie-query-visualization.js#11"},{"location":"tmp/dist/react/hooks/use-resource-status.js#2"},{"location":"tmp/dist/react/portal-container-context.js#2"},{"location":"tmp/dist/react/resource-status-indicator.js#4"},{"location":"tmp/dist/react/table/data-table.js#8"},{"location":"tmp/dist/react/table/empty.js#1"},{"location":"tmp/dist/react/table/error.js#1"},{"location":"tmp/dist/react/table/loading.js#1"},{"location":"tmp/dist/react/table/table-wrapper.js#10"},{"location":"tmp/dist/react/ui/accordion.js#2"},{"location":"tmp/dist/react/ui/alert-dialog.js#4"},{"location":"tmp/dist/react/ui/alert.js#2"},{"location":"tmp/dist/react/ui/aspect-ratio.js#3"},{"location":"tmp/dist/react/ui/avatar.js#2"},{"location":"tmp/dist/react/ui/badge.js#2"},{"location":"tmp/dist/react/ui/breadcrumb.js#2"},{"location":"tmp/dist/react/ui/button-group.js#3"},{"location":"tmp/dist/react/ui/button.js#2"},{"location":"tmp/dist/react/ui/calendar.js#6"},{"location":"tmp/dist/react/ui/card.js#2"},{"location":"tmp/dist/react/ui/carousel.js#4"},{"location":"tmp/dist/react/ui/chart.js#5"},{"location":"tmp/dist/react/ui/checkbox.js#4"},{"location":"tmp/dist/react/ui/collapsible.js#1"},{"location":"tmp/dist/react/ui/command.js#3"},{"location":"tmp/dist/react/ui/context-menu.js#5"},{"location":"tmp/dist/react/ui/dialog.js#3"},{"location":"tmp/dist/react/ui/drawer.js#5"},{"location":"tmp/dist/react/ui/dropdown-menu.js#3"},{"location":"tmp/dist/react/ui/empty.js#2"},{"location":"tmp/dist/react/ui/field.js#5"},{"location":"tmp/dist/react/ui/form.js#6"},{"location":"tmp/dist/react/ui/hover-card.js#5"},{"location":"tmp/dist/react/ui/input-group.js#7"},{"location":"tmp/dist/react/ui/input-otp.js#3"},{"location":"tmp/dist/react/ui/input.js#2"},{"location":"tmp/dist/react/ui/item.js#3"},{"location":"tmp/dist/react/ui/kbd.js#2"},{"location":"tmp/dist/react/ui/label.js#4"},{"location":"tmp/dist/react/ui/menubar.js#3"},{"location":"tmp/dist/react/ui/navigation-menu.js#2"},{"location":"tmp/dist/react/ui/pagination.js#3"},{"location":"tmp/dist/react/ui/popover.js#5"},{"location":"tmp/dist/react/ui/progress.js#2"},{"location":"tmp/dist/react/ui/radio-group.js#4"},{"location":"tmp/dist/react/ui/resizable.js#2"},{"location":"tmp/dist/react/ui/scroll-area.js#4"},{"location":"tmp/dist/react/ui/select.js#3"},{"location":"tmp/dist/react/ui/separator.js#4"},{"location":"tmp/dist/react/ui/sheet.js#3"},{"location":"tmp/dist/react/ui/sidebar.js#12"},{"location":"tmp/dist/react/ui/skeleton.js#2"},{"location":"tmp/dist/react/ui/slider.js#5"},{"location":"tmp/dist/react/ui/sonner.js#1"},{"location":"tmp/dist/react/ui/spinner.js#2"},{"location":"tmp/dist/react/ui/switch.js#4"},{"location":"tmp/dist/react/ui/table.js#2"},{"location":"tmp/dist/react/ui/tabs.js#4"},{"location":"tmp/dist/react/ui/textarea.js#2"},{"location":"tmp/dist/react/ui/toggle-group.js#4"},{"location":"tmp/dist/react/ui/toggle.js#2"},{"location":"tmp/dist/react/ui/tooltip.js#5"}]},"tags":["framework"]},{"authors":[{"name":"recharts group"}],"group":"","name":"recharts","version":"2.15.4","description":"React charts","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/recharts@2.15.4","externalReferences":[{"type":"vcs","url":"https://github.com/recharts/recharts"},{"type":"vcs","url":"git+https://github.com/recharts/recharts.git"}],"type":"library","bom-ref":"pkg:npm/recharts@2.15.4","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/recharts/package.json"},{"name":"ImportedModules","value":"recharts"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/recharts/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/recharts/package.json"}],"occurrences":[{"location":"dist/react/ui/chart.js#6"},{"location":"tmp/dist/react/ui/chart.js#6"},{"location":"src/react/ui/chart.tsx#4"}]}},{"group":"","name":"shared","version":"0.0.1","scope":"required","purl":"pkg:npm/shared@0.0.1","type":"library","bom-ref":"pkg:npm/shared@0.0.1","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/shared/package.json"},{"name":"ExportedModules","value":"shared,isSQLTypeMarker,shared/isSQLTypeMarker,SQLBinaryMarker,shared/SQLBinaryMarker,SQLBooleanMarker,shared/SQLBooleanMarker,SQLDateMarker,shared/SQLDateMarker,SQLNumberMarker,shared/SQLNumberMarker,SQLStringMarker,shared/SQLStringMarker,SQLTimestampMarker,shared/SQLTimestampMarker,SQLTypeMarker,shared/SQLTypeMarker,shared/sql,GenieAttachmentResponse,shared/GenieAttachmentResponse,GenieMessageResponse,shared/GenieMessageResponse,GenieStatementResponse,shared/GenieStatementResponse,GenieStreamEvent,shared/GenieStreamEvent"},{"name":"ImportedModules","value":"shared,GenieStatementResponse,shared/GenieStatementResponse,GenieAttachmentResponse,shared/GenieAttachmentResponse"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/shared/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/shared/package.json"}],"occurrences":[{"location":"src/js/index.ts#11"},{"location":"src/react/genie/genie-query-transform.ts#11"},{"location":"src/react/genie/types.ts#1"},{"location":"src/react/genie/types.ts#8"},{"location":"src/react/genie/genie-query-visualization.tsx#3"}]},"tags":["sql"]},{"authors":[{"name":"Emil Kowalski <e@emilkowal.ski>"}],"group":"","name":"sonner","version":"2.0.7","description":"An opinionated toast component for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/sonner@2.0.7","externalReferences":[{"type":"website","url":"https://sonner.emilkowal.ski/"},{"type":"vcs","url":"git+https://github.com/emilkowalski/sonner.git"}],"type":"library","bom-ref":"pkg:npm/sonner@2.0.7","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/sonner/package.json"},{"name":"ImportedModules","value":"sonner,toast,sonner/toast,Toaster,sonner/Toaster,ToasterProps,sonner/ToasterProps"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/sonner/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/sonner/package.json"}],"occurrences":[{"location":"dist/react/resource-status-indicator.js#5"},{"location":"dist/react/ui/sonner.js#3"},{"location":"tmp/dist/react/resource-status-indicator.js#5"},{"location":"tmp/dist/react/ui/sonner.js#3"},{"location":"src/react/resource-status-indicator.tsx#3"},{"location":"src/react/ui/sonner.tsx#10"}]}},{"authors":[{"name":"Dany Castillo"}],"group":"","name":"tailwind-merge","version":"3.4.0","description":"Merge Tailwind CSS classes without style conflicts","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/tailwind-merge@3.4.0","externalReferences":[{"type":"vcs","url":"https://github.com/dcastil/tailwind-merge"},{"type":"vcs","url":"https://github.com/dcastil/tailwind-merge.git"}],"type":"library","bom-ref":"pkg:npm/tailwind-merge@3.4.0","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/tailwind-merge/package.json"},{"name":"ImportedModules","value":"tailwind-merge,twMerge,tailwind-merge/twMerge"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/tailwind-merge/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/tailwind-merge/package.json"}],"occurrences":[{"location":"dist/react/lib/utils.js#2"},{"location":"tmp/dist/react/lib/utils.js#2"},{"location":"src/react/lib/utils.ts#2"}]}},{"authors":[{"name":"Emil Kowalski <e@emilkowal.ski>"}],"group":"","name":"vaul","version":"1.1.2","description":"Drawer component for React.","scope":"required","licenses":[{"license":{"id":"MIT","url":"https://opensource.org/licenses/MIT"}}],"purl":"pkg:npm/vaul@1.1.2","externalReferences":[{"type":"website","url":"https://vaul.emilkowal.ski/"},{"type":"vcs","url":"https://github.com/emilkowalski/vaul.git"}],"type":"library","bom-ref":"pkg:npm/vaul@1.1.2","properties":[{"name":"SrcFile","value":"packages/appkit-ui/node_modules/vaul/package.json"},{"name":"ImportedModules","value":"vaul,Drawer,vaul/Drawer"}],"evidence":{"identity":[{"field":"purl","confidence":0.7,"methods":[{"technique":"manifest-analysis","confidence":0.7,"value":"packages/appkit-ui/node_modules/vaul/package.json"}],"concludedValue":"packages/appkit-ui/node_modules/vaul/package.json"}],"occurrences":[{"location":"dist/react/ui/drawer.js#6"},{"location":"tmp/dist/react/ui/drawer.js#6"},{"location":"src/react/ui/drawer.tsx#4"}]}}],"dependencies":[],"compositions":[{"bom-ref":"pkg:npm/@databricks/appkit-ui@0.41.1","aggregate":"incomplete"}],"annotations":[{"bom-ref":"metadata-annotations","subjects":["pkg:npm/@databricks/appkit-ui@0.41.1"],"annotator":{"component":{"group":"@cyclonedx","name":"cdxgen","version":"12.1.2","purl":"pkg:npm/%40cyclonedx/cdxgen@12.1.2","type":"application","bom-ref":"pkg:npm/@cyclonedx/cdxgen@12.1.2","publisher":"OWASP Foundation","authors":[{"name":"OWASP Foundation"}]}},"timestamp":"2026-06-09T12:22:59Z","text":"This Software Bill-of-Materials (SBOM) document was created on Tuesday, June 9, 2026 with cdxgen. The data was captured during the build lifecycle phase. The document describes an application named 'appkit-ui' with version '0.41.1'. There are 48 components. The package type in this SBOM is npm with 2 purl namespaces described under components. The components were identified from 48 source files."}]}
|