@cocreate/text 1.20.11 → 1.20.13
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/.github/FUNDING.yml +3 -3
- package/.github/workflows/automated.yml +95 -95
- package/.github/workflows/manual.yml +44 -44
- package/CHANGELOG.md +1797 -1782
- package/CONTRIBUTING.md +96 -96
- package/CoCreate.config.js +26 -26
- package/LICENSE +683 -683
- package/README.md +97 -97
- package/demo/custom-rich-text.html +277 -152
- package/demo/demos.1.html +24 -25
- package/demo/demos.html +38 -38
- package/demo/index.html +74 -36
- package/demo/test-webpage.html +376 -376
- package/docs/index.html +276 -105
- package/package.json +73 -73
- package/release.config.js +21 -21
- package/src/index.js +470 -470
- package/src/saveDomText.js +32 -32
- package/src/updateDom.js +208 -208
- package/src/updateText.js +79 -79
- package/webpack.config.js +84 -84
package/README.md
CHANGED
@@ -1,98 +1,98 @@
|
|
1
|
-
# CoCreate-text
|
2
|
-
|
3
|
-
A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/text)
|
4
|
-
|
5
|
-

|
6
|
-

|
7
|
-

|
8
|
-

|
9
|
-

|
10
|
-

|
11
|
-

|
12
|
-
|
13
|
-

