@cocreate/text 1.15.13 → 1.15.16
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.
- package/CHANGELOG.md +21 -0
- package/CoCreate.config.js +1 -1
- package/demo/demos.html +12 -5
- package/demo/test-webpage.html +1 -1
- package/docs/index.html +1 -1
- package/package.json +1 -1
- package/src/index.js +1 -0
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,24 @@
|
|
1
|
+
## [1.15.16](https://github.com/CoCreate-app/CoCreate-text/compare/v1.15.15...v1.15.16) (2022-05-19)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* update document_id on link index.css ([6b65da1](https://github.com/CoCreate-app/CoCreate-text/commit/6b65da1be856e5f30d3adda18a2406ee8f505c97))
|
7
|
+
|
8
|
+
## [1.15.15](https://github.com/CoCreate-app/CoCreate-text/compare/v1.15.14...v1.15.15) (2022-05-06)
|
9
|
+
|
10
|
+
|
11
|
+
### Bug Fixes
|
12
|
+
|
13
|
+
* update config organization_Id to organization_id ([4c363f2](https://github.com/CoCreate-app/CoCreate-text/commit/4c363f2c0709082f85a59b514ca57fcbb0d19627))
|
14
|
+
|
15
|
+
## [1.15.14](https://github.com/CoCreate-app/CoCreate-text/compare/v1.15.13...v1.15.14) (2022-04-30)
|
16
|
+
|
17
|
+
|
18
|
+
### Bug Fixes
|
19
|
+
|
20
|
+
* activeCursor element defined on window object ([88e4575](https://github.com/CoCreate-app/CoCreate-text/commit/88e457592fac304ffd02e56c491688d598838e6f))
|
21
|
+
|
1
22
|
## [1.15.13](https://github.com/CoCreate-app/CoCreate-text/compare/v1.15.12...v1.15.13) (2022-03-22)
|
2
23
|
|
3
24
|
|
package/CoCreate.config.js
CHANGED
package/demo/demos.html
CHANGED
@@ -9,12 +9,12 @@
|
|
9
9
|
</head>
|
10
10
|
|
11
11
|
<body class="padding:20px">
|
12
|
-
<form collection="
|
12
|
+
<form collection="test" document_id="627d74c0b17a5bb3cbe590fd">
|
13
13
|
<input type="text" name="name"></textarea>
|
14
|
+
<h1 name='name'></h1>
|
15
|
+
<!-- <textarea name="name2"></textarea> -->
|
14
16
|
<!--<h1 name='name' contenteditable>I will be replaced by crdt</h1>-->
|
15
|
-
<
|
16
|
-
<!--<h1 name='name' contenteditable>I will be replaced by crdt</h1>-->
|
17
|
-
<div name='name2' contenteditable>I will be replaced by crud</div>
|
17
|
+
<!-- <div name='name2' contenteditable>I will be replaced by crud</div> -->
|
18
18
|
|
19
19
|
<div class="padding:20px">
|
20
20
|
CoCreateCrdt.init({collection: "apples1", document_id: "60bea334b25613e8da1b4bdf", name: "src"});
|
@@ -26,7 +26,14 @@
|
|
26
26
|
CoCreate.crdt.getText({collection: "apples1", document_id: "5fe9e0a11b4a703e71c51ba8", name: "name"});
|
27
27
|
</div>
|
28
28
|
</form>
|
29
|
-
|
29
|
+
<script>
|
30
|
+
var config = {
|
31
|
+
apiKey: '2061acef-0451-4545-f754-60cf8160', // Your apiKey can be retrived after signing up at https://cocreate.app
|
32
|
+
organization_id: '5ff747727005da1c272740ab', // Your organization_id can be retrived after signing up at https://cocreate.app
|
33
|
+
host: 'general.cocreate.app' // Points to socket server. If not defined it will use the url in web browser by default
|
34
|
+
}
|
35
|
+
</script>
|
36
|
+
|
30
37
|
<!--<script src="../dist/CoCreate-text.js" ></script>-->
|
31
38
|
<script src="../../../CoCreateJS/dist/CoCreate.js"></script>
|
32
39
|
|
package/demo/test-webpage.html
CHANGED
package/docs/index.html
CHANGED
@@ -10,7 +10,7 @@
|
|
10
10
|
<meta name="keywords" content="helper classes, utility classes, css framework, css library, inline style classes" />
|
11
11
|
<meta name="robots" content="index,follow" />
|
12
12
|
<meta property="og:image" content="https://cdn.cocreate.app/docs/boilerplate.png">
|
13
|
-
<link rel="stylesheet" href="/docs/index.css" collection="files" document_id="
|
13
|
+
<link rel="stylesheet" href="/docs/index.css" collection="files" document_id="62827d7e8082ce05b081430b" name="src" type="text/css" save="true"/>
|
14
14
|
</head>
|
15
15
|
|
16
16
|
<body>
|
package/package.json
CHANGED
package/src/index.js
CHANGED