@cocreate/acme 1.3.0 → 1.3.2
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 +16 -0
- package/demo/index.html +19 -19
- package/docs/index.html +336 -330
- package/package.json +1 -1
- package/src/index.js +346 -300
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,19 @@
|
|
|
1
|
+
## [1.3.2](https://github.com/CoCreate-app/CoCreate-acme/compare/v1.3.1...v1.3.2) (2025-09-06)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* await async function calls ([cf151f1](https://github.com/CoCreate-app/CoCreate-acme/commit/cf151f186b4893411f273a6a3e3f08b87093b72c))
|
|
7
|
+
* formating ([bcce249](https://github.com/CoCreate-app/CoCreate-acme/commit/bcce24906478e43aa4b1845c9f9099623551128e))
|
|
8
|
+
|
|
9
|
+
## [1.3.1](https://github.com/CoCreate-app/CoCreate-acme/compare/v1.3.0...v1.3.1) (2025-05-01)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fixes
|
|
13
|
+
|
|
14
|
+
* update [@cocreate](https://github.com/cocreate) dependencies ([f2f3db6](https://github.com/CoCreate-app/CoCreate-acme/commit/f2f3db6cf8ecf15e91edc64ab463d6bc34c193f5))
|
|
15
|
+
* webpack.config and devdependencies ([41a8a22](https://github.com/CoCreate-app/CoCreate-acme/commit/41a8a22223eff38cc7c439c05a11e8d31ae9b8f9))
|
|
16
|
+
|
|
1
17
|
# [1.3.0](https://github.com/CoCreate-app/CoCreate-acme/compare/v1.2.14...v1.3.0) (2024-11-04)
|
|
2
18
|
|
|
3
19
|
|
package/demo/index.html
CHANGED
|
@@ -1,28 +1,28 @@
|
|
|
1
1
|
<!DOCTYPE html>
|
|
2
2
|
<html lang="en">
|
|
3
|
-
|
|
4
|
-
|
|
3
|
+
<head>
|
|
4
|
+
<title>ACME | CoCreateJS</title>
|
|
5
5
|
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
6
|
+
<!-- CoCreate Favicon -->
|
|
7
|
+
<link
|
|
8
|
+
rel="icon"
|
|
9
|
+
type="image/png"
|
|
10
|
+
sizes="32x32"
|
|
11
|
+
href="../assets/favicon.ico" />
|
|
12
|
+
</head>
|
|
13
|
+
<body>
|
|
14
|
+
<form>
|
|
15
|
+
<textarea acme="message"></textarea>
|
|
16
|
+
<button actions="ACME, reset">click</button>
|
|
17
|
+
</form>
|
|
18
18
|
|
|
19
|
-
|
|
19
|
+
<!-- <div
|
|
20
20
|
array="users"
|
|
21
21
|
array="interviews"
|
|
22
22
|
object
|
|
23
23
|
filter-sort-key="name"
|
|
24
24
|
filter-sort-direction="asc"
|
|
25
|
-
render-
|
|
25
|
+
render-query="[template]">
|
|
26
26
|
<div
|
|
27
27
|
class="border-bottom:1px_solid_darkgray"
|
|
28
28
|
template
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
</div>
|
|
33
33
|
</div> -->
|
|
34
34
|
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
35
|
+
<!-- <script src="../src/CoCreate-acme.js"></script> -->
|
|
36
|
+
<script src="./dist/CoCreate.js"></script>
|
|
37
|
+
</body>
|
|
38
38
|
</html>
|