|
14
|
-
|
15
|
-
## [Docs & Demo](https://cocreate.app/docs/text)
|
16
|
-
|
17
|
-
For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/text)
|
18
|
-
|
19
|
-
## CDN
|
20
|
-
|
21
|
-
```html
|
22
|
-
<script src="https://cdn.cocreate.app/text/latest/CoCreate-text.min.js"></script>
|
23
|
-
```
|
24
|
-
|
25
|
-
```html
|
26
|
-
<script src="https://cdn.cocreate.app/text/latest/CoCreate-text.min.css"></script>
|
27
|
-
```
|
28
|
-
|
29
|
-
## NPM
|
30
|
-
|
31
|
-
```shell
|
32
|
-
$ npm i @cocreate/text
|
33
|
-
```
|
34
|
-
|
35
|
-
## yarn
|
36
|
-
|
37
|
-
```shell
|
38
|
-
$ yarn install @cocreate/text
|
39
|
-
```
|
40
|
-
|
41
|
-
# Table of Contents
|
42
|
-
|
43
|
-
- [Table of Contents](#table-of-contents)
|
44
|
-
- [Announcements](#announcements)
|
45
|
-
- [Roadmap](#roadmap)
|
46
|
-
- [How to Contribute](#how-to-contribute)
|
47
|
-
- [About](#about)
|
48
|
-
- [License](#license)
|
49
|
-
|
50
|
-
<a name="announcements"></a>
|
51
|
-
|
52
|
-
# Announcements
|
53
|
-
|
54
|
-
All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-text/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-text/releases). You may also subscribe to email for releases and breaking changes.
|
55
|
-
|
56
|
-
<a name="roadmap"></a>
|
57
|
-
|
58
|
-
# Roadmap
|
59
|
-
|
60
|
-
If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-text/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-text/pulls). We would love to hear your feedback.
|
61
|
-
|
62
|
-
<a name="about"></a>
|
63
|
-
|
64
|
-
# About
|
65
|
-
|
66
|
-
CoCreate-text is guided and supported by the CoCreate Developer Experience Team.
|
67
|
-
|
68
|
-
Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
|
69
|
-
|
70
|
-
CoCreate-text is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
|
71
|
-
|
72
|
-
<a name="contribute"></a>
|
73
|
-
|
74
|
-
# How to Contribute
|
75
|
-
|
76
|
-
We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-text/blob/master/CONTRIBUTING.md) guide for details.
|
77
|
-
|
78
|
-
We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-text/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-text/pulls) or merely upvote or comment on existing issues or pull requests.
|
79
|
-
|
80
|
-
We appreciate your continued support, thank you!
|
81
|
-
|
82
|
-
|
83
|
-
<a name="license"></a>
|
84
|
-
# Dual License
|
85
|
-
## Open Source
|
86
|
-
[GNU Affero General Public License version 3 (AGPL-3.0)](https://github.com/CoCreate-app/CoCreate-text/blob/master/LICENSE)
|
87
|
-
|
88
|
-
## Commercial
|
89
|
-
For-profit companies and individuals intending to use CoCreate-text for
|
90
|
-
commercial use must purchase a commercial license. This license allows
|
91
|
-
source code modifications, but does not permit redistribution of
|
92
|
-
modifications.
|
93
|
-
|
94
|
-
The commercial license is designed for you to use CoCreate-text in commercial
|
95
|
-
products and applications, without the provisions of the GPLv3. With the
|
96
|
-
commercial license, your code is kept propietary, to yourself. If you
|
97
|
-
want to use CoCreate-text to develop commercial sites, themes, projects, and
|
1
|
+
# CoCreate-text
|
2
|
+
|
3
|
+
A simple text component in vanilla javascript. Easily configured using HTML5 attributes and/or JavaScript API. Take it for a spin in our [playground!](https://cocreate.app/docs/text)
|
4
|
+
|
5
|
+

|
6
|
+

|
7
|
+

|
8
|
+

|
9
|
+

|
10
|
+

|
11
|
+

|
12
|
+
|
13
|
+

|
14
|
+
|
15
|
+
## [Docs & Demo](https://cocreate.app/docs/text)
|
16
|
+
|
17
|
+
For a complete guide and working demo refer to the [doumentation](https://cocreate.app/docs/text)
|
18
|
+
|
19
|
+
## CDN
|
20
|
+
|
21
|
+
```html
|
22
|
+
<script src="https://cdn.cocreate.app/text/latest/CoCreate-text.min.js"></script>
|
23
|
+
```
|
24
|
+
|
25
|
+
```html
|
26
|
+
<script src="https://cdn.cocreate.app/text/latest/CoCreate-text.min.css"></script>
|
27
|
+
```
|
28
|
+
|
29
|
+
## NPM
|
30
|
+
|
31
|
+
```shell
|
32
|
+
$ npm i @cocreate/text
|
33
|
+
```
|
34
|
+
|
35
|
+
## yarn
|
36
|
+
|
37
|
+
```shell
|
38
|
+
$ yarn install @cocreate/text
|
39
|
+
```
|
40
|
+
|
41
|
+
# Table of Contents
|
42
|
+
|
43
|
+
- [Table of Contents](#table-of-contents)
|
44
|
+
- [Announcements](#announcements)
|
45
|
+
- [Roadmap](#roadmap)
|
46
|
+
- [How to Contribute](#how-to-contribute)
|
47
|
+
- [About](#about)
|
48
|
+
- [License](#license)
|
49
|
+
|
50
|
+
<a name="announcements"></a>
|
51
|
+
|
52
|
+
# Announcements
|
53
|
+
|
54
|
+
All updates to this library are documented in our [CHANGELOG](https://github.com/CoCreate-app/CoCreate-text/blob/master/CHANGELOG.md) and [releases](https://github.com/CoCreate-app/CoCreate-text/releases). You may also subscribe to email for releases and breaking changes.
|
55
|
+
|
56
|
+
<a name="roadmap"></a>
|
57
|
+
|
58
|
+
# Roadmap
|
59
|
+
|
60
|
+
If you are interested in the future direction of this project, please take a look at our open [issues](https://github.com/CoCreate-app/CoCreate-text/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-text/pulls). We would love to hear your feedback.
|
61
|
+
|
62
|
+
<a name="about"></a>
|
63
|
+
|
64
|
+
# About
|
65
|
+
|
66
|
+
CoCreate-text is guided and supported by the CoCreate Developer Experience Team.
|
67
|
+
|
68
|
+
Please Email the Developer Experience Team [here](mailto:develop@cocreate.app) in case of any queries.
|
69
|
+
|
70
|
+
CoCreate-text is maintained and funded by CoCreate. The names and logos for CoCreate are trademarks of CoCreate, LLC.
|
71
|
+
|
72
|
+
<a name="contribute"></a>
|
73
|
+
|
74
|
+
# How to Contribute
|
75
|
+
|
76
|
+
We encourage contribution to our libraries (you might even score some nifty swag), please see our [CONTRIBUTING](https://github.com/CoCreate-app/CoCreate-text/blob/master/CONTRIBUTING.md) guide for details.
|
77
|
+
|
78
|
+
We want this library to be community-driven, and CoCreate led. We need your help to realize this goal. To help make sure we are building the right things in the right order, we ask that you create [issues](https://github.com/CoCreate-app/CoCreate-text/issues) and [pull requests](https://github.com/CoCreate-app/CoCreate-text/pulls) or merely upvote or comment on existing issues or pull requests.
|
79
|
+
|
80
|
+
We appreciate your continued support, thank you!
|
81
|
+
|
82
|
+
|
83
|
+
<a name="license"></a>
|
84
|
+
# Dual License
|
85
|
+
## Open Source
|
86
|
+
[GNU Affero General Public License version 3 (AGPL-3.0)](https://github.com/CoCreate-app/CoCreate-text/blob/master/LICENSE)
|
87
|
+
|
88
|
+
## Commercial
|
89
|
+
For-profit companies and individuals intending to use CoCreate-text for
|
90
|
+
commercial use must purchase a commercial license. This license allows
|
91
|
+
source code modifications, but does not permit redistribution of
|
92
|
+
modifications.
|
93
|
+
|
94
|
+
The commercial license is designed for you to use CoCreate-text in commercial
|
95
|
+
products and applications, without the provisions of the GPLv3. With the
|
96
|
+
commercial license, your code is kept propietary, to yourself. If you
|
97
|
+
want to use CoCreate-text to develop commercial sites, themes, projects, and
|
98
98
|
applications, the commercial license is the appropriate license.
|