jodit-react 1.3.16 → 1.3.19

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,8 +1,30 @@
1
1
  import React, { useCallback, useState } from 'react';
2
2
 
3
- import JoditEditor from '../../src/';
3
+ import JoditEditor, { Jodit } from '../../src/';
4
4
  import './Form.css';
5
5
 
6
+ /**
7
+ * @param {Jodit} jodit
8
+ */
9
+ function preparePaste(jodit) {
10
+ jodit.e.on(
11
+ 'paste',
12
+ e => {
13
+ if (confirm('Change pasted content?')) {
14
+ jodit.e.stopPropagation('paste');
15
+ jodit.s.insertHTML(
16
+ Jodit.modules.Helpers.getDataTransfer(e)
17
+ .getData(Jodit.constants.TEXT_HTML)
18
+ .replace(/a/g, 'b')
19
+ );
20
+ return false;
21
+ }
22
+ },
23
+ { top: true }
24
+ );
25
+ }
26
+ Jodit.plugins.add('preparePaste', preparePaste);
27
+
6
28
  const Form = () => {
7
29
  const [isSource, setSource] = useState(false);
8
30
 
@@ -32,6 +32,14 @@ module.exports = {
32
32
  },
33
33
 
34
34
  devServer: {
35
- contentBase: './'
35
+ static: './',
36
+ open: true,
37
+ allowedHosts: 'all',
38
+ client: {
39
+ progress: true,
40
+ overlay: true
41
+ },
42
+ port: 4000,
43
+ hot: true
36
44
  }
37
45
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "jodit-react",
3
- "version": "1.3.16",
3
+ "version": "1.3.19",
4
4
  "description": "Jodit is awesome and usefully wysiwyg editor with filebrowser",
5
5
  "main": "build/jodit-react.js",
6
6
  "author": "Chupurnov <chupurnov@gmail.com> (https://xdsoft.net/)s",
@@ -16,42 +16,44 @@
16
16
  "rte"
17
17
  ],
18
18
  "dependencies": {
19
- "eslint-plugin-react-hooks": "^4.5.0",
20
- "jodit": "^3.19.3"
19
+ "@typescript-eslint/eslint-plugin": "^5.36.2",
20
+ "@typescript-eslint/parser": "^5.36.2",
21
+ "jodit": "^3.20.2"
21
22
  },
22
23
  "peerDependencies": {
23
24
  "react": "~0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0",
24
25
  "react-dom": "~0.14 || ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0"
25
26
  },
26
27
  "devDependencies": {
27
- "@babel/core": "^7.16.0",
28
- "@babel/eslint-parser": "^7.17.0",
29
- "@babel/preset-env": "^7.16.0",
30
- "@babel/preset-react": "^7.16.0",
31
- "@types/react": "^16.14.2",
28
+ "@babel/core": "^7.19.0",
29
+ "@babel/eslint-parser": "^7.18.9",
30
+ "@babel/preset-env": "^7.19.0",
31
+ "@babel/preset-react": "^7.18.6",
32
+ "@types/react": "^18.0.18",
32
33
  "babel": "^6.23.0",
33
34
  "babel-cli": "^6.26.0",
34
- "babel-loader": "^8.2.2",
35
+ "babel-loader": "^8.2.5",
35
36
  "babel-plugin-transform-class-properties": "^6.24.1",
36
- "css-loader": "^3.6.0",
37
- "eslint": "^8.9.0",
38
- "eslint-config-prettier": "^8.4.0",
39
- "eslint-plugin-prettier": "^4.0.0",
40
- "eslint-plugin-react": "^7.28.0",
41
- "husky": "^7.0.4",
42
- "lint-staged": "^12.3.4",
43
- "prettier": "^2.5.1",
44
- "react": "^16.14.0",
45
- "react-dom": "^16.14.0",
46
- "style-loader": "^0.20.3",
47
- "webpack": "^4.44.2",
48
- "webpack-cli": "^3.3.12",
49
- "webpack-dev-server": "^3.11.0"
37
+ "css-loader": "^6.7.1",
38
+ "eslint": "8.22.0",
39
+ "eslint-config-prettier": "^8.5.0",
40
+ "eslint-plugin-prettier": "^4.2.1",
41
+ "eslint-plugin-react": "^7.31.8",
42
+ "eslint-plugin-react-hooks": "^4.6.0",
43
+ "husky": "^8.0.1",
44
+ "lint-staged": "^13.0.3",
45
+ "prettier": "^2.7.1",
46
+ "react": "^18.2.0",
47
+ "react-dom": "^18.2.0",
48
+ "style-loader": "^3.3.1",
49
+ "webpack": "^5.74.0",
50
+ "webpack-cli": "^4.10.0",
51
+ "webpack-dev-server": "^4.11.0"
50
52
  },
