Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions examples/data-objects/text-editor/src/app.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,16 @@ import { AzureClient, type AzureLocalConnectionConfig } from "@fluidframework/az
import { createDevtoolsLogger, initializeDevtools } from "@fluidframework/devtools/beta";
import {
toPropTreeNode,
FormattedMainView,
PlainTextMainView,
PlainQuillView,
UndoRedoStacks,
type UndoRedo,
// eslint-disable-next-line import-x/no-internal-modules
} from "@fluidframework/react/internal";
import {
FormattedMainView,
PlainTextMainView,
PlainQuillView,
// eslint-disable-next-line import-x/no-internal-modules
} from "@fluidframework/react/quill";
/**
* InsecureTokenProvider is used here for local development and demo purposes only.
* Do not use in production - implement proper authentication for production scenarios.
Expand Down
4 changes: 4 additions & 0 deletions packages/framework/react/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,10 @@
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
}
},
"./quill": {
"types": "./lib/text/quill.d.ts",
"import": "./lib/text/quill.js"
}
},
"main": "lib/index.js",
Expand Down
8 changes: 0 additions & 8 deletions packages/framework/react/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,4 @@ export {
} from "./useTree.js";
export { objectIdNumber } from "./simpleIdentifier.js";

export {
FormattedMainView,
PlainTextMainView,
PlainQuillView,
type FormattedMainViewProps,
type PlainMainViewProps,
type FormattedEditorHandle,
} from "./text/index.js";
export { UndoRedoStacks, type UndoRedo } from "./undoRedo.js";
Loading