Skip to content

Commit

Permalink
feat: update references related to libro-app
Browse files Browse the repository at this point in the history
  • Loading branch information
sunshinesmilelk committed Mar 3, 2025
1 parent e34736b commit 124f1bc
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions packages/libro-app/src/app-file-command-contribution.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import type {
CommandRegistry,
MenuRegistry,
ViewManager,
} from '../../libro-common/es/app/index.js';
} from '@difizen/libro-common/app';
import {
ConfigurationService,
CommandContribution,
Expand All @@ -16,7 +16,7 @@ import {
ModalService,
OpenerService,
singleton,
} from '../../libro-common/es/app/index.js';
} from '@difizen/libro-common/app';

export const AppFileCommands = {
OPEN_FILE_BY_LIBRO_APP: {
Expand Down
6 changes: 3 additions & 3 deletions packages/libro-app/src/app-open-handler.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
import { LibroJupyterConfiguration } from '@difizen/libro-jupyter';
import type { URI, ViewOpenHandlerOptions } from '../../libro-common/es/app/index.js';
import { ConfigurationService, inject } from '../../libro-common/es/app/index.js';
import type { URI, ViewOpenHandlerOptions } from '@difizen/libro-common/app';
import { ConfigurationService, inject } from '@difizen/libro-common/app';
import {
NavigatableViewOpenHandler,
OpenHandler,
singleton,
Priority,
} from '../../libro-common/es/app/index.js';
} from '@difizen/libro-common/app';

import type { LibroAppViewer } from './app-viewer.js';
import { AppViewerFactory } from './protocol.js';
Expand Down
2 changes: 1 addition & 1 deletion packages/libro-app/src/app-view.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
ViewInstance,
ViewOption,
ViewRender,
} from '../../libro-common/es/app/index.js';
} from '@difizen/libro-common/app';
import { l10n } from '@difizen/libro-common/l10n';
import type { RadioChangeEvent } from 'antd';
import { Radio, Button } from 'antd';
Expand Down
6 changes: 3 additions & 3 deletions packages/libro-app/src/app-viewer.tsx
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { NavigatableView } from '../../libro-common/es/app/index.js';
import { ViewRender, ViewManager } from '../../libro-common/es/app/index.js';
import type { NavigatableView } from '@difizen/libro-common/app';
import { ViewRender, ViewManager } from '@difizen/libro-common/app';
import {
BaseView,
inject,
Expand All @@ -15,7 +15,7 @@ import {
Deferred,
URI,
CommandRegistry,
} from '../../libro-common/es/app/index.js';
} from '@difizen/libro-common/app';
import { forwardRef } from 'react';

import './index.less';
Expand Down
2 changes: 1 addition & 1 deletion packages/libro-app/src/module.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { ManaModule } from '../../libro-common/es/app/index.js';
import { ManaModule } from '@difizen/libro-common/app';

import { AppFileCommandContribution } from './app-file-command-contribution.js';
import { LibroAppOpenHandler } from './app-open-handler.js';
Expand Down

0 comments on commit 124f1bc

Please sign in to comment.