51
53
  "scripts": {
52
54
  "newversion": "npm run lint && npm update && rm -rf build/ && npm run build && npm version patch --no-git-tag-version && npm run github && npm publish ./",
53
55
  "lint": "eslint ./",
54
- "demo": "cd examples && export NODE_ENV=development && webpack-dev-server --config ./webpack.config.js --mode development --port 4000 --hot --inline",
56
+ "demo": "cd examples && export NODE_ENV=development && webpack serve --config ./webpack.config.js --mode development",
55
57
  "start": "npm run demo",
56
58
  "build": "export NODE_ENV=production && webpack --mode production",
57
59
  "github": "git add --all && git commit -m \"New version $npm_package_version. Read more https://github.com/jodit/jodit-react/releases/tag/$npm_package_version \" && git tag $npm_package_version && git push --tags origin HEAD:master"
@@ -1,13 +1,16 @@
1
1
  import * as React from 'react';
2
- import { IJodit } from 'jodit';
2
+ import { Jodit } from 'jodit/types/jodit';
3
3
 
4
4
  declare module 'jodit-react' {
5
5
  export interface IJoditEditorProps {
6
- value: string,
7
- config?: Partial<IJodit['options']>;
6
+ value: string;
7
+ config?: Partial<Jodit['options']>;
8
8
  onChange: (newValue: string) => void;
9
9
  onBlur: (newValue: string) => void;
10
10
  }
11
- const JoditEditor: React.ComponentType<IJoditEditorProps>;
11
+ const JoditEditor: React.ForwardRefExoticComponent<
12
+ React.PropsWithoutRef<IJoditEditorProps> & React.RefAttributes<Jodit>
13
+ >;
12
14
  export default JoditEditor;
15
+ export { Jodit };
13
16
  }
@@ -22,15 +22,17 @@ const JoditEditor = forwardRef(
22
22
 
23
23
  useEffect(() => {
24
24
  const element = textArea.current;
25
- textArea.current = Jodit.make(element, config);
25
+
26
+ const jodit = Jodit.make(element, config);
27
+ textArea.current = jodit;
26
28
 
27
29
  if (isFunction(editorRef)) {
28
- editorRef(textArea.current);
30
+ editorRef(jodit);
29
31
  }
30
32
 
31
33
  return () => {
32
- if (textArea?.current) {
33
- textArea.current.destruct();
34
+ if (jodit) {
35
+ jodit.destruct();
34
36
  }
35
37
 
36
38
  textArea.current = element;
package/src/index.js CHANGED
@@ -1,3 +1,5 @@
1
1
  import JoditEditor from './JoditEditor';
2
+ import { Jodit } from './include.jodit';
2
3
 
3
4
  export default JoditEditor;
5
+ export { Jodit };
@@ -1,8 +0,0 @@
1
- <component name="ProjectCodeStyleConfiguration">
2
- <code_scheme name="Project" version="173">
3
- <option name="LINE_SEPARATOR" value="&#10;" />
4
- <XML>
5
- <option name="XML_LEGACY_SETTINGS_IMPORTED" value="true" />
6
- </XML>
7
- </code_scheme>
8
- </component>
@@ -1,5 +0,0 @@
1
- <component name="ProjectCodeStyleConfiguration">
2
- <state>
3
- <option name="PREFERRED_PROJECT_CODE_STYLE" value="Default" />
4
- </state>
5
- </component>
@@ -1,154 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="PublishConfigData">
4
- <serverData>
5
- <paths name="Dima API">
6
- <serverdata>
7
- <mappings>
8
- <mapping local="$PROJECT_DIR$" web="/" />
9
- </mappings>
10
- </serverdata>
11
- </paths>
12
- <paths name="Dima Control">
13
- <serverdata>
14
- <mappings>
15
- <mapping local="$PROJECT_DIR$" web="/" />
16
- </mappings>
17
- </serverdata>
18
- </paths>
19
- <paths name="Dima Rutaxi">
20
- <serverdata>
21
- <mappings>
22
- <mapping local="$PROJECT_DIR$" web="/" />
23
- </mappings>
24
- </serverdata>
25
- </paths>
26
- <paths name="Kalyanie.ru">
27
- <serverdata>
28
- <mappings>
29
- <mapping local="$PROJECT_DIR$" web="/" />
30
- </mappings>
31
- </serverdata>
32
- </paths>
33
- <paths name="Slava 3">
34
- <serverdata>
35
- <mappings>
36
- <mapping local="$PROJECT_DIR$" web="/" />
37
- </mappings>
38
- </serverdata>
39
- </paths>
40
- <paths name="Slava2">
41
- <serverdata>
42
- <mappings>
43
- <mapping local="$PROJECT_DIR$" web="/" />
44
- </mappings>
45
- </serverdata>
46
- </paths>
47
- <paths name="banks">
48
- <serverdata>
49
- <mappings>
50
- <mapping local="$PROJECT_DIR$" web="/" />
51
- </mappings>
52
- </serverdata>
53
- </paths>
54
- <paths name="calendar-popup">
55
- <serverdata>
56
- <mappings>
57
- <mapping local="$PROJECT_DIR$" web="/" />
58
- </mappings>
59
- </serverdata>
60
- </paths>
61
- <paths name="datetimepicker">
62
- <serverdata>
63
- <mappings>
64
- <mapping local="$PROJECT_DIR$" web="/" />
65
- </mappings>
66
- </serverdata>
67
- </paths>
68
- <paths name="gilcenter">
69
- <serverdata>
70
- <mappings>
71
- <mapping local="$PROJECT_DIR$" web="/" />
72
- </mappings>
73
- </serverdata>
74
- </paths>
75
- <paths name="jodit">
76
- <serverdata>
77
- <mappings>
78
- <mapping local="$PROJECT_DIR$" web="/" />
79
- </mappings>
80
- </serverdata>
81
- </paths>
82
- <paths name="manual">
83
- <serverdata>
84
- <mappings>
85
- <mapping local="$PROJECT_DIR$" web="/" />
86
- </mappings>
87
- </serverdata>
88
- </paths>
89
- <paths name="maps-creator.com">
90
- <serverdata>
91
- <mappings>
92
- <mapping local="$PROJECT_DIR$" web="/" />
93
- </mappings>
94
- </serverdata>
95
- </paths>
96
- <paths name="rutaxi">
97
- <serverdata>
98
- <mappings>
99
- <mapping local="$PROJECT_DIR$" web="/" />
100
- </mappings>
101
- </serverdata>
102
- </paths>
103
- <paths name="rutaxi-minitax">
104
- <serverdata>
105
- <mappings>
106
- <mapping local="$PROJECT_DIR$" web="/" />
107
- </mappings>
108
- </serverdata>
109
- </paths>
110
- <paths name="shop.xdan.ru">
111
- <serverdata>
112
- <mappings>
113
- <mapping local="$PROJECT_DIR$" web="/" />
114
- </mappings>
115
- </serverdata>
116
- </paths>
117
- <paths name="slava3-minitax">
118
- <serverdata>
119
- <mappings>
120
- <mapping local="$PROJECT_DIR$" web="/" />
121
- </mappings>
122
- </serverdata>
123
- </paths>
124
- <paths name="ssss">
125
- <serverdata>
126
- <mappings>
127
- <mapping local="$PROJECT_DIR$" web="/" />
128
- </mappings>
129
- </serverdata>
130
- </paths>
131
- <paths name="xdan">
132
- <serverdata>
133
- <mappings>
134
- <mapping local="$PROJECT_DIR$" web="/" />
135
- </mappings>
136
- </serverdata>
137
- </paths>
138
- <paths name="xdsoft">
139
- <serverdata>
140
- <mappings>
141
- <mapping local="$PROJECT_DIR$" web="/" />
142
- </mappings>
143
- </serverdata>
144
- </paths>
145
- <paths name="Кальянные.РФ">
146
- <serverdata>
147
- <mappings>
148
- <mapping local="$PROJECT_DIR$" web="/" />
149
- </mappings>
150
- </serverdata>
151
- </paths>
152
- </serverData>
153
- </component>
154
- </project>
@@ -1,4 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="Encoding" addBOMForNewFiles="with NO BOM" />
4
- </project>
@@ -1,17 +0,0 @@
1
- <component name="InspectionProjectProfileManager">
2
- <profile version="1.0">
3
- <option name="myName" value="Project Default" />
4
- <inspection_tool class="CssUnknownProperty" enabled="true" level="WARNING" enabled_by_default="true">
5
- <option name="myCustomPropertiesEnabled" value="true" />
6
- <option name="myIgnoreVendorSpecificProperties" value="false" />
7
- <option name="myCustomPropertiesList">
8
- <value>
9
- <list size="1">
10
- <item index="0" class="java.lang.String" itemvalue="user-select" />
11
- </list>
12
- </value>
13
- </option>
14
- </inspection_tool>
15
- <inspection_tool class="Eslint" enabled="true" level="WARNING" enabled_by_default="true" />
16
- </profile>
17
- </component>
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <module type="WEB_MODULE" version="4">
3
- <component name="NewModuleRootManager">
4
- <content url="file://$MODULE_DIR$" />
5
- <orderEntry type="inheritedJdk" />
6
- <orderEntry type="sourceFolder" forTests="false" />
7
- </component>
8
- </module>
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="JavaScriptLibraryMappings">
4
- <includedPredefinedLibrary name="Node.js Core" />
5
- </component>
6
- </project>
@@ -1,29 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="MarkdownEnhProjectSettings">
4
- <AnnotatorSettings targetHasSpaces="true" linkCaseMismatch="true" wikiCaseMismatch="true" wikiLinkHasDashes="true" notUnderWikiHome="true" targetNotWikiPageExt="true" notUnderSourceWikiHome="true" targetNameHasAnchor="true" targetPathHasAnchor="true" wikiLinkHasSlash="true" wikiLinkHasSubdir="true" wikiLinkHasOnlyAnchor="true" linkTargetsWikiHasExt="true" linkTargetsWikiHasBadExt="true" notUnderSameRepo="true" targetNotUnderVcs="false" linkNeedsExt="true" linkHasBadExt="true" linkTargetNeedsExt="true" linkTargetHasBadExt="true" wikiLinkNotInWiki="true" imageTargetNotInRaw="true" repoRelativeAcrossVcsRoots="true" multipleWikiTargetsMatch="true" unresolvedLinkReference="true" linkIsIgnored="true" anchorIsIgnored="true" anchorIsUnresolved="true" anchorLineReferenceIsUnresolved="true" anchorLineReferenceFormat="true" anchorHasDuplicates="true" abbreviationDuplicates="true" abbreviationNotUsed="true" attributeIdDuplicateDefinition="true" attributeIdNotUsed="true" footnoteDuplicateDefinition="true" footnoteUnresolved="true" footnoteDuplicates="true" footnoteNotUsed="true" macroDuplicateDefinition="true" macroUnresolved="true" macroDuplicates="true" macroNotUsed="true" referenceDuplicateDefinition="true" referenceUnresolved="true" referenceDuplicates="true" referenceNotUsed="true" referenceUnresolvedNumericId="true" enumRefDuplicateDefinition="true" enumRefUnresolved="true" enumRefDuplicates="true" enumRefNotUsed="true" enumRefLinkUnresolved="true" enumRefLinkDuplicates="true" simTocUpdateNeeded="true" simTocTitleSpaceNeeded="true" />
5
- <HtmlExportSettings updateOnSave="false" parentDir="" targetDir="" cssDir="css" scriptDir="js" plainHtml="false" imageDir="" copyLinkedImages="false" imagePathType="0" targetPathType="2" targetExt="" useTargetExt="false" noCssNoScripts="false" useElementStyleAttribute="false" linkToExportedHtml="true" exportOnSettingsChange="true" regenerateOnProjectOpen="false" linkFormatType="HTTP_ABSOLUTE" />
6
- <LinkMapSettings>
7
- <textMaps />
8
- </LinkMapSettings>
9
- </component>
10
- <component name="MarkdownNavigatorHistory">
11
- <PasteImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
12
- <highlightList />
13
- <directories />
14
- <filenames />
15
- </PasteImageHistory>
16
- <CopyImageHistory checkeredTransparentBackground="false" filename="image" directory="" onPasteImageTargetRef="3" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteReferenceElement="2" cornerRadius="20" borderColor="0" transparentColor="16777215" borderWidth="1" trimTop="0" trimBottom="0" trimLeft="0" trimRight="0" transparent="false" roundCorners="false" showPreview="true" bordered="false" scaled="false" cropped="false" hideInapplicableOperations="false" preserveLinkFormat="false" scale="50" scalingInterpolation="1" transparentTolerance="0" saveAsDefaultOnOK="false" linkFormat="0" addHighlights="false" showHighlightCoordinates="true" showHighlights="false" mouseSelectionAddsHighlight="false" outerFilled="false" outerFillColor="0" outerFillTransparent="true" outerFillAlpha="30">
17
- <highlightList />
18
- <directories />
19
- <filenames />
20
- </CopyImageHistory>
21
- <PasteLinkHistory onPasteImageTargetRef="3" onPasteTargetRef="1" onPasteLinkText="0" onPasteImageElement="1" onPasteLinkElement="1" onPasteWikiElement="2" onPasteReferenceElement="2" hideInapplicableOperations="false" preserveLinkFormat="false" useHeadingForLinkText="false" linkFormat="0" saveAsDefaultOnOK="false" />
22
- <TableToJsonHistory>
23
- <entries />
24
- </TableToJsonHistory>
25
- <TableSortHistory>
26
- <entries />
27
- </TableSortHistory>
28
- </component>
29
- </project>
@@ -1,55 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="FlexmarkProjectSettings">
4
- <FlexmarkHtmlSettings flexmarkSpecExampleRendering="0" flexmarkSpecExampleRenderHtml="false">
5
- <flexmarkSectionLanguages>
6
- <option name="1" value="Markdown" />
7
- <option name="2" value="HTML" />
8
- <option name="3" value="flexmark-ast:1" />
9
- </flexmarkSectionLanguages>
10
- </FlexmarkHtmlSettings>
11
- </component>
12
- <component name="MarkdownProjectSettings">
13
- <PreviewSettings splitEditorLayout="SPLIT" splitEditorPreview="PREVIEW" useGrayscaleRendering="false" zoomFactor="1.0" maxImageWidth="0" synchronizePreviewPosition="true" highlightPreviewType="LINE" highlightFadeOut="5" highlightOnTyping="true" synchronizeSourcePosition="true" verticallyAlignSourceAndPreviewSyncPosition="true" showSearchHighlightsInPreview="true" showSelectionInPreview="true" lastLayoutSetsDefault="false">
14
- <PanelProvider>
15
- <provider providerId="com.vladsch.idea.multimarkdown.editor.swing.html.panel" providerName="Default - Swing" />
16
- </PanelProvider>
17
- </PreviewSettings>
18
- <ParserSettings gitHubSyntaxChange="false" correctedInvalidSettings="false" emojiShortcuts="1" emojiImages="0">
19
- <PegdownExtensions>
20
- <option name="ANCHORLINKS" value="true" />
21
- <option name="ATXHEADERSPACE" value="true" />
22
- <option name="FENCED_CODE_BLOCKS" value="true" />
23
- <option name="INTELLIJ_DUMMY_IDENTIFIER" value="true" />
24
- <option name="RELAXEDHRULES" value="true" />
25
- <option name="STRIKETHROUGH" value="true" />
26
- <option name="TABLES" value="true" />
27
- <option name="TASKLISTITEMS" value="true" />
28
- </PegdownExtensions>
29
- <ParserOptions>
30
- <option name="COMMONMARK_LISTS" value="true" />
31
- <option name="EMOJI_SHORTCUTS" value="true" />
32
- <option name="GFM_TABLE_RENDERING" value="true" />
33
- <option name="PRODUCTION_SPEC_PARSER" value="true" />
34
- <option name="SIM_TOC_BLANK_LINE_SPACER" value="true" />
35
- </ParserOptions>
36
- </ParserSettings>
37
- <HtmlSettings headerTopEnabled="false" headerBottomEnabled="false" bodyTopEnabled="false" bodyBottomEnabled="false" addPageHeader="false" imageUriSerials="false" addDocTypeHtml="true" noParaTags="false" plantUmlConversion="0">
38
- <GeneratorProvider>
39
- <provider providerId="com.vladsch.idea.multimarkdown.editor.text.html.generator" providerName="Unmodified HTML Generator" />
40
- </GeneratorProvider>
41
- <headerTop />
42
- <headerBottom />
43
- <bodyTop />
44
- <bodyBottom />
45
- </HtmlSettings>
46
- <CssSettings previewScheme="UI_SCHEME" cssUri="" isCssUriEnabled="false" isCssUriSerial="true" isCssTextEnabled="false" isDynamicPageWidth="true">
47
- <StylesheetProvider>
48
- <provider providerId="com.vladsch.idea.multimarkdown.editor.text.html.css" providerName="No Stylesheet" />
49
- </StylesheetProvider>
50
- <ScriptProviders />
51
- <cssText />
52
- <cssUriHistory />
53
- </CssSettings>
54
- </component>
55
- </project>
package/.idea/misc.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="JavaScriptSettings">
4
- <option name="languageLevel" value="JSX" />
5
- </component>
6
- </project>
package/.idea/modules.xml DELETED
@@ -1,8 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="ProjectModuleManager">
4
- <modules>
5
- <module fileurl="file://$PROJECT_DIR$/.idea/jodit-react.iml" filepath="$PROJECT_DIR$/.idea/jodit-react.iml" />
6
- </modules>
7
- </component>
8
- </project>
package/.idea/vagrant.xml DELETED
@@ -1,7 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VagrantProjectSettings">
4
- <option name="instanceFolder" value="" />
5
- <option name="provider" value="" />
6
- </component>
7
- </project>
package/.idea/vcs.xml DELETED
@@ -1,6 +0,0 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <project version="4">
3
- <component name="VcsDirectoryMappings">
4
- <mapping directory="$PROJECT_DIR$" vcs="Git" />
5
- </component>
6
- </project>