Skip to content

Commit 75f4ab9

Browse files
Integrated latest changes at 05-03-2025 7:30:34 PM
1 parent 99a36cc commit 75f4ab9

File tree

83 files changed

+472
-128
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

83 files changed

+472
-128
lines changed

ej2-react/code-snippet/document-editor/accessibility-cs1/app/App.jsx

Whitespace-only changes.

ej2-react/code-snippet/document-editor/accessibility-cs1/app/App.tsx

Whitespace-only changes.

ej2-react/code-snippet/document-editor/accessibility-cs1/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function App() {
2121
<DocumentEditorContainerComponent height={'590px'} id="container" ref={(scope) => {
2222
documenteditorcontainer = scope;
2323
created();
24-
}} serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" enableToolbar={true}/></div>
24+
}} serviceUrl="https://services.syncfusion.com/react/production/api/documenteditor/" enableToolbar={true}/></div>
2525
);
2626
}
2727
export default App;

ej2-react/code-snippet/document-editor/accessibility-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ function App() {
2626
<DocumentEditorContainerComponent height={'590px'} id="container" ref={(scope) => {
2727
documenteditorcontainer = scope;
2828
created();
29-
}} serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" enableToolbar={true}/></div>
29+
}} serviceUrl="https://services.syncfusion.com/react/production/api/documenteditor/" enableToolbar={true}/></div>
3030
);
3131
}
3232
export default App;

ej2-react/code-snippet/document-editor/accessibility-cs1/index.html

Lines changed: 2 additions & 26 deletions
Large diffs are not rendered by default.

ej2-react/code-snippet/document-editor/base-cs1/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function App() {
1515
//Open the document in Document Editor.
1616
container.documentEditor.open(sfdt);
1717
});
18-
container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
18+
container.serviceUrl = 'https://services.syncfusion.com/react/production/api/documenteditor/';
1919
}
2020
return (<DocumentEditorContainerComponent id="container" height={'590px'} enableToolbar={true} ref={(scope) => { container = scope; }}/>);
2121
}

ej2-react/code-snippet/document-editor/base-cs1/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ComponentDidMount();
1818
//Open the document in Document Editor.
1919
container.documentEditor.open(sfdt);
2020
});
21-
container.serviceUrl = 'https://ej2services.syncfusion.com/production/web-services/api/documenteditor/';
21+
container.serviceUrl = 'https://services.syncfusion.com/react/production/api/documenteditor/';
2222
}
2323

2424
return (

ej2-react/code-snippet/document-editor/base-cs2/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as React from 'react';
33
import { DocumentEditorComponent, Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, ImageResizer, EditorHistory, ContextMenu, OptionsPane, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, StyleDialog, ListDialog, ParagraphDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, StylesDialog } from '@syncfusion/ej2-react-documenteditor';
44
DocumentEditorComponent.Inject(Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, ImageResizer, EditorHistory, ContextMenu, OptionsPane, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, StyleDialog, ListDialog, ParagraphDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, StylesDialog);
55
function Default() {
6-
return (<DocumentEditorComponent id="container" height={'330px'} serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" isReadOnly={false} enablePrint={true} enableSelection={true} enableEditor={true} enableEditorHistory={true} enableContextMenu={true} enableSearch={true} enableOptionsPane={true} enableBookmarkDialog={true} enableBordersAndShadingDialog={true} enableFontDialog={true} enableTableDialog={true} enableParagraphDialog={true} enableHyperlinkDialog={true} enableImageResizer={true} enableListDialog={true} enablePageSetupDialog={true} enableSfdtExport={true} enableStyleDialog={true} enableTableOfContentsDialog={true} enableTableOptionsDialog={true} enableTablePropertiesDialog={true} enableTextExport={true} enableWordExport={true}/>);
6+
return (<DocumentEditorComponent id="container" height={'330px'} serviceUrl="https://services.syncfusion.com/react/production/api/documenteditor/" isReadOnly={false} enablePrint={true} enableSelection={true} enableEditor={true} enableEditorHistory={true} enableContextMenu={true} enableSearch={true} enableOptionsPane={true} enableBookmarkDialog={true} enableBordersAndShadingDialog={true} enableFontDialog={true} enableTableDialog={true} enableParagraphDialog={true} enableHyperlinkDialog={true} enableImageResizer={true} enableListDialog={true} enablePageSetupDialog={true} enableSfdtExport={true} enableStyleDialog={true} enableTableOfContentsDialog={true} enableTableOptionsDialog={true} enableTablePropertiesDialog={true} enableTextExport={true} enableWordExport={true}/>);
77
}
88
export default Default;
99
ReactDOM.render(<Default />, document.getElementById('sample'));

ej2-react/code-snippet/document-editor/base-cs2/app/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import {
1515
DocumentEditorComponent.Inject(Print, SfdtExport, WordExport, TextExport, Selection, Search, Editor, ImageResizer, EditorHistory, ContextMenu, OptionsPane, HyperlinkDialog, TableDialog, BookmarkDialog, TableOfContentsDialog, PageSetupDialog, StyleDialog, ListDialog, ParagraphDialog, BulletsAndNumberingDialog, FontDialog, TablePropertiesDialog, BordersAndShadingDialog, TableOptionsDialog, CellOptionsDialog, StylesDialog);
1616
function Default() {
1717
return (
18-
<DocumentEditorComponent id="container" height={'330px'} serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" isReadOnly={false} enablePrint={true}
18+
<DocumentEditorComponent id="container" height={'330px'} serviceUrl="https://services.syncfusion.com/react/production/api/documenteditor/" isReadOnly={false} enablePrint={true}
1919
enableSelection={true} enableEditor={true} enableEditorHistory={true}
2020
enableContextMenu={true} enableSearch={true} enableOptionsPane={true}
2121
enableBookmarkDialog={true} enableBordersAndShadingDialog={true} enableFontDialog={true} enableTableDialog={true} enableParagraphDialog={true} enableHyperlinkDialog={true} enableImageResizer={true} enableListDialog={true}

ej2-react/code-snippet/document-editor/base-cs3/app/index.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import * as React from 'react';
33
import { DocumentEditorContainerComponent, Toolbar } from '@syncfusion/ej2-react-documenteditor';
44
DocumentEditorContainerComponent.Inject(Toolbar);
55
function Default() {
6-
return (<DocumentEditorContainerComponent id="container" height={'590px'} serviceUrl="https://ej2services.syncfusion.com/production/web-services/api/documenteditor/" enableToolbar={true}/>);
6+
return (<DocumentEditorContainerComponent id="container" height={'590px'} serviceUrl="https://services.syncfusion.com/react/production/api/documenteditor/" enableToolbar={true}/>);
77
}
88
export default Default;
99
ReactDOM.render(<Default />, document.getElementById('sample'));

0 commit comments

Comments
 (0)