Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bext: update release branch #57266

Merged
merged 3,548 commits into from
Oct 2, 2023
Merged

bext: update release branch #57266

merged 3,548 commits into from
Oct 2, 2023

Conversation

camdencheek
Copy link
Member

@camdencheek camdencheek commented Oct 2, 2023

This updates the bext/release branch to point to the latest main. Based on the documentation here, it seems that's all that's needed to do a release of the browser extension, and the rest will happen in CI. This doesn't include the Safari extension, but it looks like this hasn't been done since April, so let's see Firefox and Chrome work first.

Test plan

Will check that the firefox and chrome extensions successfully get published.

Preview 🤩

Preview Link

stefanhengl and others added 30 commits September 19, 2023 17:53
Relates to #sourcegraph/zoekt/646

Test plan:
just a Changelog update


Co-authored-by: Thorsten Ball <mrnugget@gmail.com>
)

Co-authored-by: Eric Fritz <eric@sourcegraph.com>
* Make `sg wolfi update-hashes` work on single images

* User friendly tweak: oci_deps uses `_` in image names rather than `-` which are used everywhere else, so autoreplace them

* sg generate
…56730)

* Connect view logs and download results search job UI

* Update bazel configuration

* Adjust order argument

* change routes

* Respect URL file name

* Use page like (bi-directional) pagination
* add onboarding tour back to homepage

* user-onboarding: Add back (simplified) user onboarding tour

This commit adds back the existing onboarding tour with a couple of
changes:

- The tour is only shown
  - for authenticated users
  - on non-dotcom instances
  - when the `end-user-onboarding` feature flag is set
- The cody CTA is only shown when the onboarding tour is not shown. In
  a future PR the content of the tour will be updated to include cody
  specific steps.

* Update other tour callsites

* Update stories

---------

Co-authored-by: Coury Clark <coury@sourcegraph.com>
This PR introduces a new "search query" step type to the onboarding tour. This type takes a query template and a list of code snippets. When the step is rendered it will make an "exploratory" query for each code snippet to find one that returns results. That query is then used in the onboarding tour.

The query template currently supports four variables: $$userorg, $$userrepo, $$userlangand$$snippet`.

The PR also removes the old logic for determining the user's language, which will be supplied by the user in a different way.
I am no longer working primarily on search backend work, and the
notifications are getting a bit overwhelming. As always, feel free to
ping me directly for a review
searchJobResolver.State now returns a state based on the aggregate
state of all (sub-)jobs related to the job.

Now, only if all (sub-)jobs completed successfuly will the job report the
state "Completed". Previously, we reported "Complete" once the top-level
finsihed, even if repo-rev jobs were still running.

Test plan:
- Updated unit test
- Manual testing

````
mutation create {
  createSearchJob(query: "context:global 1@rev1 2@rev5 3@rev6") {
    id
  }
}

query state {
  node(id: "U2VhcmNoSm9iOjEwNQ==") {
    ... on SearchJob {
      repoStats {
    	inProgress
        failed
        completed
        total
      }
      state
    }
  }
}

{
  "data": {
    "node": {
      "repoStats": {
        "inProgress": 0,
        "failed": 0,
        "completed": 7,
        "total": 7
      },
      "state": "COMPLETED"
    }
  }
}
````
Fixes #56783

The accuracy of the cursor was less than the accuracy of the dates in
the db. The reounding errors caused the pagination to behave oddly.
…rience (#56768)

This PR integrates the onboarding tour with the admin configuration, i.e. the onboarding tour now uses the content configuration from the server.

Additionally I made some changes to the admin page to improve UX:

- Show a simple of preview of the onboarding tour, which live updates as the config is edited
- Added separate schema validation (outside of Monaco) to
  - ensure that the preview always gets a valid config
  - ensure that the user cannot save an invalid schema (and break the tour for other users)
  - make errors in the config more visible
- Added a "Reset" button to restore the original (hardcoded) onboarding tour so that the user can always go back to a valid config.

It also fixes some issues overlooked in the previous PR (such as schema issues).

Note for the schema validation: I also could have added validation logic when loading the config for the real tour, but that would add a couple of dependencies to the "normal" pages that shouldn't be necessary. Preventing an invalid config from getting in in the first place seems better.

Note on the preview: In order to make the preview work I moved some logic into the tour context, do that those values can be overwritten easily for the preview. Specifically this affects the dynamic query generation, which we don't want to do for the preview.
* fill out `CheckConnection` and mark Perforce as able to check connections.

* Refactor the connection test to not rely on IsCloneable
Because connecting to Perforce requires using the `p4` CLI binary,
which is on `gitserver`, we're using the Perforce VCS Syncer to do the connection check.
Add a method to the VCS syncer for Perforce specifically for checking the connection
instead of hacking a solution that re-uses IsCloneable, which requires a valid depot.
Adding another func won't break composition with VCSSyncer.

* update comment on CheckConnection

* add a 10-second timeout for the connection test
10 seconds is somewhat arbitrary, but seems like enough time to allow
for various connection issues, whle not being too long for the frontend.

* Change from directly using the syncer
to making an RPC call to gitserver because the call to
CheckConnection comes fro mthe frontend, where `p4` is not available.
…to shorten it

This is rather finicky - we need to be careful not to change the defaults or existing projects

## Test plan

sourcegraph/managed-services#7
This updates variable names, property names, env var names, etc., to call it "Cody App".

The entire diff was created by running the following commands:

```
fastmod -e go SourcegraphAppMode CodyAppMode
fastmod -e go,ts,tsx sourcegraphAppMode codyAppMode
fastmod -e ts,tsx isSourcegraphApp isCodyApp
fastmod -e ts,tsx,go,yaml,sh,js SOURCEGRAPH_APP CODY_APP
fastmod -e ts,tsx,go,json,mod,graphql,md,js 'Sourcegraph App\b' 'Cody App'
fastmod -e ts,tsx,go,json,mod,graphql,md,js 'Sourcegraph app\b' 'Cody app' # with a few changes skipped
```
Part of #56286 . Stubs the GraphQL mutations that will allow clients to report data to our new telemetry events system.

It's similar to the gRPC API we are going to expose for ingesting this data on our end: #56519, except excluding fields that we can (and should) be hydrating serverside instead. 

See stack for the rest of the implementation: #56297 (comment)

## Test plan

```
sg start
```

![image](https://github.com/sourcegraph/sourcegraph/assets/23356519/f2a182a4-4cee-4ad8-9a39-d11b7cfcc304)
Lays out the gRPC API proposed in https://docs.google.com/document/d/14WBt80sbmVm73B-R1Srs5cSunZo2IhDMtKiyAgkYujU/edit#bookmark=id.gm97tmnvqp2t for Telemetry Gateway, which will receive all events emitted from Sourcegraph instances. It's a superset of the client SDK (https://github.com/sourcegraph/telemetry) and the backend SDK (#56520), relying on the Sourcegraph instance to opaquely hydrate a lot of the fields that we used to require clients to send end-to-end.

Only `internal/telemetrygateway/v1/telemetrygateway.proto` requires review - everything else is generated code.

See stack for rest of implementation: #56519 (comment)

Stacked on #56297 

Part of #56287

## Test plan

n/a - API spec only.
This PR introduces:

1. a new backend telemetry API, with `internal/telemetry.EventRecorder`, for backend services to generate their own events, based on [the proposal](https://docs.google.com/document/d/14WBt80sbmVm73B-R1Srs5cSunZo2IhDMtKiyAgkYujU/edit#bookmark=id.wy4lr5f3lxyk)
   - this is similar to the clientside SDK: https://github.com/sourcegraph/telemetry
3. a caching layer in the database, `internal/database.TelemetryEventsExportQueueStore`, that stores raw Protobuf messages so that a worker can be implemented on top to pull events out and export them in batches
   - planned strategy is to mark exported entries as exported, and then periodically prune exported events from the table after N day(s)
4. an `internal/telemetry/teestore.Store` which tees events into the existing `event_logs` table (which we are no longer considering revamping due to extensive existing integrations with it) as well as the new `TelemetryEventsExportQueueStore`
   - adding things to this store is behind an off-by-default feature flag `telemetry-export` - when the flag is disabled, adding to the store is a no-op
5. adapters to send events from `telemetry.EventRecorder` and the GraphQL mutation added in #56297 to the `teestore.Store`

Actually exporting things, and the destination service itself, will be built in #56699
Stacked on #56519

Closes #56283
Closes #56285
Closes #56286

## Test plan

Unit and integration tests, and manual test plan in #56699
This change adds:

- telemetry export background jobs: flagged behind `TELEMETRY_GATEWAY_EXPORTER_EXPORT_ADDR`, default empty => disabled
- telemetry redaction: configured in package `internal/telemetry/sensitivemetadataallowlist`
- telemetry-gateway service receiving events and forwarding it to a pub/sub topic (or just logging it, as configured in local dev)
- utilities for easily creating an event recorder: `internal/telemetry/telemetryrecorder`
Notes:

- all changes are feature-flagged to some degree, off by default, so the merge should be fairly low-risk.
- we decided that transmitting the full license key continues to be the way to go. we transmit it once per stream and attach it on all events in the telemetry-gateway. there is no auth mechanism at the moment
- GraphQL return type `EventLog.Source` is now a plain string instead of string enum. This should not be a breaking change in our clients, but must be made so that our generated V2 events do not break requesting of event logs

Stacked on #56520

Closes #56289
Closes #56287

## Test plan

Add an override to make the export super frequent:

```
env:
  TELEMETRY_GATEWAY_EXPORTER_EXPORT_INTERVAL: "10s"
  TELEMETRY_GATEWAY_EXPORTER_EXPORTED_EVENTS_RETENTION: "5m"
