@cocreate/utils 1.37.3 → 1.39.0
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 +33 -0
- package/docs/index.html +321 -321
- package/package.json +4 -8
- package/src/index.js +274 -139
- package/webpack.config.js +65 -90
package/docs/index.html
CHANGED
|
@@ -1,331 +1,331 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
<meta
|
|
24
|
-
property="og:image"
|
|
25
|
-
content="https://cdn.cocreate.app/docs/utils.png"
|
|
26
|
-
/>
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
|
6
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
7
|
+
<title>CoCreate-utils Documentation | CoCreateJS</title>
|
|
8
|
+
<link
|
|
9
|
+
rel="icon"
|
|
10
|
+
type="image/png"
|
|
11
|
+
sizes="32x32"
|
|
12
|
+
href="https://cocreate.app/images/favicon.ico" />
|
|
13
|
+
<meta
|
|
14
|
+
name="description"
|
|
15
|
+
content="A simple HTML5 and pure javascript component. Easy configuration using HTML5 attributes or Javscript api and highly styleable." />
|
|
16
|
+
<meta
|
|
17
|
+
name="keywords"
|
|
18
|
+
content="helper classes, utility classes, css framework, css library, inline style classes" />
|
|
19
|
+
<meta name="robots" content="index,follow" />
|
|
20
|
+
<meta
|
|
21
|
+
property="og:image"
|
|
22
|
+
content="https://cdn.cocreate.app/docs/utils.png" />
|
|
27
23
|
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
</head>
|
|
24
|
+
<link
|
|
25
|
+
rel="stylesheet"
|
|
26
|
+
href="../index.css"
|
|
27
|
+
array="files"
|
|
28
|
+
object="60888216117c640e7596303f"
|
|
29
|
+
key="src"
|
|
30
|
+
type="text/css"
|
|
31
|
+
save="true" />
|
|
32
|
+
<link rel="manifest" href="/manifest.webmanifest" />
|
|
33
|
+
</head>
|
|
39
34
|
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
class="margin-top:15px"
|
|
152
|
-
><code class="language-bash">npm i @cocreate/utils</code></pre>
|
|
153
|
-
<p class="padding:10px_0px line-height:1.5">
|
|
154
|
-
Or you can use cdn link:
|
|
155
|
-
</p>
|
|
156
|
-
<pre><code class="language-html"><script>https://cdn.cocreate.app/utils/latest/CoCreate-utils.min.js</script></code></pre>
|
|
35
|
+
<body>
|
|
36
|
+
<!-- Navbar -->
|
|
37
|
+
<nav
|
|
38
|
+
class="width:100% display:flex align-items:center background:transparent padding-top:10px padding-bottom:10px"
|
|
39
|
+
content_id="content"
|
|
40
|
+
scroll="sticky-nav,"
|
|
41
|
+
scroll-up="5"
|
|
42
|
+
scroll-down="5"
|
|
43
|
+
path="../"
|
|
44
|
+
src="../components/navbar.html"></nav>
|
|
45
|
+
<sidenav
|
|
46
|
+
id="menuL"
|
|
47
|
+
class="position:fixed top:0px left:0px overflow:hidden background:whitesmoke height:100vh width:0px width:300px@xl"
|
|
48
|
+
resizable
|
|
49
|
+
resize-query="[content_id='content']"
|
|
50
|
+
resize-property="margin-left"
|
|
51
|
+
resize-value="width">
|
|
52
|
+
<menu
|
|
53
|
+
array="files"
|
|
54
|
+
object="603717b07de7fb350ae9fec8"
|
|
55
|
+
key="src"></menu>
|
|
56
|
+
<div resize="right"></div>
|
|
57
|
+
</sidenav>
|
|
58
|
+
<main
|
|
59
|
+
class="padding-top:15px padding:15px@lg@xl"
|
|
60
|
+
content_id="content"
|
|
61
|
+
id="cocreate-utils">
|
|
62
|
+
<div
|
|
63
|
+
class="display:flex flex-wrap:wrap justify-content:space-between position:relative margin:10px">
|
|
64
|
+
<div class="display:flex align-items:center">
|
|
65
|
+
<h2>CoCreate-utils</h2>
|
|
66
|
+
</div>
|
|
67
|
+
<div
|
|
68
|
+
class="display:flex align-items:center font-size:20px position:absolute right:0 padding:5px background:white">
|
|
69
|
+
<div
|
|
70
|
+
class="display:flex align-items:center transition:0.3s padding-left:10px"
|
|
71
|
+
share-network="true"
|
|
72
|
+
share-text="Enter decription here"
|
|
73
|
+
share-title="testing im a title"
|
|
74
|
+
share-height="600"
|
|
75
|
+
share-width="700"
|
|
76
|
+
share-media="https://cdn.cocreate.app/docs/utils.png"
|
|
77
|
+
hover="display:block!important"
|
|
78
|
+
hover-query=".social-networks">
|
|
79
|
+
<div class="display:none social-networks">
|
|
80
|
+
<a
|
|
81
|
+
class="margin-right:15px"
|
|
82
|
+
share-network="twitter"
|
|
83
|
+
title="Share on twitter"
|
|
84
|
+
><i src="/assets/svg/twitter.svg"></i
|
|
85
|
+
></a>
|
|
86
|
+
<a
|
|
87
|
+
class="margin-right:15px"
|
|
88
|
+
share-network="facebook"
|
|
89
|
+
title="Share on Facebook"
|
|
90
|
+
><i src="/assets/svg/facebook.svg"></i
|
|
91
|
+
></a>
|
|
92
|
+
<a
|
|
93
|
+
class="margin-right:15px"
|
|
94
|
+
share-network="instagram"
|
|
95
|
+
title="Share on instagram"
|
|
96
|
+
><i src="/assets/svg/instagram.svg"></i
|
|
97
|
+
></a>
|
|
98
|
+
</div>
|
|
99
|
+
<a
|
|
100
|
+
class="margin-right:15px"
|
|
101
|
+
share-network="share"
|
|
102
|
+
title="Share on share"
|
|
103
|
+
><i src="/assets/svg/share-alt.svg"></i
|
|
104
|
+
></a>
|
|
105
|
+
</div>
|
|
106
|
+
<a
|
|
107
|
+
href="https://github.com/CoCreate-app/CoCreate-utils"
|
|
108
|
+
target="_blank"
|
|
109
|
+
class="margin-right:15px"
|
|
110
|
+
><i src="/assets/svg/github.svg"></i
|
|
111
|
+
></a>
|
|
112
|
+
</div>
|
|
113
|
+
</div>
|
|
114
|
+
<h1
|
|
115
|
+
class="max-width:500px margin:20px_10px line-height:1.5 font-size:16px font-weight:100">
|
|
116
|
+
A headless vinilla javascript micro component. Easy
|
|
117
|
+
configuration using HTML5 attributes or Javscript api.
|
|
118
|
+
</h1>
|
|
119
|
+
<div id="utils-section" class="display:flex flex-wrap:wrap">
|
|
120
|
+
<div
|
|
121
|
+
class="flex-grow:1 width:400px width:300px@xs padding:0px_10px margin-top:60px">
|
|
122
|
+
<div
|
|
123
|
+
id="utils-install"
|
|
124
|
+
class="border-bottom:1px_solid_lightgrey"
|
|
125
|
+
scroll
|
|
126
|
+
scroll-intersect="color:dodgerblue"
|
|
127
|
+
scroll-query="#utils-install-section">
|
|
128
|
+
<span
|
|
129
|
+
class="display:flex align-items:center width:fit-content"
|
|
130
|
+
hover="display:block!important"
|
|
131
|
+
hover-query="[href='#utils-install']">
|
|
132
|
+
<h2 class="padding:5px_0px">Install</h2>
|
|
133
|
+
<a
|
|
134
|
+
class="margin-left:10px display:none"
|
|
135
|
+
href="#utils-install"
|
|
136
|
+
><i src="/assets/svg/link.svg"></i
|
|
137
|
+
></a>
|
|
138
|
+
</span>
|
|
139
|
+
</div>
|
|
140
|
+
<pre
|
|
141
|
+
class="margin-top:15px"><code class="language-bash">npm i @cocreate/utils</code></pre>
|
|
142
|
+
<p class="padding:10px_0px line-height:1.5">
|
|
143
|
+
Or you can use cdn link:
|
|
144
|
+
</p>
|
|
145
|
+
<pre><code class="language-html"><script>https://cdn.cocreate.app/utils/latest/CoCreate-utils.min.js</script></code></pre>
|
|
157
146
|
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
147
|
+
<div
|
|
148
|
+
id="utils-usage"
|
|
149
|
+
class="margin-top:80px border-bottom:1px_solid_lightgrey"
|
|
150
|
+
scroll
|
|
151
|
+
scroll-intersect="color:dodgerblue"
|
|
152
|
+
scroll-query="#utils-usage-section">
|
|
153
|
+
<span
|
|
154
|
+
class="display:flex align-items:center width:fit-content"
|
|
155
|
+
hover="display:block!important"
|
|
156
|
+
hover-query="[href='#utils-usage']">
|
|
157
|
+
<h2 class="padding:5px_0px">Usage</h2>
|
|
158
|
+
<a
|
|
159
|
+
class="margin-left:10px display:none"
|
|
160
|
+
href="#utils-usage"
|
|
161
|
+
><i src="/assets/svg/link.svg"></i
|
|
162
|
+
></a>
|
|
163
|
+
</span>
|
|
164
|
+
</div>
|
|
165
|
+
<p class="padding:10px_0px line-height:1.5">
|
|
166
|
+
utils usage content
|
|
167
|
+
</p>
|
|
168
|
+
<pre><code class="language-html"><div></div></code></pre>
|
|
178
169
|
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
170
|
+
<div
|
|
171
|
+
id="utils-attributes"
|
|
172
|
+
class="margin-top:80px border-bottom:1px_solid_lightgrey"
|
|
173
|
+
scroll
|
|
174
|
+
scroll-intersect="color:dodgerblue"
|
|
175
|
+
scroll-query="#utils-attributes-section">
|
|
176
|
+
<span
|
|
177
|
+
class="display:flex align-items:center width:fit-content"
|
|
178
|
+
hover="display:block!important"
|
|
179
|
+
hover-query="[href='#utils-attributes']">
|
|
180
|
+
<h2 class="padding:5px_0px">Attributes</h2>
|
|
181
|
+
<a
|
|
182
|
+
class="margin-left:10px display:none"
|
|
183
|
+
href="#utils-attributes"
|
|
184
|
+
><i src="/assets/svg/link.svg"></i
|
|
185
|
+
></a>
|
|
186
|
+
</span>
|
|
187
|
+
</div>
|
|
188
|
+
<ul class="list-style-type:none">
|
|
189
|
+
<li
|
|
190
|
+
class="padding:15px_0px border-bottom:1px_solid_lightgrey">
|
|
191
|
+
<h4>
|
|
192
|
+
<span>utils</span>
|
|
193
|
+
<span class="cocreate-badge success"
|
|
194
|
+
>string</span
|
|
195
|
+
>
|
|
196
|
+
<span class="cocreate-badge warning"
|
|
197
|
+
>optional</span
|
|
198
|
+
>
|
|
199
|
+
</h4>
|
|
200
|
+
<p>utils-attribute</p>
|
|
201
|
+
</li>
|
|
202
|
+
<li
|
|
203
|
+
class="padding:15px_0px border-bottom:1px_solid_lightgrey">
|
|
204
|
+
<h4>
|
|
205
|
+
<span>utils</span>
|
|
206
|
+
<span class="cocreate-badge success"
|
|
207
|
+
>string</span
|
|
208
|
+
>
|
|
209
|
+
<span class="cocreate-badge warning"
|
|
210
|
+
>optional</span
|
|
211
|
+
>
|
|
212
|
+
</h4>
|
|
213
|
+
<p>utils-attribute</p>
|
|
214
|
+
</li>
|
|
215
|
+
</ul>
|
|
216
|
+
</div>
|
|
216
217
|
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
|
|
260
|
-
|
|
261
|
-
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
</div>
|
|
218
|
+
<div
|
|
219
|
+
class="flex-grow:1 width:300px padding:0px_10px margin-top:60px border-bottom:1px_solid_lightgrey">
|
|
220
|
+
<!-- SandBox -->
|
|
221
|
+
<div
|
|
222
|
+
id="utils-demo"
|
|
223
|
+
class="border-bottom:1px_solid_lightgrey"
|
|
224
|
+
scroll
|
|
225
|
+
scroll-intersect="color:dodgerblue"
|
|
226
|
+
scroll-query="#utils-demo-section">
|
|
227
|
+
<span
|
|
228
|
+
class="display:flex align-items:center width:fit-content"
|
|
229
|
+
hover="display:block!important"
|
|
230
|
+
hover-query="[href='#utils-demo']">
|
|
231
|
+
<h2 class="padding:5px_0px">Demo</h2>
|
|
232
|
+
<a
|
|
233
|
+
class="margin-left:10px display:none"
|
|
234
|
+
href="#utils-demo"
|
|
235
|
+
><i src="/assets/svg/link.svg"></i
|
|
236
|
+
></a>
|
|
237
|
+
</span>
|
|
238
|
+
</div>
|
|
239
|
+
<div
|
|
240
|
+
class="position:sticky top:0 padding:10px_0px height:100vh">
|
|
241
|
+
<!-- SandBox -->
|
|
242
|
+
<div
|
|
243
|
+
class="display:flex flex-direction:column position:relative overflow:hidden card border-radius:2px width:auto height:600px margin-top:20px"
|
|
244
|
+
id="playground">
|
|
245
|
+
<div
|
|
246
|
+
id="demo-code"
|
|
247
|
+
resizable
|
|
248
|
+
class="position:relative height:50%">
|
|
249
|
+
<textarea
|
|
250
|
+
type="code"
|
|
251
|
+
lang="html"
|
|
252
|
+
array="demos"
|
|
253
|
+
object=""
|
|
254
|
+
key="demo"
|
|
255
|
+
save="false"
|
|
256
|
+
id="demo"
|
|
257
|
+
input-query=".demopreview"
|
|
258
|
+
input-attribute="value"
|
|
259
|
+
input-events="input, onload"
|
|
260
|
+
class="height:100% width:100% outline:none border:none resize:none padding:5px"></textarea>
|
|
261
|
+
<div
|
|
262
|
+
resize="bottom"
|
|
263
|
+
class="background:lightgrey"></div>
|
|
264
|
+
</div>
|
|
265
265
|
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
</div>
|
|
266
|
+
<div
|
|
267
|
+
id="demo-preview"
|
|
268
|
+
class="position:relative overflow:auto background-color:white">
|
|
269
|
+
<div class="demopreview padding:20px"></div>
|
|
270
|
+
</div>
|
|
272
271
|
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
|
|
277
|
-
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
|
|
284
|
-
|
|
285
|
-
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
272
|
+
<div
|
|
273
|
+
class="font-size:20px position:absolute top:10px right:10px opacity:0.6">
|
|
274
|
+
<a
|
|
275
|
+
class="margin-right:10px"
|
|
276
|
+
id="eye"
|
|
277
|
+
show="#eye-slash"
|
|
278
|
+
hide="#eye, #demo-preview"
|
|
279
|
+
toggle="code-height"
|
|
280
|
+
toggle-query="#demo-code"
|
|
281
|
+
><i
|
|
282
|
+
class="height:18px"
|
|
283
|
+
src="/assets/svg/eye.svg"></i
|
|
284
|
+
></a>
|
|
285
|
+
<a
|
|
286
|
+
class="margin-right:10px"
|
|
287
|
+
hidden
|
|
288
|
+
id="eye-slash"
|
|
289
|
+
show="#eye, #demo-preview"
|
|
290
|
+
hide="#eye-slash"
|
|
291
|
+
toggle="code-height"
|
|
292
|
+
toggle-query="#demo-code"
|
|
293
|
+
><i src="/assets/svg/eye-slash.svg"></i
|
|
294
|
+
></a>
|
|
295
|
+
<a
|
|
296
|
+
class="margin-right:10px"
|
|
297
|
+
id="code"
|
|
298
|
+
show="#code-slash"
|
|
299
|
+
hide="#code, #demo-code"
|
|
300
|
+
><i src="/assets/svg/code.svg"></i
|
|
301
|
+
></a>
|
|
302
|
+
<a
|
|
303
|
+
class="margin-right:10px"
|
|
304
|
+
hidden
|
|
305
|
+
id="code-slash"
|
|
306
|
+
show="#code, #demo-code"
|
|
307
|
+
hide="#code-slash"
|
|
308
|
+
><i
|
|
309
|
+
class="height:18px"
|
|
310
|
+
src="/assets/svg/code.svg"></i
|
|
311
|
+
></a>
|
|
312
|
+
<a
|
|
313
|
+
class="margin-right:5px"
|
|
314
|
+
fullscreen
|
|
315
|
+
fullscreen-query="#playground"></a>
|
|
316
|
+
</div>
|
|
317
|
+
</div>
|
|
318
|
+
<!-- End SandBox -->
|
|
319
|
+
</div>
|
|
320
|
+
</div>
|
|
321
|
+
</div>
|
|
322
|
+
<button
|
|
323
|
+
href="https://github.com/CoCreate-app/CoCreate-utils/tree/master/docs/index.html?message=docs%3A%20describe%20your%20change..."
|
|
324
|
+
target="_blank"
|
|
325
|
+
class="display:flex justify-content:center align-items:center position:fixed bottom:15px right:15px height:50px width:50px border-radius:50% box-shadow:0px_2px_10px_0px_rgba(0,_0,_0,_0.4)">
|
|
326
|
+
<i src="../assets/svg/pencil-alt.svg"></i>
|
|
327
|
+
</button>
|
|
328
|
+
</main>
|
|
329
|
+
<script src="https://CoCreate.app/dist/CoCreate.js"></script>
|
|
330
|
+
</body>
|
|
331
331
|
</html>
|