diff --git a/src/vs/workbench/contrib/orcide/browser/react/src/orcide-editor-widgets-tsx/index.tsx b/src/vs/workbench/contrib/orcide/browser/react/src/orcide-editor-widgets-tsx/index.tsx new file mode 100644 index 00000000..0d3655dc --- /dev/null +++ b/src/vs/workbench/contrib/orcide/browser/react/src/orcide-editor-widgets-tsx/index.tsx @@ -0,0 +1,11 @@ +/*-------------------------------------------------------------------------------------- + * Copyright 2025 Orcest AI. All rights reserved. + * Licensed under the MIT License. See LICENSE.txt for more information. + *--------------------------------------------------------------------------------------*/ + +import { mountFnGenerator } from '../util/mountFnGenerator.js' +import { OrcideCommandBar } from './OrcideCommandBar.js' +import { OrcideSelectionHelperMain } from './OrcideSelectionHelper.js' + +export const mountOrcideCommandBar = mountFnGenerator(OrcideCommandBar) +export const mountOrcideSelectionHelper = mountFnGenerator(OrcideSelectionHelperMain) diff --git a/src/vs/workbench/contrib/orcide/browser/react/src/orcide-onboarding/index.tsx b/src/vs/workbench/contrib/orcide/browser/react/src/orcide-onboarding/index.tsx new file mode 100644 index 00000000..a69502ad --- /dev/null +++ b/src/vs/workbench/contrib/orcide/browser/react/src/orcide-onboarding/index.tsx @@ -0,0 +1,9 @@ +/*-------------------------------------------------------------------------------------- + * Copyright 2025 Orcest AI. All rights reserved. + * Licensed under the MIT License. See LICENSE.txt for more information. + *--------------------------------------------------------------------------------------*/ + +import { mountFnGenerator } from '../util/mountFnGenerator.js' +import { OrcideOnboarding } from './OrcideOnboarding.js' + +export const mountOrcideOnboarding = mountFnGenerator(OrcideOnboarding) diff --git a/src/vs/workbench/contrib/orcide/browser/react/src/orcide-tooltip/index.tsx b/src/vs/workbench/contrib/orcide/browser/react/src/orcide-tooltip/index.tsx new file mode 100644 index 00000000..360bfe4e --- /dev/null +++ b/src/vs/workbench/contrib/orcide/browser/react/src/orcide-tooltip/index.tsx @@ -0,0 +1,9 @@ +/*-------------------------------------------------------------------------------------- + * Copyright 2025 Orcest AI. All rights reserved. + * Licensed under the MIT License. See LICENSE.txt for more information. + *--------------------------------------------------------------------------------------*/ + +import { mountFnGenerator } from '../util/mountFnGenerator.js' +import { OrcideTooltip } from './OrcideTooltip.js' + +export const mountOrcideTooltip = mountFnGenerator(OrcideTooltip)