```

Start sourcegraph:

```
sg start
```

Enable `telemetry-export` featureflag (from #56520)

Emit some events in GraphQL:

```gql
mutation {
  telemetry {
    recordEvents(events:[{
      feature:"foobar"
      action:"view"
      source:{
        client:"WEB"
      }
      parameters:{
        version:0
      }
    }]) {
      alwaysNil
    }
  }
```

See series of log events:

```
[         worker] INFO worker.telemetrygateway-exporter telemetrygatewayexporter/telemetrygatewayexporter.go:61 Telemetry Gateway export enabled - initializing background routines
[         worker] INFO worker.telemetrygateway-exporter telemetrygatewayexporter/exporter.go:99 exporting events {"maxBatchSize": 10000, "count": 1}
[telemetry-g...y] INFO telemetry-gateway.pubsub pubsub/topic.go:115 Publish {"TraceId": "7852903434f0d2f647d397ee83b4009b", "SpanId": "8d945234bccf319b", "message": "{\"event\":{\"id\":\"dc96ae84-4ac4-4760-968f-0a0307b8bb3d\",\"timestamp\":\"2023-09-19T01:57:13.590266Z\",\"feature\":\"foobar\", ....
```

Build:

```
export VERSION="insiders"
bazel run //cmd/telemetry-gateway:candidate_push --config darwin-docker --stamp --workspace_status_command=./dev/bazel_stamp_vars.sh -- --tag $VERSION --repository us.gcr.io/sourcegraph-dev/telemetry-gateway
```

Deploy: sourcegraph/managed-services#7

Add override:

```yaml
env:
  # Port required. TODO: What's the best way to provide gRPC addresses, such that a
  # localhost address is also possible?
  TELEMETRY_GATEWAY_EXPORTER_EXPORT_ADDR: "https://telemetry-gateway.sgdev.org:443"
```

Repeat the above (`sg start` and emit some events):

```
[         worker] INFO worker.telemetrygateway-exporter telemetrygatewayexporter/exporter.go:94 exporting events {"maxBatchSize": 10000, "count": 6}
[         worker] INFO worker.telemetrygateway-exporter telemetrygatewayexporter/exporter.go:113 events exported {"maxBatchSize": 10000, "succeeded": 6}
[         worker] INFO worker.telemetrygateway-exporter telemetrygatewayexporter/exporter.go:94 exporting events {"maxBatchSize": 10000, "count": 1}
[         worker] INFO worker.telemetrygateway-exporter telemetrygatewayexporter/exporter.go:113 events exported {"maxBatchSize": 10000, "succeeded": 1}
```
Fix client cache updates for search jobs mutations
sqs and others added 23 commits September 29, 2023 23:13
This was used for the deprecated and removed Sourcegraph extension API support.
support single-program execution

Now, `sg start single-program` starts a single-binary local dev server. This is similar to Cody app, but instead of using a Tauri desktop app UI and limiting to only Cody-related functionality, it runs a full Sourcegraph instance and lets you access it through your web browser. It is useful for local dev because it's less resource-intensive and has faster recompile/relink times than `sg start` (which runs many processes).
CodeMirror is now used as the editor for query inputs, but there remained some old code used for Monaco query inputs.
This feature flag was removed in 8d7310a 4 months ago, but a few references remained.
This makes it so that the previously on-by-default behavior is now the only behavior. This only affects the old query input, not the new query input. The behavior is confusing to describe, but it basically means that as you type in the old query input, there is no autocomplete item selected until you press the down arrow, so pressing <kbd>Enter</kbd> does not confusingly accept an autocomplete item that you did not intend.

This was set to on by default on https://sourcegraph.com 9 months ago at sourcegraph/deploy-sourcegraph-cloud#17546, and has been on by default in all other instances for 1 year.
- Remove "monaco" from the name of components that have nothing to do with Monaco (such as MonacoField). These used to be related to a query input backed by Monaco but have long been backed by CodeMirror.
- Fix a few other types, outdated references, etc.
There is no behavior change.
- Fix typos and other imperfections (eg in `repo:foo/.*`, the `.*` is unnecessary)
- Regroup and re-label the examples
- Make diff search examples more prominent
- Remove the diff search pre-populated author because it is unlikely to return results (given that diff search is slow and non-deterministic with respect to order)
- Make queries clickable as links instead of adding to query input
We regularly run into a problem where a customer with a large repo tries to embed that repo, gets part way, but then flakiness from OpenAI, their network, or whatever else causes the whole embeddings job to fail. This is very frustrating on the side of the customer, and is the source of a lot of delays when getting customers up and running with Cody. We already retry in the HTTP layer, but sometimes this isn't enough, especially since failures seem to be correlated with the content being sent.

Instead, this PR allows some requests to fail. We already allow some chunks to fail (which is the most common failure case where openAI just returns a null vector), but this extends that setting to now also include full request failures.

To avoid jobs succeeding when there is a configuration error, some persistent connection error, or the like, we allow some chunks to fail, but if more than 10% of the chunks fail to embed, we fail the whole job. This number is arbitrary, but it probably doesn't matter too much as long as it's greater than zero and less than 100.
This checks `ExperimentalFeatures.SearchJobs` before kicking of a search job.

Test plan:
I unset `experimentalFeatures.searchJobs` locally and verified that the
GraphQL API returns an error.
* Update docker dind image to 24.0.6 to fix vulns

* Remove no-longer-necessary apk update
Co-authored-by: ggilmore <geoffrey@sourcegraph.com>
Co-authored-by: Joe Chen <joe@sourcegraph.com>
Co-authored-by: Joe Chen <joe@sourcegraph.com>
* switching ctags to tagged versions

* Update header comment

---------

Co-authored-by: Will Dollman <will.dollman@sourcegraph.com>
@cla-bot cla-bot bot added the cla-signed label Oct 2, 2023
@camdencheek camdencheek requested a review from a team October 2, 2023 19:05
@sourcegraph-bot
Copy link
Contributor

Not notifying subscribers because the number of notifying subscribers (24) has exceeded the threshold (10).

@sourcegraph-bot
Copy link
Contributor

Codenotify: Notifying subscribers in OWNERS files for diff 1c4e1df...5759265.

Notify File(s)
@mrnugget dev/sg/BUILD.bazel
dev/sg/Dockerfile
dev/sg/categories.go
dev/sg/checks.go
dev/sg/ci/BUILD.bazel
dev/sg/ci/buildkite.go
dev/sg/ci/command.go
dev/sg/ci/subcommands.go
dev/sg/dependencies/BUILD.bazel
dev/sg/dependencies/dependencies.go
dev/sg/dependencies/helpers.go
dev/sg/dependencies/mac.go
dev/sg/dependencies/shared.go
dev/sg/generates.go
dev/sg/internal/background/background.go
dev/sg/internal/bk/bk.go
dev/sg/internal/category/BUILD.bazel
dev/sg/internal/category/category.go
dev/sg/internal/check/BUILD.bazel
dev/sg/internal/check/annotation.go
dev/sg/internal/check/category.go
dev/sg/internal/docker/BUILD.bazel
dev/sg/internal/docker/lints.go
dev/sg/internal/docker/lints_test.go
dev/sg/internal/generate/generate.go
dev/sg/internal/generate/golang/golang.go
dev/sg/internal/generate/proto/proto.go
dev/sg/internal/images/BUILD.bazel
dev/sg/internal/images/compose.go
dev/sg/internal/images/dockerhub.go
dev/sg/internal/images/gcr.go
dev/sg/internal/images/helm.go
dev/sg/internal/images/images.go
dev/sg/internal/images/images_test.go
dev/sg/internal/images/k8s.go
dev/sg/internal/images/registry.go
dev/sg/internal/loki/BUILD.bazel
dev/sg/internal/migration/BUILD.bazel
dev/sg/internal/migration/squash.go
dev/sg/internal/rfc/BUILD.bazel
dev/sg/internal/rfc/rfc.go
dev/sg/internal/rfc/rfc_create.go
dev/sg/internal/rfc/rfc_test.go
dev/sg/internal/run/BUILD.bazel
dev/sg/internal/run/bazel_command.go
dev/sg/internal/run/run.go
dev/sg/internal/secrets/BUILD.bazel
dev/sg/internal/sgconf/BUILD.bazel
dev/sg/internal/sgconf/config.go
dev/sg/internal/sgconf/config_test.go
dev/sg/internal/wolfi/BUILD.bazel
dev/sg/internal/wolfi/base-image.go
dev/sg/internal/wolfi/package.go
dev/sg/internal/wolfi/update_hashes.go
dev/sg/linters/BUILD.bazel
dev/sg/linters/buf.go
dev/sg/linters/client.go
dev/sg/linters/dockerfiles.go
dev/sg/linters/go_checks.go
dev/sg/linters/gogenerate.go
dev/sg/linters/gomod.go
dev/sg/linters/linters.go
dev/sg/linters/runner.go
dev/sg/main.go
dev/sg/msp/BUILD.bazel
dev/sg/msp/CODENOTIFY
dev/sg/msp/command.go
dev/sg/msp/example/example-service.service.yaml
dev/sg/msp/repo/BUILD.bazel
dev/sg/msp/repo/repo.go
dev/sg/msp/repo/root.go
dev/sg/msp/schema/BUILD.bazel
dev/sg/msp/schema/schema.go
dev/sg/msp/sg_msp.go
dev/sg/release.go
dev/sg/root/BUILD.bazel
dev/sg/root/root.go
dev/sg/sg.config.example.yaml
dev/sg/sg_adr.go
dev/sg/sg_analytics.go
dev/sg/sg_app.go
dev/sg/sg_audit.go
dev/sg/sg_ci.go
dev/sg/sg_cloud.go
dev/sg/sg_db.go
dev/sg/sg_deploy.go
dev/sg/sg_embeddings_qa.go
dev/sg/sg_feedback.go
dev/sg/sg_generate.go
dev/sg/sg_help.go
dev/sg/sg_insights.go
dev/sg/sg_install.go
dev/sg/sg_lint.go
dev/sg/sg_live.go
dev/sg/sg_logo.go
dev/sg/sg_migration.go
dev/sg/sg_monitoring.go
dev/sg/sg_ops.go
dev/sg/sg_page.go
dev/sg/sg_rfc.go
dev/sg/sg_run.go
dev/sg/sg_secret.go
dev/sg/sg_setup.go
dev/sg/sg_src.go
dev/sg/sg_start.go
dev/sg/sg_start_test.go
dev/sg/sg_teammate.go
dev/sg/sg_telemetry.go
dev/sg/sg_tests.go
dev/sg/sg_update.go
dev/sg/sg_version.go
dev/sg/sg_wolfi.go
@sourcegraph/code-exploration-devs client/common/BUILD.bazel
client/common/src/errors/errors.ts
client/common/src/errors/types.ts
client/common/src/errors/utils.ts
client/common/src/types/highlightjs-graphql/index.d.ts
client/common/src/types/utils.ts
client/common/src/util/LocalStorageSubject.ts
client/common/src/util/compatNavigate.ts
client/common/src/util/fetchCache.test.ts
client/common/src/util/index.ts
client/common/src/util/jsonc.ts
client/common/src/util/markdown/markdown.test.ts
client/common/src/util/markdown/markdown.ts
client/common/src/util/path.ts
client/common/src/util/rxjs/asObservable.ts
client/common/src/util/rxjs/combineLatestOrDefault.ts
client/common/src/util/rxjs/memoizeObservable.ts
client/common/src/util/rxjs/repeatUntil.ts
client/common/src/util/url.ts
client/common/tsconfig.json
client/eslint-plugin-wildcard/BUILD.bazel
client/http-client/BUILD.bazel
client/http-client/src/graphql/apollo/client.ts
client/http-client/src/graphql/apollo/fromObservableQuery.test.ts
client/http-client/src/graphql/apollo/fromObservableQuery.ts
client/http-client/src/graphql/apollo/hooks.ts
client/http-client/src/graphql/graphql.ts
client/http-client/src/graphql/links/concurrent-requests-link.ts
client/http-client/tsconfig.json
client/observability-client/BUILD.bazel
client/observability-client/src/exporters/consoleBatchSpanExporter.ts
client/observability-client/src/instrumentations/fetch.ts
client/observability-client/src/instrumentations/history.ts
client/observability-client/src/instrumentations/window-load.ts
client/observability-client/src/processors/clientAttributesSpanProcessor.ts
client/observability-client/src/processors/sharedSpanStoreProcessor.ts
client/observability-client/src/react/TraceSpanProvider/TraceSpanProvider.tsx
client/observability-client/src/react/TraceSpanProvider/useNewTraceContextProviderValue.ts
client/observability-client/src/react/constants.ts
client/observability-client/src/react/useCurrentSpan.ts
client/observability-client/src/sdk/createActiveSpan.ts
client/observability-client/src/sdk/createFinishedSpan.ts
client/observability-client/src/sdk/instrumentationBaseWeb.ts
client/observability-client/src/sdk/performance.ts
client/observability-client/src/sdk/sharedSpanStore.ts
client/observability-client/src/sdk/span.ts
client/observability-client/src/sdk/trace.ts
client/observability-client/src/sdk/tracer.ts
client/observability-server/BUILD.bazel
client/observability-server/src/honeycomb/clone-boards.ts
client/observability-server/tsconfig.json
client/wildcard/BUILD.bazel
client/wildcard/src/components/Alert/Alert.module.scss
client/wildcard/src/components/Alert/Alert.story.tsx
client/wildcard/src/components/Alert/Alert.tsx
client/wildcard/src/components/Alert/AlertLink.tsx
client/wildcard/src/components/Alert/utils.ts
client/wildcard/src/components/Badge/Badge.module.scss
client/wildcard/src/components/Badge/Badge.story.tsx
client/wildcard/src/components/Badge/Badge.tsx
client/wildcard/src/components/Badge/ProductStatusBadge.story.tsx
client/wildcard/src/components/Badge/ProductStatusBadge.tsx
client/wildcard/src/components/BeforeUnloadPrompt/BeforeUnloadPrompt.tsx
client/wildcard/src/components/Breadcrumbs/Breadcrumbs.module.scss
client/wildcard/src/components/Breadcrumbs/Breadcrumbs.story.tsx
client/wildcard/src/components/Breadcrumbs/Breadcrumbs.tsx
client/wildcard/src/components/Breadcrumbs/index.ts
client/wildcard/src/components/Button/Button.module.scss
client/wildcard/src/components/Button/Button.tsx
client/wildcard/src/components/Button/ButtonGroup.tsx
client/wildcard/src/components/Button/story/Button.story.tsx
client/wildcard/src/components/Button/story/ButtonVariants.tsx
client/wildcard/src/components/Button/utils.ts
client/wildcard/src/components/ButtonLink/ButtonLink.story.tsx
client/wildcard/src/components/ButtonLink/ButtonLink.tsx
client/wildcard/src/components/Card/Card.story.tsx
client/wildcard/src/components/Card/Card.tsx
client/wildcard/src/components/Card/components/CardBody.tsx
client/wildcard/src/components/Card/components/CardFooter.module.scss
client/wildcard/src/components/Card/components/CardFooter.tsx
client/wildcard/src/components/Card/components/CardHeader.tsx
client/wildcard/src/components/Card/components/CardList.tsx
client/wildcard/src/components/Card/components/CardSubtitle.tsx
client/wildcard/src/components/Card/components/CardText.tsx
client/wildcard/src/components/Card/components/CardTitle.tsx
client/wildcard/src/components/Charts/components/bar-chart/BarChart.story.tsx
client/wildcard/src/components/Charts/components/bar-chart/BarChart.tsx
client/wildcard/src/components/Charts/components/bar-chart/BarChartContent.tsx
client/wildcard/src/components/Charts/components/bar-chart/components/GroupedBars.tsx
client/wildcard/src/components/Charts/components/bar-chart/components/StackedBars.tsx
client/wildcard/src/components/Charts/components/bar-chart/components/TooltipContent.tsx
client/wildcard/src/components/Charts/components/bar-chart/types.ts
client/wildcard/src/components/Charts/components/line-chart/LineChart.tsx
client/wildcard/src/components/Charts/components/line-chart/LineChartContent.tsx
client/wildcard/src/components/Charts/components/line-chart/components/LineDataSeries.tsx
client/wildcard/src/components/Charts/components/line-chart/components/PointGlyph.tsx
client/wildcard/src/components/Charts/components/line-chart/components/legend-list/LegendList.tsx
client/wildcard/src/components/Charts/components/line-chart/components/stacked-area/StackedArea.tsx
client/wildcard/src/components/Charts/components/line-chart/components/stacked-area/get-stacked-area-paths.ts
client/wildcard/src/components/Charts/components/line-chart/components/tooltip/TooltipContent.story.tsx
client/wildcard/src/components/Charts/components/line-chart/components/tooltip/TooltipContent.tsx
client/wildcard/src/components/Charts/components/line-chart/event-helpers.ts
client/wildcard/src/components/Charts/components/line-chart/keyboard-navigation.ts
client/wildcard/src/components/Charts/components/line-chart/story/LineChart.story.tsx
client/wildcard/src/components/Charts/components/line-chart/story/mocks.ts
client/wildcard/src/components/Charts/components/line-chart/utils/colors.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/get-series-data.test.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/get-series-data.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/get-stacked-series-data.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/helpers.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/types.ts
client/wildcard/src/components/Charts/components/line-chart/utils/generate-points-field.ts
client/wildcard/src/components/Charts/components/line-chart/utils/get-chart-content-sizes.ts
client/wildcard/src/components/Charts/components/line-chart/utils/get-min-max-boundary.test.ts
client/wildcard/src/components/Charts/components/line-chart/utils/get-min-max-boundary.ts
client/wildcard/src/components/Charts/components/pie-chart/PieChart.story.tsx
client/wildcard/src/components/Charts/components/pie-chart/PieChart.tsx
client/wildcard/src/components/Charts/components/pie-chart/components/PieArc.tsx
client/wildcard/src/components/Charts/components/stacked-meter/StackedMeter.story.tsx
client/wildcard/src/components/Charts/components/stacked-meter/StackedMeter.tsx
client/wildcard/src/components/Charts/core/components/MaybeLink.tsx
client/wildcard/src/components/Charts/core/components/SvgRoot.story.tsx
client/wildcard/src/components/Charts/core/components/SvgRoot.tsx
client/wildcard/src/components/Charts/core/components/axis/Axis.tsx
client/wildcard/src/components/Charts/core/components/axis/Tick.tsx
client/wildcard/src/components/Charts/core/components/axis/tick-formatters.ts
client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.module.scss
client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.story.tsx
client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.tsx
client/wildcard/src/components/Charts/core/components/tooltip/Tooltip.tsx
client/wildcard/src/components/Charts/types.ts
client/wildcard/src/components/Collapse/Collapse.story.tsx
client/wildcard/src/components/Collapse/Collapse.tsx
client/wildcard/src/components/Combobox/Combobox.module.scss
client/wildcard/src/components/Combobox/Combobox.story.tsx
client/wildcard/src/components/Combobox/Combobox.tsx
client/wildcard/src/components/Combobox/MultiCombobox.module.scss
client/wildcard/src/components/Combobox/MultiCombobox.story.tsx
client/wildcard/src/components/Combobox/MultiCombobox.tsx
client/wildcard/src/components/Container/Container.story.tsx
client/wildcard/src/components/Container/Container.tsx
client/wildcard/src/components/ErrorAlert/ErrorAlert.tsx
client/wildcard/src/components/Feedback/FeedbackBadge/FeedbackBadge.story.tsx
client/wildcard/src/components/Feedback/FeedbackBadge/FeedbackBadge.tsx
client/wildcard/src/components/Feedback/FeedbackPrompt/FeedbackPrompt.story.tsx
client/wildcard/src/components/Feedback/FeedbackPrompt/FeedbackPrompt.tsx
client/wildcard/src/components/Feedback/FeedbackText/FeedbackText.story.tsx
client/wildcard/src/components/Form/Checkbox/Checkbox.story.tsx
client/wildcard/src/components/Form/Checkbox/Checkbox.tsx
client/wildcard/src/components/Form/FlexTextArea/FlexTextArea.tsx
client/wildcard/src/components/Form/Form/getDefaultInputProps.ts
client/wildcard/src/components/Form/Form/hooks/useCheckboxes.ts
client/wildcard/src/components/Form/Form/hooks/useField.ts
client/wildcard/src/components/Form/Form/hooks/useForm.ts
client/wildcard/src/components/Form/Form/hooks/utils/get-event-value.ts
client/wildcard/src/components/Form/Form/hooks/utils/use-async-validation.ts
client/wildcard/src/components/Form/FormGroup/FormGroup.tsx
client/wildcard/src/components/Form/Input/Input.story.tsx
client/wildcard/src/components/Form/Input/Input.tsx
client/wildcard/src/components/Form/LoaderInput/LoaderInput.tsx
client/wildcard/src/components/Form/RadioButton/RadioButton.story.tsx
client/wildcard/src/components/Form/RadioButton/RadioButton.tsx
client/wildcard/src/components/Form/Select/Select.story.tsx
client/wildcard/src/components/Form/Select/Select.test.tsx
client/wildcard/src/components/Form/Select/Select.tsx
client/wildcard/src/components/Form/TextArea/TextArea.story.tsx
client/wildcard/src/components/Form/TextArea/TextArea.tsx
client/wildcard/src/components/Form/internal/BaseControlInput.tsx
client/wildcard/src/components/Form/internal/FormFieldLabel.tsx
client/wildcard/src/components/Grid/Grid.story.tsx
client/wildcard/src/components/Grid/Grid.tsx
client/wildcard/src/components/Icon/Icon.story.tsx
client/wildcard/src/components/Icon/Icon.tsx
client/wildcard/src/components/Link/Link/Link.story.tsx
client/wildcard/src/components/Link/Link/Link.tsx
client/wildcard/src/components/Link/LinkOrSpan/LinkOrSpan.tsx
client/wildcard/src/components/LoadingSpinner/LoadingSpinner.story.tsx
client/wildcard/src/components/LoadingSpinner/LoadingSpinner.tsx
client/wildcard/src/components/Menu/Menu.story.tsx
client/wildcard/src/components/Menu/Menu.tsx
client/wildcard/src/components/Menu/MenuButton.tsx
client/wildcard/src/components/Menu/MenuDisabledItem.tsx
client/wildcard/src/components/Menu/MenuDivider.tsx
client/wildcard/src/components/Menu/MenuHeader.tsx
client/wildcard/src/components/Menu/MenuItem.tsx
client/wildcard/src/components/Menu/MenuLink.tsx
client/wildcard/src/components/Menu/MenuList.tsx
client/wildcard/src/components/Menu/MenuText.tsx
client/wildcard/src/components/Modal/Modal.story.tsx
client/wildcard/src/components/Modal/Modal.tsx
client/wildcard/src/components/NavMenu/NavMenu.story.tsx
client/wildcard/src/components/NavMenu/NavMenu.test.tsx
client/wildcard/src/components/NavMenu/NavMenu.tsx
client/wildcard/src/components/PageHeader/Breadcrumb/Breadcrumb.tsx
client/wildcard/src/components/PageHeader/PageHeader.story.tsx
client/wildcard/src/components/PageHeader/PageHeader.test.tsx
client/wildcard/src/components/PageHeader/PageHeader.tsx
client/wildcard/src/components/PageSelector/PageSelector.story.tsx
client/wildcard/src/components/PageSelector/PageSelector.test.tsx
client/wildcard/src/components/PageSwitcher/PageSwitcher.story.tsx
client/wildcard/src/components/PageSwitcher/PageSwitcher.test.tsx
client/wildcard/src/components/Panel/Panel.tsx
client/wildcard/src/components/Panel/story/Panel.story.tsx
client/wildcard/src/components/Panel/useResizablePanel.ts
client/wildcard/src/components/Panel/utils.ts
client/wildcard/src/components/Popover/Popover.tsx
client/wildcard/src/components/Popover/components/PopoverTrigger.tsx
client/wildcard/src/components/Popover/components/floating-panel/FloatingPanel.tsx
client/wildcard/src/components/Popover/components/popover-content/PopoverContent.tsx
client/wildcard/src/components/Popover/components/popover-tail/PopoverTail.tsx
client/wildcard/src/components/Popover/contexts/internal-context.ts
client/wildcard/src/components/Popover/story/Popover.story.tsx
client/wildcard/src/components/Popover/tether/models/geometry/rectangle.ts
client/wildcard/src/components/Popover/tether/models/tether-models.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-constrained-element.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-element-constraints.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-elements-intersection.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-extended-constraint.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-joined-element.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-target-element.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/rectangle-position-helpers.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/tooltip-marker-utils.ts
client/wildcard/src/components/Popover/tether/services/tether-browser.ts
client/wildcard/src/components/Popover/tether/services/tether-layout.ts
client/wildcard/src/components/Popover/tether/services/tether-position.ts
client/wildcard/src/components/Popover/tether/services/tether-registry.ts
client/wildcard/src/components/Popover/tether/services/tether-render.ts
client/wildcard/src/components/Popover/tether/services/tether-state.ts
client/wildcard/src/components/Popover/tether/services/types.ts
client/wildcard/src/components/Tabs/Tabs.module.scss
client/wildcard/src/components/Tabs/Tabs.story.tsx
client/wildcard/src/components/Tabs/Tabs.test.tsx
client/wildcard/src/components/Tabs/Tabs.tsx
client/wildcard/src/components/Tabs/context.ts
client/wildcard/src/components/Tabs/useShouldPanelRender.ts
client/wildcard/src/components/Tooltip/Tooltip.story.tsx
client/wildcard/src/components/Tooltip/Tooltip.test.tsx
client/wildcard/src/components/Tooltip/Tooltip.tsx
client/wildcard/src/components/Tree/Tree.story.tsx
client/wildcard/src/components/Tree/Tree.tsx
client/wildcard/src/components/Typography/Code/Code.tsx
client/wildcard/src/components/Typography/Heading/H1.tsx
client/wildcard/src/components/Typography/Heading/H2.tsx
client/wildcard/src/components/Typography/Heading/H3.tsx
client/wildcard/src/components/Typography/Heading/H4.tsx
client/wildcard/src/components/Typography/Heading/H5.tsx
client/wildcard/src/components/Typography/Heading/H6.tsx
client/wildcard/src/components/Typography/Heading/Heading.tsx
client/wildcard/src/components/Typography/Label/Label.tsx
client/wildcard/src/components/Typography/Label/utils.ts
client/wildcard/src/components/Typography/Text/Text.tsx
client/wildcard/src/components/Typography/Typography.story.tsx
client/wildcard/src/components/Typography/utils.ts
client/wildcard/src/components/index.ts
client/wildcard/src/global-styles/GlobalStylesStory/FormFieldVariants/FormFieldVariants.tsx
client/wildcard/src/global-styles/GlobalStylesStory/GlobalStyles.story.tsx
client/wildcard/src/global-styles/GlobalStylesStory/TextVariants/TextVariants.tsx
client/wildcard/src/global-styles/base.scss
client/wildcard/src/global-styles/colors.scss
client/wildcard/src/global-styles/highlight.scss
client/wildcard/src/hooks/index.ts
client/wildcard/src/hooks/useAccordion.ts
client/wildcard/src/hooks/useAutoFocus.ts
client/wildcard/src/hooks/useCookieStorage.test.ts
client/wildcard/src/hooks/useCookieStorage.ts
client/wildcard/src/hooks/useIsTruncated.ts
client/wildcard/src/hooks/useLocalStorage.ts
client/wildcard/src/hooks/useObservable.test.ts
client/wildcard/src/hooks/useObservable.ts
client/wildcard/src/hooks/useOnClickOutside.ts
client/wildcard/src/hooks/useSessionStorage.ts
client/wildcard/src/hooks/useStorageHook.ts
client/wildcard/src/stories/BrandedStory.tsx
client/wildcard/src/testing/render-with-branded-context.tsx
client/wildcard/src/types.ts
client/wildcard/src/utils/linkClickHandler.ts
@sourcegraph/dev-experience dev/buildchecker/BUILD.bazel
dev/buildchecker/main.go
dev/ci/go-build.sh
dev/ci/go-test.sh
dev/scaletesting/codehostcopy/github.go
dev/scaletesting/codehostcopy/main.go
dev/scaletesting/internal/store/BUILD.bazel
dev/sg/BUILD.bazel
dev/sg/Dockerfile
dev/sg/categories.go
dev/sg/checks.go
dev/sg/ci/BUILD.bazel
dev/sg/ci/buildkite.go
dev/sg/ci/command.go
dev/sg/ci/subcommands.go
dev/sg/dependencies/BUILD.bazel
dev/sg/dependencies/dependencies.go
dev/sg/dependencies/helpers.go
dev/sg/dependencies/mac.go
dev/sg/dependencies/shared.go
dev/sg/generates.go
dev/sg/internal/background/background.go
dev/sg/internal/bk/bk.go
dev/sg/internal/category/BUILD.bazel
dev/sg/internal/category/category.go
dev/sg/internal/check/BUILD.bazel
dev/sg/internal/check/annotation.go
dev/sg/internal/check/category.go
dev/sg/internal/docker/BUILD.bazel
dev/sg/internal/docker/lints.go
dev/sg/internal/docker/lints_test.go
dev/sg/internal/generate/generate.go
dev/sg/internal/generate/golang/golang.go
dev/sg/internal/generate/proto/proto.go
dev/sg/internal/images/BUILD.bazel
dev/sg/internal/images/compose.go
dev/sg/internal/images/dockerhub.go
dev/sg/internal/images/gcr.go
dev/sg/internal/images/helm.go
dev/sg/internal/images/images.go
dev/sg/internal/images/images_test.go
dev/sg/internal/images/k8s.go
dev/sg/internal/images/registry.go
dev/sg/internal/loki/BUILD.bazel
dev/sg/internal/migration/BUILD.bazel
dev/sg/internal/migration/squash.go
dev/sg/internal/rfc/BUILD.bazel
dev/sg/internal/rfc/rfc.go
dev/sg/internal/rfc/rfc_create.go
dev/sg/internal/rfc/rfc_test.go
dev/sg/internal/run/BUILD.bazel
dev/sg/internal/run/bazel_command.go
dev/sg/internal/run/run.go
dev/sg/internal/secrets/BUILD.bazel
dev/sg/internal/sgconf/BUILD.bazel
dev/sg/internal/sgconf/config.go
dev/sg/internal/sgconf/config_test.go
dev/sg/internal/wolfi/BUILD.bazel
dev/sg/internal/wolfi/base-image.go
dev/sg/internal/wolfi/package.go
dev/sg/internal/wolfi/update_hashes.go
dev/sg/linters/BUILD.bazel
dev/sg/linters/buf.go
dev/sg/linters/client.go
dev/sg/linters/dockerfiles.go
dev/sg/linters/go_checks.go
dev/sg/linters/gogenerate.go
dev/sg/linters/gomod.go
dev/sg/linters/linters.go
dev/sg/linters/runner.go
dev/sg/main.go
dev/sg/msp/BUILD.bazel
dev/sg/msp/CODENOTIFY
dev/sg/msp/command.go
dev/sg/msp/example/example-service.service.yaml
dev/sg/msp/repo/BUILD.bazel
dev/sg/msp/repo/repo.go
dev/sg/msp/repo/root.go
dev/sg/msp/schema/BUILD.bazel
dev/sg/msp/schema/schema.go
dev/sg/msp/sg_msp.go
dev/sg/release.go
dev/sg/root/BUILD.bazel
dev/sg/root/root.go
dev/sg/sg.config.example.yaml
dev/sg/sg_adr.go
dev/sg/sg_analytics.go
dev/sg/sg_app.go
dev/sg/sg_audit.go
dev/sg/sg_ci.go
dev/sg/sg_cloud.go
dev/sg/sg_db.go
dev/sg/sg_deploy.go
dev/sg/sg_embeddings_qa.go
dev/sg/sg_feedback.go
dev/sg/sg_generate.go
dev/sg/sg_help.go
dev/sg/sg_insights.go
dev/sg/sg_install.go
dev/sg/sg_lint.go
dev/sg/sg_live.go
dev/sg/sg_logo.go
dev/sg/sg_migration.go
dev/sg/sg_monitoring.go
dev/sg/sg_ops.go
dev/sg/sg_page.go
dev/sg/sg_rfc.go
dev/sg/sg_run.go
dev/sg/sg_secret.go
dev/sg/sg_setup.go
dev/sg/sg_src.go
dev/sg/sg_start.go
dev/sg/sg_start_test.go
dev/sg/sg_teammate.go
dev/sg/sg_telemetry.go
dev/sg/sg_tests.go
dev/sg/sg_update.go
dev/sg/sg_version.go
dev/sg/sg_wolfi.go
enterprise/dev/ci/gen-pipeline.go
enterprise/dev/ci/glossary.md
enterprise/dev/ci/images/images.go
enterprise/dev/ci/integration/executors/run.sh
enterprise/dev/ci/integration/executors/test.sh
enterprise/dev/ci/integration/executors/tester/BUILD.bazel
enterprise/dev/ci/integration/executors/tester/config/BUILD.bazel
enterprise/dev/ci/integration/executors/tester/config/config.go
enterprise/dev/ci/integration/executors/tester/config/repos.json
enterprise/dev/ci/integration/executors/tester/config/site-config.json
enterprise/dev/ci/integration/executors/tester/init.go
enterprise/dev/ci/integration/executors/tester/main.go
enterprise/dev/ci/integration/executors/tester/testinfra.go
enterprise/dev/ci/internal/buildkite/BUILD.bazel
enterprise/dev/ci/internal/buildkite/buildkite.go
enterprise/dev/ci/internal/ci/BUILD.bazel
enterprise/dev/ci/internal/ci/bazel_operations.go
enterprise/dev/ci/internal/ci/bazel_operations_test.go
enterprise/dev/ci/internal/ci/changed/BUILD.bazel
enterprise/dev/ci/internal/ci/changed/diff.go
enterprise/dev/ci/internal/ci/config.go
enterprise/dev/ci/internal/ci/operations.go
enterprise/dev/ci/internal/ci/pipeline.go
enterprise/dev/ci/internal/ci/test/BUILD.bazel
enterprise/dev/ci/internal/ci/test/wolfi-images/wolfi-test-image-1.yaml
enterprise/dev/ci/internal/ci/test/wolfi-images/wolfi-test-image-2.yaml
enterprise/dev/ci/internal/ci/wolfi_operations.go
enterprise/dev/ci/internal/ci/wolfi_operations_test.go
enterprise/dev/ci/push_all.sh
enterprise/dev/ci/scripts/annotate.sh
enterprise/dev/ci/scripts/app-token/BUILD.bazel
enterprise/dev/ci/scripts/app-token/main.go
enterprise/dev/ci/scripts/sentry-capture.sh
enterprise/dev/ci/scripts/tests/test-trace-command.sh
enterprise/dev/ci/scripts/tests/testdata/buildevents
enterprise/dev/ci/scripts/trace-command.sh
enterprise/dev/ci/scripts/upload-test-report.sh
enterprise/dev/ci/scripts/wolfi/build-base-image.sh
enterprise/dev/ci/scripts/wolfi/build-package.sh
enterprise/dev/ci/scripts/wolfi/build-repo-index.sh
enterprise/dev/ci/scripts/wolfi/upload-package.sh
enterprise/dev/deployment-notifier/BUILD.bazel
enterprise/dev/deployment-notifier/trace_test.go
@sourcegraph/frontend-platform-devs client/build-config/BUILD.bazel
client/build-config/src/esbuild/monacoPlugin.ts
client/build-config/src/esbuild/packageResolutionPlugin.ts
client/build-config/src/esbuild/plugins.ts
client/build-config/src/esbuild/stylePlugin.ts
client/build-config/src/paths.ts
client/build-config/src/webpack/babel-loader.ts
client/build-config/src/webpack/css-loader.ts
client/build-config/src/webpack/getCacheConfig.ts
client/build-config/src/webpack/monaco-editor.ts
client/build-config/src/webpack/plugins.ts
client/build-config/tsconfig.json
@vovakulikov client/wildcard/BUILD.bazel
client/wildcard/src/components/Alert/Alert.module.scss
client/wildcard/src/components/Alert/Alert.story.tsx
client/wildcard/src/components/Alert/Alert.tsx
client/wildcard/src/components/Alert/AlertLink.tsx
client/wildcard/src/components/Alert/utils.ts
client/wildcard/src/components/Badge/Badge.module.scss
client/wildcard/src/components/Badge/Badge.story.tsx
client/wildcard/src/components/Badge/Badge.tsx
client/wildcard/src/components/Badge/ProductStatusBadge.story.tsx
client/wildcard/src/components/Badge/ProductStatusBadge.tsx
client/wildcard/src/components/BeforeUnloadPrompt/BeforeUnloadPrompt.tsx
client/wildcard/src/components/Breadcrumbs/Breadcrumbs.module.scss
client/wildcard/src/components/Breadcrumbs/Breadcrumbs.story.tsx
client/wildcard/src/components/Breadcrumbs/Breadcrumbs.tsx
client/wildcard/src/components/Breadcrumbs/index.ts
client/wildcard/src/components/Button/Button.module.scss
client/wildcard/src/components/Button/Button.tsx
client/wildcard/src/components/Button/ButtonGroup.tsx
client/wildcard/src/components/Button/story/Button.story.tsx
client/wildcard/src/components/Button/story/ButtonVariants.tsx
client/wildcard/src/components/Button/utils.ts
client/wildcard/src/components/ButtonLink/ButtonLink.story.tsx
client/wildcard/src/components/ButtonLink/ButtonLink.tsx
client/wildcard/src/components/Card/Card.story.tsx
client/wildcard/src/components/Card/Card.tsx
client/wildcard/src/components/Card/components/CardBody.tsx
client/wildcard/src/components/Card/components/CardFooter.module.scss
client/wildcard/src/components/Card/components/CardFooter.tsx
client/wildcard/src/components/Card/components/CardHeader.tsx
client/wildcard/src/components/Card/components/CardList.tsx
client/wildcard/src/components/Card/components/CardSubtitle.tsx
client/wildcard/src/components/Card/components/CardText.tsx
client/wildcard/src/components/Card/components/CardTitle.tsx
client/wildcard/src/components/Charts/components/bar-chart/BarChart.story.tsx
client/wildcard/src/components/Charts/components/bar-chart/BarChart.tsx
client/wildcard/src/components/Charts/components/bar-chart/BarChartContent.tsx
client/wildcard/src/components/Charts/components/bar-chart/components/GroupedBars.tsx
client/wildcard/src/components/Charts/components/bar-chart/components/StackedBars.tsx
client/wildcard/src/components/Charts/components/bar-chart/components/TooltipContent.tsx
client/wildcard/src/components/Charts/components/bar-chart/types.ts
client/wildcard/src/components/Charts/components/line-chart/LineChart.tsx
client/wildcard/src/components/Charts/components/line-chart/LineChartContent.tsx
client/wildcard/src/components/Charts/components/line-chart/components/LineDataSeries.tsx
client/wildcard/src/components/Charts/components/line-chart/components/PointGlyph.tsx
client/wildcard/src/components/Charts/components/line-chart/components/legend-list/LegendList.tsx
client/wildcard/src/components/Charts/components/line-chart/components/stacked-area/StackedArea.tsx
client/wildcard/src/components/Charts/components/line-chart/components/stacked-area/get-stacked-area-paths.ts
client/wildcard/src/components/Charts/components/line-chart/components/tooltip/TooltipContent.story.tsx
client/wildcard/src/components/Charts/components/line-chart/components/tooltip/TooltipContent.tsx
client/wildcard/src/components/Charts/components/line-chart/event-helpers.ts
client/wildcard/src/components/Charts/components/line-chart/keyboard-navigation.ts
client/wildcard/src/components/Charts/components/line-chart/story/LineChart.story.tsx
client/wildcard/src/components/Charts/components/line-chart/story/mocks.ts
client/wildcard/src/components/Charts/components/line-chart/utils/colors.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/get-series-data.test.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/get-series-data.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/get-stacked-series-data.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/helpers.ts
client/wildcard/src/components/Charts/components/line-chart/utils/data-series-processing/types.ts
client/wildcard/src/components/Charts/components/line-chart/utils/generate-points-field.ts
client/wildcard/src/components/Charts/components/line-chart/utils/get-chart-content-sizes.ts
client/wildcard/src/components/Charts/components/line-chart/utils/get-min-max-boundary.test.ts
client/wildcard/src/components/Charts/components/line-chart/utils/get-min-max-boundary.ts
client/wildcard/src/components/Charts/components/pie-chart/PieChart.story.tsx
client/wildcard/src/components/Charts/components/pie-chart/PieChart.tsx
client/wildcard/src/components/Charts/components/pie-chart/components/PieArc.tsx
client/wildcard/src/components/Charts/components/stacked-meter/StackedMeter.story.tsx
client/wildcard/src/components/Charts/components/stacked-meter/StackedMeter.tsx
client/wildcard/src/components/Charts/core/components/MaybeLink.tsx
client/wildcard/src/components/Charts/core/components/SvgRoot.story.tsx
client/wildcard/src/components/Charts/core/components/SvgRoot.tsx
client/wildcard/src/components/Charts/core/components/axis/Axis.tsx
client/wildcard/src/components/Charts/core/components/axis/Tick.tsx
client/wildcard/src/components/Charts/core/components/axis/tick-formatters.ts
client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.module.scss
client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.story.tsx
client/wildcard/src/components/Charts/core/components/scroll-box/ScrollBox.tsx
client/wildcard/src/components/Charts/core/components/tooltip/Tooltip.tsx
client/wildcard/src/components/Charts/types.ts
client/wildcard/src/components/Collapse/Collapse.story.tsx
client/wildcard/src/components/Collapse/Collapse.tsx
client/wildcard/src/components/Combobox/Combobox.module.scss
client/wildcard/src/components/Combobox/Combobox.story.tsx
client/wildcard/src/components/Combobox/Combobox.tsx
client/wildcard/src/components/Combobox/MultiCombobox.module.scss
client/wildcard/src/components/Combobox/MultiCombobox.story.tsx
client/wildcard/src/components/Combobox/MultiCombobox.tsx
client/wildcard/src/components/Container/Container.story.tsx
client/wildcard/src/components/Container/Container.tsx
client/wildcard/src/components/ErrorAlert/ErrorAlert.tsx
client/wildcard/src/components/Feedback/FeedbackBadge/FeedbackBadge.story.tsx
client/wildcard/src/components/Feedback/FeedbackBadge/FeedbackBadge.tsx
client/wildcard/src/components/Feedback/FeedbackPrompt/FeedbackPrompt.story.tsx
client/wildcard/src/components/Feedback/FeedbackPrompt/FeedbackPrompt.tsx
client/wildcard/src/components/Feedback/FeedbackText/FeedbackText.story.tsx
client/wildcard/src/components/Form/Checkbox/Checkbox.story.tsx
client/wildcard/src/components/Form/Checkbox/Checkbox.tsx
client/wildcard/src/components/Form/FlexTextArea/FlexTextArea.tsx
client/wildcard/src/components/Form/Form/getDefaultInputProps.ts
client/wildcard/src/components/Form/Form/hooks/useCheckboxes.ts
client/wildcard/src/components/Form/Form/hooks/useField.ts
client/wildcard/src/components/Form/Form/hooks/useForm.ts
client/wildcard/src/components/Form/Form/hooks/utils/get-event-value.ts
client/wildcard/src/components/Form/Form/hooks/utils/use-async-validation.ts
client/wildcard/src/components/Form/FormGroup/FormGroup.tsx
client/wildcard/src/components/Form/Input/Input.story.tsx
client/wildcard/src/components/Form/Input/Input.tsx
client/wildcard/src/components/Form/LoaderInput/LoaderInput.tsx
client/wildcard/src/components/Form/RadioButton/RadioButton.story.tsx
client/wildcard/src/components/Form/RadioButton/RadioButton.tsx
client/wildcard/src/components/Form/Select/Select.story.tsx
client/wildcard/src/components/Form/Select/Select.test.tsx
client/wildcard/src/components/Form/Select/Select.tsx
client/wildcard/src/components/Form/TextArea/TextArea.story.tsx
client/wildcard/src/components/Form/TextArea/TextArea.tsx
client/wildcard/src/components/Form/internal/BaseControlInput.tsx
client/wildcard/src/components/Form/internal/FormFieldLabel.tsx
client/wildcard/src/components/Grid/Grid.story.tsx
client/wildcard/src/components/Grid/Grid.tsx
client/wildcard/src/components/Icon/Icon.story.tsx
client/wildcard/src/components/Icon/Icon.tsx
client/wildcard/src/components/Link/Link/Link.story.tsx
client/wildcard/src/components/Link/Link/Link.tsx
client/wildcard/src/components/Link/LinkOrSpan/LinkOrSpan.tsx
client/wildcard/src/components/LoadingSpinner/LoadingSpinner.story.tsx
client/wildcard/src/components/LoadingSpinner/LoadingSpinner.tsx
client/wildcard/src/components/Menu/Menu.story.tsx
client/wildcard/src/components/Menu/Menu.tsx
client/wildcard/src/components/Menu/MenuButton.tsx
client/wildcard/src/components/Menu/MenuDisabledItem.tsx
client/wildcard/src/components/Menu/MenuDivider.tsx
client/wildcard/src/components/Menu/MenuHeader.tsx
client/wildcard/src/components/Menu/MenuItem.tsx
client/wildcard/src/components/Menu/MenuLink.tsx
client/wildcard/src/components/Menu/MenuList.tsx
client/wildcard/src/components/Menu/MenuText.tsx
client/wildcard/src/components/Modal/Modal.story.tsx
client/wildcard/src/components/Modal/Modal.tsx
client/wildcard/src/components/NavMenu/NavMenu.story.tsx
client/wildcard/src/components/NavMenu/NavMenu.test.tsx
client/wildcard/src/components/NavMenu/NavMenu.tsx
client/wildcard/src/components/PageHeader/Breadcrumb/Breadcrumb.tsx
client/wildcard/src/components/PageHeader/PageHeader.story.tsx
client/wildcard/src/components/PageHeader/PageHeader.test.tsx
client/wildcard/src/components/PageHeader/PageHeader.tsx
client/wildcard/src/components/PageSelector/PageSelector.story.tsx
client/wildcard/src/components/PageSelector/PageSelector.test.tsx
client/wildcard/src/components/PageSwitcher/PageSwitcher.story.tsx
client/wildcard/src/components/PageSwitcher/PageSwitcher.test.tsx
client/wildcard/src/components/Panel/Panel.tsx
client/wildcard/src/components/Panel/story/Panel.story.tsx
client/wildcard/src/components/Panel/useResizablePanel.ts
client/wildcard/src/components/Panel/utils.ts
client/wildcard/src/components/Popover/Popover.tsx
client/wildcard/src/components/Popover/components/PopoverTrigger.tsx
client/wildcard/src/components/Popover/components/floating-panel/FloatingPanel.tsx
client/wildcard/src/components/Popover/components/popover-content/PopoverContent.tsx
client/wildcard/src/components/Popover/components/popover-tail/PopoverTail.tsx
client/wildcard/src/components/Popover/contexts/internal-context.ts
client/wildcard/src/components/Popover/story/Popover.story.tsx
client/wildcard/src/components/Popover/tether/models/geometry/rectangle.ts
client/wildcard/src/components/Popover/tether/models/tether-models.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-constrained-element.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-element-constraints.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-elements-intersection.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-extended-constraint.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-joined-element.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/get-target-element.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/rectangle-position-helpers.ts
client/wildcard/src/components/Popover/tether/services/geometry/actions/tooltip-marker-utils.ts
client/wildcard/src/components/Popover/tether/services/tether-browser.ts
client/wildcard/src/components/Popover/tether/services/tether-layout.ts
client/wildcard/src/components/Popover/tether/services/tether-position.ts
client/wildcard/src/components/Popover/tether/services/tether-registry.ts
client/wildcard/src/components/Popover/tether/services/tether-render.ts
client/wildcard/src/components/Popover/tether/services/tether-state.ts
client/wildcard/src/components/Popover/tether/services/types.ts
client/wildcard/src/components/Tabs/Tabs.module.scss
client/wildcard/src/components/Tabs/Tabs.story.tsx
client/wildcard/src/components/Tabs/Tabs.test.tsx
client/wildcard/src/components/Tabs/Tabs.tsx
client/wildcard/src/components/Tabs/context.ts
client/wildcard/src/components/Tabs/useShouldPanelRender.ts
client/wildcard/src/components/Tooltip/Tooltip.story.tsx
client/wildcard/src/components/Tooltip/Tooltip.test.tsx
client/wildcard/src/components/Tooltip/Tooltip.tsx
client/wildcard/src/components/Tree/Tree.story.tsx
client/wildcard/src/components/Tree/Tree.tsx
client/wildcard/src/components/Typography/Code/Code.tsx
client/wildcard/src/components/Typography/Heading/H1.tsx
client/wildcard/src/components/Typography/Heading/H2.tsx
client/wildcard/src/components/Typography/Heading/H3.tsx
client/wildcard/src/components/Typography/Heading/H4.tsx
client/wildcard/src/components/Typography/Heading/H5.tsx
client/wildcard/src/components/Typography/Heading/H6.tsx
client/wildcard/src/components/Typography/Heading/Heading.tsx
client/wildcard/src/components/Typography/Label/Label.tsx
client/wildcard/src/components/Typography/Label/utils.ts
client/wildcard/src/components/Typography/Text/Text.tsx
client/wildcard/src/components/Typography/Typography.story.tsx
client/wildcard/src/components/Typography/utils.ts
client/wildcard/src/components/index.ts
client/wildcard/src/global-styles/GlobalStylesStory/FormFieldVariants/FormFieldVariants.tsx
client/wildcard/src/global-styles/GlobalStylesStory/GlobalStyles.story.tsx
client/wildcard/src/global-styles/GlobalStylesStory/TextVariants/TextVariants.tsx
client/wildcard/src/global-styles/base.scss
client/wildcard/src/global-styles/colors.scss
client/wildcard/src/global-styles/highlight.scss
client/wildcard/src/hooks/index.ts
client/wildcard/src/hooks/useAccordion.ts
client/wildcard/src/hooks/useAutoFocus.ts
client/wildcard/src/hooks/useCookieStorage.test.ts
client/wildcard/src/hooks/useCookieStorage.ts
client/wildcard/src/hooks/useIsTruncated.ts
client/wildcard/src/hooks/useLocalStorage.ts
client/wildcard/src/hooks/useObservable.test.ts
client/wildcard/src/hooks/useObservable.ts
client/wildcard/src/hooks/useOnClickOutside.ts
client/wildcard/src/hooks/useSessionStorage.ts
client/wildcard/src/hooks/useStorageHook.ts
client/wildcard/src/stories/BrandedStory.tsx
client/wildcard/src/testing/render-with-branded-context.tsx
client/wildcard/src/types.ts
client/wildcard/src/utils/linkClickHandler.ts

@camdencheek camdencheek requested a review from a team October 2, 2023 19:15
@camdencheek camdencheek merged commit 422ae94 into bext/release Oct 2, 2023
88 of 90 checks passed
@camdencheek camdencheek deleted the cc/release-extension branch October 2, 2023 19:21
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet